Open
Conversation
This was referenced Nov 18, 2025
broskoTT
added a commit
to tenstorrent/tt-umd
that referenced
this pull request
Jan 25, 2026
### Issue #1431 ### Description This PR is an introductory PR to SPI. It defines the interface, how it's used, how to construct TTDevice to be able to use it, and some tests. It will remain non functional after this PR, and will be implemented per arch in separate PRs. ### List of the changes - Introduce spi.hpp - Add allow_spi argument to TTDevice creation which will control whether SPI access was enabled - CPP and python tests which test the spi functionality. ### Testing This functionality was extensively tested manually through the change allowing flashing new FW to the chip through tt-flash: tenstorrent/tt-flash#68 Also unit tests were carefully constructed. Also, I executed code step by step to confirm everything matches luwen's implementation. ### API Changes Introduces spi read/write.
broskoTT
added a commit
to tenstorrent/tt-umd
that referenced
this pull request
Jan 25, 2026
### Issue #1431 ### Description Implement SPI IO for Wormhole ### List of the changes - Implement Wormhole SPI - Minor change in wormhole constants ### Testing This functionality was extensively tested manually through the change allowing flashing new FW to the chip through tt-flash: tenstorrent/tt-flash#68 Also unit tests were carefully constructed. Also, I executed code step by step to confirm everything matches luwen's implementation. ### API Changes There are no API changes in this PR.
broskoTT
added a commit
to tenstorrent/tt-umd
that referenced
this pull request
Feb 13, 2026
### Issue #1431 ### Description Implement SPI IO for Blackhole ### List of the changes - Implement Blackhole SPI ### Testing This functionality was extensively tested manually through the change allowing flashing new FW to the chip through tt-flash: tenstorrent/tt-flash#68 Also unit tests were carefully constructed. Also, I executed code step by step to confirm everything matches luwen's implementation. ### API Changes There are no API changes in this PR.
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
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.
Related issue: tenstorrent/tt-umd#1433
This PR is an introductory PR to UMD in tt-flash.
The change introduces --use_umd flag, which would turn on using UMD instead of pyluwen for all of the functionality.
tt-umd doesn't support Grayskull so this won't be available with UMD flag.
Changes:
Testing:
Tested on N300 and P150, to be retested on all configurations
There are many relevant UMD PRs to enable this, and this change will switch to main branch once those are merged to UMD main.