-
Notifications
You must be signed in to change notification settings - Fork 70
feature: Multicast integration #234
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
Merged
colluca
merged 17 commits into
pulp-platform:develop
from
Lore0599:multicast-integration
May 30, 2025
Merged
feature: Multicast integration #234
colluca
merged 17 commits into
pulp-platform:develop
from
Lore0599:multicast-integration
May 30, 2025
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
67775ac
to
c056d90
Compare
d5998ee
to
49ce69a
Compare
af92c0f
to
7a2fee8
Compare
colluca
approved these changes
May 30, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Multicast integration
This PR introduces multicast capabilities to the snitch cluster.
🆕 ADDED:
🧩 CFG: The snitch configuration file can now accept some new parameters:
dma_user_width
: Specifies the width available to encode the multicast mask on the wide interconnect.enable_multicast
: Boolean flag to enable a multicast-capable crossbar on the wide interconnect.atomic_id_width
: Defines the number of bits used in the user field to support atomic operations. This is required to distinguish between hart ID and the multicast mask.⚙️ HW:
axi_mcast_xbar
: The AXI crossbar has been extended with multicast support to enable multicast communication over the wide interconnect.CSR_MCAST
: A new CSR has been added to the Snitch core to allow software to encode and configure the multicast mask.snitch_lsu:
The LSU has been extended to forward the multicast mask correctly through the transaction's user field.💻 SW:
snRuntime
has been updated to support multicast in synchronization mechanisms, such asglobal barriers
.CI