blob: b48dd4f37f8067e781ee3e135ed7aff27940371f [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
Russell King6ebbf2c2014-06-30 16:29:12 +010011#include <asm/assembler.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <asm/unistd.h>
Abhishek Sagar395a59d2008-06-21 23:47:27 +053013#include <asm/ftrace.h>
Catalin Marinasc4c57162009-02-16 11:42:09 +010014#include <asm/unwind.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
Rob Herring13a50452012-02-07 09:28:22 -060016#ifdef CONFIG_NEED_RET_TO_USER
17#include <mach/entry-macro.S>
18#else
19 .macro arch_ret_to_user, tmp1, tmp2
20 .endm
21#endif
22
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include "entry-header.S"
24
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26 .align 5
27/*
28 * This is the fast syscall return path. We do as little as
29 * possible here, and this includes saving r0 back into the SVC
30 * stack.
31 */
32ret_fast_syscall:
Catalin Marinasc4c57162009-02-16 11:42:09 +010033 UNWIND(.fnstart )
34 UNWIND(.cantunwind )
Russell King1ec42c02005-04-26 15:18:26 +010035 disable_irq @ disable interrupts
Russell King1b979372015-05-15 11:02:23 +010036 ldr r1, [tsk, #TI_FLAGS] @ re-check for syscall tracing
37 tst r1, #_TIF_SYSCALL_WORK
38 bne __sys_trace_return
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 tst r1, #_TIF_WORK_MASK
40 bne fast_work_pending
Todd Android Poynord13e5ed2010-12-23 01:52:44 +010041 asm_trace_hardirqs_on
Russell Kingf4dc9a42005-04-26 15:20:34 +010042
Dan Williamsf80dff92007-02-16 22:16:32 +010043 /* perform architecture specific actions before user return */
44 arch_ret_to_user r1, lr
Kevin Hilmanb0088482013-03-28 22:54:40 +010045 ct_user_enter
Dan Williamsf80dff92007-02-16 22:16:32 +010046
Catalin Marinasb86040a2009-07-24 12:32:54 +010047 restore_user_regs fast = 1, offset = S_OFF
Catalin Marinasc4c57162009-02-16 11:42:09 +010048 UNWIND(.fnend )
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50/*
51 * Ok, we need to do extra processing, enter the slow path.
52 */
53fast_work_pending:
54 str r0, [sp, #S_R0+S_OFF]! @ returned r0
55work_pending:
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 mov r0, sp @ 'regs'
57 mov r2, why @ 'syscall'
Al Viro0a267fa2012-07-19 17:47:55 +010058 bl do_work_pending
Al Viro66285212012-07-19 17:48:50 +010059 cmp r0, #0
Al Viro81783782012-07-19 17:48:21 +010060 beq no_work_pending
Al Viro66285212012-07-19 17:48:50 +010061 movlt scno, #(__NR_restart_syscall - __NR_SYSCALL_BASE)
Al Viro81783782012-07-19 17:48:21 +010062 ldmia sp, {r0 - r6} @ have to reload r0 - r6
63 b local_restart @ ... and off we go
Drew Richardsone83dd372015-08-06 18:50:27 +010064ENDPROC(ret_fast_syscall)
Al Viro81783782012-07-19 17:48:21 +010065
Linus Torvalds1da177e2005-04-16 15:20:36 -070066/*
67 * "slow" syscall return path. "why" tells us if this was a real syscall.
68 */
69ENTRY(ret_to_user)
70ret_slow_syscall:
Russell King1ec42c02005-04-26 15:18:26 +010071 disable_irq @ disable interrupts
Ming Lei9fc25522011-06-05 02:24:58 +010072ENTRY(ret_to_user_from_irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 ldr r1, [tsk, #TI_FLAGS]
74 tst r1, #_TIF_WORK_MASK
75 bne work_pending
76no_work_pending:
Todd Android Poynord13e5ed2010-12-23 01:52:44 +010077 asm_trace_hardirqs_on
Russell King651e9492013-03-28 11:44:25 +000078
Dan Williamsf80dff92007-02-16 22:16:32 +010079 /* perform architecture specific actions before user return */
80 arch_ret_to_user r1, lr
Kevin Hilmanb0088482013-03-28 22:54:40 +010081 ct_user_enter save = 0
Dan Williamsf80dff92007-02-16 22:16:32 +010082
Catalin Marinasb86040a2009-07-24 12:32:54 +010083 restore_user_regs fast = 0, offset = 0
Ming Lei9fc25522011-06-05 02:24:58 +010084ENDPROC(ret_to_user_from_irq)
Catalin Marinas93ed3972008-08-28 11:22:32 +010085ENDPROC(ret_to_user)
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87/*
88 * This is how we return from a fork.
89 */
90ENTRY(ret_from_fork)
91 bl schedule_tail
Al Viro9fff2fa2012-10-10 22:23:29 -040092 cmp r5, #0
93 movne r0, r4
Russell King14327c62015-04-21 14:17:25 +010094 badrne lr, 1f
Russell King6ebbf2c2014-06-30 16:29:12 +010095 retne r5
Russell King68687c82012-10-15 00:16:49 +0100961: get_thread_info tsk
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 b ret_slow_syscall
Catalin Marinas93ed3972008-08-28 11:22:32 +010098ENDPROC(ret_from_fork)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Al Virofa1b4f92006-01-19 12:57:01 +0000100 .equ NR_syscalls,0
101#define CALL(x) .equ NR_syscalls,NR_syscalls+1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102#include "calls.S"
Wade Farnsworth1f66e062012-09-07 18:18:25 +0100103
104/*
105 * Ensure that the system call table is equal to __NR_syscalls,
106 * which is the value the rest of the system sees
107 */
108.ifne NR_syscalls - __NR_syscalls
109.error "__NR_syscalls is not equal to the size of the syscall table"
110.endif
111
Al Virofa1b4f92006-01-19 12:57:01 +0000112#undef CALL
113#define CALL(x) .long x
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
115/*=============================================================================
116 * SWI handler
117 *-----------------------------------------------------------------------------
118 */
119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 .align 5
121ENTRY(vector_swi)
Uwe Kleine-König19c4d592010-05-21 18:06:42 +0100122#ifdef CONFIG_CPU_V7M
123 v7m_exception_entry
124#else
Russell Kingf4dc9a42005-04-26 15:20:34 +0100125 sub sp, sp, #S_FRAME_SIZE
126 stmia sp, {r0 - r12} @ Calling r0 - r12
Catalin Marinasb86040a2009-07-24 12:32:54 +0100127 ARM( add r8, sp, #S_PC )
128 ARM( stmdb r8, {sp, lr}^ ) @ Calling sp, lr
129 THUMB( mov r8, sp )
130 THUMB( store_user_sp_lr r8, r10, S_SP ) @ calling sp, lr
Russell Kingf4dc9a42005-04-26 15:20:34 +0100131 mrs r8, spsr @ called from non-FIQ mode, so ok.
132 str lr, [sp, #S_PC] @ Save calling PC
133 str r8, [sp, #S_PSR] @ Save CPSR
134 str r0, [sp, #S_OLD_R0] @ Save OLD_R0
Uwe Kleine-König19c4d592010-05-21 18:06:42 +0100135#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 zero_fp
Russell King195b58a2014-08-28 13:08:14 +0100137 alignment_trap r10, ip, __cr_alignment
Will Deacon1aa2b3b2013-06-05 11:25:13 +0100138 enable_irq
139 ct_user_exit
140 get_thread_info tsk
141
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100142 /*
143 * Get the system call number.
144 */
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000145
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000146#if defined(CONFIG_OABI_COMPAT)
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000147
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000148 /*
149 * If we have CONFIG_OABI_COMPAT then we need to look at the swi
150 * value to determine if it is an EABI or an old ABI call.
151 */
152#ifdef CONFIG_ARM_THUMB
153 tst r8, #PSR_T_BIT
154 movne r10, #0 @ no thumb OABI emulation
Will Deacon1aa2b3b2013-06-05 11:25:13 +0100155 USER( ldreq r10, [lr, #-4] ) @ get SWI instruction
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000156#else
Will Deacon1aa2b3b2013-06-05 11:25:13 +0100157 USER( ldr r10, [lr, #-4] ) @ get SWI instruction
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000158#endif
Ben Dooks457c2402013-02-12 18:59:57 +0000159 ARM_BE8(rev r10, r10) @ little endian instruction
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000160
161#elif defined(CONFIG_AEABI)
162
163 /*
164 * Pure EABI user space always put syscall number into scno (r7).
165 */
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000166#elif defined(CONFIG_ARM_THUMB)
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000167 /* Legacy ABI only, possibly thumb mode. */
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100168 tst r8, #PSR_T_BIT @ this is SPSR from save_user_regs
169 addne scno, r7, #__NR_SYSCALL_BASE @ put OS number in
Will Deacon1aa2b3b2013-06-05 11:25:13 +0100170 USER( ldreq scno, [lr, #-4] )
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000171
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100172#else
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000173 /* Legacy ABI only. */
Will Deacon1aa2b3b2013-06-05 11:25:13 +0100174 USER( ldr scno, [lr, #-4] ) @ get SWI instruction
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100175#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000177 adr tbl, sys_call_table @ load syscall table pointer
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000178
179#if defined(CONFIG_OABI_COMPAT)
180 /*
181 * If the swi argument is zero, this is an EABI call and we do nothing.
182 *
183 * If this is an old ABI call, get the syscall number into scno and
184 * get the old ABI syscall table address.
185 */
186 bics r10, r10, #0xff000000
187 eorne scno, r10, #__NR_OABI_SYSCALL_BASE
188 ldrne tbl, =sys_oabi_call_table
189#elif !defined(CONFIG_AEABI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 bic scno, scno, #0xff000000 @ mask off SWI op-code
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100191 eor scno, scno, #__NR_SYSCALL_BASE @ check OS number
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000192#endif
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000193
Al Viro81783782012-07-19 17:48:21 +0100194local_restart:
Nicolas Pitre70c70d92010-08-26 15:08:35 -0700195 ldr r10, [tsk, #TI_FLAGS] @ check for syscall tracing
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000196 stmdb sp!, {r4, r5} @ push fifth and sixth args
Nicolas Pitre70c70d92010-08-26 15:08:35 -0700197
Nathaniel Husted29ef73b2012-01-03 14:23:09 -0500198 tst r10, #_TIF_SYSCALL_WORK @ are we tracing syscalls?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 bne __sys_trace
200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 cmp scno, #NR_syscalls @ check upper syscall limit
Russell King14327c62015-04-21 14:17:25 +0100202 badr lr, ret_fast_syscall @ return address
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 ldrcc pc, [tbl, scno, lsl #2] @ call sys_* routine
204
205 add r1, sp, #S_OFF
Will Deacond95bc252013-09-19 10:32:20 +01002062: cmp scno, #(__ARM_NR_BASE - __NR_SYSCALL_BASE)
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100207 eor r0, scno, #__NR_SYSCALL_BASE @ put OS number back
Will Deacon377747c2013-05-13 19:16:34 +0100208 bcs arm_syscall
Will Deacond95bc252013-09-19 10:32:20 +0100209 mov why, #0 @ no longer a real syscall
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 b sys_ni_syscall @ not private func
Will Deacon1aa2b3b2013-06-05 11:25:13 +0100211
212#if defined(CONFIG_OABI_COMPAT) || !defined(CONFIG_AEABI)
213 /*
214 * We failed to handle a fault trying to access the page
215 * containing the swi instruction, but we're not really in a
216 * position to return -EFAULT. Instead, return back to the
217 * instruction and re-enter the user fault handling path trying
218 * to page it in. This will likely result in sending SEGV to the
219 * current task.
220 */
2219001:
222 sub lr, lr, #4
223 str lr, [sp, #S_PC]
224 b ret_fast_syscall
225#endif
Catalin Marinas93ed3972008-08-28 11:22:32 +0100226ENDPROC(vector_swi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228 /*
229 * This is the really slow path. We're going to be doing
230 * context switches, and waiting for our parent to respond.
231 */
232__sys_trace:
Will Deaconad722542012-07-06 15:50:14 +0100233 mov r1, scno
234 add r0, sp, #S_OFF
235 bl syscall_trace_enter
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Russell King14327c62015-04-21 14:17:25 +0100237 badr lr, __sys_trace_return @ return address
Nicolas Pitre3f471122006-01-14 19:30:04 +0000238 mov scno, r0 @ syscall number (possibly new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 add r1, sp, #S_R0 + S_OFF @ pointer to regs
240 cmp scno, #NR_syscalls @ check upper syscall limit
Will Deaconc7aa00d2012-07-19 17:49:22 +0100241 ldmccia r1, {r0 - r6} @ have to reload r0 - r6
242 stmccia sp, {r4, r5} @ and update the stack args
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 ldrcc pc, [tbl, scno, lsl #2] @ call sys_* routine
Kees Cookad75b512012-11-15 22:12:17 +0100244 cmp scno, #-1 @ skip the syscall?
245 bne 2b
246 add sp, sp, #S_OFF @ restore stack
247 b ret_slow_syscall
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
249__sys_trace_return:
250 str r0, [sp, #S_R0 + S_OFF]! @ save returned r0
Will Deaconad722542012-07-06 15:50:14 +0100251 mov r0, sp
252 bl syscall_trace_exit
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 b ret_slow_syscall
254
255 .align 5
256#ifdef CONFIG_ALIGNMENT_TRAP
257 .type __cr_alignment, #object
258__cr_alignment:
259 .word cr_alignment
260#endif
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000261 .ltorg
262
263/*
264 * This is the syscall table declaration for native ABI syscalls.
265 * With EABI a couple syscalls are obsolete and defined as sys_ni_syscall.
266 */
267#define ABI(native, compat) native
268#ifdef CONFIG_AEABI
269#define OBSOLETE(syscall) sys_ni_syscall
270#else
271#define OBSOLETE(syscall) syscall
272#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
274 .type sys_call_table, #object
275ENTRY(sys_call_table)
276#include "calls.S"
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000277#undef ABI
278#undef OBSOLETE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
280/*============================================================================
281 * Special system call wrappers
282 */
283@ r0 = syscall number
Russell King567bd982005-12-17 15:25:42 +0000284@ r8 = syscall table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285sys_syscall:
Paul Brook52475932006-05-16 14:25:55 +0100286 bic scno, r0, #__NR_OABI_SYSCALL_BASE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 cmp scno, #__NR_syscall - __NR_SYSCALL_BASE
288 cmpne scno, #NR_syscalls @ check range
289 stmloia sp, {r5, r6} @ shuffle args
290 movlo r0, r1
291 movlo r1, r2
292 movlo r2, r3
293 movlo r3, r4
294 ldrlo pc, [tbl, scno, lsl #2]
295 b sys_ni_syscall
Catalin Marinas93ed3972008-08-28 11:22:32 +0100296ENDPROC(sys_syscall)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298sys_sigreturn_wrapper:
299 add r0, sp, #S_OFF
Al Viro653d48b2010-09-17 14:34:39 +0100300 mov why, #0 @ prevent syscall restart handling
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 b sys_sigreturn
Catalin Marinas93ed3972008-08-28 11:22:32 +0100302ENDPROC(sys_sigreturn_wrapper)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
304sys_rt_sigreturn_wrapper:
305 add r0, sp, #S_OFF
Al Viro653d48b2010-09-17 14:34:39 +0100306 mov why, #0 @ prevent syscall restart handling
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 b sys_rt_sigreturn
Catalin Marinas93ed3972008-08-28 11:22:32 +0100308ENDPROC(sys_rt_sigreturn_wrapper)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
Nicolas Pitre713c4812006-01-14 16:35:03 +0000310sys_statfs64_wrapper:
311 teq r1, #88
312 moveq r1, #84
313 b sys_statfs64
Catalin Marinas93ed3972008-08-28 11:22:32 +0100314ENDPROC(sys_statfs64_wrapper)
Nicolas Pitre713c4812006-01-14 16:35:03 +0000315
316sys_fstatfs64_wrapper:
317 teq r1, #88
318 moveq r1, #84
319 b sys_fstatfs64
Catalin Marinas93ed3972008-08-28 11:22:32 +0100320ENDPROC(sys_fstatfs64_wrapper)
Nicolas Pitre713c4812006-01-14 16:35:03 +0000321
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322/*
323 * Note: off_4k (r5) is always units of 4K. If we can't do the requested
324 * offset, we return EINVAL.
325 */
326sys_mmap2:
327#if PAGE_SHIFT > 12
328 tst r5, #PGOFF_MASK
329 moveq r5, r5, lsr #PAGE_SHIFT - 12
330 streq r5, [sp, #4]
Al Virof8b72562009-11-30 17:37:04 -0500331 beq sys_mmap_pgoff
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 mov r0, #-EINVAL
Russell King6ebbf2c2014-06-30 16:29:12 +0100333 ret lr
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334#else
335 str r5, [sp, #4]
Al Virof8b72562009-11-30 17:37:04 -0500336 b sys_mmap_pgoff
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337#endif
Catalin Marinas93ed3972008-08-28 11:22:32 +0100338ENDPROC(sys_mmap2)
Nicolas Pitre687ad012006-01-14 16:35:31 +0000339
340#ifdef CONFIG_OABI_COMPAT
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000341
Nicolas Pitre687ad012006-01-14 16:35:31 +0000342/*
343 * These are syscalls with argument register differences
344 */
345
346sys_oabi_pread64:
347 stmia sp, {r3, r4}
348 b sys_pread64
Catalin Marinas93ed3972008-08-28 11:22:32 +0100349ENDPROC(sys_oabi_pread64)
Nicolas Pitre687ad012006-01-14 16:35:31 +0000350
351sys_oabi_pwrite64:
352 stmia sp, {r3, r4}
353 b sys_pwrite64
Catalin Marinas93ed3972008-08-28 11:22:32 +0100354ENDPROC(sys_oabi_pwrite64)
Nicolas Pitre687ad012006-01-14 16:35:31 +0000355
356sys_oabi_truncate64:
357 mov r3, r2
358 mov r2, r1
359 b sys_truncate64
Catalin Marinas93ed3972008-08-28 11:22:32 +0100360ENDPROC(sys_oabi_truncate64)
Nicolas Pitre687ad012006-01-14 16:35:31 +0000361
362sys_oabi_ftruncate64:
363 mov r3, r2
364 mov r2, r1
365 b sys_ftruncate64
Catalin Marinas93ed3972008-08-28 11:22:32 +0100366ENDPROC(sys_oabi_ftruncate64)
Nicolas Pitre687ad012006-01-14 16:35:31 +0000367
368sys_oabi_readahead:
369 str r3, [sp]
370 mov r3, r2
371 mov r2, r1
372 b sys_readahead
Catalin Marinas93ed3972008-08-28 11:22:32 +0100373ENDPROC(sys_oabi_readahead)
Nicolas Pitre687ad012006-01-14 16:35:31 +0000374
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000375/*
376 * Let's declare a second syscall table for old ABI binaries
377 * using the compatibility syscall entries.
378 */
379#define ABI(native, compat) compat
380#define OBSOLETE(syscall) syscall
381
382 .type sys_oabi_call_table, #object
383ENTRY(sys_oabi_call_table)
384#include "calls.S"
385#undef ABI
386#undef OBSOLETE
387
Nicolas Pitre687ad012006-01-14 16:35:31 +0000388#endif
389