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/arch/entry-macro.S>
14 #include "entry-header.S"
19 * This is the fast syscall return path. We do as little as
20 * possible here, and this includes saving r0 back into the SVC
24 disable_irq @ disable interrupts
25 ldr r1, [tsk, #TI_FLAGS]
26 tst r1, #_TIF_WORK_MASK
29 /* perform architecture specific actions before user return */
30 arch_ret_to_user r1, lr
32 @ fast_restore_user_regs
33 ldr r1, [sp, #S_OFF + S_PSR] @ get calling cpsr
34 ldr lr, [sp, #S_OFF + S_PC]! @ get pc
35 msr spsr_cxsf, r1 @ save in spsr_svc
36 ldmdb sp, {r1 - lr}^ @ get calling r1 - lr
38 add sp, sp, #S_FRAME_SIZE - S_PC
39 movs pc, lr @ return & move spsr_svc into cpsr
42 * Ok, we need to do extra processing, enter the slow path.
45 str r0, [sp, #S_R0+S_OFF]! @ returned r0
47 tst r1, #_TIF_NEED_RESCHED
49 tst r1, #_TIF_SIGPENDING
52 mov r2, why @ 'syscall'
54 b ret_slow_syscall @ Check work again
59 * "slow" syscall return path. "why" tells us if this was a real syscall.
63 disable_irq @ disable interrupts
64 ldr r1, [tsk, #TI_FLAGS]
65 tst r1, #_TIF_WORK_MASK
68 /* perform architecture specific actions before user return */
69 arch_ret_to_user r1, lr
71 @ slow_restore_user_regs
72 ldr r1, [sp, #S_PSR] @ get calling cpsr
73 ldr lr, [sp, #S_PC]! @ get pc
74 msr spsr_cxsf, r1 @ save in spsr_svc
75 ldmdb sp, {r0 - lr}^ @ get calling r0 - lr
77 add sp, sp, #S_FRAME_SIZE - S_PC
78 movs pc, lr @ return & move spsr_svc into cpsr
81 * This is how we return from a fork.
86 ldr r1, [tsk, #TI_FLAGS] @ check for syscall tracing
88 tst r1, #_TIF_SYSCALL_TRACE @ are we tracing syscalls?
91 mov r0, #1 @ trace exit [IP = 1]
97 #define CALL(x) .equ NR_syscalls,NR_syscalls+1
100 #define CALL(x) .long x
103 #ifdef CONFIG_DYNAMIC_FTRACE
105 stmdb sp!, {r0-r3, lr}
111 ldmia sp!, {r0-r3, pc}
114 stmdb sp!, {r0-r3, lr}
121 ldmia sp!, {r0-r3, pc}
126 stmdb sp!, {r0-r3, lr}
127 ldr r0, =ftrace_trace_function
132 ldmia sp!, {r0-r3, pc}
139 ldmia sp!, {r0-r3, pc}
141 #endif /* CONFIG_DYNAMIC_FTRACE */
147 #endif /* CONFIG_FTRACE */
149 /*=============================================================================
151 *-----------------------------------------------------------------------------
154 /* If we're optimising for StrongARM the resulting code won't
155 run on an ARM7 and we can save a couple of instructions.
157 #ifdef CONFIG_CPU_ARM710
158 #define A710(code...) code
160 ldmia sp, {r0 - lr}^ @ Get calling r0 - lr
162 add sp, sp, #S_FRAME_SIZE
165 #define A710(code...)
170 sub sp, sp, #S_FRAME_SIZE
171 stmia sp, {r0 - r12} @ Calling r0 - r12
173 stmdb r8, {sp, lr}^ @ Calling sp, lr
174 mrs r8, spsr @ called from non-FIQ mode, so ok.
175 str lr, [sp, #S_PC] @ Save calling PC
176 str r8, [sp, #S_PSR] @ Save CPSR
177 str r0, [sp, #S_OLD_R0] @ Save OLD_R0
181 * Get the system call number.
184 #if defined(CONFIG_OABI_COMPAT)
187 * If we have CONFIG_OABI_COMPAT then we need to look at the swi
188 * value to determine if it is an EABI or an old ABI call.
190 #ifdef CONFIG_ARM_THUMB
192 movne r10, #0 @ no thumb OABI emulation
193 ldreq r10, [lr, #-4] @ get SWI instruction
195 ldr r10, [lr, #-4] @ get SWI instruction
196 A710( and ip, r10, #0x0f000000 @ check for SWI )
197 A710( teq ip, #0x0f000000 )
198 A710( bne .Larm710bug )
201 #elif defined(CONFIG_AEABI)
204 * Pure EABI user space always put syscall number into scno (r7).
206 A710( ldr ip, [lr, #-4] @ get SWI instruction )
207 A710( and ip, ip, #0x0f000000 @ check for SWI )
208 A710( teq ip, #0x0f000000 )
209 A710( bne .Larm710bug )
211 #elif defined(CONFIG_ARM_THUMB)
213 /* Legacy ABI only, possibly thumb mode. */
214 tst r8, #PSR_T_BIT @ this is SPSR from save_user_regs
215 addne scno, r7, #__NR_SYSCALL_BASE @ put OS number in
216 ldreq scno, [lr, #-4]
220 /* Legacy ABI only. */
221 ldr scno, [lr, #-4] @ get SWI instruction
222 A710( and ip, scno, #0x0f000000 @ check for SWI )
223 A710( teq ip, #0x0f000000 )
224 A710( bne .Larm710bug )
228 #ifdef CONFIG_ALIGNMENT_TRAP
229 ldr ip, __cr_alignment
231 mcr p15, 0, ip, c1, c0 @ update control register
236 adr tbl, sys_call_table @ load syscall table pointer
237 ldr ip, [tsk, #TI_FLAGS] @ check for syscall tracing
239 #if defined(CONFIG_OABI_COMPAT)
241 * If the swi argument is zero, this is an EABI call and we do nothing.
243 * If this is an old ABI call, get the syscall number into scno and
244 * get the old ABI syscall table address.
246 bics r10, r10, #0xff000000
247 eorne scno, r10, #__NR_OABI_SYSCALL_BASE
248 ldrne tbl, =sys_oabi_call_table
249 #elif !defined(CONFIG_AEABI)
250 bic scno, scno, #0xff000000 @ mask off SWI op-code
251 eor scno, scno, #__NR_SYSCALL_BASE @ check OS number
254 stmdb sp!, {r4, r5} @ push fifth and sixth args
255 tst ip, #_TIF_SYSCALL_TRACE @ are we tracing syscalls?
258 cmp scno, #NR_syscalls @ check upper syscall limit
259 adr lr, ret_fast_syscall @ return address
260 ldrcc pc, [tbl, scno, lsl #2] @ call sys_* routine
263 2: mov why, #0 @ no longer a real syscall
264 cmp scno, #(__ARM_NR_BASE - __NR_SYSCALL_BASE)
265 eor r0, scno, #__NR_SYSCALL_BASE @ put OS number back
267 b sys_ni_syscall @ not private func
270 * This is the really slow path. We're going to be doing
271 * context switches, and waiting for our parent to respond.
276 mov r0, #0 @ trace entry [IP = 0]
279 adr lr, __sys_trace_return @ return address
280 mov scno, r0 @ syscall number (possibly new)
281 add r1, sp, #S_R0 + S_OFF @ pointer to regs
282 cmp scno, #NR_syscalls @ check upper syscall limit
283 ldmccia r1, {r0 - r3} @ have to reload r0 - r3
284 ldrcc pc, [tbl, scno, lsl #2] @ call sys_* routine
288 str r0, [sp, #S_R0 + S_OFF]! @ save returned r0
291 mov r0, #1 @ trace exit [IP = 1]
296 #ifdef CONFIG_ALIGNMENT_TRAP
297 .type __cr_alignment, #object
304 * This is the syscall table declaration for native ABI syscalls.
305 * With EABI a couple syscalls are obsolete and defined as sys_ni_syscall.
307 #define ABI(native, compat) native
309 #define OBSOLETE(syscall) sys_ni_syscall
311 #define OBSOLETE(syscall) syscall
314 .type sys_call_table, #object
315 ENTRY(sys_call_table)
320 /*============================================================================
321 * Special system call wrappers
323 @ r0 = syscall number
325 .type sys_syscall, #function
327 bic scno, r0, #__NR_OABI_SYSCALL_BASE
328 cmp scno, #__NR_syscall - __NR_SYSCALL_BASE
329 cmpne scno, #NR_syscalls @ check range
330 stmloia sp, {r5, r6} @ shuffle args
335 ldrlo pc, [tbl, scno, lsl #2]
355 sys_sigsuspend_wrapper:
359 sys_rt_sigsuspend_wrapper:
363 sys_sigreturn_wrapper:
367 sys_rt_sigreturn_wrapper:
371 sys_sigaltstack_wrapper:
372 ldr r2, [sp, #S_OFF + S_SP]
375 sys_statfs64_wrapper:
380 sys_fstatfs64_wrapper:
386 * Note: off_4k (r5) is always units of 4K. If we can't do the requested
387 * offset, we return EINVAL.
392 moveq r5, r5, lsr #PAGE_SHIFT - 12
403 mrc p15, 0, r0, cr6, cr0, 2
407 #ifdef CONFIG_OABI_COMPAT
410 * These are syscalls with argument register differences
426 sys_oabi_ftruncate64:
438 * Let's declare a second syscall table for old ABI binaries
439 * using the compatibility syscall entries.
441 #define ABI(native, compat) compat
442 #define OBSOLETE(syscall) syscall
444 .type sys_oabi_call_table, #object
445 ENTRY(sys_oabi_call_table)