Thumb-2: Implementation of the unified start-up and exceptions code
[deliverable/linux.git] / arch / arm / kernel / entry-common.S
CommitLineData
1da177e4
LT
1/*
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 */
1da177e4 10
1da177e4 11#include <asm/unistd.h>
395a59d0 12#include <asm/ftrace.h>
a09e64fb 13#include <mach/entry-macro.S>
c4c5716e 14#include <asm/unwind.h>
1da177e4
LT
15
16#include "entry-header.S"
17
1da177e4
LT
18
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:
c4c5716e
CM
26 UNWIND(.fnstart )
27 UNWIND(.cantunwind )
1ec42c0c 28 disable_irq @ disable interrupts
1da177e4
LT
29 ldr r1, [tsk, #TI_FLAGS]
30 tst r1, #_TIF_WORK_MASK
31 bne fast_work_pending
f4dc9a4c 32
f80dff9d
DW
33 /* perform architecture specific actions before user return */
34 arch_ret_to_user r1, lr
35
b86040a5 36 restore_user_regs fast = 1, offset = S_OFF
c4c5716e 37 UNWIND(.fnend )
1da177e4
LT
38
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
a583f1b5 47 tst r1, #_TIF_SIGPENDING
1da177e4
LT
48 beq no_work_pending
49 mov r0, sp @ 'regs'
50 mov r2, why @ 'syscall'
51 bl do_notify_resume
a6c61e9d 52 b ret_slow_syscall @ Check work again
1da177e4
LT
53
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:
1ec42c0c 61 disable_irq @ disable interrupts
1da177e4
LT
62 ldr r1, [tsk, #TI_FLAGS]
63 tst r1, #_TIF_WORK_MASK
64 bne work_pending
65no_work_pending:
f80dff9d
DW
66 /* perform architecture specific actions before user return */
67 arch_ret_to_user r1, lr
68
b86040a5 69 restore_user_regs fast = 0, offset = 0
93ed3970 70ENDPROC(ret_to_user)
1da177e4
LT
71
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
93ed3970 86ENDPROC(ret_from_fork)
1da177e4 87
fa1b4f91
AV
88 .equ NR_syscalls,0
89#define CALL(x) .equ NR_syscalls,NR_syscalls+1
1da177e4 90#include "calls.S"
fa1b4f91
AV
91#undef CALL
92#define CALL(x) .long x
1da177e4 93
606576ce 94#ifdef CONFIG_FUNCTION_TRACER
014c257c
AS
95#ifdef CONFIG_DYNAMIC_FTRACE
96ENTRY(mcount)
97 stmdb sp!, {r0-r3, lr}
98 mov r0, lr
395a59d0 99 sub r0, r0, #MCOUNT_INSN_SIZE
014c257c
AS
100
101 .globl mcount_call
102mcount_call:
103 bl ftrace_stub
d4cc510c 104 ldr lr, [fp, #-4] @ restore lr
014c257c
AS
105 ldmia sp!, {r0-r3, pc}
106
107ENTRY(ftrace_caller)
108 stmdb sp!, {r0-r3, lr}
109 ldr r1, [fp, #-4]
110 mov r0, lr
395a59d0 111 sub r0, r0, #MCOUNT_INSN_SIZE
014c257c
AS
112
113 .globl ftrace_call
114ftrace_call:
115 bl ftrace_stub
d4cc510c 116 ldr lr, [fp, #-4] @ restore lr
014c257c
AS
117 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
d4cc510c 128 ldr lr, [fp, #-4] @ restore lr
014c257c
AS
129 ldmia sp!, {r0-r3, pc}
130
131trace:
b3c960b2 132 ldr r1, [fp, #-4] @ lr of instrumented routine
014c257c 133 mov r0, lr
395a59d0 134 sub r0, r0, #MCOUNT_INSN_SIZE
014c257c
AS
135 mov lr, pc
136 mov pc, r2
d4cc510c 137 mov lr, r1 @ restore lr
014c257c
AS
138 ldmia sp!, {r0-r3, pc}
139
140#endif /* CONFIG_DYNAMIC_FTRACE */
141
142 .globl ftrace_stub
143ftrace_stub:
144 mov pc, lr
145
606576ce 146#endif /* CONFIG_FUNCTION_TRACER */
014c257c 147
1da177e4
LT
148/*=============================================================================
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
3f2829a3
NP
157#define A710(code...) code
158.Larm710bug:
1da177e4
LT
159 ldmia sp, {r0 - lr}^ @ Get calling r0 - lr
160 mov r0, r0
1da177e4 161 add sp, sp, #S_FRAME_SIZE
60ac133a 162 subs pc, lr, #4
1da177e4 163#else
3f2829a3 164#define A710(code...)
1da177e4
LT
165#endif
166
167 .align 5
168ENTRY(vector_swi)
f4dc9a4c
RK
169 sub sp, sp, #S_FRAME_SIZE
170 stmia sp, {r0 - r12} @ Calling r0 - r12
b86040a5
CM
171 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
f4dc9a4c
RK
175 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
1da177e4 179 zero_fp
e0f9f4a6
RK
180
181 /*
182 * Get the system call number.
183 */
3f2829a3 184
dd35afc2 185#if defined(CONFIG_OABI_COMPAT)
3f2829a3 186
dd35afc2
NP
187 /*
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
26584853
CM
201#ifdef CONFIG_CPU_ENDIAN_BE8
202 rev r10, r10 @ little endian instruction
203#endif
dd35afc2
NP
204
205#elif defined(CONFIG_AEABI)
206
207 /*
208 * Pure EABI user space always put syscall number into scno (r7).
209 */
3f2829a3
NP
210 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 )
dd35afc2 214
3f2829a3 215#elif defined(CONFIG_ARM_THUMB)
dd35afc2
NP
216
217 /* Legacy ABI only, possibly thumb mode. */
e0f9f4a6
RK
218 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]
dd35afc2 221
e0f9f4a6 222#else
dd35afc2
NP
223
224 /* Legacy ABI only. */
e0f9f4a6 225 ldr scno, [lr, #-4] @ get SWI instruction
3f2829a3
NP
226 A710( and ip, scno, #0x0f000000 @ check for SWI )
227 A710( teq ip, #0x0f000000 )
228 A710( bne .Larm710bug )
dd35afc2 229
e0f9f4a6 230#endif
1da177e4
LT
231
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
1ec42c0c 237 enable_irq
1da177e4 238
1da177e4 239 get_thread_info tsk
dd35afc2 240 adr tbl, sys_call_table @ load syscall table pointer
1da177e4 241 ldr ip, [tsk, #TI_FLAGS] @ check for syscall tracing
dd35afc2
NP
242
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)
1da177e4 254 bic scno, scno, #0xff000000 @ mask off SWI op-code
e0f9f4a6 255 eor scno, scno, #__NR_SYSCALL_BASE @ check OS number
3f2829a3 256#endif
dd35afc2 257
3f2829a3 258 stmdb sp!, {r4, r5} @ push fifth and sixth args
1da177e4
LT
259 tst ip, #_TIF_SYSCALL_TRACE @ are we tracing syscalls?
260 bne __sys_trace
261
1da177e4 262 cmp scno, #NR_syscalls @ check upper syscall limit
b86040a5 263 adr lr, BSYM(ret_fast_syscall) @ return address
1da177e4
LT
264 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
e0f9f4a6
RK
268 cmp scno, #(__ARM_NR_BASE - __NR_SYSCALL_BASE)
269 eor r0, scno, #__NR_SYSCALL_BASE @ put OS number back
1da177e4
LT
270 bcs arm_syscall
271 b sys_ni_syscall @ not private func
93ed3970 272ENDPROC(vector_swi)
1da177e4
LT
273
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:
3f471126 279 mov r2, scno
1da177e4
LT
280 add r1, sp, #S_OFF
281 mov r0, #0 @ trace entry [IP = 0]
282 bl syscall_trace
283
b86040a5 284 adr lr, BSYM(__sys_trace_return) @ return address
3f471126 285 mov scno, r0 @ syscall number (possibly new)
1da177e4
LT
286 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
3f471126 294 mov r2, scno
1da177e4
LT
295 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
dd35afc2
NP
305#endif
306 .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
1da177e4
LT
317#endif
318
319 .type sys_call_table, #object
320ENTRY(sys_call_table)
321#include "calls.S"
dd35afc2
NP
322#undef ABI
323#undef OBSOLETE
1da177e4
LT
324
325/*============================================================================
326 * Special system call wrappers
327 */
328@ r0 = syscall number
567bd980 329@ r8 = syscall table
1da177e4 330sys_syscall:
5247593c 331 bic scno, r0, #__NR_OABI_SYSCALL_BASE
1da177e4
LT
332 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
93ed3970 341ENDPROC(sys_syscall)
1da177e4
LT
342
343sys_fork_wrapper:
344 add r0, sp, #S_OFF
345 b sys_fork
93ed3970 346ENDPROC(sys_fork_wrapper)
1da177e4
LT
347
348sys_vfork_wrapper:
349 add r0, sp, #S_OFF
350 b sys_vfork
93ed3970 351ENDPROC(sys_vfork_wrapper)
1da177e4
LT
352
353sys_execve_wrapper:
354 add r3, sp, #S_OFF
355 b sys_execve
93ed3970 356ENDPROC(sys_execve_wrapper)
1da177e4
LT
357
358sys_clone_wrapper:
359 add ip, sp, #S_OFF
360 str ip, [sp, #4]
361 b sys_clone
93ed3970 362ENDPROC(sys_clone_wrapper)
1da177e4
LT
363
364sys_sigsuspend_wrapper:
365 add r3, sp, #S_OFF
366 b sys_sigsuspend
93ed3970 367ENDPROC(sys_sigsuspend_wrapper)
1da177e4
LT
368
369sys_rt_sigsuspend_wrapper:
370 add r2, sp, #S_OFF
371 b sys_rt_sigsuspend
93ed3970 372ENDPROC(sys_rt_sigsuspend_wrapper)
1da177e4
LT
373
374sys_sigreturn_wrapper:
375 add r0, sp, #S_OFF
376 b sys_sigreturn
93ed3970 377ENDPROC(sys_sigreturn_wrapper)
1da177e4
LT
378
379sys_rt_sigreturn_wrapper:
380 add r0, sp, #S_OFF
381 b sys_rt_sigreturn
93ed3970 382ENDPROC(sys_rt_sigreturn_wrapper)
1da177e4
LT
383
384sys_sigaltstack_wrapper:
385 ldr r2, [sp, #S_OFF + S_SP]
386 b do_sigaltstack
93ed3970 387ENDPROC(sys_sigaltstack_wrapper)
1da177e4 388
713c4815
NP
389sys_statfs64_wrapper:
390 teq r1, #88
391 moveq r1, #84
392 b sys_statfs64
93ed3970 393ENDPROC(sys_statfs64_wrapper)
713c4815
NP
394
395sys_fstatfs64_wrapper:
396 teq r1, #88
397 moveq r1, #84
398 b sys_fstatfs64
93ed3970 399ENDPROC(sys_fstatfs64_wrapper)
713c4815 400
1da177e4
LT
401/*
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
7999d8d7 412 mov pc, lr
1da177e4
LT
413#else
414 str r5, [sp, #4]
415 b do_mmap2
416#endif
93ed3970 417ENDPROC(sys_mmap2)
687ad019 418
48d7927b
PB
419ENTRY(pabort_ifar)
420 mrc p15, 0, r0, cr6, cr0, 2
421ENTRY(pabort_noifar)
422 mov pc, lr
93ed3970
CM
423ENDPROC(pabort_ifar)
424ENDPROC(pabort_noifar)
48d7927b 425
687ad019 426#ifdef CONFIG_OABI_COMPAT
dd35afc2 427
687ad019
NP
428/*
429 * These are syscalls with argument register differences
430 */
431
432sys_oabi_pread64:
433 stmia sp, {r3, r4}
434 b sys_pread64
93ed3970 435ENDPROC(sys_oabi_pread64)
687ad019
NP
436
437sys_oabi_pwrite64:
438 stmia sp, {r3, r4}
439 b sys_pwrite64
93ed3970 440ENDPROC(sys_oabi_pwrite64)
687ad019
NP
441
442sys_oabi_truncate64:
443 mov r3, r2
444 mov r2, r1
445 b sys_truncate64
93ed3970 446ENDPROC(sys_oabi_truncate64)
687ad019
NP
447
448sys_oabi_ftruncate64:
449 mov r3, r2
450 mov r2, r1
451 b sys_ftruncate64
93ed3970 452ENDPROC(sys_oabi_ftruncate64)
687ad019
NP
453
454sys_oabi_readahead:
455 str r3, [sp]
456 mov r3, r2
457 mov r2, r1
458 b sys_readahead
93ed3970 459ENDPROC(sys_oabi_readahead)
687ad019 460
dd35afc2
NP
461/*
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
687ad019
NP
474#endif
475
This page took 0.362475 seconds and 5 git commands to generate.