blob: a8b7e14c049081278280b95325a2edefe58a16b0 [file] [log] [blame]
Mike Partington46f387d2010-10-27 10:31:09 +00001#include <common.h>
wdenk874ac262003-07-24 23:38:38 +00002#include <exports.h>
Masahiro Yamada84002752014-09-04 02:40:59 +09003#include <linux/compiler.h>
wdenk3337af42004-07-01 20:28:03 +00004
Martin Dorwigcb2c2862015-01-26 15:22:54 -07005#define FO(x) offsetof(struct jt_funcs, x)
6
Graeme Russcbfce1d2011-04-13 19:43:28 +10007#if defined(CONFIG_X86)
wdenk874ac262003-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 Dorwigcb2c2862015-01-26 15:22:54 -070015static struct jt_funcs *jt;
wdenkb8463562003-07-26 08:08:08 +000016gd_t *global_data;
wdenk874ac262003-07-24 23:38:38 +000017
Martin Dorwigcb2c2862015-01-26 15:22:54 -070018#define EXPORT_FUNC(f, a, x, ...) \
wdenk874ac262003-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 Dorwigcb2c2862015-01-26 15:22:54 -070025 : : "i"(FO(x)) : "eax", "ecx");
wdenk874ac262003-07-24 23:38:38 +000026#elif defined(CONFIG_PPC)
27/*
Wolfgang Denk69c09642008-02-14 22:43:22 +010028 * r2 holds the pointer to the global_data, r11 is a call-clobbered
wdenk874ac262003-07-24 23:38:38 +000029 * register
30 */
Martin Dorwigcb2c2862015-01-26 15:22:54 -070031#define EXPORT_FUNC(f, a, x, ...) \
wdenk874ac262003-07-24 23:38:38 +000032 asm volatile ( \
33" .globl " #x "\n" \
34#x ":\n" \
Wolfgang Denk69c09642008-02-14 22:43:22 +010035" lwz %%r11, %0(%%r2)\n" \
wdenk874ac262003-07-24 23:38:38 +000036" lwz %%r11, %1(%%r11)\n" \
37" mtctr %%r11\n" \
38" bctr\n" \
Martin Dorwigcb2c2862015-01-26 15:22:54 -070039 : : "i"(offsetof(gd_t, jt)), "i"(FO(x)) : "r11");
wdenk874ac262003-07-24 23:38:38 +000040#elif defined(CONFIG_ARM)
David Feng85fd5f12013-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 Dorwigcb2c2862015-01-26 15:22:54 -070046#define EXPORT_FUNC(f, a, x, ...) \
David Feng85fd5f12013-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 Dorwigcb2c2862015-01-26 15:22:54 -070053 : : "i"(offsetof(gd_t, jt)), "i"(FO(x)) : "x9");
David Feng85fd5f12013-12-14 11:47:35 +080054#else
wdenk874ac262003-07-24 23:38:38 +000055/*
Jeroen Hofsteeb00867b2013-11-21 22:32:51 +010056 * r9 holds the pointer to the global_data, ip is a call-clobbered
wdenk874ac262003-07-24 23:38:38 +000057 * register
58 */
Martin Dorwigcb2c2862015-01-26 15:22:54 -070059#define EXPORT_FUNC(f, a, x, ...) \
wdenk874ac262003-07-24 23:38:38 +000060 asm volatile ( \
61" .globl " #x "\n" \
62#x ":\n" \
Jeroen Hofsteeb00867b2013-11-21 22:32:51 +010063" ldr ip, [r9, %0]\n" \
wdenk874ac262003-07-24 23:38:38 +000064" ldr pc, [ip, %1]\n" \
Martin Dorwigcb2c2862015-01-26 15:22:54 -070065 : : "i"(offsetof(gd_t, jt)), "i"(FO(x)) : "ip");
David Feng85fd5f12013-12-14 11:47:35 +080066#endif
wdenk874ac262003-07-24 23:38:38 +000067#elif defined(CONFIG_MIPS)
Stanislav Galabov26f182d2016-02-17 15:23:33 +020068#ifdef CONFIG_CPU_MIPS64
wdenk874ac262003-07-24 23:38:38 +000069/*
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 */
Martin Dorwigcb2c2862015-01-26 15:22:54 -070076#define EXPORT_FUNC(f, a, x, ...) \
wdenk874ac262003-07-24 23:38:38 +000077 asm volatile ( \
78" .globl " #x "\n" \
79#x ":\n" \
Stanislav Galabov26f182d2016-02-17 15:23:33 +020080" 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
85/*
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 */
92#define EXPORT_FUNC(f, a, x, ...) \
93 asm volatile ( \
94" .globl " #x "\n" \
95#x ":\n" \
wdenk874ac262003-07-24 23:38:38 +000096" lw $25, %0($26)\n" \
97" lw $25, %1($25)\n" \
98" jr $25\n" \
Martin Dorwigcb2c2862015-01-26 15:22:54 -070099 : : "i"(offsetof(gd_t, jt)), "i"(FO(x)) : "t9");
Stanislav Galabov26f182d2016-02-17 15:23:33 +0200100#endif
wdenkef3386f2004-10-10 21:27:30 +0000101#elif defined(CONFIG_NIOS2)
102/*
Thomas Chou8fa38582010-05-21 11:08:03 +0800103 * gp holds the pointer to the global_data, r8 is call-clobbered
wdenkef3386f2004-10-10 21:27:30 +0000104 */
Martin Dorwigcb2c2862015-01-26 15:22:54 -0700105#define EXPORT_FUNC(f, a, x, ...) \
wdenkef3386f2004-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 Chou8fa38582010-05-21 11:08:03 +0800111" add r8, r8, gp\n" \
wdenkef3386f2004-10-10 21:27:30 +0000112" ldw r8, 0(r8)\n" \
113" ldw r8, %1(r8)\n" \
114" jmp r8\n" \
Martin Dorwigcb2c2862015-01-26 15:22:54 -0700115 : : "i"(offsetof(gd_t, jt)), "i"(FO(x)) : "gp");
wdenke65527f2004-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 Dorwigcb2c2862015-01-26 15:22:54 -0700121#define EXPORT_FUNC(f, a, x, ...) \
wdenke65527f2004-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 Dorwigcb2c2862015-01-26 15:22:54 -0700131 : : "i"(offsetof(gd_t, jt)), "i"(FO(x)) : "a0");
wdenk20a61222004-07-10 23:48:41 +0000132#elif defined(CONFIG_MICROBLAZE)
wdenk12490652004-04-18 21:13:41 +0000133/*
134 * r31 holds the pointer to the global_data. r5 is a call-clobbered.
135 */
Martin Dorwigcb2c2862015-01-26 15:22:54 -0700136#define EXPORT_FUNC(f, a, x, ...) \
wdenk12490652004-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 Dorwigcb2c2862015-01-26 15:22:54 -0700143 : : "i"(offsetof(gd_t, jt)), "i"(FO(x)) : "r5");
Wolfgang Denk46d2b522006-03-12 02:10:00 +0100144#elif defined(CONFIG_BLACKFIN)
145/*
Robin Getz2773d5f2009-08-17 15:23:02 +0000146 * P3 holds the pointer to the global_data, P0 is a call-clobbered
Wolfgang Denk46d2b522006-03-12 02:10:00 +0100147 * register
148 */
Martin Dorwigcb2c2862015-01-26 15:22:54 -0700149#define EXPORT_FUNC(f, a, x, ...) \
Wolfgang Denk2bad8682006-03-12 02:55:22 +0100150 asm volatile ( \
Wolfgang Denk0a5c2142007-12-27 01:52:50 +0100151" .globl _" #x "\n_" \
Wolfgang Denk46d2b522006-03-12 02:10:00 +0100152#x ":\n" \
Robin Getz2773d5f2009-08-17 15:23:02 +0000153" P0 = [P3 + %0]\n" \
Wolfgang Denk46d2b522006-03-12 02:10:00 +0100154" P0 = [P0 + %1]\n" \
155" JUMP (P0)\n" \
Martin Dorwigcb2c2862015-01-26 15:22:54 -0700156 : : "i"(offsetof(gd_t, jt)), "i"(FO(x)) : "P0");
Wolfgang Denk83c15852006-10-24 14:21:16 +0200157#elif defined(CONFIG_AVR32)
158/*
159 * r6 holds the pointer to the global_data. r8 is call clobbered.
160 */
Martin Dorwigcb2c2862015-01-26 15:22:54 -0700161#define EXPORT_FUNC(f, a, x, ...) \
Wolfgang Denk83c15852006-10-24 14:21:16 +0200162 asm volatile( \
163 " .globl\t" #x "\n" \
164 #x ":\n" \
165 " ld.w r8, r6[%0]\n" \
166 " ld.w pc, r8[%1]\n" \
167 : \
Martin Dorwigcb2c2862015-01-26 15:22:54 -0700168 : "i"(offsetof(gd_t, jt)), "i"(FO(x)) \
Wolfgang Denk83c15852006-10-24 14:21:16 +0200169 : "r8");
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +0900170#elif defined(CONFIG_SH)
171/*
172 * r13 holds the pointer to the global_data. r1 is a call clobbered.
173 */
Martin Dorwigcb2c2862015-01-26 15:22:54 -0700174#define EXPORT_FUNC(f, a, x, ...) \
Wolfgang Denk0a5c2142007-12-27 01:52:50 +0100175 asm volatile ( \
176 " .align 2\n" \
177 " .globl " #x "\n" \
178 #x ":\n" \
179 " mov r13, r1\n" \
180 " add %0, r1\n" \
Nobuhiro Iwamatsud1d18502008-10-09 13:54:33 +0900181 " mov.l @r1, r2\n" \
182 " add %1, r2\n" \
183 " mov.l @r2, r1\n" \
Wolfgang Denk0a5c2142007-12-27 01:52:50 +0100184 " jmp @r1\n" \
185 " nop\n" \
186 " nop\n" \
Martin Dorwigcb2c2862015-01-26 15:22:54 -0700187 : : "i"(offsetof(gd_t, jt)), "i"(FO(x)) : "r1", "r2");
Daniel Hellstrom9d7c6b22008-03-28 09:47:00 +0100188#elif defined(CONFIG_SPARC)
189/*
190 * g7 holds the pointer to the global_data. g1 is call clobbered.
191 */
Martin Dorwigcb2c2862015-01-26 15:22:54 -0700192#define EXPORT_FUNC(f, a, x, ...) \
Daniel Hellstrom9d7c6b22008-03-28 09:47:00 +0100193 asm volatile( \
194" .globl\t" #x "\n" \
195#x ":\n" \
196" set %0, %%g1\n" \
197" or %%g1, %%g7, %%g1\n" \
198" ld [%%g1], %%g1\n" \
199" ld [%%g1 + %1], %%g1\n" \
Sergey Mironovaa44cf62009-09-23 16:47:38 +0400200" jmp %%g1\n" \
Daniel Hellstrom9d7c6b22008-03-28 09:47:00 +0100201" nop\n" \
Martin Dorwigcb2c2862015-01-26 15:22:54 -0700202 : : "i"(offsetof(gd_t, jt)), "i"(FO(x)) : "g1");
Macpaul Lin394c76a2011-10-11 22:33:20 +0000203#elif defined(CONFIG_NDS32)
204/*
205 * r16 holds the pointer to the global_data. gp is call clobbered.
206 * not support reduced register (16 GPR).
207 */
Martin Dorwigcb2c2862015-01-26 15:22:54 -0700208#define EXPORT_FUNC(f, a, x, ...) \
Macpaul Lin394c76a2011-10-11 22:33:20 +0000209 asm volatile ( \
210" .globl " #x "\n" \
211#x ":\n" \
212" lwi $r16, [$gp + (%0)]\n" \
213" lwi $r16, [$r16 + (%1)]\n" \
214" jr $r16\n" \
Martin Dorwigcb2c2862015-01-26 15:22:54 -0700215 : : "i"(offsetof(gd_t, jt)), "i"(FO(x)) : "$r16");
Stefan Kristiansson333c46e2011-11-18 19:21:35 +0000216#elif defined(CONFIG_OPENRISC)
217/*
218 * r10 holds the pointer to the global_data, r13 is a call-clobbered
219 * register
220 */
Martin Dorwigcb2c2862015-01-26 15:22:54 -0700221#define EXPORT_FUNC(f, a, x, ...) \
Stefan Kristiansson333c46e2011-11-18 19:21:35 +0000222 asm volatile ( \
223" .globl " #x "\n" \
224#x ":\n" \
225" l.lwz r13, %0(r10)\n" \
226" l.lwz r13, %1(r13)\n" \
227" l.jr r13\n" \
228" l.nop\n" \
Martin Dorwigcb2c2862015-01-26 15:22:54 -0700229 : : "i"(offsetof(gd_t, jt)), "i"(FO(x)) : "r13");
Alexey Brodkincb25a732014-02-04 12:56:17 +0400230#elif defined(CONFIG_ARC)
231/*
232 * r25 holds the pointer to the global_data. r10 is call clobbered.
233 */
Martin Dorwigcb2c2862015-01-26 15:22:54 -0700234#define EXPORT_FUNC(f, a, x, ...) \
Alexey Brodkincb25a732014-02-04 12:56:17 +0400235 asm volatile( \
236" .align 4\n" \
237" .globl " #x "\n" \
238#x ":\n" \
239" ld r10, [r25, %0]\n" \
240" ld r10, [r10, %1]\n" \
241" j [r10]\n" \
Martin Dorwigcb2c2862015-01-26 15:22:54 -0700242 : : "i"(offsetof(gd_t, jt)), "i"(FO(x)) : "r10");
Chris Zankel41e37372016-08-10 18:36:43 +0300243#elif defined(CONFIG_XTENSA)
244/*
245 * Global data ptr is in global_data, jump table ptr is in jt.
246 * Windowed ABI: Jump just past 'entry' in target and adjust stack frame
247 * (extract stack frame size from target 'entry' instruction).
248 */
249
250static void **jt;
251
252#if defined(__XTENSA_CALL0_ABI__)
253#define EXPORT_FUNC(f, a, x, ...) \
254 asm volatile ( \
255" .extern jt\n" \
256" .globl " #x "\n" \
257" .align 4\n" \
258#x ":\n" \
259" l32i a8, %0, 0\n" \
260" l32i a8, a8, %1\n" \
261" jx a8\n" \
262 : : "r"(jt), "i" (FO(x)) : "a8");
263#elif defined(__XTENSA_WINDOWED_ABI__)
264#if XCHAL_HAVE_BE
265# define SFT "8"
266#else
267# define SFT "12"
268#endif
269#define EXPORT_FUNC(f, a, x, ...) \
270 asm volatile ( \
271" .extern jt\n" \
272" .globl " #x "\n" \
273" .align 4\n" \
274#x ":\n" \
275" entry sp, 16\n" \
276" l32i a8, %0, 0\n" \
277" l32i a8, a8, %1\n" \
278" l32i a9, a8, 0\n" \
279" extui a9, a9, " SFT ", 12\n" \
280" subx8 a9, a9, sp\n" \
281" movi a10, 16\n" \
282" sub a9, a10, a9\n" \
283" movsp sp, a9\n" \
284" addi a8, a8, 3\n" \
285" jx a8\n" \
286 : : "r"(jt), "i" (FO(x)) : "a8", "a9", "a10");
287#else
288#error Unsupported Xtensa ABI
289#endif
wdenk874ac262003-07-24 23:38:38 +0000290#else
Macpaul Lin394c76a2011-10-11 22:33:20 +0000291/*" addi $sp, $sp, -24\n" \
292" br $r16\n" \*/
293
wdenk874ac262003-07-24 23:38:38 +0000294#error stubs definition missing for this architecture
295#endif
296
297/* This function is necessary to prevent the compiler from
298 * generating prologue/epilogue, preparing stack frame etc.
299 * The stub functions are special, they do not use the stack
300 * frame passed to them, but pass it intact to the actual
301 * implementation. On the other hand, asm() statements with
302 * arguments can be used only inside the functions (gcc limitation)
303 */
Masahiro Yamada84002752014-09-04 02:40:59 +0900304#if GCC_VERSION < 30400
wdenk3337af42004-07-01 20:28:03 +0000305static
306#endif /* GCC_VERSION */
307void __attribute__((unused)) dummy(void)
wdenk874ac262003-07-24 23:38:38 +0000308{
309#include <_exports.h>
310}
311
Simon Glass5b928202013-03-05 14:39:39 +0000312#include <asm/sections.h>
wdenk2fb73902004-04-12 16:12:49 +0000313
Wolfgang Denk6262d0212010-06-28 22:00:46 +0200314void app_startup(char * const *argv)
wdenk874ac262003-07-24 23:38:38 +0000315{
Simon Glass5b928202013-03-05 14:39:39 +0000316 char *cp = __bss_start;
wdenk2fb73902004-04-12 16:12:49 +0000317
318 /* Zero out BSS */
Simon Glass5b928202013-03-05 14:39:39 +0000319 while (cp < _end)
wdenk2fb73902004-04-12 16:12:49 +0000320 *cp++ = 0;
wdenk2fb73902004-04-12 16:12:49 +0000321
Graeme Russcbfce1d2011-04-13 19:43:28 +1000322#if defined(CONFIG_X86)
wdenk874ac262003-07-24 23:38:38 +0000323 /* x86 does not have a dedicated register for passing global_data */
wdenkb8463562003-07-26 08:08:08 +0000324 global_data = (gd_t *)argv[-1];
325 jt = global_data->jt;
wdenk874ac262003-07-24 23:38:38 +0000326#endif
327}
328
329#undef EXPORT_FUNC