blob: a0540c9f1f0c4491eaf9da0356941e393b60863d [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
Stephane Eraniana583f1b2007-07-31 00:38:00 -070047 tst r1, #_TIF_SIGPENDING
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)
97 stmdb sp!, {r0-r3, lr}
98 mov r0, lr
Abhishek Sagar395a59d2008-06-21 23:47:27 +053099 sub r0, r0, #MCOUNT_INSN_SIZE
Abhishek Sagar014c2572008-05-31 14:23:50 +0530100
101 .globl mcount_call
102mcount_call:
103 bl ftrace_stub
Uwe Kleine-Königd4cc5102009-03-04 11:48:46 +0100104 ldr lr, [fp, #-4] @ restore lr
Abhishek Sagar014c2572008-05-31 14:23:50 +0530105 ldmia sp!, {r0-r3, pc}
106
107ENTRY(ftrace_caller)
108 stmdb sp!, {r0-r3, lr}
109 ldr r1, [fp, #-4]
110 mov r0, lr
Abhishek Sagar395a59d2008-06-21 23:47:27 +0530111 sub r0, r0, #MCOUNT_INSN_SIZE
Abhishek Sagar014c2572008-05-31 14:23:50 +0530112
113 .globl ftrace_call
114ftrace_call:
115 bl ftrace_stub
Uwe Kleine-Königd4cc5102009-03-04 11:48:46 +0100116 ldr lr, [fp, #-4] @ restore lr
Abhishek Sagar014c2572008-05-31 14:23:50 +0530117 ldmia sp!, {r0-r3, pc}
118
119#else
120
121ENTRY(mcount)
122 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 trace
Uwe Kleine-Königd4cc5102009-03-04 11:48:46 +0100128 ldr lr, [fp, #-4] @ restore lr
Abhishek Sagar014c2572008-05-31 14:23:50 +0530129 ldmia sp!, {r0-r3, pc}
130
131trace:
Uwe Kleine-Königb3c960b2009-01-31 01:21:56 +0100132 ldr r1, [fp, #-4] @ lr of instrumented routine
Abhishek Sagar014c2572008-05-31 14:23:50 +0530133 mov r0, lr
Abhishek Sagar395a59d2008-06-21 23:47:27 +0530134 sub r0, r0, #MCOUNT_INSN_SIZE
Abhishek Sagar014c2572008-05-31 14:23:50 +0530135 mov lr, pc
136 mov pc, r2
Uwe Kleine-Königd4cc5102009-03-04 11:48:46 +0100137 mov lr, r1 @ restore lr
Abhishek Sagar014c2572008-05-31 14:23:50 +0530138 ldmia sp!, {r0-r3, pc}
139
140#endif /* CONFIG_DYNAMIC_FTRACE */
141
142 .globl ftrace_stub
143ftrace_stub:
144 mov pc, lr
145
Steven Rostedt606576c2008-10-06 19:06:12 -0400146#endif /* CONFIG_FUNCTION_TRACER */
Abhishek Sagar014c2572008-05-31 14:23:50 +0530147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148/*=============================================================================
149 * SWI handler
150 *-----------------------------------------------------------------------------
151 */
152
153 /* If we're optimising for StrongARM the resulting code won't
154 run on an ARM7 and we can save a couple of instructions.
155 --pb */
156#ifdef CONFIG_CPU_ARM710
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000157#define A710(code...) code
158.Larm710bug:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 ldmia sp, {r0 - lr}^ @ Get calling r0 - lr
160 mov r0, r0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 add sp, sp, #S_FRAME_SIZE
Nicolas Pitre60ac1332005-10-12 19:51:24 +0100162 subs pc, lr, #4
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163#else
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000164#define A710(code...)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165#endif
166
167 .align 5
168ENTRY(vector_swi)
Russell Kingf4dc9a42005-04-26 15:20:34 +0100169 sub sp, sp, #S_FRAME_SIZE
170 stmia sp, {r0 - r12} @ Calling r0 - r12
Catalin Marinasb86040a2009-07-24 12:32:54 +0100171 ARM( add r8, sp, #S_PC )
172 ARM( stmdb r8, {sp, lr}^ ) @ Calling sp, lr
173 THUMB( mov r8, sp )
174 THUMB( store_user_sp_lr r8, r10, S_SP ) @ calling sp, lr
Russell Kingf4dc9a42005-04-26 15:20:34 +0100175 mrs r8, spsr @ called from non-FIQ mode, so ok.
176 str lr, [sp, #S_PC] @ Save calling PC
177 str r8, [sp, #S_PSR] @ Save CPSR
178 str r0, [sp, #S_OLD_R0] @ Save OLD_R0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 zero_fp
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100180
181 /*
182 * Get the system call number.
183 */
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000184
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000185#if defined(CONFIG_OABI_COMPAT)
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000186
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000187 /*
188 * If we have CONFIG_OABI_COMPAT then we need to look at the swi
189 * value to determine if it is an EABI or an old ABI call.
190 */
191#ifdef CONFIG_ARM_THUMB
192 tst r8, #PSR_T_BIT
193 movne r10, #0 @ no thumb OABI emulation
194 ldreq r10, [lr, #-4] @ get SWI instruction
195#else
196 ldr r10, [lr, #-4] @ get SWI instruction
197 A710( and ip, r10, #0x0f000000 @ check for SWI )
198 A710( teq ip, #0x0f000000 )
199 A710( bne .Larm710bug )
200#endif
Catalin Marinas26584852009-05-30 14:00:18 +0100201#ifdef CONFIG_CPU_ENDIAN_BE8
202 rev r10, r10 @ little endian instruction
203#endif
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000204
205#elif defined(CONFIG_AEABI)
206
207 /*
208 * Pure EABI user space always put syscall number into scno (r7).
209 */
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000210 A710( ldr ip, [lr, #-4] @ get SWI instruction )
211 A710( and ip, ip, #0x0f000000 @ check for SWI )
212 A710( teq ip, #0x0f000000 )
213 A710( bne .Larm710bug )
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000214
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000215#elif defined(CONFIG_ARM_THUMB)
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000216
217 /* Legacy ABI only, possibly thumb mode. */
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100218 tst r8, #PSR_T_BIT @ this is SPSR from save_user_regs
219 addne scno, r7, #__NR_SYSCALL_BASE @ put OS number in
220 ldreq scno, [lr, #-4]
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000221
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100222#else
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000223
224 /* Legacy ABI only. */
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100225 ldr scno, [lr, #-4] @ get SWI instruction
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000226 A710( and ip, scno, #0x0f000000 @ check for SWI )
227 A710( teq ip, #0x0f000000 )
228 A710( bne .Larm710bug )
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000229
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100230#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
232#ifdef CONFIG_ALIGNMENT_TRAP
233 ldr ip, __cr_alignment
234 ldr ip, [ip]
235 mcr p15, 0, ip, c1, c0 @ update control register
236#endif
Russell King1ec42c02005-04-26 15:18:26 +0100237 enable_irq
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 get_thread_info tsk
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000240 adr tbl, sys_call_table @ load syscall table pointer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 ldr ip, [tsk, #TI_FLAGS] @ check for syscall tracing
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000242
243#if defined(CONFIG_OABI_COMPAT)
244 /*
245 * If the swi argument is zero, this is an EABI call and we do nothing.
246 *
247 * If this is an old ABI call, get the syscall number into scno and
248 * get the old ABI syscall table address.
249 */
250 bics r10, r10, #0xff000000
251 eorne scno, r10, #__NR_OABI_SYSCALL_BASE
252 ldrne tbl, =sys_oabi_call_table
253#elif !defined(CONFIG_AEABI)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 bic scno, scno, #0xff000000 @ mask off SWI op-code
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100255 eor scno, scno, #__NR_SYSCALL_BASE @ check OS number
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000256#endif
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000257
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000258 stmdb sp!, {r4, r5} @ push fifth and sixth args
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 tst ip, #_TIF_SYSCALL_TRACE @ are we tracing syscalls?
260 bne __sys_trace
261
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 cmp scno, #NR_syscalls @ check upper syscall limit
Catalin Marinasb86040a2009-07-24 12:32:54 +0100263 adr lr, BSYM(ret_fast_syscall) @ return address
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 ldrcc pc, [tbl, scno, lsl #2] @ call sys_* routine
265
266 add r1, sp, #S_OFF
2672: mov why, #0 @ no longer a real syscall
Russell Kinge0f9f4a2005-04-26 15:19:24 +0100268 cmp scno, #(__ARM_NR_BASE - __NR_SYSCALL_BASE)
269 eor r0, scno, #__NR_SYSCALL_BASE @ put OS number back
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 bcs arm_syscall
271 b sys_ni_syscall @ not private func
Catalin Marinas93ed3972008-08-28 11:22:32 +0100272ENDPROC(vector_swi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
274 /*
275 * This is the really slow path. We're going to be doing
276 * context switches, and waiting for our parent to respond.
277 */
278__sys_trace:
Nicolas Pitre3f471122006-01-14 19:30:04 +0000279 mov r2, scno
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 add r1, sp, #S_OFF
281 mov r0, #0 @ trace entry [IP = 0]
282 bl syscall_trace
283
Catalin Marinasb86040a2009-07-24 12:32:54 +0100284 adr lr, BSYM(__sys_trace_return) @ return address
Nicolas Pitre3f471122006-01-14 19:30:04 +0000285 mov scno, r0 @ syscall number (possibly new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 add r1, sp, #S_R0 + S_OFF @ pointer to regs
287 cmp scno, #NR_syscalls @ check upper syscall limit
288 ldmccia r1, {r0 - r3} @ have to reload r0 - r3
289 ldrcc pc, [tbl, scno, lsl #2] @ call sys_* routine
290 b 2b
291
292__sys_trace_return:
293 str r0, [sp, #S_R0 + S_OFF]! @ save returned r0
Nicolas Pitre3f471122006-01-14 19:30:04 +0000294 mov r2, scno
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 mov r1, sp
296 mov r0, #1 @ trace exit [IP = 1]
297 bl syscall_trace
298 b ret_slow_syscall
299
300 .align 5
301#ifdef CONFIG_ALIGNMENT_TRAP
302 .type __cr_alignment, #object
303__cr_alignment:
304 .word cr_alignment
305#endif
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000306 .ltorg
307
308/*
309 * This is the syscall table declaration for native ABI syscalls.
310 * With EABI a couple syscalls are obsolete and defined as sys_ni_syscall.
311 */
312#define ABI(native, compat) native
313#ifdef CONFIG_AEABI
314#define OBSOLETE(syscall) sys_ni_syscall
315#else
316#define OBSOLETE(syscall) syscall
317#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
319 .type sys_call_table, #object
320ENTRY(sys_call_table)
321#include "calls.S"
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000322#undef ABI
323#undef OBSOLETE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
325/*============================================================================
326 * Special system call wrappers
327 */
328@ r0 = syscall number
Russell King567bd982005-12-17 15:25:42 +0000329@ r8 = syscall table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330sys_syscall:
Paul Brook52475932006-05-16 14:25:55 +0100331 bic scno, r0, #__NR_OABI_SYSCALL_BASE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 cmp scno, #__NR_syscall - __NR_SYSCALL_BASE
333 cmpne scno, #NR_syscalls @ check range
334 stmloia sp, {r5, r6} @ shuffle args
335 movlo r0, r1
336 movlo r1, r2
337 movlo r2, r3
338 movlo r3, r4
339 ldrlo pc, [tbl, scno, lsl #2]
340 b sys_ni_syscall
Catalin Marinas93ed3972008-08-28 11:22:32 +0100341ENDPROC(sys_syscall)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
343sys_fork_wrapper:
344 add r0, sp, #S_OFF
345 b sys_fork
Catalin Marinas93ed3972008-08-28 11:22:32 +0100346ENDPROC(sys_fork_wrapper)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
348sys_vfork_wrapper:
349 add r0, sp, #S_OFF
350 b sys_vfork
Catalin Marinas93ed3972008-08-28 11:22:32 +0100351ENDPROC(sys_vfork_wrapper)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
353sys_execve_wrapper:
354 add r3, sp, #S_OFF
355 b sys_execve
Catalin Marinas93ed3972008-08-28 11:22:32 +0100356ENDPROC(sys_execve_wrapper)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
358sys_clone_wrapper:
359 add ip, sp, #S_OFF
360 str ip, [sp, #4]
361 b sys_clone
Catalin Marinas93ed3972008-08-28 11:22:32 +0100362ENDPROC(sys_clone_wrapper)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
364sys_sigsuspend_wrapper:
365 add r3, sp, #S_OFF
366 b sys_sigsuspend
Catalin Marinas93ed3972008-08-28 11:22:32 +0100367ENDPROC(sys_sigsuspend_wrapper)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
369sys_rt_sigsuspend_wrapper:
370 add r2, sp, #S_OFF
371 b sys_rt_sigsuspend
Catalin Marinas93ed3972008-08-28 11:22:32 +0100372ENDPROC(sys_rt_sigsuspend_wrapper)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
374sys_sigreturn_wrapper:
375 add r0, sp, #S_OFF
376 b sys_sigreturn
Catalin Marinas93ed3972008-08-28 11:22:32 +0100377ENDPROC(sys_sigreturn_wrapper)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
379sys_rt_sigreturn_wrapper:
380 add r0, sp, #S_OFF
381 b sys_rt_sigreturn
Catalin Marinas93ed3972008-08-28 11:22:32 +0100382ENDPROC(sys_rt_sigreturn_wrapper)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
384sys_sigaltstack_wrapper:
385 ldr r2, [sp, #S_OFF + S_SP]
386 b do_sigaltstack
Catalin Marinas93ed3972008-08-28 11:22:32 +0100387ENDPROC(sys_sigaltstack_wrapper)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Nicolas Pitre713c4812006-01-14 16:35:03 +0000389sys_statfs64_wrapper:
390 teq r1, #88
391 moveq r1, #84
392 b sys_statfs64
Catalin Marinas93ed3972008-08-28 11:22:32 +0100393ENDPROC(sys_statfs64_wrapper)
Nicolas Pitre713c4812006-01-14 16:35:03 +0000394
395sys_fstatfs64_wrapper:
396 teq r1, #88
397 moveq r1, #84
398 b sys_fstatfs64
Catalin Marinas93ed3972008-08-28 11:22:32 +0100399ENDPROC(sys_fstatfs64_wrapper)
Nicolas Pitre713c4812006-01-14 16:35:03 +0000400
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401/*
402 * Note: off_4k (r5) is always units of 4K. If we can't do the requested
403 * offset, we return EINVAL.
404 */
405sys_mmap2:
406#if PAGE_SHIFT > 12
407 tst r5, #PGOFF_MASK
408 moveq r5, r5, lsr #PAGE_SHIFT - 12
409 streq r5, [sp, #4]
410 beq do_mmap2
411 mov r0, #-EINVAL
Russell King7999d8d2006-06-25 11:17:23 +0100412 mov pc, lr
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413#else
414 str r5, [sp, #4]
415 b do_mmap2
416#endif
Catalin Marinas93ed3972008-08-28 11:22:32 +0100417ENDPROC(sys_mmap2)
Nicolas Pitre687ad012006-01-14 16:35:31 +0000418
Paul Brook48d79272008-04-18 22:43:07 +0100419ENTRY(pabort_ifar)
420 mrc p15, 0, r0, cr6, cr0, 2
421ENTRY(pabort_noifar)
422 mov pc, lr
Catalin Marinas93ed3972008-08-28 11:22:32 +0100423ENDPROC(pabort_ifar)
424ENDPROC(pabort_noifar)
Paul Brook48d79272008-04-18 22:43:07 +0100425
Nicolas Pitre687ad012006-01-14 16:35:31 +0000426#ifdef CONFIG_OABI_COMPAT
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000427
Nicolas Pitre687ad012006-01-14 16:35:31 +0000428/*
429 * These are syscalls with argument register differences
430 */
431
432sys_oabi_pread64:
433 stmia sp, {r3, r4}
434 b sys_pread64
Catalin Marinas93ed3972008-08-28 11:22:32 +0100435ENDPROC(sys_oabi_pread64)
Nicolas Pitre687ad012006-01-14 16:35:31 +0000436
437sys_oabi_pwrite64:
438 stmia sp, {r3, r4}
439 b sys_pwrite64
Catalin Marinas93ed3972008-08-28 11:22:32 +0100440ENDPROC(sys_oabi_pwrite64)
Nicolas Pitre687ad012006-01-14 16:35:31 +0000441
442sys_oabi_truncate64:
443 mov r3, r2
444 mov r2, r1
445 b sys_truncate64
Catalin Marinas93ed3972008-08-28 11:22:32 +0100446ENDPROC(sys_oabi_truncate64)
Nicolas Pitre687ad012006-01-14 16:35:31 +0000447
448sys_oabi_ftruncate64:
449 mov r3, r2
450 mov r2, r1
451 b sys_ftruncate64
Catalin Marinas93ed3972008-08-28 11:22:32 +0100452ENDPROC(sys_oabi_ftruncate64)
Nicolas Pitre687ad012006-01-14 16:35:31 +0000453
454sys_oabi_readahead:
455 str r3, [sp]
456 mov r3, r2
457 mov r2, r1
458 b sys_readahead
Catalin Marinas93ed3972008-08-28 11:22:32 +0100459ENDPROC(sys_oabi_readahead)
Nicolas Pitre687ad012006-01-14 16:35:31 +0000460
Nicolas Pitredd35afc2006-01-14 16:36:12 +0000461/*
462 * Let's declare a second syscall table for old ABI binaries
463 * using the compatibility syscall entries.
464 */
465#define ABI(native, compat) compat
466#define OBSOLETE(syscall) syscall
467
468 .type sys_oabi_call_table, #object
469ENTRY(sys_oabi_call_table)
470#include "calls.S"
471#undef ABI
472#undef OBSOLETE
473
Nicolas Pitre687ad012006-01-14 16:35:31 +0000474#endif
475