2 * linux/arch/arm/kernel/entry-common.S
4 * Copyright (C) 2000 Russell King
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.
11 #include <asm/unistd.h>
12 #include <asm/ftrace.h>
13 #include <mach/entry-macro.S>
14 #include <asm/unwind.h>
16 #include "entry-header.S"
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
28 disable_irq @ disable interrupts
29 ldr r1, [tsk, #TI_FLAGS]
30 tst r1, #_TIF_WORK_MASK
33 /* perform architecture specific actions before user return */
34 arch_ret_to_user r1, lr
36 @ fast_restore_user_regs
37 ldr r1, [sp, #S_OFF + S_PSR] @ get calling cpsr
38 ldr lr, [sp, #S_OFF + S_PC]! @ get pc
39 msr spsr_cxsf, r1 @ save in spsr_svc
40 ldmdb sp, {r1 - lr}^ @ get calling r1 - lr
42 add sp, sp, #S_FRAME_SIZE - S_PC
43 movs pc, lr @ return & move spsr_svc into cpsr
47 * Ok, we need to do extra processing, enter the slow path.
50 str r0, [sp, #S_R0+S_OFF]! @ returned r0
52 tst r1, #_TIF_NEED_RESCHED
54 tst r1, #_TIF_SIGPENDING
57 mov r2, why @ 'syscall'
59 b ret_slow_syscall @ Check work again
64 * "slow" syscall return path. "why" tells us if this was a real syscall.
68 disable_irq @ disable interrupts
69 ldr r1, [tsk, #TI_FLAGS]
70 tst r1, #_TIF_WORK_MASK
73 /* perform architecture specific actions before user return */
74 arch_ret_to_user r1, lr
76 @ slow_restore_user_regs
77 ldr r1, [sp, #S_PSR] @ get calling cpsr
78 ldr lr, [sp, #S_PC]! @ get pc
79 msr spsr_cxsf, r1 @ save in spsr_svc
80 ldmdb sp, {r0 - lr}^ @ get calling r0 - lr
82 add sp, sp, #S_FRAME_SIZE - S_PC
83 movs pc, lr @ return & move spsr_svc into cpsr
87 * This is how we return from a fork.
92 ldr r1, [tsk, #TI_FLAGS] @ check for syscall tracing
94 tst r1, #_TIF_SYSCALL_TRACE @ are we tracing syscalls?
97 mov r0, #1 @ trace exit [IP = 1]
100 ENDPROC(ret_from_fork)
103 #define CALL(x) .equ NR_syscalls,NR_syscalls+1
106 #define CALL(x) .long x
108 #ifdef CONFIG_FUNCTION_TRACER
109 #ifdef CONFIG_DYNAMIC_FTRACE
111 stmdb sp!, {r0-r3, lr}
113 sub r0, r0, #MCOUNT_INSN_SIZE
118 ldr lr, [fp, #-4] @ restore lr
119 ldmia sp!, {r0-r3, pc}
122 stmdb sp!, {r0-r3, lr}
125 sub r0, r0, #MCOUNT_INSN_SIZE
130 ldr lr, [fp, #-4] @ restore lr
131 ldmia sp!, {r0-r3, pc}
136 stmdb sp!, {r0-r3, lr}
137 ldr r0, =ftrace_trace_function
142 ldr lr, [fp, #-4] @ restore lr
143 ldmia sp!, {r0-r3, pc}
146 ldr r1, [fp, #-4] @ lr of instrumented routine
148 sub r0, r0, #MCOUNT_INSN_SIZE
151 mov lr, r1 @ restore lr
152 ldmia sp!, {r0-r3, pc}
154 #endif /* CONFIG_DYNAMIC_FTRACE */
160 #endif /* CONFIG_FUNCTION_TRACER */
162 /*=============================================================================
164 *-----------------------------------------------------------------------------
167 /* If we're optimising for StrongARM the resulting code won't
168 run on an ARM7 and we can save a couple of instructions.
170 #ifdef CONFIG_CPU_ARM710
171 #define A710(code...) code
173 ldmia sp, {r0 - lr}^ @ Get calling r0 - lr
175 add sp, sp, #S_FRAME_SIZE
178 #define A710(code...)
183 sub sp, sp, #S_FRAME_SIZE
184 stmia sp, {r0 - r12} @ Calling r0 - r12
186 stmdb r8, {sp, lr}^ @ Calling sp, lr
187 mrs r8, spsr @ called from non-FIQ mode, so ok.
188 str lr, [sp, #S_PC] @ Save calling PC
189 str r8, [sp, #S_PSR] @ Save CPSR
190 str r0, [sp, #S_OLD_R0] @ Save OLD_R0
194 * Get the system call number.
197 #if defined(CONFIG_OABI_COMPAT)
200 * If we have CONFIG_OABI_COMPAT then we need to look at the swi
201 * value to determine if it is an EABI or an old ABI call.
203 #ifdef CONFIG_ARM_THUMB
205 movne r10, #0 @ no thumb OABI emulation
206 ldreq r10, [lr, #-4] @ get SWI instruction
208 ldr r10, [lr, #-4] @ get SWI instruction
209 A710( and ip, r10, #0x0f000000 @ check for SWI )
210 A710( teq ip, #0x0f000000 )
211 A710( bne .Larm710bug )
214 #elif defined(CONFIG_AEABI)
217 * Pure EABI user space always put syscall number into scno (r7).
219 A710( ldr ip, [lr, #-4] @ get SWI instruction )
220 A710( and ip, ip, #0x0f000000 @ check for SWI )
221 A710( teq ip, #0x0f000000 )
222 A710( bne .Larm710bug )
224 #elif defined(CONFIG_ARM_THUMB)
226 /* Legacy ABI only, possibly thumb mode. */
227 tst r8, #PSR_T_BIT @ this is SPSR from save_user_regs
228 addne scno, r7, #__NR_SYSCALL_BASE @ put OS number in
229 ldreq scno, [lr, #-4]
233 /* Legacy ABI only. */
234 ldr scno, [lr, #-4] @ get SWI instruction
235 A710( and ip, scno, #0x0f000000 @ check for SWI )
236 A710( teq ip, #0x0f000000 )
237 A710( bne .Larm710bug )
241 #ifdef CONFIG_ALIGNMENT_TRAP
242 ldr ip, __cr_alignment
244 mcr p15, 0, ip, c1, c0 @ update control register
249 adr tbl, sys_call_table @ load syscall table pointer
250 ldr ip, [tsk, #TI_FLAGS] @ check for syscall tracing
252 #if defined(CONFIG_OABI_COMPAT)
254 * If the swi argument is zero, this is an EABI call and we do nothing.
256 * If this is an old ABI call, get the syscall number into scno and
257 * get the old ABI syscall table address.
259 bics r10, r10, #0xff000000
260 eorne scno, r10, #__NR_OABI_SYSCALL_BASE
261 ldrne tbl, =sys_oabi_call_table
262 #elif !defined(CONFIG_AEABI)
263 bic scno, scno, #0xff000000 @ mask off SWI op-code
264 eor scno, scno, #__NR_SYSCALL_BASE @ check OS number
267 stmdb sp!, {r4, r5} @ push fifth and sixth args
268 tst ip, #_TIF_SYSCALL_TRACE @ are we tracing syscalls?
271 cmp scno, #NR_syscalls @ check upper syscall limit
272 adr lr, ret_fast_syscall @ return address
273 ldrcc pc, [tbl, scno, lsl #2] @ call sys_* routine
276 2: mov why, #0 @ no longer a real syscall
277 cmp scno, #(__ARM_NR_BASE - __NR_SYSCALL_BASE)
278 eor r0, scno, #__NR_SYSCALL_BASE @ put OS number back
280 b sys_ni_syscall @ not private func
284 * This is the really slow path. We're going to be doing
285 * context switches, and waiting for our parent to respond.
290 mov r0, #0 @ trace entry [IP = 0]
293 adr lr, __sys_trace_return @ return address
294 mov scno, r0 @ syscall number (possibly new)
295 add r1, sp, #S_R0 + S_OFF @ pointer to regs
296 cmp scno, #NR_syscalls @ check upper syscall limit
297 ldmccia r1, {r0 - r3} @ have to reload r0 - r3
298 ldrcc pc, [tbl, scno, lsl #2] @ call sys_* routine
302 str r0, [sp, #S_R0 + S_OFF]! @ save returned r0
305 mov r0, #1 @ trace exit [IP = 1]
310 #ifdef CONFIG_ALIGNMENT_TRAP
311 .type __cr_alignment, #object
318 * This is the syscall table declaration for native ABI syscalls.
319 * With EABI a couple syscalls are obsolete and defined as sys_ni_syscall.
321 #define ABI(native, compat) native
323 #define OBSOLETE(syscall) sys_ni_syscall
325 #define OBSOLETE(syscall) syscall
328 .type sys_call_table, #object
329 ENTRY(sys_call_table)
334 /*============================================================================
335 * Special system call wrappers
337 @ r0 = syscall number
340 bic scno, r0, #__NR_OABI_SYSCALL_BASE
341 cmp scno, #__NR_syscall - __NR_SYSCALL_BASE
342 cmpne scno, #NR_syscalls @ check range
343 stmloia sp, {r5, r6} @ shuffle args
348 ldrlo pc, [tbl, scno, lsl #2]
355 ENDPROC(sys_fork_wrapper)
360 ENDPROC(sys_vfork_wrapper)
365 ENDPROC(sys_execve_wrapper)
371 ENDPROC(sys_clone_wrapper)
373 sys_sigsuspend_wrapper:
376 ENDPROC(sys_sigsuspend_wrapper)
378 sys_rt_sigsuspend_wrapper:
381 ENDPROC(sys_rt_sigsuspend_wrapper)
383 sys_sigreturn_wrapper:
386 ENDPROC(sys_sigreturn_wrapper)
388 sys_rt_sigreturn_wrapper:
391 ENDPROC(sys_rt_sigreturn_wrapper)
393 sys_sigaltstack_wrapper:
394 ldr r2, [sp, #S_OFF + S_SP]
396 ENDPROC(sys_sigaltstack_wrapper)
398 sys_statfs64_wrapper:
402 ENDPROC(sys_statfs64_wrapper)
404 sys_fstatfs64_wrapper:
408 ENDPROC(sys_fstatfs64_wrapper)
411 * Note: off_4k (r5) is always units of 4K. If we can't do the requested
412 * offset, we return EINVAL.
417 moveq r5, r5, lsr #PAGE_SHIFT - 12
429 mrc p15, 0, r0, cr6, cr0, 2
433 ENDPROC(pabort_noifar)
435 #ifdef CONFIG_OABI_COMPAT
438 * These are syscalls with argument register differences
444 ENDPROC(sys_oabi_pread64)
449 ENDPROC(sys_oabi_pwrite64)
455 ENDPROC(sys_oabi_truncate64)
457 sys_oabi_ftruncate64:
461 ENDPROC(sys_oabi_ftruncate64)
468 ENDPROC(sys_oabi_readahead)
471 * Let's declare a second syscall table for old ABI binaries
472 * using the compatibility syscall entries.
474 #define ABI(native, compat) compat
475 #define OBSOLETE(syscall) syscall
477 .type sys_oabi_call_table, #object
478 ENTRY(sys_oabi_call_table)