blob: ca3614dc6938e1595f71a095f53456eb26701bec [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>
Russell King96a8fae2016-10-18 19:57:01 +010015#ifdef CONFIG_AEABI
16#include <asm/unistd-oabi.h>
17#endif
18
19 .equ NR_syscalls, __NR_syscalls
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
Rob Herring13a50452012-02-07 09:28:22 -060021#ifdef CONFIG_NEED_RET_TO_USER
22#include <mach/entry-macro.S>
23#else
24 .macro arch_ret_to_user, tmp1, tmp2
25 .endm
26#endif
27
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include "entry-header.S"
29
Russell King309ee042017-03-24 16:15:45 +000030saved_psr .req r8
Russell Kingfcea4522017-03-24 16:22:10 +000031#if defined(CONFIG_TRACE_IRQFLAGS) || defined(CONFIG_CONTEXT_TRACKING)
32saved_pc .req r9
33#define TRACE(x...) x
34#else
Russell King309ee042017-03-24 16:15:45 +000035saved_pc .req lr
Russell Kingfcea4522017-03-24 16:22:10 +000036#define TRACE(x...)
37#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39 .align 5
Russell King3302cad2015-08-20 16:13:37 +010040#if !(IS_ENABLED(CONFIG_TRACE_IRQFLAGS) || IS_ENABLED(CONFIG_CONTEXT_TRACKING))
Linus Torvalds1da177e2005-04-16 15:20:36 -070041/*
Russell King3302cad2015-08-20 16:13:37 +010042 * This is the fast syscall return path. We do as little as possible here,
43 * such as avoiding writing r0 to the stack. We only use this path if we
44 * have tracing and context tracking disabled - the overheads from those
45 * features make this path too inefficient.
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 */
47ret_fast_syscall:
Catalin Marinasc4c57162009-02-16 11:42:09 +010048 UNWIND(.fnstart )
49 UNWIND(.cantunwind )
Russell King3302cad2015-08-20 16:13:37 +010050 disable_irq_notrace @ disable interrupts
Russell King1b979372015-05-15 11:02:23 +010051 ldr r1, [tsk, #TI_FLAGS] @ re-check for syscall tracing
Thomas Garnier73ac5d62017-06-14 18:12:02 -070052 tst r1, #_TIF_SYSCALL_WORK
53 bne fast_work_pending
54 tst r1, #_TIF_WORK_MASK
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 bne fast_work_pending
Russell Kingf4dc9a42005-04-26 15:20:34 +010056
Dan Williamsf80dff92007-02-16 22:16:32 +010057 /* perform architecture specific actions before user return */
58 arch_ret_to_user r1, lr
59
Catalin Marinasb86040a2009-07-24 12:32:54 +010060 restore_user_regs fast = 1, offset = S_OFF
Catalin Marinasc4c57162009-02-16 11:42:09 +010061 UNWIND(.fnend )
Russell King3302cad2015-08-20 16:13:37 +010062ENDPROC(ret_fast_syscall)
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Russell King3302cad2015-08-20 16:13:37 +010064 /* Ok, we need to do extra processing, enter the slow path. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070065fast_work_pending:
66 str r0, [sp, #S_R0+S_OFF]! @ returned r0
Russell King3302cad2015-08-20 16:13:37 +010067 /* fall through to work_pending */
68#else
69/*
70 * The "replacement" ret_fast_syscall for when tracing or context tracking
71 * is enabled. As we will need to call out to some C functions, we save
72 * r0 first to avoid needing to save registers around each C function call.
73 */
74ret_fast_syscall:
75 UNWIND(.fnstart )
76 UNWIND(.cantunwind )
77 str r0, [sp, #S_R0 + S_OFF]! @ save returned r0
78 disable_irq_notrace @ disable interrupts
79 ldr r1, [tsk, #TI_FLAGS] @ re-check for syscall tracing
Thomas Garnier73ac5d62017-06-14 18:12:02 -070080 tst r1, #_TIF_SYSCALL_WORK
81 bne fast_work_pending
82 tst r1, #_TIF_WORK_MASK
Russell King3302cad2015-08-20 16:13:37 +010083 beq no_work_pending
84 UNWIND(.fnend )
85ENDPROC(ret_fast_syscall)
86
87 /* Slower path - fall through to work_pending */
Thomas Garnier73ac5d62017-06-14 18:12:02 -070088fast_work_pending:
Russell King3302cad2015-08-20 16:13:37 +010089#endif
90
91 tst r1, #_TIF_SYSCALL_WORK
92 bne __sys_trace_return_nosave
93slow_work_pending:
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 mov r0, sp @ 'regs'
95 mov r2, why @ 'syscall'
Al Viro0a267fa2012-07-19 17:47:55 +010096 bl do_work_pending
Al Viro66285212012-07-19 17:48:50 +010097 cmp r0, #0
Al Viro81783782012-07-19 17:48:21 +010098 beq no_work_pending
Al Viro66285212012-07-19 17:48:50 +010099 movlt scno, #(__NR_restart_syscall - __NR_SYSCALL_BASE)
Al Viro81783782012-07-19 17:48:21 +0100100 ldmia sp, {r0 - r6} @ have to reload r0 - r6
101 b local_restart @ ... and off we go
Drew Richardsone83dd372015-08-06 18:50:27 +0100102ENDPROC(ret_fast_syscall)
Al Viro81783782012-07-19 17:48:21 +0100103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104/*
105 * "slow" syscall return path. "why" tells us if this was a real syscall.
Russell King3302cad2015-08-20 16:13:37 +0100106 * IRQs may be enabled here, so always disable them. Note that we use the
107 * "notrace" version to avoid calling into the tracing code unnecessarily.
108 * do_work_pending() will update this state if necessary.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 */
110ENTRY(ret_to_user)
111ret_slow_syscall:
Russell King3302cad2015-08-20 16:13:37 +0100112 disable_irq_notrace @ disable interrupts
Ming Lei9fc25522011-06-05 02:24:58 +0100113ENTRY(ret_to_user_from_irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 ldr r1, [tsk, #TI_FLAGS]
115 tst r1, #_TIF_WORK_MASK
Russell King3302cad2015-08-20 16:13:37 +0100116 bne slow_work_pending
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117no_work_pending:
Russell King3302cad2015-08-20 16:13:37 +0100118 asm_trace_hardirqs_on save = 0
Russell King651e9492013-03-28 11:44:25 +0000119
Dan Williamsf80dff92007-02-16 22:16:32 +0100120 /* perform architecture specific actions before user return */
121 arch_ret_to_user r1, lr
Kevin Hilmanb0088482013-03-28 22:54:40 +0100122 ct_user_enter save = 0
Dan Williamsf80dff92007-02-16 22:16:32 +0100123
Catalin Marinasb86040a2009-07-24 12:32:54 +0100124 restore_user_regs fast = 0, offset = 0
Ming Lei9fc25522011-06-05 02:24:58 +0100125ENDPROC(ret_to_user_from_irq)
Catalin Marinas93ed3972008-08-28 11:22:32 +0100126ENDPROC(ret_to_user)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
128/*
129 * This is how we return from a fork.
130 */
131ENTRY(ret_from_fork)
132 bl schedule_tail
Al Viro9fff2fa2012-10-10 22:23:29 -0400133 cmp r5, #0
134 movne r0, r4
Russell King14327c62015-04-21 14:17:25 +0100135 badrne lr, 1f
Russell King6ebbf2c2014-06-30 16:29:12 +0100136 retne r5
Russell King68687c82012-10-15 00:16:49 +01001371: get_thread_info tsk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 b ret_slow_syscall
Catalin Marinas93ed3972008-08-28 11:22:32 +0100139ENDPROC(ret_from_fork)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141/*=============================================================================
142 * SWI handler
143 *-----------------------------------------------------------------------------
144 */
145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 .align 5
147ENTRY(vector_swi)
Uwe Kleine-König19c4d592010-05-21 18:06:42 +0100148#ifdef CONFIG_CPU_V7M
149 v7m_exception_entry
150#else
Russell King5745eef62016-05-10 16:34:27 +0100151 sub sp, sp, #PT_REGS_SIZE
Russell Kingf4dc9a42005-04-26 15:20:34 +0100152 stmia sp, {r0 - r12} @ Calling r0 - r12
Catalin Marinasb86040a2009-07-24 12:32:54 +0100153 ARM( add r8, sp, #S_PC )
154 ARM( stmdb r8, {sp, lr}^ ) @ Calling sp, lr
155 THUMB( mov r8, sp )
156 THUMB( store_user_sp_lr r8, r10, S_SP ) @ calling sp, lr
Russell King309ee042017-03-24 16:15:45 +0000157 mrs saved_psr, spsr @ called from non-FIQ mode, so ok.
Russell Kingfcea4522017-03-24 16:22:10 +0000158 TRACE( mov saved_pc, lr )
Russell King309ee042017-03-24 16:15:45 +0000159 str saved_pc, [sp, #S_PC] @ Save calling PC
160 str saved_psr, [sp, #S_PSR] @ Save CPSR
Russell Kingf4dc9a42005-04-26 15:20:34 +0100161 str r0, [sp, #S_OLD_R0] @ Save OLD_R0
Uwe Kleine-König19c4d592010-05-21 18:06:42 +0100162#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 zero_fp
Russell King195b58a2014-08-28 13:08:14 +0100164 alignment_trap r10, ip, __cr_alignment
Russell Kingdca778c2017-03-24 16:23:25 +0000165 asm_trace_hardirqs_on save=0
166 enable_irq_notrace
167 ct_user_exit save=0
Will Deacon1aa2b3b2013-06-05 11:25:13 +0100168
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100169 /*
170 * Get the system call number.
171 */
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000172
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000173#if defined(CONFIG_OABI_COMPAT)
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000174
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000175 /*
176 * If we have CONFIG_OABI_COMPAT then we need to look at the swi
177 * value to determine if it is an EABI or an old ABI call.
178 */
179#ifdef CONFIG_ARM_THUMB
Russell King309ee042017-03-24 16:15:45 +0000180 tst saved_psr, #PSR_T_BIT
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000181 movne r10, #0 @ no thumb OABI emulation
Russell King309ee042017-03-24 16:15:45 +0000182 USER( ldreq r10, [saved_pc, #-4] ) @ get SWI instruction
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000183#else
Russell King309ee042017-03-24 16:15:45 +0000184 USER( ldr r10, [saved_pc, #-4] ) @ get SWI instruction
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000185#endif
Ben Dooks457c2402013-02-12 18:59:57 +0000186 ARM_BE8(rev r10, r10) @ little endian instruction
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000187
188#elif defined(CONFIG_AEABI)
189
190 /*
191 * Pure EABI user space always put syscall number into scno (r7).
192 */
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000193#elif defined(CONFIG_ARM_THUMB)
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000194 /* Legacy ABI only, possibly thumb mode. */
Russell King309ee042017-03-24 16:15:45 +0000195 tst saved_psr, #PSR_T_BIT @ this is SPSR from save_user_regs
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100196 addne scno, r7, #__NR_SYSCALL_BASE @ put OS number in
Russell King309ee042017-03-24 16:15:45 +0000197 USER( ldreq scno, [saved_pc, #-4] )
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000198
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100199#else
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000200 /* Legacy ABI only. */
Russell King309ee042017-03-24 16:15:45 +0000201 USER( ldr scno, [saved_pc, #-4] ) @ get SWI instruction
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100202#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Russell King309ee042017-03-24 16:15:45 +0000204 /* saved_psr and saved_pc are now dead */
205
Russell King2190fed2015-08-20 10:32:02 +0100206 uaccess_disable tbl
207
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000208 adr tbl, sys_call_table @ load syscall table pointer
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000209
210#if defined(CONFIG_OABI_COMPAT)
211 /*
212 * If the swi argument is zero, this is an EABI call and we do nothing.
213 *
214 * If this is an old ABI call, get the syscall number into scno and
215 * get the old ABI syscall table address.
216 */
217 bics r10, r10, #0xff000000
218 eorne scno, r10, #__NR_OABI_SYSCALL_BASE
219 ldrne tbl, =sys_oabi_call_table
220#elif !defined(CONFIG_AEABI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 bic scno, scno, #0xff000000 @ mask off SWI op-code
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100222 eor scno, scno, #__NR_SYSCALL_BASE @ check OS number
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000223#endif
Russell Kingda594e32017-03-24 16:19:12 +0000224 get_thread_info tsk
Russell Kingdca778c2017-03-24 16:23:25 +0000225 /*
226 * Reload the registers that may have been corrupted on entry to
227 * the syscall assembly (by tracing or context tracking.)
228 */
229 TRACE( ldmia sp, {r0 - r3} )
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000230
Al Viro81783782012-07-19 17:48:21 +0100231local_restart:
Nicolas Pitre70c70d92010-08-26 15:08:35 -0700232 ldr r10, [tsk, #TI_FLAGS] @ check for syscall tracing
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000233 stmdb sp!, {r4, r5} @ push fifth and sixth args
Nicolas Pitre70c70d92010-08-26 15:08:35 -0700234
Nathaniel Husted29ef73b2012-01-03 14:23:09 -0500235 tst r10, #_TIF_SYSCALL_WORK @ are we tracing syscalls?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 bne __sys_trace
237
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 cmp scno, #NR_syscalls @ check upper syscall limit
Russell King14327c62015-04-21 14:17:25 +0100239 badr lr, ret_fast_syscall @ return address
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 ldrcc pc, [tbl, scno, lsl #2] @ call sys_* routine
241
242 add r1, sp, #S_OFF
Will Deacond95bc252013-09-19 10:32:20 +01002432: cmp scno, #(__ARM_NR_BASE - __NR_SYSCALL_BASE)
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100244 eor r0, scno, #__NR_SYSCALL_BASE @ put OS number back
Will Deacon377747c2013-05-13 19:16:34 +0100245 bcs arm_syscall
Will Deacond95bc252013-09-19 10:32:20 +0100246 mov why, #0 @ no longer a real syscall
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 b sys_ni_syscall @ not private func
Will Deacon1aa2b3b2013-06-05 11:25:13 +0100248
249#if defined(CONFIG_OABI_COMPAT) || !defined(CONFIG_AEABI)
250 /*
251 * We failed to handle a fault trying to access the page
252 * containing the swi instruction, but we're not really in a
253 * position to return -EFAULT. Instead, return back to the
254 * instruction and re-enter the user fault handling path trying
255 * to page it in. This will likely result in sending SEGV to the
256 * current task.
257 */
2589001:
Russell King309ee042017-03-24 16:15:45 +0000259 sub lr, saved_pc, #4
Will Deacon1aa2b3b2013-06-05 11:25:13 +0100260 str lr, [sp, #S_PC]
Russell Kingda594e32017-03-24 16:19:12 +0000261 get_thread_info tsk
Will Deacon1aa2b3b2013-06-05 11:25:13 +0100262 b ret_fast_syscall
263#endif
Catalin Marinas93ed3972008-08-28 11:22:32 +0100264ENDPROC(vector_swi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
266 /*
267 * This is the really slow path. We're going to be doing
268 * context switches, and waiting for our parent to respond.
269 */
270__sys_trace:
Will Deaconad722542012-07-06 15:50:14 +0100271 mov r1, scno
272 add r0, sp, #S_OFF
273 bl syscall_trace_enter
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
Russell King14327c62015-04-21 14:17:25 +0100275 badr lr, __sys_trace_return @ return address
Nicolas Pitre3f471122006-01-14 19:30:04 +0000276 mov scno, r0 @ syscall number (possibly new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 add r1, sp, #S_R0 + S_OFF @ pointer to regs
278 cmp scno, #NR_syscalls @ check upper syscall limit
Will Deaconc7aa00d2012-07-19 17:49:22 +0100279 ldmccia r1, {r0 - r6} @ have to reload r0 - r6
280 stmccia sp, {r4, r5} @ and update the stack args
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 ldrcc pc, [tbl, scno, lsl #2] @ call sys_* routine
Kees Cookad75b512012-11-15 22:12:17 +0100282 cmp scno, #-1 @ skip the syscall?
283 bne 2b
284 add sp, sp, #S_OFF @ restore stack
285 b ret_slow_syscall
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
287__sys_trace_return:
288 str r0, [sp, #S_R0 + S_OFF]! @ save returned r0
Will Deaconad722542012-07-06 15:50:14 +0100289 mov r0, sp
290 bl syscall_trace_exit
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 b ret_slow_syscall
292
Russell King3302cad2015-08-20 16:13:37 +0100293__sys_trace_return_nosave:
Russell Kinge0aa3a62015-08-20 17:39:32 +0100294 enable_irq_notrace
Russell King3302cad2015-08-20 16:13:37 +0100295 mov r0, sp
296 bl syscall_trace_exit
297 b ret_slow_syscall
298
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 .align 5
300#ifdef CONFIG_ALIGNMENT_TRAP
301 .type __cr_alignment, #object
302__cr_alignment:
303 .word cr_alignment
304#endif
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000305 .ltorg
306
Russell King96a8fae2016-10-18 19:57:01 +0100307 .macro syscall_table_start, sym
308 .equ __sys_nr, 0
309 .type \sym, #object
310ENTRY(\sym)
311 .endm
312
313 .macro syscall, nr, func
314 .ifgt __sys_nr - \nr
315 .error "Duplicated/unorded system call entry"
316 .endif
317 .rept \nr - __sys_nr
318 .long sys_ni_syscall
319 .endr
320 .long \func
321 .equ __sys_nr, \nr + 1
322 .endm
323
324 .macro syscall_table_end, sym
325 .ifgt __sys_nr - __NR_syscalls
326 .error "System call table too big"
327 .endif
328 .rept __NR_syscalls - __sys_nr
329 .long sys_ni_syscall
330 .endr
331 .size \sym, . - \sym
332 .endm
333
334#define NATIVE(nr, func) syscall nr, func
335
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000336/*
337 * This is the syscall table declaration for native ABI syscalls.
338 * With EABI a couple syscalls are obsolete and defined as sys_ni_syscall.
339 */
Russell King96a8fae2016-10-18 19:57:01 +0100340 syscall_table_start sys_call_table
341#define COMPAT(nr, native, compat) syscall nr, native
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000342#ifdef CONFIG_AEABI
Russell King96a8fae2016-10-18 19:57:01 +0100343#include <calls-eabi.S>
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000344#else
Russell King96a8fae2016-10-18 19:57:01 +0100345#include <calls-oabi.S>
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000346#endif
Russell King96a8fae2016-10-18 19:57:01 +0100347#undef COMPAT
348 syscall_table_end sys_call_table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
350/*============================================================================
351 * Special system call wrappers
352 */
353@ r0 = syscall number
Russell King567bd982005-12-17 15:25:42 +0000354@ r8 = syscall table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355sys_syscall:
Paul Brook52475932006-05-16 14:25:55 +0100356 bic scno, r0, #__NR_OABI_SYSCALL_BASE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 cmp scno, #__NR_syscall - __NR_SYSCALL_BASE
358 cmpne scno, #NR_syscalls @ check range
359 stmloia sp, {r5, r6} @ shuffle args
360 movlo r0, r1
361 movlo r1, r2
362 movlo r2, r3
363 movlo r3, r4
364 ldrlo pc, [tbl, scno, lsl #2]
365 b sys_ni_syscall
Catalin Marinas93ed3972008-08-28 11:22:32 +0100366ENDPROC(sys_syscall)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368sys_sigreturn_wrapper:
369 add r0, sp, #S_OFF
Al Viro653d48b2010-09-17 14:34:39 +0100370 mov why, #0 @ prevent syscall restart handling
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 b sys_sigreturn
Catalin Marinas93ed3972008-08-28 11:22:32 +0100372ENDPROC(sys_sigreturn_wrapper)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
374sys_rt_sigreturn_wrapper:
375 add r0, sp, #S_OFF
Al Viro653d48b2010-09-17 14:34:39 +0100376 mov why, #0 @ prevent syscall restart handling
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 b sys_rt_sigreturn
Catalin Marinas93ed3972008-08-28 11:22:32 +0100378ENDPROC(sys_rt_sigreturn_wrapper)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
Nicolas Pitre713c4812006-01-14 16:35:03 +0000380sys_statfs64_wrapper:
381 teq r1, #88
382 moveq r1, #84
383 b sys_statfs64
Catalin Marinas93ed3972008-08-28 11:22:32 +0100384ENDPROC(sys_statfs64_wrapper)
Nicolas Pitre713c4812006-01-14 16:35:03 +0000385
386sys_fstatfs64_wrapper:
387 teq r1, #88
388 moveq r1, #84
389 b sys_fstatfs64
Catalin Marinas93ed3972008-08-28 11:22:32 +0100390ENDPROC(sys_fstatfs64_wrapper)
Nicolas Pitre713c4812006-01-14 16:35:03 +0000391
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392/*
393 * Note: off_4k (r5) is always units of 4K. If we can't do the requested
394 * offset, we return EINVAL.
395 */
396sys_mmap2:
397#if PAGE_SHIFT > 12
398 tst r5, #PGOFF_MASK
399 moveq r5, r5, lsr #PAGE_SHIFT - 12
400 streq r5, [sp, #4]
Al Virof8b72562009-11-30 17:37:04 -0500401 beq sys_mmap_pgoff
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 mov r0, #-EINVAL
Russell King6ebbf2c2014-06-30 16:29:12 +0100403 ret lr
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404#else
405 str r5, [sp, #4]
Al Virof8b72562009-11-30 17:37:04 -0500406 b sys_mmap_pgoff
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407#endif
Catalin Marinas93ed3972008-08-28 11:22:32 +0100408ENDPROC(sys_mmap2)
Nicolas Pitre687ad012006-01-14 16:35:31 +0000409
410#ifdef CONFIG_OABI_COMPAT
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000411
Nicolas Pitre687ad012006-01-14 16:35:31 +0000412/*
413 * These are syscalls with argument register differences
414 */
415
416sys_oabi_pread64:
417 stmia sp, {r3, r4}
418 b sys_pread64
Catalin Marinas93ed3972008-08-28 11:22:32 +0100419ENDPROC(sys_oabi_pread64)
Nicolas Pitre687ad012006-01-14 16:35:31 +0000420
421sys_oabi_pwrite64:
422 stmia sp, {r3, r4}
423 b sys_pwrite64
Catalin Marinas93ed3972008-08-28 11:22:32 +0100424ENDPROC(sys_oabi_pwrite64)
Nicolas Pitre687ad012006-01-14 16:35:31 +0000425
426sys_oabi_truncate64:
427 mov r3, r2
428 mov r2, r1
429 b sys_truncate64
Catalin Marinas93ed3972008-08-28 11:22:32 +0100430ENDPROC(sys_oabi_truncate64)
Nicolas Pitre687ad012006-01-14 16:35:31 +0000431
432sys_oabi_ftruncate64:
433 mov r3, r2
434 mov r2, r1
435 b sys_ftruncate64
Catalin Marinas93ed3972008-08-28 11:22:32 +0100436ENDPROC(sys_oabi_ftruncate64)
Nicolas Pitre687ad012006-01-14 16:35:31 +0000437
438sys_oabi_readahead:
439 str r3, [sp]
440 mov r3, r2
441 mov r2, r1
442 b sys_readahead
Catalin Marinas93ed3972008-08-28 11:22:32 +0100443ENDPROC(sys_oabi_readahead)
Nicolas Pitre687ad012006-01-14 16:35:31 +0000444
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000445/*
446 * Let's declare a second syscall table for old ABI binaries
447 * using the compatibility syscall entries.
448 */
Russell King96a8fae2016-10-18 19:57:01 +0100449 syscall_table_start sys_oabi_call_table
450#define COMPAT(nr, native, compat) syscall nr, compat
451#include <calls-oabi.S>
452 syscall_table_end sys_oabi_call_table
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000453
Nicolas Pitre687ad012006-01-14 16:35:31 +0000454#endif
455