-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
hw: Add SMP support to boot ROM #58
Merged
Merged
Conversation
This file contains 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
- Pause all harts except 0 at the beginning of the bootrom - Let all harts jump to next boot stage after hart 0 finished bootrom - Park all harts except 0 at the beginning of crt0 for now (to be extended) - Increase number of scratch registers from 4 to 16 (e.g. for boot address synchronisation) Signed-off-by: Nils Wistoff <nwistoff@iis.ee.ethz.ch>
Signed-off-by: Nils Wistoff <nwistoff@iis.ee.ethz.ch>
Signed-off-by: Nils Wistoff <nwistoff@iis.ee.ethz.ch>
paulsc96
previously approved these changes
Aug 2, 2023
alex96295
previously approved these changes
Aug 3, 2023
Signed-off-by: Nils Wistoff <nwistoff@iis.ee.ethz.ch>
Signed-off-by: Nils Wistoff <nwistoff@iis.ee.ethz.ch>
Fixes the MISP register layout Signed-off-by: Nils Wistoff <nwistoff@iis.ee.ethz.ch>
Signed-off-by: Nils Wistoff <nwistoff@iis.ee.ethz.ch>
3 tasks
MaistoV
pushed a commit
to MaistoV/cheshire_fork
that referenced
this pull request
Aug 23, 2023
* bootrom: Support SMP - Pause all harts except 0 at the beginning of the bootrom - Let all harts jump to next boot stage after hart 0 finished bootrom - Park all harts except 0 at the beginning of crt0 for now (to be extended) - Increase number of scratch registers from 4 to 16 (e.g. for boot address synchronisation) Signed-off-by: Nils Wistoff <nwistoff@iis.ee.ethz.ch> * bootrom: Parametrise number of harts via cheshire_regs Signed-off-by: Nils Wistoff <nwistoff@iis.ee.ethz.ch> * bootrom: Load word unsigned Signed-off-by: Nils Wistoff <nwistoff@iis.ee.ethz.ch> * bootrom: Fix smp_resume jump target Signed-off-by: Nils Wistoff <nwistoff@iis.ee.ethz.ch> * ci: Bump cheshire-nonfree Signed-off-by: Nils Wistoff <nwistoff@iis.ee.ethz.ch> * clint: Bump v0.2.0 Fixes the MISP register layout Signed-off-by: Nils Wistoff <nwistoff@iis.ee.ethz.ch> * clint.h: Update Signed-off-by: Nils Wistoff <nwistoff@iis.ee.ethz.ch> --------- Signed-off-by: Nils Wistoff <nwistoff@iis.ee.ethz.ch>
mattsini1
pushed a commit
that referenced
this pull request
Aug 30, 2023
* bootrom: Support SMP - Pause all harts except 0 at the beginning of the bootrom - Let all harts jump to next boot stage after hart 0 finished bootrom - Park all harts except 0 at the beginning of crt0 for now (to be extended) - Increase number of scratch registers from 4 to 16 (e.g. for boot address synchronisation) Signed-off-by: Nils Wistoff <nwistoff@iis.ee.ethz.ch> * bootrom: Parametrise number of harts via cheshire_regs Signed-off-by: Nils Wistoff <nwistoff@iis.ee.ethz.ch> * bootrom: Load word unsigned Signed-off-by: Nils Wistoff <nwistoff@iis.ee.ethz.ch> * bootrom: Fix smp_resume jump target Signed-off-by: Nils Wistoff <nwistoff@iis.ee.ethz.ch> * ci: Bump cheshire-nonfree Signed-off-by: Nils Wistoff <nwistoff@iis.ee.ethz.ch> * clint: Bump v0.2.0 Fixes the MISP register layout Signed-off-by: Nils Wistoff <nwistoff@iis.ee.ethz.ch> * clint.h: Update Signed-off-by: Nils Wistoff <nwistoff@iis.ee.ethz.ch> --------- Signed-off-by: Nils Wistoff <nwistoff@iis.ee.ethz.ch>
Aquaticfuller
pushed a commit
that referenced
this pull request
Jul 16, 2024
Decouple HW, SW and simulation build targets
# for free
to join this conversation on GitHub.
Already have an account?
# 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.
Add SMP support in the bootrom. In particular,
0
at the beginning of the bootrom,0
finished bootrom,0
at the beginning of crt0 for now (to be extended).To facilitate this,