Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug fixing for axi_burst_unwrap module #369

Merged
merged 2 commits into from
Mar 21, 2025
Merged

Conversation

Aquaticfuller
Copy link
Contributor

  1. Fix wrap len and boundary logic

This commit fixes an off‐by‐one error in the burst length calculation for wrapping bursts in the AXI interface. According to the AXI specification, the actual burst length is encoded as (AxLEN + 1). The fix adjusts the container size calculation by changing it from ax_i.len << ax_i.size to (ax_i.len + 1) << ax_i.size and modifies the computed burst lengths accordingly.

  1. When an AR wrap burst comes in but master ready is low, don't increase the axi_burst_counter, or the unhandshaked AR will be dropped.

@Aquaticfuller Aquaticfuller requested a review from niwis March 18, 2025 14:03
@Aquaticfuller Aquaticfuller self-assigned this Mar 18, 2025
Copy link
Contributor

@niwis niwis left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks, LGTM

@thommythomaso thommythomaso merged commit f143493 into master Mar 21, 2025
3 checks passed
@thommythomaso thommythomaso deleted the zx/axi_burst_unwrap_reb branch March 21, 2025 08:36
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants