blob: 0b042bdb11bf840f86b7f3618d4dc18d808e6b3b [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <asm/unistd.h>
Abhishek Sagar395a59d2008-06-21 23:47:27 +053012#include <asm/ftrace.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010013#include <mach/entry-macro.S>
Catalin Marinasc4c57162009-02-16 11:42:09 +010014#include <asm/unwind.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
16#include "entry-header.S"
17
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
19 .align 5
20/*
21 * This is the fast syscall return path. We do as little as
22 * possible here, and this includes saving r0 back into the SVC
23 * stack.
24 */
25ret_fast_syscall:
Catalin Marinasc4c57162009-02-16 11:42:09 +010026 UNWIND(.fnstart )
27 UNWIND(.cantunwind )
Russell King1ec42c02005-04-26 15:18:26 +010028 disable_irq @ disable interrupts
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 ldr r1, [tsk, #TI_FLAGS]
30 tst r1, #_TIF_WORK_MASK
31 bne fast_work_pending
Russell Kingf4dc9a42005-04-26 15:20:34 +010032
Dan Williamsf80dff92007-02-16 22:16:32 +010033 /* perform architecture specific actions before user return */
34 arch_ret_to_user r1, lr
35
Catalin Marinasb86040a2009-07-24 12:32:54 +010036 restore_user_regs fast = 1, offset = S_OFF
Catalin Marinasc4c57162009-02-16 11:42:09 +010037 UNWIND(.fnend )
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39/*
40 * Ok, we need to do extra processing, enter the slow path.
41 */
42fast_work_pending:
43 str r0, [sp, #S_R0+S_OFF]! @ returned r0
44work_pending:
45 tst r1, #_TIF_NEED_RESCHED
46 bne work_resched
David Howellsd0420c82009-09-02 09:14:16 +010047 tst r1, #_TIF_SIGPENDING|_TIF_NOTIFY_RESUME
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 beq no_work_pending
49 mov r0, sp @ 'regs'
50 mov r2, why @ 'syscall'
51 bl do_notify_resume
Daniel Jacobowitza6c61e92005-11-19 10:01:07 +000052 b ret_slow_syscall @ Check work again
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54work_resched:
55 bl schedule
56/*
57 * "slow" syscall return path. "why" tells us if this was a real syscall.
58 */
59ENTRY(ret_to_user)
60ret_slow_syscall:
Russell King1ec42c02005-04-26 15:18:26 +010061 disable_irq @ disable interrupts
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 ldr r1, [tsk, #TI_FLAGS]
63 tst r1, #_TIF_WORK_MASK
64 bne work_pending
65no_work_pending:
Dan Williamsf80dff92007-02-16 22:16:32 +010066 /* perform architecture specific actions before user return */
67 arch_ret_to_user r1, lr
68
Catalin Marinasb86040a2009-07-24 12:32:54 +010069 restore_user_regs fast = 0, offset = 0
Catalin Marinas93ed3972008-08-28 11:22:32 +010070ENDPROC(ret_to_user)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
72/*
73 * This is how we return from a fork.
74 */
75ENTRY(ret_from_fork)
76 bl schedule_tail
77 get_thread_info tsk
78 ldr r1, [tsk, #TI_FLAGS] @ check for syscall tracing
79 mov why, #1
80 tst r1, #_TIF_SYSCALL_TRACE @ are we tracing syscalls?
81 beq ret_slow_syscall
82 mov r1, sp
83 mov r0, #1 @ trace exit [IP = 1]
84 bl syscall_trace
85 b ret_slow_syscall
Catalin Marinas93ed3972008-08-28 11:22:32 +010086ENDPROC(ret_from_fork)
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Al Virofa1b4f92006-01-19 12:57:01 +000088 .equ NR_syscalls,0
89#define CALL(x) .equ NR_syscalls,NR_syscalls+1
Linus Torvalds1da177e2005-04-16 15:20:36 -070090#include "calls.S"
Al Virofa1b4f92006-01-19 12:57:01 +000091#undef CALL
92#define CALL(x) .long x
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Steven Rostedt606576c2008-10-06 19:06:12 -040094#ifdef CONFIG_FUNCTION_TRACER
Abhishek Sagar014c2572008-05-31 14:23:50 +053095#ifdef CONFIG_DYNAMIC_FTRACE
96ENTRY(mcount)
Rabin Vincent28e192d2010-08-03 17:08:09 +010097 stmdb sp!, {r0-r3, lr}
98 mov r0, lr
99 sub r0, r0, #MCOUNT_INSN_SIZE
Abhishek Sagar014c2572008-05-31 14:23:50 +0530100
101 .globl mcount_call
102mcount_call:
Rabin Vincent28e192d2010-08-03 17:08:09 +0100103 bl ftrace_stub
104 ldr lr, [fp, #-4] @ restore lr
105 ldmia sp!, {r0-r3, pc}
Abhishek Sagar014c2572008-05-31 14:23:50 +0530106
107ENTRY(ftrace_caller)
Rabin Vincent28e192d2010-08-03 17:08:09 +0100108 stmdb sp!, {r0-r3, lr}
109 ldr r1, [fp, #-4]
110 mov r0, lr
111 sub r0, r0, #MCOUNT_INSN_SIZE
Abhishek Sagar014c2572008-05-31 14:23:50 +0530112
113 .globl ftrace_call
114ftrace_call:
Rabin Vincent28e192d2010-08-03 17:08:09 +0100115 bl ftrace_stub
116 ldr lr, [fp, #-4] @ restore lr
117 ldmia sp!, {r0-r3, pc}
Abhishek Sagar014c2572008-05-31 14:23:50 +0530118
119#else
120
Uwe Kleine-König181f8172009-08-13 20:38:16 +0200121ENTRY(__gnu_mcount_nc)
Rabin Vincent28e192d2010-08-03 17:08:09 +0100122 stmdb sp!, {r0-r3, lr}
123 ldr r0, =ftrace_trace_function
124 ldr r2, [r0]
125 adr r0, ftrace_stub
126 cmp r0, r2
127 bne gnu_trace
128 ldmia sp!, {r0-r3, ip, lr}
129 mov pc, ip
Uwe Kleine-König181f8172009-08-13 20:38:16 +0200130
131gnu_trace:
Rabin Vincent28e192d2010-08-03 17:08:09 +0100132 ldr r1, [sp, #20] @ lr of instrumented routine
133 mov r0, lr
134 sub r0, r0, #MCOUNT_INSN_SIZE
135 mov lr, pc
136 mov pc, r2
137 ldmia sp!, {r0-r3, ip, lr}
138 mov pc, ip
Uwe Kleine-König181f8172009-08-13 20:38:16 +0200139
Abhishek Sagar014c2572008-05-31 14:23:50 +0530140ENTRY(mcount)
Rabin Vincent28e192d2010-08-03 17:08:09 +0100141 stmdb sp!, {r0-r3, lr}
142 ldr r0, =ftrace_trace_function
143 ldr r2, [r0]
144 adr r0, ftrace_stub
145 cmp r0, r2
146 bne trace
147 ldr lr, [fp, #-4] @ restore lr
148 ldmia sp!, {r0-r3, pc}
Abhishek Sagar014c2572008-05-31 14:23:50 +0530149
150trace:
Rabin Vincent28e192d2010-08-03 17:08:09 +0100151 ldr r1, [fp, #-4] @ lr of instrumented routine
152 mov r0, lr
153 sub r0, r0, #MCOUNT_INSN_SIZE
154 mov lr, pc
155 mov pc, r2
156 ldr lr, [fp, #-4] @ restore lr
157 ldmia sp!, {r0-r3, pc}
Abhishek Sagar014c2572008-05-31 14:23:50 +0530158
159#endif /* CONFIG_DYNAMIC_FTRACE */
160
161 .globl ftrace_stub
162ftrace_stub:
Rabin Vincent28e192d2010-08-03 17:08:09 +0100163 mov pc, lr
Abhishek Sagar014c2572008-05-31 14:23:50 +0530164
Steven Rostedt606576c2008-10-06 19:06:12 -0400165#endif /* CONFIG_FUNCTION_TRACER */
Abhishek Sagar014c2572008-05-31 14:23:50 +0530166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167/*=============================================================================
168 * SWI handler
169 *-----------------------------------------------------------------------------
170 */
171
172 /* If we're optimising for StrongARM the resulting code won't
173 run on an ARM7 and we can save a couple of instructions.
174 --pb */
175#ifdef CONFIG_CPU_ARM710
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000176#define A710(code...) code
177.Larm710bug:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 ldmia sp, {r0 - lr}^ @ Get calling r0 - lr
179 mov r0, r0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 add sp, sp, #S_FRAME_SIZE
Nicolas Pitre60ac1332005-10-12 19:51:24 +0100181 subs pc, lr, #4
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182#else
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000183#define A710(code...)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184#endif
185
186 .align 5
187ENTRY(vector_swi)
Russell Kingf4dc9a42005-04-26 15:20:34 +0100188 sub sp, sp, #S_FRAME_SIZE
189 stmia sp, {r0 - r12} @ Calling r0 - r12
Catalin Marinasb86040a2009-07-24 12:32:54 +0100190 ARM( add r8, sp, #S_PC )
191 ARM( stmdb r8, {sp, lr}^ ) @ Calling sp, lr
192 THUMB( mov r8, sp )
193 THUMB( store_user_sp_lr r8, r10, S_SP ) @ calling sp, lr
Russell Kingf4dc9a42005-04-26 15:20:34 +0100194 mrs r8, spsr @ called from non-FIQ mode, so ok.
195 str lr, [sp, #S_PC] @ Save calling PC
196 str r8, [sp, #S_PSR] @ Save CPSR
197 str r0, [sp, #S_OLD_R0] @ Save OLD_R0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 zero_fp
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100199
200 /*
201 * Get the system call number.
202 */
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000203
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000204#if defined(CONFIG_OABI_COMPAT)
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000205
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000206 /*
207 * If we have CONFIG_OABI_COMPAT then we need to look at the swi
208 * value to determine if it is an EABI or an old ABI call.
209 */
210#ifdef CONFIG_ARM_THUMB
211 tst r8, #PSR_T_BIT
212 movne r10, #0 @ no thumb OABI emulation
213 ldreq r10, [lr, #-4] @ get SWI instruction
214#else
215 ldr r10, [lr, #-4] @ get SWI instruction
216 A710( and ip, r10, #0x0f000000 @ check for SWI )
217 A710( teq ip, #0x0f000000 )
218 A710( bne .Larm710bug )
219#endif
Catalin Marinas26584852009-05-30 14:00:18 +0100220#ifdef CONFIG_CPU_ENDIAN_BE8
221 rev r10, r10 @ little endian instruction
222#endif
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000223
224#elif defined(CONFIG_AEABI)
225
226 /*
227 * Pure EABI user space always put syscall number into scno (r7).
228 */
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000229 A710( ldr ip, [lr, #-4] @ get SWI instruction )
230 A710( and ip, ip, #0x0f000000 @ check for SWI )
231 A710( teq ip, #0x0f000000 )
232 A710( bne .Larm710bug )
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000233
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000234#elif defined(CONFIG_ARM_THUMB)
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000235
236 /* Legacy ABI only, possibly thumb mode. */
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100237 tst r8, #PSR_T_BIT @ this is SPSR from save_user_regs
238 addne scno, r7, #__NR_SYSCALL_BASE @ put OS number in
239 ldreq scno, [lr, #-4]
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000240
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100241#else
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000242
243 /* Legacy ABI only. */
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100244 ldr scno, [lr, #-4] @ get SWI instruction
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000245 A710( and ip, scno, #0x0f000000 @ check for SWI )
246 A710( teq ip, #0x0f000000 )
247 A710( bne .Larm710bug )
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000248
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100249#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
251#ifdef CONFIG_ALIGNMENT_TRAP
252 ldr ip, __cr_alignment
253 ldr ip, [ip]
254 mcr p15, 0, ip, c1, c0 @ update control register
255#endif
Russell King1ec42c02005-04-26 15:18:26 +0100256 enable_irq
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 get_thread_info tsk
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000259 adr tbl, sys_call_table @ load syscall table pointer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 ldr ip, [tsk, #TI_FLAGS] @ check for syscall tracing
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000261
262#if defined(CONFIG_OABI_COMPAT)
263 /*
264 * If the swi argument is zero, this is an EABI call and we do nothing.
265 *
266 * If this is an old ABI call, get the syscall number into scno and
267 * get the old ABI syscall table address.
268 */
269 bics r10, r10, #0xff000000
270 eorne scno, r10, #__NR_OABI_SYSCALL_BASE
271 ldrne tbl, =sys_oabi_call_table
272#elif !defined(CONFIG_AEABI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 bic scno, scno, #0xff000000 @ mask off SWI op-code
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100274 eor scno, scno, #__NR_SYSCALL_BASE @ check OS number
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000275#endif
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000276
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000277 stmdb sp!, {r4, r5} @ push fifth and sixth args
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 tst ip, #_TIF_SYSCALL_TRACE @ are we tracing syscalls?
279 bne __sys_trace
280
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 cmp scno, #NR_syscalls @ check upper syscall limit
Catalin Marinasb86040a2009-07-24 12:32:54 +0100282 adr lr, BSYM(ret_fast_syscall) @ return address
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 ldrcc pc, [tbl, scno, lsl #2] @ call sys_* routine
284
285 add r1, sp, #S_OFF
2862: mov why, #0 @ no longer a real syscall
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100287 cmp scno, #(__ARM_NR_BASE - __NR_SYSCALL_BASE)
288 eor r0, scno, #__NR_SYSCALL_BASE @ put OS number back
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 bcs arm_syscall
290 b sys_ni_syscall @ not private func
Catalin Marinas93ed3972008-08-28 11:22:32 +0100291ENDPROC(vector_swi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
293 /*
294 * This is the really slow path. We're going to be doing
295 * context switches, and waiting for our parent to respond.
296 */
297__sys_trace:
Nicolas Pitre3f471122006-01-14 19:30:04 +0000298 mov r2, scno
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 add r1, sp, #S_OFF
300 mov r0, #0 @ trace entry [IP = 0]
301 bl syscall_trace
302
Catalin Marinasb86040a2009-07-24 12:32:54 +0100303 adr lr, BSYM(__sys_trace_return) @ return address
Nicolas Pitre3f471122006-01-14 19:30:04 +0000304 mov scno, r0 @ syscall number (possibly new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 add r1, sp, #S_R0 + S_OFF @ pointer to regs
306 cmp scno, #NR_syscalls @ check upper syscall limit
307 ldmccia r1, {r0 - r3} @ have to reload r0 - r3
308 ldrcc pc, [tbl, scno, lsl #2] @ call sys_* routine
309 b 2b
310
311__sys_trace_return:
312 str r0, [sp, #S_R0 + S_OFF]! @ save returned r0
Nicolas Pitre3f471122006-01-14 19:30:04 +0000313 mov r2, scno
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 mov r1, sp
315 mov r0, #1 @ trace exit [IP = 1]
316 bl syscall_trace
317 b ret_slow_syscall
318
319 .align 5
320#ifdef CONFIG_ALIGNMENT_TRAP
321 .type __cr_alignment, #object
322__cr_alignment:
323 .word cr_alignment
324#endif
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000325 .ltorg
326
327/*
328 * This is the syscall table declaration for native ABI syscalls.
329 * With EABI a couple syscalls are obsolete and defined as sys_ni_syscall.
330 */
331#define ABI(native, compat) native
332#ifdef CONFIG_AEABI
333#define OBSOLETE(syscall) sys_ni_syscall
334#else
335#define OBSOLETE(syscall) syscall
336#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
338 .type sys_call_table, #object
339ENTRY(sys_call_table)
340#include "calls.S"
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000341#undef ABI
342#undef OBSOLETE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
344/*============================================================================
345 * Special system call wrappers
346 */
347@ r0 = syscall number
Russell King567bd982005-12-17 15:25:42 +0000348@ r8 = syscall table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349sys_syscall:
Paul Brook52475932006-05-16 14:25:55 +0100350 bic scno, r0, #__NR_OABI_SYSCALL_BASE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 cmp scno, #__NR_syscall - __NR_SYSCALL_BASE
352 cmpne scno, #NR_syscalls @ check range
353 stmloia sp, {r5, r6} @ shuffle args
354 movlo r0, r1
355 movlo r1, r2
356 movlo r2, r3
357 movlo r3, r4
358 ldrlo pc, [tbl, scno, lsl #2]
359 b sys_ni_syscall
Catalin Marinas93ed3972008-08-28 11:22:32 +0100360ENDPROC(sys_syscall)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
362sys_fork_wrapper:
363 add r0, sp, #S_OFF
364 b sys_fork
Catalin Marinas93ed3972008-08-28 11:22:32 +0100365ENDPROC(sys_fork_wrapper)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
367sys_vfork_wrapper:
368 add r0, sp, #S_OFF
369 b sys_vfork
Catalin Marinas93ed3972008-08-28 11:22:32 +0100370ENDPROC(sys_vfork_wrapper)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
372sys_execve_wrapper:
373 add r3, sp, #S_OFF
374 b sys_execve
Catalin Marinas93ed3972008-08-28 11:22:32 +0100375ENDPROC(sys_execve_wrapper)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
377sys_clone_wrapper:
378 add ip, sp, #S_OFF
379 str ip, [sp, #4]
380 b sys_clone
Catalin Marinas93ed3972008-08-28 11:22:32 +0100381ENDPROC(sys_clone_wrapper)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383sys_sigreturn_wrapper:
384 add r0, sp, #S_OFF
385 b sys_sigreturn
Catalin Marinas93ed3972008-08-28 11:22:32 +0100386ENDPROC(sys_sigreturn_wrapper)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
388sys_rt_sigreturn_wrapper:
389 add r0, sp, #S_OFF
390 b sys_rt_sigreturn
Catalin Marinas93ed3972008-08-28 11:22:32 +0100391ENDPROC(sys_rt_sigreturn_wrapper)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
393sys_sigaltstack_wrapper:
394 ldr r2, [sp, #S_OFF + S_SP]
395 b do_sigaltstack
Catalin Marinas93ed3972008-08-28 11:22:32 +0100396ENDPROC(sys_sigaltstack_wrapper)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
Nicolas Pitre713c4812006-01-14 16:35:03 +0000398sys_statfs64_wrapper:
399 teq r1, #88
400 moveq r1, #84
401 b sys_statfs64
Catalin Marinas93ed3972008-08-28 11:22:32 +0100402ENDPROC(sys_statfs64_wrapper)
Nicolas Pitre713c4812006-01-14 16:35:03 +0000403
404sys_fstatfs64_wrapper:
405 teq r1, #88
406 moveq r1, #84
407 b sys_fstatfs64
Catalin Marinas93ed3972008-08-28 11:22:32 +0100408ENDPROC(sys_fstatfs64_wrapper)
Nicolas Pitre713c4812006-01-14 16:35:03 +0000409
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410/*
411 * Note: off_4k (r5) is always units of 4K. If we can't do the requested
412 * offset, we return EINVAL.
413 */
414sys_mmap2:
415#if PAGE_SHIFT > 12
416 tst r5, #PGOFF_MASK
417 moveq r5, r5, lsr #PAGE_SHIFT - 12
418 streq r5, [sp, #4]
Al Virof8b72562009-11-30 17:37:04 -0500419 beq sys_mmap_pgoff
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 mov r0, #-EINVAL
Russell King7999d8d2006-06-25 11:17:23 +0100421 mov pc, lr
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422#else
423 str r5, [sp, #4]
Al Virof8b72562009-11-30 17:37:04 -0500424 b sys_mmap_pgoff
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425#endif
Catalin Marinas93ed3972008-08-28 11:22:32 +0100426ENDPROC(sys_mmap2)
Nicolas Pitre687ad012006-01-14 16:35:31 +0000427
428#ifdef CONFIG_OABI_COMPAT
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000429
Nicolas Pitre687ad012006-01-14 16:35:31 +0000430/*
431 * These are syscalls with argument register differences
432 */
433
434sys_oabi_pread64:
435 stmia sp, {r3, r4}
436 b sys_pread64
Catalin Marinas93ed3972008-08-28 11:22:32 +0100437ENDPROC(sys_oabi_pread64)
Nicolas Pitre687ad012006-01-14 16:35:31 +0000438
439sys_oabi_pwrite64:
440 stmia sp, {r3, r4}
441 b sys_pwrite64
Catalin Marinas93ed3972008-08-28 11:22:32 +0100442ENDPROC(sys_oabi_pwrite64)
Nicolas Pitre687ad012006-01-14 16:35:31 +0000443
444sys_oabi_truncate64:
445 mov r3, r2
446 mov r2, r1
447 b sys_truncate64
Catalin Marinas93ed3972008-08-28 11:22:32 +0100448ENDPROC(sys_oabi_truncate64)
Nicolas Pitre687ad012006-01-14 16:35:31 +0000449
450sys_oabi_ftruncate64:
451 mov r3, r2
452 mov r2, r1
453 b sys_ftruncate64
Catalin Marinas93ed3972008-08-28 11:22:32 +0100454ENDPROC(sys_oabi_ftruncate64)
Nicolas Pitre687ad012006-01-14 16:35:31 +0000455
456sys_oabi_readahead:
457 str r3, [sp]
458 mov r3, r2
459 mov r2, r1
460 b sys_readahead
Catalin Marinas93ed3972008-08-28 11:22:32 +0100461ENDPROC(sys_oabi_readahead)
Nicolas Pitre687ad012006-01-14 16:35:31 +0000462
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000463/*
464 * Let's declare a second syscall table for old ABI binaries
465 * using the compatibility syscall entries.
466 */
467#define ABI(native, compat) compat
468#define OBSOLETE(syscall) syscall
469
470 .type sys_oabi_call_table, #object
471ENTRY(sys_oabi_call_table)
472#include "calls.S"
473#undef ABI
474#undef OBSOLETE
475
Nicolas Pitre687ad012006-01-14 16:35:31 +0000476#endif
477