1 |
60 |
unneback |
// default SYN_KEEP definition
|
2 |
136 |
unneback |
///////////////////////////////////////
|
3 |
|
|
// dependencies
|
4 |
|
|
///////////////////////////////////////
|
5 |
97 |
unneback |
// size to width
|
6 |
6 |
unneback |
//////////////////////////////////////////////////////////////////////
|
7 |
|
|
//// ////
|
8 |
|
|
//// Versatile library, clock and reset ////
|
9 |
|
|
//// ////
|
10 |
|
|
//// Description ////
|
11 |
|
|
//// Logic related to clock and reset ////
|
12 |
|
|
//// ////
|
13 |
|
|
//// ////
|
14 |
|
|
//// To Do: ////
|
15 |
|
|
//// - add more different registers ////
|
16 |
|
|
//// ////
|
17 |
|
|
//// Author(s): ////
|
18 |
|
|
//// - Michael Unneback, unneback@opencores.org ////
|
19 |
|
|
//// ORSoC AB ////
|
20 |
|
|
//// ////
|
21 |
|
|
//////////////////////////////////////////////////////////////////////
|
22 |
|
|
//// ////
|
23 |
|
|
//// Copyright (C) 2010 Authors and OPENCORES.ORG ////
|
24 |
|
|
//// ////
|
25 |
|
|
//// This source file may be used and distributed without ////
|
26 |
|
|
//// restriction provided that this copyright statement is not ////
|
27 |
|
|
//// removed from the file and that any derivative work contains ////
|
28 |
|
|
//// the original copyright notice and the associated disclaimer. ////
|
29 |
|
|
//// ////
|
30 |
|
|
//// This source file is free software; you can redistribute it ////
|
31 |
|
|
//// and/or modify it under the terms of the GNU Lesser General ////
|
32 |
|
|
//// Public License as published by the Free Software Foundation; ////
|
33 |
|
|
//// either version 2.1 of the License, or (at your option) any ////
|
34 |
|
|
//// later version. ////
|
35 |
|
|
//// ////
|
36 |
|
|
//// This source is distributed in the hope that it will be ////
|
37 |
|
|
//// useful, but WITHOUT ANY WARRANTY; without even the implied ////
|
38 |
|
|
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR ////
|
39 |
|
|
//// PURPOSE. See the GNU Lesser General Public License for more ////
|
40 |
|
|
//// details. ////
|
41 |
|
|
//// ////
|
42 |
|
|
//// You should have received a copy of the GNU Lesser General ////
|
43 |
|
|
//// Public License along with this source; if not, download it ////
|
44 |
|
|
//// from http://www.opencores.org/lgpl.shtml ////
|
45 |
|
|
//// ////
|
46 |
|
|
//////////////////////////////////////////////////////////////////////
|
47 |
21 |
unneback |
//altera
|
48 |
33 |
unneback |
module vl_gbuf ( i, o);
|
49 |
|
|
input i;
|
50 |
|
|
output o;
|
51 |
|
|
assign o = i;
|
52 |
|
|
endmodule
|
53 |
6 |
unneback |
// ALTERA
|
54 |
|
|
//ACTEL
|
55 |
|
|
// sync reset
|
56 |
17 |
unneback |
// input active lo async reset, normally from external reset generator and/or switch
|
57 |
6 |
unneback |
// output active high global reset sync with two DFFs
|
58 |
|
|
`timescale 1 ns/100 ps
|
59 |
|
|
module vl_sync_rst ( rst_n_i, rst_o, clk);
|
60 |
|
|
input rst_n_i, clk;
|
61 |
|
|
output rst_o;
|
62 |
18 |
unneback |
reg [1:0] tmp;
|
63 |
6 |
unneback |
always @ (posedge clk or negedge rst_n_i)
|
64 |
|
|
if (!rst_n_i)
|
65 |
17 |
unneback |
tmp <= 2'b11;
|
66 |
6 |
unneback |
else
|
67 |
33 |
unneback |
tmp <= {1'b0,tmp[1]};
|
68 |
17 |
unneback |
vl_gbuf buf_i0( .i(tmp[0]), .o(rst_o));
|
69 |
6 |
unneback |
endmodule
|
70 |
|
|
// vl_pll
|
71 |
32 |
unneback |
///////////////////////////////////////////////////////////////////////////////
|
72 |
|
|
`timescale 1 ps/1 ps
|
73 |
|
|
module vl_pll ( clk_i, rst_n_i, lock, clk_o, rst_o);
|
74 |
|
|
parameter index = 0;
|
75 |
|
|
parameter number_of_clk = 1;
|
76 |
|
|
parameter period_time_0 = 20000;
|
77 |
|
|
parameter period_time_1 = 20000;
|
78 |
|
|
parameter period_time_2 = 20000;
|
79 |
|
|
parameter period_time_3 = 20000;
|
80 |
|
|
parameter period_time_4 = 20000;
|
81 |
|
|
parameter lock_delay = 2000000;
|
82 |
|
|
input clk_i, rst_n_i;
|
83 |
|
|
output lock;
|
84 |
|
|
output reg [0:number_of_clk-1] clk_o;
|
85 |
|
|
output [0:number_of_clk-1] rst_o;
|
86 |
33 |
unneback |
`ifdef SIM_PLL
|
87 |
32 |
unneback |
always
|
88 |
|
|
#((period_time_0)/2) clk_o[0] <= (!rst_n_i) ? 0 : ~clk_o[0];
|
89 |
|
|
generate if (number_of_clk > 1)
|
90 |
|
|
always
|
91 |
|
|
#((period_time_1)/2) clk_o[1] <= (!rst_n_i) ? 0 : ~clk_o[1];
|
92 |
|
|
endgenerate
|
93 |
|
|
generate if (number_of_clk > 2)
|
94 |
|
|
always
|
95 |
|
|
#((period_time_2)/2) clk_o[2] <= (!rst_n_i) ? 0 : ~clk_o[2];
|
96 |
|
|
endgenerate
|
97 |
33 |
unneback |
generate if (number_of_clk > 3)
|
98 |
32 |
unneback |
always
|
99 |
|
|
#((period_time_3)/2) clk_o[3] <= (!rst_n_i) ? 0 : ~clk_o[3];
|
100 |
|
|
endgenerate
|
101 |
33 |
unneback |
generate if (number_of_clk > 4)
|
102 |
32 |
unneback |
always
|
103 |
|
|
#((period_time_4)/2) clk_o[4] <= (!rst_n_i) ? 0 : ~clk_o[4];
|
104 |
|
|
endgenerate
|
105 |
|
|
genvar i;
|
106 |
|
|
generate for (i=0;i<number_of_clk;i=i+1) begin: clock
|
107 |
|
|
vl_sync_rst rst_i0 ( .rst_n_i(rst_n_i | lock), .rst_o(rst_o[i]), .clk(clk_o[i]));
|
108 |
|
|
end
|
109 |
|
|
endgenerate
|
110 |
33 |
unneback |
//assign #lock_delay lock = rst_n_i;
|
111 |
|
|
assign lock = rst_n_i;
|
112 |
32 |
unneback |
endmodule
|
113 |
33 |
unneback |
`else
|
114 |
|
|
`ifdef VL_PLL0
|
115 |
|
|
`ifdef VL_PLL0_CLK1
|
116 |
|
|
pll0 pll0_i0 (.areset(rst_n_i), .inclk0(clk_i), .locked(lock), .c0(clk_o[0]));
|
117 |
|
|
`endif
|
118 |
|
|
`ifdef VL_PLL0_CLK2
|
119 |
|
|
pll0 pll0_i0 (.areset(rst_n_i), .inclk0(clk_i), .locked(lock), .c0(clk_o[0]), .c1(clk_o[1]));
|
120 |
|
|
`endif
|
121 |
|
|
`ifdef VL_PLL0_CLK3
|
122 |
|
|
pll0 pll0_i0 (.areset(rst_n_i), .inclk0(clk_i), .locked(lock), .c0(clk_o[0]), .c1(clk_o[1]), .c2(clk_o[2]));
|
123 |
|
|
`endif
|
124 |
|
|
`ifdef VL_PLL0_CLK4
|
125 |
|
|
pll0 pll0_i0 (.areset(rst_n_i), .inclk0(clk_i), .locked(lock), .c0(clk_o[0]), .c1(clk_o[1]), .c2(clk_o[2]), .c3(clk_o[3]));
|
126 |
|
|
`endif
|
127 |
|
|
`ifdef VL_PLL0_CLK5
|
128 |
|
|
pll0 pll0_i0 (.areset(rst_n_i), .inclk0(clk_i), .locked(lock), .c0(clk_o[0]), .c1(clk_o[1]), .c2(clk_o[2]), .c3(clk_o[3]), .c4(clk_o[4]));
|
129 |
|
|
`endif
|
130 |
|
|
`endif
|
131 |
|
|
`ifdef VL_PLL1
|
132 |
|
|
`ifdef VL_PLL1_CLK1
|
133 |
|
|
pll1 pll1_i0 (.areset(rst_n_i), .inclk0(clk_i), .locked(lock), .c0(clk_o[0]));
|
134 |
|
|
`endif
|
135 |
|
|
`ifdef VL_PLL1_CLK2
|
136 |
|
|
pll1 pll1_i0 (.areset(rst_n_i), .inclk0(clk_i), .locked(lock), .c0(clk_o[0]), .c1(clk_o[1]));
|
137 |
|
|
`endif
|
138 |
|
|
`ifdef VL_PLL1_CLK3
|
139 |
|
|
pll1 pll1_i0 (.areset(rst_n_i), .inclk0(clk_i), .locked(lock), .c0(clk_o[0]), .c1(clk_o[1]), .c2(clk_o[2]));
|
140 |
|
|
`endif
|
141 |
|
|
`ifdef VL_PLL1_CLK4
|
142 |
|
|
pll1 pll1_i0 (.areset(rst_n_i), .inclk0(clk_i), .locked(lock), .c0(clk_o[0]), .c1(clk_o[1]), .c2(clk_o[2]), .c3(clk_o[3]));
|
143 |
|
|
`endif
|
144 |
|
|
`ifdef VL_PLL1_CLK5
|
145 |
|
|
pll1 pll1_i0 (.areset(rst_n_i), .inclk0(clk_i), .locked(lock), .c0(clk_o[0]), .c1(clk_o[1]), .c2(clk_o[2]), .c3(clk_o[3]), .c4(clk_o[4]));
|
146 |
|
|
`endif
|
147 |
|
|
`endif
|
148 |
|
|
`ifdef VL_PLL2
|
149 |
|
|
`ifdef VL_PLL2_CLK1
|
150 |
|
|
pll2 pll2_i0 (.areset(rst_n_i), .inclk0(clk_i), .locked(lock), .c0(clk_o[0]));
|
151 |
|
|
`endif
|
152 |
|
|
`ifdef VL_PLL2_CLK2
|
153 |
|
|
pll2 pll2_i0 (.areset(rst_n_i), .inclk0(clk_i), .locked(lock), .c0(clk_o[0]), .c1(clk_o[1]));
|
154 |
|
|
`endif
|
155 |
|
|
`ifdef VL_PLL2_CLK3
|
156 |
|
|
pll2 pll2_i0 (.areset(rst_n_i), .inclk0(clk_i), .locked(lock), .c0(clk_o[0]), .c1(clk_o[1]), .c2(clk_o[2]));
|
157 |
|
|
`endif
|
158 |
|
|
`ifdef VL_PLL2_CLK4
|
159 |
|
|
pll2 pll2_i0 (.areset(rst_n_i), .inclk0(clk_i), .locked(lock), .c0(clk_o[0]), .c1(clk_o[1]), .c2(clk_o[2]), .c3(clk_o[3]));
|
160 |
|
|
`endif
|
161 |
|
|
`ifdef VL_PLL2_CLK5
|
162 |
|
|
pll2 pll2_i0 (.areset(rst_n_i), .inclk0(clk_i), .locked(lock), .c0(clk_o[0]), .c1(clk_o[1]), .c2(clk_o[2]), .c3(clk_o[3]), .c4(clk_o[4]));
|
163 |
|
|
`endif
|
164 |
|
|
`endif
|
165 |
|
|
`ifdef VL_PLL3
|
166 |
|
|
`ifdef VL_PLL3_CLK1
|
167 |
|
|
pll3 pll3_i0 (.areset(rst_n_i), .inclk0(clk_i), .locked(lock), .c0(clk_o[0]));
|
168 |
|
|
`endif
|
169 |
|
|
`ifdef VL_PLL3_CLK2
|
170 |
|
|
pll3 pll3_i0 (.areset(rst_n_i), .inclk0(clk_i), .locked(lock), .c0(clk_o[0]), .c1(clk_o[1]));
|
171 |
|
|
`endif
|
172 |
|
|
`ifdef VL_PLL3_CLK3
|
173 |
|
|
pll3 pll3_i0 (.areset(rst_n_i), .inclk0(clk_i), .locked(lock), .c0(clk_o[0]), .c1(clk_o[1]), .c2(clk_o[2]));
|
174 |
|
|
`endif
|
175 |
|
|
`ifdef VL_PLL3_CLK4
|
176 |
|
|
pll3 pll3_i0 (.areset(rst_n_i), .inclk0(clk_i), .locked(lock), .c0(clk_o[0]), .c1(clk_o[1]), .c2(clk_o[2]), .c3(clk_o[3]));
|
177 |
|
|
`endif
|
178 |
|
|
`ifdef VL_PLL3_CLK5
|
179 |
|
|
pll3 pll3_i0 (.areset(rst_n_i), .inclk0(clk_i), .locked(lock), .c0(clk_o[0]), .c1(clk_o[1]), .c2(clk_o[2]), .c3(clk_o[3]), .c4(clk_o[4]));
|
180 |
|
|
`endif
|
181 |
|
|
`endif
|
182 |
32 |
unneback |
genvar i;
|
183 |
|
|
generate for (i=0;i<number_of_clk;i=i+1) begin: clock
|
184 |
40 |
unneback |
vl_sync_rst rst_i0 ( .rst_n_i(rst_n_i | lock), .rst_o(rst_o[i]), .clk(clk_o[i]));
|
185 |
32 |
unneback |
end
|
186 |
|
|
endgenerate
|
187 |
|
|
endmodule
|
188 |
33 |
unneback |
`endif
|
189 |
32 |
unneback |
///////////////////////////////////////////////////////////////////////////////
|
190 |
6 |
unneback |
//altera
|
191 |
|
|
//actel
|
192 |
|
|
//////////////////////////////////////////////////////////////////////
|
193 |
|
|
//// ////
|
194 |
|
|
//// Versatile library, registers ////
|
195 |
|
|
//// ////
|
196 |
|
|
//// Description ////
|
197 |
|
|
//// Different type of registers ////
|
198 |
|
|
//// ////
|
199 |
|
|
//// ////
|
200 |
|
|
//// To Do: ////
|
201 |
|
|
//// - add more different registers ////
|
202 |
|
|
//// ////
|
203 |
|
|
//// Author(s): ////
|
204 |
|
|
//// - Michael Unneback, unneback@opencores.org ////
|
205 |
|
|
//// ORSoC AB ////
|
206 |
|
|
//// ////
|
207 |
|
|
//////////////////////////////////////////////////////////////////////
|
208 |
|
|
//// ////
|
209 |
|
|
//// Copyright (C) 2010 Authors and OPENCORES.ORG ////
|
210 |
|
|
//// ////
|
211 |
|
|
//// This source file may be used and distributed without ////
|
212 |
|
|
//// restriction provided that this copyright statement is not ////
|
213 |
|
|
//// removed from the file and that any derivative work contains ////
|
214 |
|
|
//// the original copyright notice and the associated disclaimer. ////
|
215 |
|
|
//// ////
|
216 |
|
|
//// This source file is free software; you can redistribute it ////
|
217 |
|
|
//// and/or modify it under the terms of the GNU Lesser General ////
|
218 |
|
|
//// Public License as published by the Free Software Foundation; ////
|
219 |
|
|
//// either version 2.1 of the License, or (at your option) any ////
|
220 |
|
|
//// later version. ////
|
221 |
|
|
//// ////
|
222 |
|
|
//// This source is distributed in the hope that it will be ////
|
223 |
|
|
//// useful, but WITHOUT ANY WARRANTY; without even the implied ////
|
224 |
|
|
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR ////
|
225 |
|
|
//// PURPOSE. See the GNU Lesser General Public License for more ////
|
226 |
|
|
//// details. ////
|
227 |
|
|
//// ////
|
228 |
|
|
//// You should have received a copy of the GNU Lesser General ////
|
229 |
|
|
//// Public License along with this source; if not, download it ////
|
230 |
|
|
//// from http://www.opencores.org/lgpl.shtml ////
|
231 |
|
|
//// ////
|
232 |
|
|
//////////////////////////////////////////////////////////////////////
|
233 |
18 |
unneback |
module vl_dff ( d, q, clk, rst);
|
234 |
6 |
unneback |
parameter width = 1;
|
235 |
139 |
unneback |
parameter reset_value = {width{1'b0}};
|
236 |
6 |
unneback |
input [width-1:0] d;
|
237 |
|
|
input clk, rst;
|
238 |
|
|
output reg [width-1:0] q;
|
239 |
|
|
always @ (posedge clk or posedge rst)
|
240 |
|
|
if (rst)
|
241 |
|
|
q <= reset_value;
|
242 |
|
|
else
|
243 |
|
|
q <= d;
|
244 |
|
|
endmodule
|
245 |
18 |
unneback |
module vl_dff_array ( d, q, clk, rst);
|
246 |
6 |
unneback |
parameter width = 1;
|
247 |
|
|
parameter depth = 2;
|
248 |
|
|
parameter reset_value = 1'b0;
|
249 |
|
|
input [width-1:0] d;
|
250 |
|
|
input clk, rst;
|
251 |
|
|
output [width-1:0] q;
|
252 |
|
|
reg [0:depth-1] q_tmp [width-1:0];
|
253 |
|
|
integer i;
|
254 |
|
|
always @ (posedge clk or posedge rst)
|
255 |
|
|
if (rst) begin
|
256 |
|
|
for (i=0;i<depth;i=i+1)
|
257 |
|
|
q_tmp[i] <= {width{reset_value}};
|
258 |
|
|
end else begin
|
259 |
|
|
q_tmp[0] <= d;
|
260 |
|
|
for (i=1;i<depth;i=i+1)
|
261 |
|
|
q_tmp[i] <= q_tmp[i-1];
|
262 |
|
|
end
|
263 |
|
|
assign q = q_tmp[depth-1];
|
264 |
|
|
endmodule
|
265 |
18 |
unneback |
module vl_dff_ce ( d, ce, q, clk, rst);
|
266 |
6 |
unneback |
parameter width = 1;
|
267 |
139 |
unneback |
parameter reset_value = {width{1'b0}};
|
268 |
6 |
unneback |
input [width-1:0] d;
|
269 |
|
|
input ce, clk, rst;
|
270 |
|
|
output reg [width-1:0] q;
|
271 |
|
|
always @ (posedge clk or posedge rst)
|
272 |
|
|
if (rst)
|
273 |
|
|
q <= reset_value;
|
274 |
|
|
else
|
275 |
|
|
if (ce)
|
276 |
|
|
q <= d;
|
277 |
|
|
endmodule
|
278 |
18 |
unneback |
module vl_dff_ce_clear ( d, ce, clear, q, clk, rst);
|
279 |
8 |
unneback |
parameter width = 1;
|
280 |
139 |
unneback |
parameter reset_value = {width{1'b0}};
|
281 |
8 |
unneback |
input [width-1:0] d;
|
282 |
10 |
unneback |
input ce, clear, clk, rst;
|
283 |
8 |
unneback |
output reg [width-1:0] q;
|
284 |
|
|
always @ (posedge clk or posedge rst)
|
285 |
|
|
if (rst)
|
286 |
|
|
q <= reset_value;
|
287 |
|
|
else
|
288 |
|
|
if (ce)
|
289 |
|
|
if (clear)
|
290 |
|
|
q <= {width{1'b0}};
|
291 |
|
|
else
|
292 |
|
|
q <= d;
|
293 |
|
|
endmodule
|
294 |
24 |
unneback |
module vl_dff_ce_set ( d, ce, set, q, clk, rst);
|
295 |
|
|
parameter width = 1;
|
296 |
139 |
unneback |
parameter reset_value = {width{1'b0}};
|
297 |
24 |
unneback |
input [width-1:0] d;
|
298 |
|
|
input ce, set, clk, rst;
|
299 |
|
|
output reg [width-1:0] q;
|
300 |
|
|
always @ (posedge clk or posedge rst)
|
301 |
|
|
if (rst)
|
302 |
|
|
q <= reset_value;
|
303 |
|
|
else
|
304 |
|
|
if (ce)
|
305 |
|
|
if (set)
|
306 |
|
|
q <= {width{1'b1}};
|
307 |
|
|
else
|
308 |
|
|
q <= d;
|
309 |
|
|
endmodule
|
310 |
29 |
unneback |
module vl_spr ( sp, r, q, clk, rst);
|
311 |
64 |
unneback |
//parameter width = 1;
|
312 |
|
|
parameter reset_value = 1'b0;
|
313 |
29 |
unneback |
input sp, r;
|
314 |
|
|
output reg q;
|
315 |
|
|
input clk, rst;
|
316 |
|
|
always @ (posedge clk or posedge rst)
|
317 |
|
|
if (rst)
|
318 |
|
|
q <= reset_value;
|
319 |
|
|
else
|
320 |
|
|
if (sp)
|
321 |
|
|
q <= 1'b1;
|
322 |
|
|
else if (r)
|
323 |
|
|
q <= 1'b0;
|
324 |
|
|
endmodule
|
325 |
|
|
module vl_srp ( s, rp, q, clk, rst);
|
326 |
|
|
parameter width = 1;
|
327 |
|
|
parameter reset_value = 0;
|
328 |
|
|
input s, rp;
|
329 |
|
|
output reg q;
|
330 |
|
|
input clk, rst;
|
331 |
|
|
always @ (posedge clk or posedge rst)
|
332 |
|
|
if (rst)
|
333 |
|
|
q <= reset_value;
|
334 |
|
|
else
|
335 |
|
|
if (rp)
|
336 |
|
|
q <= 1'b0;
|
337 |
|
|
else if (s)
|
338 |
|
|
q <= 1'b1;
|
339 |
|
|
endmodule
|
340 |
6 |
unneback |
// megafunction wizard: %LPM_FF%
|
341 |
|
|
// GENERATION: STANDARD
|
342 |
|
|
// VERSION: WM1.0
|
343 |
|
|
// MODULE: lpm_ff
|
344 |
|
|
// ============================================================
|
345 |
|
|
// File Name: dff_sr.v
|
346 |
|
|
// Megafunction Name(s):
|
347 |
|
|
// lpm_ff
|
348 |
|
|
//
|
349 |
|
|
// Simulation Library Files(s):
|
350 |
|
|
// lpm
|
351 |
|
|
// ============================================================
|
352 |
|
|
// ************************************************************
|
353 |
|
|
// THIS IS A WIZARD-GENERATED FILE. DO NOT EDIT THIS FILE!
|
354 |
|
|
//
|
355 |
|
|
// 9.1 Build 304 01/25/2010 SP 1 SJ Full Version
|
356 |
|
|
// ************************************************************
|
357 |
|
|
//Copyright (C) 1991-2010 Altera Corporation
|
358 |
|
|
//Your use of Altera Corporation's design tools, logic functions
|
359 |
|
|
//and other software and tools, and its AMPP partner logic
|
360 |
|
|
//functions, and any output files from any of the foregoing
|
361 |
|
|
//(including device programming or simulation files), and any
|
362 |
|
|
//associated documentation or information are expressly subject
|
363 |
|
|
//to the terms and conditions of the Altera Program License
|
364 |
|
|
//Subscription Agreement, Altera MegaCore Function License
|
365 |
|
|
//Agreement, or other applicable license agreement, including,
|
366 |
|
|
//without limitation, that your use is for the sole purpose of
|
367 |
|
|
//programming logic devices manufactured by Altera and sold by
|
368 |
|
|
//Altera or its authorized distributors. Please refer to the
|
369 |
|
|
//applicable agreement for further details.
|
370 |
|
|
// synopsys translate_off
|
371 |
|
|
`timescale 1 ps / 1 ps
|
372 |
|
|
// synopsys translate_on
|
373 |
18 |
unneback |
module vl_dff_sr (
|
374 |
6 |
unneback |
aclr,
|
375 |
|
|
aset,
|
376 |
|
|
clock,
|
377 |
|
|
data,
|
378 |
|
|
q);
|
379 |
|
|
input aclr;
|
380 |
|
|
input aset;
|
381 |
|
|
input clock;
|
382 |
|
|
input data;
|
383 |
|
|
output q;
|
384 |
|
|
wire [0:0] sub_wire0;
|
385 |
|
|
wire [0:0] sub_wire1 = sub_wire0[0:0];
|
386 |
|
|
wire q = sub_wire1;
|
387 |
|
|
wire sub_wire2 = data;
|
388 |
|
|
wire sub_wire3 = sub_wire2;
|
389 |
|
|
lpm_ff lpm_ff_component (
|
390 |
|
|
.aclr (aclr),
|
391 |
|
|
.clock (clock),
|
392 |
|
|
.data (sub_wire3),
|
393 |
|
|
.aset (aset),
|
394 |
|
|
.q (sub_wire0)
|
395 |
|
|
// synopsys translate_off
|
396 |
|
|
,
|
397 |
|
|
.aload (),
|
398 |
|
|
.enable (),
|
399 |
|
|
.sclr (),
|
400 |
|
|
.sload (),
|
401 |
|
|
.sset ()
|
402 |
|
|
// synopsys translate_on
|
403 |
|
|
);
|
404 |
|
|
defparam
|
405 |
|
|
lpm_ff_component.lpm_fftype = "DFF",
|
406 |
|
|
lpm_ff_component.lpm_type = "LPM_FF",
|
407 |
|
|
lpm_ff_component.lpm_width = 1;
|
408 |
|
|
endmodule
|
409 |
|
|
// ============================================================
|
410 |
|
|
// CNX file retrieval info
|
411 |
|
|
// ============================================================
|
412 |
|
|
// Retrieval info: PRIVATE: ACLR NUMERIC "1"
|
413 |
|
|
// Retrieval info: PRIVATE: ALOAD NUMERIC "0"
|
414 |
|
|
// Retrieval info: PRIVATE: ASET NUMERIC "1"
|
415 |
|
|
// Retrieval info: PRIVATE: ASET_ALL1 NUMERIC "1"
|
416 |
|
|
// Retrieval info: PRIVATE: CLK_EN NUMERIC "0"
|
417 |
|
|
// Retrieval info: PRIVATE: DFF NUMERIC "1"
|
418 |
|
|
// Retrieval info: PRIVATE: INTENDED_DEVICE_FAMILY STRING "Cyclone IV E"
|
419 |
|
|
// Retrieval info: PRIVATE: SCLR NUMERIC "0"
|
420 |
|
|
// Retrieval info: PRIVATE: SLOAD NUMERIC "0"
|
421 |
|
|
// Retrieval info: PRIVATE: SSET NUMERIC "0"
|
422 |
|
|
// Retrieval info: PRIVATE: SSET_ALL1 NUMERIC "1"
|
423 |
|
|
// Retrieval info: PRIVATE: SYNTH_WRAPPER_GEN_POSTFIX STRING "0"
|
424 |
|
|
// Retrieval info: PRIVATE: UseTFFdataPort NUMERIC "0"
|
425 |
|
|
// Retrieval info: PRIVATE: nBit NUMERIC "1"
|
426 |
|
|
// Retrieval info: CONSTANT: LPM_FFTYPE STRING "DFF"
|
427 |
|
|
// Retrieval info: CONSTANT: LPM_TYPE STRING "LPM_FF"
|
428 |
|
|
// Retrieval info: CONSTANT: LPM_WIDTH NUMERIC "1"
|
429 |
|
|
// Retrieval info: USED_PORT: aclr 0 0 0 0 INPUT NODEFVAL aclr
|
430 |
|
|
// Retrieval info: USED_PORT: aset 0 0 0 0 INPUT NODEFVAL aset
|
431 |
|
|
// Retrieval info: USED_PORT: clock 0 0 0 0 INPUT NODEFVAL clock
|
432 |
|
|
// Retrieval info: USED_PORT: data 0 0 0 0 INPUT NODEFVAL data
|
433 |
|
|
// Retrieval info: USED_PORT: q 0 0 0 0 OUTPUT NODEFVAL q
|
434 |
|
|
// Retrieval info: CONNECT: @clock 0 0 0 0 clock 0 0 0 0
|
435 |
|
|
// Retrieval info: CONNECT: q 0 0 0 0 @q 0 0 1 0
|
436 |
|
|
// Retrieval info: CONNECT: @aclr 0 0 0 0 aclr 0 0 0 0
|
437 |
|
|
// Retrieval info: CONNECT: @aset 0 0 0 0 aset 0 0 0 0
|
438 |
|
|
// Retrieval info: CONNECT: @data 0 0 1 0 data 0 0 0 0
|
439 |
|
|
// Retrieval info: LIBRARY: lpm lpm.lpm_components.all
|
440 |
|
|
// Retrieval info: GEN_FILE: TYPE_NORMAL dff_sr.v TRUE
|
441 |
|
|
// Retrieval info: GEN_FILE: TYPE_NORMAL dff_sr.inc FALSE
|
442 |
|
|
// Retrieval info: GEN_FILE: TYPE_NORMAL dff_sr.cmp FALSE
|
443 |
|
|
// Retrieval info: GEN_FILE: TYPE_NORMAL dff_sr.bsf FALSE
|
444 |
|
|
// Retrieval info: GEN_FILE: TYPE_NORMAL dff_sr_inst.v FALSE
|
445 |
|
|
// Retrieval info: GEN_FILE: TYPE_NORMAL dff_sr_bb.v FALSE
|
446 |
|
|
// Retrieval info: LIB_FILE: lpm
|
447 |
|
|
// LATCH
|
448 |
|
|
// For targtes not supporting LATCH use dff_sr with clk=1 and data=1
|
449 |
18 |
unneback |
module vl_latch ( d, le, q, clk);
|
450 |
6 |
unneback |
input d, le;
|
451 |
|
|
output q;
|
452 |
|
|
input clk;
|
453 |
|
|
dff_sr i0 (.aclr(), .aset(), .clock(1'b1), .data(1'b1), .q(q));
|
454 |
|
|
endmodule
|
455 |
18 |
unneback |
module vl_shreg ( d, q, clk, rst);
|
456 |
17 |
unneback |
parameter depth = 10;
|
457 |
|
|
input d;
|
458 |
|
|
output q;
|
459 |
|
|
input clk, rst;
|
460 |
|
|
reg [1:depth] dffs;
|
461 |
|
|
always @ (posedge clk or posedge rst)
|
462 |
|
|
if (rst)
|
463 |
|
|
dffs <= {depth{1'b0}};
|
464 |
|
|
else
|
465 |
|
|
dffs <= {d,dffs[1:depth-1]};
|
466 |
|
|
assign q = dffs[depth];
|
467 |
|
|
endmodule
|
468 |
18 |
unneback |
module vl_shreg_ce ( d, ce, q, clk, rst);
|
469 |
17 |
unneback |
parameter depth = 10;
|
470 |
|
|
input d, ce;
|
471 |
|
|
output q;
|
472 |
|
|
input clk, rst;
|
473 |
|
|
reg [1:depth] dffs;
|
474 |
|
|
always @ (posedge clk or posedge rst)
|
475 |
|
|
if (rst)
|
476 |
|
|
dffs <= {depth{1'b0}};
|
477 |
|
|
else
|
478 |
|
|
if (ce)
|
479 |
|
|
dffs <= {d,dffs[1:depth-1]};
|
480 |
|
|
assign q = dffs[depth];
|
481 |
|
|
endmodule
|
482 |
18 |
unneback |
module vl_delay ( d, q, clk, rst);
|
483 |
15 |
unneback |
parameter depth = 10;
|
484 |
|
|
input d;
|
485 |
|
|
output q;
|
486 |
|
|
input clk, rst;
|
487 |
|
|
reg [1:depth] dffs;
|
488 |
|
|
always @ (posedge clk or posedge rst)
|
489 |
|
|
if (rst)
|
490 |
|
|
dffs <= {depth{1'b0}};
|
491 |
|
|
else
|
492 |
|
|
dffs <= {d,dffs[1:depth-1]};
|
493 |
|
|
assign q = dffs[depth];
|
494 |
|
|
endmodule
|
495 |
18 |
unneback |
module vl_delay_emptyflag ( d, q, emptyflag, clk, rst);
|
496 |
17 |
unneback |
parameter depth = 10;
|
497 |
|
|
input d;
|
498 |
|
|
output q, emptyflag;
|
499 |
|
|
input clk, rst;
|
500 |
|
|
reg [1:depth] dffs;
|
501 |
|
|
always @ (posedge clk or posedge rst)
|
502 |
|
|
if (rst)
|
503 |
|
|
dffs <= {depth{1'b0}};
|
504 |
|
|
else
|
505 |
|
|
dffs <= {d,dffs[1:depth-1]};
|
506 |
|
|
assign q = dffs[depth];
|
507 |
|
|
assign emptyflag = !(|dffs);
|
508 |
|
|
endmodule
|
509 |
98 |
unneback |
module vl_pulse2toggle ( pl, q, clk, rst);
|
510 |
94 |
unneback |
input pl;
|
511 |
98 |
unneback |
output reg q;
|
512 |
94 |
unneback |
input clk, rst;
|
513 |
|
|
always @ (posedge clk or posedge rst)
|
514 |
|
|
if (rst)
|
515 |
|
|
q <= 1'b0;
|
516 |
|
|
else
|
517 |
|
|
q <= pl ^ q;
|
518 |
|
|
endmodule
|
519 |
98 |
unneback |
module vl_toggle2pulse (d, pl, clk, rst);
|
520 |
94 |
unneback |
input d;
|
521 |
|
|
output pl;
|
522 |
|
|
input clk, rst;
|
523 |
|
|
reg dff;
|
524 |
|
|
always @ (posedge clk or posedge rst)
|
525 |
|
|
if (rst)
|
526 |
|
|
dff <= 1'b0;
|
527 |
|
|
else
|
528 |
|
|
dff <= d;
|
529 |
98 |
unneback |
assign pl = d ^ dff;
|
530 |
94 |
unneback |
endmodule
|
531 |
|
|
module vl_synchronizer (d, q, clk, rst);
|
532 |
|
|
input d;
|
533 |
|
|
output reg q;
|
534 |
116 |
unneback |
input clk, rst;
|
535 |
94 |
unneback |
reg dff;
|
536 |
|
|
always @ (posedge clk or posedge rst)
|
537 |
|
|
if (rst)
|
538 |
100 |
unneback |
{q,dff} <= 2'b00;
|
539 |
94 |
unneback |
else
|
540 |
100 |
unneback |
{q,dff} <= {dff,d};
|
541 |
94 |
unneback |
endmodule
|
542 |
97 |
unneback |
module vl_cdc ( start_pl, take_it_pl, take_it_grant_pl, got_it_pl, clk_src, rst_src, clk_dst, rst_dst);
|
543 |
94 |
unneback |
input start_pl;
|
544 |
|
|
output take_it_pl;
|
545 |
|
|
input take_it_grant_pl; // note: connect to take_it_pl to generate automatic ack
|
546 |
|
|
output got_it_pl;
|
547 |
|
|
input clk_src, rst_src;
|
548 |
|
|
input clk_dst, rst_dst;
|
549 |
|
|
wire take_it_tg, take_it_tg_sync;
|
550 |
|
|
wire got_it_tg, got_it_tg_sync;
|
551 |
|
|
// src -> dst
|
552 |
|
|
vl_pulse2toggle p2t0 (
|
553 |
|
|
.pl(start_pl),
|
554 |
|
|
.q(take_it_tg),
|
555 |
|
|
.clk(clk_src),
|
556 |
|
|
.rst(rst_src));
|
557 |
|
|
vl_synchronizer sync0 (
|
558 |
|
|
.d(take_it_tg),
|
559 |
|
|
.q(take_it_tg_sync),
|
560 |
|
|
.clk(clk_dst),
|
561 |
|
|
.rst(rst_dst));
|
562 |
|
|
vl_toggle2pulse t2p0 (
|
563 |
100 |
unneback |
.d(take_it_tg_sync),
|
564 |
94 |
unneback |
.pl(take_it_pl),
|
565 |
|
|
.clk(clk_dst),
|
566 |
|
|
.rst(rst_dst));
|
567 |
|
|
// dst -> src
|
568 |
98 |
unneback |
vl_pulse2toggle p2t1 (
|
569 |
94 |
unneback |
.pl(take_it_grant_pl),
|
570 |
|
|
.q(got_it_tg),
|
571 |
|
|
.clk(clk_dst),
|
572 |
|
|
.rst(rst_dst));
|
573 |
|
|
vl_synchronizer sync1 (
|
574 |
|
|
.d(got_it_tg),
|
575 |
|
|
.q(got_it_tg_sync),
|
576 |
|
|
.clk(clk_src),
|
577 |
|
|
.rst(rst_src));
|
578 |
|
|
vl_toggle2pulse t2p1 (
|
579 |
100 |
unneback |
.d(got_it_tg_sync),
|
580 |
94 |
unneback |
.pl(got_it_pl),
|
581 |
|
|
.clk(clk_src),
|
582 |
|
|
.rst(rst_src));
|
583 |
|
|
endmodule
|
584 |
6 |
unneback |
//////////////////////////////////////////////////////////////////////
|
585 |
|
|
//// ////
|
586 |
18 |
unneback |
//// Logic functions ////
|
587 |
|
|
//// ////
|
588 |
|
|
//// Description ////
|
589 |
|
|
//// Logic functions such as multiplexers ////
|
590 |
|
|
//// ////
|
591 |
|
|
//// ////
|
592 |
|
|
//// To Do: ////
|
593 |
|
|
//// - ////
|
594 |
|
|
//// ////
|
595 |
|
|
//// Author(s): ////
|
596 |
|
|
//// - Michael Unneback, unneback@opencores.org ////
|
597 |
|
|
//// ORSoC AB ////
|
598 |
|
|
//// ////
|
599 |
|
|
//////////////////////////////////////////////////////////////////////
|
600 |
|
|
//// ////
|
601 |
|
|
//// Copyright (C) 2010 Authors and OPENCORES.ORG ////
|
602 |
|
|
//// ////
|
603 |
|
|
//// This source file may be used and distributed without ////
|
604 |
|
|
//// restriction provided that this copyright statement is not ////
|
605 |
|
|
//// removed from the file and that any derivative work contains ////
|
606 |
|
|
//// the original copyright notice and the associated disclaimer. ////
|
607 |
|
|
//// ////
|
608 |
|
|
//// This source file is free software; you can redistribute it ////
|
609 |
|
|
//// and/or modify it under the terms of the GNU Lesser General ////
|
610 |
|
|
//// Public License as published by the Free Software Foundation; ////
|
611 |
|
|
//// either version 2.1 of the License, or (at your option) any ////
|
612 |
|
|
//// later version. ////
|
613 |
|
|
//// ////
|
614 |
|
|
//// This source is distributed in the hope that it will be ////
|
615 |
|
|
//// useful, but WITHOUT ANY WARRANTY; without even the implied ////
|
616 |
|
|
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR ////
|
617 |
|
|
//// PURPOSE. See the GNU Lesser General Public License for more ////
|
618 |
|
|
//// details. ////
|
619 |
|
|
//// ////
|
620 |
|
|
//// You should have received a copy of the GNU Lesser General ////
|
621 |
|
|
//// Public License along with this source; if not, download it ////
|
622 |
|
|
//// from http://www.opencores.org/lgpl.shtml ////
|
623 |
|
|
//// ////
|
624 |
|
|
//////////////////////////////////////////////////////////////////////
|
625 |
36 |
unneback |
module vl_mux_andor ( a, sel, dout);
|
626 |
|
|
parameter width = 32;
|
627 |
|
|
parameter nr_of_ports = 4;
|
628 |
|
|
input [nr_of_ports*width-1:0] a;
|
629 |
|
|
input [nr_of_ports-1:0] sel;
|
630 |
|
|
output reg [width-1:0] dout;
|
631 |
38 |
unneback |
integer i,j;
|
632 |
36 |
unneback |
always @ (a, sel)
|
633 |
|
|
begin
|
634 |
|
|
dout = a[width-1:0] & {width{sel[0]}};
|
635 |
42 |
unneback |
for (i=1;i<nr_of_ports;i=i+1)
|
636 |
|
|
for (j=0;j<width;j=j+1)
|
637 |
|
|
dout[j] = (a[i*width + j] & sel[i]) | dout[j];
|
638 |
36 |
unneback |
end
|
639 |
|
|
endmodule
|
640 |
34 |
unneback |
module vl_mux2_andor ( a1, a0, sel, dout);
|
641 |
|
|
parameter width = 32;
|
642 |
35 |
unneback |
localparam nr_of_ports = 2;
|
643 |
34 |
unneback |
input [width-1:0] a1, a0;
|
644 |
|
|
input [nr_of_ports-1:0] sel;
|
645 |
|
|
output [width-1:0] dout;
|
646 |
36 |
unneback |
vl_mux_andor
|
647 |
38 |
unneback |
# ( .width(width), .nr_of_ports(nr_of_ports))
|
648 |
36 |
unneback |
mux0( .a({a1,a0}), .sel(sel), .dout(dout));
|
649 |
34 |
unneback |
endmodule
|
650 |
|
|
module vl_mux3_andor ( a2, a1, a0, sel, dout);
|
651 |
|
|
parameter width = 32;
|
652 |
35 |
unneback |
localparam nr_of_ports = 3;
|
653 |
34 |
unneback |
input [width-1:0] a2, a1, a0;
|
654 |
|
|
input [nr_of_ports-1:0] sel;
|
655 |
|
|
output [width-1:0] dout;
|
656 |
36 |
unneback |
vl_mux_andor
|
657 |
38 |
unneback |
# ( .width(width), .nr_of_ports(nr_of_ports))
|
658 |
36 |
unneback |
mux0( .a({a2,a1,a0}), .sel(sel), .dout(dout));
|
659 |
34 |
unneback |
endmodule
|
660 |
18 |
unneback |
module vl_mux4_andor ( a3, a2, a1, a0, sel, dout);
|
661 |
|
|
parameter width = 32;
|
662 |
35 |
unneback |
localparam nr_of_ports = 4;
|
663 |
18 |
unneback |
input [width-1:0] a3, a2, a1, a0;
|
664 |
|
|
input [nr_of_ports-1:0] sel;
|
665 |
22 |
unneback |
output [width-1:0] dout;
|
666 |
36 |
unneback |
vl_mux_andor
|
667 |
38 |
unneback |
# ( .width(width), .nr_of_ports(nr_of_ports))
|
668 |
36 |
unneback |
mux0( .a({a3,a2,a1,a0}), .sel(sel), .dout(dout));
|
669 |
18 |
unneback |
endmodule
|
670 |
|
|
module vl_mux5_andor ( a4, a3, a2, a1, a0, sel, dout);
|
671 |
|
|
parameter width = 32;
|
672 |
35 |
unneback |
localparam nr_of_ports = 5;
|
673 |
18 |
unneback |
input [width-1:0] a4, a3, a2, a1, a0;
|
674 |
|
|
input [nr_of_ports-1:0] sel;
|
675 |
22 |
unneback |
output [width-1:0] dout;
|
676 |
36 |
unneback |
vl_mux_andor
|
677 |
38 |
unneback |
# ( .width(width), .nr_of_ports(nr_of_ports))
|
678 |
36 |
unneback |
mux0( .a({a4,a3,a2,a1,a0}), .sel(sel), .dout(dout));
|
679 |
18 |
unneback |
endmodule
|
680 |
|
|
module vl_mux6_andor ( a5, a4, a3, a2, a1, a0, sel, dout);
|
681 |
|
|
parameter width = 32;
|
682 |
35 |
unneback |
localparam nr_of_ports = 6;
|
683 |
18 |
unneback |
input [width-1:0] a5, a4, a3, a2, a1, a0;
|
684 |
|
|
input [nr_of_ports-1:0] sel;
|
685 |
22 |
unneback |
output [width-1:0] dout;
|
686 |
36 |
unneback |
vl_mux_andor
|
687 |
38 |
unneback |
# ( .width(width), .nr_of_ports(nr_of_ports))
|
688 |
36 |
unneback |
mux0( .a({a5,a4,a3,a2,a1,a0}), .sel(sel), .dout(dout));
|
689 |
18 |
unneback |
endmodule
|
690 |
43 |
unneback |
module vl_parity_generate (data, parity);
|
691 |
|
|
parameter word_size = 32;
|
692 |
|
|
parameter chunk_size = 8;
|
693 |
|
|
parameter parity_type = 1'b0; // 0 - even, 1 - odd parity
|
694 |
|
|
input [word_size-1:0] data;
|
695 |
|
|
output reg [word_size/chunk_size-1:0] parity;
|
696 |
|
|
integer i,j;
|
697 |
|
|
always @ (data)
|
698 |
|
|
for (i=0;i<word_size/chunk_size;i=i+1) begin
|
699 |
|
|
parity[i] = parity_type;
|
700 |
|
|
for (j=0;j<chunk_size;j=j+1) begin
|
701 |
46 |
unneback |
parity[i] = data[i*chunk_size+j] ^ parity[i];
|
702 |
43 |
unneback |
end
|
703 |
|
|
end
|
704 |
|
|
endmodule
|
705 |
|
|
module vl_parity_check( data, parity, parity_error);
|
706 |
|
|
parameter word_size = 32;
|
707 |
|
|
parameter chunk_size = 8;
|
708 |
|
|
parameter parity_type = 1'b0; // 0 - even, 1 - odd parity
|
709 |
|
|
input [word_size-1:0] data;
|
710 |
|
|
input [word_size/chunk_size-1:0] parity;
|
711 |
|
|
output parity_error;
|
712 |
44 |
unneback |
reg [word_size/chunk_size-1:0] error_flag;
|
713 |
43 |
unneback |
integer i,j;
|
714 |
|
|
always @ (data or parity)
|
715 |
|
|
for (i=0;i<word_size/chunk_size;i=i+1) begin
|
716 |
|
|
error_flag[i] = parity[i] ^ parity_type;
|
717 |
|
|
for (j=0;j<chunk_size;j=j+1) begin
|
718 |
46 |
unneback |
error_flag[i] = data[i*chunk_size+j] ^ error_flag[i];
|
719 |
43 |
unneback |
end
|
720 |
|
|
end
|
721 |
|
|
assign parity_error = |error_flag;
|
722 |
|
|
endmodule
|
723 |
18 |
unneback |
//////////////////////////////////////////////////////////////////////
|
724 |
|
|
//// ////
|
725 |
44 |
unneback |
//// IO functions ////
|
726 |
|
|
//// ////
|
727 |
|
|
//// Description ////
|
728 |
|
|
//// IO functions such as IOB flip-flops ////
|
729 |
|
|
//// ////
|
730 |
|
|
//// ////
|
731 |
|
|
//// To Do: ////
|
732 |
|
|
//// - ////
|
733 |
|
|
//// ////
|
734 |
|
|
//// Author(s): ////
|
735 |
|
|
//// - Michael Unneback, unneback@opencores.org ////
|
736 |
|
|
//// ORSoC AB ////
|
737 |
|
|
//// ////
|
738 |
|
|
//////////////////////////////////////////////////////////////////////
|
739 |
|
|
//// ////
|
740 |
|
|
//// Copyright (C) 2010 Authors and OPENCORES.ORG ////
|
741 |
|
|
//// ////
|
742 |
|
|
//// This source file may be used and distributed without ////
|
743 |
|
|
//// restriction provided that this copyright statement is not ////
|
744 |
|
|
//// removed from the file and that any derivative work contains ////
|
745 |
|
|
//// the original copyright notice and the associated disclaimer. ////
|
746 |
|
|
//// ////
|
747 |
|
|
//// This source file is free software; you can redistribute it ////
|
748 |
|
|
//// and/or modify it under the terms of the GNU Lesser General ////
|
749 |
|
|
//// Public License as published by the Free Software Foundation; ////
|
750 |
|
|
//// either version 2.1 of the License, or (at your option) any ////
|
751 |
|
|
//// later version. ////
|
752 |
|
|
//// ////
|
753 |
|
|
//// This source is distributed in the hope that it will be ////
|
754 |
|
|
//// useful, but WITHOUT ANY WARRANTY; without even the implied ////
|
755 |
|
|
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR ////
|
756 |
|
|
//// PURPOSE. See the GNU Lesser General Public License for more ////
|
757 |
|
|
//// details. ////
|
758 |
|
|
//// ////
|
759 |
|
|
//// You should have received a copy of the GNU Lesser General ////
|
760 |
|
|
//// Public License along with this source; if not, download it ////
|
761 |
|
|
//// from http://www.opencores.org/lgpl.shtml ////
|
762 |
|
|
//// ////
|
763 |
|
|
//////////////////////////////////////////////////////////////////////
|
764 |
45 |
unneback |
`timescale 1ns/1ns
|
765 |
44 |
unneback |
module vl_o_dff (d_i, o_pad, clk, rst);
|
766 |
|
|
parameter width = 1;
|
767 |
45 |
unneback |
parameter reset_value = {width{1'b0}};
|
768 |
|
|
input [width-1:0] d_i;
|
769 |
44 |
unneback |
output [width-1:0] o_pad;
|
770 |
|
|
input clk, rst;
|
771 |
60 |
unneback |
wire [width-1:0] d_i_int /*synthesis syn_keep = 1*/;
|
772 |
45 |
unneback |
reg [width-1:0] o_pad_int;
|
773 |
44 |
unneback |
assign d_i_int = d_i;
|
774 |
|
|
genvar i;
|
775 |
45 |
unneback |
generate
|
776 |
136 |
unneback |
for (i=0;i<width;i=i+1) begin : dffs
|
777 |
44 |
unneback |
always @ (posedge clk or posedge rst)
|
778 |
|
|
if (rst)
|
779 |
45 |
unneback |
o_pad_int[i] <= reset_value[i];
|
780 |
44 |
unneback |
else
|
781 |
45 |
unneback |
o_pad_int[i] <= d_i_int[i];
|
782 |
|
|
assign #1 o_pad[i] = o_pad_int[i];
|
783 |
44 |
unneback |
end
|
784 |
|
|
endgenerate
|
785 |
|
|
endmodule
|
786 |
45 |
unneback |
`timescale 1ns/1ns
|
787 |
44 |
unneback |
module vl_io_dff_oe ( d_i, d_o, oe, io_pad, clk, rst);
|
788 |
|
|
parameter width = 1;
|
789 |
140 |
unneback |
parameter reset_value = 1'b0;
|
790 |
44 |
unneback |
input [width-1:0] d_o;
|
791 |
|
|
output reg [width-1:0] d_i;
|
792 |
|
|
input oe;
|
793 |
|
|
inout [width-1:0] io_pad;
|
794 |
|
|
input clk, rst;
|
795 |
60 |
unneback |
wire [width-1:0] oe_d /*synthesis syn_keep = 1*/;
|
796 |
44 |
unneback |
reg [width-1:0] oe_q;
|
797 |
|
|
reg [width-1:0] d_o_q;
|
798 |
|
|
assign oe_d = {width{oe}};
|
799 |
|
|
genvar i;
|
800 |
|
|
generate
|
801 |
136 |
unneback |
for (i=0;i<width;i=i+1) begin : dffs
|
802 |
44 |
unneback |
always @ (posedge clk or posedge rst)
|
803 |
|
|
if (rst)
|
804 |
|
|
oe_q[i] <= 1'b0;
|
805 |
|
|
else
|
806 |
|
|
oe_q[i] <= oe_d[i];
|
807 |
|
|
always @ (posedge clk or posedge rst)
|
808 |
|
|
if (rst)
|
809 |
140 |
unneback |
d_o_q[i] <= reset_value;
|
810 |
44 |
unneback |
else
|
811 |
|
|
d_o_q[i] <= d_o[i];
|
812 |
|
|
always @ (posedge clk or posedge rst)
|
813 |
|
|
if (rst)
|
814 |
140 |
unneback |
d_i[i] <= reset_value;
|
815 |
44 |
unneback |
else
|
816 |
|
|
d_i[i] <= io_pad[i];
|
817 |
45 |
unneback |
assign #1 io_pad[i] = (oe_q[i]) ? d_o_q[i] : 1'bz;
|
818 |
44 |
unneback |
end
|
819 |
|
|
endgenerate
|
820 |
|
|
endmodule
|
821 |
136 |
unneback |
module vl_o_ddr (d_h_i, d_l_i, o_pad, clk, rst);
|
822 |
|
|
parameter width = 1;
|
823 |
|
|
input [width-1:0] d_h_i, d_l_i;
|
824 |
|
|
output [width-1:0] o_pad;
|
825 |
|
|
input clk, rst;
|
826 |
|
|
genvar i;
|
827 |
|
|
generate
|
828 |
|
|
for (i=0;i<width;i=i+1) begin : ddr
|
829 |
|
|
ddio_out ddio_out0( .aclr(rst), .datain_h(d_h_i[i]), .datain_l(d_l_i[i]), .outclock(clk), .dataout(o_pad[i]) );
|
830 |
|
|
end
|
831 |
|
|
endgenerate
|
832 |
|
|
endmodule
|
833 |
|
|
module vl_o_clk ( clk_o_pad, clk, rst);
|
834 |
|
|
input clk, rst;
|
835 |
|
|
output clk_o_pad;
|
836 |
|
|
vl_o_ddr o_ddr0( .d_h_i(1'b1), .d_l_i(1'b0), .o_pad(clk_o_pad), .clk(clk), .rst(rst));
|
837 |
|
|
endmodule
|
838 |
44 |
unneback |
//////////////////////////////////////////////////////////////////////
|
839 |
|
|
//// ////
|
840 |
6 |
unneback |
//// Versatile counter ////
|
841 |
|
|
//// ////
|
842 |
|
|
//// Description ////
|
843 |
|
|
//// Versatile counter, a reconfigurable binary, gray or LFSR ////
|
844 |
|
|
//// counter ////
|
845 |
|
|
//// ////
|
846 |
|
|
//// To Do: ////
|
847 |
|
|
//// - add LFSR with more taps ////
|
848 |
|
|
//// ////
|
849 |
|
|
//// Author(s): ////
|
850 |
|
|
//// - Michael Unneback, unneback@opencores.org ////
|
851 |
|
|
//// ORSoC AB ////
|
852 |
|
|
//// ////
|
853 |
|
|
//////////////////////////////////////////////////////////////////////
|
854 |
|
|
//// ////
|
855 |
|
|
//// Copyright (C) 2009 Authors and OPENCORES.ORG ////
|
856 |
|
|
//// ////
|
857 |
|
|
//// This source file may be used and distributed without ////
|
858 |
|
|
//// restriction provided that this copyright statement is not ////
|
859 |
|
|
//// removed from the file and that any derivative work contains ////
|
860 |
|
|
//// the original copyright notice and the associated disclaimer. ////
|
861 |
|
|
//// ////
|
862 |
|
|
//// This source file is free software; you can redistribute it ////
|
863 |
|
|
//// and/or modify it under the terms of the GNU Lesser General ////
|
864 |
|
|
//// Public License as published by the Free Software Foundation; ////
|
865 |
|
|
//// either version 2.1 of the License, or (at your option) any ////
|
866 |
|
|
//// later version. ////
|
867 |
|
|
//// ////
|
868 |
|
|
//// This source is distributed in the hope that it will be ////
|
869 |
|
|
//// useful, but WITHOUT ANY WARRANTY; without even the implied ////
|
870 |
|
|
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR ////
|
871 |
|
|
//// PURPOSE. See the GNU Lesser General Public License for more ////
|
872 |
|
|
//// details. ////
|
873 |
|
|
//// ////
|
874 |
|
|
//// You should have received a copy of the GNU Lesser General ////
|
875 |
|
|
//// Public License along with this source; if not, download it ////
|
876 |
|
|
//// from http://www.opencores.org/lgpl.shtml ////
|
877 |
|
|
//// ////
|
878 |
|
|
//////////////////////////////////////////////////////////////////////
|
879 |
|
|
// binary counter
|
880 |
139 |
unneback |
module vl_cnt_bin (
|
881 |
|
|
q, rst, clk);
|
882 |
|
|
parameter length = 4;
|
883 |
|
|
output [length:1] q;
|
884 |
|
|
input rst;
|
885 |
|
|
input clk;
|
886 |
|
|
parameter clear_value = 0;
|
887 |
|
|
parameter set_value = 1;
|
888 |
|
|
parameter wrap_value = 0;
|
889 |
|
|
parameter level1_value = 15;
|
890 |
|
|
reg [length:1] qi;
|
891 |
|
|
wire [length:1] q_next;
|
892 |
|
|
assign q_next = qi + {{length-1{1'b0}},1'b1};
|
893 |
|
|
always @ (posedge clk or posedge rst)
|
894 |
|
|
if (rst)
|
895 |
|
|
qi <= {length{1'b0}};
|
896 |
|
|
else
|
897 |
|
|
qi <= q_next;
|
898 |
|
|
assign q = qi;
|
899 |
|
|
endmodule
|
900 |
|
|
//////////////////////////////////////////////////////////////////////
|
901 |
|
|
//// ////
|
902 |
|
|
//// Versatile counter ////
|
903 |
|
|
//// ////
|
904 |
|
|
//// Description ////
|
905 |
|
|
//// Versatile counter, a reconfigurable binary, gray or LFSR ////
|
906 |
|
|
//// counter ////
|
907 |
|
|
//// ////
|
908 |
|
|
//// To Do: ////
|
909 |
|
|
//// - add LFSR with more taps ////
|
910 |
|
|
//// ////
|
911 |
|
|
//// Author(s): ////
|
912 |
|
|
//// - Michael Unneback, unneback@opencores.org ////
|
913 |
|
|
//// ORSoC AB ////
|
914 |
|
|
//// ////
|
915 |
|
|
//////////////////////////////////////////////////////////////////////
|
916 |
|
|
//// ////
|
917 |
|
|
//// Copyright (C) 2009 Authors and OPENCORES.ORG ////
|
918 |
|
|
//// ////
|
919 |
|
|
//// This source file may be used and distributed without ////
|
920 |
|
|
//// restriction provided that this copyright statement is not ////
|
921 |
|
|
//// removed from the file and that any derivative work contains ////
|
922 |
|
|
//// the original copyright notice and the associated disclaimer. ////
|
923 |
|
|
//// ////
|
924 |
|
|
//// This source file is free software; you can redistribute it ////
|
925 |
|
|
//// and/or modify it under the terms of the GNU Lesser General ////
|
926 |
|
|
//// Public License as published by the Free Software Foundation; ////
|
927 |
|
|
//// either version 2.1 of the License, or (at your option) any ////
|
928 |
|
|
//// later version. ////
|
929 |
|
|
//// ////
|
930 |
|
|
//// This source is distributed in the hope that it will be ////
|
931 |
|
|
//// useful, but WITHOUT ANY WARRANTY; without even the implied ////
|
932 |
|
|
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR ////
|
933 |
|
|
//// PURPOSE. See the GNU Lesser General Public License for more ////
|
934 |
|
|
//// details. ////
|
935 |
|
|
//// ////
|
936 |
|
|
//// You should have received a copy of the GNU Lesser General ////
|
937 |
|
|
//// Public License along with this source; if not, download it ////
|
938 |
|
|
//// from http://www.opencores.org/lgpl.shtml ////
|
939 |
|
|
//// ////
|
940 |
|
|
//////////////////////////////////////////////////////////////////////
|
941 |
|
|
// binary counter
|
942 |
|
|
module vl_cnt_bin_clear (
|
943 |
|
|
clear, q, rst, clk);
|
944 |
|
|
parameter length = 4;
|
945 |
|
|
input clear;
|
946 |
|
|
output [length:1] q;
|
947 |
|
|
input rst;
|
948 |
|
|
input clk;
|
949 |
|
|
parameter clear_value = 0;
|
950 |
|
|
parameter set_value = 1;
|
951 |
|
|
parameter wrap_value = 0;
|
952 |
|
|
parameter level1_value = 15;
|
953 |
|
|
reg [length:1] qi;
|
954 |
|
|
wire [length:1] q_next;
|
955 |
|
|
assign q_next = clear ? {length{1'b0}} :qi + {{length-1{1'b0}},1'b1};
|
956 |
|
|
always @ (posedge clk or posedge rst)
|
957 |
|
|
if (rst)
|
958 |
|
|
qi <= {length{1'b0}};
|
959 |
|
|
else
|
960 |
|
|
qi <= q_next;
|
961 |
|
|
assign q = qi;
|
962 |
|
|
endmodule
|
963 |
|
|
//////////////////////////////////////////////////////////////////////
|
964 |
|
|
//// ////
|
965 |
|
|
//// Versatile counter ////
|
966 |
|
|
//// ////
|
967 |
|
|
//// Description ////
|
968 |
|
|
//// Versatile counter, a reconfigurable binary, gray or LFSR ////
|
969 |
|
|
//// counter ////
|
970 |
|
|
//// ////
|
971 |
|
|
//// To Do: ////
|
972 |
|
|
//// - add LFSR with more taps ////
|
973 |
|
|
//// ////
|
974 |
|
|
//// Author(s): ////
|
975 |
|
|
//// - Michael Unneback, unneback@opencores.org ////
|
976 |
|
|
//// ORSoC AB ////
|
977 |
|
|
//// ////
|
978 |
|
|
//////////////////////////////////////////////////////////////////////
|
979 |
|
|
//// ////
|
980 |
|
|
//// Copyright (C) 2009 Authors and OPENCORES.ORG ////
|
981 |
|
|
//// ////
|
982 |
|
|
//// This source file may be used and distributed without ////
|
983 |
|
|
//// restriction provided that this copyright statement is not ////
|
984 |
|
|
//// removed from the file and that any derivative work contains ////
|
985 |
|
|
//// the original copyright notice and the associated disclaimer. ////
|
986 |
|
|
//// ////
|
987 |
|
|
//// This source file is free software; you can redistribute it ////
|
988 |
|
|
//// and/or modify it under the terms of the GNU Lesser General ////
|
989 |
|
|
//// Public License as published by the Free Software Foundation; ////
|
990 |
|
|
//// either version 2.1 of the License, or (at your option) any ////
|
991 |
|
|
//// later version. ////
|
992 |
|
|
//// ////
|
993 |
|
|
//// This source is distributed in the hope that it will be ////
|
994 |
|
|
//// useful, but WITHOUT ANY WARRANTY; without even the implied ////
|
995 |
|
|
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR ////
|
996 |
|
|
//// PURPOSE. See the GNU Lesser General Public License for more ////
|
997 |
|
|
//// details. ////
|
998 |
|
|
//// ////
|
999 |
|
|
//// You should have received a copy of the GNU Lesser General ////
|
1000 |
|
|
//// Public License along with this source; if not, download it ////
|
1001 |
|
|
//// from http://www.opencores.org/lgpl.shtml ////
|
1002 |
|
|
//// ////
|
1003 |
|
|
//////////////////////////////////////////////////////////////////////
|
1004 |
|
|
// binary counter
|
1005 |
40 |
unneback |
module vl_cnt_bin_ce (
|
1006 |
|
|
cke, q, rst, clk);
|
1007 |
22 |
unneback |
parameter length = 4;
|
1008 |
6 |
unneback |
input cke;
|
1009 |
|
|
output [length:1] q;
|
1010 |
|
|
input rst;
|
1011 |
|
|
input clk;
|
1012 |
|
|
parameter clear_value = 0;
|
1013 |
|
|
parameter set_value = 1;
|
1014 |
|
|
parameter wrap_value = 0;
|
1015 |
|
|
parameter level1_value = 15;
|
1016 |
|
|
reg [length:1] qi;
|
1017 |
|
|
wire [length:1] q_next;
|
1018 |
|
|
assign q_next = qi + {{length-1{1'b0}},1'b1};
|
1019 |
|
|
always @ (posedge clk or posedge rst)
|
1020 |
|
|
if (rst)
|
1021 |
|
|
qi <= {length{1'b0}};
|
1022 |
|
|
else
|
1023 |
|
|
if (cke)
|
1024 |
|
|
qi <= q_next;
|
1025 |
|
|
assign q = qi;
|
1026 |
|
|
endmodule
|
1027 |
|
|
//////////////////////////////////////////////////////////////////////
|
1028 |
|
|
//// ////
|
1029 |
|
|
//// Versatile counter ////
|
1030 |
|
|
//// ////
|
1031 |
|
|
//// Description ////
|
1032 |
|
|
//// Versatile counter, a reconfigurable binary, gray or LFSR ////
|
1033 |
|
|
//// counter ////
|
1034 |
|
|
//// ////
|
1035 |
|
|
//// To Do: ////
|
1036 |
|
|
//// - add LFSR with more taps ////
|
1037 |
|
|
//// ////
|
1038 |
|
|
//// Author(s): ////
|
1039 |
|
|
//// - Michael Unneback, unneback@opencores.org ////
|
1040 |
|
|
//// ORSoC AB ////
|
1041 |
|
|
//// ////
|
1042 |
|
|
//////////////////////////////////////////////////////////////////////
|
1043 |
|
|
//// ////
|
1044 |
|
|
//// Copyright (C) 2009 Authors and OPENCORES.ORG ////
|
1045 |
|
|
//// ////
|
1046 |
|
|
//// This source file may be used and distributed without ////
|
1047 |
|
|
//// restriction provided that this copyright statement is not ////
|
1048 |
|
|
//// removed from the file and that any derivative work contains ////
|
1049 |
|
|
//// the original copyright notice and the associated disclaimer. ////
|
1050 |
|
|
//// ////
|
1051 |
|
|
//// This source file is free software; you can redistribute it ////
|
1052 |
|
|
//// and/or modify it under the terms of the GNU Lesser General ////
|
1053 |
|
|
//// Public License as published by the Free Software Foundation; ////
|
1054 |
|
|
//// either version 2.1 of the License, or (at your option) any ////
|
1055 |
|
|
//// later version. ////
|
1056 |
|
|
//// ////
|
1057 |
|
|
//// This source is distributed in the hope that it will be ////
|
1058 |
|
|
//// useful, but WITHOUT ANY WARRANTY; without even the implied ////
|
1059 |
|
|
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR ////
|
1060 |
|
|
//// PURPOSE. See the GNU Lesser General Public License for more ////
|
1061 |
|
|
//// details. ////
|
1062 |
|
|
//// ////
|
1063 |
|
|
//// You should have received a copy of the GNU Lesser General ////
|
1064 |
|
|
//// Public License along with this source; if not, download it ////
|
1065 |
|
|
//// from http://www.opencores.org/lgpl.shtml ////
|
1066 |
|
|
//// ////
|
1067 |
|
|
//////////////////////////////////////////////////////////////////////
|
1068 |
|
|
// binary counter
|
1069 |
139 |
unneback |
module vl_cnt_bin_ce_clear (
|
1070 |
|
|
clear, cke, q, rst, clk);
|
1071 |
|
|
parameter length = 4;
|
1072 |
|
|
input clear;
|
1073 |
|
|
input cke;
|
1074 |
|
|
output [length:1] q;
|
1075 |
|
|
input rst;
|
1076 |
|
|
input clk;
|
1077 |
|
|
parameter clear_value = 0;
|
1078 |
|
|
parameter set_value = 1;
|
1079 |
|
|
parameter wrap_value = 0;
|
1080 |
|
|
parameter level1_value = 15;
|
1081 |
|
|
reg [length:1] qi;
|
1082 |
|
|
wire [length:1] q_next;
|
1083 |
|
|
assign q_next = clear ? {length{1'b0}} :qi + {{length-1{1'b0}},1'b1};
|
1084 |
|
|
always @ (posedge clk or posedge rst)
|
1085 |
|
|
if (rst)
|
1086 |
|
|
qi <= {length{1'b0}};
|
1087 |
|
|
else
|
1088 |
|
|
if (cke)
|
1089 |
|
|
qi <= q_next;
|
1090 |
|
|
assign q = qi;
|
1091 |
|
|
endmodule
|
1092 |
|
|
//////////////////////////////////////////////////////////////////////
|
1093 |
|
|
//// ////
|
1094 |
|
|
//// Versatile counter ////
|
1095 |
|
|
//// ////
|
1096 |
|
|
//// Description ////
|
1097 |
|
|
//// Versatile counter, a reconfigurable binary, gray or LFSR ////
|
1098 |
|
|
//// counter ////
|
1099 |
|
|
//// ////
|
1100 |
|
|
//// To Do: ////
|
1101 |
|
|
//// - add LFSR with more taps ////
|
1102 |
|
|
//// ////
|
1103 |
|
|
//// Author(s): ////
|
1104 |
|
|
//// - Michael Unneback, unneback@opencores.org ////
|
1105 |
|
|
//// ORSoC AB ////
|
1106 |
|
|
//// ////
|
1107 |
|
|
//////////////////////////////////////////////////////////////////////
|
1108 |
|
|
//// ////
|
1109 |
|
|
//// Copyright (C) 2009 Authors and OPENCORES.ORG ////
|
1110 |
|
|
//// ////
|
1111 |
|
|
//// This source file may be used and distributed without ////
|
1112 |
|
|
//// restriction provided that this copyright statement is not ////
|
1113 |
|
|
//// removed from the file and that any derivative work contains ////
|
1114 |
|
|
//// the original copyright notice and the associated disclaimer. ////
|
1115 |
|
|
//// ////
|
1116 |
|
|
//// This source file is free software; you can redistribute it ////
|
1117 |
|
|
//// and/or modify it under the terms of the GNU Lesser General ////
|
1118 |
|
|
//// Public License as published by the Free Software Foundation; ////
|
1119 |
|
|
//// either version 2.1 of the License, or (at your option) any ////
|
1120 |
|
|
//// later version. ////
|
1121 |
|
|
//// ////
|
1122 |
|
|
//// This source is distributed in the hope that it will be ////
|
1123 |
|
|
//// useful, but WITHOUT ANY WARRANTY; without even the implied ////
|
1124 |
|
|
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR ////
|
1125 |
|
|
//// PURPOSE. See the GNU Lesser General Public License for more ////
|
1126 |
|
|
//// details. ////
|
1127 |
|
|
//// ////
|
1128 |
|
|
//// You should have received a copy of the GNU Lesser General ////
|
1129 |
|
|
//// Public License along with this source; if not, download it ////
|
1130 |
|
|
//// from http://www.opencores.org/lgpl.shtml ////
|
1131 |
|
|
//// ////
|
1132 |
|
|
//////////////////////////////////////////////////////////////////////
|
1133 |
|
|
// binary counter
|
1134 |
|
|
module vl_cnt_bin_ce_clear_l1_l2 (
|
1135 |
|
|
clear, cke, q, level1, level2, rst, clk);
|
1136 |
|
|
parameter length = 4;
|
1137 |
|
|
input clear;
|
1138 |
|
|
input cke;
|
1139 |
|
|
output [length:1] q;
|
1140 |
|
|
output reg level1;
|
1141 |
|
|
output reg level2;
|
1142 |
|
|
input rst;
|
1143 |
|
|
input clk;
|
1144 |
|
|
parameter clear_value = 0;
|
1145 |
|
|
parameter set_value = 1;
|
1146 |
|
|
parameter wrap_value = 15;
|
1147 |
|
|
parameter level1_value = 8;
|
1148 |
|
|
parameter level2_value = 15;
|
1149 |
|
|
wire rew;
|
1150 |
|
|
assign rew = 1'b0;
|
1151 |
|
|
reg [length:1] qi;
|
1152 |
|
|
wire [length:1] q_next;
|
1153 |
|
|
assign q_next = clear ? {length{1'b0}} :qi + {{length-1{1'b0}},1'b1};
|
1154 |
|
|
always @ (posedge clk or posedge rst)
|
1155 |
|
|
if (rst)
|
1156 |
|
|
qi <= {length{1'b0}};
|
1157 |
|
|
else
|
1158 |
|
|
if (cke)
|
1159 |
|
|
qi <= q_next;
|
1160 |
|
|
assign q = qi;
|
1161 |
|
|
always @ (posedge clk or posedge rst)
|
1162 |
|
|
if (rst)
|
1163 |
|
|
level1 <= 1'b0;
|
1164 |
|
|
else
|
1165 |
|
|
if (cke)
|
1166 |
|
|
if (clear)
|
1167 |
|
|
level1 <= 1'b0;
|
1168 |
|
|
else if (q_next == level1_value)
|
1169 |
|
|
level1 <= 1'b1;
|
1170 |
|
|
else if (qi == level1_value & rew)
|
1171 |
|
|
level1 <= 1'b0;
|
1172 |
|
|
always @ (posedge clk or posedge rst)
|
1173 |
|
|
if (rst)
|
1174 |
|
|
level2 <= 1'b0;
|
1175 |
|
|
else
|
1176 |
|
|
if (cke)
|
1177 |
|
|
if (clear)
|
1178 |
|
|
level2 <= 1'b0;
|
1179 |
|
|
else if (q_next == level2_value)
|
1180 |
|
|
level2 <= 1'b1;
|
1181 |
|
|
else if (qi == level2_value & rew)
|
1182 |
|
|
level2 <= 1'b0;
|
1183 |
|
|
endmodule
|
1184 |
|
|
//////////////////////////////////////////////////////////////////////
|
1185 |
|
|
//// ////
|
1186 |
|
|
//// Versatile counter ////
|
1187 |
|
|
//// ////
|
1188 |
|
|
//// Description ////
|
1189 |
|
|
//// Versatile counter, a reconfigurable binary, gray or LFSR ////
|
1190 |
|
|
//// counter ////
|
1191 |
|
|
//// ////
|
1192 |
|
|
//// To Do: ////
|
1193 |
|
|
//// - add LFSR with more taps ////
|
1194 |
|
|
//// ////
|
1195 |
|
|
//// Author(s): ////
|
1196 |
|
|
//// - Michael Unneback, unneback@opencores.org ////
|
1197 |
|
|
//// ORSoC AB ////
|
1198 |
|
|
//// ////
|
1199 |
|
|
//////////////////////////////////////////////////////////////////////
|
1200 |
|
|
//// ////
|
1201 |
|
|
//// Copyright (C) 2009 Authors and OPENCORES.ORG ////
|
1202 |
|
|
//// ////
|
1203 |
|
|
//// This source file may be used and distributed without ////
|
1204 |
|
|
//// restriction provided that this copyright statement is not ////
|
1205 |
|
|
//// removed from the file and that any derivative work contains ////
|
1206 |
|
|
//// the original copyright notice and the associated disclaimer. ////
|
1207 |
|
|
//// ////
|
1208 |
|
|
//// This source file is free software; you can redistribute it ////
|
1209 |
|
|
//// and/or modify it under the terms of the GNU Lesser General ////
|
1210 |
|
|
//// Public License as published by the Free Software Foundation; ////
|
1211 |
|
|
//// either version 2.1 of the License, or (at your option) any ////
|
1212 |
|
|
//// later version. ////
|
1213 |
|
|
//// ////
|
1214 |
|
|
//// This source is distributed in the hope that it will be ////
|
1215 |
|
|
//// useful, but WITHOUT ANY WARRANTY; without even the implied ////
|
1216 |
|
|
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR ////
|
1217 |
|
|
//// PURPOSE. See the GNU Lesser General Public License for more ////
|
1218 |
|
|
//// details. ////
|
1219 |
|
|
//// ////
|
1220 |
|
|
//// You should have received a copy of the GNU Lesser General ////
|
1221 |
|
|
//// Public License along with this source; if not, download it ////
|
1222 |
|
|
//// from http://www.opencores.org/lgpl.shtml ////
|
1223 |
|
|
//// ////
|
1224 |
|
|
//////////////////////////////////////////////////////////////////////
|
1225 |
|
|
// binary counter
|
1226 |
|
|
module vl_cnt_bin_ce_clear_set_rew (
|
1227 |
|
|
clear, set, cke, rew, q, rst, clk);
|
1228 |
|
|
parameter length = 4;
|
1229 |
|
|
input clear;
|
1230 |
|
|
input set;
|
1231 |
|
|
input cke;
|
1232 |
|
|
input rew;
|
1233 |
|
|
output [length:1] q;
|
1234 |
|
|
input rst;
|
1235 |
|
|
input clk;
|
1236 |
|
|
parameter clear_value = 0;
|
1237 |
|
|
parameter set_value = 1;
|
1238 |
|
|
parameter wrap_value = 0;
|
1239 |
|
|
parameter level1_value = 15;
|
1240 |
|
|
reg [length:1] qi;
|
1241 |
|
|
wire [length:1] q_next, q_next_fw, q_next_rew;
|
1242 |
|
|
assign q_next_fw = clear ? {length{1'b0}} : set ? set_value :qi + {{length-1{1'b0}},1'b1};
|
1243 |
|
|
assign q_next_rew = clear ? clear_value : set ? set_value :qi - {{length-1{1'b0}},1'b1};
|
1244 |
|
|
assign q_next = rew ? q_next_rew : q_next_fw;
|
1245 |
|
|
always @ (posedge clk or posedge rst)
|
1246 |
|
|
if (rst)
|
1247 |
|
|
qi <= {length{1'b0}};
|
1248 |
|
|
else
|
1249 |
|
|
if (cke)
|
1250 |
|
|
qi <= q_next;
|
1251 |
|
|
assign q = qi;
|
1252 |
|
|
endmodule
|
1253 |
|
|
//////////////////////////////////////////////////////////////////////
|
1254 |
|
|
//// ////
|
1255 |
|
|
//// Versatile counter ////
|
1256 |
|
|
//// ////
|
1257 |
|
|
//// Description ////
|
1258 |
|
|
//// Versatile counter, a reconfigurable binary, gray or LFSR ////
|
1259 |
|
|
//// counter ////
|
1260 |
|
|
//// ////
|
1261 |
|
|
//// To Do: ////
|
1262 |
|
|
//// - add LFSR with more taps ////
|
1263 |
|
|
//// ////
|
1264 |
|
|
//// Author(s): ////
|
1265 |
|
|
//// - Michael Unneback, unneback@opencores.org ////
|
1266 |
|
|
//// ORSoC AB ////
|
1267 |
|
|
//// ////
|
1268 |
|
|
//////////////////////////////////////////////////////////////////////
|
1269 |
|
|
//// ////
|
1270 |
|
|
//// Copyright (C) 2009 Authors and OPENCORES.ORG ////
|
1271 |
|
|
//// ////
|
1272 |
|
|
//// This source file may be used and distributed without ////
|
1273 |
|
|
//// restriction provided that this copyright statement is not ////
|
1274 |
|
|
//// removed from the file and that any derivative work contains ////
|
1275 |
|
|
//// the original copyright notice and the associated disclaimer. ////
|
1276 |
|
|
//// ////
|
1277 |
|
|
//// This source file is free software; you can redistribute it ////
|
1278 |
|
|
//// and/or modify it under the terms of the GNU Lesser General ////
|
1279 |
|
|
//// Public License as published by the Free Software Foundation; ////
|
1280 |
|
|
//// either version 2.1 of the License, or (at your option) any ////
|
1281 |
|
|
//// later version. ////
|
1282 |
|
|
//// ////
|
1283 |
|
|
//// This source is distributed in the hope that it will be ////
|
1284 |
|
|
//// useful, but WITHOUT ANY WARRANTY; without even the implied ////
|
1285 |
|
|
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR ////
|
1286 |
|
|
//// PURPOSE. See the GNU Lesser General Public License for more ////
|
1287 |
|
|
//// details. ////
|
1288 |
|
|
//// ////
|
1289 |
|
|
//// You should have received a copy of the GNU Lesser General ////
|
1290 |
|
|
//// Public License along with this source; if not, download it ////
|
1291 |
|
|
//// from http://www.opencores.org/lgpl.shtml ////
|
1292 |
|
|
//// ////
|
1293 |
|
|
//////////////////////////////////////////////////////////////////////
|
1294 |
|
|
// binary counter
|
1295 |
|
|
module vl_cnt_bin_ce_rew_l1 (
|
1296 |
|
|
cke, rew, level1, rst, clk);
|
1297 |
|
|
parameter length = 4;
|
1298 |
|
|
input cke;
|
1299 |
|
|
input rew;
|
1300 |
|
|
output reg level1;
|
1301 |
|
|
input rst;
|
1302 |
|
|
input clk;
|
1303 |
|
|
parameter clear_value = 0;
|
1304 |
|
|
parameter set_value = 1;
|
1305 |
|
|
parameter wrap_value = 1;
|
1306 |
|
|
parameter level1_value = 15;
|
1307 |
|
|
wire clear;
|
1308 |
|
|
assign clear = 1'b0;
|
1309 |
|
|
reg [length:1] qi;
|
1310 |
|
|
wire [length:1] q_next, q_next_fw, q_next_rew;
|
1311 |
|
|
assign q_next_fw = qi + {{length-1{1'b0}},1'b1};
|
1312 |
|
|
assign q_next_rew = qi - {{length-1{1'b0}},1'b1};
|
1313 |
|
|
assign q_next = rew ? q_next_rew : q_next_fw;
|
1314 |
|
|
always @ (posedge clk or posedge rst)
|
1315 |
|
|
if (rst)
|
1316 |
|
|
qi <= {length{1'b0}};
|
1317 |
|
|
else
|
1318 |
|
|
if (cke)
|
1319 |
|
|
qi <= q_next;
|
1320 |
|
|
always @ (posedge clk or posedge rst)
|
1321 |
|
|
if (rst)
|
1322 |
|
|
level1 <= 1'b0;
|
1323 |
|
|
else
|
1324 |
|
|
if (cke)
|
1325 |
|
|
if (clear)
|
1326 |
|
|
level1 <= 1'b0;
|
1327 |
|
|
else if (q_next == level1_value)
|
1328 |
|
|
level1 <= 1'b1;
|
1329 |
|
|
else if (qi == level1_value & rew)
|
1330 |
|
|
level1 <= 1'b0;
|
1331 |
|
|
endmodule
|
1332 |
|
|
//////////////////////////////////////////////////////////////////////
|
1333 |
|
|
//// ////
|
1334 |
|
|
//// Versatile counter ////
|
1335 |
|
|
//// ////
|
1336 |
|
|
//// Description ////
|
1337 |
|
|
//// Versatile counter, a reconfigurable binary, gray or LFSR ////
|
1338 |
|
|
//// counter ////
|
1339 |
|
|
//// ////
|
1340 |
|
|
//// To Do: ////
|
1341 |
|
|
//// - add LFSR with more taps ////
|
1342 |
|
|
//// ////
|
1343 |
|
|
//// Author(s): ////
|
1344 |
|
|
//// - Michael Unneback, unneback@opencores.org ////
|
1345 |
|
|
//// ORSoC AB ////
|
1346 |
|
|
//// ////
|
1347 |
|
|
//////////////////////////////////////////////////////////////////////
|
1348 |
|
|
//// ////
|
1349 |
|
|
//// Copyright (C) 2009 Authors and OPENCORES.ORG ////
|
1350 |
|
|
//// ////
|
1351 |
|
|
//// This source file may be used and distributed without ////
|
1352 |
|
|
//// restriction provided that this copyright statement is not ////
|
1353 |
|
|
//// removed from the file and that any derivative work contains ////
|
1354 |
|
|
//// the original copyright notice and the associated disclaimer. ////
|
1355 |
|
|
//// ////
|
1356 |
|
|
//// This source file is free software; you can redistribute it ////
|
1357 |
|
|
//// and/or modify it under the terms of the GNU Lesser General ////
|
1358 |
|
|
//// Public License as published by the Free Software Foundation; ////
|
1359 |
|
|
//// either version 2.1 of the License, or (at your option) any ////
|
1360 |
|
|
//// later version. ////
|
1361 |
|
|
//// ////
|
1362 |
|
|
//// This source is distributed in the hope that it will be ////
|
1363 |
|
|
//// useful, but WITHOUT ANY WARRANTY; without even the implied ////
|
1364 |
|
|
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR ////
|
1365 |
|
|
//// PURPOSE. See the GNU Lesser General Public License for more ////
|
1366 |
|
|
//// details. ////
|
1367 |
|
|
//// ////
|
1368 |
|
|
//// You should have received a copy of the GNU Lesser General ////
|
1369 |
|
|
//// Public License along with this source; if not, download it ////
|
1370 |
|
|
//// from http://www.opencores.org/lgpl.shtml ////
|
1371 |
|
|
//// ////
|
1372 |
|
|
//////////////////////////////////////////////////////////////////////
|
1373 |
|
|
// binary counter
|
1374 |
40 |
unneback |
module vl_cnt_bin_ce_rew_zq_l1 (
|
1375 |
|
|
cke, rew, zq, level1, rst, clk);
|
1376 |
6 |
unneback |
parameter length = 4;
|
1377 |
|
|
input cke;
|
1378 |
|
|
input rew;
|
1379 |
25 |
unneback |
output reg zq;
|
1380 |
|
|
output reg level1;
|
1381 |
|
|
input rst;
|
1382 |
|
|
input clk;
|
1383 |
|
|
parameter clear_value = 0;
|
1384 |
|
|
parameter set_value = 1;
|
1385 |
|
|
parameter wrap_value = 1;
|
1386 |
|
|
parameter level1_value = 15;
|
1387 |
29 |
unneback |
wire clear;
|
1388 |
30 |
unneback |
assign clear = 1'b0;
|
1389 |
25 |
unneback |
reg [length:1] qi;
|
1390 |
|
|
wire [length:1] q_next, q_next_fw, q_next_rew;
|
1391 |
|
|
assign q_next_fw = qi + {{length-1{1'b0}},1'b1};
|
1392 |
|
|
assign q_next_rew = qi - {{length-1{1'b0}},1'b1};
|
1393 |
|
|
assign q_next = rew ? q_next_rew : q_next_fw;
|
1394 |
|
|
always @ (posedge clk or posedge rst)
|
1395 |
|
|
if (rst)
|
1396 |
|
|
qi <= {length{1'b0}};
|
1397 |
|
|
else
|
1398 |
|
|
if (cke)
|
1399 |
|
|
qi <= q_next;
|
1400 |
|
|
always @ (posedge clk or posedge rst)
|
1401 |
|
|
if (rst)
|
1402 |
|
|
zq <= 1'b1;
|
1403 |
|
|
else
|
1404 |
|
|
if (cke)
|
1405 |
|
|
zq <= q_next == {length{1'b0}};
|
1406 |
|
|
always @ (posedge clk or posedge rst)
|
1407 |
|
|
if (rst)
|
1408 |
|
|
level1 <= 1'b0;
|
1409 |
|
|
else
|
1410 |
|
|
if (cke)
|
1411 |
29 |
unneback |
if (clear)
|
1412 |
|
|
level1 <= 1'b0;
|
1413 |
|
|
else if (q_next == level1_value)
|
1414 |
25 |
unneback |
level1 <= 1'b1;
|
1415 |
|
|
else if (qi == level1_value & rew)
|
1416 |
|
|
level1 <= 1'b0;
|
1417 |
|
|
endmodule
|
1418 |
|
|
//////////////////////////////////////////////////////////////////////
|
1419 |
|
|
//// ////
|
1420 |
|
|
//// Versatile counter ////
|
1421 |
|
|
//// ////
|
1422 |
|
|
//// Description ////
|
1423 |
|
|
//// Versatile counter, a reconfigurable binary, gray or LFSR ////
|
1424 |
|
|
//// counter ////
|
1425 |
|
|
//// ////
|
1426 |
|
|
//// To Do: ////
|
1427 |
|
|
//// - add LFSR with more taps ////
|
1428 |
|
|
//// ////
|
1429 |
|
|
//// Author(s): ////
|
1430 |
|
|
//// - Michael Unneback, unneback@opencores.org ////
|
1431 |
|
|
//// ORSoC AB ////
|
1432 |
|
|
//// ////
|
1433 |
|
|
//////////////////////////////////////////////////////////////////////
|
1434 |
|
|
//// ////
|
1435 |
|
|
//// Copyright (C) 2009 Authors and OPENCORES.ORG ////
|
1436 |
|
|
//// ////
|
1437 |
|
|
//// This source file may be used and distributed without ////
|
1438 |
|
|
//// restriction provided that this copyright statement is not ////
|
1439 |
|
|
//// removed from the file and that any derivative work contains ////
|
1440 |
|
|
//// the original copyright notice and the associated disclaimer. ////
|
1441 |
|
|
//// ////
|
1442 |
|
|
//// This source file is free software; you can redistribute it ////
|
1443 |
|
|
//// and/or modify it under the terms of the GNU Lesser General ////
|
1444 |
|
|
//// Public License as published by the Free Software Foundation; ////
|
1445 |
|
|
//// either version 2.1 of the License, or (at your option) any ////
|
1446 |
|
|
//// later version. ////
|
1447 |
|
|
//// ////
|
1448 |
|
|
//// This source is distributed in the hope that it will be ////
|
1449 |
|
|
//// useful, but WITHOUT ANY WARRANTY; without even the implied ////
|
1450 |
|
|
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR ////
|
1451 |
|
|
//// PURPOSE. See the GNU Lesser General Public License for more ////
|
1452 |
|
|
//// details. ////
|
1453 |
|
|
//// ////
|
1454 |
|
|
//// You should have received a copy of the GNU Lesser General ////
|
1455 |
|
|
//// Public License along with this source; if not, download it ////
|
1456 |
|
|
//// from http://www.opencores.org/lgpl.shtml ////
|
1457 |
|
|
//// ////
|
1458 |
|
|
//////////////////////////////////////////////////////////////////////
|
1459 |
|
|
// binary counter
|
1460 |
40 |
unneback |
module vl_cnt_bin_ce_rew_q_zq_l1 (
|
1461 |
|
|
cke, rew, q, zq, level1, rst, clk);
|
1462 |
25 |
unneback |
parameter length = 4;
|
1463 |
|
|
input cke;
|
1464 |
|
|
input rew;
|
1465 |
|
|
output [length:1] q;
|
1466 |
|
|
output reg zq;
|
1467 |
|
|
output reg level1;
|
1468 |
|
|
input rst;
|
1469 |
|
|
input clk;
|
1470 |
|
|
parameter clear_value = 0;
|
1471 |
|
|
parameter set_value = 1;
|
1472 |
|
|
parameter wrap_value = 1;
|
1473 |
|
|
parameter level1_value = 15;
|
1474 |
29 |
unneback |
wire clear;
|
1475 |
30 |
unneback |
assign clear = 1'b0;
|
1476 |
25 |
unneback |
reg [length:1] qi;
|
1477 |
|
|
wire [length:1] q_next, q_next_fw, q_next_rew;
|
1478 |
|
|
assign q_next_fw = qi + {{length-1{1'b0}},1'b1};
|
1479 |
|
|
assign q_next_rew = qi - {{length-1{1'b0}},1'b1};
|
1480 |
|
|
assign q_next = rew ? q_next_rew : q_next_fw;
|
1481 |
|
|
always @ (posedge clk or posedge rst)
|
1482 |
|
|
if (rst)
|
1483 |
|
|
qi <= {length{1'b0}};
|
1484 |
|
|
else
|
1485 |
|
|
if (cke)
|
1486 |
|
|
qi <= q_next;
|
1487 |
|
|
assign q = qi;
|
1488 |
|
|
always @ (posedge clk or posedge rst)
|
1489 |
|
|
if (rst)
|
1490 |
|
|
zq <= 1'b1;
|
1491 |
|
|
else
|
1492 |
|
|
if (cke)
|
1493 |
|
|
zq <= q_next == {length{1'b0}};
|
1494 |
|
|
always @ (posedge clk or posedge rst)
|
1495 |
|
|
if (rst)
|
1496 |
|
|
level1 <= 1'b0;
|
1497 |
|
|
else
|
1498 |
|
|
if (cke)
|
1499 |
29 |
unneback |
if (clear)
|
1500 |
|
|
level1 <= 1'b0;
|
1501 |
|
|
else if (q_next == level1_value)
|
1502 |
25 |
unneback |
level1 <= 1'b1;
|
1503 |
|
|
else if (qi == level1_value & rew)
|
1504 |
|
|
level1 <= 1'b0;
|
1505 |
|
|
endmodule
|
1506 |
|
|
//////////////////////////////////////////////////////////////////////
|
1507 |
|
|
//// ////
|
1508 |
|
|
//// Versatile counter ////
|
1509 |
|
|
//// ////
|
1510 |
|
|
//// Description ////
|
1511 |
|
|
//// Versatile counter, a reconfigurable binary, gray or LFSR ////
|
1512 |
|
|
//// counter ////
|
1513 |
|
|
//// ////
|
1514 |
|
|
//// To Do: ////
|
1515 |
|
|
//// - add LFSR with more taps ////
|
1516 |
|
|
//// ////
|
1517 |
|
|
//// Author(s): ////
|
1518 |
|
|
//// - Michael Unneback, unneback@opencores.org ////
|
1519 |
|
|
//// ORSoC AB ////
|
1520 |
|
|
//// ////
|
1521 |
|
|
//////////////////////////////////////////////////////////////////////
|
1522 |
|
|
//// ////
|
1523 |
|
|
//// Copyright (C) 2009 Authors and OPENCORES.ORG ////
|
1524 |
|
|
//// ////
|
1525 |
|
|
//// This source file may be used and distributed without ////
|
1526 |
|
|
//// restriction provided that this copyright statement is not ////
|
1527 |
|
|
//// removed from the file and that any derivative work contains ////
|
1528 |
|
|
//// the original copyright notice and the associated disclaimer. ////
|
1529 |
|
|
//// ////
|
1530 |
|
|
//// This source file is free software; you can redistribute it ////
|
1531 |
|
|
//// and/or modify it under the terms of the GNU Lesser General ////
|
1532 |
|
|
//// Public License as published by the Free Software Foundation; ////
|
1533 |
|
|
//// either version 2.1 of the License, or (at your option) any ////
|
1534 |
|
|
//// later version. ////
|
1535 |
|
|
//// ////
|
1536 |
|
|
//// This source is distributed in the hope that it will be ////
|
1537 |
|
|
//// useful, but WITHOUT ANY WARRANTY; without even the implied ////
|
1538 |
|
|
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR ////
|
1539 |
|
|
//// PURPOSE. See the GNU Lesser General Public License for more ////
|
1540 |
|
|
//// details. ////
|
1541 |
|
|
//// ////
|
1542 |
|
|
//// You should have received a copy of the GNU Lesser General ////
|
1543 |
|
|
//// Public License along with this source; if not, download it ////
|
1544 |
|
|
//// from http://www.opencores.org/lgpl.shtml ////
|
1545 |
|
|
//// ////
|
1546 |
|
|
//////////////////////////////////////////////////////////////////////
|
1547 |
75 |
unneback |
// LFSR counter
|
1548 |
136 |
unneback |
module vl_cnt_lfsr_zq (
|
1549 |
|
|
zq, rst, clk);
|
1550 |
|
|
parameter length = 4;
|
1551 |
|
|
output reg zq;
|
1552 |
|
|
input rst;
|
1553 |
|
|
input clk;
|
1554 |
|
|
parameter clear_value = 0;
|
1555 |
|
|
parameter set_value = 1;
|
1556 |
|
|
parameter wrap_value = 8;
|
1557 |
|
|
parameter level1_value = 15;
|
1558 |
|
|
reg [length:1] qi;
|
1559 |
|
|
reg lfsr_fb;
|
1560 |
|
|
wire [length:1] q_next;
|
1561 |
|
|
reg [32:1] polynom;
|
1562 |
|
|
integer i;
|
1563 |
|
|
always @ (qi)
|
1564 |
|
|
begin
|
1565 |
|
|
case (length)
|
1566 |
|
|
2: polynom = 32'b11; // 0x3
|
1567 |
|
|
3: polynom = 32'b110; // 0x6
|
1568 |
|
|
4: polynom = 32'b1100; // 0xC
|
1569 |
|
|
5: polynom = 32'b10100; // 0x14
|
1570 |
|
|
6: polynom = 32'b110000; // 0x30
|
1571 |
|
|
7: polynom = 32'b1100000; // 0x60
|
1572 |
|
|
8: polynom = 32'b10111000; // 0xb8
|
1573 |
|
|
9: polynom = 32'b100010000; // 0x110
|
1574 |
|
|
10: polynom = 32'b1001000000; // 0x240
|
1575 |
|
|
11: polynom = 32'b10100000000; // 0x500
|
1576 |
|
|
12: polynom = 32'b100000101001; // 0x829
|
1577 |
|
|
13: polynom = 32'b1000000001100; // 0x100C
|
1578 |
|
|
14: polynom = 32'b10000000010101; // 0x2015
|
1579 |
|
|
15: polynom = 32'b110000000000000; // 0x6000
|
1580 |
|
|
16: polynom = 32'b1101000000001000; // 0xD008
|
1581 |
|
|
17: polynom = 32'b10010000000000000; // 0x12000
|
1582 |
|
|
18: polynom = 32'b100000010000000000; // 0x20400
|
1583 |
|
|
19: polynom = 32'b1000000000000100011; // 0x40023
|
1584 |
|
|
20: polynom = 32'b10010000000000000000; // 0x90000
|
1585 |
|
|
21: polynom = 32'b101000000000000000000; // 0x140000
|
1586 |
|
|
22: polynom = 32'b1100000000000000000000; // 0x300000
|
1587 |
|
|
23: polynom = 32'b10000100000000000000000; // 0x420000
|
1588 |
|
|
24: polynom = 32'b111000010000000000000000; // 0xE10000
|
1589 |
|
|
25: polynom = 32'b1001000000000000000000000; // 0x1200000
|
1590 |
|
|
26: polynom = 32'b10000000000000000000100011; // 0x2000023
|
1591 |
|
|
27: polynom = 32'b100000000000000000000010011; // 0x4000013
|
1592 |
|
|
28: polynom = 32'b1100100000000000000000000000; // 0xC800000
|
1593 |
|
|
29: polynom = 32'b10100000000000000000000000000; // 0x14000000
|
1594 |
|
|
30: polynom = 32'b100000000000000000000000101001; // 0x20000029
|
1595 |
|
|
31: polynom = 32'b1001000000000000000000000000000; // 0x48000000
|
1596 |
|
|
32: polynom = 32'b10000000001000000000000000000011; // 0x80200003
|
1597 |
|
|
default: polynom = 32'b0;
|
1598 |
|
|
endcase
|
1599 |
|
|
lfsr_fb = qi[length];
|
1600 |
|
|
for (i=length-1; i>=1; i=i-1) begin
|
1601 |
|
|
if (polynom[i])
|
1602 |
|
|
lfsr_fb = lfsr_fb ~^ qi[i];
|
1603 |
|
|
end
|
1604 |
|
|
end
|
1605 |
|
|
assign q_next = (qi == wrap_value) ? {length{1'b0}} :{qi[length-1:1],lfsr_fb};
|
1606 |
|
|
always @ (posedge clk or posedge rst)
|
1607 |
|
|
if (rst)
|
1608 |
|
|
qi <= {length{1'b0}};
|
1609 |
|
|
else
|
1610 |
|
|
qi <= q_next;
|
1611 |
|
|
always @ (posedge clk or posedge rst)
|
1612 |
|
|
if (rst)
|
1613 |
|
|
zq <= 1'b1;
|
1614 |
|
|
else
|
1615 |
|
|
zq <= q_next == {length{1'b0}};
|
1616 |
|
|
endmodule
|
1617 |
|
|
//////////////////////////////////////////////////////////////////////
|
1618 |
|
|
//// ////
|
1619 |
|
|
//// Versatile counter ////
|
1620 |
|
|
//// ////
|
1621 |
|
|
//// Description ////
|
1622 |
|
|
//// Versatile counter, a reconfigurable binary, gray or LFSR ////
|
1623 |
|
|
//// counter ////
|
1624 |
|
|
//// ////
|
1625 |
|
|
//// To Do: ////
|
1626 |
|
|
//// - add LFSR with more taps ////
|
1627 |
|
|
//// ////
|
1628 |
|
|
//// Author(s): ////
|
1629 |
|
|
//// - Michael Unneback, unneback@opencores.org ////
|
1630 |
|
|
//// ORSoC AB ////
|
1631 |
|
|
//// ////
|
1632 |
|
|
//////////////////////////////////////////////////////////////////////
|
1633 |
|
|
//// ////
|
1634 |
|
|
//// Copyright (C) 2009 Authors and OPENCORES.ORG ////
|
1635 |
|
|
//// ////
|
1636 |
|
|
//// This source file may be used and distributed without ////
|
1637 |
|
|
//// restriction provided that this copyright statement is not ////
|
1638 |
|
|
//// removed from the file and that any derivative work contains ////
|
1639 |
|
|
//// the original copyright notice and the associated disclaimer. ////
|
1640 |
|
|
//// ////
|
1641 |
|
|
//// This source file is free software; you can redistribute it ////
|
1642 |
|
|
//// and/or modify it under the terms of the GNU Lesser General ////
|
1643 |
|
|
//// Public License as published by the Free Software Foundation; ////
|
1644 |
|
|
//// either version 2.1 of the License, or (at your option) any ////
|
1645 |
|
|
//// later version. ////
|
1646 |
|
|
//// ////
|
1647 |
|
|
//// This source is distributed in the hope that it will be ////
|
1648 |
|
|
//// useful, but WITHOUT ANY WARRANTY; without even the implied ////
|
1649 |
|
|
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR ////
|
1650 |
|
|
//// PURPOSE. See the GNU Lesser General Public License for more ////
|
1651 |
|
|
//// details. ////
|
1652 |
|
|
//// ////
|
1653 |
|
|
//// You should have received a copy of the GNU Lesser General ////
|
1654 |
|
|
//// Public License along with this source; if not, download it ////
|
1655 |
|
|
//// from http://www.opencores.org/lgpl.shtml ////
|
1656 |
|
|
//// ////
|
1657 |
|
|
//////////////////////////////////////////////////////////////////////
|
1658 |
|
|
// LFSR counter
|
1659 |
75 |
unneback |
module vl_cnt_lfsr_ce (
|
1660 |
|
|
cke, zq, rst, clk);
|
1661 |
|
|
parameter length = 4;
|
1662 |
|
|
input cke;
|
1663 |
|
|
output reg zq;
|
1664 |
|
|
input rst;
|
1665 |
|
|
input clk;
|
1666 |
|
|
parameter clear_value = 0;
|
1667 |
|
|
parameter set_value = 1;
|
1668 |
|
|
parameter wrap_value = 0;
|
1669 |
|
|
parameter level1_value = 15;
|
1670 |
|
|
reg [length:1] qi;
|
1671 |
|
|
reg lfsr_fb;
|
1672 |
|
|
wire [length:1] q_next;
|
1673 |
|
|
reg [32:1] polynom;
|
1674 |
|
|
integer i;
|
1675 |
|
|
always @ (qi)
|
1676 |
|
|
begin
|
1677 |
|
|
case (length)
|
1678 |
|
|
2: polynom = 32'b11; // 0x3
|
1679 |
|
|
3: polynom = 32'b110; // 0x6
|
1680 |
|
|
4: polynom = 32'b1100; // 0xC
|
1681 |
|
|
5: polynom = 32'b10100; // 0x14
|
1682 |
|
|
6: polynom = 32'b110000; // 0x30
|
1683 |
|
|
7: polynom = 32'b1100000; // 0x60
|
1684 |
|
|
8: polynom = 32'b10111000; // 0xb8
|
1685 |
|
|
9: polynom = 32'b100010000; // 0x110
|
1686 |
|
|
10: polynom = 32'b1001000000; // 0x240
|
1687 |
|
|
11: polynom = 32'b10100000000; // 0x500
|
1688 |
|
|
12: polynom = 32'b100000101001; // 0x829
|
1689 |
|
|
13: polynom = 32'b1000000001100; // 0x100C
|
1690 |
|
|
14: polynom = 32'b10000000010101; // 0x2015
|
1691 |
|
|
15: polynom = 32'b110000000000000; // 0x6000
|
1692 |
|
|
16: polynom = 32'b1101000000001000; // 0xD008
|
1693 |
|
|
17: polynom = 32'b10010000000000000; // 0x12000
|
1694 |
|
|
18: polynom = 32'b100000010000000000; // 0x20400
|
1695 |
|
|
19: polynom = 32'b1000000000000100011; // 0x40023
|
1696 |
|
|
20: polynom = 32'b10010000000000000000; // 0x90000
|
1697 |
|
|
21: polynom = 32'b101000000000000000000; // 0x140000
|
1698 |
|
|
22: polynom = 32'b1100000000000000000000; // 0x300000
|
1699 |
|
|
23: polynom = 32'b10000100000000000000000; // 0x420000
|
1700 |
|
|
24: polynom = 32'b111000010000000000000000; // 0xE10000
|
1701 |
|
|
25: polynom = 32'b1001000000000000000000000; // 0x1200000
|
1702 |
|
|
26: polynom = 32'b10000000000000000000100011; // 0x2000023
|
1703 |
|
|
27: polynom = 32'b100000000000000000000010011; // 0x4000013
|
1704 |
|
|
28: polynom = 32'b1100100000000000000000000000; // 0xC800000
|
1705 |
|
|
29: polynom = 32'b10100000000000000000000000000; // 0x14000000
|
1706 |
|
|
30: polynom = 32'b100000000000000000000000101001; // 0x20000029
|
1707 |
|
|
31: polynom = 32'b1001000000000000000000000000000; // 0x48000000
|
1708 |
|
|
32: polynom = 32'b10000000001000000000000000000011; // 0x80200003
|
1709 |
|
|
default: polynom = 32'b0;
|
1710 |
|
|
endcase
|
1711 |
|
|
lfsr_fb = qi[length];
|
1712 |
|
|
for (i=length-1; i>=1; i=i-1) begin
|
1713 |
|
|
if (polynom[i])
|
1714 |
|
|
lfsr_fb = lfsr_fb ~^ qi[i];
|
1715 |
|
|
end
|
1716 |
|
|
end
|
1717 |
|
|
assign q_next = (qi == wrap_value) ? {length{1'b0}} :{qi[length-1:1],lfsr_fb};
|
1718 |
|
|
always @ (posedge clk or posedge rst)
|
1719 |
|
|
if (rst)
|
1720 |
|
|
qi <= {length{1'b0}};
|
1721 |
|
|
else
|
1722 |
|
|
if (cke)
|
1723 |
|
|
qi <= q_next;
|
1724 |
|
|
always @ (posedge clk or posedge rst)
|
1725 |
|
|
if (rst)
|
1726 |
|
|
zq <= 1'b1;
|
1727 |
|
|
else
|
1728 |
|
|
if (cke)
|
1729 |
|
|
zq <= q_next == {length{1'b0}};
|
1730 |
|
|
endmodule
|
1731 |
|
|
//////////////////////////////////////////////////////////////////////
|
1732 |
|
|
//// ////
|
1733 |
|
|
//// Versatile counter ////
|
1734 |
|
|
//// ////
|
1735 |
|
|
//// Description ////
|
1736 |
|
|
//// Versatile counter, a reconfigurable binary, gray or LFSR ////
|
1737 |
|
|
//// counter ////
|
1738 |
|
|
//// ////
|
1739 |
|
|
//// To Do: ////
|
1740 |
|
|
//// - add LFSR with more taps ////
|
1741 |
|
|
//// ////
|
1742 |
|
|
//// Author(s): ////
|
1743 |
|
|
//// - Michael Unneback, unneback@opencores.org ////
|
1744 |
|
|
//// ORSoC AB ////
|
1745 |
|
|
//// ////
|
1746 |
|
|
//////////////////////////////////////////////////////////////////////
|
1747 |
|
|
//// ////
|
1748 |
|
|
//// Copyright (C) 2009 Authors and OPENCORES.ORG ////
|
1749 |
|
|
//// ////
|
1750 |
|
|
//// This source file may be used and distributed without ////
|
1751 |
|
|
//// restriction provided that this copyright statement is not ////
|
1752 |
|
|
//// removed from the file and that any derivative work contains ////
|
1753 |
|
|
//// the original copyright notice and the associated disclaimer. ////
|
1754 |
|
|
//// ////
|
1755 |
|
|
//// This source file is free software; you can redistribute it ////
|
1756 |
|
|
//// and/or modify it under the terms of the GNU Lesser General ////
|
1757 |
|
|
//// Public License as published by the Free Software Foundation; ////
|
1758 |
|
|
//// either version 2.1 of the License, or (at your option) any ////
|
1759 |
|
|
//// later version. ////
|
1760 |
|
|
//// ////
|
1761 |
|
|
//// This source is distributed in the hope that it will be ////
|
1762 |
|
|
//// useful, but WITHOUT ANY WARRANTY; without even the implied ////
|
1763 |
|
|
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR ////
|
1764 |
|
|
//// PURPOSE. See the GNU Lesser General Public License for more ////
|
1765 |
|
|
//// details. ////
|
1766 |
|
|
//// ////
|
1767 |
|
|
//// You should have received a copy of the GNU Lesser General ////
|
1768 |
|
|
//// Public License along with this source; if not, download it ////
|
1769 |
|
|
//// from http://www.opencores.org/lgpl.shtml ////
|
1770 |
|
|
//// ////
|
1771 |
|
|
//////////////////////////////////////////////////////////////////////
|
1772 |
139 |
unneback |
// LFSR counter
|
1773 |
|
|
module vl_cnt_lfsr_ce_zq (
|
1774 |
|
|
cke, zq, rst, clk);
|
1775 |
|
|
parameter length = 4;
|
1776 |
|
|
input cke;
|
1777 |
|
|
output reg zq;
|
1778 |
|
|
input rst;
|
1779 |
|
|
input clk;
|
1780 |
|
|
parameter clear_value = 0;
|
1781 |
|
|
parameter set_value = 1;
|
1782 |
|
|
parameter wrap_value = 8;
|
1783 |
|
|
parameter level1_value = 15;
|
1784 |
|
|
reg [length:1] qi;
|
1785 |
|
|
reg lfsr_fb;
|
1786 |
|
|
wire [length:1] q_next;
|
1787 |
|
|
reg [32:1] polynom;
|
1788 |
|
|
integer i;
|
1789 |
|
|
always @ (qi)
|
1790 |
|
|
begin
|
1791 |
|
|
case (length)
|
1792 |
|
|
2: polynom = 32'b11; // 0x3
|
1793 |
|
|
3: polynom = 32'b110; // 0x6
|
1794 |
|
|
4: polynom = 32'b1100; // 0xC
|
1795 |
|
|
5: polynom = 32'b10100; // 0x14
|
1796 |
|
|
6: polynom = 32'b110000; // 0x30
|
1797 |
|
|
7: polynom = 32'b1100000; // 0x60
|
1798 |
|
|
8: polynom = 32'b10111000; // 0xb8
|
1799 |
|
|
9: polynom = 32'b100010000; // 0x110
|
1800 |
|
|
10: polynom = 32'b1001000000; // 0x240
|
1801 |
|
|
11: polynom = 32'b10100000000; // 0x500
|
1802 |
|
|
12: polynom = 32'b100000101001; // 0x829
|
1803 |
|
|
13: polynom = 32'b1000000001100; // 0x100C
|
1804 |
|
|
14: polynom = 32'b10000000010101; // 0x2015
|
1805 |
|
|
15: polynom = 32'b110000000000000; // 0x6000
|
1806 |
|
|
16: polynom = 32'b1101000000001000; // 0xD008
|
1807 |
|
|
17: polynom = 32'b10010000000000000; // 0x12000
|
1808 |
|
|
18: polynom = 32'b100000010000000000; // 0x20400
|
1809 |
|
|
19: polynom = 32'b1000000000000100011; // 0x40023
|
1810 |
|
|
20: polynom = 32'b10010000000000000000; // 0x90000
|
1811 |
|
|
21: polynom = 32'b101000000000000000000; // 0x140000
|
1812 |
|
|
22: polynom = 32'b1100000000000000000000; // 0x300000
|
1813 |
|
|
23: polynom = 32'b10000100000000000000000; // 0x420000
|
1814 |
|
|
24: polynom = 32'b111000010000000000000000; // 0xE10000
|
1815 |
|
|
25: polynom = 32'b1001000000000000000000000; // 0x1200000
|
1816 |
|
|
26: polynom = 32'b10000000000000000000100011; // 0x2000023
|
1817 |
|
|
27: polynom = 32'b100000000000000000000010011; // 0x4000013
|
1818 |
|
|
28: polynom = 32'b1100100000000000000000000000; // 0xC800000
|
1819 |
|
|
29: polynom = 32'b10100000000000000000000000000; // 0x14000000
|
1820 |
|
|
30: polynom = 32'b100000000000000000000000101001; // 0x20000029
|
1821 |
|
|
31: polynom = 32'b1001000000000000000000000000000; // 0x48000000
|
1822 |
|
|
32: polynom = 32'b10000000001000000000000000000011; // 0x80200003
|
1823 |
|
|
default: polynom = 32'b0;
|
1824 |
|
|
endcase
|
1825 |
|
|
lfsr_fb = qi[length];
|
1826 |
|
|
for (i=length-1; i>=1; i=i-1) begin
|
1827 |
|
|
if (polynom[i])
|
1828 |
|
|
lfsr_fb = lfsr_fb ~^ qi[i];
|
1829 |
|
|
end
|
1830 |
|
|
end
|
1831 |
|
|
assign q_next = (qi == wrap_value) ? {length{1'b0}} :{qi[length-1:1],lfsr_fb};
|
1832 |
|
|
always @ (posedge clk or posedge rst)
|
1833 |
|
|
if (rst)
|
1834 |
|
|
qi <= {length{1'b0}};
|
1835 |
|
|
else
|
1836 |
|
|
if (cke)
|
1837 |
|
|
qi <= q_next;
|
1838 |
|
|
always @ (posedge clk or posedge rst)
|
1839 |
|
|
if (rst)
|
1840 |
|
|
zq <= 1'b1;
|
1841 |
|
|
else
|
1842 |
|
|
if (cke)
|
1843 |
|
|
zq <= q_next == {length{1'b0}};
|
1844 |
|
|
endmodule
|
1845 |
|
|
//////////////////////////////////////////////////////////////////////
|
1846 |
|
|
//// ////
|
1847 |
|
|
//// Versatile counter ////
|
1848 |
|
|
//// ////
|
1849 |
|
|
//// Description ////
|
1850 |
|
|
//// Versatile counter, a reconfigurable binary, gray or LFSR ////
|
1851 |
|
|
//// counter ////
|
1852 |
|
|
//// ////
|
1853 |
|
|
//// To Do: ////
|
1854 |
|
|
//// - add LFSR with more taps ////
|
1855 |
|
|
//// ////
|
1856 |
|
|
//// Author(s): ////
|
1857 |
|
|
//// - Michael Unneback, unneback@opencores.org ////
|
1858 |
|
|
//// ORSoC AB ////
|
1859 |
|
|
//// ////
|
1860 |
|
|
//////////////////////////////////////////////////////////////////////
|
1861 |
|
|
//// ////
|
1862 |
|
|
//// Copyright (C) 2009 Authors and OPENCORES.ORG ////
|
1863 |
|
|
//// ////
|
1864 |
|
|
//// This source file may be used and distributed without ////
|
1865 |
|
|
//// restriction provided that this copyright statement is not ////
|
1866 |
|
|
//// removed from the file and that any derivative work contains ////
|
1867 |
|
|
//// the original copyright notice and the associated disclaimer. ////
|
1868 |
|
|
//// ////
|
1869 |
|
|
//// This source file is free software; you can redistribute it ////
|
1870 |
|
|
//// and/or modify it under the terms of the GNU Lesser General ////
|
1871 |
|
|
//// Public License as published by the Free Software Foundation; ////
|
1872 |
|
|
//// either version 2.1 of the License, or (at your option) any ////
|
1873 |
|
|
//// later version. ////
|
1874 |
|
|
//// ////
|
1875 |
|
|
//// This source is distributed in the hope that it will be ////
|
1876 |
|
|
//// useful, but WITHOUT ANY WARRANTY; without even the implied ////
|
1877 |
|
|
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR ////
|
1878 |
|
|
//// PURPOSE. See the GNU Lesser General Public License for more ////
|
1879 |
|
|
//// details. ////
|
1880 |
|
|
//// ////
|
1881 |
|
|
//// You should have received a copy of the GNU Lesser General ////
|
1882 |
|
|
//// Public License along with this source; if not, download it ////
|
1883 |
|
|
//// from http://www.opencores.org/lgpl.shtml ////
|
1884 |
|
|
//// ////
|
1885 |
|
|
//////////////////////////////////////////////////////////////////////
|
1886 |
|
|
// LFSR counter
|
1887 |
|
|
module vl_cnt_lfsr_ce_q (
|
1888 |
|
|
cke, q, rst, clk);
|
1889 |
|
|
parameter length = 4;
|
1890 |
|
|
input cke;
|
1891 |
|
|
output [length:1] q;
|
1892 |
|
|
input rst;
|
1893 |
|
|
input clk;
|
1894 |
|
|
parameter clear_value = 0;
|
1895 |
|
|
parameter set_value = 1;
|
1896 |
|
|
parameter wrap_value = 8;
|
1897 |
|
|
parameter level1_value = 15;
|
1898 |
|
|
reg [length:1] qi;
|
1899 |
|
|
reg lfsr_fb;
|
1900 |
|
|
wire [length:1] q_next;
|
1901 |
|
|
reg [32:1] polynom;
|
1902 |
|
|
integer i;
|
1903 |
|
|
always @ (qi)
|
1904 |
|
|
begin
|
1905 |
|
|
case (length)
|
1906 |
|
|
2: polynom = 32'b11; // 0x3
|
1907 |
|
|
3: polynom = 32'b110; // 0x6
|
1908 |
|
|
4: polynom = 32'b1100; // 0xC
|
1909 |
|
|
5: polynom = 32'b10100; // 0x14
|
1910 |
|
|
6: polynom = 32'b110000; // 0x30
|
1911 |
|
|
7: polynom = 32'b1100000; // 0x60
|
1912 |
|
|
8: polynom = 32'b10111000; // 0xb8
|
1913 |
|
|
9: polynom = 32'b100010000; // 0x110
|
1914 |
|
|
10: polynom = 32'b1001000000; // 0x240
|
1915 |
|
|
11: polynom = 32'b10100000000; // 0x500
|
1916 |
|
|
12: polynom = 32'b100000101001; // 0x829
|
1917 |
|
|
13: polynom = 32'b1000000001100; // 0x100C
|
1918 |
|
|
14: polynom = 32'b10000000010101; // 0x2015
|
1919 |
|
|
15: polynom = 32'b110000000000000; // 0x6000
|
1920 |
|
|
16: polynom = 32'b1101000000001000; // 0xD008
|
1921 |
|
|
17: polynom = 32'b10010000000000000; // 0x12000
|
1922 |
|
|
18: polynom = 32'b100000010000000000; // 0x20400
|
1923 |
|
|
19: polynom = 32'b1000000000000100011; // 0x40023
|
1924 |
|
|
20: polynom = 32'b10010000000000000000; // 0x90000
|
1925 |
|
|
21: polynom = 32'b101000000000000000000; // 0x140000
|
1926 |
|
|
22: polynom = 32'b1100000000000000000000; // 0x300000
|
1927 |
|
|
23: polynom = 32'b10000100000000000000000; // 0x420000
|
1928 |
|
|
24: polynom = 32'b111000010000000000000000; // 0xE10000
|
1929 |
|
|
25: polynom = 32'b1001000000000000000000000; // 0x1200000
|
1930 |
|
|
26: polynom = 32'b10000000000000000000100011; // 0x2000023
|
1931 |
|
|
27: polynom = 32'b100000000000000000000010011; // 0x4000013
|
1932 |
|
|
28: polynom = 32'b1100100000000000000000000000; // 0xC800000
|
1933 |
|
|
29: polynom = 32'b10100000000000000000000000000; // 0x14000000
|
1934 |
|
|
30: polynom = 32'b100000000000000000000000101001; // 0x20000029
|
1935 |
|
|
31: polynom = 32'b1001000000000000000000000000000; // 0x48000000
|
1936 |
|
|
32: polynom = 32'b10000000001000000000000000000011; // 0x80200003
|
1937 |
|
|
default: polynom = 32'b0;
|
1938 |
|
|
endcase
|
1939 |
|
|
lfsr_fb = qi[length];
|
1940 |
|
|
for (i=length-1; i>=1; i=i-1) begin
|
1941 |
|
|
if (polynom[i])
|
1942 |
|
|
lfsr_fb = lfsr_fb ~^ qi[i];
|
1943 |
|
|
end
|
1944 |
|
|
end
|
1945 |
|
|
assign q_next = (qi == wrap_value) ? {length{1'b0}} :{qi[length-1:1],lfsr_fb};
|
1946 |
|
|
always @ (posedge clk or posedge rst)
|
1947 |
|
|
if (rst)
|
1948 |
|
|
qi <= {length{1'b0}};
|
1949 |
|
|
else
|
1950 |
|
|
if (cke)
|
1951 |
|
|
qi <= q_next;
|
1952 |
|
|
assign q = qi;
|
1953 |
|
|
endmodule
|
1954 |
|
|
//////////////////////////////////////////////////////////////////////
|
1955 |
|
|
//// ////
|
1956 |
|
|
//// Versatile counter ////
|
1957 |
|
|
//// ////
|
1958 |
|
|
//// Description ////
|
1959 |
|
|
//// Versatile counter, a reconfigurable binary, gray or LFSR ////
|
1960 |
|
|
//// counter ////
|
1961 |
|
|
//// ////
|
1962 |
|
|
//// To Do: ////
|
1963 |
|
|
//// - add LFSR with more taps ////
|
1964 |
|
|
//// ////
|
1965 |
|
|
//// Author(s): ////
|
1966 |
|
|
//// - Michael Unneback, unneback@opencores.org ////
|
1967 |
|
|
//// ORSoC AB ////
|
1968 |
|
|
//// ////
|
1969 |
|
|
//////////////////////////////////////////////////////////////////////
|
1970 |
|
|
//// ////
|
1971 |
|
|
//// Copyright (C) 2009 Authors and OPENCORES.ORG ////
|
1972 |
|
|
//// ////
|
1973 |
|
|
//// This source file may be used and distributed without ////
|
1974 |
|
|
//// restriction provided that this copyright statement is not ////
|
1975 |
|
|
//// removed from the file and that any derivative work contains ////
|
1976 |
|
|
//// the original copyright notice and the associated disclaimer. ////
|
1977 |
|
|
//// ////
|
1978 |
|
|
//// This source file is free software; you can redistribute it ////
|
1979 |
|
|
//// and/or modify it under the terms of the GNU Lesser General ////
|
1980 |
|
|
//// Public License as published by the Free Software Foundation; ////
|
1981 |
|
|
//// either version 2.1 of the License, or (at your option) any ////
|
1982 |
|
|
//// later version. ////
|
1983 |
|
|
//// ////
|
1984 |
|
|
//// This source is distributed in the hope that it will be ////
|
1985 |
|
|
//// useful, but WITHOUT ANY WARRANTY; without even the implied ////
|
1986 |
|
|
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR ////
|
1987 |
|
|
//// PURPOSE. See the GNU Lesser General Public License for more ////
|
1988 |
|
|
//// details. ////
|
1989 |
|
|
//// ////
|
1990 |
|
|
//// You should have received a copy of the GNU Lesser General ////
|
1991 |
|
|
//// Public License along with this source; if not, download it ////
|
1992 |
|
|
//// from http://www.opencores.org/lgpl.shtml ////
|
1993 |
|
|
//// ////
|
1994 |
|
|
//////////////////////////////////////////////////////////////////////
|
1995 |
|
|
// LFSR counter
|
1996 |
|
|
module vl_cnt_lfsr_ce_clear_q (
|
1997 |
|
|
clear, cke, q, rst, clk);
|
1998 |
|
|
parameter length = 4;
|
1999 |
|
|
input clear;
|
2000 |
|
|
input cke;
|
2001 |
|
|
output [length:1] q;
|
2002 |
|
|
input rst;
|
2003 |
|
|
input clk;
|
2004 |
|
|
parameter clear_value = 0;
|
2005 |
|
|
parameter set_value = 1;
|
2006 |
|
|
parameter wrap_value = 8;
|
2007 |
|
|
parameter level1_value = 15;
|
2008 |
|
|
reg [length:1] qi;
|
2009 |
|
|
reg lfsr_fb;
|
2010 |
|
|
wire [length:1] q_next;
|
2011 |
|
|
reg [32:1] polynom;
|
2012 |
|
|
integer i;
|
2013 |
|
|
always @ (qi)
|
2014 |
|
|
begin
|
2015 |
|
|
case (length)
|
2016 |
|
|
2: polynom = 32'b11; // 0x3
|
2017 |
|
|
3: polynom = 32'b110; // 0x6
|
2018 |
|
|
4: polynom = 32'b1100; // 0xC
|
2019 |
|
|
5: polynom = 32'b10100; // 0x14
|
2020 |
|
|
6: polynom = 32'b110000; // 0x30
|
2021 |
|
|
7: polynom = 32'b1100000; // 0x60
|
2022 |
|
|
8: polynom = 32'b10111000; // 0xb8
|
2023 |
|
|
9: polynom = 32'b100010000; // 0x110
|
2024 |
|
|
10: polynom = 32'b1001000000; // 0x240
|
2025 |
|
|
11: polynom = 32'b10100000000; // 0x500
|
2026 |
|
|
12: polynom = 32'b100000101001; // 0x829
|
2027 |
|
|
13: polynom = 32'b1000000001100; // 0x100C
|
2028 |
|
|
14: polynom = 32'b10000000010101; // 0x2015
|
2029 |
|
|
15: polynom = 32'b110000000000000; // 0x6000
|
2030 |
|
|
16: polynom = 32'b1101000000001000; // 0xD008
|
2031 |
|
|
17: polynom = 32'b10010000000000000; // 0x12000
|
2032 |
|
|
18: polynom = 32'b100000010000000000; // 0x20400
|
2033 |
|
|
19: polynom = 32'b1000000000000100011; // 0x40023
|
2034 |
|
|
20: polynom = 32'b10010000000000000000; // 0x90000
|
2035 |
|
|
21: polynom = 32'b101000000000000000000; // 0x140000
|
2036 |
|
|
22: polynom = 32'b1100000000000000000000; // 0x300000
|
2037 |
|
|
23: polynom = 32'b10000100000000000000000; // 0x420000
|
2038 |
|
|
24: polynom = 32'b111000010000000000000000; // 0xE10000
|
2039 |
|
|
25: polynom = 32'b1001000000000000000000000; // 0x1200000
|
2040 |
|
|
26: polynom = 32'b10000000000000000000100011; // 0x2000023
|
2041 |
|
|
27: polynom = 32'b100000000000000000000010011; // 0x4000013
|
2042 |
|
|
28: polynom = 32'b1100100000000000000000000000; // 0xC800000
|
2043 |
|
|
29: polynom = 32'b10100000000000000000000000000; // 0x14000000
|
2044 |
|
|
30: polynom = 32'b100000000000000000000000101001; // 0x20000029
|
2045 |
|
|
31: polynom = 32'b1001000000000000000000000000000; // 0x48000000
|
2046 |
|
|
32: polynom = 32'b10000000001000000000000000000011; // 0x80200003
|
2047 |
|
|
default: polynom = 32'b0;
|
2048 |
|
|
endcase
|
2049 |
|
|
lfsr_fb = qi[length];
|
2050 |
|
|
for (i=length-1; i>=1; i=i-1) begin
|
2051 |
|
|
if (polynom[i])
|
2052 |
|
|
lfsr_fb = lfsr_fb ~^ qi[i];
|
2053 |
|
|
end
|
2054 |
|
|
end
|
2055 |
|
|
assign q_next = clear ? {length{1'b0}} :(qi == wrap_value) ? {length{1'b0}} :{qi[length-1:1],lfsr_fb};
|
2056 |
|
|
always @ (posedge clk or posedge rst)
|
2057 |
|
|
if (rst)
|
2058 |
|
|
qi <= {length{1'b0}};
|
2059 |
|
|
else
|
2060 |
|
|
if (cke)
|
2061 |
|
|
qi <= q_next;
|
2062 |
|
|
assign q = qi;
|
2063 |
|
|
endmodule
|
2064 |
|
|
//////////////////////////////////////////////////////////////////////
|
2065 |
|
|
//// ////
|
2066 |
|
|
//// Versatile counter ////
|
2067 |
|
|
//// ////
|
2068 |
|
|
//// Description ////
|
2069 |
|
|
//// Versatile counter, a reconfigurable binary, gray or LFSR ////
|
2070 |
|
|
//// counter ////
|
2071 |
|
|
//// ////
|
2072 |
|
|
//// To Do: ////
|
2073 |
|
|
//// - add LFSR with more taps ////
|
2074 |
|
|
//// ////
|
2075 |
|
|
//// Author(s): ////
|
2076 |
|
|
//// - Michael Unneback, unneback@opencores.org ////
|
2077 |
|
|
//// ORSoC AB ////
|
2078 |
|
|
//// ////
|
2079 |
|
|
//////////////////////////////////////////////////////////////////////
|
2080 |
|
|
//// ////
|
2081 |
|
|
//// Copyright (C) 2009 Authors and OPENCORES.ORG ////
|
2082 |
|
|
//// ////
|
2083 |
|
|
//// This source file may be used and distributed without ////
|
2084 |
|
|
//// restriction provided that this copyright statement is not ////
|
2085 |
|
|
//// removed from the file and that any derivative work contains ////
|
2086 |
|
|
//// the original copyright notice and the associated disclaimer. ////
|
2087 |
|
|
//// ////
|
2088 |
|
|
//// This source file is free software; you can redistribute it ////
|
2089 |
|
|
//// and/or modify it under the terms of the GNU Lesser General ////
|
2090 |
|
|
//// Public License as published by the Free Software Foundation; ////
|
2091 |
|
|
//// either version 2.1 of the License, or (at your option) any ////
|
2092 |
|
|
//// later version. ////
|
2093 |
|
|
//// ////
|
2094 |
|
|
//// This source is distributed in the hope that it will be ////
|
2095 |
|
|
//// useful, but WITHOUT ANY WARRANTY; without even the implied ////
|
2096 |
|
|
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR ////
|
2097 |
|
|
//// PURPOSE. See the GNU Lesser General Public License for more ////
|
2098 |
|
|
//// details. ////
|
2099 |
|
|
//// ////
|
2100 |
|
|
//// You should have received a copy of the GNU Lesser General ////
|
2101 |
|
|
//// Public License along with this source; if not, download it ////
|
2102 |
|
|
//// from http://www.opencores.org/lgpl.shtml ////
|
2103 |
|
|
//// ////
|
2104 |
|
|
//////////////////////////////////////////////////////////////////////
|
2105 |
|
|
// LFSR counter
|
2106 |
|
|
module vl_cnt_lfsr_ce_q_zq (
|
2107 |
|
|
cke, q, zq, rst, clk);
|
2108 |
|
|
parameter length = 4;
|
2109 |
|
|
input cke;
|
2110 |
|
|
output [length:1] q;
|
2111 |
|
|
output reg zq;
|
2112 |
|
|
input rst;
|
2113 |
|
|
input clk;
|
2114 |
|
|
parameter clear_value = 0;
|
2115 |
|
|
parameter set_value = 1;
|
2116 |
|
|
parameter wrap_value = 8;
|
2117 |
|
|
parameter level1_value = 15;
|
2118 |
|
|
reg [length:1] qi;
|
2119 |
|
|
reg lfsr_fb;
|
2120 |
|
|
wire [length:1] q_next;
|
2121 |
|
|
reg [32:1] polynom;
|
2122 |
|
|
integer i;
|
2123 |
|
|
always @ (qi)
|
2124 |
|
|
begin
|
2125 |
|
|
case (length)
|
2126 |
|
|
2: polynom = 32'b11; // 0x3
|
2127 |
|
|
3: polynom = 32'b110; // 0x6
|
2128 |
|
|
4: polynom = 32'b1100; // 0xC
|
2129 |
|
|
5: polynom = 32'b10100; // 0x14
|
2130 |
|
|
6: polynom = 32'b110000; // 0x30
|
2131 |
|
|
7: polynom = 32'b1100000; // 0x60
|
2132 |
|
|
8: polynom = 32'b10111000; // 0xb8
|
2133 |
|
|
9: polynom = 32'b100010000; // 0x110
|
2134 |
|
|
10: polynom = 32'b1001000000; // 0x240
|
2135 |
|
|
11: polynom = 32'b10100000000; // 0x500
|
2136 |
|
|
12: polynom = 32'b100000101001; // 0x829
|
2137 |
|
|
13: polynom = 32'b1000000001100; // 0x100C
|
2138 |
|
|
14: polynom = 32'b10000000010101; // 0x2015
|
2139 |
|
|
15: polynom = 32'b110000000000000; // 0x6000
|
2140 |
|
|
16: polynom = 32'b1101000000001000; // 0xD008
|
2141 |
|
|
17: polynom = 32'b10010000000000000; // 0x12000
|
2142 |
|
|
18: polynom = 32'b100000010000000000; // 0x20400
|
2143 |
|
|
19: polynom = 32'b1000000000000100011; // 0x40023
|
2144 |
|
|
20: polynom = 32'b10010000000000000000; // 0x90000
|
2145 |
|
|
21: polynom = 32'b101000000000000000000; // 0x140000
|
2146 |
|
|
22: polynom = 32'b1100000000000000000000; // 0x300000
|
2147 |
|
|
23: polynom = 32'b10000100000000000000000; // 0x420000
|
2148 |
|
|
24: polynom = 32'b111000010000000000000000; // 0xE10000
|
2149 |
|
|
25: polynom = 32'b1001000000000000000000000; // 0x1200000
|
2150 |
|
|
26: polynom = 32'b10000000000000000000100011; // 0x2000023
|
2151 |
|
|
27: polynom = 32'b100000000000000000000010011; // 0x4000013
|
2152 |
|
|
28: polynom = 32'b1100100000000000000000000000; // 0xC800000
|
2153 |
|
|
29: polynom = 32'b10100000000000000000000000000; // 0x14000000
|
2154 |
|
|
30: polynom = 32'b100000000000000000000000101001; // 0x20000029
|
2155 |
|
|
31: polynom = 32'b1001000000000000000000000000000; // 0x48000000
|
2156 |
|
|
32: polynom = 32'b10000000001000000000000000000011; // 0x80200003
|
2157 |
|
|
default: polynom = 32'b0;
|
2158 |
|
|
endcase
|
2159 |
|
|
lfsr_fb = qi[length];
|
2160 |
|
|
for (i=length-1; i>=1; i=i-1) begin
|
2161 |
|
|
if (polynom[i])
|
2162 |
|
|
lfsr_fb = lfsr_fb ~^ qi[i];
|
2163 |
|
|
end
|
2164 |
|
|
end
|
2165 |
|
|
assign q_next = (qi == wrap_value) ? {length{1'b0}} :{qi[length-1:1],lfsr_fb};
|
2166 |
|
|
always @ (posedge clk or posedge rst)
|
2167 |
|
|
if (rst)
|
2168 |
|
|
qi <= {length{1'b0}};
|
2169 |
|
|
else
|
2170 |
|
|
if (cke)
|
2171 |
|
|
qi <= q_next;
|
2172 |
|
|
assign q = qi;
|
2173 |
|
|
always @ (posedge clk or posedge rst)
|
2174 |
|
|
if (rst)
|
2175 |
|
|
zq <= 1'b1;
|
2176 |
|
|
else
|
2177 |
|
|
if (cke)
|
2178 |
|
|
zq <= q_next == {length{1'b0}};
|
2179 |
|
|
endmodule
|
2180 |
|
|
//////////////////////////////////////////////////////////////////////
|
2181 |
|
|
//// ////
|
2182 |
|
|
//// Versatile counter ////
|
2183 |
|
|
//// ////
|
2184 |
|
|
//// Description ////
|
2185 |
|
|
//// Versatile counter, a reconfigurable binary, gray or LFSR ////
|
2186 |
|
|
//// counter ////
|
2187 |
|
|
//// ////
|
2188 |
|
|
//// To Do: ////
|
2189 |
|
|
//// - add LFSR with more taps ////
|
2190 |
|
|
//// ////
|
2191 |
|
|
//// Author(s): ////
|
2192 |
|
|
//// - Michael Unneback, unneback@opencores.org ////
|
2193 |
|
|
//// ORSoC AB ////
|
2194 |
|
|
//// ////
|
2195 |
|
|
//////////////////////////////////////////////////////////////////////
|
2196 |
|
|
//// ////
|
2197 |
|
|
//// Copyright (C) 2009 Authors and OPENCORES.ORG ////
|
2198 |
|
|
//// ////
|
2199 |
|
|
//// This source file may be used and distributed without ////
|
2200 |
|
|
//// restriction provided that this copyright statement is not ////
|
2201 |
|
|
//// removed from the file and that any derivative work contains ////
|
2202 |
|
|
//// the original copyright notice and the associated disclaimer. ////
|
2203 |
|
|
//// ////
|
2204 |
|
|
//// This source file is free software; you can redistribute it ////
|
2205 |
|
|
//// and/or modify it under the terms of the GNU Lesser General ////
|
2206 |
|
|
//// Public License as published by the Free Software Foundation; ////
|
2207 |
|
|
//// either version 2.1 of the License, or (at your option) any ////
|
2208 |
|
|
//// later version. ////
|
2209 |
|
|
//// ////
|
2210 |
|
|
//// This source is distributed in the hope that it will be ////
|
2211 |
|
|
//// useful, but WITHOUT ANY WARRANTY; without even the implied ////
|
2212 |
|
|
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR ////
|
2213 |
|
|
//// PURPOSE. See the GNU Lesser General Public License for more ////
|
2214 |
|
|
//// details. ////
|
2215 |
|
|
//// ////
|
2216 |
|
|
//// You should have received a copy of the GNU Lesser General ////
|
2217 |
|
|
//// Public License along with this source; if not, download it ////
|
2218 |
|
|
//// from http://www.opencores.org/lgpl.shtml ////
|
2219 |
|
|
//// ////
|
2220 |
|
|
//////////////////////////////////////////////////////////////////////
|
2221 |
|
|
// LFSR counter
|
2222 |
|
|
module vl_cnt_lfsr_ce_rew_l1 (
|
2223 |
|
|
cke, rew, level1, rst, clk);
|
2224 |
|
|
parameter length = 4;
|
2225 |
|
|
input cke;
|
2226 |
|
|
input rew;
|
2227 |
|
|
output reg level1;
|
2228 |
|
|
input rst;
|
2229 |
|
|
input clk;
|
2230 |
|
|
parameter clear_value = 0;
|
2231 |
|
|
parameter set_value = 1;
|
2232 |
|
|
parameter wrap_value = 8;
|
2233 |
|
|
parameter level1_value = 15;
|
2234 |
|
|
wire clear;
|
2235 |
|
|
assign clear = 1'b0;
|
2236 |
|
|
reg [length:1] qi;
|
2237 |
|
|
reg lfsr_fb, lfsr_fb_rew;
|
2238 |
|
|
wire [length:1] q_next, q_next_fw, q_next_rew;
|
2239 |
|
|
reg [32:1] polynom_rew;
|
2240 |
|
|
integer j;
|
2241 |
|
|
reg [32:1] polynom;
|
2242 |
|
|
integer i;
|
2243 |
|
|
always @ (qi)
|
2244 |
|
|
begin
|
2245 |
|
|
case (length)
|
2246 |
|
|
2: polynom = 32'b11; // 0x3
|
2247 |
|
|
3: polynom = 32'b110; // 0x6
|
2248 |
|
|
4: polynom = 32'b1100; // 0xC
|
2249 |
|
|
5: polynom = 32'b10100; // 0x14
|
2250 |
|
|
6: polynom = 32'b110000; // 0x30
|
2251 |
|
|
7: polynom = 32'b1100000; // 0x60
|
2252 |
|
|
8: polynom = 32'b10111000; // 0xb8
|
2253 |
|
|
9: polynom = 32'b100010000; // 0x110
|
2254 |
|
|
10: polynom = 32'b1001000000; // 0x240
|
2255 |
|
|
11: polynom = 32'b10100000000; // 0x500
|
2256 |
|
|
12: polynom = 32'b100000101001; // 0x829
|
2257 |
|
|
13: polynom = 32'b1000000001100; // 0x100C
|
2258 |
|
|
14: polynom = 32'b10000000010101; // 0x2015
|
2259 |
|
|
15: polynom = 32'b110000000000000; // 0x6000
|
2260 |
|
|
16: polynom = 32'b1101000000001000; // 0xD008
|
2261 |
|
|
17: polynom = 32'b10010000000000000; // 0x12000
|
2262 |
|
|
18: polynom = 32'b100000010000000000; // 0x20400
|
2263 |
|
|
19: polynom = 32'b1000000000000100011; // 0x40023
|
2264 |
|
|
20: polynom = 32'b10010000000000000000; // 0x90000
|
2265 |
|
|
21: polynom = 32'b101000000000000000000; // 0x140000
|
2266 |
|
|
22: polynom = 32'b1100000000000000000000; // 0x300000
|
2267 |
|
|
23: polynom = 32'b10000100000000000000000; // 0x420000
|
2268 |
|
|
24: polynom = 32'b111000010000000000000000; // 0xE10000
|
2269 |
|
|
25: polynom = 32'b1001000000000000000000000; // 0x1200000
|
2270 |
|
|
26: polynom = 32'b10000000000000000000100011; // 0x2000023
|
2271 |
|
|
27: polynom = 32'b100000000000000000000010011; // 0x4000013
|
2272 |
|
|
28: polynom = 32'b1100100000000000000000000000; // 0xC800000
|
2273 |
|
|
29: polynom = 32'b10100000000000000000000000000; // 0x14000000
|
2274 |
|
|
30: polynom = 32'b100000000000000000000000101001; // 0x20000029
|
2275 |
|
|
31: polynom = 32'b1001000000000000000000000000000; // 0x48000000
|
2276 |
|
|
32: polynom = 32'b10000000001000000000000000000011; // 0x80200003
|
2277 |
|
|
default: polynom = 32'b0;
|
2278 |
|
|
endcase
|
2279 |
|
|
lfsr_fb = qi[length];
|
2280 |
|
|
for (i=length-1; i>=1; i=i-1) begin
|
2281 |
|
|
if (polynom[i])
|
2282 |
|
|
lfsr_fb = lfsr_fb ~^ qi[i];
|
2283 |
|
|
end
|
2284 |
|
|
end
|
2285 |
|
|
assign q_next_fw = (qi == wrap_value) ? {length{1'b0}} :{qi[length-1:1],lfsr_fb};
|
2286 |
|
|
always @ (qi)
|
2287 |
|
|
begin
|
2288 |
|
|
case (length)
|
2289 |
|
|
2: polynom_rew = 32'b11;
|
2290 |
|
|
3: polynom_rew = 32'b110;
|
2291 |
|
|
4: polynom_rew = 32'b1100;
|
2292 |
|
|
5: polynom_rew = 32'b10100;
|
2293 |
|
|
6: polynom_rew = 32'b110000;
|
2294 |
|
|
7: polynom_rew = 32'b1100000;
|
2295 |
|
|
8: polynom_rew = 32'b10111000;
|
2296 |
|
|
9: polynom_rew = 32'b100010000;
|
2297 |
|
|
10: polynom_rew = 32'b1001000000;
|
2298 |
|
|
11: polynom_rew = 32'b10100000000;
|
2299 |
|
|
12: polynom_rew = 32'b100000101001;
|
2300 |
|
|
13: polynom_rew = 32'b1000000001100;
|
2301 |
|
|
14: polynom_rew = 32'b10000000010101;
|
2302 |
|
|
15: polynom_rew = 32'b110000000000000;
|
2303 |
|
|
16: polynom_rew = 32'b1101000000001000;
|
2304 |
|
|
17: polynom_rew = 32'b10010000000000000;
|
2305 |
|
|
18: polynom_rew = 32'b100000010000000000;
|
2306 |
|
|
19: polynom_rew = 32'b1000000000000100011;
|
2307 |
|
|
20: polynom_rew = 32'b10000010000000000000;
|
2308 |
|
|
21: polynom_rew = 32'b101000000000000000000;
|
2309 |
|
|
22: polynom_rew = 32'b1100000000000000000000;
|
2310 |
|
|
23: polynom_rew = 32'b10000100000000000000000;
|
2311 |
|
|
24: polynom_rew = 32'b111000010000000000000000;
|
2312 |
|
|
25: polynom_rew = 32'b1001000000000000000000000;
|
2313 |
|
|
26: polynom_rew = 32'b10000000000000000000100011;
|
2314 |
|
|
27: polynom_rew = 32'b100000000000000000000010011;
|
2315 |
|
|
28: polynom_rew = 32'b1100100000000000000000000000;
|
2316 |
|
|
29: polynom_rew = 32'b10100000000000000000000000000;
|
2317 |
|
|
30: polynom_rew = 32'b100000000000000000000000101001;
|
2318 |
|
|
31: polynom_rew = 32'b1001000000000000000000000000000;
|
2319 |
|
|
32: polynom_rew = 32'b10000000001000000000000000000011;
|
2320 |
|
|
default: polynom_rew = 32'b0;
|
2321 |
|
|
endcase
|
2322 |
|
|
// rotate left
|
2323 |
|
|
polynom_rew[length:1] = { polynom_rew[length-2:1],polynom_rew[length] };
|
2324 |
|
|
lfsr_fb_rew = qi[length];
|
2325 |
|
|
for (i=length-1; i>=1; i=i-1) begin
|
2326 |
|
|
if (polynom_rew[i])
|
2327 |
|
|
lfsr_fb_rew = lfsr_fb_rew ~^ qi[i];
|
2328 |
|
|
end
|
2329 |
|
|
end
|
2330 |
|
|
assign q_next_rew = (qi == wrap_value) ? {length{1'b0}} :{lfsr_fb_rew,qi[length:2]};
|
2331 |
|
|
assign q_next = rew ? q_next_rew : q_next_fw;
|
2332 |
|
|
always @ (posedge clk or posedge rst)
|
2333 |
|
|
if (rst)
|
2334 |
|
|
qi <= {length{1'b0}};
|
2335 |
|
|
else
|
2336 |
|
|
if (cke)
|
2337 |
|
|
qi <= q_next;
|
2338 |
|
|
always @ (posedge clk or posedge rst)
|
2339 |
|
|
if (rst)
|
2340 |
|
|
level1 <= 1'b0;
|
2341 |
|
|
else
|
2342 |
|
|
if (cke)
|
2343 |
|
|
if (clear)
|
2344 |
|
|
level1 <= 1'b0;
|
2345 |
|
|
else if (q_next == level1_value)
|
2346 |
|
|
level1 <= 1'b1;
|
2347 |
|
|
else if (qi == level1_value & rew)
|
2348 |
|
|
level1 <= 1'b0;
|
2349 |
|
|
endmodule
|
2350 |
|
|
//////////////////////////////////////////////////////////////////////
|
2351 |
|
|
//// ////
|
2352 |
|
|
//// Versatile counter ////
|
2353 |
|
|
//// ////
|
2354 |
|
|
//// Description ////
|
2355 |
|
|
//// Versatile counter, a reconfigurable binary, gray or LFSR ////
|
2356 |
|
|
//// counter ////
|
2357 |
|
|
//// ////
|
2358 |
|
|
//// To Do: ////
|
2359 |
|
|
//// - add LFSR with more taps ////
|
2360 |
|
|
//// ////
|
2361 |
|
|
//// Author(s): ////
|
2362 |
|
|
//// - Michael Unneback, unneback@opencores.org ////
|
2363 |
|
|
//// ORSoC AB ////
|
2364 |
|
|
//// ////
|
2365 |
|
|
//////////////////////////////////////////////////////////////////////
|
2366 |
|
|
//// ////
|
2367 |
|
|
//// Copyright (C) 2009 Authors and OPENCORES.ORG ////
|
2368 |
|
|
//// ////
|
2369 |
|
|
//// This source file may be used and distributed without ////
|
2370 |
|
|
//// restriction provided that this copyright statement is not ////
|
2371 |
|
|
//// removed from the file and that any derivative work contains ////
|
2372 |
|
|
//// the original copyright notice and the associated disclaimer. ////
|
2373 |
|
|
//// ////
|
2374 |
|
|
//// This source file is free software; you can redistribute it ////
|
2375 |
|
|
//// and/or modify it under the terms of the GNU Lesser General ////
|
2376 |
|
|
//// Public License as published by the Free Software Foundation; ////
|
2377 |
|
|
//// either version 2.1 of the License, or (at your option) any ////
|
2378 |
|
|
//// later version. ////
|
2379 |
|
|
//// ////
|
2380 |
|
|
//// This source is distributed in the hope that it will be ////
|
2381 |
|
|
//// useful, but WITHOUT ANY WARRANTY; without even the implied ////
|
2382 |
|
|
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR ////
|
2383 |
|
|
//// PURPOSE. See the GNU Lesser General Public License for more ////
|
2384 |
|
|
//// details. ////
|
2385 |
|
|
//// ////
|
2386 |
|
|
//// You should have received a copy of the GNU Lesser General ////
|
2387 |
|
|
//// Public License along with this source; if not, download it ////
|
2388 |
|
|
//// from http://www.opencores.org/lgpl.shtml ////
|
2389 |
|
|
//// ////
|
2390 |
|
|
//////////////////////////////////////////////////////////////////////
|
2391 |
6 |
unneback |
// GRAY counter
|
2392 |
139 |
unneback |
module vl_cnt_gray (
|
2393 |
|
|
q, rst, clk);
|
2394 |
|
|
parameter length = 4;
|
2395 |
|
|
output reg [length:1] q;
|
2396 |
|
|
input rst;
|
2397 |
|
|
input clk;
|
2398 |
|
|
parameter clear_value = 0;
|
2399 |
|
|
parameter set_value = 1;
|
2400 |
|
|
parameter wrap_value = 8;
|
2401 |
|
|
parameter level1_value = 15;
|
2402 |
|
|
reg [length:1] qi;
|
2403 |
|
|
wire [length:1] q_next;
|
2404 |
|
|
assign q_next = qi + {{length-1{1'b0}},1'b1};
|
2405 |
|
|
always @ (posedge clk or posedge rst)
|
2406 |
|
|
if (rst)
|
2407 |
|
|
qi <= {length{1'b0}};
|
2408 |
|
|
else
|
2409 |
|
|
qi <= q_next;
|
2410 |
|
|
always @ (posedge clk or posedge rst)
|
2411 |
|
|
if (rst)
|
2412 |
|
|
q <= {length{1'b0}};
|
2413 |
|
|
else
|
2414 |
|
|
q <= (q_next>>1) ^ q_next;
|
2415 |
|
|
endmodule
|
2416 |
|
|
//////////////////////////////////////////////////////////////////////
|
2417 |
|
|
//// ////
|
2418 |
|
|
//// Versatile counter ////
|
2419 |
|
|
//// ////
|
2420 |
|
|
//// Description ////
|
2421 |
|
|
//// Versatile counter, a reconfigurable binary, gray or LFSR ////
|
2422 |
|
|
//// counter ////
|
2423 |
|
|
//// ////
|
2424 |
|
|
//// To Do: ////
|
2425 |
|
|
//// - add LFSR with more taps ////
|
2426 |
|
|
//// ////
|
2427 |
|
|
//// Author(s): ////
|
2428 |
|
|
//// - Michael Unneback, unneback@opencores.org ////
|
2429 |
|
|
//// ORSoC AB ////
|
2430 |
|
|
//// ////
|
2431 |
|
|
//////////////////////////////////////////////////////////////////////
|
2432 |
|
|
//// ////
|
2433 |
|
|
//// Copyright (C) 2009 Authors and OPENCORES.ORG ////
|
2434 |
|
|
//// ////
|
2435 |
|
|
//// This source file may be used and distributed without ////
|
2436 |
|
|
//// restriction provided that this copyright statement is not ////
|
2437 |
|
|
//// removed from the file and that any derivative work contains ////
|
2438 |
|
|
//// the original copyright notice and the associated disclaimer. ////
|
2439 |
|
|
//// ////
|
2440 |
|
|
//// This source file is free software; you can redistribute it ////
|
2441 |
|
|
//// and/or modify it under the terms of the GNU Lesser General ////
|
2442 |
|
|
//// Public License as published by the Free Software Foundation; ////
|
2443 |
|
|
//// either version 2.1 of the License, or (at your option) any ////
|
2444 |
|
|
//// later version. ////
|
2445 |
|
|
//// ////
|
2446 |
|
|
//// This source is distributed in the hope that it will be ////
|
2447 |
|
|
//// useful, but WITHOUT ANY WARRANTY; without even the implied ////
|
2448 |
|
|
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR ////
|
2449 |
|
|
//// PURPOSE. See the GNU Lesser General Public License for more ////
|
2450 |
|
|
//// details. ////
|
2451 |
|
|
//// ////
|
2452 |
|
|
//// You should have received a copy of the GNU Lesser General ////
|
2453 |
|
|
//// Public License along with this source; if not, download it ////
|
2454 |
|
|
//// from http://www.opencores.org/lgpl.shtml ////
|
2455 |
|
|
//// ////
|
2456 |
|
|
//////////////////////////////////////////////////////////////////////
|
2457 |
|
|
// GRAY counter
|
2458 |
|
|
module vl_cnt_gray_ce (
|
2459 |
|
|
cke, q, rst, clk);
|
2460 |
|
|
parameter length = 4;
|
2461 |
|
|
input cke;
|
2462 |
|
|
output reg [length:1] q;
|
2463 |
|
|
input rst;
|
2464 |
|
|
input clk;
|
2465 |
|
|
parameter clear_value = 0;
|
2466 |
|
|
parameter set_value = 1;
|
2467 |
|
|
parameter wrap_value = 8;
|
2468 |
|
|
parameter level1_value = 15;
|
2469 |
|
|
reg [length:1] qi;
|
2470 |
|
|
wire [length:1] q_next;
|
2471 |
|
|
assign q_next = qi + {{length-1{1'b0}},1'b1};
|
2472 |
|
|
always @ (posedge clk or posedge rst)
|
2473 |
|
|
if (rst)
|
2474 |
|
|
qi <= {length{1'b0}};
|
2475 |
|
|
else
|
2476 |
|
|
if (cke)
|
2477 |
|
|
qi <= q_next;
|
2478 |
|
|
always @ (posedge clk or posedge rst)
|
2479 |
|
|
if (rst)
|
2480 |
|
|
q <= {length{1'b0}};
|
2481 |
|
|
else
|
2482 |
|
|
if (cke)
|
2483 |
|
|
q <= (q_next>>1) ^ q_next;
|
2484 |
|
|
endmodule
|
2485 |
|
|
//////////////////////////////////////////////////////////////////////
|
2486 |
|
|
//// ////
|
2487 |
|
|
//// Versatile counter ////
|
2488 |
|
|
//// ////
|
2489 |
|
|
//// Description ////
|
2490 |
|
|
//// Versatile counter, a reconfigurable binary, gray or LFSR ////
|
2491 |
|
|
//// counter ////
|
2492 |
|
|
//// ////
|
2493 |
|
|
//// To Do: ////
|
2494 |
|
|
//// - add LFSR with more taps ////
|
2495 |
|
|
//// ////
|
2496 |
|
|
//// Author(s): ////
|
2497 |
|
|
//// - Michael Unneback, unneback@opencores.org ////
|
2498 |
|
|
//// ORSoC AB ////
|
2499 |
|
|
//// ////
|
2500 |
|
|
//////////////////////////////////////////////////////////////////////
|
2501 |
|
|
//// ////
|
2502 |
|
|
//// Copyright (C) 2009 Authors and OPENCORES.ORG ////
|
2503 |
|
|
//// ////
|
2504 |
|
|
//// This source file may be used and distributed without ////
|
2505 |
|
|
//// restriction provided that this copyright statement is not ////
|
2506 |
|
|
//// removed from the file and that any derivative work contains ////
|
2507 |
|
|
//// the original copyright notice and the associated disclaimer. ////
|
2508 |
|
|
//// ////
|
2509 |
|
|
//// This source file is free software; you can redistribute it ////
|
2510 |
|
|
//// and/or modify it under the terms of the GNU Lesser General ////
|
2511 |
|
|
//// Public License as published by the Free Software Foundation; ////
|
2512 |
|
|
//// either version 2.1 of the License, or (at your option) any ////
|
2513 |
|
|
//// later version. ////
|
2514 |
|
|
//// ////
|
2515 |
|
|
//// This source is distributed in the hope that it will be ////
|
2516 |
|
|
//// useful, but WITHOUT ANY WARRANTY; without even the implied ////
|
2517 |
|
|
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR ////
|
2518 |
|
|
//// PURPOSE. See the GNU Lesser General Public License for more ////
|
2519 |
|
|
//// details. ////
|
2520 |
|
|
//// ////
|
2521 |
|
|
//// You should have received a copy of the GNU Lesser General ////
|
2522 |
|
|
//// Public License along with this source; if not, download it ////
|
2523 |
|
|
//// from http://www.opencores.org/lgpl.shtml ////
|
2524 |
|
|
//// ////
|
2525 |
|
|
//////////////////////////////////////////////////////////////////////
|
2526 |
|
|
// GRAY counter
|
2527 |
40 |
unneback |
module vl_cnt_gray_ce_bin (
|
2528 |
|
|
cke, q, q_bin, rst, clk);
|
2529 |
6 |
unneback |
parameter length = 4;
|
2530 |
|
|
input cke;
|
2531 |
|
|
output reg [length:1] q;
|
2532 |
|
|
output [length:1] q_bin;
|
2533 |
|
|
input rst;
|
2534 |
|
|
input clk;
|
2535 |
|
|
parameter clear_value = 0;
|
2536 |
|
|
parameter set_value = 1;
|
2537 |
|
|
parameter wrap_value = 8;
|
2538 |
|
|
parameter level1_value = 15;
|
2539 |
|
|
reg [length:1] qi;
|
2540 |
|
|
wire [length:1] q_next;
|
2541 |
|
|
assign q_next = qi + {{length-1{1'b0}},1'b1};
|
2542 |
|
|
always @ (posedge clk or posedge rst)
|
2543 |
|
|
if (rst)
|
2544 |
|
|
qi <= {length{1'b0}};
|
2545 |
|
|
else
|
2546 |
|
|
if (cke)
|
2547 |
|
|
qi <= q_next;
|
2548 |
|
|
always @ (posedge clk or posedge rst)
|
2549 |
|
|
if (rst)
|
2550 |
|
|
q <= {length{1'b0}};
|
2551 |
|
|
else
|
2552 |
|
|
if (cke)
|
2553 |
|
|
q <= (q_next>>1) ^ q_next;
|
2554 |
|
|
assign q_bin = qi;
|
2555 |
|
|
endmodule
|
2556 |
|
|
//////////////////////////////////////////////////////////////////////
|
2557 |
|
|
//// ////
|
2558 |
|
|
//// Versatile library, counters ////
|
2559 |
|
|
//// ////
|
2560 |
|
|
//// Description ////
|
2561 |
|
|
//// counters ////
|
2562 |
|
|
//// ////
|
2563 |
|
|
//// ////
|
2564 |
|
|
//// To Do: ////
|
2565 |
|
|
//// - add more counters ////
|
2566 |
|
|
//// ////
|
2567 |
|
|
//// Author(s): ////
|
2568 |
|
|
//// - Michael Unneback, unneback@opencores.org ////
|
2569 |
|
|
//// ORSoC AB ////
|
2570 |
|
|
//// ////
|
2571 |
|
|
//////////////////////////////////////////////////////////////////////
|
2572 |
|
|
//// ////
|
2573 |
|
|
//// Copyright (C) 2010 Authors and OPENCORES.ORG ////
|
2574 |
|
|
//// ////
|
2575 |
|
|
//// This source file may be used and distributed without ////
|
2576 |
|
|
//// restriction provided that this copyright statement is not ////
|
2577 |
|
|
//// removed from the file and that any derivative work contains ////
|
2578 |
|
|
//// the original copyright notice and the associated disclaimer. ////
|
2579 |
|
|
//// ////
|
2580 |
|
|
//// This source file is free software; you can redistribute it ////
|
2581 |
|
|
//// and/or modify it under the terms of the GNU Lesser General ////
|
2582 |
|
|
//// Public License as published by the Free Software Foundation; ////
|
2583 |
|
|
//// either version 2.1 of the License, or (at your option) any ////
|
2584 |
|
|
//// later version. ////
|
2585 |
|
|
//// ////
|
2586 |
|
|
//// This source is distributed in the hope that it will be ////
|
2587 |
|
|
//// useful, but WITHOUT ANY WARRANTY; without even the implied ////
|
2588 |
|
|
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR ////
|
2589 |
|
|
//// PURPOSE. See the GNU Lesser General Public License for more ////
|
2590 |
|
|
//// details. ////
|
2591 |
|
|
//// ////
|
2592 |
|
|
//// You should have received a copy of the GNU Lesser General ////
|
2593 |
|
|
//// Public License along with this source; if not, download it ////
|
2594 |
|
|
//// from http://www.opencores.org/lgpl.shtml ////
|
2595 |
|
|
//// ////
|
2596 |
|
|
//////////////////////////////////////////////////////////////////////
|
2597 |
18 |
unneback |
module vl_cnt_shreg_wrap ( q, rst, clk);
|
2598 |
6 |
unneback |
parameter length = 4;
|
2599 |
|
|
output reg [0:length-1] q;
|
2600 |
|
|
input rst;
|
2601 |
|
|
input clk;
|
2602 |
|
|
always @ (posedge clk or posedge rst)
|
2603 |
|
|
if (rst)
|
2604 |
|
|
q <= {1'b1,{length-1{1'b0}}};
|
2605 |
|
|
else
|
2606 |
|
|
q <= {q[length-1],q[0:length-2]};
|
2607 |
|
|
endmodule
|
2608 |
18 |
unneback |
module vl_cnt_shreg_ce_wrap ( cke, q, rst, clk);
|
2609 |
6 |
unneback |
parameter length = 4;
|
2610 |
|
|
input cke;
|
2611 |
|
|
output reg [0:length-1] q;
|
2612 |
|
|
input rst;
|
2613 |
|
|
input clk;
|
2614 |
|
|
always @ (posedge clk or posedge rst)
|
2615 |
|
|
if (rst)
|
2616 |
|
|
q <= {1'b1,{length-1{1'b0}}};
|
2617 |
|
|
else
|
2618 |
|
|
if (cke)
|
2619 |
|
|
q <= {q[length-1],q[0:length-2]};
|
2620 |
|
|
endmodule
|
2621 |
105 |
unneback |
module vl_cnt_shreg_clear ( clear, q, rst, clk);
|
2622 |
|
|
parameter length = 4;
|
2623 |
|
|
input clear;
|
2624 |
|
|
output reg [0:length-1] q;
|
2625 |
|
|
input rst;
|
2626 |
|
|
input clk;
|
2627 |
|
|
always @ (posedge clk or posedge rst)
|
2628 |
|
|
if (rst)
|
2629 |
|
|
q <= {1'b1,{length-1{1'b0}}};
|
2630 |
|
|
else
|
2631 |
|
|
if (clear)
|
2632 |
|
|
q <= {1'b1,{length-1{1'b0}}};
|
2633 |
|
|
else
|
2634 |
|
|
q <= q >> 1;
|
2635 |
|
|
endmodule
|
2636 |
18 |
unneback |
module vl_cnt_shreg_ce_clear ( cke, clear, q, rst, clk);
|
2637 |
6 |
unneback |
parameter length = 4;
|
2638 |
|
|
input cke, clear;
|
2639 |
|
|
output reg [0:length-1] q;
|
2640 |
|
|
input rst;
|
2641 |
|
|
input clk;
|
2642 |
|
|
always @ (posedge clk or posedge rst)
|
2643 |
|
|
if (rst)
|
2644 |
|
|
q <= {1'b1,{length-1{1'b0}}};
|
2645 |
|
|
else
|
2646 |
|
|
if (cke)
|
2647 |
|
|
if (clear)
|
2648 |
|
|
q <= {1'b1,{length-1{1'b0}}};
|
2649 |
|
|
else
|
2650 |
|
|
q <= q >> 1;
|
2651 |
|
|
endmodule
|
2652 |
18 |
unneback |
module vl_cnt_shreg_ce_clear_wrap ( cke, clear, q, rst, clk);
|
2653 |
6 |
unneback |
parameter length = 4;
|
2654 |
|
|
input cke, clear;
|
2655 |
|
|
output reg [0:length-1] q;
|
2656 |
|
|
input rst;
|
2657 |
|
|
input clk;
|
2658 |
|
|
always @ (posedge clk or posedge rst)
|
2659 |
|
|
if (rst)
|
2660 |
|
|
q <= {1'b1,{length-1{1'b0}}};
|
2661 |
|
|
else
|
2662 |
|
|
if (cke)
|
2663 |
|
|
if (clear)
|
2664 |
|
|
q <= {1'b1,{length-1{1'b0}}};
|
2665 |
|
|
else
|
2666 |
|
|
q <= {q[length-1],q[0:length-2]};
|
2667 |
|
|
endmodule
|
2668 |
|
|
//////////////////////////////////////////////////////////////////////
|
2669 |
|
|
//// ////
|
2670 |
|
|
//// Versatile library, memories ////
|
2671 |
|
|
//// ////
|
2672 |
|
|
//// Description ////
|
2673 |
|
|
//// memories ////
|
2674 |
|
|
//// ////
|
2675 |
|
|
//// ////
|
2676 |
|
|
//// To Do: ////
|
2677 |
|
|
//// - add more memory types ////
|
2678 |
|
|
//// ////
|
2679 |
|
|
//// Author(s): ////
|
2680 |
|
|
//// - Michael Unneback, unneback@opencores.org ////
|
2681 |
|
|
//// ORSoC AB ////
|
2682 |
|
|
//// ////
|
2683 |
|
|
//////////////////////////////////////////////////////////////////////
|
2684 |
|
|
//// ////
|
2685 |
|
|
//// Copyright (C) 2010 Authors and OPENCORES.ORG ////
|
2686 |
|
|
//// ////
|
2687 |
|
|
//// This source file may be used and distributed without ////
|
2688 |
|
|
//// restriction provided that this copyright statement is not ////
|
2689 |
|
|
//// removed from the file and that any derivative work contains ////
|
2690 |
|
|
//// the original copyright notice and the associated disclaimer. ////
|
2691 |
|
|
//// ////
|
2692 |
|
|
//// This source file is free software; you can redistribute it ////
|
2693 |
|
|
//// and/or modify it under the terms of the GNU Lesser General ////
|
2694 |
|
|
//// Public License as published by the Free Software Foundation; ////
|
2695 |
|
|
//// either version 2.1 of the License, or (at your option) any ////
|
2696 |
|
|
//// later version. ////
|
2697 |
|
|
//// ////
|
2698 |
|
|
//// This source is distributed in the hope that it will be ////
|
2699 |
|
|
//// useful, but WITHOUT ANY WARRANTY; without even the implied ////
|
2700 |
|
|
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR ////
|
2701 |
|
|
//// PURPOSE. See the GNU Lesser General Public License for more ////
|
2702 |
|
|
//// details. ////
|
2703 |
|
|
//// ////
|
2704 |
|
|
//// You should have received a copy of the GNU Lesser General ////
|
2705 |
|
|
//// Public License along with this source; if not, download it ////
|
2706 |
|
|
//// from http://www.opencores.org/lgpl.shtml ////
|
2707 |
|
|
//// ////
|
2708 |
|
|
//////////////////////////////////////////////////////////////////////
|
2709 |
|
|
/// ROM
|
2710 |
7 |
unneback |
module vl_rom_init ( adr, q, clk);
|
2711 |
|
|
parameter data_width = 32;
|
2712 |
|
|
parameter addr_width = 8;
|
2713 |
75 |
unneback |
parameter mem_size = 1<<addr_width;
|
2714 |
7 |
unneback |
input [(addr_width-1):0] adr;
|
2715 |
|
|
output reg [(data_width-1):0] q;
|
2716 |
|
|
input clk;
|
2717 |
75 |
unneback |
reg [data_width-1:0] rom [mem_size-1:0];
|
2718 |
7 |
unneback |
parameter memory_file = "vl_rom.vmem";
|
2719 |
|
|
initial
|
2720 |
|
|
begin
|
2721 |
|
|
$readmemh(memory_file, rom);
|
2722 |
|
|
end
|
2723 |
|
|
always @ (posedge clk)
|
2724 |
|
|
q <= rom[adr];
|
2725 |
|
|
endmodule
|
2726 |
6 |
unneback |
// Single port RAM
|
2727 |
|
|
module vl_ram ( d, adr, we, q, clk);
|
2728 |
|
|
parameter data_width = 32;
|
2729 |
|
|
parameter addr_width = 8;
|
2730 |
75 |
unneback |
parameter mem_size = 1<<addr_width;
|
2731 |
100 |
unneback |
parameter debug = 0;
|
2732 |
6 |
unneback |
input [(data_width-1):0] d;
|
2733 |
|
|
input [(addr_width-1):0] adr;
|
2734 |
|
|
input we;
|
2735 |
7 |
unneback |
output reg [(data_width-1):0] q;
|
2736 |
6 |
unneback |
input clk;
|
2737 |
98 |
unneback |
reg [data_width-1:0] ram [mem_size-1:0];
|
2738 |
100 |
unneback |
parameter memory_init = 0;
|
2739 |
|
|
parameter memory_file = "vl_ram.vmem";
|
2740 |
|
|
generate
|
2741 |
|
|
if (memory_init == 1) begin : init_mem
|
2742 |
|
|
initial
|
2743 |
|
|
$readmemh(memory_file, ram);
|
2744 |
|
|
end else if (memory_init == 2) begin : init_zero
|
2745 |
|
|
integer k;
|
2746 |
|
|
initial
|
2747 |
|
|
for (k = 0; k < mem_size; k = k + 1)
|
2748 |
|
|
ram[k] = 0;
|
2749 |
7 |
unneback |
end
|
2750 |
|
|
endgenerate
|
2751 |
100 |
unneback |
generate
|
2752 |
|
|
if (debug==1) begin : debug_we
|
2753 |
|
|
always @ (posedge clk)
|
2754 |
|
|
if (we)
|
2755 |
|
|
$display ("Value %h written at address %h : time %t", d, adr, $time);
|
2756 |
|
|
end
|
2757 |
|
|
endgenerate
|
2758 |
6 |
unneback |
always @ (posedge clk)
|
2759 |
|
|
begin
|
2760 |
|
|
if (we)
|
2761 |
|
|
ram[adr] <= d;
|
2762 |
|
|
q <= ram[adr];
|
2763 |
|
|
end
|
2764 |
|
|
endmodule
|
2765 |
91 |
unneback |
module vl_ram_be ( d, adr, be, we, q, clk);
|
2766 |
7 |
unneback |
parameter data_width = 32;
|
2767 |
72 |
unneback |
parameter addr_width = 6;
|
2768 |
75 |
unneback |
parameter mem_size = 1<<addr_width;
|
2769 |
7 |
unneback |
input [(data_width-1):0] d;
|
2770 |
|
|
input [(addr_width-1):0] adr;
|
2771 |
73 |
unneback |
input [(data_width/8)-1:0] be;
|
2772 |
7 |
unneback |
input we;
|
2773 |
|
|
output reg [(data_width-1):0] q;
|
2774 |
|
|
input clk;
|
2775 |
65 |
unneback |
`ifdef SYSTEMVERILOG
|
2776 |
95 |
unneback |
// use a multi-dimensional packed array
|
2777 |
|
|
//t o model individual bytes within the word
|
2778 |
|
|
logic [data_width/8-1:0][7:0] ram [0:mem_size-1];// # words = 1 << address width
|
2779 |
65 |
unneback |
`else
|
2780 |
85 |
unneback |
reg [data_width-1:0] ram [mem_size-1:0];
|
2781 |
|
|
wire [data_width/8-1:0] cke;
|
2782 |
65 |
unneback |
`endif
|
2783 |
100 |
unneback |
parameter memory_init = 0;
|
2784 |
|
|
parameter memory_file = "vl_ram.vmem";
|
2785 |
|
|
generate
|
2786 |
|
|
if (memory_init == 1) begin : init_mem
|
2787 |
|
|
initial
|
2788 |
|
|
$readmemh(memory_file, ram);
|
2789 |
|
|
end else if (memory_init == 2) begin : init_zero
|
2790 |
|
|
integer k;
|
2791 |
|
|
initial
|
2792 |
|
|
for (k = 0; k < mem_size; k = k + 1)
|
2793 |
|
|
ram[k] = 0;
|
2794 |
|
|
end
|
2795 |
7 |
unneback |
endgenerate
|
2796 |
60 |
unneback |
`ifdef SYSTEMVERILOG
|
2797 |
|
|
always_ff@(posedge clk)
|
2798 |
|
|
begin
|
2799 |
95 |
unneback |
if(we) begin
|
2800 |
86 |
unneback |
if(be[3]) ram[adr][3] <= d[31:24];
|
2801 |
|
|
if(be[2]) ram[adr][2] <= d[23:16];
|
2802 |
|
|
if(be[1]) ram[adr][1] <= d[15:8];
|
2803 |
|
|
if(be[0]) ram[adr][0] <= d[7:0];
|
2804 |
60 |
unneback |
end
|
2805 |
90 |
unneback |
q <= ram[adr];
|
2806 |
60 |
unneback |
end
|
2807 |
|
|
`else
|
2808 |
85 |
unneback |
assign cke = {data_width/8{we}} & be;
|
2809 |
7 |
unneback |
genvar i;
|
2810 |
85 |
unneback |
generate for (i=0;i<data_width/8;i=i+1) begin : be_ram
|
2811 |
7 |
unneback |
always @ (posedge clk)
|
2812 |
85 |
unneback |
if (cke[i])
|
2813 |
7 |
unneback |
ram[adr][(i+1)*8-1:i*8] <= d[(i+1)*8-1:i*8];
|
2814 |
|
|
end
|
2815 |
|
|
endgenerate
|
2816 |
|
|
always @ (posedge clk)
|
2817 |
|
|
q <= ram[adr];
|
2818 |
60 |
unneback |
`endif
|
2819 |
93 |
unneback |
`ifdef verilator
|
2820 |
85 |
unneback |
// Function to access RAM (for use by Verilator).
|
2821 |
|
|
function [31:0] get_mem;
|
2822 |
|
|
// verilator public
|
2823 |
90 |
unneback |
input [addr_width-1:0] addr;
|
2824 |
85 |
unneback |
get_mem = ram[addr];
|
2825 |
|
|
endfunction // get_mem
|
2826 |
|
|
// Function to write RAM (for use by Verilator).
|
2827 |
|
|
function set_mem;
|
2828 |
|
|
// verilator public
|
2829 |
90 |
unneback |
input [addr_width-1:0] addr;
|
2830 |
|
|
input [data_width-1:0] data;
|
2831 |
85 |
unneback |
ram[addr] = data;
|
2832 |
|
|
endfunction // set_mem
|
2833 |
93 |
unneback |
`endif
|
2834 |
7 |
unneback |
endmodule
|
2835 |
|
|
module vl_dpram_1r1w ( d_a, adr_a, we_a, clk_a, q_b, adr_b, clk_b );
|
2836 |
6 |
unneback |
parameter data_width = 32;
|
2837 |
|
|
parameter addr_width = 8;
|
2838 |
75 |
unneback |
parameter mem_size = 1<<addr_width;
|
2839 |
6 |
unneback |
input [(data_width-1):0] d_a;
|
2840 |
|
|
input [(addr_width-1):0] adr_a;
|
2841 |
|
|
input [(addr_width-1):0] adr_b;
|
2842 |
|
|
input we_a;
|
2843 |
118 |
unneback |
output reg [(data_width-1):0] q_b;
|
2844 |
6 |
unneback |
input clk_a, clk_b;
|
2845 |
119 |
unneback |
reg [data_width-1:0] ram [0:mem_size-1] ;
|
2846 |
100 |
unneback |
parameter memory_init = 0;
|
2847 |
|
|
parameter memory_file = "vl_ram.vmem";
|
2848 |
|
|
parameter debug = 0;
|
2849 |
|
|
generate
|
2850 |
|
|
if (memory_init == 1) begin : init_mem
|
2851 |
|
|
initial
|
2852 |
|
|
$readmemh(memory_file, ram);
|
2853 |
|
|
end else if (memory_init == 2) begin : init_zero
|
2854 |
|
|
integer k;
|
2855 |
|
|
initial
|
2856 |
|
|
for (k = 0; k < mem_size; k = k + 1)
|
2857 |
|
|
ram[k] = 0;
|
2858 |
|
|
end
|
2859 |
7 |
unneback |
endgenerate
|
2860 |
100 |
unneback |
generate
|
2861 |
|
|
if (debug==1) begin : debug_we
|
2862 |
|
|
always @ (posedge clk_a)
|
2863 |
|
|
if (we_a)
|
2864 |
|
|
$display ("Debug: Value %h written at address %h : time %t", d_a, adr_a, $time);
|
2865 |
|
|
end
|
2866 |
|
|
endgenerate
|
2867 |
6 |
unneback |
always @ (posedge clk_a)
|
2868 |
|
|
if (we_a)
|
2869 |
|
|
ram[adr_a] <= d_a;
|
2870 |
|
|
always @ (posedge clk_b)
|
2871 |
118 |
unneback |
q_b = ram[adr_b];
|
2872 |
6 |
unneback |
endmodule
|
2873 |
7 |
unneback |
module vl_dpram_2r1w ( d_a, q_a, adr_a, we_a, clk_a, q_b, adr_b, clk_b );
|
2874 |
6 |
unneback |
parameter data_width = 32;
|
2875 |
|
|
parameter addr_width = 8;
|
2876 |
75 |
unneback |
parameter mem_size = 1<<addr_width;
|
2877 |
6 |
unneback |
input [(data_width-1):0] d_a;
|
2878 |
|
|
input [(addr_width-1):0] adr_a;
|
2879 |
|
|
input [(addr_width-1):0] adr_b;
|
2880 |
|
|
input we_a;
|
2881 |
|
|
output [(data_width-1):0] q_b;
|
2882 |
|
|
output reg [(data_width-1):0] q_a;
|
2883 |
|
|
input clk_a, clk_b;
|
2884 |
|
|
reg [(data_width-1):0] q_b;
|
2885 |
119 |
unneback |
reg [data_width-1:0] ram [0:mem_size-1] ;
|
2886 |
100 |
unneback |
parameter memory_init = 0;
|
2887 |
|
|
parameter memory_file = "vl_ram.vmem";
|
2888 |
|
|
parameter debug = 0;
|
2889 |
|
|
generate
|
2890 |
|
|
if (memory_init == 1) begin : init_mem
|
2891 |
|
|
initial
|
2892 |
|
|
$readmemh(memory_file, ram);
|
2893 |
|
|
end else if (memory_init == 2) begin : init_zero
|
2894 |
|
|
integer k;
|
2895 |
|
|
initial
|
2896 |
|
|
for (k = 0; k < mem_size; k = k + 1)
|
2897 |
|
|
ram[k] = 0;
|
2898 |
|
|
end
|
2899 |
7 |
unneback |
endgenerate
|
2900 |
100 |
unneback |
generate
|
2901 |
|
|
if (debug==1) begin : debug_we
|
2902 |
|
|
always @ (posedge clk_a)
|
2903 |
|
|
if (we_a)
|
2904 |
|
|
$display ("Debug: Value %h written at address %h : time %t", d_a, adr_a, $time);
|
2905 |
|
|
end
|
2906 |
|
|
endgenerate
|
2907 |
6 |
unneback |
always @ (posedge clk_a)
|
2908 |
|
|
begin
|
2909 |
|
|
q_a <= ram[adr_a];
|
2910 |
|
|
if (we_a)
|
2911 |
|
|
ram[adr_a] <= d_a;
|
2912 |
|
|
end
|
2913 |
|
|
always @ (posedge clk_b)
|
2914 |
|
|
q_b <= ram[adr_b];
|
2915 |
|
|
endmodule
|
2916 |
100 |
unneback |
module vl_dpram_1r2w ( d_a, q_a, adr_a, we_a, clk_a, d_b, adr_b, we_b, clk_b );
|
2917 |
|
|
parameter data_width = 32;
|
2918 |
|
|
parameter addr_width = 8;
|
2919 |
|
|
parameter mem_size = 1<<addr_width;
|
2920 |
|
|
input [(data_width-1):0] d_a;
|
2921 |
|
|
input [(addr_width-1):0] adr_a;
|
2922 |
|
|
input [(addr_width-1):0] adr_b;
|
2923 |
|
|
input we_a;
|
2924 |
|
|
input [(data_width-1):0] d_b;
|
2925 |
|
|
output reg [(data_width-1):0] q_a;
|
2926 |
|
|
input we_b;
|
2927 |
|
|
input clk_a, clk_b;
|
2928 |
|
|
reg [(data_width-1):0] q_b;
|
2929 |
119 |
unneback |
reg [data_width-1:0] ram [0:mem_size-1] ;
|
2930 |
100 |
unneback |
parameter memory_init = 0;
|
2931 |
|
|
parameter memory_file = "vl_ram.vmem";
|
2932 |
|
|
parameter debug = 0;
|
2933 |
|
|
generate
|
2934 |
|
|
if (memory_init == 1) begin : init_mem
|
2935 |
|
|
initial
|
2936 |
|
|
$readmemh(memory_file, ram);
|
2937 |
|
|
end else if (memory_init == 2) begin : init_zero
|
2938 |
|
|
integer k;
|
2939 |
|
|
initial
|
2940 |
|
|
for (k = 0; k < mem_size; k = k + 1)
|
2941 |
|
|
ram[k] = 0;
|
2942 |
|
|
end
|
2943 |
|
|
endgenerate
|
2944 |
|
|
generate
|
2945 |
|
|
if (debug==1) begin : debug_we
|
2946 |
|
|
always @ (posedge clk_a)
|
2947 |
|
|
if (we_a)
|
2948 |
|
|
$display ("Debug: Value %h written at address %h : time %t", d_a, adr_a, $time);
|
2949 |
|
|
always @ (posedge clk_b)
|
2950 |
|
|
if (we_b)
|
2951 |
|
|
$display ("Debug: Value %h written at address %h : time %t", d_b, adr_b, $time);
|
2952 |
|
|
end
|
2953 |
|
|
endgenerate
|
2954 |
|
|
always @ (posedge clk_a)
|
2955 |
|
|
begin
|
2956 |
|
|
q_a <= ram[adr_a];
|
2957 |
|
|
if (we_a)
|
2958 |
|
|
ram[adr_a] <= d_a;
|
2959 |
|
|
end
|
2960 |
|
|
always @ (posedge clk_b)
|
2961 |
|
|
begin
|
2962 |
|
|
if (we_b)
|
2963 |
|
|
ram[adr_b] <= d_b;
|
2964 |
|
|
end
|
2965 |
|
|
endmodule
|
2966 |
7 |
unneback |
module vl_dpram_2r2w ( d_a, q_a, adr_a, we_a, clk_a, d_b, q_b, adr_b, we_b, clk_b );
|
2967 |
6 |
unneback |
parameter data_width = 32;
|
2968 |
|
|
parameter addr_width = 8;
|
2969 |
75 |
unneback |
parameter mem_size = 1<<addr_width;
|
2970 |
6 |
unneback |
input [(data_width-1):0] d_a;
|
2971 |
|
|
input [(addr_width-1):0] adr_a;
|
2972 |
|
|
input [(addr_width-1):0] adr_b;
|
2973 |
|
|
input we_a;
|
2974 |
|
|
output [(data_width-1):0] q_b;
|
2975 |
|
|
input [(data_width-1):0] d_b;
|
2976 |
|
|
output reg [(data_width-1):0] q_a;
|
2977 |
|
|
input we_b;
|
2978 |
|
|
input clk_a, clk_b;
|
2979 |
|
|
reg [(data_width-1):0] q_b;
|
2980 |
119 |
unneback |
reg [data_width-1:0] ram [0:mem_size-1] ;
|
2981 |
100 |
unneback |
parameter memory_init = 0;
|
2982 |
|
|
parameter memory_file = "vl_ram.vmem";
|
2983 |
|
|
parameter debug = 0;
|
2984 |
|
|
generate
|
2985 |
|
|
if (memory_init) begin : init_mem
|
2986 |
|
|
initial
|
2987 |
|
|
$readmemh(memory_file, ram);
|
2988 |
|
|
end else if (memory_init == 2) begin : init_zero
|
2989 |
|
|
integer k;
|
2990 |
|
|
initial
|
2991 |
|
|
for (k = 0; k < mem_size; k = k + 1)
|
2992 |
|
|
ram[k] = 0;
|
2993 |
|
|
end
|
2994 |
7 |
unneback |
endgenerate
|
2995 |
100 |
unneback |
generate
|
2996 |
|
|
if (debug==1) begin : debug_we
|
2997 |
|
|
always @ (posedge clk_a)
|
2998 |
|
|
if (we_a)
|
2999 |
|
|
$display ("Debug: Value %h written at address %h : time %t", d_a, adr_a, $time);
|
3000 |
|
|
always @ (posedge clk_b)
|
3001 |
|
|
if (we_b)
|
3002 |
|
|
$display ("Debug: Value %h written at address %h : time %t", d_b, adr_b, $time);
|
3003 |
|
|
end
|
3004 |
|
|
endgenerate
|
3005 |
6 |
unneback |
always @ (posedge clk_a)
|
3006 |
|
|
begin
|
3007 |
|
|
q_a <= ram[adr_a];
|
3008 |
|
|
if (we_a)
|
3009 |
|
|
ram[adr_a] <= d_a;
|
3010 |
|
|
end
|
3011 |
|
|
always @ (posedge clk_b)
|
3012 |
|
|
begin
|
3013 |
|
|
q_b <= ram[adr_b];
|
3014 |
|
|
if (we_b)
|
3015 |
|
|
ram[adr_b] <= d_b;
|
3016 |
|
|
end
|
3017 |
|
|
endmodule
|
3018 |
92 |
unneback |
module vl_dpram_be_2r2w ( d_a, q_a, adr_a, be_a, we_a, clk_a, d_b, q_b, adr_b, be_b, we_b, clk_b );
|
3019 |
75 |
unneback |
parameter a_data_width = 32;
|
3020 |
|
|
parameter a_addr_width = 8;
|
3021 |
95 |
unneback |
parameter b_data_width = 64; //a_data_width;
|
3022 |
124 |
unneback |
//localparam b_addr_width = a_data_width * a_addr_width / b_data_width;
|
3023 |
|
|
localparam b_addr_width =
|
3024 |
125 |
unneback |
(a_data_width==b_data_width) ? a_addr_width :
|
3025 |
|
|
(a_data_width==b_data_width*2) ? a_addr_width+1 :
|
3026 |
|
|
(a_data_width==b_data_width*4) ? a_addr_width+2 :
|
3027 |
|
|
(a_data_width==b_data_width*8) ? a_addr_width+3 :
|
3028 |
|
|
(a_data_width==b_data_width*16) ? a_addr_width+4 :
|
3029 |
|
|
(a_data_width==b_data_width*32) ? a_addr_width+5 :
|
3030 |
|
|
(a_data_width==b_data_width/2) ? a_addr_width-1 :
|
3031 |
|
|
(a_data_width==b_data_width/4) ? a_addr_width-2 :
|
3032 |
|
|
(a_data_width==b_data_width/8) ? a_addr_width-3 :
|
3033 |
|
|
(a_data_width==b_data_width/16) ? a_addr_width-4 :
|
3034 |
|
|
(a_data_width==b_data_width/32) ? a_addr_width-5 : 0;
|
3035 |
95 |
unneback |
localparam ratio = (a_addr_width>b_addr_width) ? (a_addr_width/b_addr_width) : (b_addr_width/a_addr_width);
|
3036 |
|
|
parameter mem_size = (a_addr_width>b_addr_width) ? (1<<b_addr_width) : (1<<a_addr_width);
|
3037 |
100 |
unneback |
parameter memory_init = 0;
|
3038 |
95 |
unneback |
parameter memory_file = "vl_ram.vmem";
|
3039 |
100 |
unneback |
parameter debug = 0;
|
3040 |
75 |
unneback |
input [(a_data_width-1):0] d_a;
|
3041 |
91 |
unneback |
input [(a_addr_width-1):0] adr_a;
|
3042 |
|
|
input [(a_data_width/8-1):0] be_a;
|
3043 |
|
|
input we_a;
|
3044 |
75 |
unneback |
output reg [(a_data_width-1):0] q_a;
|
3045 |
91 |
unneback |
input [(b_data_width-1):0] d_b;
|
3046 |
|
|
input [(b_addr_width-1):0] adr_b;
|
3047 |
92 |
unneback |
input [(b_data_width/8-1):0] be_b;
|
3048 |
|
|
input we_b;
|
3049 |
|
|
output reg [(b_data_width-1):0] q_b;
|
3050 |
91 |
unneback |
input clk_a, clk_b;
|
3051 |
100 |
unneback |
generate
|
3052 |
|
|
if (debug==1) begin : debug_we
|
3053 |
|
|
always @ (posedge clk_a)
|
3054 |
|
|
if (we_a)
|
3055 |
141 |
unneback |
$display ("Debug: Value %h written on port A at address %h : time %t", d_a, adr_a, $time);
|
3056 |
100 |
unneback |
always @ (posedge clk_b)
|
3057 |
|
|
if (we_b)
|
3058 |
141 |
unneback |
$display ("Debug: Value %h written on port B at address %h : time %t", d_b, adr_b, $time);
|
3059 |
100 |
unneback |
end
|
3060 |
|
|
endgenerate
|
3061 |
91 |
unneback |
`ifdef SYSTEMVERILOG
|
3062 |
|
|
// use a multi-dimensional packed array
|
3063 |
|
|
//to model individual bytes within the word
|
3064 |
75 |
unneback |
generate
|
3065 |
91 |
unneback |
if (a_data_width==32 & b_data_width==32) begin : dpram_3232
|
3066 |
98 |
unneback |
logic [0:3][7:0] ram [0:mem_size-1] ;
|
3067 |
95 |
unneback |
initial
|
3068 |
100 |
unneback |
if (memory_init==1)
|
3069 |
95 |
unneback |
$readmemh(memory_file, ram);
|
3070 |
100 |
unneback |
integer k;
|
3071 |
|
|
initial
|
3072 |
|
|
if (memory_init==2)
|
3073 |
|
|
for (k = 0; k < mem_size; k = k + 1)
|
3074 |
|
|
ram[k] = 0;
|
3075 |
91 |
unneback |
always_ff@(posedge clk_a)
|
3076 |
|
|
begin
|
3077 |
|
|
if(we_a) begin
|
3078 |
100 |
unneback |
if(be_a[3]) ram[adr_a][0] <= d_a[31:24];
|
3079 |
|
|
if(be_a[2]) ram[adr_a][1] <= d_a[23:16];
|
3080 |
|
|
if(be_a[1]) ram[adr_a][2] <= d_a[15:8];
|
3081 |
|
|
if(be_a[0]) ram[adr_a][3] <= d_a[7:0];
|
3082 |
91 |
unneback |
end
|
3083 |
|
|
end
|
3084 |
92 |
unneback |
always@(posedge clk_a)
|
3085 |
|
|
q_a = ram[adr_a];
|
3086 |
91 |
unneback |
always_ff@(posedge clk_b)
|
3087 |
92 |
unneback |
begin
|
3088 |
|
|
if(we_b) begin
|
3089 |
100 |
unneback |
if(be_b[3]) ram[adr_b][0] <= d_b[31:24];
|
3090 |
|
|
if(be_b[2]) ram[adr_b][1] <= d_b[23:16];
|
3091 |
|
|
if(be_b[1]) ram[adr_b][2] <= d_b[15:8];
|
3092 |
|
|
if(be_b[0]) ram[adr_b][3] <= d_b[7:0];
|
3093 |
92 |
unneback |
end
|
3094 |
|
|
end
|
3095 |
|
|
always@(posedge clk_b)
|
3096 |
|
|
q_b = ram[adr_b];
|
3097 |
75 |
unneback |
end
|
3098 |
|
|
endgenerate
|
3099 |
95 |
unneback |
generate
|
3100 |
|
|
if (a_data_width==64 & b_data_width==64) begin : dpram_6464
|
3101 |
98 |
unneback |
logic [0:7][7:0] ram [0:mem_size-1] ;
|
3102 |
95 |
unneback |
initial
|
3103 |
100 |
unneback |
if (memory_init==1)
|
3104 |
95 |
unneback |
$readmemh(memory_file, ram);
|
3105 |
100 |
unneback |
integer k;
|
3106 |
|
|
initial
|
3107 |
|
|
if (memory_init==2)
|
3108 |
|
|
for (k = 0; k < mem_size; k = k + 1)
|
3109 |
|
|
ram[k] = 0;
|
3110 |
95 |
unneback |
always_ff@(posedge clk_a)
|
3111 |
|
|
begin
|
3112 |
|
|
if(we_a) begin
|
3113 |
|
|
if(be_a[7]) ram[adr_a][7] <= d_a[63:56];
|
3114 |
|
|
if(be_a[6]) ram[adr_a][6] <= d_a[55:48];
|
3115 |
|
|
if(be_a[5]) ram[adr_a][5] <= d_a[47:40];
|
3116 |
|
|
if(be_a[4]) ram[adr_a][4] <= d_a[39:32];
|
3117 |
|
|
if(be_a[3]) ram[adr_a][3] <= d_a[31:24];
|
3118 |
|
|
if(be_a[2]) ram[adr_a][2] <= d_a[23:16];
|
3119 |
|
|
if(be_a[1]) ram[adr_a][1] <= d_a[15:8];
|
3120 |
|
|
if(be_a[0]) ram[adr_a][0] <= d_a[7:0];
|
3121 |
|
|
end
|
3122 |
|
|
end
|
3123 |
|
|
always@(posedge clk_a)
|
3124 |
|
|
q_a = ram[adr_a];
|
3125 |
|
|
always_ff@(posedge clk_b)
|
3126 |
|
|
begin
|
3127 |
|
|
if(we_b) begin
|
3128 |
|
|
if(be_b[7]) ram[adr_b][7] <= d_b[63:56];
|
3129 |
|
|
if(be_b[6]) ram[adr_b][6] <= d_b[55:48];
|
3130 |
|
|
if(be_b[5]) ram[adr_b][5] <= d_b[47:40];
|
3131 |
|
|
if(be_b[4]) ram[adr_b][4] <= d_b[39:32];
|
3132 |
|
|
if(be_b[3]) ram[adr_b][3] <= d_b[31:24];
|
3133 |
|
|
if(be_b[2]) ram[adr_b][2] <= d_b[23:16];
|
3134 |
|
|
if(be_b[1]) ram[adr_b][1] <= d_b[15:8];
|
3135 |
|
|
if(be_b[0]) ram[adr_b][0] <= d_b[7:0];
|
3136 |
|
|
end
|
3137 |
|
|
end
|
3138 |
|
|
always@(posedge clk_b)
|
3139 |
|
|
q_b = ram[adr_b];
|
3140 |
|
|
end
|
3141 |
|
|
endgenerate
|
3142 |
|
|
generate
|
3143 |
|
|
if (a_data_width==32 & b_data_width==16) begin : dpram_3216
|
3144 |
|
|
logic [31:0] temp;
|
3145 |
128 |
unneback |
vl_dpram_be_2r2w # (.a_data_width(32), .b_data_width(32), .a_addr_width(a_addr_width), .mem_size(mem_size), .memory_init(memory_init), .memory_file(memory_file))
|
3146 |
|
|
dpram3232 (
|
3147 |
95 |
unneback |
.d_a(d_a),
|
3148 |
|
|
.q_a(q_a),
|
3149 |
|
|
.adr_a(adr_a),
|
3150 |
|
|
.be_a(be_a),
|
3151 |
|
|
.we_a(we_a),
|
3152 |
|
|
.clk_a(clk_a),
|
3153 |
|
|
.d_b({d_b,d_b}),
|
3154 |
|
|
.q_b(temp),
|
3155 |
128 |
unneback |
.adr_b(adr_b[b_addr_width-1:1]),
|
3156 |
137 |
unneback |
.be_b({be_b,be_b} & {{2{!adr_b[0]}},{2{adr_b[0]}}}),
|
3157 |
95 |
unneback |
.we_b(we_b),
|
3158 |
|
|
.clk_b(clk_b)
|
3159 |
|
|
);
|
3160 |
100 |
unneback |
always @ (adr_b[0] or temp)
|
3161 |
95 |
unneback |
if (adr_b[0])
|
3162 |
|
|
q_b = temp[31:16];
|
3163 |
|
|
else
|
3164 |
|
|
q_b = temp[15:0];
|
3165 |
|
|
end
|
3166 |
|
|
endgenerate
|
3167 |
|
|
generate
|
3168 |
|
|
if (a_data_width==32 & b_data_width==64) begin : dpram_3264
|
3169 |
|
|
logic [63:0] temp;
|
3170 |
128 |
unneback |
vl_dpram_be_2r2w # (.a_data_width(32), .b_data_width(64), .a_addr_width(a_addr_width), .mem_size(mem_size), .memory_init(memory_init), .memory_file(memory_file))
|
3171 |
95 |
unneback |
dpram6464 (
|
3172 |
|
|
.d_a({d_a,d_a}),
|
3173 |
|
|
.q_a(temp),
|
3174 |
|
|
.adr_a(adr_a[a_addr_width-1:1]),
|
3175 |
|
|
.be_a({be_a,be_a} & {{4{adr_a[0]}},{4{!adr_a[0]}}}),
|
3176 |
|
|
.we_a(we_a),
|
3177 |
|
|
.clk_a(clk_a),
|
3178 |
|
|
.d_b(d_b),
|
3179 |
|
|
.q_b(q_b),
|
3180 |
|
|
.adr_b(adr_b),
|
3181 |
|
|
.be_b(be_b),
|
3182 |
|
|
.we_b(we_b),
|
3183 |
|
|
.clk_b(clk_b)
|
3184 |
|
|
);
|
3185 |
100 |
unneback |
always @ (adr_a[0] or temp)
|
3186 |
95 |
unneback |
if (adr_a[0])
|
3187 |
|
|
q_a = temp[63:32];
|
3188 |
|
|
else
|
3189 |
|
|
q_a = temp[31:0];
|
3190 |
|
|
end
|
3191 |
|
|
endgenerate
|
3192 |
91 |
unneback |
`else
|
3193 |
92 |
unneback |
// This modules requires SystemVerilog
|
3194 |
98 |
unneback |
// at this point anyway
|
3195 |
91 |
unneback |
`endif
|
3196 |
75 |
unneback |
endmodule
|
3197 |
6 |
unneback |
// FIFO
|
3198 |
25 |
unneback |
module vl_fifo_1r1w_fill_level_sync (
|
3199 |
|
|
d, wr, fifo_full,
|
3200 |
|
|
q, rd, fifo_empty,
|
3201 |
|
|
fill_level,
|
3202 |
|
|
clk, rst
|
3203 |
|
|
);
|
3204 |
|
|
parameter data_width = 18;
|
3205 |
|
|
parameter addr_width = 4;
|
3206 |
|
|
// write side
|
3207 |
|
|
input [data_width-1:0] d;
|
3208 |
|
|
input wr;
|
3209 |
|
|
output fifo_full;
|
3210 |
|
|
// read side
|
3211 |
|
|
output [data_width-1:0] q;
|
3212 |
|
|
input rd;
|
3213 |
|
|
output fifo_empty;
|
3214 |
|
|
// common
|
3215 |
|
|
output [addr_width:0] fill_level;
|
3216 |
|
|
input rst, clk;
|
3217 |
|
|
wire [addr_width:1] wadr, radr;
|
3218 |
|
|
vl_cnt_bin_ce
|
3219 |
|
|
# ( .length(addr_width))
|
3220 |
|
|
fifo_wr_adr( .cke(wr), .q(wadr), .rst(rst), .clk(clk));
|
3221 |
|
|
vl_cnt_bin_ce
|
3222 |
|
|
# (.length(addr_width))
|
3223 |
|
|
fifo_rd_adr( .cke(rd), .q(radr), .rst(rst), .clk(clk));
|
3224 |
|
|
vl_dpram_1r1w
|
3225 |
|
|
# (.data_width(data_width), .addr_width(addr_width))
|
3226 |
|
|
dpram ( .d_a(d), .adr_a(wadr), .we_a(wr), .clk_a(clk), .q_b(q), .adr_b(radr), .clk_b(clk));
|
3227 |
31 |
unneback |
vl_cnt_bin_ce_rew_q_zq_l1
|
3228 |
27 |
unneback |
# (.length(addr_width+1), .level1_value(1<<addr_width))
|
3229 |
25 |
unneback |
fill_level_cnt( .cke(rd ^ wr), .rew(rd), .q(fill_level), .zq(fifo_empty), .level1(fifo_full), .rst(rst), .clk(clk));
|
3230 |
|
|
endmodule
|
3231 |
27 |
unneback |
// Intended use is two small FIFOs (RX and TX typically) in one FPGA RAM resource
|
3232 |
|
|
// RAM is supposed to be larger than the two FIFOs
|
3233 |
|
|
// LFSR counters used adr pointers
|
3234 |
|
|
module vl_fifo_2r2w_sync_simplex (
|
3235 |
|
|
// a side
|
3236 |
|
|
a_d, a_wr, a_fifo_full,
|
3237 |
|
|
a_q, a_rd, a_fifo_empty,
|
3238 |
|
|
a_fill_level,
|
3239 |
|
|
// b side
|
3240 |
|
|
b_d, b_wr, b_fifo_full,
|
3241 |
|
|
b_q, b_rd, b_fifo_empty,
|
3242 |
|
|
b_fill_level,
|
3243 |
|
|
// common
|
3244 |
|
|
clk, rst
|
3245 |
|
|
);
|
3246 |
|
|
parameter data_width = 8;
|
3247 |
|
|
parameter addr_width = 5;
|
3248 |
|
|
parameter fifo_full_level = (1<<addr_width)-1;
|
3249 |
|
|
// a side
|
3250 |
|
|
input [data_width-1:0] a_d;
|
3251 |
|
|
input a_wr;
|
3252 |
|
|
output a_fifo_full;
|
3253 |
|
|
output [data_width-1:0] a_q;
|
3254 |
|
|
input a_rd;
|
3255 |
|
|
output a_fifo_empty;
|
3256 |
|
|
output [addr_width-1:0] a_fill_level;
|
3257 |
|
|
// b side
|
3258 |
|
|
input [data_width-1:0] b_d;
|
3259 |
|
|
input b_wr;
|
3260 |
|
|
output b_fifo_full;
|
3261 |
|
|
output [data_width-1:0] b_q;
|
3262 |
|
|
input b_rd;
|
3263 |
|
|
output b_fifo_empty;
|
3264 |
|
|
output [addr_width-1:0] b_fill_level;
|
3265 |
|
|
input clk;
|
3266 |
|
|
input rst;
|
3267 |
|
|
// adr_gen
|
3268 |
|
|
wire [addr_width:1] a_wadr, a_radr;
|
3269 |
|
|
wire [addr_width:1] b_wadr, b_radr;
|
3270 |
|
|
// dpram
|
3271 |
|
|
wire [addr_width:0] a_dpram_adr, b_dpram_adr;
|
3272 |
|
|
vl_cnt_lfsr_ce
|
3273 |
|
|
# ( .length(addr_width))
|
3274 |
|
|
fifo_a_wr_adr( .cke(a_wr), .q(a_wadr), .rst(rst), .clk(clk));
|
3275 |
|
|
vl_cnt_lfsr_ce
|
3276 |
|
|
# (.length(addr_width))
|
3277 |
|
|
fifo_a_rd_adr( .cke(a_rd), .q(a_radr), .rst(rst), .clk(clk));
|
3278 |
|
|
vl_cnt_lfsr_ce
|
3279 |
|
|
# ( .length(addr_width))
|
3280 |
|
|
fifo_b_wr_adr( .cke(b_wr), .q(b_wadr), .rst(rst), .clk(clk));
|
3281 |
|
|
vl_cnt_lfsr_ce
|
3282 |
|
|
# (.length(addr_width))
|
3283 |
|
|
fifo_b_rd_adr( .cke(b_rd), .q(b_radr), .rst(rst), .clk(clk));
|
3284 |
|
|
// mux read or write adr to DPRAM
|
3285 |
|
|
assign a_dpram_adr = (a_wr) ? {1'b0,a_wadr} : {1'b1,a_radr};
|
3286 |
|
|
assign b_dpram_adr = (b_wr) ? {1'b1,b_wadr} : {1'b0,b_radr};
|
3287 |
|
|
vl_dpram_2r2w
|
3288 |
|
|
# (.data_width(data_width), .addr_width(addr_width+1))
|
3289 |
|
|
dpram ( .d_a(a_d), .q_a(a_q), .adr_a(a_dpram_adr), .we_a(a_wr), .clk_a(a_clk),
|
3290 |
|
|
.d_b(b_d), .q_b(b_q), .adr_b(b_dpram_adr), .we_b(b_wr), .clk_b(b_clk));
|
3291 |
|
|
vl_cnt_bin_ce_rew_zq_l1
|
3292 |
28 |
unneback |
# (.length(addr_width), .level1_value(fifo_full_level))
|
3293 |
27 |
unneback |
a_fill_level_cnt( .cke(a_rd ^ a_wr), .rew(a_rd), .q(a_fill_level), .zq(a_fifo_empty), .level1(a_fifo_full), .rst(rst), .clk(clk));
|
3294 |
|
|
vl_cnt_bin_ce_rew_zq_l1
|
3295 |
28 |
unneback |
# (.length(addr_width), .level1_value(fifo_full_level))
|
3296 |
27 |
unneback |
b_fill_level_cnt( .cke(b_rd ^ b_wr), .rew(b_rd), .q(b_fill_level), .zq(b_fifo_empty), .level1(b_fifo_full), .rst(rst), .clk(clk));
|
3297 |
|
|
endmodule
|
3298 |
6 |
unneback |
module vl_fifo_cmp_async ( wptr, rptr, fifo_empty, fifo_full, wclk, rclk, rst );
|
3299 |
11 |
unneback |
parameter addr_width = 4;
|
3300 |
|
|
parameter N = addr_width-1;
|
3301 |
6 |
unneback |
parameter Q1 = 2'b00;
|
3302 |
|
|
parameter Q2 = 2'b01;
|
3303 |
|
|
parameter Q3 = 2'b11;
|
3304 |
|
|
parameter Q4 = 2'b10;
|
3305 |
|
|
parameter going_empty = 1'b0;
|
3306 |
|
|
parameter going_full = 1'b1;
|
3307 |
|
|
input [N:0] wptr, rptr;
|
3308 |
14 |
unneback |
output fifo_empty;
|
3309 |
6 |
unneback |
output fifo_full;
|
3310 |
|
|
input wclk, rclk, rst;
|
3311 |
|
|
wire direction;
|
3312 |
|
|
reg direction_set, direction_clr;
|
3313 |
|
|
wire async_empty, async_full;
|
3314 |
|
|
wire fifo_full2;
|
3315 |
14 |
unneback |
wire fifo_empty2;
|
3316 |
6 |
unneback |
// direction_set
|
3317 |
|
|
always @ (wptr[N:N-1] or rptr[N:N-1])
|
3318 |
|
|
case ({wptr[N:N-1],rptr[N:N-1]})
|
3319 |
|
|
{Q1,Q2} : direction_set <= 1'b1;
|
3320 |
|
|
{Q2,Q3} : direction_set <= 1'b1;
|
3321 |
|
|
{Q3,Q4} : direction_set <= 1'b1;
|
3322 |
|
|
{Q4,Q1} : direction_set <= 1'b1;
|
3323 |
|
|
default : direction_set <= 1'b0;
|
3324 |
|
|
endcase
|
3325 |
|
|
// direction_clear
|
3326 |
|
|
always @ (wptr[N:N-1] or rptr[N:N-1] or rst)
|
3327 |
|
|
if (rst)
|
3328 |
|
|
direction_clr <= 1'b1;
|
3329 |
|
|
else
|
3330 |
|
|
case ({wptr[N:N-1],rptr[N:N-1]})
|
3331 |
|
|
{Q2,Q1} : direction_clr <= 1'b1;
|
3332 |
|
|
{Q3,Q2} : direction_clr <= 1'b1;
|
3333 |
|
|
{Q4,Q3} : direction_clr <= 1'b1;
|
3334 |
|
|
{Q1,Q4} : direction_clr <= 1'b1;
|
3335 |
|
|
default : direction_clr <= 1'b0;
|
3336 |
|
|
endcase
|
3337 |
18 |
unneback |
vl_dff_sr dff_sr_dir( .aclr(direction_clr), .aset(direction_set), .clock(1'b1), .data(1'b1), .q(direction));
|
3338 |
6 |
unneback |
assign async_empty = (wptr == rptr) && (direction==going_empty);
|
3339 |
|
|
assign async_full = (wptr == rptr) && (direction==going_full);
|
3340 |
18 |
unneback |
vl_dff_sr dff_sr_empty0( .aclr(rst), .aset(async_full), .clock(wclk), .data(async_full), .q(fifo_full2));
|
3341 |
|
|
vl_dff_sr dff_sr_empty1( .aclr(rst), .aset(async_full), .clock(wclk), .data(fifo_full2), .q(fifo_full));
|
3342 |
6 |
unneback |
/*
|
3343 |
|
|
always @ (posedge wclk or posedge rst or posedge async_full)
|
3344 |
|
|
if (rst)
|
3345 |
|
|
{fifo_full, fifo_full2} <= 2'b00;
|
3346 |
|
|
else if (async_full)
|
3347 |
|
|
{fifo_full, fifo_full2} <= 2'b11;
|
3348 |
|
|
else
|
3349 |
|
|
{fifo_full, fifo_full2} <= {fifo_full2, async_full};
|
3350 |
|
|
*/
|
3351 |
14 |
unneback |
/* always @ (posedge rclk or posedge async_empty)
|
3352 |
6 |
unneback |
if (async_empty)
|
3353 |
|
|
{fifo_empty, fifo_empty2} <= 2'b11;
|
3354 |
|
|
else
|
3355 |
14 |
unneback |
{fifo_empty,fifo_empty2} <= {fifo_empty2,async_empty}; */
|
3356 |
18 |
unneback |
vl_dff # ( .reset_value(1'b1)) dff0 ( .d(async_empty), .q(fifo_empty2), .clk(rclk), .rst(async_empty));
|
3357 |
|
|
vl_dff # ( .reset_value(1'b1)) dff1 ( .d(fifo_empty2), .q(fifo_empty), .clk(rclk), .rst(async_empty));
|
3358 |
27 |
unneback |
endmodule // async_compb
|
3359 |
6 |
unneback |
module vl_fifo_1r1w_async (
|
3360 |
|
|
d, wr, fifo_full, wr_clk, wr_rst,
|
3361 |
|
|
q, rd, fifo_empty, rd_clk, rd_rst
|
3362 |
|
|
);
|
3363 |
|
|
parameter data_width = 18;
|
3364 |
|
|
parameter addr_width = 4;
|
3365 |
|
|
// write side
|
3366 |
|
|
input [data_width-1:0] d;
|
3367 |
|
|
input wr;
|
3368 |
|
|
output fifo_full;
|
3369 |
|
|
input wr_clk;
|
3370 |
|
|
input wr_rst;
|
3371 |
|
|
// read side
|
3372 |
|
|
output [data_width-1:0] q;
|
3373 |
|
|
input rd;
|
3374 |
|
|
output fifo_empty;
|
3375 |
|
|
input rd_clk;
|
3376 |
|
|
input rd_rst;
|
3377 |
|
|
wire [addr_width:1] wadr, wadr_bin, radr, radr_bin;
|
3378 |
18 |
unneback |
vl_cnt_gray_ce_bin
|
3379 |
6 |
unneback |
# ( .length(addr_width))
|
3380 |
|
|
fifo_wr_adr( .cke(wr), .q(wadr), .q_bin(wadr_bin), .rst(wr_rst), .clk(wr_clk));
|
3381 |
18 |
unneback |
vl_cnt_gray_ce_bin
|
3382 |
6 |
unneback |
# (.length(addr_width))
|
3383 |
23 |
unneback |
fifo_rd_adr( .cke(rd), .q(radr), .q_bin(radr_bin), .rst(rd_rst), .clk(rd_clk));
|
3384 |
7 |
unneback |
vl_dpram_1r1w
|
3385 |
6 |
unneback |
# (.data_width(data_width), .addr_width(addr_width))
|
3386 |
|
|
dpram ( .d_a(d), .adr_a(wadr_bin), .we_a(wr), .clk_a(wr_clk), .q_b(q), .adr_b(radr_bin), .clk_b(rd_clk));
|
3387 |
|
|
vl_fifo_cmp_async
|
3388 |
|
|
# (.addr_width(addr_width))
|
3389 |
|
|
cmp ( .wptr(wadr), .rptr(radr), .fifo_empty(fifo_empty), .fifo_full(fifo_full), .wclk(wr_clk), .rclk(rd_clk), .rst(wr_rst) );
|
3390 |
|
|
endmodule
|
3391 |
8 |
unneback |
module vl_fifo_2r2w_async (
|
3392 |
6 |
unneback |
// a side
|
3393 |
|
|
a_d, a_wr, a_fifo_full,
|
3394 |
|
|
a_q, a_rd, a_fifo_empty,
|
3395 |
|
|
a_clk, a_rst,
|
3396 |
|
|
// b side
|
3397 |
|
|
b_d, b_wr, b_fifo_full,
|
3398 |
|
|
b_q, b_rd, b_fifo_empty,
|
3399 |
|
|
b_clk, b_rst
|
3400 |
|
|
);
|
3401 |
|
|
parameter data_width = 18;
|
3402 |
|
|
parameter addr_width = 4;
|
3403 |
|
|
// a side
|
3404 |
|
|
input [data_width-1:0] a_d;
|
3405 |
|
|
input a_wr;
|
3406 |
|
|
output a_fifo_full;
|
3407 |
|
|
output [data_width-1:0] a_q;
|
3408 |
|
|
input a_rd;
|
3409 |
|
|
output a_fifo_empty;
|
3410 |
|
|
input a_clk;
|
3411 |
|
|
input a_rst;
|
3412 |
|
|
// b side
|
3413 |
|
|
input [data_width-1:0] b_d;
|
3414 |
|
|
input b_wr;
|
3415 |
|
|
output b_fifo_full;
|
3416 |
|
|
output [data_width-1:0] b_q;
|
3417 |
|
|
input b_rd;
|
3418 |
|
|
output b_fifo_empty;
|
3419 |
|
|
input b_clk;
|
3420 |
|
|
input b_rst;
|
3421 |
|
|
vl_fifo_1r1w_async # (.data_width(data_width), .addr_width(addr_width))
|
3422 |
|
|
vl_fifo_1r1w_async_a (
|
3423 |
|
|
.d(a_d), .wr(a_wr), .fifo_full(a_fifo_full), .wr_clk(a_clk), .wr_rst(a_rst),
|
3424 |
|
|
.q(b_q), .rd(b_rd), .fifo_empty(b_fifo_empty), .rd_clk(b_clk), .rd_rst(b_rst)
|
3425 |
|
|
);
|
3426 |
|
|
vl_fifo_1r1w_async # (.data_width(data_width), .addr_width(addr_width))
|
3427 |
|
|
vl_fifo_1r1w_async_b (
|
3428 |
|
|
.d(b_d), .wr(b_wr), .fifo_full(b_fifo_full), .wr_clk(b_clk), .wr_rst(b_rst),
|
3429 |
|
|
.q(a_q), .rd(a_rd), .fifo_empty(a_fifo_empty), .rd_clk(a_clk), .rd_rst(a_rst)
|
3430 |
|
|
);
|
3431 |
|
|
endmodule
|
3432 |
8 |
unneback |
module vl_fifo_2r2w_async_simplex (
|
3433 |
6 |
unneback |
// a side
|
3434 |
|
|
a_d, a_wr, a_fifo_full,
|
3435 |
|
|
a_q, a_rd, a_fifo_empty,
|
3436 |
|
|
a_clk, a_rst,
|
3437 |
|
|
// b side
|
3438 |
|
|
b_d, b_wr, b_fifo_full,
|
3439 |
|
|
b_q, b_rd, b_fifo_empty,
|
3440 |
|
|
b_clk, b_rst
|
3441 |
|
|
);
|
3442 |
|
|
parameter data_width = 18;
|
3443 |
|
|
parameter addr_width = 4;
|
3444 |
|
|
// a side
|
3445 |
|
|
input [data_width-1:0] a_d;
|
3446 |
|
|
input a_wr;
|
3447 |
|
|
output a_fifo_full;
|
3448 |
|
|
output [data_width-1:0] a_q;
|
3449 |
|
|
input a_rd;
|
3450 |
|
|
output a_fifo_empty;
|
3451 |
|
|
input a_clk;
|
3452 |
|
|
input a_rst;
|
3453 |
|
|
// b side
|
3454 |
|
|
input [data_width-1:0] b_d;
|
3455 |
|
|
input b_wr;
|
3456 |
|
|
output b_fifo_full;
|
3457 |
|
|
output [data_width-1:0] b_q;
|
3458 |
|
|
input b_rd;
|
3459 |
|
|
output b_fifo_empty;
|
3460 |
|
|
input b_clk;
|
3461 |
|
|
input b_rst;
|
3462 |
|
|
// adr_gen
|
3463 |
|
|
wire [addr_width:1] a_wadr, a_wadr_bin, a_radr, a_radr_bin;
|
3464 |
|
|
wire [addr_width:1] b_wadr, b_wadr_bin, b_radr, b_radr_bin;
|
3465 |
|
|
// dpram
|
3466 |
|
|
wire [addr_width:0] a_dpram_adr, b_dpram_adr;
|
3467 |
18 |
unneback |
vl_cnt_gray_ce_bin
|
3468 |
6 |
unneback |
# ( .length(addr_width))
|
3469 |
|
|
fifo_a_wr_adr( .cke(a_wr), .q(a_wadr), .q_bin(a_wadr_bin), .rst(a_rst), .clk(a_clk));
|
3470 |
18 |
unneback |
vl_cnt_gray_ce_bin
|
3471 |
6 |
unneback |
# (.length(addr_width))
|
3472 |
|
|
fifo_a_rd_adr( .cke(a_rd), .q(a_radr), .q_bin(a_radr_bin), .rst(a_rst), .clk(a_clk));
|
3473 |
18 |
unneback |
vl_cnt_gray_ce_bin
|
3474 |
6 |
unneback |
# ( .length(addr_width))
|
3475 |
|
|
fifo_b_wr_adr( .cke(b_wr), .q(b_wadr), .q_bin(b_wadr_bin), .rst(b_rst), .clk(b_clk));
|
3476 |
18 |
unneback |
vl_cnt_gray_ce_bin
|
3477 |
6 |
unneback |
# (.length(addr_width))
|
3478 |
|
|
fifo_b_rd_adr( .cke(b_rd), .q(b_radr), .q_bin(b_radr_bin), .rst(b_rst), .clk(b_clk));
|
3479 |
|
|
// mux read or write adr to DPRAM
|
3480 |
|
|
assign a_dpram_adr = (a_wr) ? {1'b0,a_wadr_bin} : {1'b1,a_radr_bin};
|
3481 |
|
|
assign b_dpram_adr = (b_wr) ? {1'b1,b_wadr_bin} : {1'b0,b_radr_bin};
|
3482 |
11 |
unneback |
vl_dpram_2r2w
|
3483 |
6 |
unneback |
# (.data_width(data_width), .addr_width(addr_width+1))
|
3484 |
|
|
dpram ( .d_a(a_d), .q_a(a_q), .adr_a(a_dpram_adr), .we_a(a_wr), .clk_a(a_clk),
|
3485 |
|
|
.d_b(b_d), .q_b(b_q), .adr_b(b_dpram_adr), .we_b(b_wr), .clk_b(b_clk));
|
3486 |
11 |
unneback |
vl_fifo_cmp_async
|
3487 |
6 |
unneback |
# (.addr_width(addr_width))
|
3488 |
|
|
cmp1 ( .wptr(a_wadr), .rptr(b_radr), .fifo_empty(b_fifo_empty), .fifo_full(a_fifo_full), .wclk(a_clk), .rclk(b_clk), .rst(a_rst) );
|
3489 |
11 |
unneback |
vl_fifo_cmp_async
|
3490 |
6 |
unneback |
# (.addr_width(addr_width))
|
3491 |
|
|
cmp2 ( .wptr(b_wadr), .rptr(a_radr), .fifo_empty(a_fifo_empty), .fifo_full(b_fifo_full), .wclk(b_clk), .rclk(a_clk), .rst(b_rst) );
|
3492 |
|
|
endmodule
|
3493 |
48 |
unneback |
module vl_reg_file (
|
3494 |
|
|
a1, a2, a3, wd3, we3, rd1, rd2, clk
|
3495 |
|
|
);
|
3496 |
|
|
parameter data_width = 32;
|
3497 |
|
|
parameter addr_width = 5;
|
3498 |
|
|
input [addr_width-1:0] a1, a2, a3;
|
3499 |
|
|
input [data_width-1:0] wd3;
|
3500 |
|
|
input we3;
|
3501 |
|
|
output [data_width-1:0] rd1, rd2;
|
3502 |
|
|
input clk;
|
3503 |
|
|
vl_dpram_1r1w
|
3504 |
|
|
# ( .data_width(data_width), .addr_width(addr_width))
|
3505 |
|
|
ram1 (
|
3506 |
|
|
.d_a(wd3),
|
3507 |
|
|
.adr_a(a3),
|
3508 |
|
|
.we_a(we3),
|
3509 |
|
|
.clk_a(clk),
|
3510 |
|
|
.q_b(rd1),
|
3511 |
|
|
.adr_b(a1),
|
3512 |
|
|
.clk_b(clk) );
|
3513 |
|
|
vl_dpram_1r1w
|
3514 |
|
|
# ( .data_width(data_width), .addr_width(addr_width))
|
3515 |
|
|
ram2 (
|
3516 |
|
|
.d_a(wd3),
|
3517 |
|
|
.adr_a(a3),
|
3518 |
|
|
.we_a(we3),
|
3519 |
|
|
.clk_a(clk),
|
3520 |
|
|
.q_b(rd2),
|
3521 |
|
|
.adr_b(a2),
|
3522 |
|
|
.clk_b(clk) );
|
3523 |
|
|
endmodule
|
3524 |
12 |
unneback |
//////////////////////////////////////////////////////////////////////
|
3525 |
|
|
//// ////
|
3526 |
|
|
//// Versatile library, wishbone stuff ////
|
3527 |
|
|
//// ////
|
3528 |
|
|
//// Description ////
|
3529 |
|
|
//// Wishbone compliant modules ////
|
3530 |
|
|
//// ////
|
3531 |
|
|
//// ////
|
3532 |
|
|
//// To Do: ////
|
3533 |
|
|
//// - ////
|
3534 |
|
|
//// ////
|
3535 |
|
|
//// Author(s): ////
|
3536 |
|
|
//// - Michael Unneback, unneback@opencores.org ////
|
3537 |
|
|
//// ORSoC AB ////
|
3538 |
|
|
//// ////
|
3539 |
|
|
//////////////////////////////////////////////////////////////////////
|
3540 |
|
|
//// ////
|
3541 |
|
|
//// Copyright (C) 2010 Authors and OPENCORES.ORG ////
|
3542 |
|
|
//// ////
|
3543 |
|
|
//// This source file may be used and distributed without ////
|
3544 |
|
|
//// restriction provided that this copyright statement is not ////
|
3545 |
|
|
//// removed from the file and that any derivative work contains ////
|
3546 |
|
|
//// the original copyright notice and the associated disclaimer. ////
|
3547 |
|
|
//// ////
|
3548 |
|
|
//// This source file is free software; you can redistribute it ////
|
3549 |
|
|
//// and/or modify it under the terms of the GNU Lesser General ////
|
3550 |
|
|
//// Public License as published by the Free Software Foundation; ////
|
3551 |
|
|
//// either version 2.1 of the License, or (at your option) any ////
|
3552 |
|
|
//// later version. ////
|
3553 |
|
|
//// ////
|
3554 |
|
|
//// This source is distributed in the hope that it will be ////
|
3555 |
|
|
//// useful, but WITHOUT ANY WARRANTY; without even the implied ////
|
3556 |
|
|
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR ////
|
3557 |
|
|
//// PURPOSE. See the GNU Lesser General Public License for more ////
|
3558 |
|
|
//// details. ////
|
3559 |
|
|
//// ////
|
3560 |
|
|
//// You should have received a copy of the GNU Lesser General ////
|
3561 |
|
|
//// Public License along with this source; if not, download it ////
|
3562 |
|
|
//// from http://www.opencores.org/lgpl.shtml ////
|
3563 |
|
|
//// ////
|
3564 |
|
|
//////////////////////////////////////////////////////////////////////
|
3565 |
|
|
`timescale 1ns/1ns
|
3566 |
85 |
unneback |
module vl_wb_adr_inc ( cyc_i, stb_i, cti_i, bte_i, adr_i, we_i, ack_o, adr_o, clk, rst);
|
3567 |
83 |
unneback |
parameter adr_width = 10;
|
3568 |
|
|
parameter max_burst_width = 4;
|
3569 |
85 |
unneback |
input cyc_i, stb_i, we_i;
|
3570 |
83 |
unneback |
input [2:0] cti_i;
|
3571 |
|
|
input [1:0] bte_i;
|
3572 |
|
|
input [adr_width-1:0] adr_i;
|
3573 |
|
|
output [adr_width-1:0] adr_o;
|
3574 |
|
|
output ack_o;
|
3575 |
|
|
input clk, rst;
|
3576 |
|
|
reg [adr_width-1:0] adr;
|
3577 |
90 |
unneback |
wire [max_burst_width-1:0] to_adr;
|
3578 |
91 |
unneback |
reg [max_burst_width-1:0] last_adr;
|
3579 |
92 |
unneback |
reg last_cycle;
|
3580 |
|
|
localparam idle_or_eoc = 1'b0;
|
3581 |
|
|
localparam cyc_or_ws = 1'b1;
|
3582 |
91 |
unneback |
always @ (posedge clk or posedge rst)
|
3583 |
|
|
if (rst)
|
3584 |
|
|
last_adr <= {max_burst_width{1'b0}};
|
3585 |
|
|
else
|
3586 |
|
|
if (stb_i)
|
3587 |
92 |
unneback |
last_adr <=adr_o[max_burst_width-1:0];
|
3588 |
83 |
unneback |
generate
|
3589 |
|
|
if (max_burst_width==0) begin : inst_0
|
3590 |
97 |
unneback |
reg ack_o;
|
3591 |
|
|
assign adr_o = adr_i;
|
3592 |
|
|
always @ (posedge clk or posedge rst)
|
3593 |
|
|
if (rst)
|
3594 |
|
|
ack_o <= 1'b0;
|
3595 |
|
|
else
|
3596 |
|
|
ack_o <= cyc_i & stb_i & !ack_o;
|
3597 |
83 |
unneback |
end else begin
|
3598 |
|
|
always @ (posedge clk or posedge rst)
|
3599 |
|
|
if (rst)
|
3600 |
92 |
unneback |
last_cycle <= idle_or_eoc;
|
3601 |
83 |
unneback |
else
|
3602 |
92 |
unneback |
last_cycle <= (!cyc_i) ? idle_or_eoc : //idle
|
3603 |
|
|
(cyc_i & ack_o & (cti_i==3'b000 | cti_i==3'b111)) ? idle_or_eoc : // eoc
|
3604 |
|
|
(cyc_i & !stb_i) ? cyc_or_ws : //ws
|
3605 |
|
|
cyc_or_ws; // cyc
|
3606 |
|
|
assign to_adr = (last_cycle==idle_or_eoc) ? adr_i[max_burst_width-1:0] : adr[max_burst_width-1:0];
|
3607 |
85 |
unneback |
assign adr_o[max_burst_width-1:0] = (we_i) ? adr_i[max_burst_width-1:0] :
|
3608 |
91 |
unneback |
(!stb_i) ? last_adr :
|
3609 |
92 |
unneback |
(last_cycle==idle_or_eoc) ? adr_i[max_burst_width-1:0] :
|
3610 |
85 |
unneback |
adr[max_burst_width-1:0];
|
3611 |
92 |
unneback |
assign ack_o = (last_cycle==cyc_or_ws) & stb_i;
|
3612 |
83 |
unneback |
end
|
3613 |
|
|
endgenerate
|
3614 |
|
|
generate
|
3615 |
|
|
if (max_burst_width==2) begin : inst_2
|
3616 |
|
|
always @ (posedge clk or posedge rst)
|
3617 |
|
|
if (rst)
|
3618 |
|
|
adr <= 2'h0;
|
3619 |
|
|
else
|
3620 |
|
|
if (cyc_i & stb_i)
|
3621 |
|
|
adr[1:0] <= to_adr[1:0] + 2'd1;
|
3622 |
|
|
else
|
3623 |
|
|
adr <= to_adr[1:0];
|
3624 |
|
|
end
|
3625 |
|
|
endgenerate
|
3626 |
|
|
generate
|
3627 |
|
|
if (max_burst_width==3) begin : inst_3
|
3628 |
|
|
always @ (posedge clk or posedge rst)
|
3629 |
|
|
if (rst)
|
3630 |
|
|
adr <= 3'h0;
|
3631 |
|
|
else
|
3632 |
|
|
if (cyc_i & stb_i)
|
3633 |
|
|
case (bte_i)
|
3634 |
|
|
2'b01: adr[2:0] <= {to_adr[2],to_adr[1:0] + 2'd1};
|
3635 |
|
|
default: adr[3:0] <= to_adr[2:0] + 3'd1;
|
3636 |
|
|
endcase
|
3637 |
|
|
else
|
3638 |
|
|
adr <= to_adr[2:0];
|
3639 |
|
|
end
|
3640 |
|
|
endgenerate
|
3641 |
|
|
generate
|
3642 |
|
|
if (max_burst_width==4) begin : inst_4
|
3643 |
|
|
always @ (posedge clk or posedge rst)
|
3644 |
|
|
if (rst)
|
3645 |
|
|
adr <= 4'h0;
|
3646 |
|
|
else
|
3647 |
91 |
unneback |
if (stb_i) // | (!stb_i & last_cycle!=ws)) // for !stb_i restart with adr_i +1, only inc once
|
3648 |
83 |
unneback |
case (bte_i)
|
3649 |
|
|
2'b01: adr[3:0] <= {to_adr[3:2],to_adr[1:0] + 2'd1};
|
3650 |
|
|
2'b10: adr[3:0] <= {to_adr[3],to_adr[2:0] + 3'd1};
|
3651 |
|
|
default: adr[3:0] <= to_adr + 4'd1;
|
3652 |
|
|
endcase
|
3653 |
|
|
else
|
3654 |
|
|
adr <= to_adr[3:0];
|
3655 |
|
|
end
|
3656 |
|
|
endgenerate
|
3657 |
|
|
generate
|
3658 |
|
|
if (adr_width > max_burst_width) begin : pass_through
|
3659 |
|
|
assign adr_o[adr_width-1:max_burst_width] = adr_i[adr_width-1:max_burst_width];
|
3660 |
|
|
end
|
3661 |
|
|
endgenerate
|
3662 |
|
|
endmodule
|
3663 |
|
|
// async wb3 - wb3 bridge
|
3664 |
|
|
`timescale 1ns/1ns
|
3665 |
18 |
unneback |
module vl_wb3wb3_bridge (
|
3666 |
12 |
unneback |
// wishbone slave side
|
3667 |
|
|
wbs_dat_i, wbs_adr_i, wbs_sel_i, wbs_bte_i, wbs_cti_i, wbs_we_i, wbs_cyc_i, wbs_stb_i, wbs_dat_o, wbs_ack_o, wbs_clk, wbs_rst,
|
3668 |
|
|
// wishbone master side
|
3669 |
|
|
wbm_dat_o, wbm_adr_o, wbm_sel_o, wbm_bte_o, wbm_cti_o, wbm_we_o, wbm_cyc_o, wbm_stb_o, wbm_dat_i, wbm_ack_i, wbm_clk, wbm_rst);
|
3670 |
95 |
unneback |
parameter style = "FIFO"; // valid: simple, FIFO
|
3671 |
|
|
parameter addr_width = 4;
|
3672 |
12 |
unneback |
input [31:0] wbs_dat_i;
|
3673 |
|
|
input [31:2] wbs_adr_i;
|
3674 |
|
|
input [3:0] wbs_sel_i;
|
3675 |
|
|
input [1:0] wbs_bte_i;
|
3676 |
|
|
input [2:0] wbs_cti_i;
|
3677 |
|
|
input wbs_we_i, wbs_cyc_i, wbs_stb_i;
|
3678 |
|
|
output [31:0] wbs_dat_o;
|
3679 |
14 |
unneback |
output wbs_ack_o;
|
3680 |
12 |
unneback |
input wbs_clk, wbs_rst;
|
3681 |
|
|
output [31:0] wbm_dat_o;
|
3682 |
|
|
output reg [31:2] wbm_adr_o;
|
3683 |
|
|
output [3:0] wbm_sel_o;
|
3684 |
|
|
output reg [1:0] wbm_bte_o;
|
3685 |
|
|
output reg [2:0] wbm_cti_o;
|
3686 |
14 |
unneback |
output reg wbm_we_o;
|
3687 |
|
|
output wbm_cyc_o;
|
3688 |
12 |
unneback |
output wbm_stb_o;
|
3689 |
|
|
input [31:0] wbm_dat_i;
|
3690 |
|
|
input wbm_ack_i;
|
3691 |
|
|
input wbm_clk, wbm_rst;
|
3692 |
|
|
// bte
|
3693 |
|
|
parameter linear = 2'b00;
|
3694 |
|
|
parameter wrap4 = 2'b01;
|
3695 |
|
|
parameter wrap8 = 2'b10;
|
3696 |
|
|
parameter wrap16 = 2'b11;
|
3697 |
|
|
// cti
|
3698 |
|
|
parameter classic = 3'b000;
|
3699 |
|
|
parameter incburst = 3'b010;
|
3700 |
|
|
parameter endofburst = 3'b111;
|
3701 |
95 |
unneback |
localparam wbs_adr = 1'b0;
|
3702 |
|
|
localparam wbs_data = 1'b1;
|
3703 |
|
|
localparam wbm_adr0 = 2'b00;
|
3704 |
|
|
localparam wbm_adr1 = 2'b01;
|
3705 |
|
|
localparam wbm_data = 2'b10;
|
3706 |
|
|
localparam wbm_data_wait = 2'b11;
|
3707 |
12 |
unneback |
reg [1:0] wbs_bte_reg;
|
3708 |
|
|
reg wbs;
|
3709 |
|
|
wire wbs_eoc_alert, wbm_eoc_alert;
|
3710 |
|
|
reg wbs_eoc, wbm_eoc;
|
3711 |
|
|
reg [1:0] wbm;
|
3712 |
14 |
unneback |
wire [1:16] wbs_count, wbm_count;
|
3713 |
12 |
unneback |
wire [35:0] a_d, a_q, b_d, b_q;
|
3714 |
|
|
wire a_wr, a_rd, a_fifo_full, a_fifo_empty, b_wr, b_rd, b_fifo_full, b_fifo_empty;
|
3715 |
|
|
reg a_rd_reg;
|
3716 |
|
|
wire b_rd_adr, b_rd_data;
|
3717 |
14 |
unneback |
wire b_rd_data_reg;
|
3718 |
|
|
wire [35:0] temp;
|
3719 |
12 |
unneback |
assign wbs_eoc_alert = (wbs_bte_reg==wrap4 & wbs_count[3]) | (wbs_bte_reg==wrap8 & wbs_count[7]) | (wbs_bte_reg==wrap16 & wbs_count[15]);
|
3720 |
|
|
always @ (posedge wbs_clk or posedge wbs_rst)
|
3721 |
|
|
if (wbs_rst)
|
3722 |
|
|
wbs_eoc <= 1'b0;
|
3723 |
|
|
else
|
3724 |
|
|
if (wbs==wbs_adr & wbs_stb_i & !a_fifo_full)
|
3725 |
78 |
unneback |
wbs_eoc <= (wbs_bte_i==linear) | (wbs_cti_i==3'b111);
|
3726 |
12 |
unneback |
else if (wbs_eoc_alert & (a_rd | a_wr))
|
3727 |
|
|
wbs_eoc <= 1'b1;
|
3728 |
18 |
unneback |
vl_cnt_shreg_ce_clear # ( .length(16))
|
3729 |
12 |
unneback |
cnt0 (
|
3730 |
|
|
.cke(wbs_ack_o),
|
3731 |
|
|
.clear(wbs_eoc),
|
3732 |
|
|
.q(wbs_count),
|
3733 |
|
|
.rst(wbs_rst),
|
3734 |
|
|
.clk(wbs_clk));
|
3735 |
|
|
always @ (posedge wbs_clk or posedge wbs_rst)
|
3736 |
|
|
if (wbs_rst)
|
3737 |
|
|
wbs <= wbs_adr;
|
3738 |
|
|
else
|
3739 |
75 |
unneback |
if ((wbs==wbs_adr) & wbs_cyc_i & wbs_stb_i & a_fifo_empty)
|
3740 |
12 |
unneback |
wbs <= wbs_data;
|
3741 |
|
|
else if (wbs_eoc & wbs_ack_o)
|
3742 |
|
|
wbs <= wbs_adr;
|
3743 |
|
|
// wbs FIFO
|
3744 |
75 |
unneback |
assign a_d = (wbs==wbs_adr) ? {wbs_adr_i[31:2],wbs_we_i,((wbs_cti_i==3'b111) ? {2'b00,3'b000} : {wbs_bte_i,wbs_cti_i})} : {wbs_dat_i,wbs_sel_i};
|
3745 |
|
|
assign a_wr = (wbs==wbs_adr) ? wbs_cyc_i & wbs_stb_i & a_fifo_empty :
|
3746 |
12 |
unneback |
(wbs==wbs_data) ? wbs_we_i & wbs_stb_i & !a_fifo_full :
|
3747 |
|
|
1'b0;
|
3748 |
|
|
assign a_rd = !a_fifo_empty;
|
3749 |
|
|
always @ (posedge wbs_clk or posedge wbs_rst)
|
3750 |
|
|
if (wbs_rst)
|
3751 |
|
|
a_rd_reg <= 1'b0;
|
3752 |
|
|
else
|
3753 |
|
|
a_rd_reg <= a_rd;
|
3754 |
|
|
assign wbs_ack_o = a_rd_reg | (a_wr & wbs==wbs_data);
|
3755 |
|
|
assign wbs_dat_o = a_q[35:4];
|
3756 |
|
|
always @ (posedge wbs_clk or posedge wbs_rst)
|
3757 |
|
|
if (wbs_rst)
|
3758 |
13 |
unneback |
wbs_bte_reg <= 2'b00;
|
3759 |
12 |
unneback |
else
|
3760 |
13 |
unneback |
wbs_bte_reg <= wbs_bte_i;
|
3761 |
12 |
unneback |
// wbm FIFO
|
3762 |
|
|
assign wbm_eoc_alert = (wbm_bte_o==wrap4 & wbm_count[3]) | (wbm_bte_o==wrap8 & wbm_count[7]) | (wbm_bte_o==wrap16 & wbm_count[15]);
|
3763 |
|
|
always @ (posedge wbm_clk or posedge wbm_rst)
|
3764 |
|
|
if (wbm_rst)
|
3765 |
|
|
wbm_eoc <= 1'b0;
|
3766 |
|
|
else
|
3767 |
|
|
if (wbm==wbm_adr0 & !b_fifo_empty)
|
3768 |
|
|
wbm_eoc <= b_q[4:3] == linear;
|
3769 |
|
|
else if (wbm_eoc_alert & wbm_ack_i)
|
3770 |
|
|
wbm_eoc <= 1'b1;
|
3771 |
|
|
always @ (posedge wbm_clk or posedge wbm_rst)
|
3772 |
|
|
if (wbm_rst)
|
3773 |
|
|
wbm <= wbm_adr0;
|
3774 |
|
|
else
|
3775 |
33 |
unneback |
/*
|
3776 |
12 |
unneback |
if ((wbm==wbm_adr0 & !b_fifo_empty) |
|
3777 |
|
|
(wbm==wbm_adr1 & !b_fifo_empty & wbm_we_o) |
|
3778 |
|
|
(wbm==wbm_adr1 & !wbm_we_o) |
|
3779 |
|
|
(wbm==wbm_data & wbm_ack_i & wbm_eoc))
|
3780 |
|
|
wbm <= {wbm[0],!(wbm[1] ^ wbm[0])}; // count sequence 00,01,10
|
3781 |
33 |
unneback |
*/
|
3782 |
|
|
case (wbm)
|
3783 |
|
|
wbm_adr0:
|
3784 |
|
|
if (!b_fifo_empty)
|
3785 |
|
|
wbm <= wbm_adr1;
|
3786 |
|
|
wbm_adr1:
|
3787 |
|
|
if (!wbm_we_o | (!b_fifo_empty & wbm_we_o))
|
3788 |
|
|
wbm <= wbm_data;
|
3789 |
|
|
wbm_data:
|
3790 |
|
|
if (wbm_ack_i & wbm_eoc)
|
3791 |
|
|
wbm <= wbm_adr0;
|
3792 |
|
|
else if (b_fifo_empty & wbm_we_o & wbm_ack_i)
|
3793 |
|
|
wbm <= wbm_data_wait;
|
3794 |
|
|
wbm_data_wait:
|
3795 |
|
|
if (!b_fifo_empty)
|
3796 |
|
|
wbm <= wbm_data;
|
3797 |
|
|
endcase
|
3798 |
12 |
unneback |
assign b_d = {wbm_dat_i,4'b1111};
|
3799 |
|
|
assign b_wr = !wbm_we_o & wbm_ack_i;
|
3800 |
|
|
assign b_rd_adr = (wbm==wbm_adr0 & !b_fifo_empty);
|
3801 |
|
|
assign b_rd_data = (wbm==wbm_adr1 & !b_fifo_empty & wbm_we_o) ? 1'b1 : // b_q[`WE]
|
3802 |
|
|
(wbm==wbm_data & !b_fifo_empty & wbm_we_o & wbm_ack_i & !wbm_eoc) ? 1'b1 :
|
3803 |
33 |
unneback |
(wbm==wbm_data_wait & !b_fifo_empty) ? 1'b1 :
|
3804 |
12 |
unneback |
1'b0;
|
3805 |
|
|
assign b_rd = b_rd_adr | b_rd_data;
|
3806 |
18 |
unneback |
vl_dff dff1 ( .d(b_rd_data), .q(b_rd_data_reg), .clk(wbm_clk), .rst(wbm_rst));
|
3807 |
|
|
vl_dff_ce # ( .width(36)) dff2 ( .d(b_q), .ce(b_rd_data_reg), .q(temp), .clk(wbm_clk), .rst(wbm_rst));
|
3808 |
12 |
unneback |
assign {wbm_dat_o,wbm_sel_o} = (b_rd_data_reg) ? b_q : temp;
|
3809 |
18 |
unneback |
vl_cnt_shreg_ce_clear # ( .length(16))
|
3810 |
12 |
unneback |
cnt1 (
|
3811 |
|
|
.cke(wbm_ack_i),
|
3812 |
|
|
.clear(wbm_eoc),
|
3813 |
|
|
.q(wbm_count),
|
3814 |
|
|
.rst(wbm_rst),
|
3815 |
|
|
.clk(wbm_clk));
|
3816 |
33 |
unneback |
assign wbm_cyc_o = (wbm==wbm_data | wbm==wbm_data_wait);
|
3817 |
|
|
assign wbm_stb_o = (wbm==wbm_data);
|
3818 |
12 |
unneback |
always @ (posedge wbm_clk or posedge wbm_rst)
|
3819 |
|
|
if (wbm_rst)
|
3820 |
|
|
{wbm_adr_o,wbm_we_o,wbm_bte_o,wbm_cti_o} <= {30'h0,1'b0,linear,classic};
|
3821 |
|
|
else begin
|
3822 |
|
|
if (wbm==wbm_adr0 & !b_fifo_empty)
|
3823 |
|
|
{wbm_adr_o,wbm_we_o,wbm_bte_o,wbm_cti_o} <= b_q;
|
3824 |
|
|
else if (wbm_eoc_alert & wbm_ack_i)
|
3825 |
|
|
wbm_cti_o <= endofburst;
|
3826 |
|
|
end
|
3827 |
|
|
//async_fifo_dw_simplex_top
|
3828 |
|
|
vl_fifo_2r2w_async_simplex
|
3829 |
|
|
# ( .data_width(36), .addr_width(addr_width))
|
3830 |
|
|
fifo (
|
3831 |
|
|
// a side
|
3832 |
|
|
.a_d(a_d),
|
3833 |
|
|
.a_wr(a_wr),
|
3834 |
|
|
.a_fifo_full(a_fifo_full),
|
3835 |
|
|
.a_q(a_q),
|
3836 |
|
|
.a_rd(a_rd),
|
3837 |
|
|
.a_fifo_empty(a_fifo_empty),
|
3838 |
|
|
.a_clk(wbs_clk),
|
3839 |
|
|
.a_rst(wbs_rst),
|
3840 |
|
|
// b side
|
3841 |
|
|
.b_d(b_d),
|
3842 |
|
|
.b_wr(b_wr),
|
3843 |
|
|
.b_fifo_full(b_fifo_full),
|
3844 |
|
|
.b_q(b_q),
|
3845 |
|
|
.b_rd(b_rd),
|
3846 |
|
|
.b_fifo_empty(b_fifo_empty),
|
3847 |
|
|
.b_clk(wbm_clk),
|
3848 |
|
|
.b_rst(wbm_rst)
|
3849 |
|
|
);
|
3850 |
|
|
endmodule
|
3851 |
75 |
unneback |
module vl_wb3avalon_bridge (
|
3852 |
|
|
// wishbone slave side
|
3853 |
|
|
wbs_dat_i, wbs_adr_i, wbs_sel_i, wbs_bte_i, wbs_cti_i, wbs_we_i, wbs_cyc_i, wbs_stb_i, wbs_dat_o, wbs_ack_o, wbs_clk, wbs_rst,
|
3854 |
77 |
unneback |
// avalon master side
|
3855 |
75 |
unneback |
readdata, readdatavalid, address, read, be, write, burstcount, writedata, waitrequest, beginbursttransfer, clk, rst);
|
3856 |
85 |
unneback |
parameter linewrapburst = 1'b0;
|
3857 |
75 |
unneback |
input [31:0] wbs_dat_i;
|
3858 |
|
|
input [31:2] wbs_adr_i;
|
3859 |
|
|
input [3:0] wbs_sel_i;
|
3860 |
|
|
input [1:0] wbs_bte_i;
|
3861 |
|
|
input [2:0] wbs_cti_i;
|
3862 |
83 |
unneback |
input wbs_we_i;
|
3863 |
|
|
input wbs_cyc_i;
|
3864 |
|
|
input wbs_stb_i;
|
3865 |
75 |
unneback |
output [31:0] wbs_dat_o;
|
3866 |
|
|
output wbs_ack_o;
|
3867 |
|
|
input wbs_clk, wbs_rst;
|
3868 |
|
|
input [31:0] readdata;
|
3869 |
|
|
output [31:0] writedata;
|
3870 |
|
|
output [31:2] address;
|
3871 |
|
|
output [3:0] be;
|
3872 |
|
|
output write;
|
3873 |
81 |
unneback |
output read;
|
3874 |
75 |
unneback |
output beginbursttransfer;
|
3875 |
|
|
output [3:0] burstcount;
|
3876 |
|
|
input readdatavalid;
|
3877 |
|
|
input waitrequest;
|
3878 |
|
|
input clk;
|
3879 |
|
|
input rst;
|
3880 |
|
|
wire [1:0] wbm_bte_o;
|
3881 |
|
|
wire [2:0] wbm_cti_o;
|
3882 |
|
|
wire wbm_we_o, wbm_cyc_o, wbm_stb_o, wbm_ack_i;
|
3883 |
|
|
reg last_cyc;
|
3884 |
79 |
unneback |
reg [3:0] counter;
|
3885 |
82 |
unneback |
reg read_busy;
|
3886 |
75 |
unneback |
always @ (posedge clk or posedge rst)
|
3887 |
|
|
if (rst)
|
3888 |
|
|
last_cyc <= 1'b0;
|
3889 |
|
|
else
|
3890 |
|
|
last_cyc <= wbm_cyc_o;
|
3891 |
79 |
unneback |
always @ (posedge clk or posedge rst)
|
3892 |
|
|
if (rst)
|
3893 |
82 |
unneback |
read_busy <= 1'b0;
|
3894 |
79 |
unneback |
else
|
3895 |
82 |
unneback |
if (read & !waitrequest)
|
3896 |
|
|
read_busy <= 1'b1;
|
3897 |
|
|
else if (wbm_ack_i & wbm_cti_o!=3'b010)
|
3898 |
|
|
read_busy <= 1'b0;
|
3899 |
|
|
assign read = wbm_cyc_o & wbm_stb_o & !wbm_we_o & !read_busy;
|
3900 |
75 |
unneback |
assign beginbursttransfer = (!last_cyc & wbm_cyc_o) & wbm_cti_o==3'b010;
|
3901 |
|
|
assign burstcount = (wbm_bte_o==2'b01) ? 4'd4 :
|
3902 |
|
|
(wbm_bte_o==2'b10) ? 4'd8 :
|
3903 |
78 |
unneback |
(wbm_bte_o==2'b11) ? 4'd16:
|
3904 |
|
|
4'd1;
|
3905 |
82 |
unneback |
assign wbm_ack_i = (readdatavalid) | (write & !waitrequest);
|
3906 |
79 |
unneback |
always @ (posedge clk or posedge rst)
|
3907 |
|
|
if (rst) begin
|
3908 |
|
|
counter <= 4'd0;
|
3909 |
|
|
end else
|
3910 |
80 |
unneback |
if (wbm_we_o) begin
|
3911 |
|
|
if (!waitrequest & !last_cyc & wbm_cyc_o) begin
|
3912 |
85 |
unneback |
counter <= burstcount -4'd1;
|
3913 |
80 |
unneback |
end else if (waitrequest & !last_cyc & wbm_cyc_o) begin
|
3914 |
|
|
counter <= burstcount;
|
3915 |
|
|
end else if (!waitrequest & wbm_stb_o) begin
|
3916 |
|
|
counter <= counter - 4'd1;
|
3917 |
|
|
end
|
3918 |
82 |
unneback |
end
|
3919 |
81 |
unneback |
assign write = wbm_cyc_o & wbm_stb_o & wbm_we_o & counter!=4'd0;
|
3920 |
77 |
unneback |
vl_wb3wb3_bridge wbwb3inst (
|
3921 |
75 |
unneback |
// wishbone slave side
|
3922 |
|
|
.wbs_dat_i(wbs_dat_i),
|
3923 |
|
|
.wbs_adr_i(wbs_adr_i),
|
3924 |
|
|
.wbs_sel_i(wbs_sel_i),
|
3925 |
|
|
.wbs_bte_i(wbs_bte_i),
|
3926 |
|
|
.wbs_cti_i(wbs_cti_i),
|
3927 |
|
|
.wbs_we_i(wbs_we_i),
|
3928 |
|
|
.wbs_cyc_i(wbs_cyc_i),
|
3929 |
|
|
.wbs_stb_i(wbs_stb_i),
|
3930 |
|
|
.wbs_dat_o(wbs_dat_o),
|
3931 |
|
|
.wbs_ack_o(wbs_ack_o),
|
3932 |
|
|
.wbs_clk(wbs_clk),
|
3933 |
|
|
.wbs_rst(wbs_rst),
|
3934 |
|
|
// wishbone master side
|
3935 |
|
|
.wbm_dat_o(writedata),
|
3936 |
78 |
unneback |
.wbm_adr_o(address),
|
3937 |
75 |
unneback |
.wbm_sel_o(be),
|
3938 |
|
|
.wbm_bte_o(wbm_bte_o),
|
3939 |
|
|
.wbm_cti_o(wbm_cti_o),
|
3940 |
|
|
.wbm_we_o(wbm_we_o),
|
3941 |
|
|
.wbm_cyc_o(wbm_cyc_o),
|
3942 |
|
|
.wbm_stb_o(wbm_stb_o),
|
3943 |
|
|
.wbm_dat_i(readdata),
|
3944 |
|
|
.wbm_ack_i(wbm_ack_i),
|
3945 |
|
|
.wbm_clk(clk),
|
3946 |
|
|
.wbm_rst(rst));
|
3947 |
|
|
endmodule
|
3948 |
49 |
unneback |
// WB RAM with byte enable
|
3949 |
101 |
unneback |
module vl_wb_ram (
|
3950 |
69 |
unneback |
wbs_dat_i, wbs_adr_i, wbs_cti_i, wbs_bte_i, wbs_sel_i, wbs_we_i, wbs_stb_i, wbs_cyc_i,
|
3951 |
101 |
unneback |
wbs_dat_o, wbs_ack_o, wbs_stall_o, wb_clk, wb_rst);
|
3952 |
|
|
parameter adr_width = 16;
|
3953 |
|
|
parameter mem_size = 1<<adr_width;
|
3954 |
|
|
parameter dat_width = 32;
|
3955 |
|
|
parameter max_burst_width = 4; // only used for B3
|
3956 |
|
|
parameter mode = "B3"; // valid options: B3, B4
|
3957 |
60 |
unneback |
parameter memory_init = 1;
|
3958 |
|
|
parameter memory_file = "vl_ram.vmem";
|
3959 |
101 |
unneback |
input [dat_width-1:0] wbs_dat_i;
|
3960 |
|
|
input [adr_width-1:0] wbs_adr_i;
|
3961 |
|
|
input [2:0] wbs_cti_i;
|
3962 |
|
|
input [1:0] wbs_bte_i;
|
3963 |
|
|
input [dat_width/8-1:0] wbs_sel_i;
|
3964 |
70 |
unneback |
input wbs_we_i, wbs_stb_i, wbs_cyc_i;
|
3965 |
101 |
unneback |
output [dat_width-1:0] wbs_dat_o;
|
3966 |
70 |
unneback |
output wbs_ack_o;
|
3967 |
101 |
unneback |
output wbs_stall_o;
|
3968 |
71 |
unneback |
input wb_clk, wb_rst;
|
3969 |
101 |
unneback |
wire [adr_width-1:0] adr;
|
3970 |
|
|
wire we;
|
3971 |
|
|
generate
|
3972 |
|
|
if (mode=="B3") begin : B3_inst
|
3973 |
|
|
vl_wb_adr_inc # ( .adr_width(adr_width), .max_burst_width(max_burst_width)) adr_inc0 (
|
3974 |
83 |
unneback |
.cyc_i(wbs_cyc_i),
|
3975 |
|
|
.stb_i(wbs_stb_i),
|
3976 |
|
|
.cti_i(wbs_cti_i),
|
3977 |
|
|
.bte_i(wbs_bte_i),
|
3978 |
|
|
.adr_i(wbs_adr_i),
|
3979 |
85 |
unneback |
.we_i(wbs_we_i),
|
3980 |
83 |
unneback |
.ack_o(wbs_ack_o),
|
3981 |
|
|
.adr_o(adr),
|
3982 |
|
|
.clk(wb_clk),
|
3983 |
|
|
.rst(wb_rst));
|
3984 |
101 |
unneback |
assign we = wbs_we_i & wbs_ack_o;
|
3985 |
|
|
end else if (mode=="B4") begin : B4_inst
|
3986 |
|
|
reg wbs_ack_o_reg;
|
3987 |
|
|
always @ (posedge wb_clk or posedge wb_rst)
|
3988 |
|
|
if (wb_rst)
|
3989 |
|
|
wbs_ack_o_reg <= 1'b0;
|
3990 |
|
|
else
|
3991 |
|
|
wbs_ack_o_reg <= wbs_stb_i & wbs_cyc_i;
|
3992 |
|
|
assign wbs_ack_o = wbs_ack_o_reg;
|
3993 |
|
|
assign wbs_stall_o = 1'b0;
|
3994 |
|
|
assign adr = wbs_adr_i;
|
3995 |
|
|
assign we = wbs_we_i & wbs_cyc_i & wbs_stb_i;
|
3996 |
|
|
end
|
3997 |
|
|
endgenerate
|
3998 |
100 |
unneback |
vl_ram_be # (
|
3999 |
|
|
.data_width(dat_width),
|
4000 |
|
|
.addr_width(adr_width),
|
4001 |
|
|
.mem_size(mem_size),
|
4002 |
|
|
.memory_init(memory_init),
|
4003 |
|
|
.memory_file(memory_file))
|
4004 |
|
|
ram0(
|
4005 |
101 |
unneback |
.d(wbs_dat_i),
|
4006 |
|
|
.adr(adr),
|
4007 |
|
|
.be(wbs_sel_i),
|
4008 |
|
|
.we(we),
|
4009 |
|
|
.q(wbs_dat_o),
|
4010 |
100 |
unneback |
.clk(wb_clk)
|
4011 |
|
|
);
|
4012 |
49 |
unneback |
endmodule
|
4013 |
103 |
unneback |
// A wishbone compliant RAM module that can be placed in front of other memory controllers
|
4014 |
|
|
module vl_wb_shadow_ram (
|
4015 |
|
|
wbs_dat_i, wbs_adr_i, wbs_cti_i, wbs_bte_i, wbs_sel_i, wbs_we_i, wbs_stb_i, wbs_cyc_i,
|
4016 |
|
|
wbs_dat_o, wbs_ack_o, wbs_stall_o,
|
4017 |
|
|
wbm_dat_o, wbm_adr_o, wbm_cti_o, wbm_bte_o, wbm_sel_o, wbm_we_o, wbm_stb_o, wbm_cyc_o,
|
4018 |
|
|
wbm_dat_i, wbm_ack_i, wbm_stall_i,
|
4019 |
|
|
wb_clk, wb_rst);
|
4020 |
|
|
parameter dat_width = 32;
|
4021 |
|
|
parameter mode = "B4";
|
4022 |
|
|
parameter max_burst_width = 4; // only used for B3
|
4023 |
|
|
parameter shadow_mem_adr_width = 10;
|
4024 |
|
|
parameter shadow_mem_size = 1024;
|
4025 |
|
|
parameter shadow_mem_init = 2;
|
4026 |
|
|
parameter shadow_mem_file = "vl_ram.v";
|
4027 |
|
|
parameter main_mem_adr_width = 24;
|
4028 |
|
|
input [dat_width-1:0] wbs_dat_i;
|
4029 |
|
|
input [main_mem_adr_width-1:0] wbs_adr_i;
|
4030 |
|
|
input [2:0] wbs_cti_i;
|
4031 |
|
|
input [1:0] wbs_bte_i;
|
4032 |
|
|
input [dat_width/8-1:0] wbs_sel_i;
|
4033 |
|
|
input wbs_we_i, wbs_stb_i, wbs_cyc_i;
|
4034 |
|
|
output [dat_width-1:0] wbs_dat_o;
|
4035 |
|
|
output wbs_ack_o;
|
4036 |
|
|
output wbs_stall_o;
|
4037 |
|
|
output [dat_width-1:0] wbm_dat_o;
|
4038 |
|
|
output [main_mem_adr_width-1:0] wbm_adr_o;
|
4039 |
|
|
output [2:0] wbm_cti_o;
|
4040 |
|
|
output [1:0] wbm_bte_o;
|
4041 |
|
|
output [dat_width/8-1:0] wbm_sel_o;
|
4042 |
|
|
output wbm_we_o, wbm_stb_o, wbm_cyc_o;
|
4043 |
|
|
input [dat_width-1:0] wbm_dat_i;
|
4044 |
|
|
input wbm_ack_i, wbm_stall_i;
|
4045 |
|
|
input wb_clk, wb_rst;
|
4046 |
|
|
generate
|
4047 |
|
|
if (shadow_mem_size>0) begin : shadow_ram_inst
|
4048 |
|
|
wire cyc;
|
4049 |
|
|
wire [dat_width-1:0] dat;
|
4050 |
|
|
wire stall, ack;
|
4051 |
|
|
assign cyc = wbs_cyc_i & (wbs_adr_i<=shadow_mem_size);
|
4052 |
|
|
vl_wb_ram # (
|
4053 |
|
|
.dat_width(dat_width),
|
4054 |
|
|
.adr_width(shadow_mem_adr_width),
|
4055 |
|
|
.mem_size(shadow_mem_size),
|
4056 |
|
|
.memory_init(shadow_mem_init),
|
4057 |
117 |
unneback |
.memory_file(shadow_mem_file),
|
4058 |
103 |
unneback |
.mode(mode))
|
4059 |
|
|
shadow_mem0 (
|
4060 |
|
|
.wbs_dat_i(wbs_dat_i),
|
4061 |
|
|
.wbs_adr_i(wbs_adr_i[shadow_mem_adr_width-1:0]),
|
4062 |
|
|
.wbs_sel_i(wbs_sel_i),
|
4063 |
|
|
.wbs_we_i (wbs_we_i),
|
4064 |
|
|
.wbs_bte_i(wbs_bte_i),
|
4065 |
|
|
.wbs_cti_i(wbs_cti_i),
|
4066 |
|
|
.wbs_stb_i(wbs_stb_i),
|
4067 |
|
|
.wbs_cyc_i(cyc),
|
4068 |
|
|
.wbs_dat_o(dat),
|
4069 |
|
|
.wbs_stall_o(stall),
|
4070 |
|
|
.wbs_ack_o(ack),
|
4071 |
|
|
.wb_clk(wb_clk),
|
4072 |
|
|
.wb_rst(wb_rst));
|
4073 |
|
|
assign {wbm_dat_o, wbm_adr_o, wbm_cti_o, wbm_bte_o, wbm_sel_o, wbm_we_o, wbm_stb_o} =
|
4074 |
|
|
{wbs_dat_i, wbs_adr_i, wbs_cti_i, wbs_bte_i, wbs_sel_i, wbs_we_i, wbs_stb_i};
|
4075 |
|
|
assign wbm_cyc_o = wbs_cyc_i & (wbs_adr_i>shadow_mem_size);
|
4076 |
|
|
assign wbs_dat_o = (dat & {dat_width{cyc}}) | (wbm_dat_i & {dat_width{wbm_cyc_o}});
|
4077 |
|
|
assign wbs_ack_o = (ack & cyc) | (wbm_ack_i & wbm_cyc_o);
|
4078 |
|
|
assign wbs_stall_o = (stall & cyc) | (wbm_stall_i & wbm_cyc_o);
|
4079 |
|
|
end else begin : no_shadow_ram_inst
|
4080 |
|
|
assign {wbm_dat_o, wbm_adr_o, wbm_cti_o, wbm_bte_o, wbm_sel_o, wbm_we_o, wbm_stb_o, wbm_cyc_o} =
|
4081 |
|
|
{wbs_dat_i, wbs_adr_i, wbs_cti_i, wbs_bte_i, wbs_sel_i, wbs_we_i, wbs_stb_i, wbs_cyc_i};
|
4082 |
|
|
assign {wbs_dat_o, wbs_ack_o, wbs_stall_o} = {wbm_dat_i, wbm_ack_i, wbm_stall_i};
|
4083 |
|
|
end
|
4084 |
|
|
endgenerate
|
4085 |
|
|
endmodule
|
4086 |
17 |
unneback |
// WB ROM
|
4087 |
48 |
unneback |
module vl_wb_b4_rom (
|
4088 |
|
|
wb_adr_i, wb_stb_i, wb_cyc_i,
|
4089 |
|
|
wb_dat_o, stall_o, wb_ack_o, wb_clk, wb_rst);
|
4090 |
|
|
parameter dat_width = 32;
|
4091 |
|
|
parameter dat_default = 32'h15000000;
|
4092 |
|
|
parameter adr_width = 32;
|
4093 |
|
|
/*
|
4094 |
|
|
`ifndef ROM
|
4095 |
|
|
`define ROM "rom.v"
|
4096 |
|
|
`endif
|
4097 |
|
|
*/
|
4098 |
|
|
input [adr_width-1:2] wb_adr_i;
|
4099 |
|
|
input wb_stb_i;
|
4100 |
|
|
input wb_cyc_i;
|
4101 |
|
|
output [dat_width-1:0] wb_dat_o;
|
4102 |
|
|
reg [dat_width-1:0] wb_dat_o;
|
4103 |
|
|
output wb_ack_o;
|
4104 |
|
|
reg wb_ack_o;
|
4105 |
|
|
output stall_o;
|
4106 |
|
|
input wb_clk;
|
4107 |
|
|
input wb_rst;
|
4108 |
|
|
always @ (posedge wb_clk or posedge wb_rst)
|
4109 |
|
|
if (wb_rst)
|
4110 |
|
|
wb_dat_o <= {dat_width{1'b0}};
|
4111 |
|
|
else
|
4112 |
|
|
case (wb_adr_i[adr_width-1:2])
|
4113 |
|
|
`ifdef ROM
|
4114 |
|
|
`include `ROM
|
4115 |
|
|
`endif
|
4116 |
|
|
default:
|
4117 |
|
|
wb_dat_o <= dat_default;
|
4118 |
|
|
endcase // case (wb_adr_i)
|
4119 |
|
|
always @ (posedge wb_clk or posedge wb_rst)
|
4120 |
|
|
if (wb_rst)
|
4121 |
|
|
wb_ack_o <= 1'b0;
|
4122 |
|
|
else
|
4123 |
|
|
wb_ack_o <= wb_stb_i & wb_cyc_i;
|
4124 |
|
|
assign stall_o = 1'b0;
|
4125 |
|
|
endmodule
|
4126 |
|
|
// WB ROM
|
4127 |
18 |
unneback |
module vl_wb_boot_rom (
|
4128 |
17 |
unneback |
wb_adr_i, wb_stb_i, wb_cyc_i,
|
4129 |
18 |
unneback |
wb_dat_o, wb_ack_o, hit_o, wb_clk, wb_rst);
|
4130 |
|
|
parameter adr_hi = 31;
|
4131 |
|
|
parameter adr_lo = 28;
|
4132 |
|
|
parameter adr_sel = 4'hf;
|
4133 |
|
|
parameter addr_width = 5;
|
4134 |
33 |
unneback |
/*
|
4135 |
|
|
`ifndef BOOT_ROM
|
4136 |
|
|
`define BOOT_ROM "boot_rom.v"
|
4137 |
|
|
`endif
|
4138 |
|
|
*/
|
4139 |
18 |
unneback |
input [adr_hi:2] wb_adr_i;
|
4140 |
|
|
input wb_stb_i;
|
4141 |
|
|
input wb_cyc_i;
|
4142 |
|
|
output [31:0] wb_dat_o;
|
4143 |
|
|
output wb_ack_o;
|
4144 |
|
|
output hit_o;
|
4145 |
|
|
input wb_clk;
|
4146 |
|
|
input wb_rst;
|
4147 |
|
|
wire hit;
|
4148 |
|
|
reg [31:0] wb_dat;
|
4149 |
|
|
reg wb_ack;
|
4150 |
|
|
assign hit = wb_adr_i[adr_hi:adr_lo] == adr_sel;
|
4151 |
17 |
unneback |
always @ (posedge wb_clk or posedge wb_rst)
|
4152 |
|
|
if (wb_rst)
|
4153 |
18 |
unneback |
wb_dat <= 32'h15000000;
|
4154 |
17 |
unneback |
else
|
4155 |
18 |
unneback |
case (wb_adr_i[addr_width-1:2])
|
4156 |
33 |
unneback |
`ifdef BOOT_ROM
|
4157 |
|
|
`include `BOOT_ROM
|
4158 |
|
|
`endif
|
4159 |
17 |
unneback |
/*
|
4160 |
|
|
// Zero r0 and jump to 0x00000100
|
4161 |
18 |
unneback |
|
4162 |
|
|
1 : wb_dat <= 32'hA8200000;
|
4163 |
|
|
2 : wb_dat <= 32'hA8C00100;
|
4164 |
|
|
3 : wb_dat <= 32'h44003000;
|
4165 |
|
|
4 : wb_dat <= 32'h15000000;
|
4166 |
17 |
unneback |
*/
|
4167 |
|
|
default:
|
4168 |
18 |
unneback |
wb_dat <= 32'h00000000;
|
4169 |
17 |
unneback |
endcase // case (wb_adr_i)
|
4170 |
|
|
always @ (posedge wb_clk or posedge wb_rst)
|
4171 |
|
|
if (wb_rst)
|
4172 |
18 |
unneback |
wb_ack <= 1'b0;
|
4173 |
17 |
unneback |
else
|
4174 |
18 |
unneback |
wb_ack <= wb_stb_i & wb_cyc_i & hit & !wb_ack;
|
4175 |
|
|
assign hit_o = hit;
|
4176 |
|
|
assign wb_dat_o = wb_dat & {32{wb_ack}};
|
4177 |
|
|
assign wb_ack_o = wb_ack;
|
4178 |
17 |
unneback |
endmodule
|
4179 |
106 |
unneback |
module vl_wb_dpram (
|
4180 |
|
|
// wishbone slave side a
|
4181 |
|
|
wbsa_dat_i, wbsa_adr_i, wbsa_sel_i, wbsa_cti_i, wbsa_bte_i, wbsa_we_i, wbsa_cyc_i, wbsa_stb_i, wbsa_dat_o, wbsa_ack_o, wbsa_stall_o,
|
4182 |
|
|
wbsa_clk, wbsa_rst,
|
4183 |
|
|
// wishbone slave side b
|
4184 |
|
|
wbsb_dat_i, wbsb_adr_i, wbsb_sel_i, wbsb_cti_i, wbsb_bte_i, wbsb_we_i, wbsb_cyc_i, wbsb_stb_i, wbsb_dat_o, wbsb_ack_o, wbsb_stall_o,
|
4185 |
|
|
wbsb_clk, wbsb_rst);
|
4186 |
|
|
parameter data_width_a = 32;
|
4187 |
|
|
parameter data_width_b = data_width_a;
|
4188 |
|
|
parameter addr_width_a = 8;
|
4189 |
|
|
localparam addr_width_b = data_width_a * addr_width_a / data_width_b;
|
4190 |
|
|
parameter mem_size = (addr_width_a>addr_width_b) ? (1<<addr_width_a) : (1<<addr_width_b);
|
4191 |
|
|
parameter max_burst_width_a = 4;
|
4192 |
|
|
parameter max_burst_width_b = max_burst_width_a;
|
4193 |
|
|
parameter mode = "B3";
|
4194 |
109 |
unneback |
parameter memory_init = 0;
|
4195 |
|
|
parameter memory_file = "vl_ram.v";
|
4196 |
142 |
unneback |
parameter debug = 0;
|
4197 |
106 |
unneback |
input [data_width_a-1:0] wbsa_dat_i;
|
4198 |
|
|
input [addr_width_a-1:0] wbsa_adr_i;
|
4199 |
|
|
input [data_width_a/8-1:0] wbsa_sel_i;
|
4200 |
|
|
input [2:0] wbsa_cti_i;
|
4201 |
|
|
input [1:0] wbsa_bte_i;
|
4202 |
|
|
input wbsa_we_i, wbsa_cyc_i, wbsa_stb_i;
|
4203 |
|
|
output [data_width_a-1:0] wbsa_dat_o;
|
4204 |
109 |
unneback |
output wbsa_ack_o;
|
4205 |
106 |
unneback |
output wbsa_stall_o;
|
4206 |
|
|
input wbsa_clk, wbsa_rst;
|
4207 |
|
|
input [data_width_b-1:0] wbsb_dat_i;
|
4208 |
|
|
input [addr_width_b-1:0] wbsb_adr_i;
|
4209 |
|
|
input [data_width_b/8-1:0] wbsb_sel_i;
|
4210 |
|
|
input [2:0] wbsb_cti_i;
|
4211 |
|
|
input [1:0] wbsb_bte_i;
|
4212 |
|
|
input wbsb_we_i, wbsb_cyc_i, wbsb_stb_i;
|
4213 |
|
|
output [data_width_b-1:0] wbsb_dat_o;
|
4214 |
109 |
unneback |
output wbsb_ack_o;
|
4215 |
106 |
unneback |
output wbsb_stall_o;
|
4216 |
|
|
input wbsb_clk, wbsb_rst;
|
4217 |
|
|
wire [addr_width_a-1:0] adr_a;
|
4218 |
|
|
wire [addr_width_b-1:0] adr_b;
|
4219 |
|
|
wire we_a, we_b;
|
4220 |
|
|
generate
|
4221 |
|
|
if (mode=="B3") begin : b3_inst
|
4222 |
|
|
vl_wb_adr_inc # ( .adr_width(addr_width_a), .max_burst_width(max_burst_width_a)) adr_inc0 (
|
4223 |
|
|
.cyc_i(wbsa_cyc_i),
|
4224 |
|
|
.stb_i(wbsa_stb_i),
|
4225 |
|
|
.cti_i(wbsa_cti_i),
|
4226 |
|
|
.bte_i(wbsa_bte_i),
|
4227 |
|
|
.adr_i(wbsa_adr_i),
|
4228 |
|
|
.we_i(wbsa_we_i),
|
4229 |
|
|
.ack_o(wbsa_ack_o),
|
4230 |
|
|
.adr_o(adr_a),
|
4231 |
|
|
.clk(wbsa_clk),
|
4232 |
|
|
.rst(wbsa_rst));
|
4233 |
|
|
assign we_a = wbsa_we_i & wbsa_ack_o;
|
4234 |
|
|
vl_wb_adr_inc # ( .adr_width(addr_width_b), .max_burst_width(max_burst_width_b)) adr_inc1 (
|
4235 |
|
|
.cyc_i(wbsb_cyc_i),
|
4236 |
|
|
.stb_i(wbsb_stb_i),
|
4237 |
|
|
.cti_i(wbsb_cti_i),
|
4238 |
|
|
.bte_i(wbsb_bte_i),
|
4239 |
|
|
.adr_i(wbsb_adr_i),
|
4240 |
|
|
.we_i(wbsb_we_i),
|
4241 |
|
|
.ack_o(wbsb_ack_o),
|
4242 |
|
|
.adr_o(adr_b),
|
4243 |
|
|
.clk(wbsb_clk),
|
4244 |
|
|
.rst(wbsb_rst));
|
4245 |
|
|
assign we_b = wbsb_we_i & wbsb_ack_o;
|
4246 |
|
|
end else if (mode=="B4") begin : b4_inst
|
4247 |
142 |
unneback |
assign adr_a = wbsa_adr_i;
|
4248 |
109 |
unneback |
vl_dff dffacka ( .d(wbsa_stb_i & wbsa_cyc_i), .q(wbsa_ack_o), .clk(wbsa_clk), .rst(wbsa_rst));
|
4249 |
106 |
unneback |
assign wbsa_stall_o = 1'b0;
|
4250 |
|
|
assign we_a = wbsa_we_i & wbsa_cyc_i & wbsa_stb_i;
|
4251 |
142 |
unneback |
assign adr_b = wbsb_adr_i;
|
4252 |
109 |
unneback |
vl_dff dffackb ( .d(wbsb_stb_i & wbsb_cyc_i), .q(wbsb_ack_o), .clk(wbsb_clk), .rst(wbsb_rst));
|
4253 |
106 |
unneback |
assign wbsb_stall_o = 1'b0;
|
4254 |
|
|
assign we_b = wbsb_we_i & wbsb_cyc_i & wbsb_stb_i;
|
4255 |
|
|
end
|
4256 |
|
|
endgenerate
|
4257 |
109 |
unneback |
vl_dpram_be_2r2w # ( .a_data_width(data_width_a), .a_addr_width(addr_width_a), .mem_size(mem_size),
|
4258 |
110 |
unneback |
.b_data_width(data_width_b),
|
4259 |
142 |
unneback |
.memory_init(memory_init), .memory_file(memory_file),
|
4260 |
|
|
.debug(debug))
|
4261 |
106 |
unneback |
ram_i (
|
4262 |
|
|
.d_a(wbsa_dat_i),
|
4263 |
|
|
.q_a(wbsa_dat_o),
|
4264 |
|
|
.adr_a(adr_a),
|
4265 |
|
|
.be_a(wbsa_sel_i),
|
4266 |
|
|
.we_a(we_a),
|
4267 |
|
|
.clk_a(wbsa_clk),
|
4268 |
|
|
.d_b(wbsb_dat_i),
|
4269 |
|
|
.q_b(wbsb_dat_o),
|
4270 |
|
|
.adr_b(adr_b),
|
4271 |
|
|
.be_b(wbsb_sel_i),
|
4272 |
|
|
.we_b(we_b),
|
4273 |
|
|
.clk_b(wbsb_clk) );
|
4274 |
|
|
endmodule
|
4275 |
101 |
unneback |
module vl_wb_cache (
|
4276 |
103 |
unneback |
wbs_dat_i, wbs_adr_i, wbs_sel_i, wbs_cti_i, wbs_bte_i, wbs_we_i, wbs_stb_i, wbs_cyc_i, wbs_dat_o, wbs_ack_o, wbs_stall_o, wbs_clk, wbs_rst,
|
4277 |
98 |
unneback |
wbm_dat_o, wbm_adr_o, wbm_sel_o, wbm_cti_o, wbm_bte_o, wbm_we_o, wbm_stb_o, wbm_cyc_o, wbm_dat_i, wbm_ack_i, wbm_stall_i, wbm_clk, wbm_rst
|
4278 |
97 |
unneback |
);
|
4279 |
|
|
parameter dw_s = 32;
|
4280 |
|
|
parameter aw_s = 24;
|
4281 |
|
|
parameter dw_m = dw_s;
|
4282 |
124 |
unneback |
//localparam aw_m = dw_s * aw_s / dw_m;
|
4283 |
|
|
localparam aw_m =
|
4284 |
126 |
unneback |
(dw_s==dw_m) ? aw_s :
|
4285 |
|
|
(dw_s==dw_m*2) ? aw_s+1 :
|
4286 |
|
|
(dw_s==dw_m*4) ? aw_s+2 :
|
4287 |
|
|
(dw_s==dw_m*8) ? aw_s+3 :
|
4288 |
|
|
(dw_s==dw_m*16) ? aw_s+4 :
|
4289 |
|
|
(dw_s==dw_m*32) ? aw_s+5 :
|
4290 |
|
|
(dw_s==dw_m/2) ? aw_s-1 :
|
4291 |
127 |
unneback |
(dw_s==dw_m/4) ? aw_s-2 :
|
4292 |
126 |
unneback |
(dw_s==dw_m/8) ? aw_s-3 :
|
4293 |
|
|
(dw_s==dw_m/16) ? aw_s-4 :
|
4294 |
|
|
(dw_s==dw_m/32) ? aw_s-5 : 0;
|
4295 |
100 |
unneback |
parameter wbs_max_burst_width = 4;
|
4296 |
103 |
unneback |
parameter wbs_mode = "B3";
|
4297 |
97 |
unneback |
parameter async = 1; // wbs_clk != wbm_clk
|
4298 |
|
|
parameter nr_of_ways = 1;
|
4299 |
|
|
parameter aw_offset = 4; // 4 => 16 words per cache line
|
4300 |
|
|
parameter aw_slot = 10;
|
4301 |
100 |
unneback |
parameter valid_mem = 0;
|
4302 |
|
|
parameter debug = 0;
|
4303 |
|
|
localparam aw_b_offset = aw_offset * dw_s / dw_m;
|
4304 |
98 |
unneback |
localparam aw_tag = aw_s - aw_slot - aw_offset;
|
4305 |
97 |
unneback |
parameter wbm_burst_size = 4; // valid options 4,8,16
|
4306 |
98 |
unneback |
localparam bte = (wbm_burst_size==4) ? 2'b01 : (wbm_burst_size==8) ? 2'b10 : 2'b11;
|
4307 |
100 |
unneback |
localparam wbm_burst_width = (wbm_burst_size==1) ? 0 : (wbm_burst_size==2) ? 1 : (wbm_burst_size==4) ? 2 : (wbm_burst_size==8) ? 3 : (wbm_burst_size==16) ? 4 : (wbm_burst_size==32) ? 5 : (wbm_burst_size==64) ? 6 : (wbm_burst_size==128) ? 7 : 8;
|
4308 |
97 |
unneback |
localparam nr_of_wbm_burst = ((1<<aw_offset)/wbm_burst_size) * dw_s / dw_m;
|
4309 |
100 |
unneback |
localparam nr_of_wbm_burst_width = (nr_of_wbm_burst==1) ? 0 : (nr_of_wbm_burst==2) ? 1 : (nr_of_wbm_burst==4) ? 2 : (nr_of_wbm_burst==8) ? 3 : (nr_of_wbm_burst==16) ? 4 : (nr_of_wbm_burst==32) ? 5 : (nr_of_wbm_burst==64) ? 6 : (nr_of_wbm_burst==128) ? 7 : 8;
|
4310 |
97 |
unneback |
input [dw_s-1:0] wbs_dat_i;
|
4311 |
|
|
input [aw_s-1:0] wbs_adr_i; // dont include a1,a0
|
4312 |
98 |
unneback |
input [dw_s/8-1:0] wbs_sel_i;
|
4313 |
97 |
unneback |
input [2:0] wbs_cti_i;
|
4314 |
|
|
input [1:0] wbs_bte_i;
|
4315 |
98 |
unneback |
input wbs_we_i, wbs_stb_i, wbs_cyc_i;
|
4316 |
97 |
unneback |
output [dw_s-1:0] wbs_dat_o;
|
4317 |
|
|
output wbs_ack_o;
|
4318 |
103 |
unneback |
output wbs_stall_o;
|
4319 |
97 |
unneback |
input wbs_clk, wbs_rst;
|
4320 |
|
|
output [dw_m-1:0] wbm_dat_o;
|
4321 |
|
|
output [aw_m-1:0] wbm_adr_o;
|
4322 |
|
|
output [dw_m/8-1:0] wbm_sel_o;
|
4323 |
|
|
output [2:0] wbm_cti_o;
|
4324 |
|
|
output [1:0] wbm_bte_o;
|
4325 |
98 |
unneback |
output wbm_stb_o, wbm_cyc_o, wbm_we_o;
|
4326 |
97 |
unneback |
input [dw_m-1:0] wbm_dat_i;
|
4327 |
|
|
input wbm_ack_i;
|
4328 |
|
|
input wbm_stall_i;
|
4329 |
|
|
input wbm_clk, wbm_rst;
|
4330 |
100 |
unneback |
wire valid, dirty, hit;
|
4331 |
97 |
unneback |
wire [aw_tag-1:0] tag;
|
4332 |
|
|
wire tag_mem_we;
|
4333 |
|
|
wire [aw_tag-1:0] wbs_adr_tag;
|
4334 |
|
|
wire [aw_slot-1:0] wbs_adr_slot;
|
4335 |
98 |
unneback |
wire [aw_offset-1:0] wbs_adr_word;
|
4336 |
|
|
wire [aw_s-1:0] wbs_adr;
|
4337 |
97 |
unneback |
reg [1:0] state;
|
4338 |
|
|
localparam idle = 2'h0;
|
4339 |
|
|
localparam rdwr = 2'h1;
|
4340 |
|
|
localparam push = 2'h2;
|
4341 |
|
|
localparam pull = 2'h3;
|
4342 |
|
|
wire eoc;
|
4343 |
103 |
unneback |
wire we;
|
4344 |
97 |
unneback |
// cdc
|
4345 |
|
|
wire done, mem_alert, mem_done;
|
4346 |
98 |
unneback |
// wbm side
|
4347 |
|
|
reg [aw_m-1:0] wbm_radr;
|
4348 |
|
|
reg [aw_m-1:0] wbm_wadr;
|
4349 |
137 |
unneback |
//wire [aw_slot-1:0] wbm_adr;
|
4350 |
|
|
wire [aw_m-1:0] wbm_adr;
|
4351 |
98 |
unneback |
wire wbm_radr_cke, wbm_wadr_cke;
|
4352 |
100 |
unneback |
reg [2:0] phase;
|
4353 |
|
|
// phase = {we,stb,cyc}
|
4354 |
|
|
localparam wbm_wait = 3'b000;
|
4355 |
|
|
localparam wbm_wr = 3'b111;
|
4356 |
|
|
localparam wbm_wr_drain = 3'b101;
|
4357 |
|
|
localparam wbm_rd = 3'b011;
|
4358 |
|
|
localparam wbm_rd_drain = 3'b001;
|
4359 |
97 |
unneback |
assign {wbs_adr_tag, wbs_adr_slot, wbs_adr_word} = wbs_adr_i;
|
4360 |
100 |
unneback |
generate
|
4361 |
|
|
if (valid_mem==0) begin : no_valid_mem
|
4362 |
|
|
assign valid = 1'b1;
|
4363 |
|
|
end else begin : valid_mem_inst
|
4364 |
|
|
vl_dpram_1r1w
|
4365 |
|
|
# ( .data_width(1), .addr_width(aw_slot), .memory_init(2), .debug(debug))
|
4366 |
|
|
valid_mem ( .d_a(1'b1), .adr_a(wbs_adr_slot), .we_a(mem_done), .clk_a(wbm_clk),
|
4367 |
|
|
.q_b(valid), .adr_b(wbs_adr_slot), .clk_b(wbs_clk));
|
4368 |
|
|
end
|
4369 |
|
|
endgenerate
|
4370 |
|
|
vl_dpram_1r1w
|
4371 |
|
|
# ( .data_width(aw_tag), .addr_width(aw_slot), .memory_init(2), .debug(debug))
|
4372 |
|
|
tag_mem ( .d_a(wbs_adr_tag), .adr_a(wbs_adr_slot), .we_a(mem_done), .clk_a(wbm_clk),
|
4373 |
|
|
.q_b(tag), .adr_b(wbs_adr_slot), .clk_b(wbs_clk));
|
4374 |
|
|
assign hit = wbs_adr_tag == tag;
|
4375 |
|
|
vl_dpram_1r2w
|
4376 |
|
|
# ( .data_width(1), .addr_width(aw_slot), .memory_init(2), .debug(debug))
|
4377 |
|
|
dirty_mem (
|
4378 |
|
|
.d_a(1'b1), .q_a(dirty), .adr_a(wbs_adr_slot), .we_a(wbs_cyc_i & wbs_we_i & wbs_ack_o), .clk_a(wbs_clk),
|
4379 |
|
|
.d_b(1'b0), .adr_b(wbs_adr_slot), .we_b(mem_done), .clk_b(wbm_clk));
|
4380 |
103 |
unneback |
generate
|
4381 |
|
|
if (wbs_mode=="B3") begin : inst_b3
|
4382 |
100 |
unneback |
vl_wb_adr_inc # ( .adr_width(aw_s), .max_burst_width(wbs_max_burst_width)) adr_inc0 (
|
4383 |
|
|
.cyc_i(wbs_cyc_i & (state==rdwr) & hit & valid),
|
4384 |
|
|
.stb_i(wbs_stb_i & (state==rdwr) & hit & valid), // throttle depending on valid
|
4385 |
97 |
unneback |
.cti_i(wbs_cti_i),
|
4386 |
|
|
.bte_i(wbs_bte_i),
|
4387 |
|
|
.adr_i(wbs_adr_i),
|
4388 |
|
|
.we_i (wbs_we_i),
|
4389 |
|
|
.ack_o(wbs_ack_o),
|
4390 |
|
|
.adr_o(wbs_adr),
|
4391 |
100 |
unneback |
.clk(wbs_clk),
|
4392 |
|
|
.rst(wbs_rst));
|
4393 |
103 |
unneback |
assign eoc = (wbs_cti_i==3'b000 | wbs_cti_i==3'b111) & wbs_ack_o;
|
4394 |
|
|
assign we = wbs_cyc_i & wbs_we_i & wbs_ack_o;
|
4395 |
|
|
end else if (wbs_mode=="B4") begin : inst_b4
|
4396 |
|
|
end
|
4397 |
|
|
endgenerate
|
4398 |
131 |
unneback |
localparam cache_mem_b_aw =
|
4399 |
|
|
(dw_s==dw_m) ? aw_slot+aw_offset :
|
4400 |
133 |
unneback |
(dw_s==dw_m/2) ? aw_slot+aw_offset-1 :
|
4401 |
|
|
(dw_s==dw_m/4) ? aw_slot+aw_offset-2 :
|
4402 |
|
|
(dw_s==dw_m/8) ? aw_slot+aw_offset-3 :
|
4403 |
|
|
(dw_s==dw_m/16) ? aw_slot+aw_offset-4 :
|
4404 |
|
|
(dw_s==dw_m*2) ? aw_slot+aw_offset+1 :
|
4405 |
|
|
(dw_s==dw_m*4) ? aw_slot+aw_offset+2 :
|
4406 |
|
|
(dw_s==dw_m*8) ? aw_slot+aw_offset+3 :
|
4407 |
|
|
(dw_s==dw_m*16) ? aw_slot+aw_offset+4 : 0;
|
4408 |
97 |
unneback |
vl_dpram_be_2r2w
|
4409 |
100 |
unneback |
# ( .a_data_width(dw_s), .a_addr_width(aw_slot+aw_offset), .b_data_width(dw_m), .debug(debug))
|
4410 |
103 |
unneback |
cache_mem ( .d_a(wbs_dat_i), .adr_a(wbs_adr[aw_slot+aw_offset-1:0]), .be_a(wbs_sel_i), .we_a(we), .q_a(wbs_dat_o), .clk_a(wbs_clk),
|
4411 |
136 |
unneback |
.d_b(wbm_dat_i), .adr_b(wbm_adr[cache_mem_b_aw-1:0]), .be_b(wbm_sel_o), .we_b(wbm_cyc_o & !wbm_we_o & wbm_ack_i), .q_b(wbm_dat_o), .clk_b(wbm_clk));
|
4412 |
97 |
unneback |
always @ (posedge wbs_clk or posedge wbs_rst)
|
4413 |
|
|
if (wbs_rst)
|
4414 |
98 |
unneback |
state <= idle;
|
4415 |
97 |
unneback |
else
|
4416 |
|
|
case (state)
|
4417 |
|
|
idle:
|
4418 |
|
|
if (wbs_cyc_i)
|
4419 |
|
|
state <= rdwr;
|
4420 |
|
|
rdwr:
|
4421 |
100 |
unneback |
casex ({valid, hit, dirty, eoc})
|
4422 |
|
|
4'b0xxx: state <= pull;
|
4423 |
|
|
4'b11x1: state <= idle;
|
4424 |
|
|
4'b101x: state <= push;
|
4425 |
|
|
4'b100x: state <= pull;
|
4426 |
|
|
endcase
|
4427 |
97 |
unneback |
push:
|
4428 |
|
|
if (done)
|
4429 |
|
|
state <= rdwr;
|
4430 |
|
|
pull:
|
4431 |
|
|
if (done)
|
4432 |
|
|
state <= rdwr;
|
4433 |
|
|
default: state <= idle;
|
4434 |
|
|
endcase
|
4435 |
|
|
// cdc
|
4436 |
|
|
generate
|
4437 |
|
|
if (async==1) begin : cdc0
|
4438 |
100 |
unneback |
vl_cdc cdc0 ( .start_pl(state==rdwr & (!valid | !hit)), .take_it_pl(mem_alert), .take_it_grant_pl(mem_done), .got_it_pl(done), .clk_src(wbs_clk), .rst_src(wbs_rst), .clk_dst(wbm_clk), .rst_dst(wbm_rst));
|
4439 |
97 |
unneback |
end
|
4440 |
|
|
else begin : nocdc
|
4441 |
100 |
unneback |
assign mem_alert = state==rdwr & (!valid | !hit);
|
4442 |
97 |
unneback |
assign done = mem_done;
|
4443 |
|
|
end
|
4444 |
|
|
endgenerate
|
4445 |
136 |
unneback |
// FSM generating a number of bursts 4 cycles
|
4446 |
97 |
unneback |
// actual number depends on data width ratio
|
4447 |
|
|
// nr_of_wbm_burst
|
4448 |
101 |
unneback |
reg [nr_of_wbm_burst_width+wbm_burst_width-1:0] cnt_rw, cnt_ack;
|
4449 |
97 |
unneback |
always @ (posedge wbm_clk or posedge wbm_rst)
|
4450 |
|
|
if (wbm_rst)
|
4451 |
100 |
unneback |
cnt_rw <= {wbm_burst_width{1'b0}};
|
4452 |
97 |
unneback |
else
|
4453 |
100 |
unneback |
if (wbm_cyc_o & wbm_stb_o & !wbm_stall_i)
|
4454 |
|
|
cnt_rw <= cnt_rw + 1;
|
4455 |
98 |
unneback |
always @ (posedge wbm_clk or posedge wbm_rst)
|
4456 |
|
|
if (wbm_rst)
|
4457 |
100 |
unneback |
cnt_ack <= {wbm_burst_width{1'b0}};
|
4458 |
98 |
unneback |
else
|
4459 |
100 |
unneback |
if (wbm_ack_i)
|
4460 |
|
|
cnt_ack <= cnt_ack + 1;
|
4461 |
|
|
generate
|
4462 |
101 |
unneback |
if (nr_of_wbm_burst==1) begin : one_burst
|
4463 |
98 |
unneback |
always @ (posedge wbm_clk or posedge wbm_rst)
|
4464 |
|
|
if (wbm_rst)
|
4465 |
|
|
phase <= wbm_wait;
|
4466 |
|
|
else
|
4467 |
|
|
case (phase)
|
4468 |
|
|
wbm_wait:
|
4469 |
|
|
if (mem_alert)
|
4470 |
100 |
unneback |
if (state==push)
|
4471 |
|
|
phase <= wbm_wr;
|
4472 |
|
|
else
|
4473 |
|
|
phase <= wbm_rd;
|
4474 |
98 |
unneback |
wbm_wr:
|
4475 |
100 |
unneback |
if (&cnt_rw)
|
4476 |
|
|
phase <= wbm_wr_drain;
|
4477 |
|
|
wbm_wr_drain:
|
4478 |
|
|
if (&cnt_ack)
|
4479 |
98 |
unneback |
phase <= wbm_rd;
|
4480 |
|
|
wbm_rd:
|
4481 |
100 |
unneback |
if (&cnt_rw)
|
4482 |
|
|
phase <= wbm_rd_drain;
|
4483 |
|
|
wbm_rd_drain:
|
4484 |
|
|
if (&cnt_ack)
|
4485 |
|
|
phase <= wbm_wait;
|
4486 |
98 |
unneback |
default: phase <= wbm_wait;
|
4487 |
|
|
endcase
|
4488 |
100 |
unneback |
end else begin : multiple_burst
|
4489 |
101 |
unneback |
always @ (posedge wbm_clk or posedge wbm_rst)
|
4490 |
|
|
if (wbm_rst)
|
4491 |
|
|
phase <= wbm_wait;
|
4492 |
|
|
else
|
4493 |
|
|
case (phase)
|
4494 |
|
|
wbm_wait:
|
4495 |
|
|
if (mem_alert)
|
4496 |
|
|
if (state==push)
|
4497 |
|
|
phase <= wbm_wr;
|
4498 |
|
|
else
|
4499 |
|
|
phase <= wbm_rd;
|
4500 |
|
|
wbm_wr:
|
4501 |
|
|
if (&cnt_rw[wbm_burst_width-1:0])
|
4502 |
|
|
phase <= wbm_wr_drain;
|
4503 |
|
|
wbm_wr_drain:
|
4504 |
|
|
if (&cnt_ack)
|
4505 |
|
|
phase <= wbm_rd;
|
4506 |
|
|
else if (&cnt_ack[wbm_burst_width-1:0])
|
4507 |
|
|
phase <= wbm_wr;
|
4508 |
|
|
wbm_rd:
|
4509 |
|
|
if (&cnt_rw[wbm_burst_width-1:0])
|
4510 |
|
|
phase <= wbm_rd_drain;
|
4511 |
|
|
wbm_rd_drain:
|
4512 |
|
|
if (&cnt_ack)
|
4513 |
|
|
phase <= wbm_wait;
|
4514 |
|
|
else if (&cnt_ack[wbm_burst_width-1:0])
|
4515 |
|
|
phase <= wbm_rd;
|
4516 |
|
|
default: phase <= wbm_wait;
|
4517 |
|
|
endcase
|
4518 |
100 |
unneback |
end
|
4519 |
|
|
endgenerate
|
4520 |
101 |
unneback |
assign mem_done = phase==wbm_rd_drain & (&cnt_ack) & wbm_ack_i;
|
4521 |
100 |
unneback |
assign wbm_adr_o = (phase[2]) ? {tag, wbs_adr_slot, cnt_rw} : {wbs_adr_tag, wbs_adr_slot, cnt_rw};
|
4522 |
137 |
unneback |
assign wbm_adr = (phase[2]) ? {wbs_adr_slot, cnt_rw} : {wbs_adr_slot, cnt_ack};
|
4523 |
100 |
unneback |
assign wbm_sel_o = {dw_m/8{1'b1}};
|
4524 |
|
|
assign wbm_cti_o = (&cnt_rw | !wbm_stb_o) ? 3'b111 : 3'b010;
|
4525 |
98 |
unneback |
assign wbm_bte_o = bte;
|
4526 |
100 |
unneback |
assign {wbm_we_o, wbm_stb_o, wbm_cyc_o} = phase;
|
4527 |
97 |
unneback |
endmodule
|
4528 |
103 |
unneback |
// Wishbone to avalon bridge supporting one type of burst transfer only
|
4529 |
|
|
// intended use is together with cache above
|
4530 |
|
|
// WB B4 -> pipelined avalon
|
4531 |
|
|
module vl_wb_avalon_bridge (
|
4532 |
|
|
// wishbone slave side
|
4533 |
|
|
wbs_dat_i, wbs_adr_i, wbs_sel_i, wbs_bte_i, wbs_cti_i, wbs_we_i, wbs_cyc_i, wbs_stb_i, wbs_dat_o, wbs_ack_o, wbs_stall_o,
|
4534 |
|
|
// avalon master side
|
4535 |
|
|
readdata, readdatavalid, address, read, be, write, burstcount, writedata, waitrequest, beginbursttransfer,
|
4536 |
136 |
unneback |
init_done,
|
4537 |
103 |
unneback |
// common
|
4538 |
|
|
clk, rst);
|
4539 |
|
|
parameter adr_width = 30;
|
4540 |
|
|
parameter dat_width = 32;
|
4541 |
|
|
parameter burst_size = 4;
|
4542 |
|
|
input [dat_width-1:0] wbs_dat_i;
|
4543 |
|
|
input [adr_width-1:0] wbs_adr_i;
|
4544 |
|
|
input [dat_width/8-1:0] wbs_sel_i;
|
4545 |
|
|
input [1:0] wbs_bte_i;
|
4546 |
|
|
input [2:0] wbs_cti_i;
|
4547 |
|
|
input wbs_we_i;
|
4548 |
|
|
input wbs_cyc_i;
|
4549 |
|
|
input wbs_stb_i;
|
4550 |
130 |
unneback |
output [dat_width-1:0] wbs_dat_o;
|
4551 |
103 |
unneback |
output wbs_ack_o;
|
4552 |
|
|
output wbs_stall_o;
|
4553 |
|
|
input [dat_width-1:0] readdata;
|
4554 |
|
|
input readdatavalid;
|
4555 |
|
|
output [dat_width-1:0] writedata;
|
4556 |
|
|
output [adr_width-1:0] address;
|
4557 |
|
|
output [dat_width/8-1:0] be;
|
4558 |
|
|
output write;
|
4559 |
|
|
output read;
|
4560 |
|
|
output beginbursttransfer;
|
4561 |
|
|
output [3:0] burstcount;
|
4562 |
|
|
input waitrequest;
|
4563 |
136 |
unneback |
input init_done;
|
4564 |
103 |
unneback |
input clk, rst;
|
4565 |
136 |
unneback |
// cnt1 - initiated read or writes
|
4566 |
|
|
// cnt2 - # of read or writes in pipeline
|
4567 |
|
|
reg [3:0] cnt1;
|
4568 |
|
|
reg [3:0] cnt2;
|
4569 |
|
|
reg next_state, state;
|
4570 |
|
|
localparam s0 = 1'b0;
|
4571 |
|
|
localparam s1 = 1'b1;
|
4572 |
|
|
wire eoc;
|
4573 |
|
|
always @ *
|
4574 |
|
|
begin
|
4575 |
|
|
case (state)
|
4576 |
|
|
s0: if (init_done & wbs_cyc_i) next_state <= s1;
|
4577 |
|
|
s1:
|
4578 |
|
|
default: next_state <= state;
|
4579 |
|
|
end
|
4580 |
|
|
end
|
4581 |
103 |
unneback |
always @ (posedge clk or posedge rst)
|
4582 |
|
|
if (rst)
|
4583 |
136 |
unneback |
state <= s0;
|
4584 |
103 |
unneback |
else
|
4585 |
136 |
unneback |
state <= next_state;
|
4586 |
|
|
assign eoc = state==s1 & !(read | write) & (& !waitrequest & cnt2=;
|
4587 |
|
|
always @ (posedge clk or posedge rst)
|
4588 |
|
|
if (rst)
|
4589 |
|
|
cnt1 <= 4'h0;
|
4590 |
|
|
else
|
4591 |
|
|
if (read & !waitrequest & init_done)
|
4592 |
|
|
cnt1 <= burst_size - 1;
|
4593 |
|
|
else if (write & !waitrequest & init_done)
|
4594 |
|
|
cnt1 <= cnt1 + 4'h1;
|
4595 |
|
|
else if (next_state==idle)
|
4596 |
|
|
cnt1 <= 4'h0;
|
4597 |
|
|
always @ (posedge clk or posedge rst)
|
4598 |
|
|
if (rst)
|
4599 |
|
|
cnt2 <= 4'h0;
|
4600 |
|
|
else
|
4601 |
|
|
if (read & !waitrequest & init_done)
|
4602 |
|
|
cnt2 <= burst_size - 1;
|
4603 |
|
|
else if (write & !waitrequest & init_done & )
|
4604 |
|
|
cnt2 <= cnt1 + 4'h1;
|
4605 |
|
|
else if (next_state==idle)
|
4606 |
|
|
cnt2 <= 4'h0;
|
4607 |
103 |
unneback |
reg wr_ack;
|
4608 |
|
|
always @ (posedge clk or posedge rst)
|
4609 |
|
|
if (rst)
|
4610 |
|
|
wr_ack <= 1'b0;
|
4611 |
|
|
else
|
4612 |
|
|
wr_ack <= (wbs_we_i & wbs_cyc_i & wbs_stb_i & !wbs_stall_o);
|
4613 |
|
|
// to avalon
|
4614 |
|
|
assign writedata = wbs_dat_i;
|
4615 |
|
|
assign address = wbs_adr_i;
|
4616 |
|
|
assign be = wbs_sel_i;
|
4617 |
136 |
unneback |
assign write = cnt!=4'h0 & wbs_cyc_i & wbs_we_i;
|
4618 |
|
|
assign read = cnt!=4'h0 & wbs_cyc_i & !wbs_we_i;
|
4619 |
|
|
assign beginbursttransfer = state==s0 & next_state==s1;
|
4620 |
103 |
unneback |
assign burstcount = burst_size;
|
4621 |
|
|
// to wishbone
|
4622 |
|
|
assign wbs_dat_o = readdata;
|
4623 |
|
|
assign wbs_ack_o = wr_ack | readdatavalid;
|
4624 |
|
|
assign wbs_stall_o = waitrequest;
|
4625 |
|
|
endmodule
|
4626 |
|
|
module vl_wb_avalon_mem_cache (
|
4627 |
|
|
wbs_dat_i, wbs_adr_i, wbs_sel_i, wbs_cti_i, wbs_bte_i, wbs_we_i, wbs_stb_i, wbs_cyc_i, wbs_dat_o, wbs_ack_o, wbs_stall_o, wbs_clk, wbs_rst,
|
4628 |
|
|
readdata, readdatavalid, address, read, be, write, burstcount, writedata, waitrequest, beginbursttransfer, clk, rst
|
4629 |
|
|
);
|
4630 |
|
|
// wishbone
|
4631 |
|
|
parameter wb_dat_width = 32;
|
4632 |
|
|
parameter wb_adr_width = 22;
|
4633 |
|
|
parameter wb_max_burst_width = 4;
|
4634 |
|
|
parameter wb_mode = "B4";
|
4635 |
|
|
// avalon
|
4636 |
|
|
parameter avalon_dat_width = 32;
|
4637 |
121 |
unneback |
//localparam avalon_adr_width = wb_dat_width * wb_adr_width / avalon_dat_width;
|
4638 |
122 |
unneback |
localparam avalon_adr_width =
|
4639 |
|
|
(wb_dat_width==avalon_dat_width) ? wb_adr_width :
|
4640 |
|
|
(wb_dat_width==avalon_dat_width*2) ? wb_adr_width+1 :
|
4641 |
|
|
(wb_dat_width==avalon_dat_width*4) ? wb_adr_width+2 :
|
4642 |
|
|
(wb_dat_width==avalon_dat_width*8) ? wb_adr_width+3 :
|
4643 |
|
|
(wb_dat_width==avalon_dat_width*16) ? wb_adr_width+4 :
|
4644 |
|
|
(wb_dat_width==avalon_dat_width*32) ? wb_adr_width+5 :
|
4645 |
|
|
(wb_dat_width==avalon_dat_width/2) ? wb_adr_width-1 :
|
4646 |
|
|
(wb_dat_width==avalon_dat_width/4) ? wb_adr_width-2 :
|
4647 |
|
|
(wb_dat_width==avalon_dat_width/8) ? wb_adr_width-3 :
|
4648 |
|
|
(wb_dat_width==avalon_dat_width/16) ? wb_adr_width-4 :
|
4649 |
123 |
unneback |
(wb_dat_width==avalon_dat_width/32) ? wb_adr_width-5 : 0;
|
4650 |
103 |
unneback |
parameter avalon_burst_size = 4;
|
4651 |
|
|
// cache
|
4652 |
|
|
parameter async = 1;
|
4653 |
|
|
parameter nr_of_ways = 1;
|
4654 |
|
|
parameter aw_offset = 4;
|
4655 |
|
|
parameter aw_slot = 10;
|
4656 |
|
|
parameter valid_mem = 1;
|
4657 |
|
|
// shadow RAM
|
4658 |
|
|
parameter shadow_ram = 0;
|
4659 |
|
|
parameter shadow_ram_adr_width = 10;
|
4660 |
|
|
parameter shadow_ram_size = 1024;
|
4661 |
|
|
parameter shadow_ram_init = 2; // 0: no init, 1: from file, 2: with zero
|
4662 |
|
|
parameter shadow_ram_file = "vl_ram.v";
|
4663 |
|
|
input [wb_dat_width-1:0] wbs_dat_i;
|
4664 |
|
|
input [wb_adr_width-1:0] wbs_adr_i; // dont include a1,a0
|
4665 |
|
|
input [wb_dat_width/8-1:0] wbs_sel_i;
|
4666 |
|
|
input [2:0] wbs_cti_i;
|
4667 |
|
|
input [1:0] wbs_bte_i;
|
4668 |
|
|
input wbs_we_i, wbs_stb_i, wbs_cyc_i;
|
4669 |
|
|
output [wb_dat_width-1:0] wbs_dat_o;
|
4670 |
|
|
output wbs_ack_o;
|
4671 |
|
|
output wbs_stall_o;
|
4672 |
|
|
input wbs_clk, wbs_rst;
|
4673 |
|
|
input [avalon_dat_width-1:0] readdata;
|
4674 |
|
|
input readdatavalid;
|
4675 |
|
|
output [avalon_dat_width-1:0] writedata;
|
4676 |
|
|
output [avalon_adr_width-1:0] address;
|
4677 |
|
|
output [avalon_dat_width/8-1:0] be;
|
4678 |
|
|
output write;
|
4679 |
|
|
output read;
|
4680 |
|
|
output beginbursttransfer;
|
4681 |
|
|
output [3:0] burstcount;
|
4682 |
|
|
input waitrequest;
|
4683 |
|
|
input clk, rst;
|
4684 |
|
|
wire [wb_dat_width-1:0] wb1_dat_o;
|
4685 |
|
|
wire [wb_adr_width-1:0] wb1_adr_o;
|
4686 |
|
|
wire [wb_dat_width/8-1:0] wb1_sel_o;
|
4687 |
|
|
wire [2:0] wb1_cti_o;
|
4688 |
|
|
wire [1:0] wb1_bte_o;
|
4689 |
|
|
wire wb1_we_o;
|
4690 |
|
|
wire wb1_stb_o;
|
4691 |
|
|
wire wb1_cyc_o;
|
4692 |
|
|
wire wb1_stall_i;
|
4693 |
|
|
wire [wb_dat_width-1:0] wb1_dat_i;
|
4694 |
|
|
wire wb1_ack_i;
|
4695 |
129 |
unneback |
wire [avalon_dat_width-1:0] wb2_dat_o;
|
4696 |
|
|
wire [avalon_adr_width-1:0] wb2_adr_o;
|
4697 |
|
|
wire [avalon_dat_width/8-1:0] wb2_sel_o;
|
4698 |
103 |
unneback |
wire [2:0] wb2_cti_o;
|
4699 |
|
|
wire [1:0] wb2_bte_o;
|
4700 |
|
|
wire wb2_we_o;
|
4701 |
|
|
wire wb2_stb_o;
|
4702 |
|
|
wire wb2_cyc_o;
|
4703 |
|
|
wire wb2_stall_i;
|
4704 |
129 |
unneback |
wire [avalon_dat_width-1:0] wb2_dat_i;
|
4705 |
103 |
unneback |
wire wb2_ack_i;
|
4706 |
|
|
vl_wb_shadow_ram # ( .dat_width(wb_dat_width), .mode(wb_mode), .max_burst_width(wb_max_burst_width),
|
4707 |
120 |
unneback |
.shadow_mem_adr_width(shadow_ram_adr_width), .shadow_mem_size(shadow_ram_size), .shadow_mem_init(shadow_ram_init), .shadow_mem_file(shadow_ram_file),
|
4708 |
103 |
unneback |
.main_mem_adr_width(wb_adr_width))
|
4709 |
|
|
shadow_ram0 (
|
4710 |
|
|
.wbs_dat_i(wbs_dat_i), .wbs_adr_i(wbs_adr_i), .wbs_cti_i(wbs_cti_i), .wbs_bte_i(wbs_bte_i), .wbs_sel_i(wbs_sel_i), .wbs_we_i(wbs_we_i), .wbs_stb_i(wbs_stb_i), .wbs_cyc_i(wbs_cyc_i),
|
4711 |
|
|
.wbs_dat_o(wbs_dat_o), .wbs_ack_o(wbs_ack_o), .wbs_stall_o(wbs_stall_o),
|
4712 |
|
|
.wbm_dat_o(wb1_dat_o), .wbm_adr_o(wb1_adr_o), .wbm_cti_o(wb1_cti_o), .wbm_bte_o(wb1_bte_o), .wbm_sel_o(wb1_sel_o), .wbm_we_o(wb1_we_o), .wbm_stb_o(wb1_stb_o), .wbm_cyc_o(wb1_cyc_o),
|
4713 |
|
|
.wbm_dat_i(wb1_dat_i), .wbm_ack_i(wb1_ack_i), .wbm_stall_i(wb1_stall_i),
|
4714 |
|
|
.wb_clk(wbs_clk), .wb_rst(wbs_rst));
|
4715 |
|
|
vl_wb_cache
|
4716 |
|
|
# ( .dw_s(wb_dat_width), .aw_s(wb_adr_width), .dw_m(avalon_dat_width), .wbs_mode(wb_mode), .wbs_max_burst_width(wb_max_burst_width), .async(async), .nr_of_ways(nr_of_ways), .aw_offset(aw_offset), .aw_slot(aw_slot), .valid_mem(valid_mem))
|
4717 |
|
|
cache0 (
|
4718 |
|
|
.wbs_dat_i(wb1_dat_o), .wbs_adr_i(wb1_adr_o), .wbs_sel_i(wb1_sel_o), .wbs_cti_i(wb1_cti_o), .wbs_bte_i(wb1_bte_o), .wbs_we_i(wb1_we_o), .wbs_stb_i(wb1_stb_o), .wbs_cyc_i(wb1_cyc_o),
|
4719 |
|
|
.wbs_dat_o(wb1_dat_i), .wbs_ack_o(wb1_ack_i), .wbs_stall_o(wb1_stall_i), .wbs_clk(wbs_clk), .wbs_rst(wbs_rst),
|
4720 |
|
|
.wbm_dat_o(wb2_dat_o), .wbm_adr_o(wb2_adr_o), .wbm_sel_o(wb2_sel_o), .wbm_cti_o(wb2_cti_o), .wbm_bte_o(wb2_bte_o), .wbm_we_o(wb2_we_o), .wbm_stb_o(wb2_stb_o), .wbm_cyc_o(wb2_cyc_o),
|
4721 |
|
|
.wbm_dat_i(wb2_dat_i), .wbm_ack_i(wb2_ack_i), .wbm_stall_i(wb2_stall_i), .wbm_clk(clk), .wbm_rst(rst));
|
4722 |
|
|
vl_wb_avalon_bridge # ( .adr_width(avalon_adr_width), .dat_width(avalon_dat_width), .burst_size(avalon_burst_size))
|
4723 |
|
|
bridge0 (
|
4724 |
|
|
// wishbone slave side
|
4725 |
|
|
.wbs_dat_i(wb2_dat_o), .wbs_adr_i(wb2_adr_o), .wbs_sel_i(wb2_sel_o), .wbs_bte_i(wb2_bte_o), .wbs_cti_i(wb2_cti_o), .wbs_we_i(wb2_we_o), .wbs_cyc_i(wb2_cyc_o), .wbs_stb_i(wb2_stb_o),
|
4726 |
|
|
.wbs_dat_o(wb2_dat_i), .wbs_ack_o(wb2_ack_i), .wbs_stall_o(wb2_stall_i),
|
4727 |
|
|
// avalon master side
|
4728 |
|
|
.readdata(readdata), .readdatavalid(readdatavalid), .address(address), .read(read), .be(be), .write(write), .burstcount(burstcount), .writedata(writedata), .waitrequest(waitrequest), .beginbursttransfer(beginbursttransfer),
|
4729 |
|
|
// common
|
4730 |
|
|
.clk(clk), .rst(rst));
|
4731 |
|
|
endmodule
|
4732 |
136 |
unneback |
module vl_wb_sdr_sdram (
|
4733 |
|
|
// wisbone i/f
|
4734 |
|
|
dat_i, adr_i, sel_i, we_i, cyc_i, stb_i, dat_o, ack_o, stall_o,
|
4735 |
|
|
// SDR SDRAM
|
4736 |
|
|
ba, a, cmd, cke, cs_n, dqm, dq_i, dq_o, dq_oe,
|
4737 |
|
|
// system
|
4738 |
|
|
clk, rst);
|
4739 |
|
|
// external data bus size
|
4740 |
|
|
parameter dat_size = 16;
|
4741 |
|
|
// memory geometry parameters
|
4742 |
|
|
parameter ba_size = 2;
|
4743 |
|
|
parameter row_size = 13;
|
4744 |
|
|
parameter col_size = 9;
|
4745 |
|
|
parameter cl = 2;
|
4746 |
|
|
// memory timing parameters
|
4747 |
|
|
parameter tRFC = 9;
|
4748 |
|
|
parameter tRP = 2;
|
4749 |
|
|
parameter tRCD = 2;
|
4750 |
|
|
parameter tMRD = 2;
|
4751 |
|
|
// LMR
|
4752 |
|
|
// [12:10] reserved
|
4753 |
|
|
// [9] WB, write burst; 0 - programmed burst length, 1 - single location
|
4754 |
|
|
// [8:7] OP Mode, 2'b00
|
4755 |
|
|
// [6:4] CAS Latency; 3'b010 - 2, 3'b011 - 3
|
4756 |
|
|
// [3] BT, Burst Type; 1'b0 - sequential, 1'b1 - interleaved
|
4757 |
|
|
// [2:0] Burst length; 3'b000 - 1, 3'b001 - 2, 3'b010 - 4, 3'b011 - 8, 3'b111 - full page
|
4758 |
|
|
localparam init_wb = 1'b1;
|
4759 |
|
|
localparam init_cl = (cl==2) ? 3'b010 : 3'b011;
|
4760 |
|
|
localparam init_bt = 1'b0;
|
4761 |
|
|
localparam init_bl = 3'b000;
|
4762 |
|
|
input [dat_size-1:0] dat_i;
|
4763 |
|
|
input [ba_size+col_size+row_size-1:0] adr_i;
|
4764 |
|
|
input [dat_size/8-1:0] sel_i;
|
4765 |
|
|
input we_i, cyc_i, stb_i;
|
4766 |
|
|
output [dat_size-1:0] dat_o;
|
4767 |
|
|
output ack_o;
|
4768 |
|
|
output reg stall_o;
|
4769 |
|
|
output [ba_size-1:0] ba;
|
4770 |
|
|
output reg [12:0] a;
|
4771 |
|
|
output reg [2:0] cmd; // {ras,cas,we}
|
4772 |
|
|
output cke, cs_n;
|
4773 |
|
|
output reg [dat_size/8-1:0] dqm;
|
4774 |
|
|
output [dat_size-1:0] dq_o;
|
4775 |
|
|
output reg dq_oe;
|
4776 |
|
|
input [dat_size-1:0] dq_i;
|
4777 |
|
|
input clk, rst;
|
4778 |
|
|
wire [ba_size-1:0] bank;
|
4779 |
|
|
wire [row_size-1:0] row;
|
4780 |
|
|
wire [col_size-1:0] col;
|
4781 |
|
|
wire [0:31] shreg;
|
4782 |
|
|
wire ref_cnt_zero;
|
4783 |
|
|
reg refresh_req;
|
4784 |
|
|
wire ack_rd, rd_ack_emptyflag;
|
4785 |
|
|
wire ack_wr;
|
4786 |
|
|
// to keep track of open rows per bank
|
4787 |
|
|
reg [row_size-1:0] open_row[0:3];
|
4788 |
|
|
reg [0:3] open_ba;
|
4789 |
|
|
reg current_bank_closed, current_row_open;
|
4790 |
|
|
parameter rfr_length = 10;
|
4791 |
|
|
parameter rfr_wrap_value = 1010;
|
4792 |
|
|
parameter [2:0] cmd_nop = 3'b111,
|
4793 |
|
|
cmd_act = 3'b011,
|
4794 |
|
|
cmd_rd = 3'b101,
|
4795 |
|
|
cmd_wr = 3'b100,
|
4796 |
|
|
cmd_pch = 3'b010,
|
4797 |
|
|
cmd_rfr = 3'b001,
|
4798 |
|
|
cmd_lmr = 3'b000;
|
4799 |
|
|
// ctrl FSM
|
4800 |
|
|
assign cke = 1'b1;
|
4801 |
|
|
assign cs_n = 1'b0;
|
4802 |
|
|
reg [2:0] state, next;
|
4803 |
|
|
function [12:0] a10_fix;
|
4804 |
|
|
input [col_size-1:0] a;
|
4805 |
|
|
integer i;
|
4806 |
|
|
begin
|
4807 |
|
|
for (i=0;i<13;i=i+1) begin
|
4808 |
|
|
if (i<10)
|
4809 |
|
|
if (i<col_size)
|
4810 |
|
|
a10_fix[i] = a[i];
|
4811 |
|
|
else
|
4812 |
|
|
a10_fix[i] = 1'b0;
|
4813 |
|
|
else if (i==10)
|
4814 |
|
|
a10_fix[i] = 1'b0;
|
4815 |
|
|
else
|
4816 |
|
|
if (i<col_size)
|
4817 |
|
|
a10_fix[i] = a[i-1];
|
4818 |
|
|
else
|
4819 |
|
|
a10_fix[i] = 1'b0;
|
4820 |
|
|
end
|
4821 |
|
|
end
|
4822 |
|
|
endfunction
|
4823 |
|
|
assign {bank,row,col} = adr_i;
|
4824 |
|
|
always @ (posedge clk or posedge rst)
|
4825 |
|
|
if (rst)
|
4826 |
|
|
state <= 3'b000;
|
4827 |
|
|
else
|
4828 |
|
|
state <= next;
|
4829 |
|
|
always @*
|
4830 |
|
|
begin
|
4831 |
|
|
next = state;
|
4832 |
|
|
case (state)
|
4833 |
|
|
3'b000:
|
4834 |
|
|
if (shreg[3+tRP+tRFC+tRFC+tMRD]) next = 3'b001;
|
4835 |
|
|
3'b001:
|
4836 |
|
|
if (refresh_req) next = 3'b010;
|
4837 |
|
|
else if (cyc_i & stb_i & rd_ack_emptyflag) next = 3'b011;
|
4838 |
|
|
3'b010:
|
4839 |
|
|
if (shreg[tRP+tRFC-2]) next = 3'b001; // take away two cycles because no cmd will be issued in idle and adr
|
4840 |
|
|
3'b011:
|
4841 |
|
|
if (current_bank_closed) next = 3'b101;
|
4842 |
|
|
else if (current_row_open) next = 3'b111;
|
4843 |
|
|
else next = 3'b100;
|
4844 |
|
|
3'b100:
|
4845 |
|
|
if (shreg[tRP]) next = 3'b101;
|
4846 |
|
|
3'b101:
|
4847 |
|
|
if (shreg[tRCD]) next = 3'b111;
|
4848 |
|
|
3'b111:
|
4849 |
|
|
if (!stb_i) next = 3'b001;
|
4850 |
|
|
endcase
|
4851 |
|
|
end
|
4852 |
|
|
// counter
|
4853 |
|
|
vl_cnt_shreg_clear # ( .length(32))
|
4854 |
|
|
cnt0 (
|
4855 |
|
|
.clear(state!=next),
|
4856 |
|
|
.q(shreg),
|
4857 |
|
|
.rst(rst),
|
4858 |
|
|
.clk(clk));
|
4859 |
|
|
// ba, a, cmd
|
4860 |
|
|
// outputs dependent on state vector
|
4861 |
|
|
always @ (*)
|
4862 |
|
|
begin
|
4863 |
|
|
{a,cmd} = {13'd0,cmd_nop};
|
4864 |
|
|
dqm = 2'b11;
|
4865 |
|
|
dq_oe = 1'b0;
|
4866 |
|
|
stall_o = 1'b1;
|
4867 |
|
|
case (state)
|
4868 |
|
|
3'b000:
|
4869 |
|
|
if (shreg[3]) begin
|
4870 |
|
|
{a,cmd} = {13'b0010000000000, cmd_pch};
|
4871 |
|
|
end else if (shreg[3+tRP] | shreg[3+tRP+tRFC])
|
4872 |
|
|
{a,cmd} = {13'd0, cmd_rfr};
|
4873 |
|
|
else if (shreg[3+tRP+tRFC+tRFC])
|
4874 |
|
|
{a,cmd} = {3'b000,init_wb,2'b00,init_cl,init_bt,init_bl,cmd_lmr};
|
4875 |
|
|
3'b010:
|
4876 |
|
|
if (shreg[0])
|
4877 |
|
|
{a,cmd} = {13'b0010000000000, cmd_pch};
|
4878 |
|
|
else if (shreg[tRP])
|
4879 |
|
|
{a,cmd} = {13'd0, cmd_rfr};
|
4880 |
|
|
3'b100:
|
4881 |
|
|
if (shreg[0])
|
4882 |
|
|
{a,cmd} = {13'd0,cmd_pch};
|
4883 |
|
|
3'b101:
|
4884 |
|
|
if (shreg[0])
|
4885 |
|
|
{a[row_size-1:0],cmd} = {row,cmd_act};
|
4886 |
|
|
3'b111:
|
4887 |
|
|
begin
|
4888 |
|
|
if (we_i)
|
4889 |
|
|
cmd = cmd_wr;
|
4890 |
|
|
else
|
4891 |
|
|
cmd = cmd_rd;
|
4892 |
|
|
if (we_i)
|
4893 |
|
|
dqm = ~sel_i;
|
4894 |
|
|
else
|
4895 |
|
|
dqm = 2'b00;
|
4896 |
|
|
if (we_i)
|
4897 |
|
|
dq_oe = 1'b1;
|
4898 |
|
|
a = a10_fix(col);
|
4899 |
|
|
stall_o = 1'b0;
|
4900 |
|
|
end
|
4901 |
|
|
endcase
|
4902 |
|
|
end
|
4903 |
|
|
assign ba = bank;
|
4904 |
|
|
// precharge individual bank A10=0
|
4905 |
|
|
// precharge all bank A10=1
|
4906 |
|
|
genvar i;
|
4907 |
|
|
generate
|
4908 |
|
|
for (i=0;i<2<<ba_size-1;i=i+1) begin : open_ba_logic
|
4909 |
|
|
always @ (posedge clk or posedge rst)
|
4910 |
|
|
if (rst)
|
4911 |
|
|
{open_ba[i],open_row[i]} <= {1'b0,{row_size{1'b0}}};
|
4912 |
|
|
else
|
4913 |
|
|
if (cmd==cmd_pch & (a[10] | bank==i))
|
4914 |
|
|
open_ba[i] <= 1'b0;
|
4915 |
|
|
else if (cmd==cmd_act & bank==i)
|
4916 |
|
|
{open_ba[i],open_row[i]} <= {1'b1,row};
|
4917 |
|
|
end
|
4918 |
|
|
endgenerate
|
4919 |
|
|
// bank and row open ?
|
4920 |
|
|
always @ (posedge clk or posedge rst)
|
4921 |
|
|
if (rst)
|
4922 |
|
|
{current_bank_closed, current_row_open} <= {1'b1, 1'b0};
|
4923 |
|
|
else
|
4924 |
|
|
{current_bank_closed, current_row_open} <= {!(open_ba[bank]), open_row[bank]==row};
|
4925 |
|
|
// refresh counter
|
4926 |
|
|
vl_cnt_lfsr_zq # ( .length(rfr_length), .wrap_value (rfr_wrap_value)) ref_counter0( .zq(ref_cnt_zero), .rst(rst), .clk(clk));
|
4927 |
|
|
always @ (posedge clk or posedge rst)
|
4928 |
|
|
if (rst)
|
4929 |
|
|
refresh_req <= 1'b0;
|
4930 |
|
|
else
|
4931 |
|
|
if (ref_cnt_zero)
|
4932 |
|
|
refresh_req <= 1'b1;
|
4933 |
|
|
else if (state==3'b010)
|
4934 |
|
|
refresh_req <= 1'b0;
|
4935 |
|
|
assign dat_o = dq_i;
|
4936 |
|
|
assign ack_wr = (state==3'b111 & we_i);
|
4937 |
|
|
vl_delay_emptyflag # ( .depth(cl+2)) delay0 ( .d(state==3'b111 & stb_i & !we_i), .q(ack_rd), .emptyflag(rd_ack_emptyflag), .clk(clk), .rst(rst));
|
4938 |
|
|
assign ack_o = ack_rd | ack_wr;
|
4939 |
|
|
assign dq_o = dat_i;
|
4940 |
|
|
endmodule
|
4941 |
|
|
module vl_wb_sdr_sdram_ctrl (
|
4942 |
|
|
// WB i/f
|
4943 |
|
|
wbs_dat_i, wbs_adr_i, wbs_cti_i, wbs_bte_i, wbs_sel_i, wbs_we_i, wbs_stb_i, wbs_cyc_i,
|
4944 |
|
|
wbs_dat_o, wbs_ack_o, wbs_stall_o,
|
4945 |
|
|
// SDR SDRAM
|
4946 |
|
|
mem_ba, mem_a, mem_cmd, mem_cke, mem_cs_n, mem_dqm, mem_dq_i, mem_dq_o, mem_dq_oe,
|
4947 |
|
|
// system
|
4948 |
|
|
wb_clk, wb_rst, mem_clk, mem_rst);
|
4949 |
|
|
// WB slave
|
4950 |
|
|
parameter wbs_dat_width = 32;
|
4951 |
|
|
parameter wbs_adr_width = 24;
|
4952 |
|
|
parameter wbs_mode = "B3";
|
4953 |
|
|
parameter wbs_max_burst_width = 4;
|
4954 |
|
|
// Shadow RAM
|
4955 |
|
|
parameter shadow_mem_adr_width = 10;
|
4956 |
|
|
parameter shadow_mem_size = 1024;
|
4957 |
|
|
parameter shadow_mem_init = 2;
|
4958 |
|
|
parameter shadow_mem_file = "vl_ram.v";
|
4959 |
|
|
// Cache
|
4960 |
|
|
parameter cache_async = 1; // wbs_clk != wbm_clk
|
4961 |
|
|
parameter cache_nr_of_ways = 1;
|
4962 |
|
|
parameter cache_aw_offset = 4; // 4 => 16 words per cache line
|
4963 |
|
|
parameter cache_aw_slot = 10;
|
4964 |
|
|
parameter cache_valid_mem = 0;
|
4965 |
|
|
parameter cache_debug = 0;
|
4966 |
|
|
// SDRAM parameters
|
4967 |
|
|
parameter mem_dat_size = 16;
|
4968 |
|
|
parameter mem_ba_size = 2;
|
4969 |
|
|
parameter mem_row_size = 13;
|
4970 |
|
|
parameter mem_col_size = 9;
|
4971 |
|
|
parameter mem_cl = 2;
|
4972 |
|
|
parameter mem_tRFC = 9;
|
4973 |
|
|
parameter mem_tRP = 2;
|
4974 |
|
|
parameter mem_tRCD = 2;
|
4975 |
|
|
parameter mem_tMRD = 2;
|
4976 |
|
|
parameter mem_rfr_length = 10;
|
4977 |
|
|
parameter mem_rfr_wrap_value = 1010;
|
4978 |
|
|
input [wbs_dat_width-1:0] wbs_dat_i;
|
4979 |
|
|
input [wbs_adr_width-1:0] wbs_adr_i;
|
4980 |
|
|
input [2:0] wbs_cti_i;
|
4981 |
|
|
input [1:0] wbs_bte_i;
|
4982 |
|
|
input [wbs_dat_width/8-1:0] wbs_sel_i;
|
4983 |
|
|
input wbs_we_i, wbs_stb_i, wbs_cyc_i;
|
4984 |
|
|
output [wbs_dat_width-1:0] wbs_dat_o;
|
4985 |
|
|
output wbs_ack_o;
|
4986 |
|
|
output wbs_stall_o;
|
4987 |
|
|
output [mem_ba_size-1:0] mem_ba;
|
4988 |
|
|
output reg [12:0] mem_a;
|
4989 |
|
|
output reg [2:0] mem_cmd; // {ras,cas,we}
|
4990 |
|
|
output mem_cke, mem_cs_n;
|
4991 |
|
|
output reg [mem_dat_size/8-1:0] mem_dqm;
|
4992 |
|
|
output [mem_dat_size-1:0] mem_dq_o;
|
4993 |
|
|
output reg mem_dq_oe;
|
4994 |
|
|
input [mem_dat_size-1:0] mem_dq_i;
|
4995 |
|
|
input wb_clk, wb_rst, mem_clk, mem_rst;
|
4996 |
|
|
// wbm1
|
4997 |
|
|
wire [wbs_dat_width-1:0] wbm1_dat_o;
|
4998 |
|
|
wire [wbs_adr_width-1:0] wbm1_adr_o;
|
4999 |
|
|
wire [2:0] wbm1_cti_o;
|
5000 |
|
|
wire [1:0] wbm1_bte_o;
|
5001 |
|
|
wire [wbs_dat_width/8-1:0] wbm1_sel_o;
|
5002 |
|
|
wire wbm1_we_o, wbm1_stb_o, wbm1_cyc_o;
|
5003 |
|
|
wire [wbs_dat_width-1:0] wbm1_dat_i;
|
5004 |
|
|
wire wbm1_ack_i, wbm1_stall_i;
|
5005 |
|
|
// wbm2
|
5006 |
|
|
wire [mem_dat_size-1:0] wbm2_dat_o;
|
5007 |
|
|
wire [mem_ba_size+mem_row_size+mem_col_size-1:0] wbm2_adr_o;
|
5008 |
|
|
wire [2:0] wbm2_cti_o;
|
5009 |
|
|
wire [1:0] wbm2_bte_o;
|
5010 |
|
|
wire [mem_dat_size/8-1:0] wbm2_sel_o;
|
5011 |
|
|
wire wbm2_we_o, wbm2_stb_o, wbm2_cyc_o;
|
5012 |
|
|
wire [mem_dat_size-1:0] wbm2_dat_i;
|
5013 |
|
|
wire wbm2_ack_i, wbm2_stall_i;
|
5014 |
|
|
vl_wb_shadow_ram # (
|
5015 |
|
|
.shadow_mem_adr_width(shadow_mem_adr_width), .shadow_mem_size(shadow_mem_size), .shadow_mem_init(shadow_mem_init), .shadow_mem_file(shadow_mem_file), .main_mem_adr_width(wbs_adr_width), .dat_width(wbs_dat_width), .mode(wbs_mode), .max_burst_width(wbs_max_burst_width) )
|
5016 |
|
|
shadow_ram0 (
|
5017 |
|
|
.wbs_dat_i(wbs_dat_i),
|
5018 |
|
|
.wbs_adr_i(wbs_adr_i),
|
5019 |
|
|
.wbs_cti_i(wbs_cti_i),
|
5020 |
|
|
.wbs_bte_i(wbs_bte_i),
|
5021 |
|
|
.wbs_sel_i(wbs_sel_i),
|
5022 |
|
|
.wbs_we_i (wbs_we_i),
|
5023 |
|
|
.wbs_stb_i(wbs_stb_i),
|
5024 |
|
|
.wbs_cyc_i(wbs_cyc_i),
|
5025 |
|
|
.wbs_dat_o(wbs_dat_o),
|
5026 |
|
|
.wbs_ack_o(wbs_ack_o),
|
5027 |
|
|
.wbs_stall_o(wbs_stall_o),
|
5028 |
|
|
.wbm_dat_o(wbm1_dat_o),
|
5029 |
|
|
.wbm_adr_o(wbm1_adr_o),
|
5030 |
|
|
.wbm_cti_o(wbm1_cti_o),
|
5031 |
|
|
.wbm_bte_o(wbm1_bte_o),
|
5032 |
|
|
.wbm_sel_o(wbm1_sel_o),
|
5033 |
|
|
.wbm_we_o(wbm1_we_o),
|
5034 |
|
|
.wbm_stb_o(wbm1_stb_o),
|
5035 |
|
|
.wbm_cyc_o(wbm1_cyc_o),
|
5036 |
|
|
.wbm_dat_i(wbm1_dat_i),
|
5037 |
|
|
.wbm_ack_i(wbm1_ack_i),
|
5038 |
|
|
.wbm_stall_i(wbm1_stall_i),
|
5039 |
|
|
.wb_clk(wb_clk),
|
5040 |
|
|
.wb_rst(wb_rst) );
|
5041 |
|
|
vl_wb_cache # (
|
5042 |
|
|
.dw_s(wbs_dat_width), .aw_s(wbs_adr_width), .dw_m(mem_dat_size), .wbs_max_burst_width(cache_aw_offset), .wbs_mode(wbs_mode), .async(cache_async), .nr_of_ways(cache_nr_of_ways), .aw_offset(cache_aw_offset), .aw_slot(cache_aw_slot), .valid_mem(cache_valid_mem) )
|
5043 |
|
|
cache0 (
|
5044 |
|
|
.wbs_dat_i(wbm1_dat_o),
|
5045 |
|
|
.wbs_adr_i(wbm1_adr_o),
|
5046 |
|
|
.wbs_sel_i(wbm1_sel_o),
|
5047 |
|
|
.wbs_cti_i(wbm1_cti_o),
|
5048 |
|
|
.wbs_bte_i(wbm1_bte_o),
|
5049 |
|
|
.wbs_we_i (wbm1_we_o),
|
5050 |
|
|
.wbs_stb_i(wbm1_stb_o),
|
5051 |
|
|
.wbs_cyc_i(wbm1_cyc_o),
|
5052 |
|
|
.wbs_dat_o(wbm1_dat_i),
|
5053 |
|
|
.wbs_ack_o(wbm1_ack_i),
|
5054 |
|
|
.wbs_stall_o(wbm1_stall_i),
|
5055 |
|
|
.wbs_clk(wb_clk),
|
5056 |
|
|
.wbs_rst(wb_rst),
|
5057 |
|
|
.wbm_dat_o(wbm2_dat_o),
|
5058 |
|
|
.wbm_adr_o(wbm2_adr_o),
|
5059 |
|
|
.wbm_sel_o(wbm2_sel_o),
|
5060 |
|
|
.wbm_cti_o(wbm2_cti_o),
|
5061 |
|
|
.wbm_bte_o(wbm2_bte_o),
|
5062 |
|
|
.wbm_we_o (wbm2_we_o),
|
5063 |
|
|
.wbm_stb_o(wbm2_stb_o),
|
5064 |
|
|
.wbm_cyc_o(wbm2_cyc_o),
|
5065 |
|
|
.wbm_dat_i(wbm2_dat_i),
|
5066 |
|
|
.wbm_ack_i(wbm2_ack_i),
|
5067 |
|
|
.wbm_stall_i(wbm2_stall_i),
|
5068 |
|
|
.wbm_clk(mem_clk),
|
5069 |
|
|
.wbm_rst(mem_rst) );
|
5070 |
|
|
vl_wb_sdr_sdram # (
|
5071 |
|
|
.dat_size(mem_dat_size), .ba_size(mem_ba_size), .row_size(mem_row_size), .col_size(mem_col_size), .cl(mem_cl), .tRFC(mem_tRFC), .tRP(mem_tRP), .tRCD(mem_tRCD), .tMRD(mem_tMRD), .rfr_length(mem_rfr_length), .rfr_wrap_value(mem_rfr_wrap_value) )
|
5072 |
|
|
ctrl0(
|
5073 |
|
|
// wisbone i/f
|
5074 |
|
|
.dat_i(wbm2_dat_o),
|
5075 |
|
|
.adr_i(wbm2_adr_o),
|
5076 |
|
|
.sel_i(wbm2_sel_o),
|
5077 |
|
|
.we_i (wbm2_we_o),
|
5078 |
|
|
.cyc_i(wbm2_cyc_o),
|
5079 |
|
|
.stb_i(wbm2_stb_o),
|
5080 |
|
|
.dat_o(wbm2_dat_i),
|
5081 |
|
|
.ack_o(wbm2_ack_i),
|
5082 |
|
|
.stall_o(wbm2_stall_i),
|
5083 |
|
|
// SDR SDRAM
|
5084 |
|
|
.ba(mem_ba),
|
5085 |
|
|
.a(mem_a),
|
5086 |
|
|
.cmd(mem_cmd),
|
5087 |
|
|
.cke(mem_cke),
|
5088 |
|
|
.cs_n(mem_cs_n),
|
5089 |
|
|
.dqm(mem_dqm),
|
5090 |
|
|
.dq_i(mem_dq_i),
|
5091 |
|
|
.dq_o(mem_dq_o),
|
5092 |
|
|
.dq_oe(mem_dq_oe),
|
5093 |
|
|
// system
|
5094 |
|
|
.clk(mem_clk),
|
5095 |
|
|
.rst(mem_rst) );
|
5096 |
|
|
endmodule
|
5097 |
18 |
unneback |
//////////////////////////////////////////////////////////////////////
|
5098 |
|
|
//// ////
|
5099 |
|
|
//// Arithmetic functions ////
|
5100 |
|
|
//// ////
|
5101 |
|
|
//// Description ////
|
5102 |
|
|
//// Arithmetic functions for ALU and DSP ////
|
5103 |
|
|
//// ////
|
5104 |
|
|
//// ////
|
5105 |
|
|
//// To Do: ////
|
5106 |
|
|
//// - ////
|
5107 |
|
|
//// ////
|
5108 |
|
|
//// Author(s): ////
|
5109 |
|
|
//// - Michael Unneback, unneback@opencores.org ////
|
5110 |
|
|
//// ORSoC AB ////
|
5111 |
|
|
//// ////
|
5112 |
|
|
//////////////////////////////////////////////////////////////////////
|
5113 |
|
|
//// ////
|
5114 |
|
|
//// Copyright (C) 2010 Authors and OPENCORES.ORG ////
|
5115 |
|
|
//// ////
|
5116 |
|
|
//// This source file may be used and distributed without ////
|
5117 |
|
|
//// restriction provided that this copyright statement is not ////
|
5118 |
|
|
//// removed from the file and that any derivative work contains ////
|
5119 |
|
|
//// the original copyright notice and the associated disclaimer. ////
|
5120 |
|
|
//// ////
|
5121 |
|
|
//// This source file is free software; you can redistribute it ////
|
5122 |
|
|
//// and/or modify it under the terms of the GNU Lesser General ////
|
5123 |
|
|
//// Public License as published by the Free Software Foundation; ////
|
5124 |
|
|
//// either version 2.1 of the License, or (at your option) any ////
|
5125 |
|
|
//// later version. ////
|
5126 |
|
|
//// ////
|
5127 |
|
|
//// This source is distributed in the hope that it will be ////
|
5128 |
|
|
//// useful, but WITHOUT ANY WARRANTY; without even the implied ////
|
5129 |
|
|
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR ////
|
5130 |
|
|
//// PURPOSE. See the GNU Lesser General Public License for more ////
|
5131 |
|
|
//// details. ////
|
5132 |
|
|
//// ////
|
5133 |
|
|
//// You should have received a copy of the GNU Lesser General ////
|
5134 |
|
|
//// Public License along with this source; if not, download it ////
|
5135 |
|
|
//// from http://www.opencores.org/lgpl.shtml ////
|
5136 |
|
|
//// ////
|
5137 |
|
|
//////////////////////////////////////////////////////////////////////
|
5138 |
|
|
// signed multiplication
|
5139 |
|
|
module vl_mults (a,b,p);
|
5140 |
|
|
parameter operand_a_width = 18;
|
5141 |
|
|
parameter operand_b_width = 18;
|
5142 |
|
|
parameter result_hi = 35;
|
5143 |
|
|
parameter result_lo = 0;
|
5144 |
|
|
input [operand_a_width-1:0] a;
|
5145 |
|
|
input [operand_b_width-1:0] b;
|
5146 |
|
|
output [result_hi:result_lo] p;
|
5147 |
|
|
wire signed [operand_a_width-1:0] ai;
|
5148 |
|
|
wire signed [operand_b_width-1:0] bi;
|
5149 |
|
|
wire signed [operand_a_width+operand_b_width-1:0] result;
|
5150 |
|
|
assign ai = a;
|
5151 |
|
|
assign bi = b;
|
5152 |
|
|
assign result = ai * bi;
|
5153 |
|
|
assign p = result[result_hi:result_lo];
|
5154 |
|
|
endmodule
|
5155 |
|
|
module vl_mults18x18 (a,b,p);
|
5156 |
|
|
input [17:0] a,b;
|
5157 |
|
|
output [35:0] p;
|
5158 |
|
|
vl_mult
|
5159 |
|
|
# (.operand_a_width(18), .operand_b_width(18))
|
5160 |
|
|
mult0 (.a(a), .b(b), .p(p));
|
5161 |
|
|
endmodule
|
5162 |
|
|
// unsigned multiplication
|
5163 |
|
|
module vl_mult (a,b,p);
|
5164 |
|
|
parameter operand_a_width = 18;
|
5165 |
|
|
parameter operand_b_width = 18;
|
5166 |
|
|
parameter result_hi = 35;
|
5167 |
|
|
parameter result_lo = 0;
|
5168 |
|
|
input [operand_a_width-1:0] a;
|
5169 |
|
|
input [operand_b_width-1:0] b;
|
5170 |
|
|
output [result_hi:result_hi] p;
|
5171 |
|
|
wire [operand_a_width+operand_b_width-1:0] result;
|
5172 |
|
|
assign result = a * b;
|
5173 |
|
|
assign p = result[result_hi:result_lo];
|
5174 |
|
|
endmodule
|
5175 |
|
|
// shift unit
|
5176 |
|
|
// supporting the following shift functions
|
5177 |
|
|
// SLL
|
5178 |
|
|
// SRL
|
5179 |
|
|
// SRA
|
5180 |
|
|
module vl_shift_unit_32( din, s, dout, opcode);
|
5181 |
|
|
input [31:0] din; // data in operand
|
5182 |
|
|
input [4:0] s; // shift operand
|
5183 |
|
|
input [1:0] opcode;
|
5184 |
|
|
output [31:0] dout;
|
5185 |
|
|
parameter opcode_sll = 2'b00;
|
5186 |
|
|
//parameter opcode_srl = 2'b01;
|
5187 |
|
|
parameter opcode_sra = 2'b10;
|
5188 |
|
|
//parameter opcode_ror = 2'b11;
|
5189 |
|
|
wire sll, sra;
|
5190 |
|
|
assign sll = opcode == opcode_sll;
|
5191 |
|
|
assign sra = opcode == opcode_sra;
|
5192 |
|
|
wire [15:1] s1;
|
5193 |
|
|
wire [3:0] sign;
|
5194 |
|
|
wire [7:0] tmp [0:3];
|
5195 |
|
|
// first stage is multiplier based
|
5196 |
|
|
// shift operand as fractional 8.7
|
5197 |
|
|
assign s1[15] = sll & s[2:0]==3'd7;
|
5198 |
|
|
assign s1[14] = sll & s[2:0]==3'd6;
|
5199 |
|
|
assign s1[13] = sll & s[2:0]==3'd5;
|
5200 |
|
|
assign s1[12] = sll & s[2:0]==3'd4;
|
5201 |
|
|
assign s1[11] = sll & s[2:0]==3'd3;
|
5202 |
|
|
assign s1[10] = sll & s[2:0]==3'd2;
|
5203 |
|
|
assign s1[ 9] = sll & s[2:0]==3'd1;
|
5204 |
|
|
assign s1[ 8] = s[2:0]==3'd0;
|
5205 |
|
|
assign s1[ 7] = !sll & s[2:0]==3'd1;
|
5206 |
|
|
assign s1[ 6] = !sll & s[2:0]==3'd2;
|
5207 |
|
|
assign s1[ 5] = !sll & s[2:0]==3'd3;
|
5208 |
|
|
assign s1[ 4] = !sll & s[2:0]==3'd4;
|
5209 |
|
|
assign s1[ 3] = !sll & s[2:0]==3'd5;
|
5210 |
|
|
assign s1[ 2] = !sll & s[2:0]==3'd6;
|
5211 |
|
|
assign s1[ 1] = !sll & s[2:0]==3'd7;
|
5212 |
|
|
assign sign[3] = din[31] & sra;
|
5213 |
|
|
assign sign[2] = sign[3] & (&din[31:24]);
|
5214 |
|
|
assign sign[1] = sign[2] & (&din[23:16]);
|
5215 |
|
|
assign sign[0] = sign[1] & (&din[15:8]);
|
5216 |
|
|
vl_mults # ( .operand_a_width(25), .operand_b_width(16), .result_hi(14), .result_lo(7)) mult_byte3 ( .a({sign[3], {8{sign[3]}},din[31:24], din[23:16]}), .b({1'b0,s1}), .p(tmp[3]));
|
5217 |
|
|
vl_mults # ( .operand_a_width(25), .operand_b_width(16), .result_hi(14), .result_lo(7)) mult_byte2 ( .a({sign[2], din[31:24] ,din[23:16], din[15:8]}), .b({1'b0,s1}), .p(tmp[2]));
|
5218 |
|
|
vl_mults # ( .operand_a_width(25), .operand_b_width(16), .result_hi(14), .result_lo(7)) mult_byte1 ( .a({sign[1], din[23:16] ,din[15:8], din[7:0]}), .b({1'b0,s1}), .p(tmp[1]));
|
5219 |
|
|
vl_mults # ( .operand_a_width(25), .operand_b_width(16), .result_hi(14), .result_lo(7)) mult_byte0 ( .a({sign[0], din[15:8] ,din[7:0], 8'h00}), .b({1'b0,s1}), .p(tmp[0]));
|
5220 |
|
|
// second stage is multiplexer based
|
5221 |
|
|
// shift on byte level
|
5222 |
|
|
// mux byte 3
|
5223 |
|
|
assign dout[31:24] = (s[4:3]==2'b00) ? tmp[3] :
|
5224 |
|
|
(sll & s[4:3]==2'b01) ? tmp[2] :
|
5225 |
|
|
(sll & s[4:3]==2'b10) ? tmp[1] :
|
5226 |
|
|
(sll & s[4:3]==2'b11) ? tmp[0] :
|
5227 |
|
|
{8{sign[3]}};
|
5228 |
|
|
// mux byte 2
|
5229 |
|
|
assign dout[23:16] = (s[4:3]==2'b00) ? tmp[2] :
|
5230 |
|
|
(sll & s[4:3]==2'b01) ? tmp[1] :
|
5231 |
|
|
(sll & s[4:3]==2'b10) ? tmp[0] :
|
5232 |
|
|
(sll & s[4:3]==2'b11) ? {8{1'b0}} :
|
5233 |
|
|
(s[4:3]==2'b01) ? tmp[3] :
|
5234 |
|
|
{8{sign[3]}};
|
5235 |
|
|
// mux byte 1
|
5236 |
|
|
assign dout[15:8] = (s[4:3]==2'b00) ? tmp[1] :
|
5237 |
|
|
(sll & s[4:3]==2'b01) ? tmp[0] :
|
5238 |
|
|
(sll & s[4:3]==2'b10) ? {8{1'b0}} :
|
5239 |
|
|
(sll & s[4:3]==2'b11) ? {8{1'b0}} :
|
5240 |
|
|
(s[4:3]==2'b01) ? tmp[2] :
|
5241 |
|
|
(s[4:3]==2'b10) ? tmp[3] :
|
5242 |
|
|
{8{sign[3]}};
|
5243 |
|
|
// mux byte 0
|
5244 |
|
|
assign dout[7:0] = (s[4:3]==2'b00) ? tmp[0] :
|
5245 |
|
|
(sll) ? {8{1'b0}}:
|
5246 |
|
|
(s[4:3]==2'b01) ? tmp[1] :
|
5247 |
|
|
(s[4:3]==2'b10) ? tmp[2] :
|
5248 |
|
|
tmp[3];
|
5249 |
|
|
endmodule
|
5250 |
|
|
// logic unit
|
5251 |
|
|
// supporting the following logic functions
|
5252 |
|
|
// a and b
|
5253 |
|
|
// a or b
|
5254 |
|
|
// a xor b
|
5255 |
|
|
// not b
|
5256 |
|
|
module vl_logic_unit( a, b, result, opcode);
|
5257 |
|
|
parameter width = 32;
|
5258 |
|
|
parameter opcode_and = 2'b00;
|
5259 |
|
|
parameter opcode_or = 2'b01;
|
5260 |
|
|
parameter opcode_xor = 2'b10;
|
5261 |
|
|
input [width-1:0] a,b;
|
5262 |
|
|
output [width-1:0] result;
|
5263 |
|
|
input [1:0] opcode;
|
5264 |
|
|
assign result = (opcode==opcode_and) ? a & b :
|
5265 |
|
|
(opcode==opcode_or) ? a | b :
|
5266 |
|
|
(opcode==opcode_xor) ? a ^ b :
|
5267 |
|
|
b;
|
5268 |
|
|
endmodule
|
5269 |
140 |
unneback |
module vl_arith_unit ( a, b, c_in, add_sub, sign, result, c_out, z, ovfl);
|
5270 |
|
|
parameter width = 32;
|
5271 |
|
|
parameter opcode_add = 1'b0;
|
5272 |
|
|
parameter opcode_sub = 1'b1;
|
5273 |
|
|
input [width-1:0] a,b;
|
5274 |
|
|
input c_in, add_sub, sign;
|
5275 |
|
|
output [width-1:0] result;
|
5276 |
|
|
output c_out, z, ovfl;
|
5277 |
|
|
assign {c_out,result} = {(a[width-1] & sign),a} + ({a[width-1] & sign,b} ^ {(width+1){(add_sub==opcode_sub)}}) + {{(width-1){1'b0}},(c_in | (add_sub==opcode_sub))};
|
5278 |
|
|
assign z = (result=={width{1'b0}});
|
5279 |
|
|
assign ovfl = ( a[width-1] & b[width-1] & ~result[width-1]) |
|
5280 |
|
|
(~a[width-1] & ~b[width-1] & result[width-1]);
|
5281 |
|
|
endmodule
|
5282 |
|
|
module vl_count_unit (din, dout, opcode);
|
5283 |
|
|
parameter width = 32;
|
5284 |
|
|
input [width-1:0] din;
|
5285 |
|
|
output [width-1:0] dout;
|
5286 |
|
|
input opcode;
|
5287 |
|
|
integer i;
|
5288 |
|
|
wire [width/32+4:0] ff1, fl1;
|
5289 |
|
|
/*
|
5290 |
|
|
always @(din) begin
|
5291 |
|
|
ff1 = 0; i = 0;
|
5292 |
|
|
while (din[i] == 0 && i < width) begin // complex condition
|
5293 |
|
|
ff1 = ff1 + 1;
|
5294 |
|
|
i = i + 1;
|
5295 |
|
|
end
|
5296 |
|
|
end
|
5297 |
|
|
always @(din) begin
|
5298 |
|
|
fl1 = width; i = width-1;
|
5299 |
|
|
while (din[i] == 0 && i >= width) begin // complex condition
|
5300 |
|
|
fl1 = fl1 - 1;
|
5301 |
|
|
i = i - 1;
|
5302 |
|
|
end
|
5303 |
|
|
end
|
5304 |
|
|
*/
|
5305 |
|
|
generate
|
5306 |
|
|
if (width==32) begin
|
5307 |
|
|
assign ff1 = din[0] ? 6'd1 :
|
5308 |
|
|
din[1] ? 6'd2 :
|
5309 |
|
|
din[2] ? 6'd3 :
|
5310 |
|
|
din[3] ? 6'd4 :
|
5311 |
|
|
din[4] ? 6'd5 :
|
5312 |
|
|
din[5] ? 6'd6 :
|
5313 |
|
|
din[6] ? 6'd7 :
|
5314 |
|
|
din[7] ? 6'd8 :
|
5315 |
|
|
din[8] ? 6'd9 :
|
5316 |
|
|
din[9] ? 6'd10 :
|
5317 |
|
|
din[10] ? 6'd11 :
|
5318 |
|
|
din[11] ? 6'd12 :
|
5319 |
|
|
din[12] ? 6'd13 :
|
5320 |
|
|
din[13] ? 6'd14 :
|
5321 |
|
|
din[14] ? 6'd15 :
|
5322 |
|
|
din[15] ? 6'd16 :
|
5323 |
|
|
din[16] ? 6'd17 :
|
5324 |
|
|
din[17] ? 6'd18 :
|
5325 |
|
|
din[18] ? 6'd19 :
|
5326 |
|
|
din[19] ? 6'd20 :
|
5327 |
|
|
din[20] ? 6'd21 :
|
5328 |
|
|
din[21] ? 6'd22 :
|
5329 |
|
|
din[22] ? 6'd23 :
|
5330 |
|
|
din[23] ? 6'd24 :
|
5331 |
|
|
din[24] ? 6'd25 :
|
5332 |
|
|
din[25] ? 6'd26 :
|
5333 |
|
|
din[26] ? 6'd27 :
|
5334 |
|
|
din[27] ? 6'd28 :
|
5335 |
|
|
din[28] ? 6'd29 :
|
5336 |
|
|
din[29] ? 6'd30 :
|
5337 |
|
|
din[30] ? 6'd31 :
|
5338 |
|
|
din[31] ? 6'd32 :
|
5339 |
|
|
6'd0;
|
5340 |
|
|
assign fl1 = din[31] ? 6'd32 :
|
5341 |
|
|
din[30] ? 6'd31 :
|
5342 |
|
|
din[29] ? 6'd30 :
|
5343 |
|
|
din[28] ? 6'd29 :
|
5344 |
|
|
din[27] ? 6'd28 :
|
5345 |
|
|
din[26] ? 6'd27 :
|
5346 |
|
|
din[25] ? 6'd26 :
|
5347 |
|
|
din[24] ? 6'd25 :
|
5348 |
|
|
din[23] ? 6'd24 :
|
5349 |
|
|
din[22] ? 6'd23 :
|
5350 |
|
|
din[21] ? 6'd22 :
|
5351 |
|
|
din[20] ? 6'd21 :
|
5352 |
|
|
din[19] ? 6'd20 :
|
5353 |
|
|
din[18] ? 6'd19 :
|
5354 |
|
|
din[17] ? 6'd18 :
|
5355 |
|
|
din[16] ? 6'd17 :
|
5356 |
|
|
din[15] ? 6'd16 :
|
5357 |
|
|
din[14] ? 6'd15 :
|
5358 |
|
|
din[13] ? 6'd14 :
|
5359 |
|
|
din[12] ? 6'd13 :
|
5360 |
|
|
din[11] ? 6'd12 :
|
5361 |
|
|
din[10] ? 6'd11 :
|
5362 |
|
|
din[9] ? 6'd10 :
|
5363 |
|
|
din[8] ? 6'd9 :
|
5364 |
|
|
din[7] ? 6'd8 :
|
5365 |
|
|
din[6] ? 6'd7 :
|
5366 |
|
|
din[5] ? 6'd6 :
|
5367 |
|
|
din[4] ? 6'd5 :
|
5368 |
|
|
din[3] ? 6'd4 :
|
5369 |
|
|
din[2] ? 6'd3 :
|
5370 |
|
|
din[1] ? 6'd2 :
|
5371 |
|
|
din[0] ? 6'd1 :
|
5372 |
|
|
6'd0;
|
5373 |
|
|
assign dout = (!opcode) ? {{26{1'b0}}, ff1} : {{26{1'b0}}, fl1};
|
5374 |
|
|
end
|
5375 |
|
|
endgenerate
|
5376 |
|
|
generate
|
5377 |
|
|
if (width==64) begin
|
5378 |
|
|
assign ff1 = 7'd0;
|
5379 |
|
|
assign fl1 = 7'd0;
|
5380 |
|
|
assign dout = (!opcode) ? {{57{1'b0}}, ff1} : {{57{1'b0}}, fl1};
|
5381 |
|
|
end
|
5382 |
|
|
endgenerate
|
5383 |
|
|
endmodule
|
5384 |
|
|
module vl_ext_unit ( a, b, F, result, opcode);
|
5385 |
|
|
parameter width = 32;
|
5386 |
|
|
input [width-1:0] a, b;
|
5387 |
|
|
input F;
|
5388 |
|
|
output reg [width-1:0] result;
|
5389 |
|
|
input [2:0] opcode;
|
5390 |
|
|
generate
|
5391 |
|
|
if (width==32) begin
|
5392 |
|
|
always @ (a or b or F or opcode)
|
5393 |
|
|
begin
|
5394 |
|
|
case (opcode)
|
5395 |
|
|
3'b000: result = {{24{1'b0}},a[7:0]};
|
5396 |
|
|
3'b001: result = {{24{a[7]}},a[7:0]};
|
5397 |
|
|
3'b010: result = {{16{1'b0}},a[7:0]};
|
5398 |
|
|
3'b011: result = {{16{a[15]}},a[15:0]};
|
5399 |
|
|
3'b110: result = (F) ? a : b;
|
5400 |
|
|
default: result = {b[15:0],16'h0000};
|
5401 |
|
|
endcase
|
5402 |
|
|
end
|
5403 |
|
|
end
|
5404 |
|
|
endgenerate
|
5405 |
|
|
generate
|
5406 |
|
|
if (width==64) begin
|
5407 |
|
|
always @ (a or b or F or opcode)
|
5408 |
|
|
begin
|
5409 |
|
|
case (opcode)
|
5410 |
|
|
3'b000: result = {{56{1'b0}},a[7:0]};
|
5411 |
|
|
3'b001: result = {{56{a[7]}},a[7:0]};
|
5412 |
|
|
3'b010: result = {{48{1'b0}},a[7:0]};
|
5413 |
|
|
3'b011: result = {{48{a[15]}},a[15:0]};
|
5414 |
|
|
3'b110: result = (F) ? a : b;
|
5415 |
|
|
default: result = {32'h00000000,b[15:0],16'h0000};
|
5416 |
|
|
endcase
|
5417 |
|
|
end
|
5418 |
|
|
end
|
5419 |
|
|
endgenerate
|
5420 |
|
|
endmodule
|