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>
15 #include "entry-header.S"
20 * This is the fast syscall return path. We do as little as
21 * possible here, and this includes saving r0 back into the SVC
25 disable_irq @ disable interrupts
26 ldr r1, [tsk, #TI_FLAGS]
27 tst r1, #_TIF_WORK_MASK
30 /* perform architecture specific actions before user return */
31 arch_ret_to_user r1, lr
33 @ fast_restore_user_regs
34 ldr r1, [sp, #S_OFF + S_PSR] @ get calling cpsr
35 ldr lr, [sp, #S_OFF + S_PC]! @ get pc
36 msr spsr_cxsf, r1 @ save in spsr_svc
37 ldmdb sp, {r1 - lr}^ @ get calling r1 - lr
39 add sp, sp, #S_FRAME_SIZE - S_PC
40 movs pc, lr @ return & move spsr_svc into cpsr
43 * Ok, we need to do extra processing, enter the slow path.
46 str r0, [sp, #S_R0+S_OFF]! @ returned r0
48 tst r1, #_TIF_NEED_RESCHED
50 tst r1, #_TIF_SIGPENDING
53 mov r2, why @ 'syscall'
55 b ret_slow_syscall @ Check work again
60 * "slow" syscall return path. "why" tells us if this was a real syscall.
64 disable_irq @ disable interrupts
65 ldr r1, [tsk, #TI_FLAGS]
66 tst r1, #_TIF_WORK_MASK
69 /* perform architecture specific actions before user return */
70 arch_ret_to_user r1, lr
72 @ slow_restore_user_regs
73 ldr r1, [sp, #S_PSR] @ get calling cpsr
74 ldr lr, [sp, #S_PC]! @ get pc
75 msr spsr_cxsf, r1 @ save in spsr_svc
76 ldmdb sp, {r0 - lr}^ @ get calling r0 - lr
78 add sp, sp, #S_FRAME_SIZE - S_PC
79 movs pc, lr @ return & move spsr_svc into cpsr
83 * This is how we return from a fork.
88 ldr r1, [tsk, #TI_FLAGS] @ check for syscall tracing
90 tst r1, #_TIF_SYSCALL_TRACE @ are we tracing syscalls?
93 mov r0, #1 @ trace exit [IP = 1]
96 ENDPROC(ret_from_fork)
99 #define CALL(x) .equ NR_syscalls,NR_syscalls+1
102 #define CALL(x) .long x
104 #ifdef CONFIG_FUNCTION_TRACER
105 #ifdef CONFIG_DYNAMIC_FTRACE
107 stmdb sp!, {r0-r3, lr}
109 sub r0, r0, #MCOUNT_INSN_SIZE
114 ldr lr, [fp, #-4] @ restore lr
115 ldmia sp!, {r0-r3, pc}
118 stmdb sp!, {r0-r3, lr}
121 sub r0, r0, #MCOUNT_INSN_SIZE
126 ldr lr, [fp, #-4] @ restore lr
127 ldmia sp!, {r0-r3, pc}
132 stmdb sp!, {r0-r3, lr}
133 ldr r0, =ftrace_trace_function
138 ldr lr, [fp, #-4] @ restore lr
139 ldmia sp!, {r0-r3, pc}
142 ldr r1, [fp, #-4] @ lr of instrumented routine
144 sub r0, r0, #MCOUNT_INSN_SIZE
147 mov lr, r1 @ restore lr
148 ldmia sp!, {r0-r3, pc}
150 #endif /* CONFIG_DYNAMIC_FTRACE */
156 #endif /* CONFIG_FUNCTION_TRACER */
158 /*=============================================================================
160 *-----------------------------------------------------------------------------
163 /* If we're optimising for StrongARM the resulting code won't
164 run on an ARM7 and we can save a couple of instructions.
166 #ifdef CONFIG_CPU_ARM710
167 #define A710(code...) code
169 ldmia sp, {r0 - lr}^ @ Get calling r0 - lr
171 add sp, sp, #S_FRAME_SIZE
174 #define A710(code...)
179 sub sp, sp, #S_FRAME_SIZE
180 stmia sp, {r0 - r12} @ Calling r0 - r12
182 stmdb r8, {sp, lr}^ @ Calling sp, lr
183 mrs r8, spsr @ called from non-FIQ mode, so ok.
184 str lr, [sp, #S_PC] @ Save calling PC
185 str r8, [sp, #S_PSR] @ Save CPSR
186 str r0, [sp, #S_OLD_R0] @ Save OLD_R0
190 * Get the system call number.
193 #if defined(CONFIG_OABI_COMPAT)
196 * If we have CONFIG_OABI_COMPAT then we need to look at the swi
197 * value to determine if it is an EABI or an old ABI call.
199 #ifdef CONFIG_ARM_THUMB
201 movne r10, #0 @ no thumb OABI emulation
202 ldreq r10, [lr, #-4] @ get SWI instruction
204 ldr r10, [lr, #-4] @ get SWI instruction
205 A710( and ip, r10, #0x0f000000 @ check for SWI )
206 A710( teq ip, #0x0f000000 )
207 A710( bne .Larm710bug )
210 #elif defined(CONFIG_AEABI)
213 * Pure EABI user space always put syscall number into scno (r7).
215 A710( ldr ip, [lr, #-4] @ get SWI instruction )
216 A710( and ip, ip, #0x0f000000 @ check for SWI )
217 A710( teq ip, #0x0f000000 )
218 A710( bne .Larm710bug )
220 #elif defined(CONFIG_ARM_THUMB)
222 /* Legacy ABI only, possibly thumb mode. */
223 tst r8, #PSR_T_BIT @ this is SPSR from save_user_regs
224 addne scno, r7, #__NR_SYSCALL_BASE @ put OS number in
225 ldreq scno, [lr, #-4]
229 /* Legacy ABI only. */
230 ldr scno, [lr, #-4] @ get SWI instruction
231 A710( and ip, scno, #0x0f000000 @ check for SWI )
232 A710( teq ip, #0x0f000000 )
233 A710( bne .Larm710bug )
237 #ifdef CONFIG_ALIGNMENT_TRAP
238 ldr ip, __cr_alignment
240 mcr p15, 0, ip, c1, c0 @ update control register
245 adr tbl, sys_call_table @ load syscall table pointer
246 ldr ip, [tsk, #TI_FLAGS] @ check for syscall tracing
248 #if defined(CONFIG_OABI_COMPAT)
250 * If the swi argument is zero, this is an EABI call and we do nothing.
252 * If this is an old ABI call, get the syscall number into scno and
253 * get the old ABI syscall table address.
255 bics r10, r10, #0xff000000
256 eorne scno, r10, #__NR_OABI_SYSCALL_BASE
257 ldrne tbl, =sys_oabi_call_table
258 #elif !defined(CONFIG_AEABI)
259 bic scno, scno, #0xff000000 @ mask off SWI op-code
260 eor scno, scno, #__NR_SYSCALL_BASE @ check OS number
263 stmdb sp!, {r4, r5} @ push fifth and sixth args
264 tst ip, #_TIF_SYSCALL_TRACE @ are we tracing syscalls?
267 cmp scno, #NR_syscalls @ check upper syscall limit
268 adr lr, ret_fast_syscall @ return address
269 ldrcc pc, [tbl, scno, lsl #2] @ call sys_* routine
272 2: mov why, #0 @ no longer a real syscall
273 cmp scno, #(__ARM_NR_BASE - __NR_SYSCALL_BASE)
274 eor r0, scno, #__NR_SYSCALL_BASE @ put OS number back
276 b sys_ni_syscall @ not private func
280 * This is the really slow path. We're going to be doing
281 * context switches, and waiting for our parent to respond.
286 mov r0, #0 @ trace entry [IP = 0]
289 adr lr, __sys_trace_return @ return address
290 mov scno, r0 @ syscall number (possibly new)
291 add r1, sp, #S_R0 + S_OFF @ pointer to regs
292 cmp scno, #NR_syscalls @ check upper syscall limit
293 ldmccia r1, {r0 - r3} @ have to reload r0 - r3
294 ldrcc pc, [tbl, scno, lsl #2] @ call sys_* routine
298 str r0, [sp, #S_R0 + S_OFF]! @ save returned r0
301 mov r0, #1 @ trace exit [IP = 1]
306 #ifdef CONFIG_ALIGNMENT_TRAP
307 .type __cr_alignment, #object
314 * This is the syscall table declaration for native ABI syscalls.
315 * With EABI a couple syscalls are obsolete and defined as sys_ni_syscall.
317 #define ABI(native, compat) native
319 #define OBSOLETE(syscall) sys_ni_syscall
321 #define OBSOLETE(syscall) syscall
324 .type sys_call_table, #object
325 ENTRY(sys_call_table)
330 /*============================================================================
331 * Special system call wrappers
333 @ r0 = syscall number
336 bic scno, r0, #__NR_OABI_SYSCALL_BASE
337 cmp scno, #__NR_syscall - __NR_SYSCALL_BASE
338 cmpne scno, #NR_syscalls @ check range
339 stmloia sp, {r5, r6} @ shuffle args
344 ldrlo pc, [tbl, scno, lsl #2]
351 ENDPROC(sys_fork_wrapper)
356 ENDPROC(sys_vfork_wrapper)
361 ENDPROC(sys_execve_wrapper)
367 ENDPROC(sys_clone_wrapper)
369 sys_sigsuspend_wrapper:
372 ENDPROC(sys_sigsuspend_wrapper)
374 sys_rt_sigsuspend_wrapper:
377 ENDPROC(sys_rt_sigsuspend_wrapper)
379 sys_sigreturn_wrapper:
382 ENDPROC(sys_sigreturn_wrapper)
384 sys_rt_sigreturn_wrapper:
387 ENDPROC(sys_rt_sigreturn_wrapper)
389 sys_sigaltstack_wrapper:
390 ldr r2, [sp, #S_OFF + S_SP]
392 ENDPROC(sys_sigaltstack_wrapper)
394 sys_statfs64_wrapper:
398 ENDPROC(sys_statfs64_wrapper)
400 sys_fstatfs64_wrapper:
404 ENDPROC(sys_fstatfs64_wrapper)
407 * Note: off_4k (r5) is always units of 4K. If we can't do the requested
408 * offset, we return EINVAL.
413 moveq r5, r5, lsr #PAGE_SHIFT - 12
425 mrc p15, 0, r0, cr6, cr0, 2
429 ENDPROC(pabort_noifar)
431 #ifdef CONFIG_OABI_COMPAT
434 * These are syscalls with argument register differences
440 ENDPROC(sys_oabi_pread64)
445 ENDPROC(sys_oabi_pwrite64)
451 ENDPROC(sys_oabi_truncate64)
453 sys_oabi_ftruncate64:
457 ENDPROC(sys_oabi_ftruncate64)
464 ENDPROC(sys_oabi_readahead)
467 * Let's declare a second syscall table for old ABI binaries
468 * using the compatibility syscall entries.
470 #define ABI(native, compat) compat
471 #define OBSOLETE(syscall) syscall
473 .type sys_oabi_call_table, #object
474 ENTRY(sys_oabi_call_table)