soc_maker 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +5 -0
- data/History.txt +4 -0
- data/LICENSE +678 -0
- data/README.rdoc +228 -0
- data/Rakefile +46 -0
- data/bin/soc_maker_cli +80 -0
- data/bin/soc_maker_parser +85 -0
- data/core_lib/cores/adv_debug_sys/01_adv_debug_sys.yaml +245 -0
- data/core_lib/cores/or1200_rel2/01_or1200.yaml +208 -0
- data/core_lib/cores/or1200_rel2/02_or1200_files.yaml +421 -0
- data/core_lib/cores/or1200_rel2/03_or1200_sparam.yaml +188 -0
- data/core_lib/cores/or1200_rel2/or1200_defines.v.in +1799 -0
- data/core_lib/cores/ram_wb/ram_wb.yaml +102 -0
- data/core_lib/cores/ram_wb/ram_wb_b3.v.in +259 -0
- data/core_lib/cores/uart16550/01_uart16550.yaml +99 -0
- data/core_lib/cores/uart16550/02_uart16550_files.yaml +70 -0
- data/core_lib/cores/wb_connect/minsoc_tc_top.v +1802 -0
- data/core_lib/cores/wb_connect/wb_connect.yaml +733 -0
- data/core_lib/inc.yaml +13 -0
- data/core_lib/interfaces/clk_rst/clk.yaml +9 -0
- data/core_lib/interfaces/clk_rst/rst.yaml +9 -0
- data/core_lib/interfaces/clk_rst/single.yaml +7 -0
- data/core_lib/interfaces/debug/debug.yaml +32 -0
- data/core_lib/interfaces/jtag/jtag.yaml +13 -0
- data/core_lib/interfaces/jtag/jtag_tap.yaml +22 -0
- data/core_lib/interfaces/power/or_power.yaml +25 -0
- data/core_lib/interfaces/uart/uart.yaml +21 -0
- data/core_lib/interfaces/wishbone/wishbone_ma_b3.yaml +54 -0
- data/core_lib/interfaces/wishbone/wishbone_sl_b3.yaml +51 -0
- data/doc/class_arch.uml +5113 -0
- data/doc/fig/hierarchical.svg +273 -0
- data/examples/or1200_test/or1200_test.cmd +78 -0
- data/examples/or1200_test/or1200_test.rb +136 -0
- data/examples/or1200_test/rtl/or1200_test_top.vhd +274 -0
- data/examples/or1200_test/rtl/s3astarter.ucf +10 -0
- data/examples/or1200_test/rtl/xilinx_internal_jtag.v +438 -0
- data/examples/or1200_test/rtl/xilinx_internal_jtag_options.v +12 -0
- data/examples/or1200_test/sw/README.txt +35 -0
- data/examples/or1200_test/sw/bin2vmem.c +159 -0
- data/examples/or1200_test/sw/board.h +24 -0
- data/examples/or1200_test/sw/compile.sh +18 -0
- data/examples/or1200_test/sw/except.S +152 -0
- data/examples/or1200_test/sw/int.c +79 -0
- data/examples/or1200_test/sw/int.h +14 -0
- data/examples/or1200_test/sw/interconnect.h +17 -0
- data/examples/or1200_test/sw/interrupts.c +14 -0
- data/examples/or1200_test/sw/main.c +16 -0
- data/examples/or1200_test/sw/or1200.h +454 -0
- data/examples/or1200_test/sw/orp.ld +60 -0
- data/examples/or1200_test/sw/reset.S +112 -0
- data/examples/or1200_test/sw/support.c +123 -0
- data/examples/or1200_test/sw/support.h +33 -0
- data/examples/or1200_test/sw/tick.c +30 -0
- data/examples/or1200_test/sw/tick.h +2 -0
- data/examples/or1200_test/sw/uart.c +136 -0
- data/examples/or1200_test/sw/uart.h +126 -0
- data/lib/soc_maker.rb +324 -0
- data/lib/soc_maker/cli.rb +544 -0
- data/lib/soc_maker/conf.rb +310 -0
- data/lib/soc_maker/core_def.rb +579 -0
- data/lib/soc_maker/core_inst.rb +305 -0
- data/lib/soc_maker/err.rb +211 -0
- data/lib/soc_maker/hdl_coder.rb +500 -0
- data/lib/soc_maker/hdl_file.rb +166 -0
- data/lib/soc_maker/hdl_parser.rb +431 -0
- data/lib/soc_maker/ifc_def.rb +193 -0
- data/lib/soc_maker/ifc_port.rb +133 -0
- data/lib/soc_maker/ifc_spc.rb +180 -0
- data/lib/soc_maker/lib.rb +289 -0
- data/lib/soc_maker/lib_inc.rb +109 -0
- data/lib/soc_maker/parameter.rb +149 -0
- data/lib/soc_maker/soc_def.rb +847 -0
- data/lib/soc_maker/sparameter.rb +289 -0
- data/lib/soc_maker/version.rb +8 -0
- data/lib/soc_maker/ypp.rb +130 -0
- data/soc_maker.gemspec +28 -0
- data/spec/cli_cmds1.txt +39 -0
- data/spec/cli_spec.rb +49 -0
- data/spec/conf_spec.rb +44 -0
- data/spec/core_def_spec.rb +503 -0
- data/spec/core_inst_spec.rb +169 -0
- data/spec/hdl_file_spec.rb +154 -0
- data/spec/hdl_parser_spec.rb +201 -0
- data/spec/ifc_def_spec.rb +121 -0
- data/spec/ifc_port_spec.rb +92 -0
- data/spec/ifc_spc_spec.rb +196 -0
- data/spec/lib_inc_spec.rb +99 -0
- data/spec/lib_spec.rb +209 -0
- data/spec/parameter_spec.rb +86 -0
- data/spec/soc_def_spec.rb +611 -0
- data/spec/soc_maker_spec.rb +7 -0
- data/spec/sparameter_spec.rb +182 -0
- data/spec/spec_helper.rb +78 -0
- data/spec/test_soc.yaml +105 -0
- data/spec/test_soc2.yaml +60 -0
- data/spec/test_soc_lib/cores/core_A_rel1/00_core_a.yaml +75 -0
- data/spec/test_soc_lib/cores/core_A_rel1/01_core_a.yaml +57 -0
- data/spec/test_soc_lib/cores/core_A_rel1/core_a.vhd +29 -0
- data/spec/test_soc_lib/cores/core_A_rel1/core_a_pkg.vhd.src +3 -0
- data/spec/test_soc_lib/cores/core_A_rel1/core_a_pkg2.vhd.src +4 -0
- data/spec/test_soc_lib/cores/core_A_rel1/core_a_pkg3.v.src +6 -0
- data/spec/test_soc_lib/cores/core_B_rel1/core_b.vhd +25 -0
- data/spec/test_soc_lib/cores/core_B_rel1/core_b.yaml +36 -0
- data/spec/test_soc_lib/cores/core_C_v1/core_C.vhd +57 -0
- data/spec/test_soc_lib/cores/core_C_v1/core_c.yaml +42 -0
- data/spec/test_soc_lib/cores/soc_A/soc_A.yaml +12 -0
- data/spec/test_soc_lib/cores/soc_maker_include.yaml +6 -0
- data/spec/test_soc_lib/ifcs/core_AB_ifc/bidir_ifc.yaml +19 -0
- data/spec/test_soc_lib/ifcs/core_AB_ifc/core_AB_ifc.yaml +15 -0
- data/spec/test_soc_lib/ifcs/core_AB_ifc/top_ifc.yaml +9 -0
- data/spec/test_soc_lib/soc_maker_include.yaml +4 -0
- data/spec/yaml_examples.rb +367 -0
- data/spec/ypp_spec.rb +156 -0
- data/test/test_soc_maker.rb +0 -0
- metadata +255 -0
@@ -0,0 +1,208 @@
|
|
1
|
+
SOCM_CORE
|
2
|
+
name: OpenRISC 1200
|
3
|
+
description: OpenRISC CPU
|
4
|
+
id: or1200,rel2
|
5
|
+
license: LGPL
|
6
|
+
licensefile:
|
7
|
+
author:
|
8
|
+
authormail:
|
9
|
+
vccmd: svn co http://opencores.org/ocsvn/openrisc/openrisc/tags/or1200/rel2/rtl rtl
|
10
|
+
toplevel: or1200_top
|
11
|
+
interfaces:
|
12
|
+
:clmode: SOCM_IFC
|
13
|
+
name: single
|
14
|
+
dir: 1
|
15
|
+
id: single,1
|
16
|
+
ports:
|
17
|
+
:clmode_i: SOCM_PORT
|
18
|
+
len: 2
|
19
|
+
spc_ref: single
|
20
|
+
|
21
|
+
:pic_ints: SOCM_IFC
|
22
|
+
name: single
|
23
|
+
dir: 1
|
24
|
+
id: single,1
|
25
|
+
ports:
|
26
|
+
:pic_ints_i: SOCM_PORT
|
27
|
+
len: 20
|
28
|
+
spc_ref: single
|
29
|
+
|
30
|
+
:clk: SOCM_IFC
|
31
|
+
name: clk
|
32
|
+
dir: 1
|
33
|
+
id: clk,1
|
34
|
+
ports:
|
35
|
+
:clk_i: SOCM_PORT
|
36
|
+
len: 1
|
37
|
+
spc_ref: clk
|
38
|
+
|
39
|
+
:rst: SOCM_IFC
|
40
|
+
name: rst
|
41
|
+
dir: 1
|
42
|
+
id: rst,1
|
43
|
+
ports:
|
44
|
+
:rst_i: SOCM_PORT
|
45
|
+
len: 1
|
46
|
+
spc_ref: rst
|
47
|
+
|
48
|
+
:wb_instruction: SOCM_IFC
|
49
|
+
name: wishbone_ma
|
50
|
+
dir: 1
|
51
|
+
id: wishbone_ma,b3
|
52
|
+
ports:
|
53
|
+
:iwb_clk_i: SOCM_PORT
|
54
|
+
spc_ref: clk
|
55
|
+
len: 1
|
56
|
+
:iwb_rst_i: SOCM_PORT
|
57
|
+
spc_ref: rst
|
58
|
+
len: 1
|
59
|
+
:iwb_cyc_o: SOCM_PORT
|
60
|
+
spc_ref: cyc
|
61
|
+
len: 1
|
62
|
+
:iwb_stb_o: SOCM_PORT
|
63
|
+
spc_ref: stb
|
64
|
+
len: 1
|
65
|
+
:iwb_adr_o: SOCM_PORT
|
66
|
+
spc_ref: adr
|
67
|
+
len: 32
|
68
|
+
:iwb_sel_o: SOCM_PORT
|
69
|
+
spc_ref: sel
|
70
|
+
len: 4
|
71
|
+
:iwb_we_o: SOCM_PORT
|
72
|
+
spc_ref: we
|
73
|
+
len: 1
|
74
|
+
:iwb_dat_o: SOCM_PORT
|
75
|
+
spc_ref: dat_i
|
76
|
+
len: 32
|
77
|
+
:iwb_dat_i: SOCM_PORT
|
78
|
+
spc_ref: dat_o
|
79
|
+
len: 32
|
80
|
+
:iwb_ack_i: SOCM_PORT
|
81
|
+
spc_ref: ack
|
82
|
+
len: 1
|
83
|
+
:iwb_err_i: SOCM_PORT
|
84
|
+
spc_ref: err
|
85
|
+
len: 1
|
86
|
+
:iwb_rty_i: SOCM_PORT
|
87
|
+
spc_ref: rty
|
88
|
+
len: 1
|
89
|
+
|
90
|
+
:wb_data: SOCM_IFC
|
91
|
+
name: wishbone_ma
|
92
|
+
dir: 1
|
93
|
+
id: wishbone_ma,b3
|
94
|
+
ports:
|
95
|
+
:dwb_clk_i: SOCM_PORT
|
96
|
+
spc_ref: clk
|
97
|
+
len: 1
|
98
|
+
:dwb_rst_i: SOCM_PORT
|
99
|
+
spc_ref: rst
|
100
|
+
len: 1
|
101
|
+
:dwb_cyc_o: SOCM_PORT
|
102
|
+
spc_ref: cyc
|
103
|
+
len: 1
|
104
|
+
:dwb_stb_o: SOCM_PORT
|
105
|
+
spc_ref: stb
|
106
|
+
len: 1
|
107
|
+
:dwb_adr_o: SOCM_PORT
|
108
|
+
spc_ref: adr
|
109
|
+
len: 32
|
110
|
+
:dwb_sel_o: SOCM_PORT
|
111
|
+
spc_ref: sel
|
112
|
+
len: 4
|
113
|
+
:dwb_we_o: SOCM_PORT
|
114
|
+
spc_ref: we
|
115
|
+
len: 1
|
116
|
+
:dwb_dat_o: SOCM_PORT
|
117
|
+
spc_ref: dat_i
|
118
|
+
len: 32
|
119
|
+
:dwb_dat_i: SOCM_PORT
|
120
|
+
spc_ref: dat_o
|
121
|
+
len: 32
|
122
|
+
:dwb_ack_i: SOCM_PORT
|
123
|
+
spc_ref: ack
|
124
|
+
len: 1
|
125
|
+
:dwb_err_i: SOCM_PORT
|
126
|
+
spc_ref: err
|
127
|
+
len: 1
|
128
|
+
:dwb_rty_i: SOCM_PORT
|
129
|
+
spc_ref: rty
|
130
|
+
len: 1
|
131
|
+
|
132
|
+
:ext_debug: SOCM_IFC
|
133
|
+
name: debug
|
134
|
+
dir: 1
|
135
|
+
id: debug,1
|
136
|
+
ports:
|
137
|
+
:dbg_stall_i: SOCM_PORT
|
138
|
+
spc_ref: dbg_stall
|
139
|
+
len: 1
|
140
|
+
:dbg_ewt_i: SOCM_PORT
|
141
|
+
len: 1
|
142
|
+
spc_ref: dbg_ewt
|
143
|
+
:dbg_lss_o: SOCM_PORT
|
144
|
+
len: 4
|
145
|
+
spc_ref: dbg_lss
|
146
|
+
:dbg_is_o: SOCM_PORT
|
147
|
+
len: 2
|
148
|
+
spc_ref: dbg_iso
|
149
|
+
:dbg_wp_o: SOCM_PORT
|
150
|
+
len: 11
|
151
|
+
spc_ref: dbg_wpo
|
152
|
+
:dbg_bp_o: SOCM_PORT
|
153
|
+
len: 1
|
154
|
+
spc_ref: dbg_bpo
|
155
|
+
:dbg_stb_i: SOCM_PORT
|
156
|
+
len: 1
|
157
|
+
spc_ref: dbg_stb
|
158
|
+
:dbg_we_i: SOCM_PORT
|
159
|
+
len: 1
|
160
|
+
spc_ref: dbg_we
|
161
|
+
:dbg_adr_i: SOCM_PORT
|
162
|
+
len: 32
|
163
|
+
spc_ref: dbg_adr
|
164
|
+
:dbg_dat_i: SOCM_PORT
|
165
|
+
len: 32
|
166
|
+
spc_ref: dbg_dat_o
|
167
|
+
:dbg_dat_o: SOCM_PORT
|
168
|
+
len: 32
|
169
|
+
spc_ref: dbg_dat_i
|
170
|
+
:dbg_ack_o: SOCM_PORT
|
171
|
+
len: 1
|
172
|
+
spc_ref: dbg_ack
|
173
|
+
|
174
|
+
:pow_man: SOCM_IFC
|
175
|
+
name: or_power_management
|
176
|
+
dir: 1
|
177
|
+
id: or_power_management,1
|
178
|
+
ports:
|
179
|
+
:pm_cpustall_i: SOCM_PORT
|
180
|
+
len: 1
|
181
|
+
spc_ref: pm_cpustall
|
182
|
+
:pm_clksd_o: SOCM_PORT
|
183
|
+
len: 4
|
184
|
+
spc_ref: pm_clksd
|
185
|
+
:pm_dc_gate_o: SOCM_PORT
|
186
|
+
len: 1
|
187
|
+
spc_ref: pm_dc_gate
|
188
|
+
:pm_ic_gate_o: SOCM_PORT
|
189
|
+
len: 1
|
190
|
+
spc_ref: pm_ic_gate
|
191
|
+
:pm_dmmu_gate_o: SOCM_PORT
|
192
|
+
len: 1
|
193
|
+
spc_ref: pm_dmmu_gate
|
194
|
+
:pm_immu_gate_o: SOCM_PORT
|
195
|
+
len: 1
|
196
|
+
spc_ref: pm_immu_gate
|
197
|
+
:pm_tt_gate_o: SOCM_PORT
|
198
|
+
len: 1
|
199
|
+
spc_ref: pm_tt_gate
|
200
|
+
:pm_cpu_gate_o: SOCM_PORT
|
201
|
+
len: 1
|
202
|
+
spc_ref: pm_cpu_gate
|
203
|
+
:pm_wakeup_o: SOCM_PORT
|
204
|
+
len: 1
|
205
|
+
spc_ref: pm_wakeup
|
206
|
+
:pm_lvolt_o: SOCM_PORT
|
207
|
+
len: 1
|
208
|
+
spc_ref: pm_lvolt
|
@@ -0,0 +1,421 @@
|
|
1
|
+
hdlfiles:
|
2
|
+
:alu: SOCM_HDL_FILE
|
3
|
+
use_syn: true
|
4
|
+
use_sim: true
|
5
|
+
type: verilog
|
6
|
+
path: rtl/verilog/or1200_alu.v
|
7
|
+
|
8
|
+
:tlb: SOCM_HDL_FILE
|
9
|
+
use_syn: true
|
10
|
+
use_sim: true
|
11
|
+
type: verilog
|
12
|
+
path: rtl/verilog/or1200_dmmu_tlb.v
|
13
|
+
|
14
|
+
:ram: SOCM_HDL_FILE
|
15
|
+
use_syn: true
|
16
|
+
use_sys_sim: true
|
17
|
+
use_mod_sim: true
|
18
|
+
type: vhdl
|
19
|
+
path: rtl/verilog/or1200_ic_ram.v
|
20
|
+
|
21
|
+
:operandmuxes: SOCM_HDL_FILE
|
22
|
+
use_syn: true
|
23
|
+
use_sys_sim: true
|
24
|
+
use_mod_sim: true
|
25
|
+
type: vhdl
|
26
|
+
path: rtl/verilog/or1200_operandmuxes.v
|
27
|
+
|
28
|
+
:spram_1024: SOCM_HDL_FILE
|
29
|
+
use_syn: true
|
30
|
+
use_sys_sim: true
|
31
|
+
use_mod_sim: true
|
32
|
+
type: vhdl
|
33
|
+
path: rtl/verilog/or1200_spram_1024x32.v
|
34
|
+
|
35
|
+
:spram_64_22: SOCM_HDL_FILE
|
36
|
+
use_syn: true
|
37
|
+
use_sys_sim: true
|
38
|
+
use_mod_sim: true
|
39
|
+
type: vhdl
|
40
|
+
path: rtl/verilog/or1200_spram_64x22.v
|
41
|
+
|
42
|
+
:amultp2: SOCM_HDL_FILE
|
43
|
+
use_syn: true
|
44
|
+
use_sys_sim: true
|
45
|
+
use_mod_sim: true
|
46
|
+
type: vhdl
|
47
|
+
path: rtl/verilog/or1200_amultp2_32x32.v
|
48
|
+
|
49
|
+
:dmmu_top: SOCM_HDL_FILE
|
50
|
+
use_syn: true
|
51
|
+
use_sys_sim: true
|
52
|
+
use_mod_sim: true
|
53
|
+
type: vhdl
|
54
|
+
path: rtl/verilog/or1200_dmmu_top.v
|
55
|
+
|
56
|
+
:ic_tag: SOCM_HDL_FILE
|
57
|
+
use_syn: true
|
58
|
+
use_sys_sim: true
|
59
|
+
use_mod_sim: true
|
60
|
+
type: vhdl
|
61
|
+
path: rtl/verilog/or1200_ic_tag.v
|
62
|
+
|
63
|
+
:pic: SOCM_HDL_FILE
|
64
|
+
use_syn: true
|
65
|
+
use_sys_sim: true
|
66
|
+
use_mod_sim: true
|
67
|
+
type: vhdl
|
68
|
+
path: rtl/verilog/or1200_pic.v
|
69
|
+
|
70
|
+
:spram_1024_8: SOCM_HDL_FILE
|
71
|
+
use_syn: true
|
72
|
+
use_sys_sim: true
|
73
|
+
use_mod_sim: true
|
74
|
+
type: vhdl
|
75
|
+
path: rtl/verilog/or1200_spram_1024x8.v
|
76
|
+
|
77
|
+
:spram_64_24: SOCM_HDL_FILE
|
78
|
+
use_syn: true
|
79
|
+
use_sys_sim: true
|
80
|
+
use_mod_sim: true
|
81
|
+
type: vhdl
|
82
|
+
path: rtl/verilog/or1200_spram_64x24.v
|
83
|
+
|
84
|
+
:cfgr: SOCM_HDL_FILE
|
85
|
+
use_syn: true
|
86
|
+
use_sys_sim: true
|
87
|
+
use_mod_sim: true
|
88
|
+
type: vhdl
|
89
|
+
path: rtl/verilog/or1200_cfgr.v
|
90
|
+
|
91
|
+
:dpram_256_32: SOCM_HDL_FILE
|
92
|
+
use_syn: true
|
93
|
+
use_sys_sim: true
|
94
|
+
use_mod_sim: true
|
95
|
+
type: vhdl
|
96
|
+
path: rtl/verilog/or1200_dpram_256x32.v
|
97
|
+
|
98
|
+
:ic_top: SOCM_HDL_FILE
|
99
|
+
use_syn: true
|
100
|
+
use_sys_sim: true
|
101
|
+
use_mod_sim: true
|
102
|
+
type: vhdl
|
103
|
+
path: rtl/verilog/or1200_ic_top.v
|
104
|
+
|
105
|
+
:pm: SOCM_HDL_FILE
|
106
|
+
use_syn: true
|
107
|
+
use_sys_sim: true
|
108
|
+
use_mod_sim: true
|
109
|
+
type: vhdl
|
110
|
+
path: rtl/verilog/or1200_pm.v
|
111
|
+
|
112
|
+
:spram_128_32: SOCM_HDL_FILE
|
113
|
+
use_syn: true
|
114
|
+
use_sys_sim: true
|
115
|
+
use_mod_sim: true
|
116
|
+
type: vhdl
|
117
|
+
path: rtl/verilog/or1200_spram_128x32.v
|
118
|
+
|
119
|
+
:sprs: SOCM_HDL_FILE
|
120
|
+
use_syn: true
|
121
|
+
use_sys_sim: true
|
122
|
+
use_mod_sim: true
|
123
|
+
type: vhdl
|
124
|
+
path: rtl/verilog/or1200_sprs.v
|
125
|
+
|
126
|
+
:cpu: SOCM_HDL_FILE
|
127
|
+
use_syn: true
|
128
|
+
use_sys_sim: true
|
129
|
+
use_mod_sim: true
|
130
|
+
type: vhdl
|
131
|
+
path: rtl/verilog/or1200_cpu.v
|
132
|
+
|
133
|
+
:dpram_32_32: SOCM_HDL_FILE
|
134
|
+
use_syn: true
|
135
|
+
use_sys_sim: true
|
136
|
+
use_mod_sim: true
|
137
|
+
type: vhdl
|
138
|
+
path: rtl/verilog/or1200_dpram_32x32.v
|
139
|
+
|
140
|
+
:if: SOCM_HDL_FILE
|
141
|
+
use_syn: true
|
142
|
+
use_sys_sim: true
|
143
|
+
use_mod_sim: true
|
144
|
+
type: vhdl
|
145
|
+
path: rtl/verilog/or1200_if.v
|
146
|
+
|
147
|
+
:qmem_top: SOCM_HDL_FILE
|
148
|
+
use_syn: true
|
149
|
+
use_sys_sim: true
|
150
|
+
use_mod_sim: true
|
151
|
+
type: vhdl
|
152
|
+
path: rtl/verilog/or1200_qmem_top.v
|
153
|
+
|
154
|
+
:spram_2048_32: SOCM_HDL_FILE
|
155
|
+
use_syn: true
|
156
|
+
use_sys_sim: true
|
157
|
+
use_mod_sim: true
|
158
|
+
type: vhdl
|
159
|
+
path: rtl/verilog/or1200_spram_2048x32_bw.v
|
160
|
+
|
161
|
+
:top: SOCM_HDL_FILE
|
162
|
+
use_syn: true
|
163
|
+
use_sys_sim: true
|
164
|
+
use_mod_sim: true
|
165
|
+
type: vhdl
|
166
|
+
path: rtl/verilog/or1200_top.v
|
167
|
+
|
168
|
+
:or1200_ctrl: SOCM_HDL_FILE
|
169
|
+
use_syn: true
|
170
|
+
use_sys_sim: true
|
171
|
+
use_mod_sim: true
|
172
|
+
type: vhdl
|
173
|
+
path: rtl/verilog/or1200_ctrl.v
|
174
|
+
|
175
|
+
:du: SOCM_HDL_FILE
|
176
|
+
use_syn: true
|
177
|
+
use_sys_sim: true
|
178
|
+
use_mod_sim: true
|
179
|
+
type: vhdl
|
180
|
+
path: rtl/verilog/or1200_du.v
|
181
|
+
|
182
|
+
:immu_tlb: SOCM_HDL_FILE
|
183
|
+
use_syn: true
|
184
|
+
use_sys_sim: true
|
185
|
+
use_mod_sim: true
|
186
|
+
type: vhdl
|
187
|
+
path: rtl/verilog/or1200_immu_tlb.v
|
188
|
+
|
189
|
+
:reg2mem: SOCM_HDL_FILE
|
190
|
+
use_syn: true
|
191
|
+
use_sys_sim: true
|
192
|
+
use_mod_sim: true
|
193
|
+
type: vhdl
|
194
|
+
path: rtl/verilog/or1200_reg2mem.v
|
195
|
+
|
196
|
+
:spram_2048_32: SOCM_HDL_FILE
|
197
|
+
use_syn: true
|
198
|
+
use_sys_sim: true
|
199
|
+
use_mod_sim: true
|
200
|
+
type: vhdl
|
201
|
+
path: rtl/verilog/or1200_spram_2048x32.v
|
202
|
+
|
203
|
+
:tpram_32_32: SOCM_HDL_FILE
|
204
|
+
use_syn: true
|
205
|
+
use_sys_sim: true
|
206
|
+
use_mod_sim: true
|
207
|
+
type: vhdl
|
208
|
+
path: rtl/verilog/or1200_tpram_32x32.v
|
209
|
+
|
210
|
+
:dc_fsm: SOCM_HDL_FILE
|
211
|
+
use_syn: true
|
212
|
+
use_sys_sim: true
|
213
|
+
use_mod_sim: true
|
214
|
+
type: vhdl
|
215
|
+
path: rtl/verilog/or1200_dc_fsm.v
|
216
|
+
|
217
|
+
:except: SOCM_HDL_FILE
|
218
|
+
use_syn: true
|
219
|
+
use_sys_sim: true
|
220
|
+
use_mod_sim: true
|
221
|
+
type: vhdl
|
222
|
+
path: rtl/verilog/or1200_except.v
|
223
|
+
|
224
|
+
:immu_top: SOCM_HDL_FILE
|
225
|
+
use_syn: true
|
226
|
+
use_sys_sim: true
|
227
|
+
use_mod_sim: true
|
228
|
+
type: vhdl
|
229
|
+
path: rtl/verilog/or1200_immu_top.v
|
230
|
+
|
231
|
+
:rfram_generic: SOCM_HDL_FILE
|
232
|
+
use_syn: true
|
233
|
+
use_sys_sim: true
|
234
|
+
use_mod_sim: true
|
235
|
+
type: vhdl
|
236
|
+
path: rtl/verilog/or1200_rfram_generic.v
|
237
|
+
|
238
|
+
:spram_2048_8: SOCM_HDL_FILE
|
239
|
+
use_syn: true
|
240
|
+
use_sys_sim: true
|
241
|
+
use_mod_sim: true
|
242
|
+
type: vhdl
|
243
|
+
path: rtl/verilog/or1200_spram_2048x8.v
|
244
|
+
|
245
|
+
:tt: SOCM_HDL_FILE
|
246
|
+
use_syn: true
|
247
|
+
use_sys_sim: true
|
248
|
+
use_mod_sim: true
|
249
|
+
type: vhdl
|
250
|
+
path: rtl/verilog/or1200_tt.v
|
251
|
+
|
252
|
+
:dc_ram: SOCM_HDL_FILE
|
253
|
+
use_syn: true
|
254
|
+
use_sys_sim: true
|
255
|
+
use_mod_sim: true
|
256
|
+
type: vhdl
|
257
|
+
path: rtl/verilog/or1200_dc_ram.v
|
258
|
+
|
259
|
+
:freeze: SOCM_HDL_FILE
|
260
|
+
use_syn: true
|
261
|
+
use_sys_sim: true
|
262
|
+
use_mod_sim: true
|
263
|
+
type: vhdl
|
264
|
+
path: rtl/verilog/or1200_freeze.v
|
265
|
+
|
266
|
+
:iwb_biu: SOCM_HDL_FILE
|
267
|
+
use_syn: true
|
268
|
+
use_sys_sim: true
|
269
|
+
use_mod_sim: true
|
270
|
+
type: vhdl
|
271
|
+
path: rtl/verilog/or1200_iwb_biu.v
|
272
|
+
|
273
|
+
:rf: SOCM_HDL_FILE
|
274
|
+
use_syn: true
|
275
|
+
use_sys_sim: true
|
276
|
+
use_mod_sim: true
|
277
|
+
type: vhdl
|
278
|
+
path: rtl/verilog/or1200_rf.v
|
279
|
+
|
280
|
+
:spram_256_21: SOCM_HDL_FILE
|
281
|
+
use_syn: true
|
282
|
+
use_sys_sim: true
|
283
|
+
use_mod_sim: true
|
284
|
+
type: vhdl
|
285
|
+
path: rtl/verilog/or1200_spram_256x21.v
|
286
|
+
|
287
|
+
:wb_biu: SOCM_HDL_FILE
|
288
|
+
use_syn: true
|
289
|
+
use_sys_sim: true
|
290
|
+
use_mod_sim: true
|
291
|
+
type: vhdl
|
292
|
+
path: rtl/verilog/or1200_wb_biu.v
|
293
|
+
|
294
|
+
:dc_tag: SOCM_HDL_FILE
|
295
|
+
use_syn: true
|
296
|
+
use_sys_sim: true
|
297
|
+
use_mod_sim: true
|
298
|
+
type: vhdl
|
299
|
+
path: rtl/verilog/or1200_dc_tag.v
|
300
|
+
|
301
|
+
:genpc: SOCM_HDL_FILE
|
302
|
+
use_syn: true
|
303
|
+
use_sys_sim: true
|
304
|
+
use_mod_sim: true
|
305
|
+
type: vhdl
|
306
|
+
path: rtl/verilog/or1200_genpc.v
|
307
|
+
|
308
|
+
:lsu: SOCM_HDL_FILE
|
309
|
+
use_syn: true
|
310
|
+
use_sys_sim: true
|
311
|
+
use_mod_sim: true
|
312
|
+
type: vhdl
|
313
|
+
path: rtl/verilog/or1200_lsu.v
|
314
|
+
|
315
|
+
:fifo: SOCM_HDL_FILE
|
316
|
+
use_syn: true
|
317
|
+
use_sys_sim: true
|
318
|
+
use_mod_sim: true
|
319
|
+
type: vhdl
|
320
|
+
path: rtl/verilog/or1200_sb_fifo.v
|
321
|
+
|
322
|
+
:spram_32_24: SOCM_HDL_FILE
|
323
|
+
use_syn: true
|
324
|
+
use_sys_sim: true
|
325
|
+
use_mod_sim: true
|
326
|
+
type: vhdl
|
327
|
+
path: rtl/verilog/or1200_spram_32x24.v
|
328
|
+
|
329
|
+
:wbmux: SOCM_HDL_FILE
|
330
|
+
use_syn: true
|
331
|
+
use_sys_sim: true
|
332
|
+
use_mod_sim: true
|
333
|
+
type: vhdl
|
334
|
+
path: rtl/verilog/or1200_wbmux.v
|
335
|
+
|
336
|
+
:dc_top: SOCM_HDL_FILE
|
337
|
+
use_syn: true
|
338
|
+
use_sys_sim: true
|
339
|
+
use_mod_sim: true
|
340
|
+
type: vhdl
|
341
|
+
path: rtl/verilog/or1200_dc_top.v
|
342
|
+
|
343
|
+
:gmultp2_32_32: SOCM_HDL_FILE
|
344
|
+
use_syn: true
|
345
|
+
use_sys_sim: true
|
346
|
+
use_mod_sim: true
|
347
|
+
type: vhdl
|
348
|
+
path: rtl/verilog/or1200_gmultp2_32x32.v
|
349
|
+
|
350
|
+
:mem2reg: SOCM_HDL_FILE
|
351
|
+
use_syn: true
|
352
|
+
use_sys_sim: true
|
353
|
+
use_mod_sim: true
|
354
|
+
type: vhdl
|
355
|
+
path: rtl/verilog/or1200_mem2reg.v
|
356
|
+
|
357
|
+
:sb: SOCM_HDL_FILE
|
358
|
+
use_syn: true
|
359
|
+
use_sys_sim: true
|
360
|
+
use_mod_sim: true
|
361
|
+
type: vhdl
|
362
|
+
path: rtl/verilog/or1200_sb.v
|
363
|
+
|
364
|
+
:spram_512_20: SOCM_HDL_FILE
|
365
|
+
use_syn: true
|
366
|
+
use_sys_sim: true
|
367
|
+
use_mod_sim: true
|
368
|
+
type: vhdl
|
369
|
+
path: rtl/verilog/or1200_spram_512x20.v
|
370
|
+
|
371
|
+
:xcv_ram32_8d: SOCM_HDL_FILE
|
372
|
+
use_syn: true
|
373
|
+
use_sys_sim: true
|
374
|
+
use_mod_sim: true
|
375
|
+
type: vhdl
|
376
|
+
path: rtl/verilog/or1200_xcv_ram32x8d.v
|
377
|
+
|
378
|
+
# Please note: the defines is automatically created
|
379
|
+
# see or1200_defines.v.in
|
380
|
+
|
381
|
+
# :defines: SOCM_HDL_FILE
|
382
|
+
# use_syn: true
|
383
|
+
# use_sys_sim: true
|
384
|
+
# use_mod_sim: true
|
385
|
+
# type: vhdl
|
386
|
+
# path: rtl/verilog/or1200_defines.v
|
387
|
+
|
388
|
+
:ic_fsm: SOCM_HDL_FILE
|
389
|
+
use_syn: true
|
390
|
+
use_sys_sim: true
|
391
|
+
use_mod_sim: true
|
392
|
+
type: vhdl
|
393
|
+
path: rtl/verilog/or1200_ic_fsm.v
|
394
|
+
|
395
|
+
:mult_mac: SOCM_HDL_FILE
|
396
|
+
use_syn: true
|
397
|
+
use_sys_sim: true
|
398
|
+
use_mod_sim: true
|
399
|
+
type: vhdl
|
400
|
+
path: rtl/verilog/or1200_mult_mac.v
|
401
|
+
|
402
|
+
:spram_2014x32: SOCM_HDL_FILE
|
403
|
+
use_syn: true
|
404
|
+
use_sys_sim: true
|
405
|
+
use_mod_sim: true
|
406
|
+
type: vhdl
|
407
|
+
path: rtl/verilog/or1200_spram_1024x32_bw.v
|
408
|
+
|
409
|
+
:spram_64_14: SOCM_HDL_FILE
|
410
|
+
use_syn: true
|
411
|
+
use_sys_sim: true
|
412
|
+
use_mod_sim: true
|
413
|
+
type: vhdl
|
414
|
+
path: rtl/verilog/or1200_spram_64x14.v
|
415
|
+
|
416
|
+
:timescale: SOCM_HDL_FILE
|
417
|
+
use_syn: false
|
418
|
+
use_sys_sim: true
|
419
|
+
use_mod_sim: true
|
420
|
+
type: vhdl
|
421
|
+
path: rtl/verilog/timescale.v
|