blob: 80bf8cd88d7c522c319354c75b13d5484b9ede96 [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
Todd Android Poynord13e5ed2010-12-23 01:52:44 +010032#if defined(CONFIG_IRQSOFF_TRACER)
33 asm_trace_hardirqs_on
34#endif
Russell Kingf4dc9a42005-04-26 15:20:34 +010035
Dan Williamsf80dff92007-02-16 22:16:32 +010036 /* perform architecture specific actions before user return */
37 arch_ret_to_user r1, lr
38
Catalin Marinasb86040a2009-07-24 12:32:54 +010039 restore_user_regs fast = 1, offset = S_OFF
Catalin Marinasc4c57162009-02-16 11:42:09 +010040 UNWIND(.fnend )
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42/*
43 * Ok, we need to do extra processing, enter the slow path.
44 */
45fast_work_pending:
46 str r0, [sp, #S_R0+S_OFF]! @ returned r0
47work_pending:
48 tst r1, #_TIF_NEED_RESCHED
49 bne work_resched
David Howellsd0420c82009-09-02 09:14:16 +010050 tst r1, #_TIF_SIGPENDING|_TIF_NOTIFY_RESUME
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 beq no_work_pending
52 mov r0, sp @ 'regs'
53 mov r2, why @ 'syscall'
Russell Kingb2b163b2010-09-17 14:56:16 +010054 tst r1, #_TIF_SIGPENDING @ delivering a signal?
55 movne why, #0 @ prevent further restarts
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 bl do_notify_resume
Daniel Jacobowitza6c61e92005-11-19 10:01:07 +000057 b ret_slow_syscall @ Check work again
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59work_resched:
60 bl schedule
61/*
62 * "slow" syscall return path. "why" tells us if this was a real syscall.
63 */
64ENTRY(ret_to_user)
65ret_slow_syscall:
Russell King1ec42c02005-04-26 15:18:26 +010066 disable_irq @ disable interrupts
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 ldr r1, [tsk, #TI_FLAGS]
68 tst r1, #_TIF_WORK_MASK
69 bne work_pending
70no_work_pending:
Todd Android Poynord13e5ed2010-12-23 01:52:44 +010071#if defined(CONFIG_IRQSOFF_TRACER)
72 asm_trace_hardirqs_on
73#endif
Dan Williamsf80dff92007-02-16 22:16:32 +010074 /* perform architecture specific actions before user return */
75 arch_ret_to_user r1, lr
76
Catalin Marinasb86040a2009-07-24 12:32:54 +010077 restore_user_regs fast = 0, offset = 0
Catalin Marinas93ed3972008-08-28 11:22:32 +010078ENDPROC(ret_to_user)
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80/*
81 * This is how we return from a fork.
82 */
83ENTRY(ret_from_fork)
84 bl schedule_tail
85 get_thread_info tsk
86 ldr r1, [tsk, #TI_FLAGS] @ check for syscall tracing
87 mov why, #1
88 tst r1, #_TIF_SYSCALL_TRACE @ are we tracing syscalls?
89 beq ret_slow_syscall
90 mov r1, sp
91 mov r0, #1 @ trace exit [IP = 1]
92 bl syscall_trace
93 b ret_slow_syscall
Catalin Marinas93ed3972008-08-28 11:22:32 +010094ENDPROC(ret_from_fork)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Al Virofa1b4f92006-01-19 12:57:01 +000096 .equ NR_syscalls,0
97#define CALL(x) .equ NR_syscalls,NR_syscalls+1
Linus Torvalds1da177e2005-04-16 15:20:36 -070098#include "calls.S"
Al Virofa1b4f92006-01-19 12:57:01 +000099#undef CALL
100#define CALL(x) .long x
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Steven Rostedt606576c2008-10-06 19:06:12 -0400102#ifdef CONFIG_FUNCTION_TRACER
Rabin Vincent686ff222010-08-03 17:09:40 +0100103/*
104 * When compiling with -pg, gcc inserts a call to the mcount routine at the
105 * start of every function. In mcount, apart from the function's address (in
106 * lr), we need to get hold of the function's caller's address.
107 *
108 * Older GCCs (pre-4.4) inserted a call to a routine called mcount like this:
109 *
110 * bl mcount
111 *
112 * These versions have the limitation that in order for the mcount routine to
113 * be able to determine the function's caller's address, an APCS-style frame
114 * pointer (which is set up with something like the code below) is required.
115 *
116 * mov ip, sp
117 * push {fp, ip, lr, pc}
118 * sub fp, ip, #4
119 *
120 * With EABI, these frame pointers are not available unless -mapcs-frame is
121 * specified, and if building as Thumb-2, not even then.
122 *
123 * Newer GCCs (4.4+) solve this problem by introducing a new version of mcount,
124 * with call sites like:
125 *
126 * push {lr}
127 * bl __gnu_mcount_nc
128 *
129 * With these compilers, frame pointers are not necessary.
130 *
131 * mcount can be thought of as a function called in the middle of a subroutine
132 * call. As such, it needs to be transparent for both the caller and the
133 * callee: the original lr needs to be restored when leaving mcount, and no
134 * registers should be clobbered. (In the __gnu_mcount_nc implementation, we
135 * clobber the ip register. This is OK because the ARM calling convention
136 * allows it to be clobbered in subroutines and doesn't use it to hold
137 * parameters.)
Rabin Vincent3b6c2232010-08-10 19:43:28 +0100138 *
139 * When using dynamic ftrace, we patch out the mcount call by a "mov r0, r0"
140 * for the mcount case, and a "pop {lr}" for the __gnu_mcount_nc case (see
141 * arch/arm/kernel/ftrace.c).
Rabin Vincent686ff222010-08-03 17:09:40 +0100142 */
Rabin Vincent09bfafa2010-08-10 19:32:37 +0100143
144#ifndef CONFIG_OLD_MCOUNT
145#if (__GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 4))
146#error Ftrace requires CONFIG_FRAME_POINTER=y with GCC older than 4.4.0.
147#endif
148#endif
149
Abhishek Sagar014c2572008-05-31 14:23:50 +0530150#ifdef CONFIG_DYNAMIC_FTRACE
Rabin Vincent3b6c2232010-08-10 19:43:28 +0100151ENTRY(__gnu_mcount_nc)
152 mov ip, lr
153 ldmia sp!, {lr}
154 mov pc, ip
155ENDPROC(__gnu_mcount_nc)
156
157ENTRY(ftrace_caller)
Rabin Vincent28e192d2010-08-03 17:08:09 +0100158 stmdb sp!, {r0-r3, lr}
159 mov r0, lr
160 sub r0, r0, #MCOUNT_INSN_SIZE
Rabin Vincent3b6c2232010-08-10 19:43:28 +0100161 ldr r1, [sp, #20]
Abhishek Sagar014c2572008-05-31 14:23:50 +0530162
Rabin Vincent3b6c2232010-08-10 19:43:28 +0100163 .global ftrace_call
164ftrace_call:
Rabin Vincent28e192d2010-08-03 17:08:09 +0100165 bl ftrace_stub
Rabin Vincent3b6c2232010-08-10 19:43:28 +0100166 ldmia sp!, {r0-r3, ip, lr}
167 mov pc, ip
168ENDPROC(ftrace_caller)
Abhishek Sagar014c2572008-05-31 14:23:50 +0530169
Rabin Vincent3b6c2232010-08-10 19:43:28 +0100170#ifdef CONFIG_OLD_MCOUNT
171ENTRY(mcount)
172 stmdb sp!, {lr}
173 ldr lr, [fp, #-4]
174 ldmia sp!, {pc}
Rabin Vincent72fa62f2010-08-10 19:33:52 +0100175ENDPROC(mcount)
Abhishek Sagar014c2572008-05-31 14:23:50 +0530176
Rabin Vincent3b6c2232010-08-10 19:43:28 +0100177ENTRY(ftrace_caller_old)
Rabin Vincent28e192d2010-08-03 17:08:09 +0100178 stmdb sp!, {r0-r3, lr}
179 ldr r1, [fp, #-4]
180 mov r0, lr
181 sub r0, r0, #MCOUNT_INSN_SIZE
Abhishek Sagar014c2572008-05-31 14:23:50 +0530182
Rabin Vincent3b6c2232010-08-10 19:43:28 +0100183 .globl ftrace_call_old
184ftrace_call_old:
Rabin Vincent28e192d2010-08-03 17:08:09 +0100185 bl ftrace_stub
186 ldr lr, [fp, #-4] @ restore lr
187 ldmia sp!, {r0-r3, pc}
Rabin Vincent3b6c2232010-08-10 19:43:28 +0100188ENDPROC(ftrace_caller_old)
189#endif
Abhishek Sagar014c2572008-05-31 14:23:50 +0530190
191#else
192
Uwe Kleine-König181f8172009-08-13 20:38:16 +0200193ENTRY(__gnu_mcount_nc)
Rabin Vincent28e192d2010-08-03 17:08:09 +0100194 stmdb sp!, {r0-r3, lr}
195 ldr r0, =ftrace_trace_function
196 ldr r2, [r0]
Rabin Vincenta3ba87a2010-08-10 19:37:21 +0100197 adr r0, .Lftrace_stub
Rabin Vincent28e192d2010-08-03 17:08:09 +0100198 cmp r0, r2
199 bne gnu_trace
200 ldmia sp!, {r0-r3, ip, lr}
201 mov pc, ip
Uwe Kleine-König181f8172009-08-13 20:38:16 +0200202
203gnu_trace:
Rabin Vincent28e192d2010-08-03 17:08:09 +0100204 ldr r1, [sp, #20] @ lr of instrumented routine
205 mov r0, lr
206 sub r0, r0, #MCOUNT_INSN_SIZE
Rabin Vincenta3ba87a2010-08-10 19:37:21 +0100207 adr lr, BSYM(1f)
Rabin Vincent28e192d2010-08-03 17:08:09 +0100208 mov pc, r2
Rabin Vincenta3ba87a2010-08-10 19:37:21 +01002091:
Rabin Vincent28e192d2010-08-03 17:08:09 +0100210 ldmia sp!, {r0-r3, ip, lr}
211 mov pc, ip
Rabin Vincent72fa62f2010-08-10 19:33:52 +0100212ENDPROC(__gnu_mcount_nc)
Uwe Kleine-König181f8172009-08-13 20:38:16 +0200213
Rabin Vincent09bfafa2010-08-10 19:32:37 +0100214#ifdef CONFIG_OLD_MCOUNT
215/*
216 * This is under an ifdef in order to force link-time errors for people trying
217 * to build with !FRAME_POINTER with a GCC which doesn't use the new-style
218 * mcount.
219 */
Abhishek Sagar014c2572008-05-31 14:23:50 +0530220ENTRY(mcount)
Rabin Vincent28e192d2010-08-03 17:08:09 +0100221 stmdb sp!, {r0-r3, lr}
222 ldr r0, =ftrace_trace_function
223 ldr r2, [r0]
224 adr r0, ftrace_stub
225 cmp r0, r2
226 bne trace
227 ldr lr, [fp, #-4] @ restore lr
228 ldmia sp!, {r0-r3, pc}
Abhishek Sagar014c2572008-05-31 14:23:50 +0530229
230trace:
Rabin Vincent28e192d2010-08-03 17:08:09 +0100231 ldr r1, [fp, #-4] @ lr of instrumented routine
232 mov r0, lr
233 sub r0, r0, #MCOUNT_INSN_SIZE
234 mov lr, pc
235 mov pc, r2
236 ldr lr, [fp, #-4] @ restore lr
237 ldmia sp!, {r0-r3, pc}
Rabin Vincent72fa62f2010-08-10 19:33:52 +0100238ENDPROC(mcount)
Rabin Vincent09bfafa2010-08-10 19:32:37 +0100239#endif
Abhishek Sagar014c2572008-05-31 14:23:50 +0530240
241#endif /* CONFIG_DYNAMIC_FTRACE */
242
Rabin Vincent72fa62f2010-08-10 19:33:52 +0100243ENTRY(ftrace_stub)
Rabin Vincenta3ba87a2010-08-10 19:37:21 +0100244.Lftrace_stub:
Rabin Vincent28e192d2010-08-03 17:08:09 +0100245 mov pc, lr
Rabin Vincent72fa62f2010-08-10 19:33:52 +0100246ENDPROC(ftrace_stub)
Abhishek Sagar014c2572008-05-31 14:23:50 +0530247
Steven Rostedt606576c2008-10-06 19:06:12 -0400248#endif /* CONFIG_FUNCTION_TRACER */
Abhishek Sagar014c2572008-05-31 14:23:50 +0530249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250/*=============================================================================
251 * SWI handler
252 *-----------------------------------------------------------------------------
253 */
254
255 /* If we're optimising for StrongARM the resulting code won't
256 run on an ARM7 and we can save a couple of instructions.
257 --pb */
258#ifdef CONFIG_CPU_ARM710
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000259#define A710(code...) code
260.Larm710bug:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 ldmia sp, {r0 - lr}^ @ Get calling r0 - lr
262 mov r0, r0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 add sp, sp, #S_FRAME_SIZE
Nicolas Pitre60ac1332005-10-12 19:51:24 +0100264 subs pc, lr, #4
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265#else
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000266#define A710(code...)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267#endif
268
269 .align 5
270ENTRY(vector_swi)
Russell Kingf4dc9a42005-04-26 15:20:34 +0100271 sub sp, sp, #S_FRAME_SIZE
272 stmia sp, {r0 - r12} @ Calling r0 - r12
Catalin Marinasb86040a2009-07-24 12:32:54 +0100273 ARM( add r8, sp, #S_PC )
274 ARM( stmdb r8, {sp, lr}^ ) @ Calling sp, lr
275 THUMB( mov r8, sp )
276 THUMB( store_user_sp_lr r8, r10, S_SP ) @ calling sp, lr
Russell Kingf4dc9a42005-04-26 15:20:34 +0100277 mrs r8, spsr @ called from non-FIQ mode, so ok.
278 str lr, [sp, #S_PC] @ Save calling PC
279 str r8, [sp, #S_PSR] @ Save CPSR
280 str r0, [sp, #S_OLD_R0] @ Save OLD_R0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 zero_fp
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100282
283 /*
284 * Get the system call number.
285 */
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000286
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000287#if defined(CONFIG_OABI_COMPAT)
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000288
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000289 /*
290 * If we have CONFIG_OABI_COMPAT then we need to look at the swi
291 * value to determine if it is an EABI or an old ABI call.
292 */
293#ifdef CONFIG_ARM_THUMB
294 tst r8, #PSR_T_BIT
295 movne r10, #0 @ no thumb OABI emulation
296 ldreq r10, [lr, #-4] @ get SWI instruction
297#else
298 ldr r10, [lr, #-4] @ get SWI instruction
299 A710( and ip, r10, #0x0f000000 @ check for SWI )
300 A710( teq ip, #0x0f000000 )
301 A710( bne .Larm710bug )
302#endif
Catalin Marinas26584852009-05-30 14:00:18 +0100303#ifdef CONFIG_CPU_ENDIAN_BE8
304 rev r10, r10 @ little endian instruction
305#endif
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000306
307#elif defined(CONFIG_AEABI)
308
309 /*
310 * Pure EABI user space always put syscall number into scno (r7).
311 */
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000312 A710( ldr ip, [lr, #-4] @ get SWI instruction )
313 A710( and ip, ip, #0x0f000000 @ check for SWI )
314 A710( teq ip, #0x0f000000 )
315 A710( bne .Larm710bug )
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000316
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000317#elif defined(CONFIG_ARM_THUMB)
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000318
319 /* Legacy ABI only, possibly thumb mode. */
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100320 tst r8, #PSR_T_BIT @ this is SPSR from save_user_regs
321 addne scno, r7, #__NR_SYSCALL_BASE @ put OS number in
322 ldreq scno, [lr, #-4]
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000323
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100324#else
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000325
326 /* Legacy ABI only. */
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100327 ldr scno, [lr, #-4] @ get SWI instruction
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000328 A710( and ip, scno, #0x0f000000 @ check for SWI )
329 A710( teq ip, #0x0f000000 )
330 A710( bne .Larm710bug )
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000331
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100332#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
334#ifdef CONFIG_ALIGNMENT_TRAP
335 ldr ip, __cr_alignment
336 ldr ip, [ip]
337 mcr p15, 0, ip, c1, c0 @ update control register
338#endif
Russell King1ec42c02005-04-26 15:18:26 +0100339 enable_irq
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 get_thread_info tsk
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000342 adr tbl, sys_call_table @ load syscall table pointer
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000343
344#if defined(CONFIG_OABI_COMPAT)
345 /*
346 * If the swi argument is zero, this is an EABI call and we do nothing.
347 *
348 * If this is an old ABI call, get the syscall number into scno and
349 * get the old ABI syscall table address.
350 */
351 bics r10, r10, #0xff000000
352 eorne scno, r10, #__NR_OABI_SYSCALL_BASE
353 ldrne tbl, =sys_oabi_call_table
354#elif !defined(CONFIG_AEABI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 bic scno, scno, #0xff000000 @ mask off SWI op-code
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100356 eor scno, scno, #__NR_SYSCALL_BASE @ check OS number
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000357#endif
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000358
Nicolas Pitre70c70d92010-08-26 15:08:35 -0700359 ldr r10, [tsk, #TI_FLAGS] @ check for syscall tracing
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000360 stmdb sp!, {r4, r5} @ push fifth and sixth args
Nicolas Pitre70c70d92010-08-26 15:08:35 -0700361
362#ifdef CONFIG_SECCOMP
363 tst r10, #_TIF_SECCOMP
364 beq 1f
365 mov r0, scno
366 bl __secure_computing
367 add r0, sp, #S_R0 + S_OFF @ pointer to regs
368 ldmia r0, {r0 - r3} @ have to reload r0 - r3
3691:
370#endif
371
372 tst r10, #_TIF_SYSCALL_TRACE @ are we tracing syscalls?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 bne __sys_trace
374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 cmp scno, #NR_syscalls @ check upper syscall limit
Catalin Marinasb86040a2009-07-24 12:32:54 +0100376 adr lr, BSYM(ret_fast_syscall) @ return address
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 ldrcc pc, [tbl, scno, lsl #2] @ call sys_* routine
378
379 add r1, sp, #S_OFF
3802: mov why, #0 @ no longer a real syscall
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100381 cmp scno, #(__ARM_NR_BASE - __NR_SYSCALL_BASE)
382 eor r0, scno, #__NR_SYSCALL_BASE @ put OS number back
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 bcs arm_syscall
384 b sys_ni_syscall @ not private func
Catalin Marinas93ed3972008-08-28 11:22:32 +0100385ENDPROC(vector_swi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
387 /*
388 * This is the really slow path. We're going to be doing
389 * context switches, and waiting for our parent to respond.
390 */
391__sys_trace:
Nicolas Pitre3f471122006-01-14 19:30:04 +0000392 mov r2, scno
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 add r1, sp, #S_OFF
394 mov r0, #0 @ trace entry [IP = 0]
395 bl syscall_trace
396
Catalin Marinasb86040a2009-07-24 12:32:54 +0100397 adr lr, BSYM(__sys_trace_return) @ return address
Nicolas Pitre3f471122006-01-14 19:30:04 +0000398 mov scno, r0 @ syscall number (possibly new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 add r1, sp, #S_R0 + S_OFF @ pointer to regs
400 cmp scno, #NR_syscalls @ check upper syscall limit
401 ldmccia r1, {r0 - r3} @ have to reload r0 - r3
402 ldrcc pc, [tbl, scno, lsl #2] @ call sys_* routine
403 b 2b
404
405__sys_trace_return:
406 str r0, [sp, #S_R0 + S_OFF]! @ save returned r0
Nicolas Pitre3f471122006-01-14 19:30:04 +0000407 mov r2, scno
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 mov r1, sp
409 mov r0, #1 @ trace exit [IP = 1]
410 bl syscall_trace
411 b ret_slow_syscall
412
413 .align 5
414#ifdef CONFIG_ALIGNMENT_TRAP
415 .type __cr_alignment, #object
416__cr_alignment:
417 .word cr_alignment
418#endif
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000419 .ltorg
420
421/*
422 * This is the syscall table declaration for native ABI syscalls.
423 * With EABI a couple syscalls are obsolete and defined as sys_ni_syscall.
424 */
425#define ABI(native, compat) native
426#ifdef CONFIG_AEABI
427#define OBSOLETE(syscall) sys_ni_syscall
428#else
429#define OBSOLETE(syscall) syscall
430#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
432 .type sys_call_table, #object
433ENTRY(sys_call_table)
434#include "calls.S"
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000435#undef ABI
436#undef OBSOLETE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
438/*============================================================================
439 * Special system call wrappers
440 */
441@ r0 = syscall number
Russell King567bd982005-12-17 15:25:42 +0000442@ r8 = syscall table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443sys_syscall:
Paul Brook52475932006-05-16 14:25:55 +0100444 bic scno, r0, #__NR_OABI_SYSCALL_BASE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 cmp scno, #__NR_syscall - __NR_SYSCALL_BASE
446 cmpne scno, #NR_syscalls @ check range
447 stmloia sp, {r5, r6} @ shuffle args
448 movlo r0, r1
449 movlo r1, r2
450 movlo r2, r3
451 movlo r3, r4
452 ldrlo pc, [tbl, scno, lsl #2]
453 b sys_ni_syscall
Catalin Marinas93ed3972008-08-28 11:22:32 +0100454ENDPROC(sys_syscall)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
456sys_fork_wrapper:
457 add r0, sp, #S_OFF
458 b sys_fork
Catalin Marinas93ed3972008-08-28 11:22:32 +0100459ENDPROC(sys_fork_wrapper)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
461sys_vfork_wrapper:
462 add r0, sp, #S_OFF
463 b sys_vfork
Catalin Marinas93ed3972008-08-28 11:22:32 +0100464ENDPROC(sys_vfork_wrapper)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
466sys_execve_wrapper:
467 add r3, sp, #S_OFF
468 b sys_execve
Catalin Marinas93ed3972008-08-28 11:22:32 +0100469ENDPROC(sys_execve_wrapper)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
471sys_clone_wrapper:
472 add ip, sp, #S_OFF
473 str ip, [sp, #4]
474 b sys_clone
Catalin Marinas93ed3972008-08-28 11:22:32 +0100475ENDPROC(sys_clone_wrapper)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477sys_sigreturn_wrapper:
478 add r0, sp, #S_OFF
Al Viro653d48b2010-09-17 14:34:39 +0100479 mov why, #0 @ prevent syscall restart handling
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 b sys_sigreturn
Catalin Marinas93ed3972008-08-28 11:22:32 +0100481ENDPROC(sys_sigreturn_wrapper)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
483sys_rt_sigreturn_wrapper:
484 add r0, sp, #S_OFF
Al Viro653d48b2010-09-17 14:34:39 +0100485 mov why, #0 @ prevent syscall restart handling
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 b sys_rt_sigreturn
Catalin Marinas93ed3972008-08-28 11:22:32 +0100487ENDPROC(sys_rt_sigreturn_wrapper)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
489sys_sigaltstack_wrapper:
490 ldr r2, [sp, #S_OFF + S_SP]
491 b do_sigaltstack
Catalin Marinas93ed3972008-08-28 11:22:32 +0100492ENDPROC(sys_sigaltstack_wrapper)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
Nicolas Pitre713c4812006-01-14 16:35:03 +0000494sys_statfs64_wrapper:
495 teq r1, #88
496 moveq r1, #84
497 b sys_statfs64
Catalin Marinas93ed3972008-08-28 11:22:32 +0100498ENDPROC(sys_statfs64_wrapper)
Nicolas Pitre713c4812006-01-14 16:35:03 +0000499
500sys_fstatfs64_wrapper:
501 teq r1, #88
502 moveq r1, #84
503 b sys_fstatfs64
Catalin Marinas93ed3972008-08-28 11:22:32 +0100504ENDPROC(sys_fstatfs64_wrapper)
Nicolas Pitre713c4812006-01-14 16:35:03 +0000505
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506/*
507 * Note: off_4k (r5) is always units of 4K. If we can't do the requested
508 * offset, we return EINVAL.
509 */
510sys_mmap2:
511#if PAGE_SHIFT > 12
512 tst r5, #PGOFF_MASK
513 moveq r5, r5, lsr #PAGE_SHIFT - 12
514 streq r5, [sp, #4]
Al Virof8b72562009-11-30 17:37:04 -0500515 beq sys_mmap_pgoff
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 mov r0, #-EINVAL
Russell King7999d8d2006-06-25 11:17:23 +0100517 mov pc, lr
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518#else
519 str r5, [sp, #4]
Al Virof8b72562009-11-30 17:37:04 -0500520 b sys_mmap_pgoff
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521#endif
Catalin Marinas93ed3972008-08-28 11:22:32 +0100522ENDPROC(sys_mmap2)
Nicolas Pitre687ad012006-01-14 16:35:31 +0000523
524#ifdef CONFIG_OABI_COMPAT
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000525
Nicolas Pitre687ad012006-01-14 16:35:31 +0000526/*
527 * These are syscalls with argument register differences
528 */
529
530sys_oabi_pread64:
531 stmia sp, {r3, r4}
532 b sys_pread64
Catalin Marinas93ed3972008-08-28 11:22:32 +0100533ENDPROC(sys_oabi_pread64)
Nicolas Pitre687ad012006-01-14 16:35:31 +0000534
535sys_oabi_pwrite64:
536 stmia sp, {r3, r4}
537 b sys_pwrite64
Catalin Marinas93ed3972008-08-28 11:22:32 +0100538ENDPROC(sys_oabi_pwrite64)
Nicolas Pitre687ad012006-01-14 16:35:31 +0000539
540sys_oabi_truncate64:
541 mov r3, r2
542 mov r2, r1
543 b sys_truncate64
Catalin Marinas93ed3972008-08-28 11:22:32 +0100544ENDPROC(sys_oabi_truncate64)
Nicolas Pitre687ad012006-01-14 16:35:31 +0000545
546sys_oabi_ftruncate64:
547 mov r3, r2
548 mov r2, r1
549 b sys_ftruncate64
Catalin Marinas93ed3972008-08-28 11:22:32 +0100550ENDPROC(sys_oabi_ftruncate64)
Nicolas Pitre687ad012006-01-14 16:35:31 +0000551
552sys_oabi_readahead:
553 str r3, [sp]
554 mov r3, r2
555 mov r2, r1
556 b sys_readahead
Catalin Marinas93ed3972008-08-28 11:22:32 +0100557ENDPROC(sys_oabi_readahead)
Nicolas Pitre687ad012006-01-14 16:35:31 +0000558
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000559/*
560 * Let's declare a second syscall table for old ABI binaries
561 * using the compatibility syscall entries.
562 */
563#define ABI(native, compat) compat
564#define OBSOLETE(syscall) syscall
565
566 .type sys_oabi_call_table, #object
567ENTRY(sys_oabi_call_table)
568#include "calls.S"
569#undef ABI
570#undef OBSOLETE
571
Nicolas Pitre687ad012006-01-14 16:35:31 +0000572#endif
573