https://github.com/rustsbi/rustsbi
RISC-V Supervisor Binary Interface (RISC-V SBI) library in Rust; runs on M or HS mode; good support for embedded Rust ecosystem. For binary download see prototyper folder.
https://github.com/rustsbi/rustsbi
bare-metal riscv rust rust-embedded rustsbi sbi sbi-specification
Last synced: 28 days ago
JSON representation
RISC-V Supervisor Binary Interface (RISC-V SBI) library in Rust; runs on M or HS mode; good support for embedded Rust ecosystem. For binary download see prototyper folder.
- Host: GitHub
- URL: https://github.com/rustsbi/rustsbi
- Owner: rustsbi
- License: mit
- Created: 2020-07-10T09:26:56.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2025-04-22T13:19:46.000Z (about 2 months ago)
- Last Synced: 2025-04-22T14:25:49.091Z (about 2 months ago)
- Topics: bare-metal, riscv, rust, rust-embedded, rustsbi, sbi, sbi-specification
- Language: Rust
- Homepage:
- Size: 1.12 MB
- Stars: 1,148
- Watchers: 21
- Forks: 112
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE-MIT
Awesome Lists containing this project
- StarryDivineSky - rustsbi/rustsbi - V Supervisor 二进制接口 (RISC-V SBI) 库;在 M 或 HS 模式下运行;对嵌入式 Rust 生态系统的良好支持。 (CPU RISC-V / 网络服务_其他)
- awesome-rust-list - RustSBI - V Supervisor Binary Interface (RISC-V SBI) implementation library in Rust; runs on M or HS mode; good support for embedded Rust ecosystem. (General Operating System)
- awesome-rust-list - RustSBI - V Supervisor Binary Interface (RISC-V SBI) implementation library in Rust; runs on M or HS mode; good support for embedded Rust ecosystem. (General Operating System)
README
# RustSBI
RISC-V Supervisor Binary Interface ([SBI](https://github.com/riscv-non-isa/riscv-sbi-doc/)) library in Rust; runs on M-mode or HS mode.
[](https://crates.io/crates/rustsbi)
[](https://docs.rs/rustsbi)
## Binary downloads
Most users would get RustSBI binary download from the RustSBI Prototyper. Check out the documents [here](https://github.com/rustsbi/rustsbi/tree/main/prototyper)
to build or download images for supported platforms.Boards, SoC vendors and research groups may sometimes provide dedicated RustSBI package for supported platforms.
There are packages exists on [awesome-rustsbi](https://github.com/rustsbi/awesome-rustsbi): it is a curated list of
awesome things related to RustSBI, which includes some implementation projects maintained by individuals or the community.Users on commercial boards may visit implementation specific distribution links depending on the platforms they need,
or consult vendors if they provide discrete RustSBI package support.## Minimum supported Rust version
To compile RustSBI library, you need at least nightly Rust version of `rustc 1.88.0-nightly (d6c1e454a 2025-04-21)`.
We are going to target stable Rustc once version 1.88.0 is landed (on 2025-06-25).## Build this project
### For firmware user
If you need to build RustSBI firmware for M-mode, please refer to the [RustSBI Prototyper](prototyper/README.md) documentation.
### For library user
RustSBI is usually used as a library or dependency. If you wish to, you may build RustSBI library itself using the
following command:```bash
cargo build
```The build should finish without any errors.
Building under native platform will allow development of hypervisors and emulators.
To cross-build for a RISC-V platform environment, you may install the target and build onto it instead:```bash
# If you don't have the cross compile target installed, install it first
rustup target add riscv64imac-unknown-none-elf
# Build this project as library
cargo build --target riscv64imac-unknown-none-elf
```The target platform of RISC-V platform firmware is usually a bare metal target.
Under normal circumstances these targets in Rust would start with `riscv??-` and end with `-none-elf`.## Features
- Feature rich and extensible operating system runtime
- Empower support, compatibility for machines, hypervisors and emulators
- Support to and develop with RISC-V SBI specification v2.0 ratified
- Written in Rust, builds under stable Rust
- Capable to develop with other firmware ecosystem projects
- Adapted for operating system kernel models on your choice
- Included a LLM based Agent module called RustSBI Agent (https://github.com/rustsbi/Agent), which is designed to assist system software developers in their development process## Frequently asked questions
1. How would I build a RustSBI implementation?
RustSBI have extensive documents on such purposes! No matter what you are building with it, you will find some
documents about RustSBI on bare-metal environments, hypervisors and emulators.Check it out at [RustSBI document main page](https://docs.rs/rustsbi).
2. Can I use RustSBI on C based kernels?
Yes, you can! RustSBI strictly follows RISC-V SBI standard. All features are prepares for all programming languages,
as long as they support RISC-V SBI defined calling convention.If your kernel language supports other SBI implementations, usually it will support RustSBI in the same way.
## Talks and documents
This project is originally a part of rCore Summer of Code 2020 activities, inspired
by [MeowSBI](https://github.com/meow-chip/MeowSBI) and other similar projects. Now it is capable of running
rCore-Tutorial and other OS kernels on wide supported RISC-V devices.There are multiple talks related to RustSBI dated back to Aug 2020. These talks discuss from design and abstraction of
RustSBI modules, to actual production and research usage scenario related to RustSBI and RISC-V bootloaders. Public
slides and blog articles of these talks are available at [RustSBI/slides](https://github.com/rustsbi/slides) page.## Notes on platform implementation
1. RustSBI should be used as a library. Under normal circumstances, RustSBI platform can be implemented
with embedded Rust's `embedded-hal` libraries.
2. Contributions are welcomed! We welcome to implement and test RustSBI for both FPGA cores and real cores.
Implementations for emulators are also welcomed. If you are ready, start your own binary project and use
RustSBI in it!
3. If there is a bug in RustSBI project itself, fire an issue or pull request to let us know!## License & Copyright
This project is licensed under either of
- MIT license ([LICENSE-MIT](LICENSE-MIT) or [http://opensource.org/licenses/MIT](http://opensource.org/licenses/MIT))
- Mulan PSL v2 ([LICENSE-MULAN](LICENSE-MULAN) or [https://opensource.org/licenses/MulanPSL-2.0](https://opensource.org/licenses/MulanPSL-2.0))Documents from RISC-V SBI Specification are used in this project. These documents are (C) RISC-V Foundation under
Creative Commons Attribution 4.0 International License (CC-BY 4.0). The full license text is available
at https://creativecommons.org/licenses/by/4.0/.