1 |
2 |
csantifort |
//////////////////////////////////////////////////////////////////
|
2 |
|
|
// //
|
3 |
|
|
// Test Module //
|
4 |
|
|
// //
|
5 |
|
|
// This file is part of the Amber project //
|
6 |
|
|
// http://www.opencores.org/project,amber //
|
7 |
|
|
// //
|
8 |
|
|
// Description //
|
9 |
|
|
// Contains a random number generator and a couple of timers //
|
10 |
|
|
// that connect to interrupt lines. Used for testing the //
|
11 |
|
|
// ssytem. //
|
12 |
|
|
// //
|
13 |
|
|
// Author(s): //
|
14 |
|
|
// - Conor Santifort, csantifort.amber@gmail.com //
|
15 |
|
|
// //
|
16 |
|
|
//////////////////////////////////////////////////////////////////
|
17 |
|
|
// //
|
18 |
|
|
// Copyright (C) 2010 Authors and OPENCORES.ORG //
|
19 |
|
|
// //
|
20 |
|
|
// This source file may be used and distributed without //
|
21 |
|
|
// restriction provided that this copyright statement is not //
|
22 |
|
|
// removed from the file and that any derivative work contains //
|
23 |
|
|
// the original copyright notice and the associated disclaimer. //
|
24 |
|
|
// //
|
25 |
|
|
// This source file is free software; you can redistribute it //
|
26 |
|
|
// and/or modify it under the terms of the GNU Lesser General //
|
27 |
|
|
// Public License as published by the Free Software Foundation; //
|
28 |
|
|
// either version 2.1 of the License, or (at your option) any //
|
29 |
|
|
// later version. //
|
30 |
|
|
// //
|
31 |
|
|
// This source is distributed in the hope that it will be //
|
32 |
|
|
// useful, but WITHOUT ANY WARRANTY; without even the implied //
|
33 |
|
|
// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR //
|
34 |
|
|
// PURPOSE. See the GNU Lesser General Public License for more //
|
35 |
|
|
// details. //
|
36 |
|
|
// //
|
37 |
|
|
// You should have received a copy of the GNU Lesser General //
|
38 |
|
|
// Public License along with this source; if not, download it //
|
39 |
|
|
// from http://www.opencores.org/lgpl.shtml //
|
40 |
|
|
// //
|
41 |
|
|
//////////////////////////////////////////////////////////////////
|
42 |
|
|
|
43 |
|
|
|
44 |
|
|
module test_module (
|
45 |
|
|
input i_clk,
|
46 |
|
|
|
47 |
|
|
output o_irq,
|
48 |
|
|
output o_firq,
|
49 |
11 |
csantifort |
output o_mem_ctrl, // 0=128MB, 1=32MB
|
50 |
2 |
csantifort |
input [31:0] i_wb_adr,
|
51 |
|
|
input [3:0] i_wb_sel,
|
52 |
|
|
input i_wb_we,
|
53 |
|
|
output [31:0] o_wb_dat,
|
54 |
|
|
input [31:0] i_wb_dat,
|
55 |
|
|
input i_wb_cyc,
|
56 |
|
|
input i_wb_stb,
|
57 |
|
|
output o_wb_ack,
|
58 |
|
|
output o_wb_err
|
59 |
|
|
|
60 |
|
|
|
61 |
|
|
);
|
62 |
|
|
|
63 |
|
|
`include "register_addresses.v"
|
64 |
|
|
|
65 |
|
|
|
66 |
|
|
reg [7:0] firq_timer = 'd0;
|
67 |
|
|
reg [7:0] irq_timer = 'd0;
|
68 |
|
|
reg [7:0] random_num = 8'hf3;
|
69 |
|
|
|
70 |
|
|
//synopsys translate_off
|
71 |
|
|
reg [1:0] tb_uart_control_reg = 'd0;
|
72 |
|
|
reg [1:0] tb_uart_status_reg = 'd0;
|
73 |
|
|
reg tb_uart_push = 'd0;
|
74 |
|
|
reg [7:0] tb_uart_txd_reg = 'd0;
|
75 |
|
|
//synopsys translate_on
|
76 |
|
|
|
77 |
11 |
csantifort |
reg [2:0] sim_ctrl_reg = 'd0; // 0 = fpga, other values for simulations
|
78 |
|
|
reg mem_ctrl_reg = 'd0; // 0 = 128MB, 1 = 32MB main memory
|
79 |
2 |
csantifort |
reg [31:0] test_status_reg = 'd0;
|
80 |
|
|
reg test_status_set = 'd0; // used to terminate tests
|
81 |
|
|
|
82 |
|
|
wire wb_start_write;
|
83 |
|
|
wire wb_start_read;
|
84 |
|
|
reg wb_start_read_d1 = 'd0;
|
85 |
|
|
reg [31:0] wb_rdata = 'd0;
|
86 |
|
|
|
87 |
|
|
// Can't start a write while a read is completing. The ack for the read cycle
|
88 |
|
|
// needs to be sent first
|
89 |
|
|
assign wb_start_write = i_wb_stb && i_wb_we && !wb_start_read_d1;
|
90 |
|
|
assign wb_start_read = i_wb_stb && !i_wb_we && !o_wb_ack;
|
91 |
|
|
|
92 |
|
|
always @( posedge i_clk )
|
93 |
|
|
wb_start_read_d1 <= wb_start_read;
|
94 |
|
|
|
95 |
11 |
csantifort |
assign o_wb_ack = i_wb_stb && ( wb_start_write || wb_start_read_d1 );
|
96 |
|
|
assign o_wb_err = 1'd0;
|
97 |
|
|
assign o_wb_dat = wb_rdata;
|
98 |
|
|
assign o_mem_ctrl = mem_ctrl_reg;
|
99 |
2 |
csantifort |
|
100 |
|
|
// ========================================================
|
101 |
|
|
// Register Reads
|
102 |
|
|
// ========================================================
|
103 |
|
|
always @( posedge i_clk )
|
104 |
|
|
if ( wb_start_read )
|
105 |
|
|
case ( i_wb_adr[15:0] )
|
106 |
|
|
AMBER_TEST_STATUS: wb_rdata <= test_status_reg;
|
107 |
11 |
csantifort |
AMBER_TEST_FIRQ_TIMER: wb_rdata <= {24'd0, firq_timer};
|
108 |
2 |
csantifort |
AMBER_TEST_IRQ_TIMER: wb_rdata <= {24'd0, irq_timer};
|
109 |
|
|
AMBER_TEST_RANDOM_NUM: wb_rdata <= {24'd0, random_num};
|
110 |
|
|
|
111 |
|
|
/* Allow access to the random register over
|
112 |
|
|
a 16-word address range to load a series
|
113 |
|
|
of random numbers using lmd instruction. */
|
114 |
|
|
AMBER_TEST_RANDOM_NUM00: wb_rdata <= {24'd0, random_num};
|
115 |
|
|
AMBER_TEST_RANDOM_NUM01: wb_rdata <= {24'd0, random_num};
|
116 |
|
|
AMBER_TEST_RANDOM_NUM02: wb_rdata <= {24'd0, random_num};
|
117 |
|
|
AMBER_TEST_RANDOM_NUM03: wb_rdata <= {24'd0, random_num};
|
118 |
|
|
AMBER_TEST_RANDOM_NUM04: wb_rdata <= {24'd0, random_num};
|
119 |
|
|
AMBER_TEST_RANDOM_NUM05: wb_rdata <= {24'd0, random_num};
|
120 |
|
|
AMBER_TEST_RANDOM_NUM06: wb_rdata <= {24'd0, random_num};
|
121 |
|
|
AMBER_TEST_RANDOM_NUM07: wb_rdata <= {24'd0, random_num};
|
122 |
|
|
AMBER_TEST_RANDOM_NUM08: wb_rdata <= {24'd0, random_num};
|
123 |
|
|
AMBER_TEST_RANDOM_NUM09: wb_rdata <= {24'd0, random_num};
|
124 |
|
|
AMBER_TEST_RANDOM_NUM10: wb_rdata <= {24'd0, random_num};
|
125 |
|
|
AMBER_TEST_RANDOM_NUM11: wb_rdata <= {24'd0, random_num};
|
126 |
|
|
AMBER_TEST_RANDOM_NUM12: wb_rdata <= {24'd0, random_num};
|
127 |
|
|
AMBER_TEST_RANDOM_NUM13: wb_rdata <= {24'd0, random_num};
|
128 |
|
|
AMBER_TEST_RANDOM_NUM14: wb_rdata <= {24'd0, random_num};
|
129 |
|
|
AMBER_TEST_RANDOM_NUM15: wb_rdata <= {24'd0, random_num};
|
130 |
|
|
|
131 |
|
|
//synopsys translate_off
|
132 |
|
|
AMBER_TEST_UART_CONTROL: wb_rdata <= {30'd0, tb_uart_control_reg};
|
133 |
|
|
AMBER_TEST_UART_STATUS: wb_rdata <= {30'd0, tb_uart_status_reg};
|
134 |
|
|
AMBER_TEST_UART_TXD: wb_rdata <= {24'd0, tb_uart_txd_reg};
|
135 |
|
|
//synopsys translate_on
|
136 |
|
|
|
137 |
11 |
csantifort |
AMBER_TEST_SIM_CTRL: wb_rdata <= {29'd0, sim_ctrl_reg};
|
138 |
|
|
AMBER_TEST_MEM_CTRL: wb_rdata <= {31'd0, mem_ctrl_reg};
|
139 |
2 |
csantifort |
default: wb_rdata <= 32'haabbccdd;
|
140 |
|
|
|
141 |
|
|
endcase
|
142 |
|
|
|
143 |
|
|
|
144 |
|
|
// ======================================
|
145 |
|
|
// Simulation bit
|
146 |
|
|
// ======================================
|
147 |
|
|
|
148 |
|
|
// This register bit is a 1 in simulation but a 0 in the real fpga
|
149 |
|
|
// Used by software to tell the difference
|
150 |
|
|
//synopsys translate_off
|
151 |
|
|
|
152 |
|
|
`ifndef AMBER_SIM_CTRL
|
153 |
|
|
`define AMBER_SIM_CTRL 0
|
154 |
|
|
`endif
|
155 |
|
|
|
156 |
|
|
always @( posedge i_clk )
|
157 |
|
|
begin
|
158 |
|
|
// Value reads as 1 in simulation, and zero in the FPGA
|
159 |
11 |
csantifort |
sim_ctrl_reg <= 3'd `AMBER_SIM_CTRL ;
|
160 |
2 |
csantifort |
end
|
161 |
|
|
//synopsys translate_on
|
162 |
|
|
|
163 |
|
|
|
164 |
|
|
// ======================================
|
165 |
|
|
// Interrupts
|
166 |
|
|
// ======================================
|
167 |
|
|
assign o_irq = irq_timer == 8'd1;
|
168 |
|
|
assign o_firq = firq_timer == 8'd1;
|
169 |
|
|
|
170 |
|
|
|
171 |
|
|
// ======================================
|
172 |
|
|
// FIRQ Timer Register
|
173 |
|
|
// ======================================
|
174 |
|
|
// Write a value > 1 to set the firq timer
|
175 |
|
|
// Write 0 to clear it
|
176 |
|
|
always @( posedge i_clk )
|
177 |
|
|
if ( wb_start_write && i_wb_adr[15:0] == AMBER_TEST_FIRQ_TIMER )
|
178 |
|
|
firq_timer <= i_wb_dat[7:0];
|
179 |
|
|
else if ( firq_timer > 8'd1 )
|
180 |
|
|
firq_timer <= firq_timer - 1'd1;
|
181 |
|
|
|
182 |
|
|
|
183 |
|
|
// ======================================
|
184 |
|
|
// IRQ Timer Register
|
185 |
|
|
// ======================================
|
186 |
|
|
// Write a value > 1 to set the irq timer
|
187 |
|
|
// Write 0 to clear it
|
188 |
|
|
always @( posedge i_clk )
|
189 |
|
|
if ( wb_start_write && i_wb_adr[15:0] == AMBER_TEST_IRQ_TIMER )
|
190 |
|
|
irq_timer <= i_wb_dat[7:0];
|
191 |
|
|
else if ( irq_timer > 8'd1 )
|
192 |
|
|
irq_timer <= irq_timer - 1'd1;
|
193 |
|
|
|
194 |
|
|
|
195 |
|
|
// ======================================
|
196 |
|
|
// Random Number Generator Register
|
197 |
|
|
// ======================================
|
198 |
|
|
// Write a value > 1 to set the irq timer
|
199 |
|
|
// Write 0 to clear it
|
200 |
|
|
always @( posedge i_clk )
|
201 |
|
|
begin
|
202 |
|
|
if ( wb_start_write && i_wb_adr[15:8] == AMBER_TEST_RANDOM_NUM[15:8] )
|
203 |
|
|
random_num <= i_wb_dat[7:0];
|
204 |
|
|
|
205 |
|
|
// generate a new random number on every read access
|
206 |
|
|
else if ( wb_start_read && i_wb_adr[15:8] == AMBER_TEST_RANDOM_NUM[15:8] )
|
207 |
|
|
random_num <= { random_num[3]^random_num[1],
|
208 |
|
|
random_num[0]^random_num[5],
|
209 |
|
|
~random_num[7]^random_num[4],
|
210 |
|
|
~random_num[2],
|
211 |
|
|
random_num[6],
|
212 |
|
|
random_num[4]^~random_num[3],
|
213 |
|
|
random_num[7]^~random_num[1],
|
214 |
|
|
random_num[7]
|
215 |
|
|
};
|
216 |
|
|
end
|
217 |
|
|
|
218 |
|
|
|
219 |
|
|
// ======================================
|
220 |
|
|
// Test Status Write
|
221 |
|
|
// ======================================
|
222 |
|
|
always @( posedge i_clk )
|
223 |
|
|
if ( wb_start_write && i_wb_adr[15:0] == AMBER_TEST_STATUS )
|
224 |
|
|
test_status_reg <= i_wb_dat;
|
225 |
|
|
|
226 |
|
|
|
227 |
|
|
// ======================================
|
228 |
|
|
// Test Status Write
|
229 |
|
|
// ======================================
|
230 |
|
|
always @( posedge i_clk )
|
231 |
|
|
if ( wb_start_write && i_wb_adr[15:0] == AMBER_TEST_STATUS )
|
232 |
|
|
test_status_set <= 1'd1;
|
233 |
|
|
|
234 |
|
|
|
235 |
|
|
// ======================================
|
236 |
11 |
csantifort |
// Memory Configuration Register Write
|
237 |
|
|
// ======================================
|
238 |
|
|
always @( posedge i_clk )
|
239 |
|
|
if ( wb_start_write && i_wb_adr[15:0] == AMBER_TEST_MEM_CTRL )
|
240 |
|
|
mem_ctrl_reg <= i_wb_dat[0];
|
241 |
|
|
|
242 |
|
|
|
243 |
|
|
// ======================================
|
244 |
2 |
csantifort |
// Test UART registers
|
245 |
|
|
// ======================================
|
246 |
|
|
// These control the testbench UART, not the real
|
247 |
|
|
// UART in system
|
248 |
|
|
|
249 |
|
|
//synopsys translate_off
|
250 |
|
|
always @( posedge i_clk )
|
251 |
|
|
begin
|
252 |
|
|
if ( wb_start_write && i_wb_adr[15:0] == AMBER_TEST_UART_CONTROL )
|
253 |
|
|
tb_uart_control_reg <= i_wb_dat[1:0];
|
254 |
|
|
|
255 |
|
|
if ( wb_start_write && i_wb_adr[15:0] == AMBER_TEST_UART_TXD )
|
256 |
|
|
begin
|
257 |
|
|
tb_uart_txd_reg <= i_wb_dat[7:0];
|
258 |
|
|
tb_uart_push <= !tb_uart_push;
|
259 |
|
|
end
|
260 |
|
|
end
|
261 |
|
|
//synopsys translate_on
|
262 |
|
|
|
263 |
|
|
|
264 |
|
|
|
265 |
|
|
endmodule
|
266 |
|
|
|