aboutsummaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2024-05-01 19:40:32 -0600
committerTom Rini <trini@konsulko.com>2024-05-01 19:40:32 -0600
commit62825d48c4151dadb59c106f9a1fb1a5ccb241a0 (patch)
tree788ddfecd676da5b50527770af582c353819defb /cmd
parent3132b7982af501f7f62f7b2c7f89d00205de33d1 (diff)
parent19b762cf83f68b9d9a1f14e75d75781cedf4049f (diff)
downloadu-boot-62825d48c4151dadb59c106f9a1fb1a5ccb241a0.zip
u-boot-62825d48c4151dadb59c106f9a1fb1a5ccb241a0.tar.gz
u-boot-62825d48c4151dadb59c106f9a1fb1a5ccb241a0.tar.bz2
Merge https://source.denx.de/u-boot/custodians/u-boot-riscv
CI: https://source.denx.de/u-boot/custodians/u-boot-riscv/-/pipelines/20596 - RISC-V: cmd: Add SBI implementation ID and extension ID - Board: Rename spl_soc_init to spl_dram_init - Board: milkv_duo: Add SPI NOR flash, Ethernet, Sysreset support
Diffstat (limited to 'cmd')
-rw-r--r--cmd/riscv/sbi.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/cmd/riscv/sbi.c b/cmd/riscv/sbi.c
index bd9d9c4..2d8ee7e 100644
--- a/cmd/riscv/sbi.c
+++ b/cmd/riscv/sbi.c
@@ -29,6 +29,8 @@ static struct sbi_imp implementations[] = {
{ 6, "Coffer" },
{ 7, "Xen Project" },
{ 8, "PolarFire Hart Software Services" },
+ { 9, "coreboot" },
+ { 10, "oreboot" },
};
static struct sbi_ext extensions[] = {
@@ -54,6 +56,7 @@ static struct sbi_ext extensions[] = {
{ SBI_EXT_NACL, "Nested Acceleration Extension" },
{ SBI_EXT_STA, "Steal-time Accounting Extension" },
{ SBI_EXT_DBTR, "Debug Trigger Extension" },
+ { SBI_EXT_SSE, "Supervisor Software Events" },
};
static int do_sbi(struct cmd_tbl *cmdtp, int flag, int argc,