[PATCH 2/6] RISC-V: add riscv_vendor_id() support
Marco Felsch
m.felsch at pengutronix.de
Tue Sep 13 05:49:50 PDT 2022
Add the support to query the vendorid which is stored within the
mvendorid register. This register is only accessible from M-Mode so we
need to use the sbi interface if we are running from S-Mode.
Signed-off-by: Marco Felsch <m.felsch at pengutronix.de>
---
arch/riscv/include/asm/system.h | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/arch/riscv/include/asm/system.h b/arch/riscv/include/asm/system.h
index adf856f9e9..3eb50f63fd 100644
--- a/arch/riscv/include/asm/system.h
+++ b/arch/riscv/include/asm/system.h
@@ -5,6 +5,8 @@
#ifndef __ASSEMBLY__
+#include <asm/sbi.h>
+
#define RISCV_MODE_MASK 0x3
enum riscv_mode {
RISCV_U_MODE = 0,
@@ -42,6 +44,30 @@ static inline long __riscv_hartid(u32 flags)
return hartid;
}
+static inline long __riscv_vendor_id(u32 flags)
+{
+ struct sbiret ret = { .error = -1 };
+ long id;
+
+ switch (__riscv_mode(flags)) {
+ case RISCV_M_MODE:
+ __asm__ volatile("csrr %0, mvendorid\n" : "=r"(id));
+ return id;
+ case RISCV_S_MODE:
+ /*
+ * We need to use the sbi_ecall() since it can be that we got
+ * called without a working stack
+ */
+ ret = sbi_ecall(SBI_EXT_BASE, SBI_EXT_BASE_GET_MVENDORID,
+ 0, 0, 0, 0, 0, 0);
+ if (!ret.error)
+ return ret.value;
+ default:
+ }
+
+ return ret.error;
+}
+
#ifndef __PBL__
extern unsigned barebox_riscv_pbl_flags;
@@ -54,6 +80,11 @@ static inline long riscv_hartid(void)
{
return __riscv_hartid(barebox_riscv_pbl_flags);
}
+
+static inline long riscv_vendor_id(void)
+{
+ return __riscv_vendor_id(barebox_riscv_pbl_flags);
+}
#endif
#endif
--
2.30.2
More information about the barebox
mailing list