Skip to content

Commit

Permalink
axi_dw_downsizer: Fix hard-coded way of determining ATOP's R response
Browse files Browse the repository at this point in the history
  • Loading branch information
SamuelRiedel committed Mar 14, 2022
1 parent f7cd5f8 commit fd12769
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/axi_dw_downsizer.sv
Original file line number Diff line number Diff line change
Expand Up @@ -800,7 +800,7 @@ module axi_dw_downsizer #(
w_req_d.burst_resp = axi_pkg::RESP_OKAY;

if (!forward_b_beat_full) begin
if (slv_req_i.aw_valid && slv_req_i.aw.atop[5]) begin // ATOP with an R response
if (slv_req_i.aw_valid && slv_req_i.aw.atop[axi_pkg::ATOP_R_RESP]) begin // ATOP with an R response
inject_aw_into_ar_req = 1'b1 ;
slv_resp_o.aw_ready = inject_aw_into_ar_gnt;
end else begin // Regular AW
Expand Down

0 comments on commit fd12769

Please sign in to comment.