blob: 0385a8207b6730c9e09dfb71a34ebd34eee474ef [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'
Russell Kingb2b163b2010-09-17 14:56:16 +010051 tst r1, #_TIF_SIGPENDING @ delivering a signal?
52 movne why, #0 @ prevent further restarts
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 bl do_notify_resume
Daniel Jacobowitza6c61e92005-11-19 10:01:07 +000054 b ret_slow_syscall @ Check work again
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56work_resched:
57 bl schedule
58/*
59 * "slow" syscall return path. "why" tells us if this was a real syscall.
60 */
61ENTRY(ret_to_user)
62ret_slow_syscall:
Russell King1ec42c02005-04-26 15:18:26 +010063 disable_irq @ disable interrupts
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 ldr r1, [tsk, #TI_FLAGS]
65 tst r1, #_TIF_WORK_MASK
66 bne work_pending
67no_work_pending:
Dan Williamsf80dff92007-02-16 22:16:32 +010068 /* perform architecture specific actions before user return */
69 arch_ret_to_user r1, lr
70
Catalin Marinasb86040a2009-07-24 12:32:54 +010071 restore_user_regs fast = 0, offset = 0
Catalin Marinas93ed3972008-08-28 11:22:32 +010072ENDPROC(ret_to_user)
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74/*
75 * This is how we return from a fork.
76 */
77ENTRY(ret_from_fork)
78 bl schedule_tail
79 get_thread_info tsk
80 ldr r1, [tsk, #TI_FLAGS] @ check for syscall tracing
81 mov why, #1
82 tst r1, #_TIF_SYSCALL_TRACE @ are we tracing syscalls?
83 beq ret_slow_syscall
84 mov r1, sp
85 mov r0, #1 @ trace exit [IP = 1]
86 bl syscall_trace
87 b ret_slow_syscall
Catalin Marinas93ed3972008-08-28 11:22:32 +010088ENDPROC(ret_from_fork)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Al Virofa1b4f92006-01-19 12:57:01 +000090 .equ NR_syscalls,0
91#define CALL(x) .equ NR_syscalls,NR_syscalls+1
Linus Torvalds1da177e2005-04-16 15:20:36 -070092#include "calls.S"
Al Virofa1b4f92006-01-19 12:57:01 +000093#undef CALL
94#define CALL(x) .long x
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Steven Rostedt606576c2008-10-06 19:06:12 -040096#ifdef CONFIG_FUNCTION_TRACER
Rabin Vincent686ff222010-08-03 17:09:40 +010097/*
98 * When compiling with -pg, gcc inserts a call to the mcount routine at the
99 * start of every function. In mcount, apart from the function's address (in
100 * lr), we need to get hold of the function's caller's address.
101 *
102 * Older GCCs (pre-4.4) inserted a call to a routine called mcount like this:
103 *
104 * bl mcount
105 *
106 * These versions have the limitation that in order for the mcount routine to
107 * be able to determine the function's caller's address, an APCS-style frame
108 * pointer (which is set up with something like the code below) is required.
109 *
110 * mov ip, sp
111 * push {fp, ip, lr, pc}
112 * sub fp, ip, #4
113 *
114 * With EABI, these frame pointers are not available unless -mapcs-frame is
115 * specified, and if building as Thumb-2, not even then.
116 *
117 * Newer GCCs (4.4+) solve this problem by introducing a new version of mcount,
118 * with call sites like:
119 *
120 * push {lr}
121 * bl __gnu_mcount_nc
122 *
123 * With these compilers, frame pointers are not necessary.
124 *
125 * mcount can be thought of as a function called in the middle of a subroutine
126 * call. As such, it needs to be transparent for both the caller and the
127 * callee: the original lr needs to be restored when leaving mcount, and no
128 * registers should be clobbered. (In the __gnu_mcount_nc implementation, we
129 * clobber the ip register. This is OK because the ARM calling convention
130 * allows it to be clobbered in subroutines and doesn't use it to hold
131 * parameters.)
132 */
Abhishek Sagar014c2572008-05-31 14:23:50 +0530133#ifdef CONFIG_DYNAMIC_FTRACE
134ENTRY(mcount)
Rabin Vincent28e192d2010-08-03 17:08:09 +0100135 stmdb sp!, {r0-r3, lr}
136 mov r0, lr
137 sub r0, r0, #MCOUNT_INSN_SIZE
Abhishek Sagar014c2572008-05-31 14:23:50 +0530138
139 .globl mcount_call
140mcount_call:
Rabin Vincent28e192d2010-08-03 17:08:09 +0100141 bl ftrace_stub
142 ldr lr, [fp, #-4] @ restore lr
143 ldmia sp!, {r0-r3, pc}
Abhishek Sagar014c2572008-05-31 14:23:50 +0530144
145ENTRY(ftrace_caller)
Rabin Vincent28e192d2010-08-03 17:08:09 +0100146 stmdb sp!, {r0-r3, lr}
147 ldr r1, [fp, #-4]
148 mov r0, lr
149 sub r0, r0, #MCOUNT_INSN_SIZE
Abhishek Sagar014c2572008-05-31 14:23:50 +0530150
151 .globl ftrace_call
152ftrace_call:
Rabin Vincent28e192d2010-08-03 17:08:09 +0100153 bl ftrace_stub
154 ldr lr, [fp, #-4] @ restore lr
155 ldmia sp!, {r0-r3, pc}
Abhishek Sagar014c2572008-05-31 14:23:50 +0530156
157#else
158
Uwe Kleine-König181f8172009-08-13 20:38:16 +0200159ENTRY(__gnu_mcount_nc)
Rabin Vincent28e192d2010-08-03 17:08:09 +0100160 stmdb sp!, {r0-r3, lr}
161 ldr r0, =ftrace_trace_function
162 ldr r2, [r0]
163 adr r0, ftrace_stub
164 cmp r0, r2
165 bne gnu_trace
166 ldmia sp!, {r0-r3, ip, lr}
167 mov pc, ip
Uwe Kleine-König181f8172009-08-13 20:38:16 +0200168
169gnu_trace:
Rabin Vincent28e192d2010-08-03 17:08:09 +0100170 ldr r1, [sp, #20] @ lr of instrumented routine
171 mov r0, lr
172 sub r0, r0, #MCOUNT_INSN_SIZE
173 mov lr, pc
174 mov pc, r2
175 ldmia sp!, {r0-r3, ip, lr}
176 mov pc, ip
Uwe Kleine-König181f8172009-08-13 20:38:16 +0200177
Abhishek Sagar014c2572008-05-31 14:23:50 +0530178ENTRY(mcount)
Rabin Vincent28e192d2010-08-03 17:08:09 +0100179 stmdb sp!, {r0-r3, lr}
180 ldr r0, =ftrace_trace_function
181 ldr r2, [r0]
182 adr r0, ftrace_stub
183 cmp r0, r2
184 bne trace
185 ldr lr, [fp, #-4] @ restore lr
186 ldmia sp!, {r0-r3, pc}
Abhishek Sagar014c2572008-05-31 14:23:50 +0530187
188trace:
Rabin Vincent28e192d2010-08-03 17:08:09 +0100189 ldr r1, [fp, #-4] @ lr of instrumented routine
190 mov r0, lr
191 sub r0, r0, #MCOUNT_INSN_SIZE
192 mov lr, pc
193 mov pc, r2
194 ldr lr, [fp, #-4] @ restore lr
195 ldmia sp!, {r0-r3, pc}
Abhishek Sagar014c2572008-05-31 14:23:50 +0530196
197#endif /* CONFIG_DYNAMIC_FTRACE */
198
199 .globl ftrace_stub
200ftrace_stub:
Rabin Vincent28e192d2010-08-03 17:08:09 +0100201 mov pc, lr
Abhishek Sagar014c2572008-05-31 14:23:50 +0530202
Steven Rostedt606576c2008-10-06 19:06:12 -0400203#endif /* CONFIG_FUNCTION_TRACER */
Abhishek Sagar014c2572008-05-31 14:23:50 +0530204
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205/*=============================================================================
206 * SWI handler
207 *-----------------------------------------------------------------------------
208 */
209
210 /* If we're optimising for StrongARM the resulting code won't
211 run on an ARM7 and we can save a couple of instructions.
212 --pb */
213#ifdef CONFIG_CPU_ARM710
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000214#define A710(code...) code
215.Larm710bug:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 ldmia sp, {r0 - lr}^ @ Get calling r0 - lr
217 mov r0, r0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 add sp, sp, #S_FRAME_SIZE
Nicolas Pitre60ac1332005-10-12 19:51:24 +0100219 subs pc, lr, #4
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220#else
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000221#define A710(code...)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222#endif
223
224 .align 5
225ENTRY(vector_swi)
Russell Kingf4dc9a42005-04-26 15:20:34 +0100226 sub sp, sp, #S_FRAME_SIZE
227 stmia sp, {r0 - r12} @ Calling r0 - r12
Catalin Marinasb86040a2009-07-24 12:32:54 +0100228 ARM( add r8, sp, #S_PC )
229 ARM( stmdb r8, {sp, lr}^ ) @ Calling sp, lr
230 THUMB( mov r8, sp )
231 THUMB( store_user_sp_lr r8, r10, S_SP ) @ calling sp, lr
Russell Kingf4dc9a42005-04-26 15:20:34 +0100232 mrs r8, spsr @ called from non-FIQ mode, so ok.
233 str lr, [sp, #S_PC] @ Save calling PC
234 str r8, [sp, #S_PSR] @ Save CPSR
235 str r0, [sp, #S_OLD_R0] @ Save OLD_R0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 zero_fp
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100237
238 /*
239 * Get the system call number.
240 */
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000241
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000242#if defined(CONFIG_OABI_COMPAT)
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000243
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000244 /*
245 * If we have CONFIG_OABI_COMPAT then we need to look at the swi
246 * value to determine if it is an EABI or an old ABI call.
247 */
248#ifdef CONFIG_ARM_THUMB
249 tst r8, #PSR_T_BIT
250 movne r10, #0 @ no thumb OABI emulation
251 ldreq r10, [lr, #-4] @ get SWI instruction
252#else
253 ldr r10, [lr, #-4] @ get SWI instruction
254 A710( and ip, r10, #0x0f000000 @ check for SWI )
255 A710( teq ip, #0x0f000000 )
256 A710( bne .Larm710bug )
257#endif
Catalin Marinas26584852009-05-30 14:00:18 +0100258#ifdef CONFIG_CPU_ENDIAN_BE8
259 rev r10, r10 @ little endian instruction
260#endif
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000261
262#elif defined(CONFIG_AEABI)
263
264 /*
265 * Pure EABI user space always put syscall number into scno (r7).
266 */
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000267 A710( ldr ip, [lr, #-4] @ get SWI instruction )
268 A710( and ip, ip, #0x0f000000 @ check for SWI )
269 A710( teq ip, #0x0f000000 )
270 A710( bne .Larm710bug )
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000271
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000272#elif defined(CONFIG_ARM_THUMB)
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000273
274 /* Legacy ABI only, possibly thumb mode. */
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100275 tst r8, #PSR_T_BIT @ this is SPSR from save_user_regs
276 addne scno, r7, #__NR_SYSCALL_BASE @ put OS number in
277 ldreq scno, [lr, #-4]
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000278
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100279#else
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000280
281 /* Legacy ABI only. */
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100282 ldr scno, [lr, #-4] @ get SWI instruction
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000283 A710( and ip, scno, #0x0f000000 @ check for SWI )
284 A710( teq ip, #0x0f000000 )
285 A710( bne .Larm710bug )
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000286
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100287#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
289#ifdef CONFIG_ALIGNMENT_TRAP
290 ldr ip, __cr_alignment
291 ldr ip, [ip]
292 mcr p15, 0, ip, c1, c0 @ update control register
293#endif
Russell King1ec42c02005-04-26 15:18:26 +0100294 enable_irq
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 get_thread_info tsk
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000297 adr tbl, sys_call_table @ load syscall table pointer
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000298
299#if defined(CONFIG_OABI_COMPAT)
300 /*
301 * If the swi argument is zero, this is an EABI call and we do nothing.
302 *
303 * If this is an old ABI call, get the syscall number into scno and
304 * get the old ABI syscall table address.
305 */
306 bics r10, r10, #0xff000000
307 eorne scno, r10, #__NR_OABI_SYSCALL_BASE
308 ldrne tbl, =sys_oabi_call_table
309#elif !defined(CONFIG_AEABI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 bic scno, scno, #0xff000000 @ mask off SWI op-code
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100311 eor scno, scno, #__NR_SYSCALL_BASE @ check OS number
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000312#endif
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000313
Nicolas Pitre70c70d92010-08-26 15:08:35 -0700314 ldr r10, [tsk, #TI_FLAGS] @ check for syscall tracing
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000315 stmdb sp!, {r4, r5} @ push fifth and sixth args
Nicolas Pitre70c70d92010-08-26 15:08:35 -0700316
317#ifdef CONFIG_SECCOMP
318 tst r10, #_TIF_SECCOMP
319 beq 1f
320 mov r0, scno
321 bl __secure_computing
322 add r0, sp, #S_R0 + S_OFF @ pointer to regs
323 ldmia r0, {r0 - r3} @ have to reload r0 - r3
3241:
325#endif
326
327 tst r10, #_TIF_SYSCALL_TRACE @ are we tracing syscalls?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 bne __sys_trace
329
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 cmp scno, #NR_syscalls @ check upper syscall limit
Catalin Marinasb86040a2009-07-24 12:32:54 +0100331 adr lr, BSYM(ret_fast_syscall) @ return address
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 ldrcc pc, [tbl, scno, lsl #2] @ call sys_* routine
333
334 add r1, sp, #S_OFF
3352: mov why, #0 @ no longer a real syscall
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100336 cmp scno, #(__ARM_NR_BASE - __NR_SYSCALL_BASE)
337 eor r0, scno, #__NR_SYSCALL_BASE @ put OS number back
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 bcs arm_syscall
339 b sys_ni_syscall @ not private func
Catalin Marinas93ed3972008-08-28 11:22:32 +0100340ENDPROC(vector_swi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
342 /*
343 * This is the really slow path. We're going to be doing
344 * context switches, and waiting for our parent to respond.
345 */
346__sys_trace:
Nicolas Pitre3f471122006-01-14 19:30:04 +0000347 mov r2, scno
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 add r1, sp, #S_OFF
349 mov r0, #0 @ trace entry [IP = 0]
350 bl syscall_trace
351
Catalin Marinasb86040a2009-07-24 12:32:54 +0100352 adr lr, BSYM(__sys_trace_return) @ return address
Nicolas Pitre3f471122006-01-14 19:30:04 +0000353 mov scno, r0 @ syscall number (possibly new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 add r1, sp, #S_R0 + S_OFF @ pointer to regs
355 cmp scno, #NR_syscalls @ check upper syscall limit
356 ldmccia r1, {r0 - r3} @ have to reload r0 - r3
357 ldrcc pc, [tbl, scno, lsl #2] @ call sys_* routine
358 b 2b
359
360__sys_trace_return:
361 str r0, [sp, #S_R0 + S_OFF]! @ save returned r0
Nicolas Pitre3f471122006-01-14 19:30:04 +0000362 mov r2, scno
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 mov r1, sp
364 mov r0, #1 @ trace exit [IP = 1]
365 bl syscall_trace
366 b ret_slow_syscall
367
368 .align 5
369#ifdef CONFIG_ALIGNMENT_TRAP
370 .type __cr_alignment, #object
371__cr_alignment:
372 .word cr_alignment
373#endif
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000374 .ltorg
375
376/*
377 * This is the syscall table declaration for native ABI syscalls.
378 * With EABI a couple syscalls are obsolete and defined as sys_ni_syscall.
379 */
380#define ABI(native, compat) native
381#ifdef CONFIG_AEABI
382#define OBSOLETE(syscall) sys_ni_syscall
383#else
384#define OBSOLETE(syscall) syscall
385#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
387 .type sys_call_table, #object
388ENTRY(sys_call_table)
389#include "calls.S"
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000390#undef ABI
391#undef OBSOLETE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
393/*============================================================================
394 * Special system call wrappers
395 */
396@ r0 = syscall number
Russell King567bd982005-12-17 15:25:42 +0000397@ r8 = syscall table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398sys_syscall:
Paul Brook52475932006-05-16 14:25:55 +0100399 bic scno, r0, #__NR_OABI_SYSCALL_BASE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 cmp scno, #__NR_syscall - __NR_SYSCALL_BASE
401 cmpne scno, #NR_syscalls @ check range
402 stmloia sp, {r5, r6} @ shuffle args
403 movlo r0, r1
404 movlo r1, r2
405 movlo r2, r3
406 movlo r3, r4
407 ldrlo pc, [tbl, scno, lsl #2]
408 b sys_ni_syscall
Catalin Marinas93ed3972008-08-28 11:22:32 +0100409ENDPROC(sys_syscall)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
411sys_fork_wrapper:
412 add r0, sp, #S_OFF
413 b sys_fork
Catalin Marinas93ed3972008-08-28 11:22:32 +0100414ENDPROC(sys_fork_wrapper)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
416sys_vfork_wrapper:
417 add r0, sp, #S_OFF
418 b sys_vfork
Catalin Marinas93ed3972008-08-28 11:22:32 +0100419ENDPROC(sys_vfork_wrapper)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
421sys_execve_wrapper:
422 add r3, sp, #S_OFF
423 b sys_execve
Catalin Marinas93ed3972008-08-28 11:22:32 +0100424ENDPROC(sys_execve_wrapper)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
426sys_clone_wrapper:
427 add ip, sp, #S_OFF
428 str ip, [sp, #4]
429 b sys_clone
Catalin Marinas93ed3972008-08-28 11:22:32 +0100430ENDPROC(sys_clone_wrapper)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432sys_sigreturn_wrapper:
433 add r0, sp, #S_OFF
Al Viro653d48b2010-09-17 14:34:39 +0100434 mov why, #0 @ prevent syscall restart handling
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 b sys_sigreturn
Catalin Marinas93ed3972008-08-28 11:22:32 +0100436ENDPROC(sys_sigreturn_wrapper)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
438sys_rt_sigreturn_wrapper:
439 add r0, sp, #S_OFF
Al Viro653d48b2010-09-17 14:34:39 +0100440 mov why, #0 @ prevent syscall restart handling
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 b sys_rt_sigreturn
Catalin Marinas93ed3972008-08-28 11:22:32 +0100442ENDPROC(sys_rt_sigreturn_wrapper)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
444sys_sigaltstack_wrapper:
445 ldr r2, [sp, #S_OFF + S_SP]
446 b do_sigaltstack
Catalin Marinas93ed3972008-08-28 11:22:32 +0100447ENDPROC(sys_sigaltstack_wrapper)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
Nicolas Pitre713c4812006-01-14 16:35:03 +0000449sys_statfs64_wrapper:
450 teq r1, #88
451 moveq r1, #84
452 b sys_statfs64
Catalin Marinas93ed3972008-08-28 11:22:32 +0100453ENDPROC(sys_statfs64_wrapper)
Nicolas Pitre713c4812006-01-14 16:35:03 +0000454
455sys_fstatfs64_wrapper:
456 teq r1, #88
457 moveq r1, #84
458 b sys_fstatfs64
Catalin Marinas93ed3972008-08-28 11:22:32 +0100459ENDPROC(sys_fstatfs64_wrapper)
Nicolas Pitre713c4812006-01-14 16:35:03 +0000460
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461/*
462 * Note: off_4k (r5) is always units of 4K. If we can't do the requested
463 * offset, we return EINVAL.
464 */
465sys_mmap2:
466#if PAGE_SHIFT > 12
467 tst r5, #PGOFF_MASK
468 moveq r5, r5, lsr #PAGE_SHIFT - 12
469 streq r5, [sp, #4]
Al Virof8b72562009-11-30 17:37:04 -0500470 beq sys_mmap_pgoff
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 mov r0, #-EINVAL
Russell King7999d8d2006-06-25 11:17:23 +0100472 mov pc, lr
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473#else
474 str r5, [sp, #4]
Al Virof8b72562009-11-30 17:37:04 -0500475 b sys_mmap_pgoff
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476#endif
Catalin Marinas93ed3972008-08-28 11:22:32 +0100477ENDPROC(sys_mmap2)
Nicolas Pitre687ad012006-01-14 16:35:31 +0000478
479#ifdef CONFIG_OABI_COMPAT
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000480
Nicolas Pitre687ad012006-01-14 16:35:31 +0000481/*
482 * These are syscalls with argument register differences
483 */
484
485sys_oabi_pread64:
486 stmia sp, {r3, r4}
487 b sys_pread64
Catalin Marinas93ed3972008-08-28 11:22:32 +0100488ENDPROC(sys_oabi_pread64)
Nicolas Pitre687ad012006-01-14 16:35:31 +0000489
490sys_oabi_pwrite64:
491 stmia sp, {r3, r4}
492 b sys_pwrite64
Catalin Marinas93ed3972008-08-28 11:22:32 +0100493ENDPROC(sys_oabi_pwrite64)
Nicolas Pitre687ad012006-01-14 16:35:31 +0000494
495sys_oabi_truncate64:
496 mov r3, r2
497 mov r2, r1
498 b sys_truncate64
Catalin Marinas93ed3972008-08-28 11:22:32 +0100499ENDPROC(sys_oabi_truncate64)
Nicolas Pitre687ad012006-01-14 16:35:31 +0000500
501sys_oabi_ftruncate64:
502 mov r3, r2
503 mov r2, r1
504 b sys_ftruncate64
Catalin Marinas93ed3972008-08-28 11:22:32 +0100505ENDPROC(sys_oabi_ftruncate64)
Nicolas Pitre687ad012006-01-14 16:35:31 +0000506
507sys_oabi_readahead:
508 str r3, [sp]
509 mov r3, r2
510 mov r2, r1
511 b sys_readahead
Catalin Marinas93ed3972008-08-28 11:22:32 +0100512ENDPROC(sys_oabi_readahead)
Nicolas Pitre687ad012006-01-14 16:35:31 +0000513
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000514/*
515 * Let's declare a second syscall table for old ABI binaries
516 * using the compatibility syscall entries.
517 */
518#define ABI(native, compat) compat
519#define OBSOLETE(syscall) syscall
520
521 .type sys_oabi_call_table, #object
522ENTRY(sys_oabi_call_table)
523#include "calls.S"
524#undef ABI
525#undef OBSOLETE
526
Nicolas Pitre687ad012006-01-14 16:35:31 +0000527#endif
528