Skip to content

Commit

Permalink
axi_dmac: assert xfer_request only when ready
Browse files Browse the repository at this point in the history
If the req_valid asserts faster than the ID gets synchronized over we
assert the xfer request without being ready to accept data.
This can lead to overflow assertion when using a FIFO like interface.
  • Loading branch information
ronagyl committed Sep 7, 2018
1 parent 20ac7dc commit 9d6f3de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/axi_dmac/data_mover.v
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ wire last_load;
wire last;
wire early_tlast;

assign xfer_req = active;
assign xfer_req = active & pending_burst;

assign response_id = id;

Expand Down

0 comments on commit 9d6f3de

Please sign in to comment.