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/assembler.h>
12 #include <asm/unistd.h>
13 #include <asm/ftrace.h>
14 #include <asm/unwind.h>
16 #include <asm/unistd-oabi.h>
19 .equ NR_syscalls, __NR_syscalls
21 #ifdef CONFIG_NEED_RET_TO_USER
22 #include <mach/entry-macro.S>
24 .macro arch_ret_to_user, tmp1, tmp2
28 #include "entry-header.S"
32 #if !(IS_ENABLED(CONFIG_TRACE_IRQFLAGS) || IS_ENABLED(CONFIG_CONTEXT_TRACKING))
34 * This is the fast syscall return path. We do as little as possible here,
35 * such as avoiding writing r0 to the stack. We only use this path if we
36 * have tracing and context tracking disabled - the overheads from those
37 * features make this path too inefficient.
42 disable_irq_notrace @ disable interrupts
43 ldr r1, [tsk, #TI_FLAGS] @ re-check for syscall tracing
44 tst r1, #_TIF_SYSCALL_WORK | _TIF_WORK_MASK
47 /* perform architecture specific actions before user return */
48 arch_ret_to_user r1, lr
50 restore_user_regs fast = 1, offset = S_OFF
52 ENDPROC(ret_fast_syscall)
54 /* Ok, we need to do extra processing, enter the slow path. */
56 str r0, [sp, #S_R0+S_OFF]! @ returned r0
57 /* fall through to work_pending */
60 * The "replacement" ret_fast_syscall for when tracing or context tracking
61 * is enabled. As we will need to call out to some C functions, we save
62 * r0 first to avoid needing to save registers around each C function call.
67 str r0, [sp, #S_R0 + S_OFF]! @ save returned r0
68 disable_irq_notrace @ disable interrupts
69 ldr r1, [tsk, #TI_FLAGS] @ re-check for syscall tracing
70 tst r1, #_TIF_SYSCALL_WORK | _TIF_WORK_MASK
73 ENDPROC(ret_fast_syscall)
75 /* Slower path - fall through to work_pending */
78 tst r1, #_TIF_SYSCALL_WORK
79 bne __sys_trace_return_nosave
82 mov r2, why @ 'syscall'
86 movlt scno, #(__NR_restart_syscall - __NR_SYSCALL_BASE)
87 ldmia sp, {r0 - r6} @ have to reload r0 - r6
88 b local_restart @ ... and off we go
89 ENDPROC(ret_fast_syscall)
92 * "slow" syscall return path. "why" tells us if this was a real syscall.
93 * IRQs may be enabled here, so always disable them. Note that we use the
94 * "notrace" version to avoid calling into the tracing code unnecessarily.
95 * do_work_pending() will update this state if necessary.
99 disable_irq_notrace @ disable interrupts
100 ENTRY(ret_to_user_from_irq)
101 ldr r1, [tsk, #TI_FLAGS]
102 tst r1, #_TIF_WORK_MASK
103 bne slow_work_pending
105 asm_trace_hardirqs_on save = 0
107 /* perform architecture specific actions before user return */
108 arch_ret_to_user r1, lr
109 ct_user_enter save = 0
111 restore_user_regs fast = 0, offset = 0
112 ENDPROC(ret_to_user_from_irq)
116 * This is how we return from a fork.
124 1: get_thread_info tsk
126 ENDPROC(ret_from_fork)
128 /*=============================================================================
130 *-----------------------------------------------------------------------------
135 #ifdef CONFIG_CPU_V7M
138 sub sp, sp, #PT_REGS_SIZE
139 stmia sp, {r0 - r12} @ Calling r0 - r12
140 ARM( add r8, sp, #S_PC )
141 ARM( stmdb r8, {sp, lr}^ ) @ Calling sp, lr
143 THUMB( store_user_sp_lr r8, r10, S_SP ) @ calling sp, lr
144 mrs r8, spsr @ called from non-FIQ mode, so ok.
145 str lr, [sp, #S_PC] @ Save calling PC
146 str r8, [sp, #S_PSR] @ Save CPSR
147 str r0, [sp, #S_OLD_R0] @ Save OLD_R0
150 alignment_trap r10, ip, __cr_alignment
156 * Get the system call number.
159 #if defined(CONFIG_OABI_COMPAT)
162 * If we have CONFIG_OABI_COMPAT then we need to look at the swi
163 * value to determine if it is an EABI or an old ABI call.
165 #ifdef CONFIG_ARM_THUMB
167 movne r10, #0 @ no thumb OABI emulation
168 USER( ldreq r10, [lr, #-4] ) @ get SWI instruction
170 USER( ldr r10, [lr, #-4] ) @ get SWI instruction
172 ARM_BE8(rev r10, r10) @ little endian instruction
174 #elif defined(CONFIG_AEABI)
177 * Pure EABI user space always put syscall number into scno (r7).
179 #elif defined(CONFIG_ARM_THUMB)
180 /* Legacy ABI only, possibly thumb mode. */
181 tst r8, #PSR_T_BIT @ this is SPSR from save_user_regs
182 addne scno, r7, #__NR_SYSCALL_BASE @ put OS number in
183 USER( ldreq scno, [lr, #-4] )
186 /* Legacy ABI only. */
187 USER( ldr scno, [lr, #-4] ) @ get SWI instruction
192 adr tbl, sys_call_table @ load syscall table pointer
194 #if defined(CONFIG_OABI_COMPAT)
196 * If the swi argument is zero, this is an EABI call and we do nothing.
198 * If this is an old ABI call, get the syscall number into scno and
199 * get the old ABI syscall table address.
201 bics r10, r10, #0xff000000
202 eorne scno, r10, #__NR_OABI_SYSCALL_BASE
203 ldrne tbl, =sys_oabi_call_table
204 #elif !defined(CONFIG_AEABI)
205 bic scno, scno, #0xff000000 @ mask off SWI op-code
206 eor scno, scno, #__NR_SYSCALL_BASE @ check OS number
210 ldr r10, [tsk, #TI_FLAGS] @ check for syscall tracing
211 stmdb sp!, {r4, r5} @ push fifth and sixth args
213 tst r10, #_TIF_SYSCALL_WORK @ are we tracing syscalls?
216 cmp scno, #NR_syscalls @ check upper syscall limit
217 badr lr, ret_fast_syscall @ return address
218 ldrcc pc, [tbl, scno, lsl #2] @ call sys_* routine
221 2: cmp scno, #(__ARM_NR_BASE - __NR_SYSCALL_BASE)
222 eor r0, scno, #__NR_SYSCALL_BASE @ put OS number back
224 mov why, #0 @ no longer a real syscall
225 b sys_ni_syscall @ not private func
227 #if defined(CONFIG_OABI_COMPAT) || !defined(CONFIG_AEABI)
229 * We failed to handle a fault trying to access the page
230 * containing the swi instruction, but we're not really in a
231 * position to return -EFAULT. Instead, return back to the
232 * instruction and re-enter the user fault handling path trying
233 * to page it in. This will likely result in sending SEGV to the
244 * This is the really slow path. We're going to be doing
245 * context switches, and waiting for our parent to respond.
250 bl syscall_trace_enter
252 badr lr, __sys_trace_return @ return address
253 mov scno, r0 @ syscall number (possibly new)
254 add r1, sp, #S_R0 + S_OFF @ pointer to regs
255 cmp scno, #NR_syscalls @ check upper syscall limit
256 ldmccia r1, {r0 - r6} @ have to reload r0 - r6
257 stmccia sp, {r4, r5} @ and update the stack args
258 ldrcc pc, [tbl, scno, lsl #2] @ call sys_* routine
259 cmp scno, #-1 @ skip the syscall?
261 add sp, sp, #S_OFF @ restore stack
265 str r0, [sp, #S_R0 + S_OFF]! @ save returned r0
267 bl syscall_trace_exit
270 __sys_trace_return_nosave:
273 bl syscall_trace_exit
277 #ifdef CONFIG_ALIGNMENT_TRAP
278 .type __cr_alignment, #object
284 .macro syscall_table_start, sym
290 .macro syscall, nr, func
292 .error "Duplicated/unorded system call entry"
298 .equ __sys_nr, \nr + 1
301 .macro syscall_table_end, sym
302 .ifgt __sys_nr - __NR_syscalls
303 .error "System call table too big"
305 .rept __NR_syscalls - __sys_nr
311 #define NATIVE(nr, func) syscall nr, func
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 syscall_table_start sys_call_table
318 #define COMPAT(nr, native, compat) syscall nr, native
320 #include <calls-eabi.S>
322 #include <calls-oabi.S>
325 syscall_table_end sys_call_table
327 /*============================================================================
328 * Special system call wrappers
330 @ r0 = syscall number
333 bic scno, r0, #__NR_OABI_SYSCALL_BASE
334 cmp scno, #__NR_syscall - __NR_SYSCALL_BASE
335 cmpne scno, #NR_syscalls @ check range
336 stmloia sp, {r5, r6} @ shuffle args
341 ldrlo pc, [tbl, scno, lsl #2]
345 sys_sigreturn_wrapper:
347 mov why, #0 @ prevent syscall restart handling
349 ENDPROC(sys_sigreturn_wrapper)
351 sys_rt_sigreturn_wrapper:
353 mov why, #0 @ prevent syscall restart handling
355 ENDPROC(sys_rt_sigreturn_wrapper)
357 sys_statfs64_wrapper:
361 ENDPROC(sys_statfs64_wrapper)
363 sys_fstatfs64_wrapper:
367 ENDPROC(sys_fstatfs64_wrapper)
370 * Note: off_4k (r5) is always units of 4K. If we can't do the requested
371 * offset, we return EINVAL.
376 moveq r5, r5, lsr #PAGE_SHIFT - 12
387 #ifdef CONFIG_OABI_COMPAT
390 * These are syscalls with argument register differences
396 ENDPROC(sys_oabi_pread64)
401 ENDPROC(sys_oabi_pwrite64)
407 ENDPROC(sys_oabi_truncate64)
409 sys_oabi_ftruncate64:
413 ENDPROC(sys_oabi_ftruncate64)
420 ENDPROC(sys_oabi_readahead)
423 * Let's declare a second syscall table for old ABI binaries
424 * using the compatibility syscall entries.
426 syscall_table_start sys_oabi_call_table
427 #define COMPAT(nr, native, compat) syscall nr, compat
428 #include <calls-oabi.S>
429 syscall_table_end sys_oabi_call_table