diff --git a/hw/ip/rom_ctrl/dv/env/seq_lib/rom_ctrl_common_vseq.sv b/hw/ip/rom_ctrl/dv/env/seq_lib/rom_ctrl_common_vseq.sv index 68d5836fca31f..b56ee12015912 100644 --- a/hw/ip/rom_ctrl/dv/env/seq_lib/rom_ctrl_common_vseq.sv +++ b/hw/ip/rom_ctrl/dv/env/seq_lib/rom_ctrl_common_vseq.sv @@ -127,9 +127,15 @@ function void rom_ctrl_common_vseq::sec_cm_fi_ctrl_svas(sec_cm_base_if_proxy if_ if (touching_req_fifo) begin if (!enable) begin `uvm_info(`gfn, "Doing FI on a request fifo. Disabling related assertions", UVM_HIGH) - $assertoff(0, "tb.dut"); + $assertoff(0, "tb.dut.TlAccessChk_A"); + $assertoff(0, "tb.dut.rom_tlul_assert_device.gen_device.respSzEqReqSz_A"); + $assertoff(0, "tb.dut.rom_tlul_assert_device.gen_device.respMustHaveReq_A"); + $assertoff(0, "tb.dut.rom_tlul_assert_device.gen_device.respOpcode_A"); end else begin - $asserton(0, "tb.dut"); + $asserton(0, "tb.dut.TlAccessChk_A"); + $asserton(0, "tb.dut.rom_tlul_assert_device.gen_device.respSzEqReqSz_A"); + $asserton(0, "tb.dut.rom_tlul_assert_device.gen_device.respMustHaveReq_A"); + $asserton(0, "tb.dut.rom_tlul_assert_device.gen_device.respOpcode_A"); end end end