From b5be19f9e5c8f25b07375429aa5d00895a8645cc Mon Sep 17 00:00:00 2001 From: Damien Le Moal Date: Fri, 18 Jan 2019 16:28:32 +0900 Subject: sbi: Add ecall helpers Define sbi_ecall_console_puts() using sbi_ecall_console_putchar() renamed as sbi_ecall_console_putc() and remove the hardcoded version of the same funtion in the test payload code. Signed-off-by: Damien Le Moal --- include/sbi/sbi_ecall_interface.h | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'include') diff --git a/include/sbi/sbi_ecall_interface.h b/include/sbi/sbi_ecall_interface.h index 53de6a4d..1ea26764 100644 --- a/include/sbi/sbi_ecall_interface.h +++ b/include/sbi/sbi_ecall_interface.h @@ -24,7 +24,7 @@ register unsigned long a0 asm ("a0") = (unsigned long)(__a0); \ register unsigned long a1 asm ("a1") = (unsigned long)(__a1); \ register unsigned long a2 asm ("a2") = (unsigned long)(__a2); \ - register unsigned long a7 asm ("a7") = (unsigned long)(__num);\ + register unsigned long a7 asm ("a7") = (unsigned long)(__num); \ asm volatile ("ecall" \ : "+r" (a0) \ : "r" (a1), "r" (a2), "r" (a7) \ @@ -36,4 +36,13 @@ #define SBI_ECALL_1(__num, __a0) SBI_ECALL(__num, __a0, 0, 0) #define SBI_ECALL_2(__num, __a0, __a1) SBI_ECALL(__num, __a0, __a1, 0) +#define sbi_ecall_console_putc(c) \ + SBI_ECALL_1(SBI_ECALL_CONSOLE_PUTCHAR, (c)); + +static inline void sbi_ecall_console_puts(const char *str) +{ + while (str && *str) + sbi_ecall_console_putc(*str++); +} + #endif -- cgit v1.3.1