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

Add configurability for narrow-wide TCDM port connection #93

Draft
wants to merge 9 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions docs/schema/snitch_cluster.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -444,6 +444,42 @@
"title": "SNAX TCDM Port",
"description": "Number of ports dedicated for an accelerator",
"default": 0
},
"snax_connect_tcdm_wide_only": {
"type": "boolean",
"title": "Connect SNAX TCDM to Wide TCDM MUX",
"description": "Connects a SNAX accelerator's TCDM ports to the wide TCDM MUX only. If false, it connects to narrow TCDM only.",
"default": false
},
"snax_connect_narrow_wide_mix": {
"type": "boolean",
"title": "Connect SNAX TCDM to narrow and wide MUX",
"description": "Connects a SNAX accelerator's TCDM ports to both narrow and wide. If true, it uses the indices specified below.",
"default": false
},
"snax_narrow_tcdm_start_idx": {
"type": "number",
"title": "Narrow TCDM Starting Index",
"description": "The starting index of the narrow TCDM port. Indexing starts from 0.",
"default": 0
},
"snax_narrow_tcdm_end_idx": {
"type": "number",
"title": "Narrow TCDM Ending Index",
"description": "The ending index of the narrow TCDM port. Indexing starts from 0.",
"default": 0
},
"snax_wide_tcdm_start_idx": {
"type": "number",
"title": "Wide TCDM Starting Index",
"description": "The starting index of the wide TCDM port. Indexing starts from 0.",
"default": 0
},
"snax_wide_tcdm_end_idx": {
"type": "number",
"title": "Wide TCDM Ending Index",
"description": "The ending index of the wide TCDM port. Indexing starts from 0.",
"default": 0
}
}
},
Expand Down
Loading
Loading