1 |
37 |
rehayes |
////////////////////////////////////////////////////////////////////////////////
|
2 |
|
|
//
|
3 |
|
|
// WISHBONE revB.2 compliant Xgate Coprocessor - test bench ram
|
4 |
|
|
//
|
5 |
|
|
// Author: Bob Hayes
|
6 |
|
|
// rehayes@opencores.org
|
7 |
|
|
//
|
8 |
|
|
// Downloaded from: http://www.opencores.org/projects/xgate.....
|
9 |
|
|
//
|
10 |
|
|
////////////////////////////////////////////////////////////////////////////////
|
11 |
|
|
// Copyright (c) 2009, Robert Hayes
|
12 |
|
|
//
|
13 |
|
|
// This source file is free software: you can redistribute it and/or modify
|
14 |
|
|
// it under the terms of the GNU Lesser General Public License as published
|
15 |
|
|
// by the Free Software Foundation, either version 3 of the License, or
|
16 |
|
|
// (at your option) any later version.
|
17 |
|
|
//
|
18 |
|
|
// Supplemental terms.
|
19 |
|
|
// * Redistributions of source code must retain the above copyright
|
20 |
|
|
// notice, this list of conditions and the following disclaimer.
|
21 |
|
|
// * Neither the name of the <organization> nor the
|
22 |
|
|
// names of its contributors may be used to endorse or promote products
|
23 |
|
|
// derived from this software without specific prior written permission.
|
24 |
|
|
//
|
25 |
|
|
// THIS SOFTWARE IS PROVIDED BY Robert Hayes ''AS IS'' AND ANY
|
26 |
|
|
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
27 |
|
|
// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
28 |
|
|
// DISCLAIMED. IN NO EVENT SHALL Robert Hayes BE LIABLE FOR ANY
|
29 |
|
|
// DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
30 |
|
|
// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
31 |
|
|
// LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
32 |
|
|
// ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
33 |
|
|
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
34 |
|
|
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
35 |
|
|
//
|
36 |
|
|
// You should have received a copy of the GNU General Public License
|
37 |
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
38 |
|
|
////////////////////////////////////////////////////////////////////////////////
|
39 |
|
|
// 45678901234567890123456789012345678901234567890123456789012345678901234567890
|
40 |
|
|
|
41 |
|
|
|
42 |
|
|
module ram #(parameter AWIDTH = 16, // Address Bus width
|
43 |
|
|
parameter DWIDTH = 16) // Data bus width
|
44 |
|
|
(
|
45 |
|
|
// Wishbone Slave Signals
|
46 |
|
|
output [DWIDTH-1:0] ram_out, // databus output
|
47 |
|
|
|
48 |
|
|
input [AWIDTH-1:0] address, // lower address bits
|
49 |
|
|
input [DWIDTH-1:0] ram_in, // databus input
|
50 |
|
|
input we, // write enable input
|
51 |
|
|
input ce, // Chip Enable
|
52 |
|
|
input stb, // stobe/core select signal
|
53 |
|
|
input [DWIDTH/8 -1:0] sel // Select byte in word bus transaction
|
54 |
|
|
);
|
55 |
|
|
|
56 |
|
|
// Name Address Locations
|
57 |
|
|
parameter XGATE_XGMCTL = 16'h0000;
|
58 |
|
|
|
59 |
|
|
//
|
60 |
|
|
// wires && regs
|
61 |
|
|
//
|
62 |
|
|
reg [ 7:0] ram_8 [65535:0]; // Testbench memory for holding XGATE test code
|
63 |
|
|
|
64 |
|
|
|
65 |
|
|
// Write memory interface to RAM
|
66 |
|
|
always @(posedge stb)
|
67 |
|
|
begin
|
68 |
|
|
if (ce && sel[0] && !sel[1] && we)
|
69 |
|
|
ram_8[address] <= ram_in[7:0];
|
70 |
|
|
if (ce && sel[1] && !sel[0] && we)
|
71 |
|
|
ram_8[address] <= ram_in[7:0];
|
72 |
|
|
if (ce && sel[1] && sel[0] && we)
|
73 |
|
|
begin
|
74 |
|
|
ram_8[address] <= ram_in[15:8];
|
75 |
|
|
ram_8[address+1] <= ram_in[ 7:0];
|
76 |
|
|
end
|
77 |
|
|
end
|
78 |
|
|
|
79 |
|
|
// BIGENDIAN
|
80 |
|
|
assign ram_out = {DWIDTH{ce}} & {ram_8[address], ram_8[address+1]};
|
81 |
|
|
|
82 |
|
|
|
83 |
|
|
task dump_ram;
|
84 |
|
|
input [AWIDTH-1:0] start_address;
|
85 |
|
|
reg [AWIDTH-1:0] dump_address;
|
86 |
|
|
integer i, j;
|
87 |
|
|
begin
|
88 |
|
|
$display("Dumping RAM - Starting Address #%h", start_address);
|
89 |
|
|
|
90 |
|
|
dump_address = start_address;
|
91 |
|
|
while (dump_address <= start_address + 16'h0080)
|
92 |
|
|
begin
|
93 |
|
|
$write("Address = %h", dump_address);
|
94 |
|
|
for (i = 0; i < 16; i = i + 1)
|
95 |
|
|
begin
|
96 |
|
|
$write(" %h", ram_8[dump_address]);
|
97 |
|
|
dump_address = dump_address + 1;
|
98 |
|
|
end
|
99 |
|
|
$write("\n");
|
100 |
|
|
end
|
101 |
|
|
|
102 |
|
|
end
|
103 |
|
|
endtask
|
104 |
|
|
|
105 |
|
|
|
106 |
|
|
|
107 |
|
|
endmodule // ram
|
108 |
|
|
|