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

hw: Add AW cuts to chimneys #89

Open
wants to merge 8 commits into
base: main
Choose a base branch
from
Open

hw: Add AW cuts to chimneys #89

wants to merge 8 commits into from

Conversation

fischeti
Copy link
Collaborator

@fischeti fischeti commented Dec 6, 2024

There is a deadlock potential if the downstream AXI network tries to sync the AW and W channel. This is sometimes necessary and also allowed by the AXI specifications (e.g. the axi_to_mem module needs address and data at the same time to generate a memory request). The problem with FlooNoC is that AW and W are sent over the same channels, which can causes a deadlock if the downstream AXI network waits for the W to be valid, which waits for the AW to be consumed.

This PR fixes this by buffering the AWs. Since corresponding AWs and W are guaranteed to be consecutive (due to ordering issues), a buffer of size 1 is already enough to solve this deadlock situation.

@fischeti fischeti marked this pull request as ready for review December 10, 2024 17:22
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.

1 participant