-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrouter_vtest_lib.sv
274 lines (180 loc) · 7.46 KB
/
router_vtest_lib.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
272
273
class router_test extends uvm_test;
`uvm_component_utils(router_test)
//parameters
router_env env;
router_env_config e_cfg;
router_wr_agt_config wcfg[];
router_rd_agt_config rcfg[];
bit has_ragent=1;
bit has_wagent=1;
int no_of_read_agent=3;
int no_of_write_agent=1;
bit has_scoreboard = 1;
extern function new (string name="router_test",uvm_component parent);
extern function void build_phase(uvm_phase phase);
extern function void config_router();
extern function void end_of_elaboration_phase(uvm_phase phase);
endclass
function router_test::new(string name="router_test",uvm_component parent);
super.new(name,parent);
endfunction
function void router_test::build_phase(uvm_phase phase);
super.build_phase(phase);
e_cfg = router_env_config::type_id::create("e_cfg");
//create env_config object
if(has_wagent)
e_cfg.wr_agt_cfg=new[no_of_write_agent];
if(has_ragent)
e_cfg.rd_agt_cfg=new[no_of_read_agent];
config_router();
uvm_config_db #(router_env_config)::set(this,"*","router_env_config",e_cfg);
//creating obj of env
env=router_env::type_id::create("env",this);
// `uvm_info("TEST", "i am in the build phase of driver",UVM_LOW);
endfunction
function void router_test::config_router();
//creating write & rd agent
if(has_wagent)
begin
wcfg=new[no_of_write_agent];
foreach(wcfg[i])
begin
wcfg[i]=router_wr_agt_config::type_id::create($sformatf("wcfg[%0d]",i));
if(!uvm_config_db #(virtual router_if)::get(this,"","vif",wcfg[i].vif))
`uvm_fatal("VIF CONFIG- WRITE","cannot get() interface from uvm_config_db.have you set() it?")
wcfg[i].is_active=UVM_ACTIVE;
e_cfg.wr_agt_cfg[i]=wcfg[i];
end
end
if(has_ragent)
begin
rcfg=new[no_of_read_agent];
foreach(rcfg[i])
begin
rcfg[i]=router_rd_agt_config::type_id::create($sformatf("rcfg[%0d]",i));
if(!uvm_config_db #(virtual router_if)::get(this,"",$sformatf("vif_%0d",i),rcfg[i].vif))
`uvm_fatal("VIF CONFIG- READ","cannot get() interface from uvm_config_db.have you set() it?")
rcfg[i].is_active=UVM_ACTIVE;
e_cfg.rd_agt_cfg[i]=rcfg[i];
end
end
e_cfg.has_ragent=has_ragent;
e_cfg.has_wagent=has_wagent;
e_cfg.no_of_read_agent=no_of_read_agent;
e_cfg.no_of_write_agent=no_of_write_agent;
e_cfg.has_scoreboard = has_scoreboard;
endfunction
function void router_test::end_of_elaboration_phase(uvm_phase phase);
uvm_top.print_topology();
endfunction
//-------------------------------------------------------------------------------------------------------------------------//
// Extend router_small_pkt_test from router_test;
class router_small_pkt_test extends router_test;
// Factory Registration
`uvm_component_utils(router_small_pkt_test)
// Declare the handle for ram_single_vseq virtual sequence
router_small_pkt_vseq router_seqh;
bit [1:0]addr;
// Standard UVM Methods:
extern function new(string name = "router_small_pkt_test" , uvm_component parent);
extern function void build_phase(uvm_phase phase);
extern task run_phase(uvm_phase phase);
endclass
//----------------- constructor new method -------------------//
function router_small_pkt_test::new(string name = "router_small_pkt_test" , uvm_component parent);
super.new(name,parent);
endfunction
//----------------- build() phase method -------------------//
function void router_small_pkt_test::build_phase(uvm_phase phase);
super.build_phase(phase);
endfunction
//----------------- run() phase method -------------------//
task router_small_pkt_test::run_phase(uvm_phase phase);
//raise objection
phase.raise_objection(this);
repeat(20)
begin
addr = {$random}%3;
uvm_config_db#(bit[1:0])::set(this,"*","bit[1:0]",addr);
//create instance for sequence
router_seqh=router_small_pkt_vseq::type_id::create("router_seqh");
//start the sequence wrt virtual sequencer
router_seqh.start(env.v_sequencer);
//drop objection
end
phase.drop_objection(this);
endtask
//----------------------------------------------------------------------------------------------------------------------------//
// Extend router_medium_pkt_test from router_test;
class router_medium_pkt_test extends router_test;
// Factory Registration
`uvm_component_utils(router_medium_pkt_test)
// Declare the handle for ram_single_vseq virtual sequence
router_medium_pkt_vseq router_seqh;
bit [1:0]addr;
// Standard UVM Methods:
extern function new(string name = "router_medium_pkt_test" , uvm_component parent);
extern function void build_phase(uvm_phase phase);
extern task run_phase(uvm_phase phase);
endclass
//----------------- constructor new method -------------------//
function router_medium_pkt_test::new(string name = "router_medium_pkt_test" , uvm_component parent);
super.new(name,parent);
endfunction
//----------------- build() phase method -------------------//
function void router_medium_pkt_test::build_phase(uvm_phase phase);
super.build_phase(phase);
endfunction
//----------------- run() phase method -------------------//
task router_medium_pkt_test::run_phase(uvm_phase phase);
//raise objection
phase.raise_objection(this);
repeat(20)
begin
addr = {$random}%3;
uvm_config_db#(bit[1:0])::set(this,"*","bit[1:0]",addr);
//create instance for sequence
router_seqh=router_medium_pkt_vseq::type_id::create("router_seqh");
//start the sequence wrt virtual sequencer
router_seqh.start(env.v_sequencer);
//drop objection
end
phase.drop_objection(this);
endtask
//-----------------------------------------------------------------------------------------------------------------//
// Extend router_large_pkt_test from router_test;
class router_large_pkt_test extends router_test;
// Factory Registration
`uvm_component_utils(router_large_pkt_test)
// Declare the handle for ram_single_vseq virtual sequence
router_large_pkt_vseq router_seqh;
bit [1:0]addr;
// Standard UVM Methods:
extern function new(string name = "router_large_pkt_test" , uvm_component parent);
extern function void build_phase(uvm_phase phase);
extern task run_phase(uvm_phase phase);
endclass
//----------------- constructor new method -------------------//
function router_large_pkt_test::new(string name = "router_large_pkt_test" , uvm_component parent);
super.new(name,parent);
endfunction
//----------------- build() phase method -------------------//
function void router_large_pkt_test::build_phase(uvm_phase phase);
super.build_phase(phase);
endfunction
//----------------- run() phase method -------------------//
task router_large_pkt_test::run_phase(uvm_phase phase);
//raise objection
phase.raise_objection(this);
repeat(20)
begin
addr = {$random}%3;
uvm_config_db#(bit[1:0])::set(this,"*","bit[1:0]",addr);
//create instance for sequence
router_seqh=router_large_pkt_vseq::type_id::create("router_seqh");
//start the sequence wrt virtual sequencer
router_seqh.start(env.v_sequencer);
end
//drop objection
phase.drop_objection(this);
endtask