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

Subversion Repositories or1k

[/] [or1k/] [tags/] [rel_29/] [or1200/] [rtl/] [verilog/] [or1200_spram_256x21.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.10  2001/11/27 21:24:04  lampret
85
// Changed instantiation name of VS RAMs.
86
//
87
// Revision 1.9  2001/11/27 19:45:04  lampret
88
// Fixed VS RAM instantiation - again.
89
//
90
// Revision 1.8  2001/11/23 21:42:31  simons
91
// Program counter divided to PPC and NPC.
92
//
93
// Revision 1.6  2001/10/21 17:57:16  lampret
94
// 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.
95
//
96
// Revision 1.5  2001/10/14 13:12:09  lampret
97
// MP3 version.
98
//
99
// Revision 1.1.1.1  2001/10/06 10:18:36  igorm
100
// no message
101
//
102
// Revision 1.1  2001/08/09 13:39:33  lampret
103
// Major clean-up.
104
//
105
// Revision 1.2  2001/07/30 05:38:02  lampret
106
// Adding empty directories required by HDL coding guidelines
107
//
108
//
109
 
110
// synopsys translate_off
111
`include "timescale.v"
112
// synopsys translate_on
113
`include "or1200_defines.v"
114
 
115
module or1200_spram_256x21(
116 1063 lampret
`ifdef OR1200_BIST
117
        // RAM BIST
118 1200 markom
        mbist_si_i, mbist_so_o, mbist_ctrl_i,
119 1063 lampret
`endif
120 504 lampret
        // Generic synchronous single-port RAM interface
121 1291 lampret
        clk, rst, ce, we, oe, addr, di, doq
122 504 lampret
);
123
 
124
//
125
// Default address and data buses width
126
//
127
parameter aw = 8;
128
parameter dw = 21;
129
 
130 1063 lampret
`ifdef OR1200_BIST
131 504 lampret
//
132 1063 lampret
// RAM BIST
133
//
134 1267 lampret
input mbist_si_i;
135
input [`OR1200_MBIST_CTRL_WIDTH - 1:0] mbist_ctrl_i;
136
output mbist_so_o;
137 1063 lampret
`endif
138
 
139
//
140 504 lampret
// Generic synchronous single-port RAM interface
141
//
142
input                   clk;    // Clock
143
input                   rst;    // Reset
144
input                   ce;     // Chip enable input
145
input                   we;     // Write enable input
146
input                   oe;     // Output enable input
147
input   [aw-1:0] addr;   // address bus inputs
148
input   [dw-1:0] di;     // input data bus
149 1291 lampret
output  [dw-1:0] doq;    // output data bus
150 504 lampret
 
151
//
152
// Internal wires and registers
153
//
154
wire    [10:0]           unconnected;
155
 
156 1184 simons
`ifdef OR1200_ARTISAN_SSP
157
`else
158
`ifdef OR1200_VIRTUALSILICON_SSP
159
`else
160 1063 lampret
`ifdef OR1200_BIST
161 1200 markom
assign mbist_so_o = mbist_si_i;
162 1063 lampret
`endif
163 1184 simons
`endif
164
`endif
165 1063 lampret
 
166 504 lampret
`ifdef OR1200_ARTISAN_SSP
167
 
168
//
169
// Instantiation of ASIC memory:
170
//
171
// Artisan Synchronous Single-Port RAM (ra1sh)
172
//
173
`ifdef UNUSED
174
art_hssp_256x21 #(dw, 1<<aw, aw) artisan_ssp(
175
`else
176 1179 simons
`ifdef OR1200_BIST
177
art_hssp_256x21_bist artisan_ssp(
178
`else
179 504 lampret
art_hssp_256x21 artisan_ssp(
180
`endif
181 1179 simons
`endif
182
`ifdef OR1200_BIST
183
        // RAM BIST
184 1200 markom
        .mbist_si_i(mbist_si_i),
185
        .mbist_so_o(mbist_so_o),
186
        .mbist_ctrl_i(mbist_ctrl_i),
187 1179 simons
`endif
188
        .CLK(clk),
189
        .CEN(~ce),
190
        .WEN(~we),
191
        .A(addr),
192
        .D(di),
193
        .OEN(~oe),
194 1291 lampret
        .Q(doq)
195 504 lampret
);
196
 
197
`else
198
 
199
`ifdef OR1200_AVANT_ATP
200
 
201
//
202
// Instantiation of ASIC memory:
203
//
204
// Avant! Asynchronous Two-Port RAM
205
//
206
avant_atp avant_atp(
207
        .web(~we),
208
        .reb(),
209
        .oeb(~oe),
210
        .rcsb(),
211
        .wcsb(),
212
        .ra(addr),
213
        .wa(addr),
214
        .di(di),
215 1291 lampret
        .doq(doq)
216 504 lampret
);
217
 
218
`else
219
 
220
`ifdef OR1200_VIRAGE_SSP
221
 
222
//
223
// Instantiation of ASIC memory:
224
//
225
// Virage Synchronous 1-port R/W RAM
226
//
227
virage_ssp virage_ssp(
228
        .clk(clk),
229
        .adr(addr),
230
        .d(di),
231
        .we(we),
232
        .oe(oe),
233
        .me(ce),
234 1291 lampret
        .q(doq)
235 504 lampret
);
236
 
237
`else
238
 
239
`ifdef OR1200_VIRTUALSILICON_SSP
240
 
241
//
242
// Instantiation of ASIC memory:
243
//
244
// Virtual Silicon Single-Port Synchronous SRAM
245
//
246
`ifdef UNUSED
247
vs_hdsp_256x21 #(1<<aw, aw-1, dw-1) vs_ssp(
248
`else
249 1063 lampret
`ifdef OR1200_BIST
250
vs_hdsp_256x21_bist vs_ssp(
251
`else
252 504 lampret
vs_hdsp_256x21 vs_ssp(
253
`endif
254 1063 lampret
`endif
255
`ifdef OR1200_BIST
256
        // RAM BIST
257 1200 markom
        .mbist_si_i(mbist_si_i),
258
        .mbist_so_o(mbist_so_o),
259
        .mbist_ctrl_i(mbist_ctrl_i),
260 1063 lampret
`endif
261 504 lampret
        .CK(clk),
262
        .ADR(addr),
263
        .DI(di),
264
        .WEN(~we),
265
        .CEN(~ce),
266
        .OEN(~oe),
267 1291 lampret
        .DOUT(doq)
268 504 lampret
);
269
 
270
`else
271
 
272
`ifdef OR1200_XILINX_RAMB4
273
 
274
//
275
// Instantiation of FPGA memory:
276
//
277
// Virtex/Spartan2
278
//
279
 
280
//
281
// Block 0
282
//
283
RAMB4_S16 ramb4_s16_0(
284
        .CLK(clk),
285
        .RST(rst),
286
        .ADDR(addr),
287
        .DI(di[15:0]),
288
        .EN(ce),
289
        .WE(we),
290 1291 lampret
        .DO(doq[15:0])
291 504 lampret
);
292
 
293
//
294
// Block 1
295
//
296
RAMB4_S16 ramb4_s16_1(
297
        .CLK(clk),
298
        .RST(rst),
299
        .ADDR(addr),
300
        .DI({11'b00000000000, di[20:16]}),
301
        .EN(ce),
302
        .WE(we),
303 1291 lampret
        .DO({unconnected, doq[20:16]})
304 504 lampret
);
305
 
306
`else
307
 
308 1129 lampret
`ifdef OR1200_ALTERA_LPM
309
 
310 504 lampret
//
311 1129 lampret
// Instantiation of FPGA memory:
312
//
313
// Altera LPM
314
//
315
// Added By Jamil Khatib
316
//
317
 
318
wire    wr;
319
 
320
assign  wr = ce & we;
321
 
322
initial $display("Using Altera LPM.");
323
 
324
lpm_ram_dq lpm_ram_dq_component (
325
        .address(addr),
326
        .inclock(clk),
327
        .outclock(clk),
328
        .data(di),
329
        .we(wr),
330 1291 lampret
        .q(doq)
331 1129 lampret
);
332
 
333
defparam lpm_ram_dq_component.lpm_width = dw,
334
        lpm_ram_dq_component.lpm_widthad = aw,
335
        lpm_ram_dq_component.lpm_indata = "REGISTERED",
336
        lpm_ram_dq_component.lpm_address_control = "REGISTERED",
337
        lpm_ram_dq_component.lpm_outdata = "UNREGISTERED",
338
        lpm_ram_dq_component.lpm_hint = "USE_EAB=ON";
339
        // examplar attribute lpm_ram_dq_component NOOPT TRUE
340
 
341
`else
342
 
343
//
344 504 lampret
// Generic single-port synchronous RAM model
345
//
346
 
347
//
348
// Generic RAM's registers and wires
349
//
350
reg     [dw-1:0] mem [(1<<aw)-1:0];       // RAM content
351 1291 lampret
reg     [aw-1:0] addr_reg;               // RAM address register
352 504 lampret
 
353
//
354
// Data output drivers
355
//
356 1291 lampret
assign doq = (oe) ? mem[addr_reg] : {dw{1'b0}};
357 504 lampret
 
358
//
359 1291 lampret
// RAM adress register
360 504 lampret
//
361 1291 lampret
always @(posedge clk or posedge rst)
362
        if (rst)
363
                addr_reg <= #1 {aw{1'b0}};
364
        else if (ce)
365
                addr_reg <= #1 addr;
366
 
367
//
368
// RAM write
369
//
370 504 lampret
always @(posedge clk)
371 1291 lampret
        if (ce && we)
372 504 lampret
                mem[addr] <= #1 di;
373
 
374 1129 lampret
`endif  // !OR1200_ALTERA_LPM
375 504 lampret
`endif  // !OR1200_XILINX_RAMB4_S16
376
`endif  // !OR1200_VIRTUALSILICON_SSP
377
`endif  // !OR1200_VIRAGE_SSP
378
`endif  // !OR1200_AVANT_ATP
379
`endif  // !OR1200_ARTISAN_SSP
380
 
381
endmodule

powered by: WebSVN 2.1.0

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