-
Notifications
You must be signed in to change notification settings - Fork 0
/
testbench.sv
260 lines (204 loc) · 4.24 KB
/
testbench.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
interface spi_if;
logic clk;
logic rst;
logic newdata;
logic [11:0] din;
logic sclk;
logic cs;
logic mosi;
endinterface
//testbench
module tb;
spi_if sif();
spi dut(sif.clk,sif.rst,sif.newdata,sif.din,sif.sclk,sif.cs,sif.mosi);
environment env;
initial sif.clk<=0;
always #5 sif.clk<=~sif.clk;
initial begin
env=new(sif);
env.run;
end
initial begin
$dumpfile("dump.vcd");
$dumpvars(1);
end
endmodule
//transaction
class transaction;
rand bit newdata;
rand bit[11:0] din;
bit cs;
bit mosi;
constraint c1 {newdata dist {0:=30, 1:=70};
din>1 && din<100;}
function void display(string tag);
$display("[%s] : newdata=%0b, cs=%0b, din=%0d, mosi=%0b",tag,newdata,cs,din,mosi);
endfunction
function transaction copy();
copy =new;
copy.newdata = this.newdata;
copy.cs = this.cs;
copy.din = this.din;
copy.mosi = this.mosi;
endfunction
endclass
//gen
class generator;
transaction t;
mailbox #(transaction) mbxgd;
event dnext,snext,done;
int num;
function new(mailbox #(transaction) mbxgd,int num);
this.mbxgd=mbxgd;
this.num=num;
t=new;
endfunction
task run;
repeat(num)begin
assert(t.randomize) else $error("Randomization Failed");
t.display("GEN");
mbxgd.put(t.copy);
@(dnext);
@(snext);
end
->done;
endtask
endclass
//drv
class driver;
virtual spi_if sif;
transaction t;
mailbox #(transaction) mbxgd;
mailbox #(bit[11:0]) mbxds;
event dnext;
function new(mailbox #(transaction) mbxgd,mailbox #(bit[11:0]) mbxds);
this.mbxgd=mbxgd;
this.mbxds=mbxds;
endfunction
task reset;
sif.rst<=1'b1;
sif.cs<=1'b1;
sif.newdata<=1'b0;
sif.din<=0;
sif.mosi<=1'b0;
repeat(5) @(posedge sif.clk);
sif.rst<=1'b0;
repeat(2) @(posedge sif.clk);
$display("Reset done");
endtask
task run;
forever begin
mbxgd.get(t);
t.display("DRV");
@(posedge sif.sclk);
sif.newdata<=1'b1;
sif.din<=t.din;
mbxds.put(t.din);
@(posedge sif.sclk);
sif.newdata<=0;
wait(sif.cs==1'b1);
$display("Data sent to DAC: %0d", t.din);
->dnext;
end
endtask
endclass
//mon
class monitor;
mailbox #(bit[11:0]) mbxms;
virtual spi_if sif;
bit[11:0] srx;
function new(mailbox #(bit[11:0]) mbxms);
this.mbxms=mbxms;
endfunction
task run;
forever begin
@(posedge sif.sclk);
wait(sif.cs==1'b0);
@(posedge sif.sclk);
for(int i=0;i<=11;i++)begin
@(posedge sif.sclk);
srx[i]=sif.mosi;
end
wait(sif.cs==1'b1);
$display("[MON] : Data = %0d",srx);
mbxms.put(srx);
end
endtask
endclass
//sco
class scoreboard;
mailbox #(bit[11:0]) mbxds,mbxms;
bit[11:0] ds,ms;
event snext;
function new(mailbox #(bit[11:0]) mbxds, mailbox #(bit[11:0]) mbxms);
this.mbxds=mbxds;
this.mbxms=mbxms;
endfunction
task run;
forever begin
mbxds.get(ds);
mbxms.get(ms);
$display("[SCO] : Drv data: %0d, Mon data: %0d", ds,ms);
if(ds==ms)
$display("Matched");
else
$display("Mismatched data");
->snext;
end
endtask
endclass
//Environment
`include "transaction.sv"
`include "generator.sv"
`include "driver.sv"
`include "monitor.sv"
`include "scoreboard.sv"
class environment;
generator g;
driver d;
monitor m;
scoreboard s;
event done;
event nextgs;
event nextgd;
virtual spi_if sif;
mailbox #(transaction) mbxgd;
mailbox #(bit[11:0]) mbxds;
mailbox #(bit[11:0]) mbxms;
function new(virtual spi_if sif);
mbxgd=new;
mbxds=new;
mbxms=new;
g=new(mbxgd,20);
d=new(mbxgd,mbxds);
m=new(mbxms);
s=new(mbxds,mbxms);
this.sif=sif;
d.sif=this.sif;
m.sif=this.sif;
g.dnext=nextgd;
g.snext=nextgs;
d.dnext=nextgd;
s.snext=nextgs;
endfunction
task pre_test;
d.reset;
endtask
task test;
fork
g.run;
d.run;
m.run;
s.run;
join_any
endtask
task post_test;
wait(g.done.triggered);
$finish;
endtask
task run;
pre_test;
test;
post_test;
endtask
endclass