OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [tags/] [rel_29/] [or1200/] [rtl/] [verilog/] [or1200_spram_1024x32.v] - Blame information for rev 1780

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 504 lampret
//////////////////////////////////////////////////////////////////////
2
////                                                              ////
3
////  Generic Single-Port Synchronous RAM                         ////
4
////                                                              ////
5
////  This file is part of memory library available from          ////
6
////  http://www.opencores.org/cvsweb.shtml/generic_memories/     ////
7
////                                                              ////
8
////  Description                                                 ////
9
////  This block is a wrapper with common single-port             ////
10
////  synchronous memory interface for different                  ////
11
////  types of ASIC and FPGA RAMs. Beside universal memory        ////
12
////  interface it also provides behavioral model of generic      ////
13
////  single-port synchronous RAM.                                ////
14
////  It should be used in all OPENCORES designs that want to be  ////
15
////  portable accross different target technologies and          ////
16
////  independent of target memory.                               ////
17
////                                                              ////
18
////  Supported ASIC RAMs are:                                    ////
19
////  - Artisan Single-Port Sync RAM                              ////
20
////  - Avant! Two-Port Sync RAM (*)                              ////
21
////  - Virage Single-Port Sync RAM                               ////
22
////  - Virtual Silicon Single-Port Sync RAM                      ////
23
////                                                              ////
24
////  Supported FPGA RAMs are:                                    ////
25
////  - Xilinx Virtex RAMB4_S16                                   ////
26 1129 lampret
////  - Altera LPM                                                ////
27 504 lampret
////                                                              ////
28
////  To Do:                                                      ////
29
////   - xilinx rams need external tri-state logic                ////
30
////   - fix avant! two-port ram                                  ////
31 1129 lampret
////   - add additional RAMs                                      ////
32 504 lampret
////                                                              ////
33
////  Author(s):                                                  ////
34
////      - Damjan Lampret, lampret@opencores.org                 ////
35
////                                                              ////
36
//////////////////////////////////////////////////////////////////////
37
////                                                              ////
38
//// Copyright (C) 2000 Authors and OPENCORES.ORG                 ////
39
////                                                              ////
40
//// This source file may be used and distributed without         ////
41
//// restriction provided that this copyright statement is not    ////
42
//// removed from the file and that any derivative work contains  ////
43
//// the original copyright notice and the associated disclaimer. ////
44
////                                                              ////
45
//// This source file is free software; you can redistribute it   ////
46
//// and/or modify it under the terms of the GNU Lesser General   ////
47
//// Public License as published by the Free Software Foundation; ////
48
//// either version 2.1 of the License, or (at your option) any   ////
49
//// later version.                                               ////
50
////                                                              ////
51
//// This source is distributed in the hope that it will be       ////
52
//// useful, but WITHOUT ANY WARRANTY; without even the implied   ////
53
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR      ////
54
//// PURPOSE.  See the GNU Lesser General Public License for more ////
55
//// details.                                                     ////
56
////                                                              ////
57
//// You should have received a copy of the GNU Lesser General    ////
58
//// Public License along with this source; if not, download it   ////
59
//// from http://www.opencores.org/lgpl.shtml                     ////
60
////                                                              ////
61
//////////////////////////////////////////////////////////////////////
62
//
63
// CVS Revision History
64
//
65
// $Log: not supported by cvs2svn $
66 1291 lampret
// Revision 1.7  2004/04/05 08:29:57  lampret
67
// Merged branch_qmem into main tree.
68
//
69 1267 lampret
// Revision 1.3.4.2  2003/12/09 11:46:48  simons
70
// Mbist nameing changed, Artisan ram instance signal names fixed, some synthesis waning fixed.
71 1200 markom
//
72 1267 lampret
// Revision 1.3.4.1  2003/07/08 15:36:37  lampret
73
// Added embedded memory QMEM.
74 1184 simons
//
75 1179 simons
// Revision 1.3  2003/04/07 01:19:07  lampret
76
// Added Altera LPM RAMs. Changed generic RAM output when OE inactive.
77
//
78 1129 lampret
// Revision 1.2  2002/10/17 20:04:40  lampret
79
// Added BIST scan. Special VS RAMs need to be used to implement BIST.
80
//
81 1063 lampret
// Revision 1.1  2002/01/03 08:16:15  lampret
82
// New prefixes for RTL files, prefixed module names. Updated cache controllers and MMUs.
83
//
84 504 lampret
// Revision 1.8  2001/11/02 18:57:14  lampret
85
// Modified virtual silicon instantiations.
86
//
87
// Revision 1.7  2001/10/21 17:57:16  lampret
88
// Removed params from generic_XX.v. Added translate_off/on in sprs.v and id.v. Removed spr_addr from dc.v and ic.v. Fixed CR+LF.
89
//
90
// Revision 1.6  2001/10/14 13:12:09  lampret
91
// MP3 version.
92
//
93
// Revision 1.1.1.1  2001/10/06 10:18:36  igorm
94
// no message
95
//
96
// Revision 1.1  2001/08/09 13:39:33  lampret
97
// Major clean-up.
98
//
99
// Revision 1.2  2001/07/30 05:38:02  lampret
100
// Adding empty directories required by HDL coding guidelines
101
//
102
//
103
 
104
// synopsys translate_off
105
`include "timescale.v"
106
// synopsys translate_on
107
`include "or1200_defines.v"
108
 
109
module or1200_spram_1024x32(
110 1063 lampret
`ifdef OR1200_BIST
111
        // RAM BIST
112 1200 markom
        mbist_si_i, mbist_so_o, mbist_ctrl_i,
113 1063 lampret
`endif
114 504 lampret
        // Generic synchronous single-port RAM interface
115 1291 lampret
        clk, rst, ce, we, oe, addr, di, doq
116 504 lampret
);
117
 
118
//
119
// Default address and data buses width
120
//
121
parameter aw = 10;
122
parameter dw = 32;
123
 
124 1063 lampret
`ifdef OR1200_BIST
125 504 lampret
//
126 1063 lampret
// RAM BIST
127
//
128 1267 lampret
input mbist_si_i;
129
input [`OR1200_MBIST_CTRL_WIDTH - 1:0] mbist_ctrl_i;
130
output mbist_so_o;
131 1063 lampret
`endif
132
 
133
//
134 504 lampret
// Generic synchronous single-port RAM interface
135
//
136
input                   clk;    // Clock
137
input                   rst;    // Reset
138
input                   ce;     // Chip enable input
139
input                   we;     // Write enable input
140
input                   oe;     // Output enable input
141
input   [aw-1:0] addr;   // address bus inputs
142
input   [dw-1:0] di;     // input data bus
143 1291 lampret
output  [dw-1:0] doq;    // output data bus
144 504 lampret
 
145
//
146
// Internal wires and registers
147
//
148
 
149 1184 simons
`ifdef OR1200_ARTISAN_SSP
150
`else
151
`ifdef OR1200_VIRTUALSILICON_SSP
152
`else
153 1063 lampret
`ifdef OR1200_BIST
154 1200 markom
assign mbist_so_o = mbist_si_i;
155 1063 lampret
`endif
156 1184 simons
`endif
157
`endif
158 504 lampret
 
159
`ifdef OR1200_ARTISAN_SSP
160
 
161
//
162
// Instantiation of ASIC memory:
163
//
164
// Artisan Synchronous Single-Port RAM (ra1sh)
165
//
166
`ifdef UNUSED
167 1179 simons
art_hssp_1024x32 #(dw, 1<<aw, aw) artisan_ssp(
168 504 lampret
`else
169 1179 simons
`ifdef OR1200_BIST
170
art_hssp_1024x32_bist artisan_ssp(
171
`else
172
art_hssp_1024x32 artisan_ssp(
173 504 lampret
`endif
174 1179 simons
`endif
175
`ifdef OR1200_BIST
176
        // RAM BIST
177 1200 markom
        .mbist_si_i(mbist_si_i),
178
        .mbist_so_o(mbist_so_o),
179
        .mbist_ctrl_i(mbist_ctrl_i),
180 1179 simons
`endif
181
        .CLK(clk),
182
        .CEN(~ce),
183
        .WEN(~we),
184
        .A(addr),
185
        .D(di),
186
        .OEN(~oe),
187 1291 lampret
        .Q(doq)
188 504 lampret
);
189
 
190
`else
191
 
192
`ifdef OR1200_AVANT_ATP
193
 
194
//
195
// Instantiation of ASIC memory:
196
//
197
// Avant! Asynchronous Two-Port RAM
198
//
199
avant_atp avant_atp(
200
        .web(~we),
201
        .reb(),
202
        .oeb(~oe),
203
        .rcsb(),
204
        .wcsb(),
205
        .ra(addr),
206
        .wa(addr),
207
        .di(di),
208 1291 lampret
        .doq(doq)
209 504 lampret
);
210
 
211
`else
212
 
213
`ifdef OR1200_VIRAGE_SSP
214
 
215
//
216
// Instantiation of ASIC memory:
217
//
218
// Virage Synchronous 1-port R/W RAM
219
//
220
virage_ssp virage_ssp(
221
        .clk(clk),
222
        .adr(addr),
223
        .d(di),
224
        .we(we),
225
        .oe(oe),
226
        .me(ce),
227 1291 lampret
        .q(doq)
228 504 lampret
);
229
 
230
`else
231
 
232
`ifdef OR1200_VIRTUALSILICON_SSP
233
 
234
//
235
// Instantiation of ASIC memory:
236
//
237
// Virtual Silicon Single-Port Synchronous SRAM
238
//
239
`ifdef UNUSED
240
vs_hdsp_1024x32 #(1<<aw, aw-1, dw-1) vs_ssp(
241
`else
242 1063 lampret
`ifdef OR1200_BIST
243
vs_hdsp_1024x32_bist vs_ssp(
244
`else
245 504 lampret
vs_hdsp_1024x32 vs_ssp(
246
`endif
247 1063 lampret
`endif
248
`ifdef OR1200_BIST
249
        // RAM BIST
250 1200 markom
        .mbist_si_i(mbist_si_i),
251
        .mbist_so_o(mbist_so_o),
252
        .mbist_ctrl_i(mbist_ctrl_i),
253 1063 lampret
`endif
254 504 lampret
        .CK(clk),
255
        .ADR(addr),
256
        .DI(di),
257
        .WEN(~we),
258
        .CEN(~ce),
259
        .OEN(~oe),
260 1291 lampret
        .DOUT(doq)
261 504 lampret
);
262
 
263
`else
264
 
265
`ifdef OR1200_XILINX_RAMB4
266
 
267
//
268
// Instantiation of FPGA memory:
269
//
270
// Virtex/Spartan2
271
//
272
 
273
//
274
// Block 0
275
//
276
RAMB4_S4 ramb4_s4_0(
277
        .CLK(clk),
278
        .RST(rst),
279
        .ADDR(addr),
280
        .DI(di[3:0]),
281
        .EN(ce),
282
        .WE(we),
283 1291 lampret
        .DO(doq[3:0])
284 504 lampret
);
285
 
286
//
287
// Block 1
288
//
289
RAMB4_S4 ramb4_s4_1(
290
        .CLK(clk),
291
        .RST(rst),
292
        .ADDR(addr),
293
        .DI(di[7:4]),
294
        .EN(ce),
295
        .WE(we),
296 1291 lampret
        .DO(doq[7:4])
297 504 lampret
);
298
 
299
//
300
// Block 2
301
//
302
RAMB4_S4 ramb4_s4_2(
303
        .CLK(clk),
304
        .RST(rst),
305
        .ADDR(addr),
306
        .DI(di[11:8]),
307
        .EN(ce),
308
        .WE(we),
309 1291 lampret
        .DO(doq[11:8])
310 504 lampret
);
311
 
312
//
313
// Block 3
314
//
315
RAMB4_S4 ramb4_s4_3(
316
        .CLK(clk),
317
        .RST(rst),
318
        .ADDR(addr),
319
        .DI(di[15:12]),
320
        .EN(ce),
321
        .WE(we),
322 1291 lampret
        .DO(doq[15:12])
323 504 lampret
);
324
 
325
//
326
// Block 4
327
//
328
RAMB4_S4 ramb4_s4_4(
329
        .CLK(clk),
330
        .RST(rst),
331
        .ADDR(addr),
332
        .DI(di[19:16]),
333
        .EN(ce),
334
        .WE(we),
335 1291 lampret
        .DO(doq[19:16])
336 504 lampret
);
337
 
338
//
339
// Block 5
340
//
341
RAMB4_S4 ramb4_s4_5(
342
        .CLK(clk),
343
        .RST(rst),
344
        .ADDR(addr),
345
        .DI(di[23:20]),
346
        .EN(ce),
347
        .WE(we),
348 1291 lampret
        .DO(doq[23:20])
349 504 lampret
);
350
 
351
//
352
// Block 6
353
//
354
RAMB4_S4 ramb4_s4_6(
355
        .CLK(clk),
356
        .RST(rst),
357
        .ADDR(addr),
358
        .DI(di[27:24]),
359
        .EN(ce),
360
        .WE(we),
361 1291 lampret
        .DO(doq[27:24])
362 504 lampret
);
363
 
364
//
365
// Block 7
366
//
367
RAMB4_S4 ramb4_s4_7(
368
        .CLK(clk),
369
        .RST(rst),
370
        .ADDR(addr),
371
        .DI(di[31:28]),
372
        .EN(ce),
373
        .WE(we),
374 1291 lampret
        .DO(doq[31:28])
375 504 lampret
);
376
 
377
`else
378
 
379 1129 lampret
`ifdef OR1200_ALTERA_LPM
380
 
381 504 lampret
//
382 1129 lampret
// Instantiation of FPGA memory:
383
//
384
// Altera LPM
385
//
386
// Added By Jamil Khatib
387
//
388
 
389
wire    wr;
390
 
391
assign  wr = ce & we;
392
 
393
initial $display("Using Altera LPM.");
394
 
395
lpm_ram_dq lpm_ram_dq_component (
396
        .address(addr),
397
        .inclock(clk),
398
        .outclock(clk),
399
        .data(di),
400
        .we(wr),
401 1291 lampret
        .q(doq)
402 1129 lampret
);
403
 
404
defparam lpm_ram_dq_component.lpm_width = dw,
405
        lpm_ram_dq_component.lpm_widthad = aw,
406
        lpm_ram_dq_component.lpm_indata = "REGISTERED",
407
        lpm_ram_dq_component.lpm_address_control = "REGISTERED",
408
        lpm_ram_dq_component.lpm_outdata = "UNREGISTERED",
409
        lpm_ram_dq_component.lpm_hint = "USE_EAB=ON";
410
        // examplar attribute lpm_ram_dq_component NOOPT TRUE
411
 
412
`else
413
 
414
//
415 504 lampret
// Generic single-port synchronous RAM model
416
//
417
 
418
//
419
// Generic RAM's registers and wires
420
//
421
reg     [dw-1:0] mem [(1<<aw)-1:0];       // RAM content
422 1291 lampret
reg     [aw-1:0] addr_reg;               // RAM address register
423 504 lampret
 
424
//
425
// Data output drivers
426
//
427 1291 lampret
assign doq = (oe) ? mem[addr_reg] : {dw{1'b0}};
428 504 lampret
 
429
//
430 1291 lampret
// RAM address register
431 504 lampret
//
432 1291 lampret
always @(posedge clk or posedge rst)
433
        if (rst)
434
                addr_reg <= #1 {aw{1'b0}};
435
        else if (ce)
436
                addr_reg <= #1 addr;
437
 
438
//
439
// RAM write
440
//
441 504 lampret
always @(posedge clk)
442 1291 lampret
        if (ce && we)
443 504 lampret
                mem[addr] <= #1 di;
444
 
445 1129 lampret
`endif  // !OR1200_ALTERA_LPM
446 504 lampret
`endif  // !OR1200_XILINX_RAMB4_S16
447
`endif  // !OR1200_VIRTUALSILICON_SSP
448
`endif  // !OR1200_VIRAGE_SSP
449
`endif  // !OR1200_AVANT_ATP
450
`endif  // !OR1200_ARTISAN_SSP
451
 
452
endmodule

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.