@@ -620,11 +620,12 @@ module axi_burst_splitter_gran_counters #(
620620
621621 if (CutPath) begin : gen_spill
622622 cc_spill_register # (
623- .T ( alloc_pld_t ),
623+ .data_t ( alloc_pld_t ),
624624 .Bypass ( 1'b0 )
625625 ) i_spill_register_alloc (
626626 .clk_i,
627627 .rst_ni,
628+ .clr_i ( 1'b0 ),
628629 .valid_i ( alloc_req_i ),
629630 .ready_o ( alloc_gnt_o ),
630631 .data_i ( alloc_pld_in ),
@@ -646,11 +647,11 @@ module axi_burst_splitter_gran_counters #(
646647 cnt_idx_t cnt_free_idx, cnt_r_idx;
647648 for (genvar i = 0 ; i < MaxTxns; i++ ) begin : gen_cnt
648649 cc_delta_counter # (
649- .WIDTH ( $bits (cnt_t) )
650+ .Width ( $bits (cnt_t) )
650651 ) i_cnt (
651652 .clk_i,
652653 .rst_ni,
653- .clear_i ( cnt_clr[i] ),
654+ .clr_i ( cnt_clr[i] ),
654655 .en_i ( cnt_dec[i] ),
655656 .load_i ( cnt_set[i] ),
656657 .down_i ( 1'b1 ),
@@ -664,8 +665,8 @@ module axi_burst_splitter_gran_counters #(
664665 assign cnt_inp = { 1'b0 , alloc_pld_out.len} + 1 ;
665666
666667 cc_lzc # (
667- .WIDTH ( MaxTxns ),
668- .MODE ( cc_pkg :: LZC_TRAILING_ZERO_CNT )
668+ .Width ( MaxTxns ),
669+ .Mode ( cc_pkg :: LZC_TRAILING_ZERO_CNT )
669670 ) i_lzc (
670671 .in_i ( cnt_free ),
671672 .cnt_o ( cnt_free_idx ),
@@ -675,13 +676,14 @@ module axi_burst_splitter_gran_counters #(
675676 logic idq_inp_req, idq_inp_gnt,
676677 idq_oup_gnt, idq_oup_valid, idq_oup_pop;
677678 cc_id_queue # (
678- .ID_WIDTH ( $bits (id_t) ),
679- .CAPACITY ( MaxTxns ),
680- .FULL_BW ( FullBW ),
679+ .IdWidth ( $bits (id_t) ),
680+ .Capacity ( MaxTxns ),
681+ .FullBw ( FullBW ),
681682 .data_t ( cnt_idx_t )
682683 ) i_idq (
683684 .clk_i,
684685 .rst_ni,
686+ .clr_i ( 1'b0 ),
685687 .inp_id_i ( alloc_pld_out.id ),
686688 .inp_data_i ( cnt_free_idx ),
687689 .inp_req_i ( idq_inp_req ),
0 commit comments