forked from pConst/basic_verilog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspi_master_tb.sv
271 lines (233 loc) · 5.49 KB
/
spi_master_tb.sv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
//------------------------------------------------------------------------------
// spi_master_tb.sv
// Konstantin Pavlov, [email protected]
//------------------------------------------------------------------------------
// INFO ------------------------------------------------------------------------
//
`timescale 1ns / 1ps
module spi_master_tb();
logic clk800;
initial begin
#0 clk800 = 1'b0;
forever
#0.625 clk800 = ~clk800;
end
logic clk200;
initial begin
#0 clk200 = 1'b0;
forever
#2.5 clk200 = ~clk200;
end
// external device "asynchronous" clock
logic clk33;
initial begin
#0 clk33 = 1'b0;
forever
#15.151 clk33 = ~clk33;
end
logic rst;
initial begin
#0 rst = 1'b0;
#10.2 rst = 1'b1;
#5 rst = 1'b0;
//#10000;
forever begin
#9985 rst = ~rst;
#5 rst = ~rst;
end
end
logic nrst;
assign nrst = ~rst;
logic rst_once;
initial begin
#0 rst_once = 1'b0;
#10.2 rst_once = 1'b1;
#5 rst_once = 1'b0;
end
logic nrst_once;
assign nrst_once = ~rst_once;
logic [31:0] DerivedClocks;
clk_divider #(
.WIDTH( 32 )
) cd1 (
.clk( clk200 ),
.nrst( nrst_once ),
.ena( 1'b1 ),
.out( DerivedClocks[31:0] )
);
logic [31:0] E_DerivedClocks;
edge_detect ed1[31:0] (
.clk( {32{clk200}} ),
.nrst( {32{nrst_once}} ),
.in( DerivedClocks[31:0] ),
.rising( E_DerivedClocks[31:0] ),
.falling( ),
.both( )
);
logic [15:0] RandomNumber1;
c_rand rng1 (
.clk( clk200 ),
.rst( rst_once ),
.reseed( 1'b0 ),
.seed_val( DerivedClocks[31:0] ),
.out( RandomNumber1[15:0] )
);
logic start;
initial begin
#0 start = 1'b0;
#100 start = 1'b1;
#20 start = 1'b0;
end
// Module under test ==========================================================
logic oe1_pin, ncs1_pin, din1_pin, clk1_pin, clk1_pin_rise, clk1_pin_fall;
logic oe2_pin, ncs2_pin, din2_pin, clk2_pin, clk2_pin_rise, clk2_pin_fall;
logic oe3_pin, ncs3_pin, din3_pin, clk3_pin, clk3_pin_rise, clk3_pin_fall;
logic oe4_pin, ncs4_pin, din4_pin, clk4_pin, clk4_pin_rise, clk4_pin_fall;
reg [7:0] test1_data = 8'b1010_0011;
reg [7:0] test2_data = 8'b1010_0011;
reg [7:0] test3_data = 8'b1010_0011;
reg [7:0] test4_data = 8'b1010_0011;
spi_master #(
.CPOL( 0 ),
.FREE_RUNNING_SPI_CLK( 0 ),
.MOSI_DATA_WIDTH( 8 ),
.WRITE_MSB_FIRST( 1 ),
.MISO_DATA_WIDTH( 8 ),
.READ_MSB_FIRST( 1 )
) SM1 (
.clk( clk200 ),
.nrst( nrst_once ),
.spi_clk( DerivedClocks[0] ),
.spi_wr_cmd( 0 ),
.spi_rd_cmd( start ),
.spi_busy( ),
.mosi_data( 8'b1010_0011 ),
.miso_data( ),
.clk_pin( clk1_pin ),
.ncs_pin( ncs1_pin ),
.mosi_pin( ),
.oe_pin( oe1_pin ),
.miso_pin( din1_pin )
);
spi_master #(
.CPOL( 1 ),
.FREE_RUNNING_SPI_CLK( 0 ),
.MOSI_DATA_WIDTH( 8 ),
.WRITE_MSB_FIRST( 1 ),
.MISO_DATA_WIDTH( 8 ),
.READ_MSB_FIRST( 1 )
) SM2 (
.clk( clk200 ),
.nrst( nrst_once ),
.spi_clk( DerivedClocks[0] ),
.spi_wr_cmd( 0 ),
.spi_rd_cmd( start ),
.spi_busy( ),
.mosi_data( 8'b1010_0011 ),
.miso_data( ),
.clk_pin( clk2_pin ),
.ncs_pin( ncs2_pin ),
.mosi_pin( ),
.oe_pin( oe2_pin ),
.miso_pin( din2_pin )
);
spi_master #(
.CPOL( 0 ),
.FREE_RUNNING_SPI_CLK( 1 ),
.MOSI_DATA_WIDTH( 8 ),
.WRITE_MSB_FIRST( 0 ),
.MISO_DATA_WIDTH( 8 ),
.READ_MSB_FIRST( 0 )
) SM3 (
.clk( clk200 ),
.nrst( nrst_once ),
.spi_clk( DerivedClocks[0] ),
.spi_wr_cmd( 0 ),
.spi_rd_cmd( start ),
.spi_busy( ),
.mosi_data( 8'b1010_0011 ),
.miso_data( ),
.clk_pin( clk3_pin ),
.ncs_pin( ncs3_pin ),
.mosi_pin( ),
.oe_pin( oe3_pin ),
.miso_pin( din3_pin )
);
spi_master #(
.CPOL( 0 ),
.FREE_RUNNING_SPI_CLK( 1 ),
.MOSI_DATA_WIDTH( 8 ),
.WRITE_MSB_FIRST( 0 ),
.MISO_DATA_WIDTH( 8 ),
.READ_MSB_FIRST( 0 )
) SM4 (
.clk( clk200 ),
.nrst( nrst_once ),
.spi_clk( DerivedClocks[0] ),
.spi_wr_cmd( 0 ),
.spi_rd_cmd( start ),
.spi_busy( ),
.mosi_data( 8'b1010_0011 ),
.miso_data( ),
.clk_pin( clk4_pin ),
.ncs_pin( ncs4_pin ),
.mosi_pin( ),
.oe_pin( oe4_pin ),
.miso_pin( din4_pin )
);
// emulating external divice ==================================================
// that works asynchronously on clk33 clock
// clk800 emulates some high-speed "ideal" slave
edge_detect ed2[3:0] (
.clk( {4{clk800}} ),
.nrst( {4{1'b1}} ),
.in( {clk1_pin, clk2_pin, clk3_pin, clk4_pin} ),
.rising( {clk1_pin_rise, clk2_pin_rise, clk3_pin_rise, clk4_pin_rise} ),
.falling( {clk1_pin_fall, clk2_pin_fall, clk3_pin_fall, clk4_pin_fall} ),
.both( )
);
always_ff @(posedge clk800) begin
if( ~nrst_once) begin
din1_pin <= 0;
test1_data[7:0] = 8'b1010_0011;
end else begin
if( ~ncs1_pin && ~oe1_pin && clk1_pin_fall ) begin
din1_pin <=test1_data[7];
test1_data[7:0] <= {test1_data[6:0],1'b0};
end
end
end
always_ff @(posedge clk800) begin
if( ~nrst_once) begin
din2_pin <= 0;
test2_data[7:0] = 8'b1010_0011;
end else begin
if( ~ncs2_pin && ~oe2_pin && clk2_pin_rise ) begin
din2_pin <=test2_data[7];
test2_data[7:0] <= {test2_data[6:0],1'b0};
end
end
end
always_ff @(posedge clk800) begin
if( ~nrst_once) begin
din3_pin <= 0;
test3_data[7:0] = 8'b1010_0011;
end else begin
if( ~ncs3_pin && ~oe3_pin && clk3_pin_fall ) begin
din3_pin <=test3_data[7];
test3_data[7:0] <= {test3_data[6:0],1'b0};
end
end
end
always_ff @(posedge clk800) begin
if( ~nrst_once) begin
din4_pin <= 0;
test4_data[7:0] = 8'b1010_0011;
end else begin
if( ~ncs4_pin && ~oe4_pin && clk4_pin_fall ) begin
din4_pin <=test4_data[7];
test4_data[7:0] <= {test4_data[6:0],1'b0};
end
end
end
endmodule