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

Subversion Repositories or1k

[/] [or1k/] [branches/] [mp3_stable/] [or1200/] [rtl/] [verilog/] [generic_spram_64x14.v] - Blame information for rev 1765

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 218 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
////                                                              ////
27
////  To Do:                                                      ////
28
////   - xilinx rams need external tri-state logic                ////
29
////   - fix avant! two-port ram                                  ////
30
////   - add additional RAMs (Altera etc)                         ////
31
////                                                              ////
32
////  Author(s):                                                  ////
33
////      - Damjan Lampret, lampret@opencores.org                 ////
34
////                                                              ////
35
//////////////////////////////////////////////////////////////////////
36
////                                                              ////
37
//// Copyright (C) 2000 Authors and OPENCORES.ORG                 ////
38
////                                                              ////
39
//// This source file may be used and distributed without         ////
40
//// restriction provided that this copyright statement is not    ////
41
//// removed from the file and that any derivative work contains  ////
42
//// the original copyright notice and the associated disclaimer. ////
43
////                                                              ////
44
//// This source file is free software; you can redistribute it   ////
45
//// and/or modify it under the terms of the GNU Lesser General   ////
46
//// Public License as published by the Free Software Foundation; ////
47
//// either version 2.1 of the License, or (at your option) any   ////
48
//// later version.                                               ////
49
////                                                              ////
50
//// This source is distributed in the hope that it will be       ////
51
//// useful, but WITHOUT ANY WARRANTY; without even the implied   ////
52
//// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR      ////
53
//// PURPOSE.  See the GNU Lesser General Public License for more ////
54
//// details.                                                     ////
55
////                                                              ////
56
//// You should have received a copy of the GNU Lesser General    ////
57
//// Public License along with this source; if not, download it   ////
58
//// from http://www.opencores.org/lgpl.shtml                     ////
59
////                                                              ////
60
//////////////////////////////////////////////////////////////////////
61
//
62
// CVS Revision History
63
//
64
// $Log: not supported by cvs2svn $
65 265 lampret
// Revision 1.6  2001/10/21 17:57:16  lampret
66
// 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.
67
//
68 218 lampret
// Revision 1.5  2001/10/14 13:12:09  lampret
69
// MP3 version.
70
//
71
// Revision 1.1.1.1  2001/10/06 10:18:36  igorm
72
// no message
73
//
74
// Revision 1.1  2001/08/09 13:39:33  lampret
75
// Major clean-up.
76
//
77
// Revision 1.2  2001/07/30 05:38:02  lampret
78
// Adding empty directories required by HDL coding guidelines
79
//
80
//
81
 
82
// synopsys translate_off
83
`include "timescale.v"
84
// synopsys translate_on
85
`include "defines.v"
86
 
87
module generic_spram_64x14(
88
        // Generic synchronous single-port RAM interface
89
        clk, rst, ce, we, oe, addr, di, do
90
);
91
 
92
//
93
// Default address and data buses width
94
//
95
parameter aw = 6;
96
parameter dw = 14;
97
 
98
//
99
// Generic synchronous single-port RAM interface
100
//
101
input                   clk;    // Clock
102
input                   rst;    // Reset
103
input                   ce;     // Chip enable input
104
input                   we;     // Write enable input
105
input                   oe;     // Output enable input
106
input   [aw-1:0] addr;   // address bus inputs
107
input   [dw-1:0] di;     // input data bus
108
output  [dw-1:0] do;     // output data bus
109
 
110
//
111
// Internal wires and registers
112
//
113
wire    [1:0]            unconnected;
114
 
115
`ifdef ARTISAN_SSP
116
 
117
//
118
// Instantiation of ASIC memory:
119
//
120
// Artisan Synchronous Single-Port RAM (ra1sh)
121
//
122
`ifdef UNUSED
123
art_hssp_64x14 #(dw, 1<<aw, aw) artisan_ssp(
124
`else
125
art_hssp_64x14 artisan_ssp(
126
`endif
127
        .clk(clk),
128
        .cen(~ce),
129
        .wen(~we),
130
        .a(addr),
131
        .d(di),
132
        .oen(~oe),
133
        .q(do)
134
);
135
 
136
`else
137
 
138
`ifdef AVANT_ATP
139
 
140
//
141
// Instantiation of ASIC memory:
142
//
143
// Avant! Asynchronous Two-Port RAM
144
//
145
avant_atp avant_atp(
146
        .web(~we),
147
        .reb(),
148
        .oeb(~oe),
149
        .rcsb(),
150
        .wcsb(),
151
        .ra(addr),
152
        .wa(addr),
153
        .di(di),
154
        .do(do)
155
);
156
 
157
`else
158
 
159
`ifdef VIRAGE_SSP
160
 
161
//
162
// Instantiation of ASIC memory:
163
//
164
// Virage Synchronous 1-port R/W RAM
165
//
166
virage_ssp virage_ssp(
167
        .clk(clk),
168
        .adr(addr),
169
        .d(di),
170
        .we(we),
171
        .oe(oe),
172
        .me(ce),
173
        .q(do)
174
);
175
 
176
`else
177
 
178
`ifdef VIRTUALSILICON_SSP
179
 
180
//
181
// Instantiation of ASIC memory:
182
//
183
// Virtual Silicon Single-Port Synchronous SRAM
184
//
185 265 lampret
`ifdef UNUSED
186
vs_hdsp_64x14 #(1<<aw, aw-1, dw-1) vs_ssp(
187
`else
188
vs_hdsp_64x14 vs_ssp(
189
`endif
190 218 lampret
        .CK(clk),
191
        .ADR(addr),
192
        .DI(di),
193
        .WEN(~we),
194
        .CEN(~ce),
195
        .OEN(~oe),
196
        .DOUT(do)
197
);
198
 
199
`else
200
 
201
`ifdef XILINX_RAMB4
202
 
203
//
204
// Instantiation of FPGA memory:
205
//
206
// Virtex/Spartan2
207
//
208
 
209
//
210
// Block 0
211
//
212
RAMB4_S16 ramb4_s16_0(
213
        .CLK(clk),
214
        .RST(rst),
215
        .ADDR({2'b00, addr}),
216
        .DI({unconnected, di[13:0]}),
217
        .EN(ce),
218
        .WE(we),
219
        .DO({unconnected, do[13:0]})
220
);
221
 
222
`else
223
 
224
//
225
// Generic single-port synchronous RAM model
226
//
227
 
228
//
229
// Generic RAM's registers and wires
230
//
231
reg     [dw-1:0] mem [(1<<aw)-1:0];       // RAM content
232
reg     [dw-1:0] do_reg;                 // RAM data output register
233
 
234
//
235
// Data output drivers
236
//
237
assign do = (oe) ? do_reg : {dw{1'bz}};
238
 
239
//
240
// RAM read and write
241
//
242
always @(posedge clk)
243
        if (ce && !we)
244
                do_reg <= #1 mem[addr];
245
        else if (ce && we)
246
                mem[addr] <= #1 di;
247
 
248
`endif  // !XILINX_RAMB4_S16
249
`endif  // !VIRTUALSILICON_SSP
250
`endif  // !VIRAGE_SSP
251
`endif  // !AVANT_ATP
252
`endif  // !ARTISAN_SSP
253
 
254
endmodule

powered by: WebSVN 2.1.0

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