summaryrefslogtreecommitdiff
path: root/platform/template
diff options
context:
space:
mode:
authorAnup Patel <anup.patel@wdc.com>2020-03-12 07:51:25 +0300
committerAnup Patel <anup@brainfault.org>2020-03-13 09:52:02 +0300
commit823345ecaed0deb7770d9bac1c881004a6410e91 (patch)
treee3b71fb186be4bebd610e796cc12f2d3f33424e6 /platform/template
parent16e7071f6ddd5ba69d416b5a68e4aa191fc19d3b (diff)
downloadopensbi-823345ecaed0deb7770d9bac1c881004a6410e91.tar.xz
include: Make sbi_current_hartid() as macro in riscv_asm.h
The sbi_current_hartid() being a regular function is quite expensive because for callers it is a function call instead of a direct CSR read. This patch converts sbi_current_hartid() into a macro in riscv_asm.h. Signed-off-by: Anup Patel <anup.patel@wdc.com> Reviewed-by: Atish Patra <atish.patra@wdc.com>
Diffstat (limited to 'platform/template')
-rw-r--r--platform/template/platform.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/platform/template/platform.c b/platform/template/platform.c
index c98bbff..60b65ea 100644
--- a/platform/template/platform.c
+++ b/platform/template/platform.c
@@ -4,6 +4,7 @@
* Copyright (c) 2019 Western Digital Corporation or its affiliates.
*/
+#include <sbi/riscv_asm.h>
#include <sbi/riscv_encoding.h>
#include <sbi/sbi_const.h>
#include <sbi/sbi_platform.h>
@@ -82,7 +83,7 @@ static int platform_console_getc(void)
*/
static int platform_irqchip_init(bool cold_boot)
{
- u32 hartid = sbi_current_hartid();
+ u32 hartid = current_hartid();
int ret;
/* Example if the generic PLIC driver is used */