blob: 6f37ddfadbfad388253d3ff181ce788c094f94b1 [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 asm_trace_hardirqs_on
Russell Kingf4dc9a42005-04-26 15:20:34 +010039
Dan Williamsf80dff92007-02-16 22:16:32 +010040 /* perform architecture specific actions before user return */
41 arch_ret_to_user r1, lr
42
Catalin Marinasb86040a2009-07-24 12:32:54 +010043 restore_user_regs fast = 1, offset = S_OFF
Catalin Marinasc4c57162009-02-16 11:42:09 +010044 UNWIND(.fnend )
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46/*
47 * Ok, we need to do extra processing, enter the slow path.
48 */
49fast_work_pending:
50 str r0, [sp, #S_R0+S_OFF]! @ returned r0
51work_pending:
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 mov r0, sp @ 'regs'
53 mov r2, why @ 'syscall'
Al Viro0a267fa2012-07-19 17:47:55 +010054 bl do_work_pending
Al Viro66285212012-07-19 17:48:50 +010055 cmp r0, #0
Al Viro81783782012-07-19 17:48:21 +010056 beq no_work_pending
Al Viro66285212012-07-19 17:48:50 +010057 movlt scno, #(__NR_restart_syscall - __NR_SYSCALL_BASE)
Al Viro81783782012-07-19 17:48:21 +010058 ldmia sp, {r0 - r6} @ have to reload r0 - r6
59 b local_restart @ ... and off we go
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061/*
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
Ming Lei9fc25522011-06-05 02:24:58 +010067ENTRY(ret_to_user_from_irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 ldr r1, [tsk, #TI_FLAGS]
69 tst r1, #_TIF_WORK_MASK
70 bne work_pending
71no_work_pending:
Todd Android Poynord13e5ed2010-12-23 01:52:44 +010072 asm_trace_hardirqs_on
Russell King651e9492013-03-28 11:44:25 +000073
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
Ming Lei9fc25522011-06-05 02:24:58 +010078ENDPROC(ret_to_user_from_irq)
Catalin Marinas93ed3972008-08-28 11:22:32 +010079ENDPROC(ret_to_user)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81/*
82 * This is how we return from a fork.
83 */
84ENTRY(ret_from_fork)
85 bl schedule_tail
Al Viro9fff2fa2012-10-10 22:23:29 -040086 cmp r5, #0
87 movne r0, r4
Russell King68687c82012-10-15 00:16:49 +010088 adrne lr, BSYM(1f)
Al Viro9fff2fa2012-10-10 22:23:29 -040089 movne pc, r5
Russell King68687c82012-10-15 00:16:49 +0100901: get_thread_info tsk
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"
Wade Farnsworth1f66e062012-09-07 18:18:25 +010097
98/*
99 * Ensure that the system call table is equal to __NR_syscalls,
100 * which is the value the rest of the system sees
101 */
102.ifne NR_syscalls - __NR_syscalls
103.error "__NR_syscalls is not equal to the size of the syscall table"
104.endif
105
Al Virofa1b4f92006-01-19 12:57:01 +0000106#undef CALL
107#define CALL(x) .long x
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Steven Rostedt606576c2008-10-06 19:06:12 -0400109#ifdef CONFIG_FUNCTION_TRACER
Rabin Vincent686ff222010-08-03 17:09:40 +0100110/*
111 * When compiling with -pg, gcc inserts a call to the mcount routine at the
112 * start of every function. In mcount, apart from the function's address (in
113 * lr), we need to get hold of the function's caller's address.
114 *
115 * Older GCCs (pre-4.4) inserted a call to a routine called mcount like this:
116 *
117 * bl mcount
118 *
119 * These versions have the limitation that in order for the mcount routine to
120 * be able to determine the function's caller's address, an APCS-style frame
121 * pointer (which is set up with something like the code below) is required.
122 *
123 * mov ip, sp
124 * push {fp, ip, lr, pc}
125 * sub fp, ip, #4
126 *
127 * With EABI, these frame pointers are not available unless -mapcs-frame is
128 * specified, and if building as Thumb-2, not even then.
129 *
130 * Newer GCCs (4.4+) solve this problem by introducing a new version of mcount,
131 * with call sites like:
132 *
133 * push {lr}
134 * bl __gnu_mcount_nc
135 *
136 * With these compilers, frame pointers are not necessary.
137 *
138 * mcount can be thought of as a function called in the middle of a subroutine
139 * call. As such, it needs to be transparent for both the caller and the
140 * callee: the original lr needs to be restored when leaving mcount, and no
141 * registers should be clobbered. (In the __gnu_mcount_nc implementation, we
142 * clobber the ip register. This is OK because the ARM calling convention
143 * allows it to be clobbered in subroutines and doesn't use it to hold
144 * parameters.)
Rabin Vincent3b6c2232010-08-10 19:43:28 +0100145 *
146 * When using dynamic ftrace, we patch out the mcount call by a "mov r0, r0"
147 * for the mcount case, and a "pop {lr}" for the __gnu_mcount_nc case (see
148 * arch/arm/kernel/ftrace.c).
Rabin Vincent686ff222010-08-03 17:09:40 +0100149 */
Rabin Vincent09bfafa2010-08-10 19:32:37 +0100150
151#ifndef CONFIG_OLD_MCOUNT
152#if (__GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 4))
153#error Ftrace requires CONFIG_FRAME_POINTER=y with GCC older than 4.4.0.
154#endif
155#endif
156
Rabin Vincentd68133b2012-01-24 16:52:52 +0100157.macro mcount_adjust_addr rd, rn
158 bic \rd, \rn, #1 @ clear the Thumb bit if present
159 sub \rd, \rd, #MCOUNT_INSN_SIZE
160.endm
161
Rabin Vincentd3b9dc92010-10-07 17:39:47 +0530162.macro __mcount suffix
163 mcount_enter
Rabin Vincent28e192d2010-08-03 17:08:09 +0100164 ldr r0, =ftrace_trace_function
165 ldr r2, [r0]
Rabin Vincenta3ba87a2010-08-10 19:37:21 +0100166 adr r0, .Lftrace_stub
Rabin Vincent28e192d2010-08-03 17:08:09 +0100167 cmp r0, r2
Rabin Vincentd3b9dc92010-10-07 17:39:47 +0530168 bne 1f
Uwe Kleine-König181f8172009-08-13 20:38:16 +0200169
Tim Bird376cfa82010-10-09 22:24:38 +0530170#ifdef CONFIG_FUNCTION_GRAPH_TRACER
171 ldr r1, =ftrace_graph_return
172 ldr r2, [r1]
173 cmp r0, r2
174 bne ftrace_graph_caller\suffix
175
176 ldr r1, =ftrace_graph_entry
177 ldr r2, [r1]
178 ldr r0, =ftrace_graph_entry_stub
179 cmp r0, r2
180 bne ftrace_graph_caller\suffix
181#endif
182
Rabin Vincentd3b9dc92010-10-07 17:39:47 +0530183 mcount_exit
Uwe Kleine-König181f8172009-08-13 20:38:16 +0200184
Rabin Vincentd3b9dc92010-10-07 17:39:47 +05301851: mcount_get_lr r1 @ lr of instrumented func
Rabin Vincentd68133b2012-01-24 16:52:52 +0100186 mcount_adjust_addr r0, lr @ instrumented function
Rabin Vincentd3b9dc92010-10-07 17:39:47 +0530187 adr lr, BSYM(2f)
Rabin Vincent28e192d2010-08-03 17:08:09 +0100188 mov pc, r2
Rabin Vincentd3b9dc92010-10-07 17:39:47 +05301892: mcount_exit
190.endm
191
192.macro __ftrace_caller suffix
193 mcount_enter
194
195 mcount_get_lr r1 @ lr of instrumented func
Rabin Vincentd68133b2012-01-24 16:52:52 +0100196 mcount_adjust_addr r0, lr @ instrumented function
Rabin Vincentd3b9dc92010-10-07 17:39:47 +0530197
198 .globl ftrace_call\suffix
199ftrace_call\suffix:
200 bl ftrace_stub
201
Rabin Vincentdd686eb2010-11-06 23:03:21 +0530202#ifdef CONFIG_FUNCTION_GRAPH_TRACER
203 .globl ftrace_graph_call\suffix
204ftrace_graph_call\suffix:
205 mov r0, r0
206#endif
207
Rabin Vincentd3b9dc92010-10-07 17:39:47 +0530208 mcount_exit
209.endm
Uwe Kleine-König181f8172009-08-13 20:38:16 +0200210
Tim Bird376cfa82010-10-09 22:24:38 +0530211.macro __ftrace_graph_caller
212 sub r0, fp, #4 @ &lr of instrumented routine (&parent)
Rabin Vincentdd686eb2010-11-06 23:03:21 +0530213#ifdef CONFIG_DYNAMIC_FTRACE
214 @ called from __ftrace_caller, saved in mcount_enter
215 ldr r1, [sp, #16] @ instrumented routine (func)
Rabin Vincentd68133b2012-01-24 16:52:52 +0100216 mcount_adjust_addr r1, r1
Rabin Vincentdd686eb2010-11-06 23:03:21 +0530217#else
218 @ called from __mcount, untouched in lr
Rabin Vincentd68133b2012-01-24 16:52:52 +0100219 mcount_adjust_addr r1, lr @ instrumented routine (func)
Rabin Vincentdd686eb2010-11-06 23:03:21 +0530220#endif
Tim Bird376cfa82010-10-09 22:24:38 +0530221 mov r2, fp @ frame pointer
222 bl prepare_ftrace_return
223 mcount_exit
224.endm
Abhishek Sagar014c2572008-05-31 14:23:50 +0530225
Rabin Vincent09bfafa2010-08-10 19:32:37 +0100226#ifdef CONFIG_OLD_MCOUNT
227/*
Rabin Vincentd3b9dc92010-10-07 17:39:47 +0530228 * mcount
Rabin Vincent09bfafa2010-08-10 19:32:37 +0100229 */
Abhishek Sagar014c2572008-05-31 14:23:50 +0530230
Rabin Vincentd3b9dc92010-10-07 17:39:47 +0530231.macro mcount_enter
232 stmdb sp!, {r0-r3, lr}
233.endm
234
235.macro mcount_get_lr reg
236 ldr \reg, [fp, #-4]
237.endm
238
239.macro mcount_exit
240 ldr lr, [fp, #-4]
Rabin Vincent28e192d2010-08-03 17:08:09 +0100241 ldmia sp!, {r0-r3, pc}
Rabin Vincentd3b9dc92010-10-07 17:39:47 +0530242.endm
243
244ENTRY(mcount)
245#ifdef CONFIG_DYNAMIC_FTRACE
246 stmdb sp!, {lr}
247 ldr lr, [fp, #-4]
248 ldmia sp!, {pc}
249#else
250 __mcount _old
251#endif
Rabin Vincent72fa62f2010-08-10 19:33:52 +0100252ENDPROC(mcount)
Rabin Vincentd3b9dc92010-10-07 17:39:47 +0530253
254#ifdef CONFIG_DYNAMIC_FTRACE
255ENTRY(ftrace_caller_old)
256 __ftrace_caller _old
257ENDPROC(ftrace_caller_old)
Rabin Vincent09bfafa2010-08-10 19:32:37 +0100258#endif
Abhishek Sagar014c2572008-05-31 14:23:50 +0530259
Tim Bird376cfa82010-10-09 22:24:38 +0530260#ifdef CONFIG_FUNCTION_GRAPH_TRACER
261ENTRY(ftrace_graph_caller_old)
262 __ftrace_graph_caller
263ENDPROC(ftrace_graph_caller_old)
264#endif
265
Rabin Vincentd3b9dc92010-10-07 17:39:47 +0530266.purgem mcount_enter
267.purgem mcount_get_lr
268.purgem mcount_exit
269#endif
270
271/*
272 * __gnu_mcount_nc
273 */
274
275.macro mcount_enter
276 stmdb sp!, {r0-r3, lr}
277.endm
278
279.macro mcount_get_lr reg
280 ldr \reg, [sp, #20]
281.endm
282
283.macro mcount_exit
284 ldmia sp!, {r0-r3, ip, lr}
285 mov pc, ip
286.endm
287
288ENTRY(__gnu_mcount_nc)
289#ifdef CONFIG_DYNAMIC_FTRACE
290 mov ip, lr
291 ldmia sp!, {lr}
292 mov pc, ip
293#else
294 __mcount
295#endif
296ENDPROC(__gnu_mcount_nc)
297
298#ifdef CONFIG_DYNAMIC_FTRACE
299ENTRY(ftrace_caller)
300 __ftrace_caller
301ENDPROC(ftrace_caller)
302#endif
303
Tim Bird376cfa82010-10-09 22:24:38 +0530304#ifdef CONFIG_FUNCTION_GRAPH_TRACER
305ENTRY(ftrace_graph_caller)
306 __ftrace_graph_caller
307ENDPROC(ftrace_graph_caller)
308#endif
309
Rabin Vincentd3b9dc92010-10-07 17:39:47 +0530310.purgem mcount_enter
311.purgem mcount_get_lr
312.purgem mcount_exit
Abhishek Sagar014c2572008-05-31 14:23:50 +0530313
Tim Bird376cfa82010-10-09 22:24:38 +0530314#ifdef CONFIG_FUNCTION_GRAPH_TRACER
315 .globl return_to_handler
316return_to_handler:
317 stmdb sp!, {r0-r3}
318 mov r0, fp @ frame pointer
319 bl ftrace_return_to_handler
320 mov lr, r0 @ r0 has real ret addr
321 ldmia sp!, {r0-r3}
322 mov pc, lr
323#endif
Abhishek Sagar014c2572008-05-31 14:23:50 +0530324
Rabin Vincent72fa62f2010-08-10 19:33:52 +0100325ENTRY(ftrace_stub)
Rabin Vincenta3ba87a2010-08-10 19:37:21 +0100326.Lftrace_stub:
Rabin Vincent28e192d2010-08-03 17:08:09 +0100327 mov pc, lr
Rabin Vincent72fa62f2010-08-10 19:33:52 +0100328ENDPROC(ftrace_stub)
Abhishek Sagar014c2572008-05-31 14:23:50 +0530329
Steven Rostedt606576c2008-10-06 19:06:12 -0400330#endif /* CONFIG_FUNCTION_TRACER */
Abhishek Sagar014c2572008-05-31 14:23:50 +0530331
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332/*=============================================================================
333 * SWI handler
334 *-----------------------------------------------------------------------------
335 */
336
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 .align 5
338ENTRY(vector_swi)
Russell Kingf4dc9a42005-04-26 15:20:34 +0100339 sub sp, sp, #S_FRAME_SIZE
340 stmia sp, {r0 - r12} @ Calling r0 - r12
Catalin Marinasb86040a2009-07-24 12:32:54 +0100341 ARM( add r8, sp, #S_PC )
342 ARM( stmdb r8, {sp, lr}^ ) @ Calling sp, lr
343 THUMB( mov r8, sp )
344 THUMB( store_user_sp_lr r8, r10, S_SP ) @ calling sp, lr
Russell Kingf4dc9a42005-04-26 15:20:34 +0100345 mrs r8, spsr @ called from non-FIQ mode, so ok.
346 str lr, [sp, #S_PC] @ Save calling PC
347 str r8, [sp, #S_PSR] @ Save CPSR
348 str r0, [sp, #S_OLD_R0] @ Save OLD_R0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 zero_fp
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100350
351 /*
352 * Get the system call number.
353 */
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000354
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000355#if defined(CONFIG_OABI_COMPAT)
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000356
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000357 /*
358 * If we have CONFIG_OABI_COMPAT then we need to look at the swi
359 * value to determine if it is an EABI or an old ABI call.
360 */
361#ifdef CONFIG_ARM_THUMB
362 tst r8, #PSR_T_BIT
363 movne r10, #0 @ no thumb OABI emulation
364 ldreq r10, [lr, #-4] @ get SWI instruction
365#else
366 ldr r10, [lr, #-4] @ get SWI instruction
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000367#endif
Catalin Marinas26584852009-05-30 14:00:18 +0100368#ifdef CONFIG_CPU_ENDIAN_BE8
369 rev r10, r10 @ little endian instruction
370#endif
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000371
372#elif defined(CONFIG_AEABI)
373
374 /*
375 * Pure EABI user space always put syscall number into scno (r7).
376 */
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000377#elif defined(CONFIG_ARM_THUMB)
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000378 /* Legacy ABI only, possibly thumb mode. */
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100379 tst r8, #PSR_T_BIT @ this is SPSR from save_user_regs
380 addne scno, r7, #__NR_SYSCALL_BASE @ put OS number in
381 ldreq scno, [lr, #-4]
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000382
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100383#else
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000384 /* Legacy ABI only. */
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100385 ldr scno, [lr, #-4] @ get SWI instruction
386#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
388#ifdef CONFIG_ALIGNMENT_TRAP
389 ldr ip, __cr_alignment
390 ldr ip, [ip]
391 mcr p15, 0, ip, c1, c0 @ update control register
392#endif
Russell King1ec42c02005-04-26 15:18:26 +0100393 enable_irq
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 get_thread_info tsk
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000396 adr tbl, sys_call_table @ load syscall table pointer
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000397
398#if defined(CONFIG_OABI_COMPAT)
399 /*
400 * If the swi argument is zero, this is an EABI call and we do nothing.
401 *
402 * If this is an old ABI call, get the syscall number into scno and
403 * get the old ABI syscall table address.
404 */
405 bics r10, r10, #0xff000000
406 eorne scno, r10, #__NR_OABI_SYSCALL_BASE
407 ldrne tbl, =sys_oabi_call_table
408#elif !defined(CONFIG_AEABI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 bic scno, scno, #0xff000000 @ mask off SWI op-code
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100410 eor scno, scno, #__NR_SYSCALL_BASE @ check OS number
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000411#endif
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000412
Al Viro81783782012-07-19 17:48:21 +0100413local_restart:
Nicolas Pitre70c70d92010-08-26 15:08:35 -0700414 ldr r10, [tsk, #TI_FLAGS] @ check for syscall tracing
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000415 stmdb sp!, {r4, r5} @ push fifth and sixth args
Nicolas Pitre70c70d92010-08-26 15:08:35 -0700416
Nathaniel Husted29ef73b2012-01-03 14:23:09 -0500417 tst r10, #_TIF_SYSCALL_WORK @ are we tracing syscalls?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 bne __sys_trace
419
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 cmp scno, #NR_syscalls @ check upper syscall limit
Catalin Marinasb86040a2009-07-24 12:32:54 +0100421 adr lr, BSYM(ret_fast_syscall) @ return address
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 ldrcc pc, [tbl, scno, lsl #2] @ call sys_* routine
423
424 add r1, sp, #S_OFF
4252: mov why, #0 @ no longer a real syscall
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100426 cmp scno, #(__ARM_NR_BASE - __NR_SYSCALL_BASE)
427 eor r0, scno, #__NR_SYSCALL_BASE @ put OS number back
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 bcs arm_syscall
429 b sys_ni_syscall @ not private func
Catalin Marinas93ed3972008-08-28 11:22:32 +0100430ENDPROC(vector_swi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
432 /*
433 * This is the really slow path. We're going to be doing
434 * context switches, and waiting for our parent to respond.
435 */
436__sys_trace:
Will Deaconad722542012-07-06 15:50:14 +0100437 mov r1, scno
438 add r0, sp, #S_OFF
439 bl syscall_trace_enter
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
Catalin Marinasb86040a2009-07-24 12:32:54 +0100441 adr lr, BSYM(__sys_trace_return) @ return address
Nicolas Pitre3f471122006-01-14 19:30:04 +0000442 mov scno, r0 @ syscall number (possibly new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 add r1, sp, #S_R0 + S_OFF @ pointer to regs
444 cmp scno, #NR_syscalls @ check upper syscall limit
Will Deaconc7aa00d2012-07-19 17:49:22 +0100445 ldmccia r1, {r0 - r6} @ have to reload r0 - r6
446 stmccia sp, {r4, r5} @ and update the stack args
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 ldrcc pc, [tbl, scno, lsl #2] @ call sys_* routine
Kees Cookad75b512012-11-15 22:12:17 +0100448 cmp scno, #-1 @ skip the syscall?
449 bne 2b
450 add sp, sp, #S_OFF @ restore stack
451 b ret_slow_syscall
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
453__sys_trace_return:
454 str r0, [sp, #S_R0 + S_OFF]! @ save returned r0
Will Deaconad722542012-07-06 15:50:14 +0100455 mov r0, sp
456 bl syscall_trace_exit
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 b ret_slow_syscall
458
459 .align 5
460#ifdef CONFIG_ALIGNMENT_TRAP
461 .type __cr_alignment, #object
462__cr_alignment:
463 .word cr_alignment
464#endif
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000465 .ltorg
466
467/*
468 * This is the syscall table declaration for native ABI syscalls.
469 * With EABI a couple syscalls are obsolete and defined as sys_ni_syscall.
470 */
471#define ABI(native, compat) native
472#ifdef CONFIG_AEABI
473#define OBSOLETE(syscall) sys_ni_syscall
474#else
475#define OBSOLETE(syscall) syscall
476#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
478 .type sys_call_table, #object
479ENTRY(sys_call_table)
480#include "calls.S"
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000481#undef ABI
482#undef OBSOLETE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
484/*============================================================================
485 * Special system call wrappers
486 */
487@ r0 = syscall number
Russell King567bd982005-12-17 15:25:42 +0000488@ r8 = syscall table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489sys_syscall:
Paul Brook52475932006-05-16 14:25:55 +0100490 bic scno, r0, #__NR_OABI_SYSCALL_BASE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 cmp scno, #__NR_syscall - __NR_SYSCALL_BASE
492 cmpne scno, #NR_syscalls @ check range
493 stmloia sp, {r5, r6} @ shuffle args
494 movlo r0, r1
495 movlo r1, r2
496 movlo r2, r3
497 movlo r3, r4
498 ldrlo pc, [tbl, scno, lsl #2]
499 b sys_ni_syscall
Catalin Marinas93ed3972008-08-28 11:22:32 +0100500ENDPROC(sys_syscall)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502sys_sigreturn_wrapper:
503 add r0, sp, #S_OFF
Al Viro653d48b2010-09-17 14:34:39 +0100504 mov why, #0 @ prevent syscall restart handling
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 b sys_sigreturn
Catalin Marinas93ed3972008-08-28 11:22:32 +0100506ENDPROC(sys_sigreturn_wrapper)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
508sys_rt_sigreturn_wrapper:
509 add r0, sp, #S_OFF
Al Viro653d48b2010-09-17 14:34:39 +0100510 mov why, #0 @ prevent syscall restart handling
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 b sys_rt_sigreturn
Catalin Marinas93ed3972008-08-28 11:22:32 +0100512ENDPROC(sys_rt_sigreturn_wrapper)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
Nicolas Pitre713c4812006-01-14 16:35:03 +0000514sys_statfs64_wrapper:
515 teq r1, #88
516 moveq r1, #84
517 b sys_statfs64
Catalin Marinas93ed3972008-08-28 11:22:32 +0100518ENDPROC(sys_statfs64_wrapper)
Nicolas Pitre713c4812006-01-14 16:35:03 +0000519
520sys_fstatfs64_wrapper:
521 teq r1, #88
522 moveq r1, #84
523 b sys_fstatfs64
Catalin Marinas93ed3972008-08-28 11:22:32 +0100524ENDPROC(sys_fstatfs64_wrapper)
Nicolas Pitre713c4812006-01-14 16:35:03 +0000525
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526/*
527 * Note: off_4k (r5) is always units of 4K. If we can't do the requested
528 * offset, we return EINVAL.
529 */
530sys_mmap2:
531#if PAGE_SHIFT > 12
532 tst r5, #PGOFF_MASK
533 moveq r5, r5, lsr #PAGE_SHIFT - 12
534 streq r5, [sp, #4]
Al Virof8b72562009-11-30 17:37:04 -0500535 beq sys_mmap_pgoff
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 mov r0, #-EINVAL
Russell King7999d8d2006-06-25 11:17:23 +0100537 mov pc, lr
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538#else
539 str r5, [sp, #4]
Al Virof8b72562009-11-30 17:37:04 -0500540 b sys_mmap_pgoff
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541#endif
Catalin Marinas93ed3972008-08-28 11:22:32 +0100542ENDPROC(sys_mmap2)
Nicolas Pitre687ad012006-01-14 16:35:31 +0000543
544#ifdef CONFIG_OABI_COMPAT
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000545
Nicolas Pitre687ad012006-01-14 16:35:31 +0000546/*
547 * These are syscalls with argument register differences
548 */
549
550sys_oabi_pread64:
551 stmia sp, {r3, r4}
552 b sys_pread64
Catalin Marinas93ed3972008-08-28 11:22:32 +0100553ENDPROC(sys_oabi_pread64)
Nicolas Pitre687ad012006-01-14 16:35:31 +0000554
555sys_oabi_pwrite64:
556 stmia sp, {r3, r4}
557 b sys_pwrite64
Catalin Marinas93ed3972008-08-28 11:22:32 +0100558ENDPROC(sys_oabi_pwrite64)
Nicolas Pitre687ad012006-01-14 16:35:31 +0000559
560sys_oabi_truncate64:
561 mov r3, r2
562 mov r2, r1
563 b sys_truncate64
Catalin Marinas93ed3972008-08-28 11:22:32 +0100564ENDPROC(sys_oabi_truncate64)
Nicolas Pitre687ad012006-01-14 16:35:31 +0000565
566sys_oabi_ftruncate64:
567 mov r3, r2
568 mov r2, r1
569 b sys_ftruncate64
Catalin Marinas93ed3972008-08-28 11:22:32 +0100570ENDPROC(sys_oabi_ftruncate64)
Nicolas Pitre687ad012006-01-14 16:35:31 +0000571
572sys_oabi_readahead:
573 str r3, [sp]
574 mov r3, r2
575 mov r2, r1
576 b sys_readahead
Catalin Marinas93ed3972008-08-28 11:22:32 +0100577ENDPROC(sys_oabi_readahead)
Nicolas Pitre687ad012006-01-14 16:35:31 +0000578
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000579/*
580 * Let's declare a second syscall table for old ABI binaries
581 * using the compatibility syscall entries.
582 */
583#define ABI(native, compat) compat
584#define OBSOLETE(syscall) syscall
585
586 .type sys_oabi_call_table, #object
587ENTRY(sys_oabi_call_table)
588#include "calls.S"
589#undef ABI
590#undef OBSOLETE
591
Nicolas Pitre687ad012006-01-14 16:35:31 +0000592#endif
593