-
Notifications
You must be signed in to change notification settings - Fork 162
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
riscv-peripheral
: add standard peripherals
#124
Comments
I was planning on writing some initial peripheral code for the CLIC, but since it's not standardized yet i'm not sure how to go about it. |
Good catch, not sure about how to proceed with this. I suggest you implement the peripheral for your board, so you can test it. Then we can use feature flags to select a pre-release CLIC or a standard CLIC once done. In any case, please consider using the same approach as in #135, which is quite different from the one currently used in |
Wrote some initial code and pushed it to https://github.com/techmccat/riscv/tree/sifive-clic Needs some work on CLINT (in)compatibility and separating che common code |
After getting around to porting bl602-hal to vectored mode I think the volatile-register approach might be better than the one used in #135, mainly because it allows to interact with the interrupt controller via associated functions, like how it's done in the cortex-m crate with the NVIC, without needing to keep a global CLIC struct or instantiating one whenever you need it. |
Hmm I see... the main issue with the volatile-register approach and the Rust ecosystem is that base addresses of peripherals are target-dependent. Therefore we need to deal with const generics and type aliases everywhere. I'm open to having a discussion about this and evaluating pros and cons, let me know your opinions! |
This might be a good discussion for the embedded-group weekly. Could you bring this up on an upcoming meeting? |
I'm on vacation and I'll be traveling by the time of the meeting. I may have an Internet connection and be able to join, but I'm not 100% sure. @almindor are you available? Or should we leave it to the next week? |
Yeah no rush on this, let's find a date that works and present it then. |
As discussed in the embedded-group weekly meeting, we will use a raw pointer-based approach for RISC-V peripherals, mainly because of the different unsoundnesses of the RISC-V peripherals will be implemented in my personal riscv-peripheral repo to speed up the development process. This repo is still "experimental". Thus, we can explore different approaches to evaluating ergonomics for the end-users. Please, take a look and let me know what you think. You will see that now all the functions are associated, and a per-peripheral trait is provided to define the base address and ensure safety. I'll probably end up developing macros to make PACs' life even easier and allowing both associated functions and getter-setters, so everyone is happy. Of course, comments, PRs, suggestions, etc. are more than welcome! |
In case you are curious, I pushed a macro for generating CLINT peripherals and easing the access to I'll do something similar for the PLIC peripheral too in the near future. |
Working example of |
Check CHANGELOG.md on PRs to master
Related PR: #164 |
riscv-peripheral
: add standard peripherals
The text was updated successfully, but these errors were encountered: