blob: 99c908226065cf6331324309edeadfa618597874 [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>
Thomas Garniere33f8d322017-09-07 08:30:46 -070015#include <asm/memory.h>
Russell King96a8fae2016-10-18 19:57:01 +010016#ifdef CONFIG_AEABI
17#include <asm/unistd-oabi.h>
18#endif
19
20 .equ NR_syscalls, __NR_syscalls
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Rob Herring13a50452012-02-07 09:28:22 -060022#ifdef CONFIG_NEED_RET_TO_USER
23#include <mach/entry-macro.S>
24#else
25 .macro arch_ret_to_user, tmp1, tmp2
26 .endm
27#endif
28
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include "entry-header.S"
30
Russell King309ee042017-03-24 16:15:45 +000031saved_psr .req r8
Russell Kingfcea4522017-03-24 16:22:10 +000032#if defined(CONFIG_TRACE_IRQFLAGS) || defined(CONFIG_CONTEXT_TRACKING)
33saved_pc .req r9
34#define TRACE(x...) x
35#else
Russell King309ee042017-03-24 16:15:45 +000036saved_pc .req lr
Russell Kingfcea4522017-03-24 16:22:10 +000037#define TRACE(x...)
38#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40 .align 5
Russell King3302cad2015-08-20 16:13:37 +010041#if !(IS_ENABLED(CONFIG_TRACE_IRQFLAGS) || IS_ENABLED(CONFIG_CONTEXT_TRACKING))
Linus Torvalds1da177e2005-04-16 15:20:36 -070042/*
Russell King3302cad2015-08-20 16:13:37 +010043 * This is the fast syscall return path. We do as little as possible here,
44 * such as avoiding writing r0 to the stack. We only use this path if we
45 * have tracing and context tracking disabled - the overheads from those
46 * features make this path too inefficient.
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 */
48ret_fast_syscall:
Catalin Marinasc4c57162009-02-16 11:42:09 +010049 UNWIND(.fnstart )
50 UNWIND(.cantunwind )
Russell King3302cad2015-08-20 16:13:37 +010051 disable_irq_notrace @ disable interrupts
Thomas Garniere33f8d322017-09-07 08:30:46 -070052 ldr r2, [tsk, #TI_ADDR_LIMIT]
53 cmp r2, #TASK_SIZE
54 blne addr_limit_check_failed
Russell King1b979372015-05-15 11:02:23 +010055 ldr r1, [tsk, #TI_FLAGS] @ re-check for syscall tracing
Thomas Garnier24042692017-09-07 08:30:45 -070056 tst r1, #_TIF_SYSCALL_WORK | _TIF_WORK_MASK
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 bne fast_work_pending
Russell Kingf4dc9a42005-04-26 15:20:34 +010058
Thomas Garniere33f8d322017-09-07 08:30:46 -070059
Dan Williamsf80dff92007-02-16 22:16:32 +010060 /* perform architecture specific actions before user return */
61 arch_ret_to_user r1, lr
62
Catalin Marinasb86040a2009-07-24 12:32:54 +010063 restore_user_regs fast = 1, offset = S_OFF
Catalin Marinasc4c57162009-02-16 11:42:09 +010064 UNWIND(.fnend )
Russell King3302cad2015-08-20 16:13:37 +010065ENDPROC(ret_fast_syscall)
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Russell King3302cad2015-08-20 16:13:37 +010067 /* Ok, we need to do extra processing, enter the slow path. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070068fast_work_pending:
69 str r0, [sp, #S_R0+S_OFF]! @ returned r0
Russell King3302cad2015-08-20 16:13:37 +010070 /* fall through to work_pending */
71#else
72/*
73 * The "replacement" ret_fast_syscall for when tracing or context tracking
74 * is enabled. As we will need to call out to some C functions, we save
75 * r0 first to avoid needing to save registers around each C function call.
76 */
77ret_fast_syscall:
78 UNWIND(.fnstart )
79 UNWIND(.cantunwind )
80 str r0, [sp, #S_R0 + S_OFF]! @ save returned r0
81 disable_irq_notrace @ disable interrupts
Thomas Garniere33f8d322017-09-07 08:30:46 -070082 ldr r2, [tsk, #TI_ADDR_LIMIT]
83 cmp r2, #TASK_SIZE
84 blne addr_limit_check_failed
Russell King3302cad2015-08-20 16:13:37 +010085 ldr r1, [tsk, #TI_FLAGS] @ re-check for syscall tracing
Thomas Garnier24042692017-09-07 08:30:45 -070086 tst r1, #_TIF_SYSCALL_WORK | _TIF_WORK_MASK
Russell King3302cad2015-08-20 16:13:37 +010087 beq no_work_pending
88 UNWIND(.fnend )
89ENDPROC(ret_fast_syscall)
90
91 /* Slower path - fall through to work_pending */
92#endif
93
94 tst r1, #_TIF_SYSCALL_WORK
95 bne __sys_trace_return_nosave
96slow_work_pending:
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 mov r0, sp @ 'regs'
98 mov r2, why @ 'syscall'
Al Viro0a267fa2012-07-19 17:47:55 +010099 bl do_work_pending
Al Viro66285212012-07-19 17:48:50 +0100100 cmp r0, #0
Al Viro81783782012-07-19 17:48:21 +0100101 beq no_work_pending
Al Viro66285212012-07-19 17:48:50 +0100102 movlt scno, #(__NR_restart_syscall - __NR_SYSCALL_BASE)
Al Viro81783782012-07-19 17:48:21 +0100103 ldmia sp, {r0 - r6} @ have to reload r0 - r6
104 b local_restart @ ... and off we go
Drew Richardsone83dd372015-08-06 18:50:27 +0100105ENDPROC(ret_fast_syscall)
Al Viro81783782012-07-19 17:48:21 +0100106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107/*
108 * "slow" syscall return path. "why" tells us if this was a real syscall.
Russell King3302cad2015-08-20 16:13:37 +0100109 * IRQs may be enabled here, so always disable them. Note that we use the
110 * "notrace" version to avoid calling into the tracing code unnecessarily.
111 * do_work_pending() will update this state if necessary.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 */
113ENTRY(ret_to_user)
114ret_slow_syscall:
Russell King3302cad2015-08-20 16:13:37 +0100115 disable_irq_notrace @ disable interrupts
Ming Lei9fc25522011-06-05 02:24:58 +0100116ENTRY(ret_to_user_from_irq)
Thomas Garniere33f8d322017-09-07 08:30:46 -0700117 ldr r2, [tsk, #TI_ADDR_LIMIT]
118 cmp r2, #TASK_SIZE
119 blne addr_limit_check_failed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 ldr r1, [tsk, #TI_FLAGS]
121 tst r1, #_TIF_WORK_MASK
Russell King3302cad2015-08-20 16:13:37 +0100122 bne slow_work_pending
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123no_work_pending:
Russell King3302cad2015-08-20 16:13:37 +0100124 asm_trace_hardirqs_on save = 0
Russell King651e9492013-03-28 11:44:25 +0000125
Dan Williamsf80dff92007-02-16 22:16:32 +0100126 /* perform architecture specific actions before user return */
127 arch_ret_to_user r1, lr
Kevin Hilmanb0088482013-03-28 22:54:40 +0100128 ct_user_enter save = 0
Dan Williamsf80dff92007-02-16 22:16:32 +0100129
Catalin Marinasb86040a2009-07-24 12:32:54 +0100130 restore_user_regs fast = 0, offset = 0
Ming Lei9fc25522011-06-05 02:24:58 +0100131ENDPROC(ret_to_user_from_irq)
Catalin Marinas93ed3972008-08-28 11:22:32 +0100132ENDPROC(ret_to_user)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
134/*
135 * This is how we return from a fork.
136 */
137ENTRY(ret_from_fork)
138 bl schedule_tail
Al Viro9fff2fa2012-10-10 22:23:29 -0400139 cmp r5, #0
140 movne r0, r4
Russell King14327c62015-04-21 14:17:25 +0100141 badrne lr, 1f
Russell King6ebbf2c2014-06-30 16:29:12 +0100142 retne r5
Russell King68687c82012-10-15 00:16:49 +01001431: get_thread_info tsk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 b ret_slow_syscall
Catalin Marinas93ed3972008-08-28 11:22:32 +0100145ENDPROC(ret_from_fork)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147/*=============================================================================
148 * SWI handler
149 *-----------------------------------------------------------------------------
150 */
151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 .align 5
153ENTRY(vector_swi)
Uwe Kleine-König19c4d592010-05-21 18:06:42 +0100154#ifdef CONFIG_CPU_V7M
155 v7m_exception_entry
156#else
Russell King5745eef62016-05-10 16:34:27 +0100157 sub sp, sp, #PT_REGS_SIZE
Russell Kingf4dc9a42005-04-26 15:20:34 +0100158 stmia sp, {r0 - r12} @ Calling r0 - r12
Catalin Marinasb86040a2009-07-24 12:32:54 +0100159 ARM( add r8, sp, #S_PC )
160 ARM( stmdb r8, {sp, lr}^ ) @ Calling sp, lr
161 THUMB( mov r8, sp )
162 THUMB( store_user_sp_lr r8, r10, S_SP ) @ calling sp, lr
Russell King309ee042017-03-24 16:15:45 +0000163 mrs saved_psr, spsr @ called from non-FIQ mode, so ok.
Russell Kingfcea4522017-03-24 16:22:10 +0000164 TRACE( mov saved_pc, lr )
Russell King309ee042017-03-24 16:15:45 +0000165 str saved_pc, [sp, #S_PC] @ Save calling PC
166 str saved_psr, [sp, #S_PSR] @ Save CPSR
Russell Kingf4dc9a42005-04-26 15:20:34 +0100167 str r0, [sp, #S_OLD_R0] @ Save OLD_R0
Uwe Kleine-König19c4d592010-05-21 18:06:42 +0100168#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 zero_fp
Russell King195b58a2014-08-28 13:08:14 +0100170 alignment_trap r10, ip, __cr_alignment
Russell Kingdca778c2017-03-24 16:23:25 +0000171 asm_trace_hardirqs_on save=0
172 enable_irq_notrace
173 ct_user_exit save=0
Will Deacon1aa2b3b2013-06-05 11:25:13 +0100174
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100175 /*
176 * Get the system call number.
177 */
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000178
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000179#if defined(CONFIG_OABI_COMPAT)
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000180
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000181 /*
182 * If we have CONFIG_OABI_COMPAT then we need to look at the swi
183 * value to determine if it is an EABI or an old ABI call.
184 */
185#ifdef CONFIG_ARM_THUMB
Russell King309ee042017-03-24 16:15:45 +0000186 tst saved_psr, #PSR_T_BIT
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000187 movne r10, #0 @ no thumb OABI emulation
Russell King309ee042017-03-24 16:15:45 +0000188 USER( ldreq r10, [saved_pc, #-4] ) @ get SWI instruction
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000189#else
Russell King309ee042017-03-24 16:15:45 +0000190 USER( ldr r10, [saved_pc, #-4] ) @ get SWI instruction
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000191#endif
Ben Dooks457c2402013-02-12 18:59:57 +0000192 ARM_BE8(rev r10, r10) @ little endian instruction
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000193
194#elif defined(CONFIG_AEABI)
195
196 /*
197 * Pure EABI user space always put syscall number into scno (r7).
198 */
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000199#elif defined(CONFIG_ARM_THUMB)
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000200 /* Legacy ABI only, possibly thumb mode. */
Russell King309ee042017-03-24 16:15:45 +0000201 tst saved_psr, #PSR_T_BIT @ this is SPSR from save_user_regs
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100202 addne scno, r7, #__NR_SYSCALL_BASE @ put OS number in
Russell King309ee042017-03-24 16:15:45 +0000203 USER( ldreq scno, [saved_pc, #-4] )
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000204
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100205#else
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000206 /* Legacy ABI only. */
Russell King309ee042017-03-24 16:15:45 +0000207 USER( ldr scno, [saved_pc, #-4] ) @ get SWI instruction
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100208#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
Russell King309ee042017-03-24 16:15:45 +0000210 /* saved_psr and saved_pc are now dead */
211
Russell King2190fed2015-08-20 10:32:02 +0100212 uaccess_disable tbl
213
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000214 adr tbl, sys_call_table @ load syscall table pointer
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000215
216#if defined(CONFIG_OABI_COMPAT)
217 /*
218 * If the swi argument is zero, this is an EABI call and we do nothing.
219 *
220 * If this is an old ABI call, get the syscall number into scno and
221 * get the old ABI syscall table address.
222 */
223 bics r10, r10, #0xff000000
224 eorne scno, r10, #__NR_OABI_SYSCALL_BASE
225 ldrne tbl, =sys_oabi_call_table
226#elif !defined(CONFIG_AEABI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 bic scno, scno, #0xff000000 @ mask off SWI op-code
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100228 eor scno, scno, #__NR_SYSCALL_BASE @ check OS number
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000229#endif
Russell Kingda594e32017-03-24 16:19:12 +0000230 get_thread_info tsk
Russell Kingdca778c2017-03-24 16:23:25 +0000231 /*
232 * Reload the registers that may have been corrupted on entry to
233 * the syscall assembly (by tracing or context tracking.)
234 */
235 TRACE( ldmia sp, {r0 - r3} )
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000236
Al Viro81783782012-07-19 17:48:21 +0100237local_restart:
Nicolas Pitre70c70d92010-08-26 15:08:35 -0700238 ldr r10, [tsk, #TI_FLAGS] @ check for syscall tracing
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000239 stmdb sp!, {r4, r5} @ push fifth and sixth args
Nicolas Pitre70c70d92010-08-26 15:08:35 -0700240
Nathaniel Husted29ef73b2012-01-03 14:23:09 -0500241 tst r10, #_TIF_SYSCALL_WORK @ are we tracing syscalls?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 bne __sys_trace
243
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 cmp scno, #NR_syscalls @ check upper syscall limit
Russell King14327c62015-04-21 14:17:25 +0100245 badr lr, ret_fast_syscall @ return address
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 ldrcc pc, [tbl, scno, lsl #2] @ call sys_* routine
247
248 add r1, sp, #S_OFF
Will Deacond95bc252013-09-19 10:32:20 +01002492: cmp scno, #(__ARM_NR_BASE - __NR_SYSCALL_BASE)
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100250 eor r0, scno, #__NR_SYSCALL_BASE @ put OS number back
Will Deacon377747c2013-05-13 19:16:34 +0100251 bcs arm_syscall
Will Deacond95bc252013-09-19 10:32:20 +0100252 mov why, #0 @ no longer a real syscall
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 b sys_ni_syscall @ not private func
Will Deacon1aa2b3b2013-06-05 11:25:13 +0100254
255#if defined(CONFIG_OABI_COMPAT) || !defined(CONFIG_AEABI)
256 /*
257 * We failed to handle a fault trying to access the page
258 * containing the swi instruction, but we're not really in a
259 * position to return -EFAULT. Instead, return back to the
260 * instruction and re-enter the user fault handling path trying
261 * to page it in. This will likely result in sending SEGV to the
262 * current task.
263 */
2649001:
Russell King309ee042017-03-24 16:15:45 +0000265 sub lr, saved_pc, #4
Will Deacon1aa2b3b2013-06-05 11:25:13 +0100266 str lr, [sp, #S_PC]
Russell Kingda594e32017-03-24 16:19:12 +0000267 get_thread_info tsk
Will Deacon1aa2b3b2013-06-05 11:25:13 +0100268 b ret_fast_syscall
269#endif
Catalin Marinas93ed3972008-08-28 11:22:32 +0100270ENDPROC(vector_swi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
272 /*
273 * This is the really slow path. We're going to be doing
274 * context switches, and waiting for our parent to respond.
275 */
276__sys_trace:
Will Deaconad722542012-07-06 15:50:14 +0100277 mov r1, scno
278 add r0, sp, #S_OFF
279 bl syscall_trace_enter
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
Russell King14327c62015-04-21 14:17:25 +0100281 badr lr, __sys_trace_return @ return address
Nicolas Pitre3f471122006-01-14 19:30:04 +0000282 mov scno, r0 @ syscall number (possibly new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 add r1, sp, #S_R0 + S_OFF @ pointer to regs
284 cmp scno, #NR_syscalls @ check upper syscall limit
Will Deaconc7aa00d2012-07-19 17:49:22 +0100285 ldmccia r1, {r0 - r6} @ have to reload r0 - r6
286 stmccia sp, {r4, r5} @ and update the stack args
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 ldrcc pc, [tbl, scno, lsl #2] @ call sys_* routine
Kees Cookad75b512012-11-15 22:12:17 +0100288 cmp scno, #-1 @ skip the syscall?
289 bne 2b
290 add sp, sp, #S_OFF @ restore stack
291 b ret_slow_syscall
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
293__sys_trace_return:
294 str r0, [sp, #S_R0 + S_OFF]! @ save returned r0
Will Deaconad722542012-07-06 15:50:14 +0100295 mov r0, sp
296 bl syscall_trace_exit
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 b ret_slow_syscall
298
Russell King3302cad2015-08-20 16:13:37 +0100299__sys_trace_return_nosave:
Russell Kinge0aa3a62015-08-20 17:39:32 +0100300 enable_irq_notrace
Russell King3302cad2015-08-20 16:13:37 +0100301 mov r0, sp
302 bl syscall_trace_exit
303 b ret_slow_syscall
304
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 .align 5
306#ifdef CONFIG_ALIGNMENT_TRAP
307 .type __cr_alignment, #object
308__cr_alignment:
309 .word cr_alignment
310#endif
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000311 .ltorg
312
Russell King96a8fae2016-10-18 19:57:01 +0100313 .macro syscall_table_start, sym
314 .equ __sys_nr, 0
315 .type \sym, #object
316ENTRY(\sym)
317 .endm
318
319 .macro syscall, nr, func
320 .ifgt __sys_nr - \nr
321 .error "Duplicated/unorded system call entry"
322 .endif
323 .rept \nr - __sys_nr
324 .long sys_ni_syscall
325 .endr
326 .long \func
327 .equ __sys_nr, \nr + 1
328 .endm
329
330 .macro syscall_table_end, sym
331 .ifgt __sys_nr - __NR_syscalls
332 .error "System call table too big"
333 .endif
334 .rept __NR_syscalls - __sys_nr
335 .long sys_ni_syscall
336 .endr
337 .size \sym, . - \sym
338 .endm
339
340#define NATIVE(nr, func) syscall nr, func
341
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000342/*
343 * This is the syscall table declaration for native ABI syscalls.
344 * With EABI a couple syscalls are obsolete and defined as sys_ni_syscall.
345 */
Russell King96a8fae2016-10-18 19:57:01 +0100346 syscall_table_start sys_call_table
347#define COMPAT(nr, native, compat) syscall nr, native
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000348#ifdef CONFIG_AEABI
Russell King96a8fae2016-10-18 19:57:01 +0100349#include <calls-eabi.S>
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000350#else
Russell King96a8fae2016-10-18 19:57:01 +0100351#include <calls-oabi.S>
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000352#endif
Russell King96a8fae2016-10-18 19:57:01 +0100353#undef COMPAT
354 syscall_table_end sys_call_table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
356/*============================================================================
357 * Special system call wrappers
358 */
359@ r0 = syscall number
Russell King567bd982005-12-17 15:25:42 +0000360@ r8 = syscall table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361sys_syscall:
Paul Brook52475932006-05-16 14:25:55 +0100362 bic scno, r0, #__NR_OABI_SYSCALL_BASE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 cmp scno, #__NR_syscall - __NR_SYSCALL_BASE
364 cmpne scno, #NR_syscalls @ check range
365 stmloia sp, {r5, r6} @ shuffle args
366 movlo r0, r1
367 movlo r1, r2
368 movlo r2, r3
369 movlo r3, r4
370 ldrlo pc, [tbl, scno, lsl #2]
371 b sys_ni_syscall
Catalin Marinas93ed3972008-08-28 11:22:32 +0100372ENDPROC(sys_syscall)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374sys_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_sigreturn
Catalin Marinas93ed3972008-08-28 11:22:32 +0100378ENDPROC(sys_sigreturn_wrapper)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
380sys_rt_sigreturn_wrapper:
381 add r0, sp, #S_OFF
Al Viro653d48b2010-09-17 14:34:39 +0100382 mov why, #0 @ prevent syscall restart handling
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 b sys_rt_sigreturn
Catalin Marinas93ed3972008-08-28 11:22:32 +0100384ENDPROC(sys_rt_sigreturn_wrapper)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Nicolas Pitre713c4812006-01-14 16:35:03 +0000386sys_statfs64_wrapper:
387 teq r1, #88
388 moveq r1, #84
389 b sys_statfs64
Catalin Marinas93ed3972008-08-28 11:22:32 +0100390ENDPROC(sys_statfs64_wrapper)
Nicolas Pitre713c4812006-01-14 16:35:03 +0000391
392sys_fstatfs64_wrapper:
393 teq r1, #88
394 moveq r1, #84
395 b sys_fstatfs64
Catalin Marinas93ed3972008-08-28 11:22:32 +0100396ENDPROC(sys_fstatfs64_wrapper)
Nicolas Pitre713c4812006-01-14 16:35:03 +0000397
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398/*
399 * Note: off_4k (r5) is always units of 4K. If we can't do the requested
400 * offset, we return EINVAL.
401 */
402sys_mmap2:
403#if PAGE_SHIFT > 12
404 tst r5, #PGOFF_MASK
405 moveq r5, r5, lsr #PAGE_SHIFT - 12
406 streq r5, [sp, #4]
Al Virof8b72562009-11-30 17:37:04 -0500407 beq sys_mmap_pgoff
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 mov r0, #-EINVAL
Russell King6ebbf2c2014-06-30 16:29:12 +0100409 ret lr
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410#else
411 str r5, [sp, #4]
Al Virof8b72562009-11-30 17:37:04 -0500412 b sys_mmap_pgoff
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413#endif
Catalin Marinas93ed3972008-08-28 11:22:32 +0100414ENDPROC(sys_mmap2)
Nicolas Pitre687ad012006-01-14 16:35:31 +0000415
416#ifdef CONFIG_OABI_COMPAT
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000417
Nicolas Pitre687ad012006-01-14 16:35:31 +0000418/*
419 * These are syscalls with argument register differences
420 */
421
422sys_oabi_pread64:
423 stmia sp, {r3, r4}
424 b sys_pread64
Catalin Marinas93ed3972008-08-28 11:22:32 +0100425ENDPROC(sys_oabi_pread64)
Nicolas Pitre687ad012006-01-14 16:35:31 +0000426
427sys_oabi_pwrite64:
428 stmia sp, {r3, r4}
429 b sys_pwrite64
Catalin Marinas93ed3972008-08-28 11:22:32 +0100430ENDPROC(sys_oabi_pwrite64)
Nicolas Pitre687ad012006-01-14 16:35:31 +0000431
432sys_oabi_truncate64:
433 mov r3, r2
434 mov r2, r1
435 b sys_truncate64
Catalin Marinas93ed3972008-08-28 11:22:32 +0100436ENDPROC(sys_oabi_truncate64)
Nicolas Pitre687ad012006-01-14 16:35:31 +0000437
438sys_oabi_ftruncate64:
439 mov r3, r2
440 mov r2, r1
441 b sys_ftruncate64
Catalin Marinas93ed3972008-08-28 11:22:32 +0100442ENDPROC(sys_oabi_ftruncate64)
Nicolas Pitre687ad012006-01-14 16:35:31 +0000443
444sys_oabi_readahead:
445 str r3, [sp]
446 mov r3, r2
447 mov r2, r1
448 b sys_readahead
Catalin Marinas93ed3972008-08-28 11:22:32 +0100449ENDPROC(sys_oabi_readahead)
Nicolas Pitre687ad012006-01-14 16:35:31 +0000450
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000451/*
452 * Let's declare a second syscall table for old ABI binaries
453 * using the compatibility syscall entries.
454 */
Russell King96a8fae2016-10-18 19:57:01 +0100455 syscall_table_start sys_oabi_call_table
456#define COMPAT(nr, native, compat) syscall nr, compat
457#include <calls-oabi.S>
458 syscall_table_end sys_oabi_call_table
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000459
Nicolas Pitre687ad012006-01-14 16:35:31 +0000460#endif
461