blob: c7a8c208a45c88c2fdd2ed0c91573a88ab610cef [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/arm/kernel/entry-common.S
3 *
4 * Copyright (C) 2000 Russell King
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070010
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <asm/unistd.h>
Abhishek Sagar395a59d2008-06-21 23:47:27 +053012#include <asm/ftrace.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010013#include <mach/entry-macro.S>
Catalin Marinasc4c57162009-02-16 11:42:09 +010014#include <asm/unwind.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
16#include "entry-header.S"
17
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
19 .align 5
20/*
21 * This is the fast syscall return path. We do as little as
22 * possible here, and this includes saving r0 back into the SVC
23 * stack.
24 */
25ret_fast_syscall:
Catalin Marinasc4c57162009-02-16 11:42:09 +010026 UNWIND(.fnstart )
27 UNWIND(.cantunwind )
Russell King1ec42c02005-04-26 15:18:26 +010028 disable_irq @ disable interrupts
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 ldr r1, [tsk, #TI_FLAGS]
30 tst r1, #_TIF_WORK_MASK
31 bne fast_work_pending
Russell Kingf4dc9a42005-04-26 15:20:34 +010032
Dan Williamsf80dff92007-02-16 22:16:32 +010033 /* perform architecture specific actions before user return */
34 arch_ret_to_user r1, lr
35
Catalin Marinasb86040a2009-07-24 12:32:54 +010036 restore_user_regs fast = 1, offset = S_OFF
Catalin Marinasc4c57162009-02-16 11:42:09 +010037 UNWIND(.fnend )
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39/*
40 * Ok, we need to do extra processing, enter the slow path.
41 */
42fast_work_pending:
43 str r0, [sp, #S_R0+S_OFF]! @ returned r0
44work_pending:
45 tst r1, #_TIF_NEED_RESCHED
46 bne work_resched
David Howellsd0420c82009-09-02 09:14:16 +010047 tst r1, #_TIF_SIGPENDING|_TIF_NOTIFY_RESUME
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 beq no_work_pending
49 mov r0, sp @ 'regs'
50 mov r2, why @ 'syscall'
51 bl do_notify_resume
Daniel Jacobowitza6c61e92005-11-19 10:01:07 +000052 b ret_slow_syscall @ Check work again
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54work_resched:
55 bl schedule
56/*
57 * "slow" syscall return path. "why" tells us if this was a real syscall.
58 */
59ENTRY(ret_to_user)
60ret_slow_syscall:
Russell King1ec42c02005-04-26 15:18:26 +010061 disable_irq @ disable interrupts
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 ldr r1, [tsk, #TI_FLAGS]
63 tst r1, #_TIF_WORK_MASK
64 bne work_pending
65no_work_pending:
Dan Williamsf80dff92007-02-16 22:16:32 +010066 /* perform architecture specific actions before user return */
67 arch_ret_to_user r1, lr
68
Catalin Marinasb86040a2009-07-24 12:32:54 +010069 restore_user_regs fast = 0, offset = 0
Catalin Marinas93ed3972008-08-28 11:22:32 +010070ENDPROC(ret_to_user)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
72/*
73 * This is how we return from a fork.
74 */
75ENTRY(ret_from_fork)
76 bl schedule_tail
77 get_thread_info tsk
78 ldr r1, [tsk, #TI_FLAGS] @ check for syscall tracing
79 mov why, #1
80 tst r1, #_TIF_SYSCALL_TRACE @ are we tracing syscalls?
81 beq ret_slow_syscall
82 mov r1, sp
83 mov r0, #1 @ trace exit [IP = 1]
84 bl syscall_trace
85 b ret_slow_syscall
Catalin Marinas93ed3972008-08-28 11:22:32 +010086ENDPROC(ret_from_fork)
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Al Virofa1b4f92006-01-19 12:57:01 +000088 .equ NR_syscalls,0
89#define CALL(x) .equ NR_syscalls,NR_syscalls+1
Linus Torvalds1da177e2005-04-16 15:20:36 -070090#include "calls.S"
Al Virofa1b4f92006-01-19 12:57:01 +000091#undef CALL
92#define CALL(x) .long x
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Steven Rostedt606576c2008-10-06 19:06:12 -040094#ifdef CONFIG_FUNCTION_TRACER
Rabin Vincent686ff222010-08-03 17:09:40 +010095/*
96 * When compiling with -pg, gcc inserts a call to the mcount routine at the
97 * start of every function. In mcount, apart from the function's address (in
98 * lr), we need to get hold of the function's caller's address.
99 *
100 * Older GCCs (pre-4.4) inserted a call to a routine called mcount like this:
101 *
102 * bl mcount
103 *
104 * These versions have the limitation that in order for the mcount routine to
105 * be able to determine the function's caller's address, an APCS-style frame
106 * pointer (which is set up with something like the code below) is required.
107 *
108 * mov ip, sp
109 * push {fp, ip, lr, pc}
110 * sub fp, ip, #4
111 *
112 * With EABI, these frame pointers are not available unless -mapcs-frame is
113 * specified, and if building as Thumb-2, not even then.
114 *
115 * Newer GCCs (4.4+) solve this problem by introducing a new version of mcount,
116 * with call sites like:
117 *
118 * push {lr}
119 * bl __gnu_mcount_nc
120 *
121 * With these compilers, frame pointers are not necessary.
122 *
123 * mcount can be thought of as a function called in the middle of a subroutine
124 * call. As such, it needs to be transparent for both the caller and the
125 * callee: the original lr needs to be restored when leaving mcount, and no
126 * registers should be clobbered. (In the __gnu_mcount_nc implementation, we
127 * clobber the ip register. This is OK because the ARM calling convention
128 * allows it to be clobbered in subroutines and doesn't use it to hold
129 * parameters.)
130 */
Rabin Vincent09bfafa2010-08-10 19:32:37 +0100131
132#ifndef CONFIG_OLD_MCOUNT
133#if (__GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 4))
134#error Ftrace requires CONFIG_FRAME_POINTER=y with GCC older than 4.4.0.
135#endif
136#endif
137
Abhishek Sagar014c2572008-05-31 14:23:50 +0530138#ifdef CONFIG_DYNAMIC_FTRACE
139ENTRY(mcount)
Rabin Vincent28e192d2010-08-03 17:08:09 +0100140 stmdb sp!, {r0-r3, lr}
141 mov r0, lr
142 sub r0, r0, #MCOUNT_INSN_SIZE
Abhishek Sagar014c2572008-05-31 14:23:50 +0530143
144 .globl mcount_call
145mcount_call:
Rabin Vincent28e192d2010-08-03 17:08:09 +0100146 bl ftrace_stub
147 ldr lr, [fp, #-4] @ restore lr
148 ldmia sp!, {r0-r3, pc}
Rabin Vincent72fa62f2010-08-10 19:33:52 +0100149ENDPROC(mcount)
Abhishek Sagar014c2572008-05-31 14:23:50 +0530150
151ENTRY(ftrace_caller)
Rabin Vincent28e192d2010-08-03 17:08:09 +0100152 stmdb sp!, {r0-r3, lr}
153 ldr r1, [fp, #-4]
154 mov r0, lr
155 sub r0, r0, #MCOUNT_INSN_SIZE
Abhishek Sagar014c2572008-05-31 14:23:50 +0530156
157 .globl ftrace_call
158ftrace_call:
Rabin Vincent28e192d2010-08-03 17:08:09 +0100159 bl ftrace_stub
160 ldr lr, [fp, #-4] @ restore lr
161 ldmia sp!, {r0-r3, pc}
Rabin Vincent72fa62f2010-08-10 19:33:52 +0100162ENDPROC(ftrace_caller)
Abhishek Sagar014c2572008-05-31 14:23:50 +0530163
164#else
165
Uwe Kleine-König181f8172009-08-13 20:38:16 +0200166ENTRY(__gnu_mcount_nc)
Rabin Vincent28e192d2010-08-03 17:08:09 +0100167 stmdb sp!, {r0-r3, lr}
168 ldr r0, =ftrace_trace_function
169 ldr r2, [r0]
170 adr r0, ftrace_stub
171 cmp r0, r2
172 bne gnu_trace
173 ldmia sp!, {r0-r3, ip, lr}
174 mov pc, ip
Uwe Kleine-König181f8172009-08-13 20:38:16 +0200175
176gnu_trace:
Rabin Vincent28e192d2010-08-03 17:08:09 +0100177 ldr r1, [sp, #20] @ lr of instrumented routine
178 mov r0, lr
179 sub r0, r0, #MCOUNT_INSN_SIZE
180 mov lr, pc
181 mov pc, r2
182 ldmia sp!, {r0-r3, ip, lr}
183 mov pc, ip
Rabin Vincent72fa62f2010-08-10 19:33:52 +0100184ENDPROC(__gnu_mcount_nc)
Uwe Kleine-König181f8172009-08-13 20:38:16 +0200185
Rabin Vincent09bfafa2010-08-10 19:32:37 +0100186#ifdef CONFIG_OLD_MCOUNT
187/*
188 * This is under an ifdef in order to force link-time errors for people trying
189 * to build with !FRAME_POINTER with a GCC which doesn't use the new-style
190 * mcount.
191 */
Abhishek Sagar014c2572008-05-31 14:23:50 +0530192ENTRY(mcount)
Rabin Vincent28e192d2010-08-03 17:08:09 +0100193 stmdb sp!, {r0-r3, lr}
194 ldr r0, =ftrace_trace_function
195 ldr r2, [r0]
196 adr r0, ftrace_stub
197 cmp r0, r2
198 bne trace
199 ldr lr, [fp, #-4] @ restore lr
200 ldmia sp!, {r0-r3, pc}
Abhishek Sagar014c2572008-05-31 14:23:50 +0530201
202trace:
Rabin Vincent28e192d2010-08-03 17:08:09 +0100203 ldr r1, [fp, #-4] @ lr of instrumented routine
204 mov r0, lr
205 sub r0, r0, #MCOUNT_INSN_SIZE
206 mov lr, pc
207 mov pc, r2
208 ldr lr, [fp, #-4] @ restore lr
209 ldmia sp!, {r0-r3, pc}
Rabin Vincent72fa62f2010-08-10 19:33:52 +0100210ENDPROC(mcount)
Rabin Vincent09bfafa2010-08-10 19:32:37 +0100211#endif
Abhishek Sagar014c2572008-05-31 14:23:50 +0530212
213#endif /* CONFIG_DYNAMIC_FTRACE */
214
Rabin Vincent72fa62f2010-08-10 19:33:52 +0100215ENTRY(ftrace_stub)
Rabin Vincent28e192d2010-08-03 17:08:09 +0100216 mov pc, lr
Rabin Vincent72fa62f2010-08-10 19:33:52 +0100217ENDPROC(ftrace_stub)
Abhishek Sagar014c2572008-05-31 14:23:50 +0530218
Steven Rostedt606576c2008-10-06 19:06:12 -0400219#endif /* CONFIG_FUNCTION_TRACER */
Abhishek Sagar014c2572008-05-31 14:23:50 +0530220
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221/*=============================================================================
222 * SWI handler
223 *-----------------------------------------------------------------------------
224 */
225
226 /* If we're optimising for StrongARM the resulting code won't
227 run on an ARM7 and we can save a couple of instructions.
228 --pb */
229#ifdef CONFIG_CPU_ARM710
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000230#define A710(code...) code
231.Larm710bug:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 ldmia sp, {r0 - lr}^ @ Get calling r0 - lr
233 mov r0, r0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 add sp, sp, #S_FRAME_SIZE
Nicolas Pitre60ac1332005-10-12 19:51:24 +0100235 subs pc, lr, #4
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236#else
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000237#define A710(code...)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238#endif
239
240 .align 5
241ENTRY(vector_swi)
Russell Kingf4dc9a42005-04-26 15:20:34 +0100242 sub sp, sp, #S_FRAME_SIZE
243 stmia sp, {r0 - r12} @ Calling r0 - r12
Catalin Marinasb86040a2009-07-24 12:32:54 +0100244 ARM( add r8, sp, #S_PC )
245 ARM( stmdb r8, {sp, lr}^ ) @ Calling sp, lr
246 THUMB( mov r8, sp )
247 THUMB( store_user_sp_lr r8, r10, S_SP ) @ calling sp, lr
Russell Kingf4dc9a42005-04-26 15:20:34 +0100248 mrs r8, spsr @ called from non-FIQ mode, so ok.
249 str lr, [sp, #S_PC] @ Save calling PC
250 str r8, [sp, #S_PSR] @ Save CPSR
251 str r0, [sp, #S_OLD_R0] @ Save OLD_R0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 zero_fp
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100253
254 /*
255 * Get the system call number.
256 */
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000257
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000258#if defined(CONFIG_OABI_COMPAT)
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000259
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000260 /*
261 * If we have CONFIG_OABI_COMPAT then we need to look at the swi
262 * value to determine if it is an EABI or an old ABI call.
263 */
264#ifdef CONFIG_ARM_THUMB
265 tst r8, #PSR_T_BIT
266 movne r10, #0 @ no thumb OABI emulation
267 ldreq r10, [lr, #-4] @ get SWI instruction
268#else
269 ldr r10, [lr, #-4] @ get SWI instruction
270 A710( and ip, r10, #0x0f000000 @ check for SWI )
271 A710( teq ip, #0x0f000000 )
272 A710( bne .Larm710bug )
273#endif
Catalin Marinas26584852009-05-30 14:00:18 +0100274#ifdef CONFIG_CPU_ENDIAN_BE8
275 rev r10, r10 @ little endian instruction
276#endif
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000277
278#elif defined(CONFIG_AEABI)
279
280 /*
281 * Pure EABI user space always put syscall number into scno (r7).
282 */
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000283 A710( ldr ip, [lr, #-4] @ get SWI instruction )
284 A710( and ip, ip, #0x0f000000 @ check for SWI )
285 A710( teq ip, #0x0f000000 )
286 A710( bne .Larm710bug )
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000287
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000288#elif defined(CONFIG_ARM_THUMB)
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000289
290 /* Legacy ABI only, possibly thumb mode. */
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100291 tst r8, #PSR_T_BIT @ this is SPSR from save_user_regs
292 addne scno, r7, #__NR_SYSCALL_BASE @ put OS number in
293 ldreq scno, [lr, #-4]
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000294
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100295#else
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000296
297 /* Legacy ABI only. */
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100298 ldr scno, [lr, #-4] @ get SWI instruction
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000299 A710( and ip, scno, #0x0f000000 @ check for SWI )
300 A710( teq ip, #0x0f000000 )
301 A710( bne .Larm710bug )
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000302
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100303#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
305#ifdef CONFIG_ALIGNMENT_TRAP
306 ldr ip, __cr_alignment
307 ldr ip, [ip]
308 mcr p15, 0, ip, c1, c0 @ update control register
309#endif
Russell King1ec42c02005-04-26 15:18:26 +0100310 enable_irq
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 get_thread_info tsk
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000313 adr tbl, sys_call_table @ load syscall table pointer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 ldr ip, [tsk, #TI_FLAGS] @ check for syscall tracing
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000315
316#if defined(CONFIG_OABI_COMPAT)
317 /*
318 * If the swi argument is zero, this is an EABI call and we do nothing.
319 *
320 * If this is an old ABI call, get the syscall number into scno and
321 * get the old ABI syscall table address.
322 */
323 bics r10, r10, #0xff000000
324 eorne scno, r10, #__NR_OABI_SYSCALL_BASE
325 ldrne tbl, =sys_oabi_call_table
326#elif !defined(CONFIG_AEABI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 bic scno, scno, #0xff000000 @ mask off SWI op-code
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100328 eor scno, scno, #__NR_SYSCALL_BASE @ check OS number
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000329#endif
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000330
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000331 stmdb sp!, {r4, r5} @ push fifth and sixth args
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 tst ip, #_TIF_SYSCALL_TRACE @ are we tracing syscalls?
333 bne __sys_trace
334
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 cmp scno, #NR_syscalls @ check upper syscall limit
Catalin Marinasb86040a2009-07-24 12:32:54 +0100336 adr lr, BSYM(ret_fast_syscall) @ return address
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 ldrcc pc, [tbl, scno, lsl #2] @ call sys_* routine
338
339 add r1, sp, #S_OFF
3402: mov why, #0 @ no longer a real syscall
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100341 cmp scno, #(__ARM_NR_BASE - __NR_SYSCALL_BASE)
342 eor r0, scno, #__NR_SYSCALL_BASE @ put OS number back
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 bcs arm_syscall
344 b sys_ni_syscall @ not private func
Catalin Marinas93ed3972008-08-28 11:22:32 +0100345ENDPROC(vector_swi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
347 /*
348 * This is the really slow path. We're going to be doing
349 * context switches, and waiting for our parent to respond.
350 */
351__sys_trace:
Nicolas Pitre3f471122006-01-14 19:30:04 +0000352 mov r2, scno
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 add r1, sp, #S_OFF
354 mov r0, #0 @ trace entry [IP = 0]
355 bl syscall_trace
356
Catalin Marinasb86040a2009-07-24 12:32:54 +0100357 adr lr, BSYM(__sys_trace_return) @ return address
Nicolas Pitre3f471122006-01-14 19:30:04 +0000358 mov scno, r0 @ syscall number (possibly new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 add r1, sp, #S_R0 + S_OFF @ pointer to regs
360 cmp scno, #NR_syscalls @ check upper syscall limit
361 ldmccia r1, {r0 - r3} @ have to reload r0 - r3
362 ldrcc pc, [tbl, scno, lsl #2] @ call sys_* routine
363 b 2b
364
365__sys_trace_return:
366 str r0, [sp, #S_R0 + S_OFF]! @ save returned r0
Nicolas Pitre3f471122006-01-14 19:30:04 +0000367 mov r2, scno
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 mov r1, sp
369 mov r0, #1 @ trace exit [IP = 1]
370 bl syscall_trace
371 b ret_slow_syscall
372
373 .align 5
374#ifdef CONFIG_ALIGNMENT_TRAP
375 .type __cr_alignment, #object
376__cr_alignment:
377 .word cr_alignment
378#endif
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000379 .ltorg
380
381/*
382 * This is the syscall table declaration for native ABI syscalls.
383 * With EABI a couple syscalls are obsolete and defined as sys_ni_syscall.
384 */
385#define ABI(native, compat) native
386#ifdef CONFIG_AEABI
387#define OBSOLETE(syscall) sys_ni_syscall
388#else
389#define OBSOLETE(syscall) syscall
390#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
392 .type sys_call_table, #object
393ENTRY(sys_call_table)
394#include "calls.S"
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000395#undef ABI
396#undef OBSOLETE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
398/*============================================================================
399 * Special system call wrappers
400 */
401@ r0 = syscall number
Russell King567bd982005-12-17 15:25:42 +0000402@ r8 = syscall table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403sys_syscall:
Paul Brook52475932006-05-16 14:25:55 +0100404 bic scno, r0, #__NR_OABI_SYSCALL_BASE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 cmp scno, #__NR_syscall - __NR_SYSCALL_BASE
406 cmpne scno, #NR_syscalls @ check range
407 stmloia sp, {r5, r6} @ shuffle args
408 movlo r0, r1
409 movlo r1, r2
410 movlo r2, r3
411 movlo r3, r4
412 ldrlo pc, [tbl, scno, lsl #2]
413 b sys_ni_syscall
Catalin Marinas93ed3972008-08-28 11:22:32 +0100414ENDPROC(sys_syscall)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
416sys_fork_wrapper:
417 add r0, sp, #S_OFF
418 b sys_fork
Catalin Marinas93ed3972008-08-28 11:22:32 +0100419ENDPROC(sys_fork_wrapper)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
421sys_vfork_wrapper:
422 add r0, sp, #S_OFF
423 b sys_vfork
Catalin Marinas93ed3972008-08-28 11:22:32 +0100424ENDPROC(sys_vfork_wrapper)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
426sys_execve_wrapper:
427 add r3, sp, #S_OFF
428 b sys_execve
Catalin Marinas93ed3972008-08-28 11:22:32 +0100429ENDPROC(sys_execve_wrapper)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
431sys_clone_wrapper:
432 add ip, sp, #S_OFF
433 str ip, [sp, #4]
434 b sys_clone
Catalin Marinas93ed3972008-08-28 11:22:32 +0100435ENDPROC(sys_clone_wrapper)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437sys_sigreturn_wrapper:
438 add r0, sp, #S_OFF
439 b sys_sigreturn
Catalin Marinas93ed3972008-08-28 11:22:32 +0100440ENDPROC(sys_sigreturn_wrapper)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
442sys_rt_sigreturn_wrapper:
443 add r0, sp, #S_OFF
444 b sys_rt_sigreturn
Catalin Marinas93ed3972008-08-28 11:22:32 +0100445ENDPROC(sys_rt_sigreturn_wrapper)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
447sys_sigaltstack_wrapper:
448 ldr r2, [sp, #S_OFF + S_SP]
449 b do_sigaltstack
Catalin Marinas93ed3972008-08-28 11:22:32 +0100450ENDPROC(sys_sigaltstack_wrapper)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
Nicolas Pitre713c4812006-01-14 16:35:03 +0000452sys_statfs64_wrapper:
453 teq r1, #88
454 moveq r1, #84
455 b sys_statfs64
Catalin Marinas93ed3972008-08-28 11:22:32 +0100456ENDPROC(sys_statfs64_wrapper)
Nicolas Pitre713c4812006-01-14 16:35:03 +0000457
458sys_fstatfs64_wrapper:
459 teq r1, #88
460 moveq r1, #84
461 b sys_fstatfs64
Catalin Marinas93ed3972008-08-28 11:22:32 +0100462ENDPROC(sys_fstatfs64_wrapper)
Nicolas Pitre713c4812006-01-14 16:35:03 +0000463
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464/*
465 * Note: off_4k (r5) is always units of 4K. If we can't do the requested
466 * offset, we return EINVAL.
467 */
468sys_mmap2:
469#if PAGE_SHIFT > 12
470 tst r5, #PGOFF_MASK
471 moveq r5, r5, lsr #PAGE_SHIFT - 12
472 streq r5, [sp, #4]
Al Virof8b72562009-11-30 17:37:04 -0500473 beq sys_mmap_pgoff
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 mov r0, #-EINVAL
Russell King7999d8d2006-06-25 11:17:23 +0100475 mov pc, lr
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476#else
477 str r5, [sp, #4]
Al Virof8b72562009-11-30 17:37:04 -0500478 b sys_mmap_pgoff
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479#endif
Catalin Marinas93ed3972008-08-28 11:22:32 +0100480ENDPROC(sys_mmap2)
Nicolas Pitre687ad012006-01-14 16:35:31 +0000481
482#ifdef CONFIG_OABI_COMPAT
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000483
Nicolas Pitre687ad012006-01-14 16:35:31 +0000484/*
485 * These are syscalls with argument register differences
486 */
487
488sys_oabi_pread64:
489 stmia sp, {r3, r4}
490 b sys_pread64
Catalin Marinas93ed3972008-08-28 11:22:32 +0100491ENDPROC(sys_oabi_pread64)
Nicolas Pitre687ad012006-01-14 16:35:31 +0000492
493sys_oabi_pwrite64:
494 stmia sp, {r3, r4}
495 b sys_pwrite64
Catalin Marinas93ed3972008-08-28 11:22:32 +0100496ENDPROC(sys_oabi_pwrite64)
Nicolas Pitre687ad012006-01-14 16:35:31 +0000497
498sys_oabi_truncate64:
499 mov r3, r2
500 mov r2, r1
501 b sys_truncate64
Catalin Marinas93ed3972008-08-28 11:22:32 +0100502ENDPROC(sys_oabi_truncate64)
Nicolas Pitre687ad012006-01-14 16:35:31 +0000503
504sys_oabi_ftruncate64:
505 mov r3, r2
506 mov r2, r1
507 b sys_ftruncate64
Catalin Marinas93ed3972008-08-28 11:22:32 +0100508ENDPROC(sys_oabi_ftruncate64)
Nicolas Pitre687ad012006-01-14 16:35:31 +0000509
510sys_oabi_readahead:
511 str r3, [sp]
512 mov r3, r2
513 mov r2, r1
514 b sys_readahead
Catalin Marinas93ed3972008-08-28 11:22:32 +0100515ENDPROC(sys_oabi_readahead)
Nicolas Pitre687ad012006-01-14 16:35:31 +0000516
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000517/*
518 * Let's declare a second syscall table for old ABI binaries
519 * using the compatibility syscall entries.
520 */
521#define ABI(native, compat) compat
522#define OBSOLETE(syscall) syscall
523
524 .type sys_oabi_call_table, #object
525ENTRY(sys_oabi_call_table)
526#include "calls.S"
527#undef ABI
528#undef OBSOLETE
529
Nicolas Pitre687ad012006-01-14 16:35:31 +0000530#endif
531