Skip to content

Commit 91bddb1

Browse files
gautschimirswarbrick
authored andcommitted
[pwm,dv] dont execute intr seq for pwm
The pwm stress test was previoulsy calling the interrupt sequence although the IP does not have any interrupts. Since commit 093a576 this results in an eror. This commit removes the call to the intr-test during the stress test. Signed-off-by: Michael Gautschi <[email protected]>
1 parent 6547ab2 commit 91bddb1

File tree

2 files changed

+0
-12
lines changed

2 files changed

+0
-12
lines changed

hw/ip_templates/pwm/dv/env/seq_lib/pwm_stress_all_vseq.sv

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ endfunction
2222

2323
task pwm_stress_all_vseq::body();
2424
string seq_names[] = {"pwm_smoke_vseq",
25-
"pwm_common_vseq",
2625
"pwm_perf_vseq",
2726
"pwm_rand_output_vseq"};
2827

@@ -37,11 +36,6 @@ task pwm_stress_all_vseq::body();
3736
pwm_vseq.set_sequencer(p_sequencer);
3837
`uvm_info(`gfn, $sformatf("Running %s sequence", seq_names[seq_idx]), UVM_LOW)
3938
`DV_CHECK_RANDOMIZE_FATAL(pwm_vseq)
40-
if (seq_names[seq_idx] == "pwm_common_vseq") begin
41-
pwm_common_vseq common_vseq;
42-
`downcast(common_vseq, pwm_vseq);
43-
common_vseq.common_seq_type = "intr_test";
44-
end
4539
pwm_vseq.start(p_sequencer);
4640
end
4741
endtask : body

hw/top_earlgrey/ip_autogen/pwm/dv/env/seq_lib/pwm_stress_all_vseq.sv

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ endfunction
2222

2323
task pwm_stress_all_vseq::body();
2424
string seq_names[] = {"pwm_smoke_vseq",
25-
"pwm_common_vseq",
2625
"pwm_perf_vseq",
2726
"pwm_rand_output_vseq"};
2827

@@ -37,11 +36,6 @@ task pwm_stress_all_vseq::body();
3736
pwm_vseq.set_sequencer(p_sequencer);
3837
`uvm_info(`gfn, $sformatf("Running %s sequence", seq_names[seq_idx]), UVM_LOW)
3938
`DV_CHECK_RANDOMIZE_FATAL(pwm_vseq)
40-
if (seq_names[seq_idx] == "pwm_common_vseq") begin
41-
pwm_common_vseq common_vseq;
42-
`downcast(common_vseq, pwm_vseq);
43-
common_vseq.common_seq_type = "intr_test";
44-
end
4539
pwm_vseq.start(p_sequencer);
4640
end
4741
endtask : body

0 commit comments

Comments
 (0)