summaryrefslogtreecommitdiff
path: root/include/sbi/sbi_ecall_interface.h
diff options
context:
space:
mode:
authorAtish Patra <atish.patra@wdc.com>2019-10-02 23:59:37 +0300
committerAnup Patel <anup@brainfault.org>2019-10-03 06:23:52 +0300
commit26aec6afed528518dbd633a6e0d951b7646d95c5 (patch)
treebdd1dda67cb6a61f4ebcaf1b3130987990f61e32 /include/sbi/sbi_ecall_interface.h
parent3d335bc54b453dd69b269c8841657876fb48f15f (diff)
downloadopensbi-26aec6afed528518dbd633a6e0d951b7646d95c5.tar.xz
lib: Rename existing SBI implementation as 0.1.
Current SBI implementation is now considered as version 0.1 and will be removed/replaced with newer extension/functions in future. Rename the existing implementations accordingly to be in sync with the specification. Signed-off-by: Atish Patra <atish.patra@wdc.com> Reviewed-by: Anup Patel <anup.patel@wdc.com> Reviewed-by: Zong Li <zong.li@sifive.com>
Diffstat (limited to 'include/sbi/sbi_ecall_interface.h')
-rw-r--r--include/sbi/sbi_ecall_interface.h20
1 files changed, 11 insertions, 9 deletions
diff --git a/include/sbi/sbi_ecall_interface.h b/include/sbi/sbi_ecall_interface.h
index 0d8e5ea..a7564d6 100644
--- a/include/sbi/sbi_ecall_interface.h
+++ b/include/sbi/sbi_ecall_interface.h
@@ -12,15 +12,17 @@
/* clang-format off */
-#define SBI_ECALL_SET_TIMER 0
-#define SBI_ECALL_CONSOLE_PUTCHAR 1
-#define SBI_ECALL_CONSOLE_GETCHAR 2
-#define SBI_ECALL_CLEAR_IPI 3
-#define SBI_ECALL_SEND_IPI 4
-#define SBI_ECALL_REMOTE_FENCE_I 5
-#define SBI_ECALL_REMOTE_SFENCE_VMA 6
-#define SBI_ECALL_REMOTE_SFENCE_VMA_ASID 7
-#define SBI_ECALL_SHUTDOWN 8
+enum sbi_ext_id {
+ SBI_EXT_0_1_SET_TIMER = 0x0,
+ SBI_EXT_0_1_CONSOLE_PUTCHAR = 0x1,
+ SBI_EXT_0_1_CONSOLE_GETCHAR = 0x2,
+ SBI_EXT_0_1_CLEAR_IPI = 0x3,
+ SBI_EXT_0_1_SEND_IPI = 0x4,
+ SBI_EXT_0_1_REMOTE_FENCE_I = 0x5,
+ SBI_EXT_0_1_REMOTE_SFENCE_VMA = 0x6,
+ SBI_EXT_0_1_REMOTE_SFENCE_VMA_ASID = 0x7,
+ SBI_EXT_0_1_SHUTDOWN = 0x8,
+};
/* clang-format on */