@@ -577,11 +577,11 @@ module cheshire_soc import cheshire_pkg::*; #(
577577 axi_user_t)
578578 // 128-bit axi master
579579 `CHESHIRE_TYPEDEF_AXI_CT ( axi_c910,
580- addr_t,
581- logic [soc910_pkg :: AxiIdWidthMaster - 1 : 0 ],
582- logic [soc910_pkg :: AxiDataWidth - 1 : 0 ],
583- logic [soc910_pkg :: AxiDataWidth / 8 - 1 : 0 ],
584- logic [soc910_pkg :: AxiUserWidth- 1 : 0 ]
580+ addr_t,
581+ logic [Cfg.AxiMstIdWidth - 1 : 0 ],
582+ logic [C910AxiDataWidth - 1 : 0 ],
583+ logic [C910AxiDataWidth / 8 - 1 : 0 ],
584+ logic [Cfg. AxiUserWidth- 1 : 0 ]
585585 )
586586`endif
587587
@@ -670,12 +670,12 @@ module cheshire_soc import cheshire_pkg::*; #(
670670 c910_axi_wrap # (
671671 .AxiSetModifiable ( 1'b1 ),
672672 .AxiUnwrapBursts ( 1'b1 ),
673- .AddrWidth ( soc910_pkg :: AxiAddrWidth ),
674- .DataWidth ( soc910_pkg :: AxiDataWidth ),
675- .IdWidth ( soc910_pkg :: AxiIdWidthMaster ),
676- .UserWidth ( soc910_pkg :: AxiUserWidth ),
677- .axi_req_t ( axi_c910_req_t ),
678- .axi_rsp_t ( axi_c910_rsp_t )
673+ .AddrWidth ( Cfg.AddrWidth ),
674+ .DataWidth ( C910AxiDataWidth ),
675+ .IdWidth ( Cfg.AxiMstIdWidth ),
676+ .UserWidth ( Cfg. AxiUserWidth ),
677+ .axi_req_t ( axi_c910_req_t ),
678+ .axi_rsp_t ( axi_c910_rsp_t )
679679 ) i_c910_axi_wrap (
680680 .clk_i,
681681 .rst_ni,
@@ -750,7 +750,7 @@ module cheshire_soc import cheshire_pkg::*; #(
750750
751751 axi_dw_converter # (
752752 .AxiMaxReads ( 8 ), // Number of outstanding reads
753- .AxiSlvPortDataWidth ( soc910_pkg :: AxiDataWidth ), // Data width of the slv port
753+ .AxiSlvPortDataWidth ( C910AxiDataWidth ), // Data width of the slv port
754754 .AxiMstPortDataWidth ( Cfg.AxiDataWidth ), // Data width of the mst port
755755 .AxiAddrWidth ( Cfg.AddrWidth ), // Address width
756756 .AxiIdWidth ( Cfg.AxiMstIdWidth ), // ID width
@@ -818,11 +818,11 @@ module cheshire_soc import cheshire_pkg::*; #(
818818 );
819819 end else begin : gen_i_c910_bus_err
820820 axi_err_unit_wrap # (
821- .AddrWidth ( Cfg.AddrWidth ),
822- .IdWidth ( soc910_pkg :: AxiIdWidthMaster ),
823- .UserErrBits ( Cfg.AxiUserErrBits ),
824- .UserErrBitsOffset ( Cfg.AxiUserErrLsb ),
825- .NumOutstanding ( Cfg.CoreMaxTxns ),
821+ .AddrWidth ( Cfg.AddrWidth ),
822+ .IdWidth ( Cfg.AxiMstIdWidth ),
823+ .UserErrBits ( Cfg.AxiUserErrBits ),
824+ .UserErrBitsOffset ( Cfg.AxiUserErrLsb ),
825+ .NumOutstanding ( Cfg.CoreMaxTxns ),
826826 .NumStoredErrors ( 4 ),
827827 .DropOldest ( 1'b0 ),
828828 .axi_req_t ( axi_cva6_req_t ),
0 commit comments