Skip to content

Commit

Permalink
Merge pull request openhwgroup#2478 from XavierAubert/cv32e40p/interr…
Browse files Browse the repository at this point in the history
…upt_delay

Reduced interrupt delay (long scenario)
  • Loading branch information
pascalgouedo authored Jun 21, 2024
2 parents 515ea80 + d1c4cc2 commit 259a5fc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ task uvme_cv32e40p_interrupt_noise_c::rand_delay();
//@DVT_LINTER_WAIVER_START "MT20211214_1" disable SVTB.29.1.3.1
short_delay_wgt: repeat($urandom_range( 100, 1)) @(cntxt.interrupt_cntxt.vif.drv_cb);
med_delay_wgt: repeat($urandom_range( 500, 100)) @(cntxt.interrupt_cntxt.vif.drv_cb);
long_delay_wgt: repeat($urandom_range(10_000,5_000)) @(cntxt.interrupt_cntxt.vif.drv_cb);
long_delay_wgt: repeat($urandom_range( 5_000,1_000)) @(cntxt.interrupt_cntxt.vif.drv_cb);
//@DVT_LINTER_WAIVER_END "MT20211214_1"
endcase
endtask : rand_delay
Expand Down

0 comments on commit 259a5fc

Please sign in to comment.