-
Notifications
You must be signed in to change notification settings - Fork 681
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
Ibex integration #979
Merged
Merged
Ibex integration #979
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
60ba635
Move Chipyard CI to Github Actions
chick 797f85c
Mockup self-hosted runners + Bugfix run-tests by init-submods
abejgonzalez f49a26f
Add Ibex
fb59ab6
Add Ibex documentation
3df8d4d
Add Ibex to CI
bb7d4eb
Add ibex-wrapper module
2a050f2
Update testchipip submodule
5ffc100
Address PR comments for Ibex [ci skip]
665ff79
List supported configs
0c3be2a
Bump testchipip bootrom changes
79f43d0
Point to testchipip bootrom file changes
23cdfde
Bump verilator to v4.212
fb6bb91
Bump ibex
663af1c
Regenerate patch for Ibex
082f94c
Revert verilator back to v4.034
7408273
Increase Hwacha timeout
6f8b95b
Bump makefile commits
f2e8266
Point to ibex submodule changes
b6741b0
Revert everything to most recent dev commit
94ae7af
Add Ibex to GHA
086cc1f
Address PR comments for Ibex
ab520e4
Add main to list of checked generator branch names [ci skip]
daea926
Re-add missing .circleci README
abejgonzalez cf1df5f
Match .circleci commit check with GH-A
abejgonzalez File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
Ibex Core | ||
==================================== | ||
|
||
`Ibex <https://github.com/lowRISC/ibex>`__ is a parameterizable RV32IMC embedded core written in SystemVerilog, currently maintained by `lowRISC <https://lowrisc.org>`__. | ||
The `Ibex core` is wrapped in an `Ibex tile` so it can be used with the `Rocket Chip SoC generator`. | ||
The core exposes a custom memory interface, interrupt ports, and other misc. ports that are connected from within the tile to TileLink buses and other parameterization signals. | ||
|
||
.. Warning:: The Ibex mtvec register is 256 byte aligned. When writing/running tests, ensure that the trap vector is also 256 byte aligned. | ||
|
||
.. Warning:: The Ibex reset vector is located at BOOT_ADDR + 0x80. | ||
|
||
While the core itself is not a generator, we expose the same parameterization that the Ibex core provides so that all supported Ibex configurations are available. | ||
|
||
For more information, see the `GitHub repository for Ibex <https://github.com/lowRISC/ibex>`__. |
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
15 changes: 15 additions & 0 deletions
15
generators/chipyard/src/main/scala/config/IbexConfigs.scala
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package chipyard | ||
|
||
import chisel3._ | ||
|
||
import freechips.rocketchip.config.{Config} | ||
|
||
// --------------------- | ||
// Ibex Configs | ||
// --------------------- | ||
|
||
// Multi-core and 32b heterogeneous configs are supported | ||
|
||
class IbexConfig extends Config( | ||
new ibex.WithNIbexCores(1) ++ | ||
new chipyard.config.AbstractConfig) |
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What's going on with all the
.circleci
files being deleted?