[PATCH v3 0/4] Add SBI FWFT extension support
Clément Léger
cleger at rivosinc.com
Wed Jun 19 02:42:38 PDT 2024
This series adds support for SBI FWFT extension. FWFT extension is not
yet ratified but will be present in SBI V3.0 [1]. Current support can be
tested using kvm-unit-tests [2] using the following command:
$ qemu-system-riscv64 -s -M virt -cpu rv64 -nographic -serial mon:stdio \
-bios <opensbi_fwft>/build/platform/generic/firmware/fw_jump.bin
-kernel <kvm-unit-tests>/riscv/sbi_fwft.flat
Or with spike (with misaligned traps) using this one:
$ spike \
--kernel /home/cleger/Dev/repos/kvm-unit-tests-fwft/riscv/sbi_fwft.flat \
/home/cleger/Dev/repos/opensbi_fwft/build/platform/generic/firmware/fw_jump.elf
Link: https://lists.riscv.org/g/tech-prs/message/924 [1]
Link: https://github.com/clementleger/kvm-unit-tests/tree/dev/cleger/fwft [2]
---
V3:
- Fixed saving of medeleg (was hedeleg)
- Rebased on master
V2:
- Rebased on top of Yong-Xuan Wang svadu/svade series
- Updated wrt latest FWFT spec (removed software check exception deleg)
Clément Léger (4):
lib: sbi: add support for firmware features extension
lib: sbi: fwft: add support for SBI_FWFT_MISALIGNED_EXC_DELEG
lib: sbi: fwft: add support for SBI_FWFT_PTE_AD_HW_UPDATING
lib: sbi: implement SBI FWFT extension
include/sbi/sbi_ecall_interface.h | 27 +++
include/sbi/sbi_fwft.h | 23 +++
lib/sbi/Kconfig | 4 +
lib/sbi/objects.mk | 4 +
lib/sbi/sbi_ecall_fwft.c | 49 ++++++
lib/sbi/sbi_fwft.c | 262 ++++++++++++++++++++++++++++++
lib/sbi/sbi_hsm.c | 15 ++
lib/sbi/sbi_init.c | 11 ++
8 files changed, 395 insertions(+)
create mode 100644 include/sbi/sbi_fwft.h
create mode 100644 lib/sbi/sbi_ecall_fwft.c
create mode 100644 lib/sbi/sbi_fwft.c
--
2.45.2
More information about the opensbi
mailing list