diff options
author | Tom Rini <trini@konsulko.com> | 2023-08-10 10:36:43 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-08-10 10:36:43 -0400 |
commit | 824f1044227d5e971d5541d8f334bc2dfa22b99f (patch) | |
tree | 40dcd7ccb9a4dd2a5421296e1e7bfc921c46315b /cmd/riscv/sbi.c | |
parent | ec58228830a1f68e8e65099387cf12c5a91c9e72 (diff) | |
parent | 47ed15125cccd98e041cdff3b6bbe675a2418ec2 (diff) |
Merge https://source.denx.de/u-boot/custodians/u-boot-riscv
+ Add USB host support on VisionFive2 board
+ Enable SPI flash support on VisionFive2 board
+ Enable Random Number Generator in RISC-V QEMU board
+ Display new SBI extension
+ Add SPL_ZERO_MEM_BEFORE_USE Kconfig for jh7110 L2 LIM
(Loosely-Integrated Memory)
Diffstat (limited to 'cmd/riscv/sbi.c')
-rw-r--r-- | cmd/riscv/sbi.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cmd/riscv/sbi.c b/cmd/riscv/sbi.c index c4707fe520..32761c595e 100644 --- a/cmd/riscv/sbi.c +++ b/cmd/riscv/sbi.c @@ -27,6 +27,8 @@ static struct sbi_imp implementations[] = { { 4, "RustSBI" }, { 5, "Diosix" }, { 6, "Coffer" }, + { 7, "Xen Project" }, + { 8, "PolarFire Hart Software Services" }, }; static struct sbi_ext extensions[] = { @@ -49,6 +51,8 @@ static struct sbi_ext extensions[] = { { SBI_EXT_DBCN, "Debug Console Extension" }, { SBI_EXT_SUSP, "System Suspend Extension" }, { SBI_EXT_CPPC, "Collaborative Processor Performance Control Extension" }, + { SBI_EXT_NACL, "Nested Acceleration Extension" }, + { SBI_EXT_STA, "Steal-time Accounting Extension" }, }; static int do_sbi(struct cmd_tbl *cmdtp, int flag, int argc, |