Skip to content

Commit 41da12d

Browse files
Your Namemaicolciani
authored andcommitted
Reintroduce the Assert calls.
1 parent de1f4fe commit 41da12d

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

rtl/riscv_iommu.sv

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -774,11 +774,10 @@ module riscv_iommu #(
774774
.ar_chan_t ( ar_chan_t ),
775775
.r_chan_t ( r_chan_t ),
776776
// AXI request/response
777-
.req_t ( axi_req_t ),
778-
.resp_t ( axi_rsp_t ),
777+
.axi_req_t ( axi_req_t ),
778+
.axi_resp_t ( axi_rsp_t ),
779779
.NoMstPorts ( 2 ), // MRIF supports adds ignoring mechanism
780780
.AxiLookBits ( ID_WIDTH ), // Assuming same value as AXI ID width
781-
.FallThrough ( 1'b0 ),
782781
.SpillAw ( 1'b0 ),
783782
.SpillW ( 1'b0 ),
784783
.SpillB ( 1'b0 ),

rtl/software_interface/regmap/rv_iommu_regmap.sv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3545,6 +3545,6 @@ module rv_iommu_regmap #(
35453545
assign unused_be = ^reg_be;
35463546

35473547
// Assertions for Register Interface
3548-
// `ASSERT(en2addrHit, (reg_we || reg_re) |-> $onehot0(addr_hit))
3548+
`ASSERT(en2addrHit, (reg_we || reg_re) |-> $onehot0(addr_hit))
35493549

35503550
endmodule

0 commit comments

Comments
 (0)