6 releases

0.2.0 Apr 2, 2022
0.1.3 Aug 23, 2021
0.0.0 Mar 3, 2021

#172 in Operating systems

Download history 498/week @ 2023-12-05 516/week @ 2023-12-12 452/week @ 2023-12-19 70/week @ 2023-12-26 384/week @ 2024-01-02 470/week @ 2024-01-09 474/week @ 2024-01-16 552/week @ 2024-01-23 621/week @ 2024-01-30 786/week @ 2024-02-06 815/week @ 2024-02-13 718/week @ 2024-02-20 640/week @ 2024-02-27 668/week @ 2024-03-05 676/week @ 2024-03-12 601/week @ 2024-03-19

2,695 downloads per month

MPL-2.0 license

665KB
1K SLoC

Contains (ELF exe/lib, 1.5MB) fw_jump64.elf, (ELF exe/lib, 1.5MB) fw_jump32.elf

This crate provides a safe, pure-Rust implementation of the RISC-V SBI interface to be used in S-mode software, such as operating system kernels. This crate implements the v1.0.0 version of the SBI specification and aims to stay up to date with it as newer versions of the specification are released.

Important safety note

Since this crate is meant to be used by S-mode software, it is assumed that you are executing the provided functions from within S-mode with a spec compliant SBI implementation running in M-mode (or S-mode in the case of VS-mode), and considers execution from any other operating mode out of the scope of this crate, which may bring with it memory safety concerns in those environments. Consider this an implicit contract when using the crate.

SBI extension support

Extension implementation state legend:

✅ - Fully implemented

🚧 - Partially implemented

❌ - Not implemented

Standard SBI extensions

SBI extensions implementation state

Legacy ✅

Function Extension ID Implemented
Set timer 0
Console putchar 1
Console getchar 2
Clear IPI 3
Send IPI 4
Remote FENCE.I 5
Remote SFENCE.VMA 6
Remote SFENCE.VMA with ASID 7
Shutdown 8

Base ✅

Function Function ID Implemented
Get SBI specification version 0
Get SBI implementation ID 1
Get SBI implementation version 2
Probe SBI extension 3
Get machine vendor ID 4
Get machine architecture ID 5
Get machine implementation ID 6

Timer ✅

Function Function ID Implemented
Set timer 0

Interprocessor Interrupt (IPI) ✅

Function Function ID Implemented
Send IPI 0

RFENCE ✅

Function Function ID Implemented
Remote FENCE.I 0
Remote SFENCE.VMA 1
Remote SFENCE.VMA with ASID 2
Remote HFENCE.GVMA with VMID 3
Remote HFENCE.GVMA 4
Remote HFENCE.VVMA with ASID 5
Remote HFENCE.VVMA 6

Hart State Management ✅

Function Function ID Implemented
Hart start 0
Hart stop 1
Get hart status 2
Hart suspend 3

System Reset ✅

Function Function ID Implemented
System reset 0

Performance Monitoring Unit ✅

Function Function ID Implemented
Get number of counters 0
Get counter information 1
Configure matching counters 2
Start counters 3
Stop counters 4
Read firmware counter 5

Experimental, vendor-specific, and firmware-specific extensions

Experimental, vendor-specific, and firmware-specific SBI extensions are provided as opt-in crate features.

The currently supported non-standard SBI extensions are:

Experimental

There are currently no supported experimental SBI extensions.

Vendor-specific

There are currently no supported vendor-specific SBI extensions.

Firmware-specific

There are currently no supported firmware-specific SBI extensions.

License

sbi is licensed under the Mozilla Public License 2.0

No runtime deps