Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/axi_burst_splitter_gran.sv
Original file line number Diff line number Diff line change
Expand Up @@ -698,7 +698,9 @@ module axi_burst_splitter_gran_counters #(
.oup_req_i ( cnt_req_i ),
.oup_data_o ( cnt_r_idx ),
.oup_data_valid_o ( idq_oup_valid ),
.oup_gnt_o ( idq_oup_gnt )
.oup_gnt_o ( idq_oup_gnt ),
.full_o (/* keep open */),
.empty_o (/* keep open */)
);
assign idq_inp_req = alloc_req & alloc_gnt;
assign alloc_gnt = idq_inp_gnt & |(cnt_free);
Expand Down
4 changes: 3 additions & 1 deletion src/axi_burst_unwrap.sv
Original file line number Diff line number Diff line change
Expand Up @@ -616,7 +616,9 @@ module axi_burst_counters #(
.oup_req_i ( cnt_req_i ),
.oup_data_o ( cnt_r_idx ),
.oup_data_valid_o ( idq_oup_valid ),
.oup_gnt_o ( idq_oup_gnt )
.oup_gnt_o ( idq_oup_gnt ),
.full_o (/* keep open */),
.empty_o (/* keep open */)
);
assign idq_inp_req = alloc_req_i & alloc_gnt_o;
assign alloc_gnt_o = idq_inp_gnt & |(cnt_free);
Expand Down
4 changes: 3 additions & 1 deletion src/axi_dw_downsizer.sv
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,9 @@ module axi_dw_downsizer #(
.exists_mask_i ('0 ),
.exists_req_i ('0 ),
.exists_o (/* Unused */ ),
.exists_gnt_o (/* Unused */ )
.exists_gnt_o (/* Unused */ ),
.full_o (/* Unused */ ),
.empty_o (/* Unused */ )
);

for (genvar t = 0; unsigned'(t) < AxiMaxReads; t++) begin: gen_read_downsizer
Expand Down
2 changes: 1 addition & 1 deletion src/axi_id_serialize.sv
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ module axi_id_serialize #(
else $fatal(1, "Not enought Id width on MST port to map all ID's.");
assert(AxiSlvPortIdWidth > 32'd0)
else $fatal(1, "Parameter AxiSlvPortIdWidth has to be larger than 0!");
assert(AxiMstPortIdWidth)
assert(AxiMstPortIdWidth > 32'd0)
else $fatal(1, "Parameter AxiMstPortIdWidth has to be larger than 0!");
assert(AxiMstPortIdWidth <= AxiSlvPortIdWidth)
else $fatal(1, "Downsize implies that AxiMstPortIdWidth <= AxiSlvPortIdWidth!");
Expand Down
3 changes: 2 additions & 1 deletion src/axi_lite_lfsr.sv
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,8 @@ module axi_opt_lfsr #(

always_comb begin : gen_register

xnor_feedback = reg_q[XnorFeedback[MaxNumTabs-1]-1];

// get the parameters
case (Width)
'd8 : XnorFeedback = { 'd8, 'd6, 'd5, 'd4 };
Expand Down Expand Up @@ -203,7 +205,6 @@ module axi_opt_lfsr #(
reg_d[Width-1] = ser_data_i;
// LFSR mode
end else begin
xnor_feedback = reg_q[XnorFeedback[MaxNumTabs-1]-1];
for (int unsigned t = 0; t < MaxNumTabs - 1; t++) begin : gen_feedback_path
xnor_feedback = xnor_feedback;
if (XnorFeedback[t] != 0) begin
Expand Down
Loading