File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed
Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -698,7 +698,9 @@ module axi_burst_splitter_gran_counters #(
698698 .oup_req_i ( cnt_req_i ),
699699 .oup_data_o ( cnt_r_idx ),
700700 .oup_data_valid_o ( idq_oup_valid ),
701- .oup_gnt_o ( idq_oup_gnt )
701+ .oup_gnt_o ( idq_oup_gnt ),
702+ .full_o (/* keep open */ ),
703+ .empty_o (/* keep open */ )
702704 );
703705 assign idq_inp_req = alloc_req & alloc_gnt;
704706 assign alloc_gnt = idq_inp_gnt & | (cnt_free);
Original file line number Diff line number Diff line change @@ -616,7 +616,9 @@ module axi_burst_counters #(
616616 .oup_req_i ( cnt_req_i ),
617617 .oup_data_o ( cnt_r_idx ),
618618 .oup_data_valid_o ( idq_oup_valid ),
619- .oup_gnt_o ( idq_oup_gnt )
619+ .oup_gnt_o ( idq_oup_gnt ),
620+ .full_o (/* keep open */ ),
621+ .empty_o (/* keep open */ )
620622 );
621623 assign idq_inp_req = alloc_req_i & alloc_gnt_o;
622624 assign alloc_gnt_o = idq_inp_gnt & | (cnt_free);
Original file line number Diff line number Diff line change @@ -330,7 +330,9 @@ module axi_dw_downsizer #(
330330 .exists_mask_i ('0 ),
331331 .exists_req_i ('0 ),
332332 .exists_o (/* Unused */ ),
333- .exists_gnt_o (/* Unused */ )
333+ .exists_gnt_o (/* Unused */ ),
334+ .full_o (/* Unused */ ),
335+ .empty_o (/* Unused */ )
334336 );
335337
336338 for (genvar t = 0 ; unsigned '(t) < AxiMaxReads; t++ ) begin : gen_read_downsizer
You can’t perform that action at this time.
0 commit comments