summaryrefslogtreecommitdiff
path: root/arch/riscv/include/asm/sbi.h
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2023-09-05 09:04:49 -0400
committerTom Rini <trini@konsulko.com>2023-09-05 09:04:49 -0400
commite7b7dca28f57e9331388550597c0687d3bfaded0 (patch)
treedba6f74cca2f0eb5726d838795b08fe87c7276bd /arch/riscv/include/asm/sbi.h
parent493fd3363f6da6a784514657d689c7cda0f390d5 (diff)
parentdfe08374943c0e898fcfaf7327f69e0fb56b7d23 (diff)
Merge https://source.denx.de/u-boot/custodians/u-boot-riscv
+ Implement OpenSBI DBCN extension for early debug console + Fixes for VisionFive2 board + Fix timer missing + Fix L2 LIM issue + Enable PCIE auto enumeration to support USB and NVMe by default + Set eth0 mac address properly + Add __noreturn attribute to spl_invoke_opensbi
Diffstat (limited to 'arch/riscv/include/asm/sbi.h')
-rw-r--r--arch/riscv/include/asm/sbi.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/riscv/include/asm/sbi.h b/arch/riscv/include/asm/sbi.h
index 009a26885c6..bf4c9af6220 100644
--- a/arch/riscv/include/asm/sbi.h
+++ b/arch/riscv/include/asm/sbi.h
@@ -170,5 +170,6 @@ int sbi_get_mvendorid(long *mvendorid);
int sbi_get_marchid(long *marchid);
int sbi_get_mimpid(long *mimpid);
void sbi_srst_reset(unsigned long type, unsigned long reason);
+int sbi_dbcn_write_byte(unsigned char ch);
#endif