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

Subversion Repositories or1k

[/] [or1k/] [tags/] [rel_26/] [or1200/] [rtl/] [verilog/] [or1200_spram_1024x8.v] - Blame information for rev 1765

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

powered by: WebSVN 2.1.0

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