[gpio dv] Modifications to match macro update
diff --git a/hw/ip/gpio/dv/env/seq_lib/gpio_dout_din_regs_random_rw_vseq.sv b/hw/ip/gpio/dv/env/seq_lib/gpio_dout_din_regs_random_rw_vseq.sv
index 3400773..593d95f 100644
--- a/hw/ip/gpio/dv/env/seq_lib/gpio_dout_din_regs_random_rw_vseq.sv
+++ b/hw/ip/gpio/dv/env/seq_lib/gpio_dout_din_regs_random_rw_vseq.sv
@@ -36,7 +36,7 @@
bit [TL_DW-1:0] data_in;
`uvm_info(`gfn, $sformatf("Transaction-%0d: drive random value to gpio_i", tr_num),
UVM_HIGH)
- `DV_CHECK_STD_RANDOMIZE_WITH_FATAL(gpio_i)
+ `DV_CHECK_STD_RANDOMIZE_FATAL(gpio_i)
// drive gpio_vif after setting all output enables to 0's
drive_gpio_in(gpio_i);
cfg.clk_rst_vif.wait_clks(1);
diff --git a/hw/ip/gpio/dv/env/seq_lib/gpio_intr_rand_pgm_vseq.sv b/hw/ip/gpio/dv/env/seq_lib/gpio_intr_rand_pgm_vseq.sv
index 506083d..ff8ab8e 100644
--- a/hw/ip/gpio/dv/env/seq_lib/gpio_intr_rand_pgm_vseq.sv
+++ b/hw/ip/gpio/dv/env/seq_lib/gpio_intr_rand_pgm_vseq.sv
@@ -36,7 +36,7 @@
// gpio input to drive
bit [NUM_GPIOS-1:0] gpio_i;
bit [NUM_GPIOS-1:0] data_in;
- `DV_CHECK_STD_RANDOMIZE_WITH_FATAL(gpio_i)
+ `DV_CHECK_STD_RANDOMIZE_FATAL(gpio_i)
`uvm_info(msg_id, "drive random value on gpio_i", UVM_HIGH)
// drive gpio_vif after setting all output enables to 0's
drive_gpio_in(gpio_i);
diff --git a/hw/ip/gpio/dv/env/seq_lib/gpio_intr_with_filter_rand_intr_event_vseq.sv b/hw/ip/gpio/dv/env/seq_lib/gpio_intr_with_filter_rand_intr_event_vseq.sv
index f3a0dce..fe1a7c8 100644
--- a/hw/ip/gpio/dv/env/seq_lib/gpio_intr_with_filter_rand_intr_event_vseq.sv
+++ b/hw/ip/gpio/dv/env/seq_lib/gpio_intr_with_filter_rand_intr_event_vseq.sv
@@ -57,7 +57,7 @@
update_intr_state(crnt_intr_status, stable_value, stable_value);
// Program filter register
if ($urandom_range(0, 1)) begin
- `DV_CHECK_STD_RANDOMIZE_WITH_FATAL(gpio_filter_value)
+ `DV_CHECK_STD_RANDOMIZE_FATAL(gpio_filter_value)
ral.ctrl_en_input_filter.set(gpio_filter_value);
csr_update(ral.ctrl_en_input_filter);
end
@@ -66,7 +66,7 @@
// Predict updated interrupt status register again
update_intr_state(crnt_intr_status, stable_value, stable_value);
// Randomize gpio data
- `DV_CHECK_STD_RANDOMIZE_WITH_FATAL(gpio_i)
+ `DV_CHECK_STD_RANDOMIZE_FATAL(gpio_i)
`DV_CHECK_MEMBER_RANDOMIZE_FATAL(stable_cycles_per_pin)
foreach (stable_cycles_per_pin[each_pin]) begin
if (gpio_filter_value[each_pin] == 0) begin
diff --git a/hw/ip/gpio/dv/env/seq_lib/gpio_rand_intr_trigger_vseq.sv b/hw/ip/gpio/dv/env/seq_lib/gpio_rand_intr_trigger_vseq.sv
index 0f241e6..a06246b 100644
--- a/hw/ip/gpio/dv/env/seq_lib/gpio_rand_intr_trigger_vseq.sv
+++ b/hw/ip/gpio/dv/env/seq_lib/gpio_rand_intr_trigger_vseq.sv
@@ -48,7 +48,7 @@
for (uint iter = 0; iter < cnt_gpio_tgl; iter++) begin
bit [TL_DW-1:0] gpio_i;
bit [TL_DW-1:0] data_in;
- `DV_CHECK_STD_RANDOMIZE_WITH_FATAL(gpio_i)
+ `DV_CHECK_STD_RANDOMIZE_FATAL(gpio_i)
cfg.gpio_vif.drive(gpio_i);
cfg.clk_rst_vif.wait_clks(1);
// read data_in register
diff --git a/hw/ip/gpio/dv/env/seq_lib/gpio_random_dout_din_vseq.sv b/hw/ip/gpio/dv/env/seq_lib/gpio_random_dout_din_vseq.sv
index 8941703..3550a2b 100644
--- a/hw/ip/gpio/dv/env/seq_lib/gpio_random_dout_din_vseq.sv
+++ b/hw/ip/gpio/dv/env/seq_lib/gpio_random_dout_din_vseq.sv
@@ -36,7 +36,7 @@
bit [NUM_GPIOS-1:0] data_in;
`uvm_info(`gfn, $sformatf("Transaction-%0d: drive random value to gpio_i", tr_num),
UVM_HIGH)
- `DV_CHECK_STD_RANDOMIZE_WITH_FATAL(gpio_i)
+ `DV_CHECK_STD_RANDOMIZE_FATAL(gpio_i)
// drive gpio_vif after setting all output enables to 0's
drive_gpio_in(gpio_i);
cfg.clk_rst_vif.wait_clks(1);