-
Notifications
You must be signed in to change notification settings - Fork 1
/
user_project_wrapper.v
304 lines (270 loc) · 10.1 KB
/
user_project_wrapper.v
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
// SPDX-FileCopyrightText: 2020 Efabless Corporation
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// SPDX-License-Identifier: Apache-2.0
`default_nettype none
/*
*-------------------------------------------------------------
*
* user_project_wrapper
*
* This wrapper enumerates all of the pins available to the
* user for the user project.
*
* An example user project is provided in this wrapper. The
* example should be removed and replaced with the actual
* user project.
*
* THIS FILE HAS BEEN GENERATED USING multi_tools_project CODEGEN
* IF YOU NEED TO MAKE EDITS TO IT, EDIT codegen/caravel_iface_header.txt
*
*-------------------------------------------------------------
*/
module user_project_wrapper #(
parameter BITS = 32
)(
`ifdef USE_POWER_PINS
inout vdda1, // User area 1 3.3V supply
inout vdda2, // User area 2 3.3V supply
inout vssa1, // User area 1 analog ground
inout vssa2, // User area 2 analog ground
inout vccd1, // User area 1 1.8V supply
inout vccd2, // User area 2 1.8v supply
inout vssd1, // User area 1 digital ground
inout vssd2, // User area 2 digital ground
`endif
// Wishbone Slave ports (WB MI A)
input wb_clk_i,
input wb_rst_i,
input wbs_stb_i,
input wbs_cyc_i,
input wbs_we_i,
input [3:0] wbs_sel_i,
input [31:0] wbs_dat_i,
input [31:0] wbs_adr_i,
output wbs_ack_o,
output [31:0] wbs_dat_o,
// Logic Analyzer Signals
input [127:0] la_data_in,
output [127:0] la_data_out,
input [127:0] la_oenb,
// IOs
input [`MPRJ_IO_PADS-1:0] io_in,
output [`MPRJ_IO_PADS-1:0] io_out,
output [`MPRJ_IO_PADS-1:0] io_oeb,
// Analog (direct connection to GPIO pad---use with caution)
// Note that analog I/O is not available on the 7 lowest-numbered
// GPIO pads, and so the analog_io indexing is offset from the
// GPIO indexing by 7 (also upper 2 GPIOs do not have analog_io).
inout [`MPRJ_IO_PADS-10:0] analog_io,
// Independent clock (on independent integer divider)
input user_clock2,
// User maskable interrupt signals
output [2:0] user_irq
);
// generate active wires
wire [31: 0] active;
assign active = la_data_in[31:0];
// split remaining 96 logic analizer wires into 3 chunks
wire [31: 0] la1_data_in, la1_data_out, la1_oenb;
assign la1_data_in = la_data_in[63:32];
assign la1_data_out = la_data_out[63:32];
assign la1_oenb = la_oenb[63:32];
wire [31: 0] la2_data_in, la2_data_out, la2_oenb;
assign la2_data_in = la_data_in[95:64];
assign la2_data_out = la_data_out[95:64];
assign la2_oenb = la_oenb[95:64];
wire [31: 0] la3_data_in, la3_data_out, la3_oenb;
assign la3_data_in = la_data_in[127:96];
assign la3_data_out = la_data_out[127:96];
assign la3_oenb = la_oenb[127:96];
// Signals connecting user project to wishbone bridge
wire wbs_uprj_stb_i;
wire wbs_uprj_cyc_i;
wire wbs_uprj_we_i;
wire [3:0] wbs_uprj_sel_i;
wire [31:0] wbs_uprj_dat_i;
wire [31:0] wbs_uprj_adr_i;
wire wbs_uprj_ack_o;
wire [31:0] wbs_uprj_dat_o;
// Signals connecting user project to OpenRAM via its wrapper
// shared openram wishbone bus wires
wire rambus_wb_clk_o; // clock
wire rambus_wb_rst_o; // reset
wire rambus_wb_stb_o; // write strobe
wire rambus_wb_cyc_o; // cycle
wire rambus_wb_we_o ; // write enable
wire [3:0] rambus_wb_sel_o; // write word select
wire [31:0] rambus_wb_dat_o; // ram data out
wire [9:0] rambus_wb_adr_o; // 10bit address
wire rambus_wb_ack_i; // ack
wire [31:0] rambus_wb_dat_i; // ram data in
// Signals connecting OpenRAM wrapper to wishbone bridge
wire wbs_oram_stb_i;
wire wbs_oram_cyc_i;
wire wbs_oram_we_i;
wire [3:0] wbs_oram_sel_i;
wire [31:0] wbs_oram_dat_i;
wire [9:0] wbs_oram_adr_i;
wire wbs_oram_ack_o;
wire [31:0] wbs_oram_dat_o;
// Bridge splitting caravel wishbone traffic into two streams: user project and OpenRAM wrapper
wb_bridge_2way #(
.BUSB_ADDR_WIDTH(10)
) wb_bridge_2way(
`ifdef USE_POWER_PINS
.vccd1 (vccd1),
.vssd1 (vssd1),
`endif
// Wishbone UFP (Upward Facing Port) => caravel / picorv32
.wb_clk_i (wb_clk_i),
.wb_rst_i (wb_rst_i),
.wbs_stb_i (wbs_stb_i),
.wbs_cyc_i (wbs_cyc_i),
.wbs_we_i (wbs_we_i),
.wbs_sel_i (wbs_sel_i[3:0]),
.wbs_dat_i (wbs_dat_i),
.wbs_adr_i (wbs_adr_i),
.wbs_ack_o (wbs_ack_o),
.wbs_dat_o (wbs_dat_o),
// Wishbone A (Downward Facing Port) => user project
.wbm_a_stb_o (wbs_uprj_stb_i),
.wbm_a_cyc_o (wbs_uprj_cyc_i),
.wbm_a_we_o (wbs_uprj_we_i),
.wbm_a_sel_o (wbs_uprj_sel_i[3:0]),
.wbm_a_dat_i (wbs_uprj_dat_o[31:0]),
.wbm_a_adr_o (wbs_uprj_adr_i[31:0]),
.wbm_a_ack_i (wbs_uprj_ack_o),
.wbm_a_dat_o (wbs_uprj_dat_i[31:0]),
// Wishbone B (Downward Facing Port) => OpenRAM wrapper/shim
.wbm_b_stb_o (wbs_oram_stb_i),
.wbm_b_cyc_o (wbs_oram_cyc_i),
.wbm_b_we_o (wbs_oram_we_i),
.wbm_b_sel_o (wbs_oram_sel_i[3:0]),
.wbm_b_dat_i (wbs_oram_dat_o[31:0]),
.wbm_b_adr_o (wbs_oram_adr_i[9:0]),
.wbm_b_ack_i (wbs_oram_ack_o),
.wbm_b_dat_o (wbs_oram_dat_i[31:0])
);
// Signals connecting OpenRAM memory block to OpenRAM wrapper
wire oram_clk0; // clock
wire oram_csb0; // active low chip select
wire oram_web0; // active low write control
wire [3:0] oram_wmask0; // write (byte) mask
wire [7:0] oram_addr0; // address
wire [31:0] oram_din0; // data in
wire [31:0] oram_dout0; // data out
wire oram_clk1; // clock
wire oram_csb1; // active low chip select
wire [7:0] oram_addr1; // address
wire [31:0] oram_dout1; // data out
// Dual port OpenRAM wrapper for wishbone
wb_openram_wrapper #(
.ADDR_WIDTH(8)
) wb_openram_wrapper(
`ifdef USE_POWER_PINS
.vccd1 (vccd1),
.vssd1 (vssd1),
`endif
// Selecting which port will be writable (0 -> A, 1 -> B)
.writable_port_req (active[31]),
// Wishbone port A <= caravel (via wb_bridge)
.wb_a_clk_i (wb_clk_i),
.wb_a_rst_i (wb_rst_i),
.wbs_a_stb_i (wbs_oram_stb_i),
.wbs_a_cyc_i (wbs_oram_cyc_i),
.wbs_a_we_i (wbs_oram_we_i),
.wbs_a_sel_i (wbs_oram_sel_i[3:0]),
.wbs_a_dat_i (wbs_oram_dat_i[31:0]),
.wbs_a_adr_i (wbs_oram_adr_i[9:0]),
.wbs_a_ack_o (wbs_oram_ack_o),
.wbs_a_dat_o (wbs_oram_dat_o[31:0]),
// Wishbone port B <= user project (rambus)
.wb_b_clk_i (rambus_wb_clk_o),
.wb_b_rst_i (rambus_wb_rst_o),
.wbs_b_stb_i (rambus_wb_stb_o),
.wbs_b_cyc_i (rambus_wb_cyc_o),
.wbs_b_we_i (rambus_wb_we_o),
.wbs_b_sel_i (rambus_wb_sel_o[3:0]),
.wbs_b_dat_i (rambus_wb_dat_o[31:0]),
.wbs_b_adr_i (rambus_wb_adr_o[9:0]),
.wbs_b_ack_o (rambus_wb_ack_i),
.wbs_b_dat_o (rambus_wb_dat_i[31:0]),
// OpenRAM interface - almost dual port: RW + R
// Port 0: RW
.ram_clk0 (oram_clk0),
.ram_csb0 (oram_csb0),
.ram_web0 (oram_web0),
.ram_wmask0 (oram_wmask0[3:0]),
.ram_addr0 (oram_addr0[7:0]),
.ram_din0 (oram_din0[31:0]),
.ram_dout0 (oram_dout0[31:0]),
// Port 1: R
.ram_clk1 (oram_clk1),
.ram_csb1 (oram_csb1),
.ram_addr1 (oram_addr1[7:0]),
.ram_dout1 (oram_dout1[31:0])
);
// OpenRAM block
sky130_sram_1kbyte_1rw1r_32x256_8 openram_1kB
(
`ifdef USE_POWER_PINS
.vccd1 (vccd1),
.vssd1 (vssd1),
`endif
.clk0 (oram_clk0),
.csb0 (oram_csb0),
.web0 (oram_web0),
.wmask0 (oram_wmask0[3:0]),
.addr0 (oram_addr0[7:0]),
.din0 (oram_din0[31:0]),
.dout0 (oram_dout0[31:0]),
.clk1 (oram_clk1),
.csb1 (oram_csb1),
.addr1 (oram_addr1[7:0]),
.dout1 (oram_dout1[31:0])
);
// start of user project module instantiation
wrapped_function_generator wrapped_function_generator_0(
`ifdef USE_POWER_PINS
.vccd1 (vccd1),
.vssd1 (vssd1),
`endif
.wb_clk_i (wb_clk_i),
.active (active[0]),
.io_in (io_in[37:0]),
.io_out (io_out[37:0]),
.io_oeb (io_oeb[37:0]),
.wb_rst_i (wb_rst_i),
.wbs_stb_i (wbs_uprj_stb_i),
.wbs_cyc_i (wbs_uprj_cyc_i),
.wbs_we_i (wbs_uprj_we_i),
.wbs_sel_i (wbs_uprj_sel_i[3:0]),
.wbs_dat_i (wbs_uprj_dat_i[31:0]),
.wbs_adr_i (wbs_uprj_adr_i[31:0]),
.wbs_ack_o (wbs_uprj_ack_o),
.wbs_dat_o (wbs_uprj_dat_o[31:0]),
.rambus_wb_clk_o (rambus_wb_clk_o),
.rambus_wb_rst_o (rambus_wb_rst_o),
.rambus_wb_stb_o (rambus_wb_stb_o),
.rambus_wb_cyc_o (rambus_wb_cyc_o),
.rambus_wb_we_o (rambus_wb_we_o),
.rambus_wb_sel_o (rambus_wb_sel_o[3:0]),
.rambus_wb_dat_o (rambus_wb_dat_o[31:0]),
.rambus_wb_adr_o (rambus_wb_adr_o[9:0]),
.rambus_wb_ack_i (rambus_wb_ack_i),
.rambus_wb_dat_i (rambus_wb_dat_i[31:0])
);
// end of module instantiation
endmodule // user_project_wrapper
`default_nettype wire