Skip to content

Commit

Permalink
testing a fix for the request id that is returned when starting a DMA…
Browse files Browse the repository at this point in the history
… transfer
  • Loading branch information
msc24h31 Lucia Luzi (luzil) committed Dec 10, 2024
1 parent 522adfd commit 52375bb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/frontend/inst64/idma_inst64_top.sv
Original file line number Diff line number Diff line change
Expand Up @@ -423,12 +423,12 @@ module idma_inst64_top #(
// 5. acknowledge acc request (qready)
if (acc_res_ready) begin
idma_fe_req_valid [idma_fe_sel_chan] = 1'b1;
if (idma_fe_req_ready) begin
if (idma_fe_req_ready[idma_fe_sel_chan]) begin
acc_res.id = acc_req_i.id;
acc_res.data = next_id;
acc_res.data = next_id[idma_fe_sel_chan];
acc_res.error = 1'b0;
acc_res_valid = 1'b1;
acc_req_ready_o = idma_fe_req_ready;
acc_req_ready_o = idma_fe_req_ready[idma_fe_sel_chan];
end
end
end
Expand Down

0 comments on commit 52375bb

Please sign in to comment.