-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsnippet.sv
317 lines (169 loc) · 4.24 KB
/
snippet.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
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
/*import uvm_pkg::*;
`include "uvm_macros.svh"
class my_xtn extends uvm_sequence_item;
rand bit [3:0]addr;
rand bit [7:0] data;
constraint valid_addr{addr inside {[2:13]};}
constraint valid_data {data inside {[15:150]};}
0
`uvm_object_utils_begin(my_xtn)
`uvm_field_int(addr,UVM_ALL_ON)
`uvm_field_int(data,UVM_ALL_ON)
`uvm_object_utils_end
function new(string name="my_xtn");
super.new(name);
endfunction
endclass
class my_generator extends uvm_component;
uvm_blocking_put_port #(my_xtn) put_port;
`uvm_component_utils(my_generator)
function new(string name="my_generator", uvm_component parent);
super.new(name, parent);
put_port=new("put_port",this);
endfunction
virtual task run_phase(uvm_phase phase);
my_xtn xtn;
for( int i=0; i<10; i++)
begin
xtn=my_xtn::type_id::create("xtn");
phase.raise_objection(this);
#10;
put_port.put(xtn);
phase.drop_objection(this);
end
endtask
endclass
class my_driver extends uvm_component;
uvm_blocking_put_imp #(my_xtn,my_driver)put_imp;
`uvm_component_utils(my_driver)
function new(string name="my_driver", uvm_component parent);
super.new(name,parent);
put_imp=new("put_imp",this);
//t2=my_driver::type_id::create("my_driver",this);
endfunction
task put(my_xtn xtn);
my_xtn t2;
//t2=my_xtn::type_id::create("t2");
$cast(t2, xtn.clone());
t2.print();
`uvm_info(get_type_name(), "packet is recived",UVM_LOW)
endtask
endclass
class my_test extends uvm_test;
my_generator t1;
my_driver t2;
`uvm_component_utils(my_test)
function new(string name="my_test", uvm_component parent);
super.new(name,parent);
endfunction
function void build_phase(uvm_phase phase);
super.build_phase(phase);
begin
t2=my_driver::type_id::create("t2",this);
t1=my_generator::type_id::create("t1",this);
end
endfunction
function void connect_phase(uvm_phase phase);
t1.put_port.connect(t2.put_imp);
endfunction
endclass
module top();
initial
begin
run_test("my_test");
end
endmodule*/
import uvm_pkg::*;
`include "uvm_macros.svh"
class my_xtn extends uvm_sequence_item;
rand bit [3:0]addr;
rand bit [7:0] data;
constraint valid_addr{addr inside {[2:13]};}
constraint valid_data {data inside {[15:150]};}
`uvm_object_utils_begin(my_xtn)
`uvm_field_int(addr,UVM_ALL_ON)
`uvm_field_int(data,UVM_ALL_ON)
`uvm_object_utils_end
function new(string name="my_xtn");
super.new(name);
endfunction
endclass
class my_generator extends uvm_component;
uvm_blocking_get_imp #(my_xtn,my_generator) get_imp;
`uvm_component_utils(my_generator)
function new(string name="my_generator", uvm_component parent);
super.new(name, parent);
get_imp=new("get_imp",this);
endfunction
task get(my_xtn t1);
my_xtn t2;
//t2=my_xtn::type_id::create("t2");
$cast(t2, t1.clone());
t2.print();
`uvm_info(get_type_name(), "packet is recived",UVM_LOW)
endtask
endclass
/*virtual task run_phase(uvm_phase phase);
my_xtn xtn;
for( int i=0; i<10; i++)
begin
xtn=my_xtn::type_id::create("xtn");
phase.raise_objection(this);
#10;
put_por.put(xtn);
phase.drop_objection(this);
end
endtask
endclass*/
class my_driver extends uvm_component;
uvm_blocking_get_port #(my_xtn)get_port;
`uvm_component_utils(my_driver)
function new(string name="my_driver", uvm_component parent);
super.new(name,parent);
get_port=new("get_port",this);
//t2=my_driver::type_id::create("my_driver",this);
endfunction
virtual task run_phase(uvm_phase phase);
my_xtn t1;
for( int i=0; i<10; i++)
begin
t1=my_xtn::type_id::create("xtn");
phase.raise_objection(this);
#10;
get_port.get(t1);
phase.drop_objection(this);
end
endtask
endclass
/*task put(my_xtn xtn);
my_xtn t2;
//t2=my_xtn::type_id::create("t2");
$cast(t2, xtn.clone());
t2.print();
`uvm_info(get_type_name(), "packet is recived",UVM_LOW)
endtask
endclass*/
class my_test extends uvm_test;
my_generator t1;
my_driver t2;
`uvm_component_utils(my_test)
function new(string name="my_test", uvm_component parent);
super.new(name,parent);
endfunction
function void build_phase(uvm_phase phase);
super.build_phase(phase);
begin
t2=my_driver::type_id::create("t2",this);
t1=my_generator::type_id::create("t1",this);
end
endfunction
function void connect_phase(uvm_phase phase);
t1.get_imp.connect(t2.get_port);
endfunction
endclass
module top();
initial
begin
run_test("my_test");
end
endmodule