blob: 0827bde35e581b27b9b7d081fef35ae296c4f698 [file] [log] [blame]
Mike Partington0910d0b2010-10-27 10:31:09 +00001#include <common.h>
wdenk27b207f2003-07-24 23:38:38 +00002#include <exports.h>
Masahiro Yamada2d5db192014-09-04 02:40:59 +09003#include <linux/compiler.h>
wdenk93f6a672004-07-01 20:28:03 +00004
Martin Dorwig49cad542015-01-26 15:22:54 -07005#define FO(x) offsetof(struct jt_funcs, x)
6
Graeme Russfea25722011-04-13 19:43:28 +10007#if defined(CONFIG_X86)
wdenk27b207f2003-07-24 23:38:38 +00008/*
9 * x86 does not have a dedicated register to store the pointer to
10 * the global_data. Thus the jump table address is stored in a
11 * global variable, but such approach does not allow for execution
12 * from flash memory. The global_data address is passed as argv[-1]
13 * to the application program.
14 */
Martin Dorwig49cad542015-01-26 15:22:54 -070015static struct jt_funcs *jt;
wdenk77846742003-07-26 08:08:08 +000016gd_t *global_data;
wdenk27b207f2003-07-24 23:38:38 +000017
Martin Dorwig49cad542015-01-26 15:22:54 -070018#define EXPORT_FUNC(f, a, x, ...) \
wdenk27b207f2003-07-24 23:38:38 +000019 asm volatile ( \
20" .globl " #x "\n" \
21#x ":\n" \
22" movl %0, %%eax\n" \
23" movl jt, %%ecx\n" \
24" jmp *(%%ecx, %%eax)\n" \
Martin Dorwig49cad542015-01-26 15:22:54 -070025 : : "i"(FO(x)) : "eax", "ecx");
wdenk27b207f2003-07-24 23:38:38 +000026#elif defined(CONFIG_PPC)
27/*
Wolfgang Denke7670f62008-02-14 22:43:22 +010028 * r2 holds the pointer to the global_data, r11 is a call-clobbered
wdenk27b207f2003-07-24 23:38:38 +000029 * register
30 */
Martin Dorwig49cad542015-01-26 15:22:54 -070031#define EXPORT_FUNC(f, a, x, ...) \
wdenk27b207f2003-07-24 23:38:38 +000032 asm volatile ( \
33" .globl " #x "\n" \
34#x ":\n" \
Wolfgang Denke7670f62008-02-14 22:43:22 +010035" lwz %%r11, %0(%%r2)\n" \
wdenk27b207f2003-07-24 23:38:38 +000036" lwz %%r11, %1(%%r11)\n" \
37" mtctr %%r11\n" \
38" bctr\n" \
Martin Dorwig49cad542015-01-26 15:22:54 -070039 : : "i"(offsetof(gd_t, jt)), "i"(FO(x)) : "r11");
wdenk27b207f2003-07-24 23:38:38 +000040#elif defined(CONFIG_ARM)
David Feng0ae76532013-12-14 11:47:35 +080041#ifdef CONFIG_ARM64
42/*
43 * x18 holds the pointer to the global_data, x9 is a call-clobbered
44 * register
45 */
Martin Dorwig49cad542015-01-26 15:22:54 -070046#define EXPORT_FUNC(f, a, x, ...) \
David Feng0ae76532013-12-14 11:47:35 +080047 asm volatile ( \
48" .globl " #x "\n" \
49#x ":\n" \
50" ldr x9, [x18, %0]\n" \
51" ldr x9, [x9, %1]\n" \
52" br x9\n" \
Martin Dorwig49cad542015-01-26 15:22:54 -070053 : : "i"(offsetof(gd_t, jt)), "i"(FO(x)) : "x9");
David Feng0ae76532013-12-14 11:47:35 +080054#else
wdenk27b207f2003-07-24 23:38:38 +000055/*
Jeroen Hofsteea5a42ee2013-11-21 22:32:51 +010056 * r9 holds the pointer to the global_data, ip is a call-clobbered
wdenk27b207f2003-07-24 23:38:38 +000057 * register
58 */
Martin Dorwig49cad542015-01-26 15:22:54 -070059#define EXPORT_FUNC(f, a, x, ...) \
wdenk27b207f2003-07-24 23:38:38 +000060 asm volatile ( \
61" .globl " #x "\n" \
62#x ":\n" \
Jeroen Hofsteea5a42ee2013-11-21 22:32:51 +010063" ldr ip, [r9, %0]\n" \
wdenk27b207f2003-07-24 23:38:38 +000064" ldr pc, [ip, %1]\n" \
Martin Dorwig49cad542015-01-26 15:22:54 -070065 : : "i"(offsetof(gd_t, jt)), "i"(FO(x)) : "ip");
David Feng0ae76532013-12-14 11:47:35 +080066#endif
wdenk27b207f2003-07-24 23:38:38 +000067#elif defined(CONFIG_MIPS)
Stanislav Galabov4a48cfc2016-02-17 15:23:33 +020068#ifdef CONFIG_CPU_MIPS64
69/*
70 * k0 ($26) holds the pointer to the global_data; t9 ($25) is a call-
71 * clobbered register that is also used to set gp ($26). Note that the
72 * jr instruction also executes the instruction immediately following
73 * it; however, GCC/mips generates an additional `nop' after each asm
74 * statement
75 */
76#define EXPORT_FUNC(f, a, x, ...) \
77 asm volatile ( \
78" .globl " #x "\n" \
79#x ":\n" \
80" ld $25, %0($26)\n" \
81" ld $25, %1($25)\n" \
82" jr $25\n" \
83 : : "i"(offsetof(gd_t, jt)), "i"(FO(x)) : "t9");
84#else
wdenk27b207f2003-07-24 23:38:38 +000085/*
86 * k0 ($26) holds the pointer to the global_data; t9 ($25) is a call-
87 * clobbered register that is also used to set gp ($26). Note that the
88 * jr instruction also executes the instruction immediately following
89 * it; however, GCC/mips generates an additional `nop' after each asm
90 * statement
91 */
Martin Dorwig49cad542015-01-26 15:22:54 -070092#define EXPORT_FUNC(f, a, x, ...) \
wdenk27b207f2003-07-24 23:38:38 +000093 asm volatile ( \
94" .globl " #x "\n" \
95#x ":\n" \
96" lw $25, %0($26)\n" \
97" lw $25, %1($25)\n" \
98" jr $25\n" \
Martin Dorwig49cad542015-01-26 15:22:54 -070099 : : "i"(offsetof(gd_t, jt)), "i"(FO(x)) : "t9");
Stanislav Galabov4a48cfc2016-02-17 15:23:33 +0200100#endif
wdenk5c952cf2004-10-10 21:27:30 +0000101#elif defined(CONFIG_NIOS2)
102/*
Thomas Chou0df01fd2010-05-21 11:08:03 +0800103 * gp holds the pointer to the global_data, r8 is call-clobbered
wdenk5c952cf2004-10-10 21:27:30 +0000104 */
Martin Dorwig49cad542015-01-26 15:22:54 -0700105#define EXPORT_FUNC(f, a, x, ...) \
wdenk5c952cf2004-10-10 21:27:30 +0000106 asm volatile ( \
107" .globl " #x "\n" \
108#x ":\n" \
109" movhi r8, %%hi(%0)\n" \
110" ori r8, r0, %%lo(%0)\n" \
Thomas Chou0df01fd2010-05-21 11:08:03 +0800111" add r8, r8, gp\n" \
wdenk5c952cf2004-10-10 21:27:30 +0000112" ldw r8, 0(r8)\n" \
113" ldw r8, %1(r8)\n" \
114" jmp r8\n" \
Martin Dorwig49cad542015-01-26 15:22:54 -0700115 : : "i"(offsetof(gd_t, jt)), "i"(FO(x)) : "gp");
wdenkbf9e3b32004-02-12 00:47:09 +0000116#elif defined(CONFIG_M68K)
117/*
118 * d7 holds the pointer to the global_data, a0 is a call-clobbered
119 * register
120 */
Martin Dorwig49cad542015-01-26 15:22:54 -0700121#define EXPORT_FUNC(f, a, x, ...) \
wdenkbf9e3b32004-02-12 00:47:09 +0000122 asm volatile ( \
123" .globl " #x "\n" \
124#x ":\n" \
125" move.l %%d7, %%a0\n" \
126" adda.l %0, %%a0\n" \
127" move.l (%%a0), %%a0\n" \
128" adda.l %1, %%a0\n" \
129" move.l (%%a0), %%a0\n" \
130" jmp (%%a0)\n" \
Martin Dorwig49cad542015-01-26 15:22:54 -0700131 : : "i"(offsetof(gd_t, jt)), "i"(FO(x)) : "a0");
wdenk857cad32004-07-10 23:48:41 +0000132#elif defined(CONFIG_MICROBLAZE)
wdenk507bbe32004-04-18 21:13:41 +0000133/*
134 * r31 holds the pointer to the global_data. r5 is a call-clobbered.
135 */
Martin Dorwig49cad542015-01-26 15:22:54 -0700136#define EXPORT_FUNC(f, a, x, ...) \
wdenk507bbe32004-04-18 21:13:41 +0000137 asm volatile ( \
138" .globl " #x "\n" \
139#x ":\n" \
140" lwi r5, r31, %0\n" \
141" lwi r5, r5, %1\n" \
142" bra r5\n" \
Martin Dorwig49cad542015-01-26 15:22:54 -0700143 : : "i"(offsetof(gd_t, jt)), "i"(FO(x)) : "r5");
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900144#elif defined(CONFIG_SH)
145/*
146 * r13 holds the pointer to the global_data. r1 is a call clobbered.
147 */
Martin Dorwig49cad542015-01-26 15:22:54 -0700148#define EXPORT_FUNC(f, a, x, ...) \
Wolfgang Denk61fb15c52007-12-27 01:52:50 +0100149 asm volatile ( \
150 " .align 2\n" \
151 " .globl " #x "\n" \
152 #x ":\n" \
153 " mov r13, r1\n" \
154 " add %0, r1\n" \
Nobuhiro Iwamatsucae6f902008-10-09 13:54:33 +0900155 " mov.l @r1, r2\n" \
156 " add %1, r2\n" \
157 " mov.l @r2, r1\n" \
Wolfgang Denk61fb15c52007-12-27 01:52:50 +0100158 " jmp @r1\n" \
159 " nop\n" \
160 " nop\n" \
Martin Dorwig49cad542015-01-26 15:22:54 -0700161 : : "i"(offsetof(gd_t, jt)), "i"(FO(x)) : "r1", "r2");
Macpaul Lin72c73dd2011-10-11 22:33:20 +0000162#elif defined(CONFIG_NDS32)
163/*
164 * r16 holds the pointer to the global_data. gp is call clobbered.
165 * not support reduced register (16 GPR).
166 */
Martin Dorwig49cad542015-01-26 15:22:54 -0700167#define EXPORT_FUNC(f, a, x, ...) \
Macpaul Lin72c73dd2011-10-11 22:33:20 +0000168 asm volatile ( \
169" .globl " #x "\n" \
170#x ":\n" \
171" lwi $r16, [$gp + (%0)]\n" \
172" lwi $r16, [$r16 + (%1)]\n" \
173" jr $r16\n" \
Martin Dorwig49cad542015-01-26 15:22:54 -0700174 : : "i"(offsetof(gd_t, jt)), "i"(FO(x)) : "$r16");
Rick Chenc7d7e802017-12-26 13:55:57 +0800175#elif defined(CONFIG_RISCV)
176/*
Lukas Auercbb860f2019-01-04 01:37:32 +0100177 * gp holds the pointer to the global_data. t0 is call clobbered.
Rick Chenc7d7e802017-12-26 13:55:57 +0800178 */
Lukas Auer7eb79292019-01-04 01:37:33 +0100179#ifdef CONFIG_ARCH_RV64I
180#define EXPORT_FUNC(f, a, x, ...) \
181 asm volatile ( \
182" .globl " #x "\n" \
183#x ":\n" \
184" ld t0, %0(gp)\n" \
185" ld t0, %1(t0)\n" \
186" jr t0\n" \
187 : : "i"(offsetof(gd_t, jt)), "i"(FO(x)) : "t0");
188#else
Rick Chenc7d7e802017-12-26 13:55:57 +0800189#define EXPORT_FUNC(f, a, x, ...) \
190 asm volatile ( \
191" .globl " #x "\n" \
192#x ":\n" \
Lukas Auercbb860f2019-01-04 01:37:32 +0100193" lw t0, %0(gp)\n" \
194" lw t0, %1(t0)\n" \
195" jr t0\n" \
196 : : "i"(offsetof(gd_t, jt)), "i"(FO(x)) : "t0");
Lukas Auer7eb79292019-01-04 01:37:33 +0100197#endif
Alexey Brodkin794ab572014-02-04 12:56:17 +0400198#elif defined(CONFIG_ARC)
199/*
200 * r25 holds the pointer to the global_data. r10 is call clobbered.
201 */
Martin Dorwig49cad542015-01-26 15:22:54 -0700202#define EXPORT_FUNC(f, a, x, ...) \
Alexey Brodkin794ab572014-02-04 12:56:17 +0400203 asm volatile( \
204" .align 4\n" \
205" .globl " #x "\n" \
206#x ":\n" \
207" ld r10, [r25, %0]\n" \
208" ld r10, [r10, %1]\n" \
209" j [r10]\n" \
Martin Dorwig49cad542015-01-26 15:22:54 -0700210 : : "i"(offsetof(gd_t, jt)), "i"(FO(x)) : "r10");
Chris Zankelde5e5ce2016-08-10 18:36:43 +0300211#elif defined(CONFIG_XTENSA)
212/*
213 * Global data ptr is in global_data, jump table ptr is in jt.
214 * Windowed ABI: Jump just past 'entry' in target and adjust stack frame
215 * (extract stack frame size from target 'entry' instruction).
216 */
217
218static void **jt;
219
220#if defined(__XTENSA_CALL0_ABI__)
221#define EXPORT_FUNC(f, a, x, ...) \
222 asm volatile ( \
223" .extern jt\n" \
224" .globl " #x "\n" \
225" .align 4\n" \
226#x ":\n" \
227" l32i a8, %0, 0\n" \
228" l32i a8, a8, %1\n" \
229" jx a8\n" \
230 : : "r"(jt), "i" (FO(x)) : "a8");
231#elif defined(__XTENSA_WINDOWED_ABI__)
232#if XCHAL_HAVE_BE
233# define SFT "8"
234#else
235# define SFT "12"
236#endif
237#define EXPORT_FUNC(f, a, x, ...) \
238 asm volatile ( \
239" .extern jt\n" \
240" .globl " #x "\n" \
241" .align 4\n" \
242#x ":\n" \
243" entry sp, 16\n" \
244" l32i a8, %0, 0\n" \
245" l32i a8, a8, %1\n" \
246" l32i a9, a8, 0\n" \
247" extui a9, a9, " SFT ", 12\n" \
248" subx8 a9, a9, sp\n" \
249" movi a10, 16\n" \
250" sub a9, a10, a9\n" \
251" movsp sp, a9\n" \
252" addi a8, a8, 3\n" \
253" jx a8\n" \
254 : : "r"(jt), "i" (FO(x)) : "a8", "a9", "a10");
255#else
256#error Unsupported Xtensa ABI
257#endif
wdenk27b207f2003-07-24 23:38:38 +0000258#else
Macpaul Lin72c73dd2011-10-11 22:33:20 +0000259/*" addi $sp, $sp, -24\n" \
260" br $r16\n" \*/
261
wdenk27b207f2003-07-24 23:38:38 +0000262#error stubs definition missing for this architecture
263#endif
264
265/* This function is necessary to prevent the compiler from
266 * generating prologue/epilogue, preparing stack frame etc.
267 * The stub functions are special, they do not use the stack
268 * frame passed to them, but pass it intact to the actual
269 * implementation. On the other hand, asm() statements with
270 * arguments can be used only inside the functions (gcc limitation)
271 */
Masahiro Yamada2d5db192014-09-04 02:40:59 +0900272#if GCC_VERSION < 30400
wdenk93f6a672004-07-01 20:28:03 +0000273static
274#endif /* GCC_VERSION */
275void __attribute__((unused)) dummy(void)
wdenk27b207f2003-07-24 23:38:38 +0000276{
277#include <_exports.h>
278}
279
Simon Glass716cc8c2013-03-05 14:39:39 +0000280#include <asm/sections.h>
wdenkd716b122004-04-12 16:12:49 +0000281
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200282void app_startup(char * const *argv)
wdenk27b207f2003-07-24 23:38:38 +0000283{
Simon Glass716cc8c2013-03-05 14:39:39 +0000284 char *cp = __bss_start;
wdenkd716b122004-04-12 16:12:49 +0000285
286 /* Zero out BSS */
Simon Glass716cc8c2013-03-05 14:39:39 +0000287 while (cp < _end)
wdenkd716b122004-04-12 16:12:49 +0000288 *cp++ = 0;
wdenkd716b122004-04-12 16:12:49 +0000289
Graeme Russfea25722011-04-13 19:43:28 +1000290#if defined(CONFIG_X86)
wdenk27b207f2003-07-24 23:38:38 +0000291 /* x86 does not have a dedicated register for passing global_data */
wdenk77846742003-07-26 08:08:08 +0000292 global_data = (gd_t *)argv[-1];
293 jt = global_data->jt;
wdenk27b207f2003-07-24 23:38:38 +0000294#endif
295}
296
297#undef EXPORT_FUNC