blob: 978eac57e04a783f8901a16986f6d88f96f125ba [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>
Catalin Marinasc4c57162009-02-16 11:42:09 +010013#include <asm/unwind.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
Rob Herring13a50452012-02-07 09:28:22 -060015#ifdef CONFIG_NEED_RET_TO_USER
16#include <mach/entry-macro.S>
17#else
18 .macro arch_ret_to_user, tmp1, tmp2
19 .endm
20#endif
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include "entry-header.S"
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
25 .align 5
26/*
27 * This is the fast syscall return path. We do as little as
28 * possible here, and this includes saving r0 back into the SVC
29 * stack.
30 */
31ret_fast_syscall:
Catalin Marinasc4c57162009-02-16 11:42:09 +010032 UNWIND(.fnstart )
33 UNWIND(.cantunwind )
Russell King1ec42c02005-04-26 15:18:26 +010034 disable_irq @ disable interrupts
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 ldr r1, [tsk, #TI_FLAGS]
36 tst r1, #_TIF_WORK_MASK
37 bne fast_work_pending
Todd Android Poynord13e5ed2010-12-23 01:52:44 +010038#if defined(CONFIG_IRQSOFF_TRACER)
39 asm_trace_hardirqs_on
40#endif
Russell Kingf4dc9a42005-04-26 15:20:34 +010041
Dan Williamsf80dff92007-02-16 22:16:32 +010042 /* perform architecture specific actions before user return */
43 arch_ret_to_user r1, lr
44
Catalin Marinasb86040a2009-07-24 12:32:54 +010045 restore_user_regs fast = 1, offset = S_OFF
Catalin Marinasc4c57162009-02-16 11:42:09 +010046 UNWIND(.fnend )
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48/*
49 * Ok, we need to do extra processing, enter the slow path.
50 */
51fast_work_pending:
52 str r0, [sp, #S_R0+S_OFF]! @ returned r0
53work_pending:
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 mov r0, sp @ 'regs'
55 mov r2, why @ 'syscall'
Al Viro0a267fa2012-07-19 17:47:55 +010056 bl do_work_pending
Al Viro66285212012-07-19 17:48:50 +010057 cmp r0, #0
Al Viro81783782012-07-19 17:48:21 +010058 beq no_work_pending
Al Viro66285212012-07-19 17:48:50 +010059 movlt scno, #(__NR_restart_syscall - __NR_SYSCALL_BASE)
Al Viro81783782012-07-19 17:48:21 +010060 ldmia sp, {r0 - r6} @ have to reload r0 - r6
61 b local_restart @ ... and off we go
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063/*
64 * "slow" syscall return path. "why" tells us if this was a real syscall.
65 */
66ENTRY(ret_to_user)
67ret_slow_syscall:
Russell King1ec42c02005-04-26 15:18:26 +010068 disable_irq @ disable interrupts
Ming Lei9fc25522011-06-05 02:24:58 +010069ENTRY(ret_to_user_from_irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 ldr r1, [tsk, #TI_FLAGS]
71 tst r1, #_TIF_WORK_MASK
72 bne work_pending
73no_work_pending:
Todd Android Poynord13e5ed2010-12-23 01:52:44 +010074#if defined(CONFIG_IRQSOFF_TRACER)
75 asm_trace_hardirqs_on
76#endif
Dan Williamsf80dff92007-02-16 22:16:32 +010077 /* perform architecture specific actions before user return */
78 arch_ret_to_user r1, lr
79
Catalin Marinasb86040a2009-07-24 12:32:54 +010080 restore_user_regs fast = 0, offset = 0
Ming Lei9fc25522011-06-05 02:24:58 +010081ENDPROC(ret_to_user_from_irq)
Catalin Marinas93ed3972008-08-28 11:22:32 +010082ENDPROC(ret_to_user)
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
84/*
85 * This is how we return from a fork.
86 */
87ENTRY(ret_from_fork)
88 bl schedule_tail
89 get_thread_info tsk
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 mov why, #1
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 b ret_slow_syscall
Catalin Marinas93ed3972008-08-28 11:22:32 +010092ENDPROC(ret_from_fork)
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Al Virofa1b4f92006-01-19 12:57:01 +000094 .equ NR_syscalls,0
95#define CALL(x) .equ NR_syscalls,NR_syscalls+1
Linus Torvalds1da177e2005-04-16 15:20:36 -070096#include "calls.S"
Al Virofa1b4f92006-01-19 12:57:01 +000097#undef CALL
98#define CALL(x) .long x
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Steven Rostedt606576c2008-10-06 19:06:12 -0400100#ifdef CONFIG_FUNCTION_TRACER
Rabin Vincent686ff222010-08-03 17:09:40 +0100101/*
102 * When compiling with -pg, gcc inserts a call to the mcount routine at the
103 * start of every function. In mcount, apart from the function's address (in
104 * lr), we need to get hold of the function's caller's address.
105 *
106 * Older GCCs (pre-4.4) inserted a call to a routine called mcount like this:
107 *
108 * bl mcount
109 *
110 * These versions have the limitation that in order for the mcount routine to
111 * be able to determine the function's caller's address, an APCS-style frame
112 * pointer (which is set up with something like the code below) is required.
113 *
114 * mov ip, sp
115 * push {fp, ip, lr, pc}
116 * sub fp, ip, #4
117 *
118 * With EABI, these frame pointers are not available unless -mapcs-frame is
119 * specified, and if building as Thumb-2, not even then.
120 *
121 * Newer GCCs (4.4+) solve this problem by introducing a new version of mcount,
122 * with call sites like:
123 *
124 * push {lr}
125 * bl __gnu_mcount_nc
126 *
127 * With these compilers, frame pointers are not necessary.
128 *
129 * mcount can be thought of as a function called in the middle of a subroutine
130 * call. As such, it needs to be transparent for both the caller and the
131 * callee: the original lr needs to be restored when leaving mcount, and no
132 * registers should be clobbered. (In the __gnu_mcount_nc implementation, we
133 * clobber the ip register. This is OK because the ARM calling convention
134 * allows it to be clobbered in subroutines and doesn't use it to hold
135 * parameters.)
Rabin Vincent3b6c2232010-08-10 19:43:28 +0100136 *
137 * When using dynamic ftrace, we patch out the mcount call by a "mov r0, r0"
138 * for the mcount case, and a "pop {lr}" for the __gnu_mcount_nc case (see
139 * arch/arm/kernel/ftrace.c).
Rabin Vincent686ff222010-08-03 17:09:40 +0100140 */
Rabin Vincent09bfafa2010-08-10 19:32:37 +0100141
142#ifndef CONFIG_OLD_MCOUNT
143#if (__GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 4))
144#error Ftrace requires CONFIG_FRAME_POINTER=y with GCC older than 4.4.0.
145#endif
146#endif
147
Rabin Vincentd68133b2012-01-24 16:52:52 +0100148.macro mcount_adjust_addr rd, rn
149 bic \rd, \rn, #1 @ clear the Thumb bit if present
150 sub \rd, \rd, #MCOUNT_INSN_SIZE
151.endm
152
Rabin Vincentd3b9dc92010-10-07 17:39:47 +0530153.macro __mcount suffix
154 mcount_enter
Rabin Vincent28e192d2010-08-03 17:08:09 +0100155 ldr r0, =ftrace_trace_function
156 ldr r2, [r0]
Rabin Vincenta3ba87a2010-08-10 19:37:21 +0100157 adr r0, .Lftrace_stub
Rabin Vincent28e192d2010-08-03 17:08:09 +0100158 cmp r0, r2
Rabin Vincentd3b9dc92010-10-07 17:39:47 +0530159 bne 1f
Uwe Kleine-König181f8172009-08-13 20:38:16 +0200160
Tim Bird376cfa82010-10-09 22:24:38 +0530161#ifdef CONFIG_FUNCTION_GRAPH_TRACER
162 ldr r1, =ftrace_graph_return
163 ldr r2, [r1]
164 cmp r0, r2
165 bne ftrace_graph_caller\suffix
166
167 ldr r1, =ftrace_graph_entry
168 ldr r2, [r1]
169 ldr r0, =ftrace_graph_entry_stub
170 cmp r0, r2
171 bne ftrace_graph_caller\suffix
172#endif
173
Rabin Vincentd3b9dc92010-10-07 17:39:47 +0530174 mcount_exit
Uwe Kleine-König181f8172009-08-13 20:38:16 +0200175
Rabin Vincentd3b9dc92010-10-07 17:39:47 +05301761: mcount_get_lr r1 @ lr of instrumented func
Rabin Vincentd68133b2012-01-24 16:52:52 +0100177 mcount_adjust_addr r0, lr @ instrumented function
Rabin Vincentd3b9dc92010-10-07 17:39:47 +0530178 adr lr, BSYM(2f)
Rabin Vincent28e192d2010-08-03 17:08:09 +0100179 mov pc, r2
Rabin Vincentd3b9dc92010-10-07 17:39:47 +05301802: mcount_exit
181.endm
182
183.macro __ftrace_caller suffix
184 mcount_enter
185
186 mcount_get_lr r1 @ lr of instrumented func
Rabin Vincentd68133b2012-01-24 16:52:52 +0100187 mcount_adjust_addr r0, lr @ instrumented function
Rabin Vincentd3b9dc92010-10-07 17:39:47 +0530188
189 .globl ftrace_call\suffix
190ftrace_call\suffix:
191 bl ftrace_stub
192
Rabin Vincentdd686eb2010-11-06 23:03:21 +0530193#ifdef CONFIG_FUNCTION_GRAPH_TRACER
194 .globl ftrace_graph_call\suffix
195ftrace_graph_call\suffix:
196 mov r0, r0
197#endif
198
Rabin Vincentd3b9dc92010-10-07 17:39:47 +0530199 mcount_exit
200.endm
Uwe Kleine-König181f8172009-08-13 20:38:16 +0200201
Tim Bird376cfa82010-10-09 22:24:38 +0530202.macro __ftrace_graph_caller
203 sub r0, fp, #4 @ &lr of instrumented routine (&parent)
Rabin Vincentdd686eb2010-11-06 23:03:21 +0530204#ifdef CONFIG_DYNAMIC_FTRACE
205 @ called from __ftrace_caller, saved in mcount_enter
206 ldr r1, [sp, #16] @ instrumented routine (func)
Rabin Vincentd68133b2012-01-24 16:52:52 +0100207 mcount_adjust_addr r1, r1
Rabin Vincentdd686eb2010-11-06 23:03:21 +0530208#else
209 @ called from __mcount, untouched in lr
Rabin Vincentd68133b2012-01-24 16:52:52 +0100210 mcount_adjust_addr r1, lr @ instrumented routine (func)
Rabin Vincentdd686eb2010-11-06 23:03:21 +0530211#endif
Tim Bird376cfa82010-10-09 22:24:38 +0530212 mov r2, fp @ frame pointer
213 bl prepare_ftrace_return
214 mcount_exit
215.endm
Abhishek Sagar014c2572008-05-31 14:23:50 +0530216
Rabin Vincent09bfafa2010-08-10 19:32:37 +0100217#ifdef CONFIG_OLD_MCOUNT
218/*
Rabin Vincentd3b9dc92010-10-07 17:39:47 +0530219 * mcount
Rabin Vincent09bfafa2010-08-10 19:32:37 +0100220 */
Abhishek Sagar014c2572008-05-31 14:23:50 +0530221
Rabin Vincentd3b9dc92010-10-07 17:39:47 +0530222.macro mcount_enter
223 stmdb sp!, {r0-r3, lr}
224.endm
225
226.macro mcount_get_lr reg
227 ldr \reg, [fp, #-4]
228.endm
229
230.macro mcount_exit
231 ldr lr, [fp, #-4]
Rabin Vincent28e192d2010-08-03 17:08:09 +0100232 ldmia sp!, {r0-r3, pc}
Rabin Vincentd3b9dc92010-10-07 17:39:47 +0530233.endm
234
235ENTRY(mcount)
236#ifdef CONFIG_DYNAMIC_FTRACE
237 stmdb sp!, {lr}
238 ldr lr, [fp, #-4]
239 ldmia sp!, {pc}
240#else
241 __mcount _old
242#endif
Rabin Vincent72fa62f2010-08-10 19:33:52 +0100243ENDPROC(mcount)
Rabin Vincentd3b9dc92010-10-07 17:39:47 +0530244
245#ifdef CONFIG_DYNAMIC_FTRACE
246ENTRY(ftrace_caller_old)
247 __ftrace_caller _old
248ENDPROC(ftrace_caller_old)
Rabin Vincent09bfafa2010-08-10 19:32:37 +0100249#endif
Abhishek Sagar014c2572008-05-31 14:23:50 +0530250
Tim Bird376cfa82010-10-09 22:24:38 +0530251#ifdef CONFIG_FUNCTION_GRAPH_TRACER
252ENTRY(ftrace_graph_caller_old)
253 __ftrace_graph_caller
254ENDPROC(ftrace_graph_caller_old)
255#endif
256
Rabin Vincentd3b9dc92010-10-07 17:39:47 +0530257.purgem mcount_enter
258.purgem mcount_get_lr
259.purgem mcount_exit
260#endif
261
262/*
263 * __gnu_mcount_nc
264 */
265
266.macro mcount_enter
267 stmdb sp!, {r0-r3, lr}
268.endm
269
270.macro mcount_get_lr reg
271 ldr \reg, [sp, #20]
272.endm
273
274.macro mcount_exit
275 ldmia sp!, {r0-r3, ip, lr}
276 mov pc, ip
277.endm
278
279ENTRY(__gnu_mcount_nc)
280#ifdef CONFIG_DYNAMIC_FTRACE
281 mov ip, lr
282 ldmia sp!, {lr}
283 mov pc, ip
284#else
285 __mcount
286#endif
287ENDPROC(__gnu_mcount_nc)
288
289#ifdef CONFIG_DYNAMIC_FTRACE
290ENTRY(ftrace_caller)
291 __ftrace_caller
292ENDPROC(ftrace_caller)
293#endif
294
Tim Bird376cfa82010-10-09 22:24:38 +0530295#ifdef CONFIG_FUNCTION_GRAPH_TRACER
296ENTRY(ftrace_graph_caller)
297 __ftrace_graph_caller
298ENDPROC(ftrace_graph_caller)
299#endif
300
Rabin Vincentd3b9dc92010-10-07 17:39:47 +0530301.purgem mcount_enter
302.purgem mcount_get_lr
303.purgem mcount_exit
Abhishek Sagar014c2572008-05-31 14:23:50 +0530304
Tim Bird376cfa82010-10-09 22:24:38 +0530305#ifdef CONFIG_FUNCTION_GRAPH_TRACER
306 .globl return_to_handler
307return_to_handler:
308 stmdb sp!, {r0-r3}
309 mov r0, fp @ frame pointer
310 bl ftrace_return_to_handler
311 mov lr, r0 @ r0 has real ret addr
312 ldmia sp!, {r0-r3}
313 mov pc, lr
314#endif
Abhishek Sagar014c2572008-05-31 14:23:50 +0530315
Rabin Vincent72fa62f2010-08-10 19:33:52 +0100316ENTRY(ftrace_stub)
Rabin Vincenta3ba87a2010-08-10 19:37:21 +0100317.Lftrace_stub:
Rabin Vincent28e192d2010-08-03 17:08:09 +0100318 mov pc, lr
Rabin Vincent72fa62f2010-08-10 19:33:52 +0100319ENDPROC(ftrace_stub)
Abhishek Sagar014c2572008-05-31 14:23:50 +0530320
Steven Rostedt606576c2008-10-06 19:06:12 -0400321#endif /* CONFIG_FUNCTION_TRACER */
Abhishek Sagar014c2572008-05-31 14:23:50 +0530322
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323/*=============================================================================
324 * SWI handler
325 *-----------------------------------------------------------------------------
326 */
327
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 .align 5
329ENTRY(vector_swi)
Russell Kingf4dc9a42005-04-26 15:20:34 +0100330 sub sp, sp, #S_FRAME_SIZE
331 stmia sp, {r0 - r12} @ Calling r0 - r12
Catalin Marinasb86040a2009-07-24 12:32:54 +0100332 ARM( add r8, sp, #S_PC )
333 ARM( stmdb r8, {sp, lr}^ ) @ Calling sp, lr
334 THUMB( mov r8, sp )
335 THUMB( store_user_sp_lr r8, r10, S_SP ) @ calling sp, lr
Russell Kingf4dc9a42005-04-26 15:20:34 +0100336 mrs r8, spsr @ called from non-FIQ mode, so ok.
337 str lr, [sp, #S_PC] @ Save calling PC
338 str r8, [sp, #S_PSR] @ Save CPSR
339 str r0, [sp, #S_OLD_R0] @ Save OLD_R0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 zero_fp
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100341
342 /*
343 * Get the system call number.
344 */
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000345
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000346#if defined(CONFIG_OABI_COMPAT)
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000347
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000348 /*
349 * If we have CONFIG_OABI_COMPAT then we need to look at the swi
350 * value to determine if it is an EABI or an old ABI call.
351 */
352#ifdef CONFIG_ARM_THUMB
353 tst r8, #PSR_T_BIT
354 movne r10, #0 @ no thumb OABI emulation
355 ldreq r10, [lr, #-4] @ get SWI instruction
356#else
357 ldr r10, [lr, #-4] @ get SWI instruction
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000358#endif
Catalin Marinas26584852009-05-30 14:00:18 +0100359#ifdef CONFIG_CPU_ENDIAN_BE8
360 rev r10, r10 @ little endian instruction
361#endif
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000362
363#elif defined(CONFIG_AEABI)
364
365 /*
366 * Pure EABI user space always put syscall number into scno (r7).
367 */
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000368#elif defined(CONFIG_ARM_THUMB)
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000369 /* Legacy ABI only, possibly thumb mode. */
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100370 tst r8, #PSR_T_BIT @ this is SPSR from save_user_regs
371 addne scno, r7, #__NR_SYSCALL_BASE @ put OS number in
372 ldreq scno, [lr, #-4]
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000373
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100374#else
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000375 /* Legacy ABI only. */
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100376 ldr scno, [lr, #-4] @ get SWI instruction
377#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
379#ifdef CONFIG_ALIGNMENT_TRAP
380 ldr ip, __cr_alignment
381 ldr ip, [ip]
382 mcr p15, 0, ip, c1, c0 @ update control register
383#endif
Russell King1ec42c02005-04-26 15:18:26 +0100384 enable_irq
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 get_thread_info tsk
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000387 adr tbl, sys_call_table @ load syscall table pointer
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000388
389#if defined(CONFIG_OABI_COMPAT)
390 /*
391 * If the swi argument is zero, this is an EABI call and we do nothing.
392 *
393 * If this is an old ABI call, get the syscall number into scno and
394 * get the old ABI syscall table address.
395 */
396 bics r10, r10, #0xff000000
397 eorne scno, r10, #__NR_OABI_SYSCALL_BASE
398 ldrne tbl, =sys_oabi_call_table
399#elif !defined(CONFIG_AEABI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 bic scno, scno, #0xff000000 @ mask off SWI op-code
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100401 eor scno, scno, #__NR_SYSCALL_BASE @ check OS number
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000402#endif
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000403
Al Viro81783782012-07-19 17:48:21 +0100404local_restart:
Nicolas Pitre70c70d92010-08-26 15:08:35 -0700405 ldr r10, [tsk, #TI_FLAGS] @ check for syscall tracing
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000406 stmdb sp!, {r4, r5} @ push fifth and sixth args
Nicolas Pitre70c70d92010-08-26 15:08:35 -0700407
408#ifdef CONFIG_SECCOMP
409 tst r10, #_TIF_SECCOMP
410 beq 1f
411 mov r0, scno
412 bl __secure_computing
413 add r0, sp, #S_R0 + S_OFF @ pointer to regs
414 ldmia r0, {r0 - r3} @ have to reload r0 - r3
4151:
416#endif
417
Nathaniel Husted29ef73b2012-01-03 14:23:09 -0500418 tst r10, #_TIF_SYSCALL_WORK @ are we tracing syscalls?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 bne __sys_trace
420
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 cmp scno, #NR_syscalls @ check upper syscall limit
Catalin Marinasb86040a2009-07-24 12:32:54 +0100422 adr lr, BSYM(ret_fast_syscall) @ return address
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 ldrcc pc, [tbl, scno, lsl #2] @ call sys_* routine
424
425 add r1, sp, #S_OFF
4262: mov why, #0 @ no longer a real syscall
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100427 cmp scno, #(__ARM_NR_BASE - __NR_SYSCALL_BASE)
428 eor r0, scno, #__NR_SYSCALL_BASE @ put OS number back
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 bcs arm_syscall
430 b sys_ni_syscall @ not private func
Catalin Marinas93ed3972008-08-28 11:22:32 +0100431ENDPROC(vector_swi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
433 /*
434 * This is the really slow path. We're going to be doing
435 * context switches, and waiting for our parent to respond.
436 */
437__sys_trace:
Will Deaconad722542012-07-06 15:50:14 +0100438 mov r1, scno
439 add r0, sp, #S_OFF
440 bl syscall_trace_enter
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
Catalin Marinasb86040a2009-07-24 12:32:54 +0100442 adr lr, BSYM(__sys_trace_return) @ return address
Nicolas Pitre3f471122006-01-14 19:30:04 +0000443 mov scno, r0 @ syscall number (possibly new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 add r1, sp, #S_R0 + S_OFF @ pointer to regs
445 cmp scno, #NR_syscalls @ check upper syscall limit
Will Deaconc7aa00d2012-07-19 17:49:22 +0100446 ldmccia r1, {r0 - r6} @ have to reload r0 - r6
447 stmccia sp, {r4, r5} @ and update the stack args
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 ldrcc pc, [tbl, scno, lsl #2] @ call sys_* routine
449 b 2b
450
451__sys_trace_return:
452 str r0, [sp, #S_R0 + S_OFF]! @ save returned r0
Will Deaconad722542012-07-06 15:50:14 +0100453 mov r1, scno
454 mov r0, sp
455 bl syscall_trace_exit
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 b ret_slow_syscall
457
458 .align 5
459#ifdef CONFIG_ALIGNMENT_TRAP
460 .type __cr_alignment, #object
461__cr_alignment:
462 .word cr_alignment
463#endif
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000464 .ltorg
465
466/*
467 * This is the syscall table declaration for native ABI syscalls.
468 * With EABI a couple syscalls are obsolete and defined as sys_ni_syscall.
469 */
470#define ABI(native, compat) native
471#ifdef CONFIG_AEABI
472#define OBSOLETE(syscall) sys_ni_syscall
473#else
474#define OBSOLETE(syscall) syscall
475#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
477 .type sys_call_table, #object
478ENTRY(sys_call_table)
479#include "calls.S"
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000480#undef ABI
481#undef OBSOLETE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
483/*============================================================================
484 * Special system call wrappers
485 */
486@ r0 = syscall number
Russell King567bd982005-12-17 15:25:42 +0000487@ r8 = syscall table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488sys_syscall:
Paul Brook52475932006-05-16 14:25:55 +0100489 bic scno, r0, #__NR_OABI_SYSCALL_BASE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 cmp scno, #__NR_syscall - __NR_SYSCALL_BASE
491 cmpne scno, #NR_syscalls @ check range
492 stmloia sp, {r5, r6} @ shuffle args
493 movlo r0, r1
494 movlo r1, r2
495 movlo r2, r3
496 movlo r3, r4
497 ldrlo pc, [tbl, scno, lsl #2]
498 b sys_ni_syscall
Catalin Marinas93ed3972008-08-28 11:22:32 +0100499ENDPROC(sys_syscall)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
501sys_fork_wrapper:
502 add r0, sp, #S_OFF
503 b sys_fork
Catalin Marinas93ed3972008-08-28 11:22:32 +0100504ENDPROC(sys_fork_wrapper)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
506sys_vfork_wrapper:
507 add r0, sp, #S_OFF
508 b sys_vfork
Catalin Marinas93ed3972008-08-28 11:22:32 +0100509ENDPROC(sys_vfork_wrapper)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
511sys_execve_wrapper:
512 add r3, sp, #S_OFF
513 b sys_execve
Catalin Marinas93ed3972008-08-28 11:22:32 +0100514ENDPROC(sys_execve_wrapper)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
516sys_clone_wrapper:
517 add ip, sp, #S_OFF
518 str ip, [sp, #4]
519 b sys_clone
Catalin Marinas93ed3972008-08-28 11:22:32 +0100520ENDPROC(sys_clone_wrapper)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522sys_sigreturn_wrapper:
523 add r0, sp, #S_OFF
Al Viro653d48b2010-09-17 14:34:39 +0100524 mov why, #0 @ prevent syscall restart handling
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 b sys_sigreturn
Catalin Marinas93ed3972008-08-28 11:22:32 +0100526ENDPROC(sys_sigreturn_wrapper)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
528sys_rt_sigreturn_wrapper:
529 add r0, sp, #S_OFF
Al Viro653d48b2010-09-17 14:34:39 +0100530 mov why, #0 @ prevent syscall restart handling
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 b sys_rt_sigreturn
Catalin Marinas93ed3972008-08-28 11:22:32 +0100532ENDPROC(sys_rt_sigreturn_wrapper)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
534sys_sigaltstack_wrapper:
535 ldr r2, [sp, #S_OFF + S_SP]
536 b do_sigaltstack
Catalin Marinas93ed3972008-08-28 11:22:32 +0100537ENDPROC(sys_sigaltstack_wrapper)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Nicolas Pitre713c4812006-01-14 16:35:03 +0000539sys_statfs64_wrapper:
540 teq r1, #88
541 moveq r1, #84
542 b sys_statfs64
Catalin Marinas93ed3972008-08-28 11:22:32 +0100543ENDPROC(sys_statfs64_wrapper)
Nicolas Pitre713c4812006-01-14 16:35:03 +0000544
545sys_fstatfs64_wrapper:
546 teq r1, #88
547 moveq r1, #84
548 b sys_fstatfs64
Catalin Marinas93ed3972008-08-28 11:22:32 +0100549ENDPROC(sys_fstatfs64_wrapper)
Nicolas Pitre713c4812006-01-14 16:35:03 +0000550
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551/*
552 * Note: off_4k (r5) is always units of 4K. If we can't do the requested
553 * offset, we return EINVAL.
554 */
555sys_mmap2:
556#if PAGE_SHIFT > 12
557 tst r5, #PGOFF_MASK
558 moveq r5, r5, lsr #PAGE_SHIFT - 12
559 streq r5, [sp, #4]
Al Virof8b72562009-11-30 17:37:04 -0500560 beq sys_mmap_pgoff
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 mov r0, #-EINVAL
Russell King7999d8d2006-06-25 11:17:23 +0100562 mov pc, lr
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563#else
564 str r5, [sp, #4]
Al Virof8b72562009-11-30 17:37:04 -0500565 b sys_mmap_pgoff
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566#endif
Catalin Marinas93ed3972008-08-28 11:22:32 +0100567ENDPROC(sys_mmap2)
Nicolas Pitre687ad012006-01-14 16:35:31 +0000568
569#ifdef CONFIG_OABI_COMPAT
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000570
Nicolas Pitre687ad012006-01-14 16:35:31 +0000571/*
572 * These are syscalls with argument register differences
573 */
574
575sys_oabi_pread64:
576 stmia sp, {r3, r4}
577 b sys_pread64
Catalin Marinas93ed3972008-08-28 11:22:32 +0100578ENDPROC(sys_oabi_pread64)
Nicolas Pitre687ad012006-01-14 16:35:31 +0000579
580sys_oabi_pwrite64:
581 stmia sp, {r3, r4}
582 b sys_pwrite64
Catalin Marinas93ed3972008-08-28 11:22:32 +0100583ENDPROC(sys_oabi_pwrite64)
Nicolas Pitre687ad012006-01-14 16:35:31 +0000584
585sys_oabi_truncate64:
586 mov r3, r2
587 mov r2, r1
588 b sys_truncate64
Catalin Marinas93ed3972008-08-28 11:22:32 +0100589ENDPROC(sys_oabi_truncate64)
Nicolas Pitre687ad012006-01-14 16:35:31 +0000590
591sys_oabi_ftruncate64:
592 mov r3, r2
593 mov r2, r1
594 b sys_ftruncate64
Catalin Marinas93ed3972008-08-28 11:22:32 +0100595ENDPROC(sys_oabi_ftruncate64)
Nicolas Pitre687ad012006-01-14 16:35:31 +0000596
597sys_oabi_readahead:
598 str r3, [sp]
599 mov r3, r2
600 mov r2, r1
601 b sys_readahead
Catalin Marinas93ed3972008-08-28 11:22:32 +0100602ENDPROC(sys_oabi_readahead)
Nicolas Pitre687ad012006-01-14 16:35:31 +0000603
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000604/*
605 * Let's declare a second syscall table for old ABI binaries
606 * using the compatibility syscall entries.
607 */
608#define ABI(native, compat) compat
609#define OBSOLETE(syscall) syscall
610
611 .type sys_oabi_call_table, #object
612ENTRY(sys_oabi_call_table)
613#include "calls.S"
614#undef ABI
615#undef OBSOLETE
616
Nicolas Pitre687ad012006-01-14 16:35:31 +0000617#endif
618