Skip to content
Snippets Groups Projects
Commit 7eb79297 authored by Lukas Auer's avatar Lukas Auer Committed by Andes
Browse files

riscv: support standalone applications on RV64I systems


Add an implementation of EXPORT_FUNC() for RV64I systems to support them
in standalone applications.

Signed-off-by: default avatarLukas Auer <lukas.auer@aisec.fraunhofer.de>
Reviewed-by: default avatarBin Meng <bmeng.cn@gmail.com>
Tested-by: default avatarBin Meng <bmeng.cn@gmail.com>
parent cbb860f2
No related branches found
No related tags found
No related merge requests found
...@@ -176,6 +176,16 @@ gd_t *global_data; ...@@ -176,6 +176,16 @@ gd_t *global_data;
/* /*
* gp holds the pointer to the global_data. t0 is call clobbered. * gp holds the pointer to the global_data. t0 is call clobbered.
*/ */
#ifdef CONFIG_ARCH_RV64I
#define EXPORT_FUNC(f, a, x, ...) \
asm volatile ( \
" .globl " #x "\n" \
#x ":\n" \
" ld t0, %0(gp)\n" \
" ld t0, %1(t0)\n" \
" jr t0\n" \
: : "i"(offsetof(gd_t, jt)), "i"(FO(x)) : "t0");
#else
#define EXPORT_FUNC(f, a, x, ...) \ #define EXPORT_FUNC(f, a, x, ...) \
asm volatile ( \ asm volatile ( \
" .globl " #x "\n" \ " .globl " #x "\n" \
...@@ -184,6 +194,7 @@ gd_t *global_data; ...@@ -184,6 +194,7 @@ gd_t *global_data;
" lw t0, %1(t0)\n" \ " lw t0, %1(t0)\n" \
" jr t0\n" \ " jr t0\n" \
: : "i"(offsetof(gd_t, jt)), "i"(FO(x)) : "t0"); : : "i"(offsetof(gd_t, jt)), "i"(FO(x)) : "t0");
#endif
#elif defined(CONFIG_ARC) #elif defined(CONFIG_ARC)
/* /*
* r25 holds the pointer to the global_data. r10 is call clobbered. * r25 holds the pointer to the global_data. r10 is call clobbered.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment