-
Notifications
You must be signed in to change notification settings - Fork 27
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
PoC: Implement syscalls using PicoRV32 interrupts #305
Draft
agren
wants to merge
15
commits into
main
Choose a base branch
from
syscall_picorv32_irq
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from 1 commit
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
29c90fe
PoC: PicoRV32 interrupts
agren 0300a86
PoC: Add LED toggling interrupt example
agren 4fb5198
PoC: Automatically control system_mode in hardware
dehanj 1f94b39
PoC: Remove Blake2s register
agren 9ebd186
PoC: Trap when executing from ROM in app mode
agren a593d7b
PoC: Add basic syscall example firmware
agren cef5c90
PoC: Control access to FW RAM
agren 6ae73a3
PoC: Add example firmware with embedded that calls syscalls implement…
agren 9ffd7bc
PoC: Deny access to the SPI master in app mode
dehanj 1475a38
PoC: Remove low privilege syscall
agren b45da9b
PoC: Make sensitive assets only readable/writable before system_mode …
dehanj 5638969
PoC: Remove IRQ30 from fw/irqpoc
agren a7c9250
PoC: Remove IRQ30 from fw/irqpoc_led_toggle
agren c9ae734
PoC: Remove IRQ30 from fw/irqpoc_with_app
agren 6023d97
PoC: Remove IRQ30 from fw/irqpoc_c_example
agren 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
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.
I think we should keep
system_mode_reg <= 1'h1;
Then we can remove
system_mode_new
completely. Since what I can see we never return tosystem_mode_reg = 0
.