blob: 2b46fea36c9fa30ab41c3747686d40eb2f64e67f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/arm/kernel/entry-armv.S
3 *
4 * Copyright (C) 1996,1997,1998 Russell King.
5 * ARM700 fix by Matthew Godbolt (linux-user@willothewisp.demon.co.uk)
Hyok S. Choiafeb90c2006-01-13 21:05:25 +00006 * nommu support by Hyok S. Choi (hyok.choi@samsung.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 *
12 * Low-level vector interface routines
13 *
Nicolas Pitre70b6f2b2007-12-04 14:33:33 +010014 * Note: there is a StrongARM bug in the STMIA rn, {regs}^ instruction
15 * that causes it to save wrong values... Be aware!
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
Nicolas Pitref09b9972005-10-29 21:44:55 +010018#include <asm/memory.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <asm/glue.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <asm/vfpmacros.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010021#include <mach/entry-macro.S>
Russell Kingd6551e82006-06-21 13:31:52 +010022#include <asm/thread_notify.h>
Catalin Marinasc4c57162009-02-16 11:42:09 +010023#include <asm/unwind.h>
Russell Kingcc20d422009-11-09 23:53:29 +000024#include <asm/unistd.h>
Tony Lindgrenf159f4e2010-07-05 14:53:10 +010025#include <asm/tls.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
27#include "entry-header.S"
Magnus Dammcd544ce2010-12-22 13:20:08 +010028#include <asm/entry-macro-multi.S>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
30/*
Russell King187a51a2005-05-21 18:14:44 +010031 * Interrupt handling. Preserves r7, r8, r9
32 */
33 .macro irq_handler
eric miao52108642010-12-13 09:42:34 +010034#ifdef CONFIG_MULTI_IRQ_HANDLER
35 ldr r5, =handle_arch_irq
36 mov r0, sp
37 ldr r5, [r5]
38 adr lr, BSYM(9997f)
39 teq r5, #0
40 movne pc, r5
Russell King37ee16a2005-11-08 19:08:05 +000041#endif
Magnus Dammcd544ce2010-12-22 13:20:08 +010042 arch_irq_handler_default
Russell Kingf00ec482010-09-04 10:47:48 +0100439997:
Russell King187a51a2005-05-21 18:14:44 +010044 .endm
45
Nicolas Pitre785d3cd2007-12-03 15:27:56 -050046#ifdef CONFIG_KPROBES
47 .section .kprobes.text,"ax",%progbits
48#else
49 .text
50#endif
51
Russell King187a51a2005-05-21 18:14:44 +010052/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 * Invalid mode handlers
54 */
Russell Kingccea7a12005-05-31 22:22:32 +010055 .macro inv_entry, reason
56 sub sp, sp, #S_FRAME_SIZE
Catalin Marinasb86040a2009-07-24 12:32:54 +010057 ARM( stmib sp, {r1 - lr} )
58 THUMB( stmia sp, {r0 - r12} )
59 THUMB( str sp, [sp, #S_SP] )
60 THUMB( str lr, [sp, #S_LR] )
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 mov r1, #\reason
62 .endm
63
64__pabt_invalid:
Russell Kingccea7a12005-05-31 22:22:32 +010065 inv_entry BAD_PREFETCH
66 b common_invalid
Catalin Marinas93ed3972008-08-28 11:22:32 +010067ENDPROC(__pabt_invalid)
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69__dabt_invalid:
Russell Kingccea7a12005-05-31 22:22:32 +010070 inv_entry BAD_DATA
71 b common_invalid
Catalin Marinas93ed3972008-08-28 11:22:32 +010072ENDPROC(__dabt_invalid)
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74__irq_invalid:
Russell Kingccea7a12005-05-31 22:22:32 +010075 inv_entry BAD_IRQ
76 b common_invalid
Catalin Marinas93ed3972008-08-28 11:22:32 +010077ENDPROC(__irq_invalid)
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79__und_invalid:
Russell Kingccea7a12005-05-31 22:22:32 +010080 inv_entry BAD_UNDEFINSTR
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Russell Kingccea7a12005-05-31 22:22:32 +010082 @
83 @ XXX fall through to common_invalid
84 @
85
86@
87@ common_invalid - generic code for failed exception (re-entrant version of handlers)
88@
89common_invalid:
90 zero_fp
91
92 ldmia r0, {r4 - r6}
93 add r0, sp, #S_PC @ here for interlock avoidance
94 mov r7, #-1 @ "" "" "" ""
95 str r4, [sp] @ save preserved r0
96 stmia r0, {r5 - r7} @ lr_<exception>,
97 @ cpsr_<exception>, "old_r0"
98
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 mov r0, sp
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 b bad_mode
Catalin Marinas93ed3972008-08-28 11:22:32 +0100101ENDPROC(__und_invalid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
103/*
104 * SVC mode handlers
105 */
Nicolas Pitre2dede2d2006-01-14 16:18:08 +0000106
107#if defined(CONFIG_AEABI) && (__LINUX_ARM_ARCH__ >= 5)
108#define SPFIX(code...) code
109#else
110#define SPFIX(code...)
111#endif
112
Nicolas Pitred30a0c82007-12-14 15:56:01 -0500113 .macro svc_entry, stack_hole=0
Catalin Marinasc4c57162009-02-16 11:42:09 +0100114 UNWIND(.fnstart )
115 UNWIND(.save {r0 - pc} )
Catalin Marinasb86040a2009-07-24 12:32:54 +0100116 sub sp, sp, #(S_FRAME_SIZE + \stack_hole - 4)
117#ifdef CONFIG_THUMB2_KERNEL
118 SPFIX( str r0, [sp] ) @ temporarily saved
119 SPFIX( mov r0, sp )
120 SPFIX( tst r0, #4 ) @ test original stack alignment
121 SPFIX( ldr r0, [sp] ) @ restored
122#else
Nicolas Pitre2dede2d2006-01-14 16:18:08 +0000123 SPFIX( tst sp, #4 )
Catalin Marinasb86040a2009-07-24 12:32:54 +0100124#endif
125 SPFIX( subeq sp, sp, #4 )
126 stmia sp, {r1 - r12}
Russell Kingccea7a12005-05-31 22:22:32 +0100127
128 ldmia r0, {r1 - r3}
Catalin Marinasb86040a2009-07-24 12:32:54 +0100129 add r5, sp, #S_SP - 4 @ here for interlock avoidance
Russell Kingccea7a12005-05-31 22:22:32 +0100130 mov r4, #-1 @ "" "" "" ""
Catalin Marinasb86040a2009-07-24 12:32:54 +0100131 add r0, sp, #(S_FRAME_SIZE + \stack_hole - 4)
132 SPFIX( addeq r0, r0, #4 )
133 str r1, [sp, #-4]! @ save the "real" r0 copied
Russell Kingccea7a12005-05-31 22:22:32 +0100134 @ from the exception stack
135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 mov r1, lr
137
138 @
139 @ We are now ready to fill in the remaining blanks on the stack:
140 @
141 @ r0 - sp_svc
142 @ r1 - lr_svc
143 @ r2 - lr_<exception>, already fixed up for correct return/restart
144 @ r3 - spsr_<exception>
145 @ r4 - orig_r0 (see pt_regs definition in ptrace.h)
146 @
147 stmia r5, {r0 - r4}
148 .endm
149
150 .align 5
151__dabt_svc:
Russell Kingccea7a12005-05-31 22:22:32 +0100152 svc_entry
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
154 @
155 @ get ready to re-enable interrupts if appropriate
156 @
157 mrs r9, cpsr
158 tst r3, #PSR_I_BIT
159 biceq r9, r9, #PSR_I_BIT
160
161 @
162 @ Call the processor-specific abort handler:
163 @
164 @ r2 - aborted context pc
165 @ r3 - aborted context cpsr
166 @
167 @ The abort handler must return the aborted address in r0, and
168 @ the fault status register in r1. r9 must be preserved.
169 @
Paul Brook48d79272008-04-18 22:43:07 +0100170#ifdef MULTI_DABORT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 ldr r4, .LCprocfns
172 mov lr, pc
Paul Brook48d79272008-04-18 22:43:07 +0100173 ldr pc, [r4, #PROCESSOR_DABT_FUNC]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174#else
Paul Brook48d79272008-04-18 22:43:07 +0100175 bl CPU_DABORT_HANDLER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176#endif
177
178 @
179 @ set desired IRQ state, then call main handler
180 @
Will Deacon7e202692010-11-28 14:57:24 +0000181 debug_entry r1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 msr cpsr_c, r9
183 mov r2, sp
184 bl do_DataAbort
185
186 @
187 @ IRQs off again before pulling preserved data off the stack
188 @
Russell Kingac788842010-07-10 10:10:18 +0100189 disable_irq_notrace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
191 @
192 @ restore SPSR and restart the instruction
193 @
Catalin Marinasb86040a2009-07-24 12:32:54 +0100194 ldr r2, [sp, #S_PSR]
195 svc_exit r2 @ return from exception
Catalin Marinasc4c57162009-02-16 11:42:09 +0100196 UNWIND(.fnend )
Catalin Marinas93ed3972008-08-28 11:22:32 +0100197ENDPROC(__dabt_svc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
199 .align 5
200__irq_svc:
Russell Kingccea7a12005-05-31 22:22:32 +0100201 svc_entry
202
Russell Kingac788842010-07-10 10:10:18 +0100203#ifdef CONFIG_TRACE_IRQFLAGS
204 bl trace_hardirqs_off
205#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206#ifdef CONFIG_PREEMPT
Russell King706fdd92005-05-21 18:15:45 +0100207 get_thread_info tsk
208 ldr r8, [tsk, #TI_PREEMPT] @ get preempt count
209 add r7, r8, #1 @ increment it
210 str r7, [tsk, #TI_PREEMPT]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211#endif
Russell Kingccea7a12005-05-31 22:22:32 +0100212
Russell King187a51a2005-05-21 18:14:44 +0100213 irq_handler
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214#ifdef CONFIG_PREEMPT
Russell King28fab1a2008-04-13 17:47:35 +0100215 str r8, [tsk, #TI_PREEMPT] @ restore preempt count
Russell King706fdd92005-05-21 18:15:45 +0100216 ldr r0, [tsk, #TI_FLAGS] @ get flags
Russell King28fab1a2008-04-13 17:47:35 +0100217 teq r8, #0 @ if preempt count != 0
218 movne r0, #0 @ force flags to 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 tst r0, #_TIF_NEED_RESCHED
220 blne svc_preempt
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221#endif
Catalin Marinasb86040a2009-07-24 12:32:54 +0100222 ldr r4, [sp, #S_PSR] @ irqs are already disabled
Russell King7ad1bcb2006-08-27 12:07:02 +0100223#ifdef CONFIG_TRACE_IRQFLAGS
Catalin Marinasb86040a2009-07-24 12:32:54 +0100224 tst r4, #PSR_I_BIT
Russell King7ad1bcb2006-08-27 12:07:02 +0100225 bleq trace_hardirqs_on
226#endif
Catalin Marinasb86040a2009-07-24 12:32:54 +0100227 svc_exit r4 @ return from exception
Catalin Marinasc4c57162009-02-16 11:42:09 +0100228 UNWIND(.fnend )
Catalin Marinas93ed3972008-08-28 11:22:32 +0100229ENDPROC(__irq_svc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
231 .ltorg
232
233#ifdef CONFIG_PREEMPT
234svc_preempt:
Russell King28fab1a2008-04-13 17:47:35 +0100235 mov r8, lr
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361: bl preempt_schedule_irq @ irq en/disable is done inside
Russell King706fdd92005-05-21 18:15:45 +0100237 ldr r0, [tsk, #TI_FLAGS] @ get new tasks TI_FLAGS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 tst r0, #_TIF_NEED_RESCHED
Russell King28fab1a2008-04-13 17:47:35 +0100239 moveq pc, r8 @ go again
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 b 1b
241#endif
242
243 .align 5
244__und_svc:
Nicolas Pitred30a0c82007-12-14 15:56:01 -0500245#ifdef CONFIG_KPROBES
246 @ If a kprobe is about to simulate a "stmdb sp..." instruction,
247 @ it obviously needs free stack space which then will belong to
248 @ the saved context.
249 svc_entry 64
250#else
Russell Kingccea7a12005-05-31 22:22:32 +0100251 svc_entry
Nicolas Pitred30a0c82007-12-14 15:56:01 -0500252#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
254 @
255 @ call emulation code, which returns using r9 if it has emulated
256 @ the instruction, or the more conventional lr if we are to treat
257 @ this as a real undefined instruction
258 @
259 @ r0 - instruction
260 @
Catalin Marinas83e686e2009-09-18 23:27:07 +0100261#ifndef CONFIG_THUMB2_KERNEL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 ldr r0, [r2, #-4]
Catalin Marinas83e686e2009-09-18 23:27:07 +0100263#else
264 ldrh r0, [r2, #-2] @ Thumb instruction at LR - 2
265 and r9, r0, #0xf800
266 cmp r9, #0xe800 @ 32-bit instruction if xx >= 0
267 ldrhhs r9, [r2] @ bottom 16 bits
268 orrhs r0, r9, r0, lsl #16
269#endif
Catalin Marinasb86040a2009-07-24 12:32:54 +0100270 adr r9, BSYM(1f)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 bl call_fpe
272
273 mov r0, sp @ struct pt_regs *regs
274 bl do_undefinstr
275
276 @
277 @ IRQs off again before pulling preserved data off the stack
278 @
Russell Kingac788842010-07-10 10:10:18 +01002791: disable_irq_notrace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
281 @
282 @ restore SPSR and restart the instruction
283 @
Catalin Marinasb86040a2009-07-24 12:32:54 +0100284 ldr r2, [sp, #S_PSR] @ Get SVC cpsr
285 svc_exit r2 @ return from exception
Catalin Marinasc4c57162009-02-16 11:42:09 +0100286 UNWIND(.fnend )
Catalin Marinas93ed3972008-08-28 11:22:32 +0100287ENDPROC(__und_svc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
289 .align 5
290__pabt_svc:
Russell Kingccea7a12005-05-31 22:22:32 +0100291 svc_entry
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
293 @
294 @ re-enable interrupts if appropriate
295 @
296 mrs r9, cpsr
297 tst r3, #PSR_I_BIT
298 biceq r9, r9, #PSR_I_BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
Paul Brook48d79272008-04-18 22:43:07 +0100300 mov r0, r2 @ pass address of aborted instruction.
Kirill A. Shutemov4fb28472009-09-25 13:39:47 +0100301#ifdef MULTI_PABORT
Paul Brook48d79272008-04-18 22:43:07 +0100302 ldr r4, .LCprocfns
303 mov lr, pc
304 ldr pc, [r4, #PROCESSOR_PABT_FUNC]
305#else
Kirill A. Shutemov4fb28472009-09-25 13:39:47 +0100306 bl CPU_PABORT_HANDLER
Paul Brook48d79272008-04-18 22:43:07 +0100307#endif
Will Deacon7e202692010-11-28 14:57:24 +0000308 debug_entry r1
Paul Brook48d79272008-04-18 22:43:07 +0100309 msr cpsr_c, r9 @ Maybe enable interrupts
Kirill A. Shutemov4fb28472009-09-25 13:39:47 +0100310 mov r2, sp @ regs
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 bl do_PrefetchAbort @ call abort handler
312
313 @
314 @ IRQs off again before pulling preserved data off the stack
315 @
Russell Kingac788842010-07-10 10:10:18 +0100316 disable_irq_notrace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
318 @
319 @ restore SPSR and restart the instruction
320 @
Catalin Marinasb86040a2009-07-24 12:32:54 +0100321 ldr r2, [sp, #S_PSR]
322 svc_exit r2 @ return from exception
Catalin Marinasc4c57162009-02-16 11:42:09 +0100323 UNWIND(.fnend )
Catalin Marinas93ed3972008-08-28 11:22:32 +0100324ENDPROC(__pabt_svc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
326 .align 5
Russell King49f680e2005-05-31 18:02:00 +0100327.LCcralign:
328 .word cr_alignment
Paul Brook48d79272008-04-18 22:43:07 +0100329#ifdef MULTI_DABORT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330.LCprocfns:
331 .word processor
332#endif
333.LCfp:
334 .word fp_enter
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
336/*
337 * User mode handlers
Nicolas Pitre2dede2d2006-01-14 16:18:08 +0000338 *
339 * EABI note: sp_svc is always 64-bit aligned here, so should S_FRAME_SIZE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 */
Nicolas Pitre2dede2d2006-01-14 16:18:08 +0000341
342#if defined(CONFIG_AEABI) && (__LINUX_ARM_ARCH__ >= 5) && (S_FRAME_SIZE & 7)
343#error "sizeof(struct pt_regs) must be a multiple of 8"
344#endif
345
Russell Kingccea7a12005-05-31 22:22:32 +0100346 .macro usr_entry
Catalin Marinasc4c57162009-02-16 11:42:09 +0100347 UNWIND(.fnstart )
348 UNWIND(.cantunwind ) @ don't unwind the user space
Russell Kingccea7a12005-05-31 22:22:32 +0100349 sub sp, sp, #S_FRAME_SIZE
Catalin Marinasb86040a2009-07-24 12:32:54 +0100350 ARM( stmib sp, {r1 - r12} )
351 THUMB( stmia sp, {r0 - r12} )
Russell Kingccea7a12005-05-31 22:22:32 +0100352
353 ldmia r0, {r1 - r3}
354 add r0, sp, #S_PC @ here for interlock avoidance
355 mov r4, #-1 @ "" "" "" ""
356
357 str r1, [sp] @ save the "real" r0 copied
358 @ from the exception stack
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
360 @
361 @ We are now ready to fill in the remaining blanks on the stack:
362 @
363 @ r2 - lr_<exception>, already fixed up for correct return/restart
364 @ r3 - spsr_<exception>
365 @ r4 - orig_r0 (see pt_regs definition in ptrace.h)
366 @
367 @ Also, separately save sp_usr and lr_usr
368 @
Russell Kingccea7a12005-05-31 22:22:32 +0100369 stmia r0, {r2 - r4}
Catalin Marinasb86040a2009-07-24 12:32:54 +0100370 ARM( stmdb r0, {sp, lr}^ )
371 THUMB( store_user_sp_lr r0, r1, S_SP - S_PC )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
373 @
374 @ Enable the alignment trap while in kernel mode
375 @
Russell King49f680e2005-05-31 18:02:00 +0100376 alignment_trap r0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
378 @
379 @ Clear FP to mark the first stack frame
380 @
381 zero_fp
382 .endm
383
Nicolas Pitreb49c0f22007-11-20 17:20:29 +0100384 .macro kuser_cmpxchg_check
385#if __LINUX_ARM_ARCH__ < 6 && !defined(CONFIG_NEEDS_SYSCALL_FOR_CMPXCHG)
386#ifndef CONFIG_MMU
387#warning "NPTL on non MMU needs fixing"
388#else
389 @ Make sure our user space atomic helper is restarted
390 @ if it was interrupted in a critical region. Here we
391 @ perform a quick test inline since it should be false
392 @ 99.9999% of the time. The rest is done out of line.
393 cmp r2, #TASK_SIZE
394 blhs kuser_cmpxchg_fixup
395#endif
396#endif
397 .endm
398
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 .align 5
400__dabt_usr:
Russell Kingccea7a12005-05-31 22:22:32 +0100401 usr_entry
Nicolas Pitreb49c0f22007-11-20 17:20:29 +0100402 kuser_cmpxchg_check
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
404 @
405 @ Call the processor-specific abort handler:
406 @
407 @ r2 - aborted context pc
408 @ r3 - aborted context cpsr
409 @
410 @ The abort handler must return the aborted address in r0, and
411 @ the fault status register in r1.
412 @
Paul Brook48d79272008-04-18 22:43:07 +0100413#ifdef MULTI_DABORT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 ldr r4, .LCprocfns
415 mov lr, pc
Paul Brook48d79272008-04-18 22:43:07 +0100416 ldr pc, [r4, #PROCESSOR_DABT_FUNC]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417#else
Paul Brook48d79272008-04-18 22:43:07 +0100418 bl CPU_DABORT_HANDLER
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419#endif
420
421 @
422 @ IRQs on, then call the main handler
423 @
Will Deacon7e202692010-11-28 14:57:24 +0000424 debug_entry r1
Russell King1ec42c02005-04-26 15:18:26 +0100425 enable_irq
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 mov r2, sp
Catalin Marinasb86040a2009-07-24 12:32:54 +0100427 adr lr, BSYM(ret_from_exception)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 b do_DataAbort
Catalin Marinasc4c57162009-02-16 11:42:09 +0100429 UNWIND(.fnend )
Catalin Marinas93ed3972008-08-28 11:22:32 +0100430ENDPROC(__dabt_usr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
432 .align 5
433__irq_usr:
Russell Kingccea7a12005-05-31 22:22:32 +0100434 usr_entry
Nicolas Pitreb49c0f22007-11-20 17:20:29 +0100435 kuser_cmpxchg_check
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 get_thread_info tsk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438#ifdef CONFIG_PREEMPT
Russell King706fdd92005-05-21 18:15:45 +0100439 ldr r8, [tsk, #TI_PREEMPT] @ get preempt count
440 add r7, r8, #1 @ increment it
441 str r7, [tsk, #TI_PREEMPT]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442#endif
Russell Kingccea7a12005-05-31 22:22:32 +0100443
Russell King187a51a2005-05-21 18:14:44 +0100444 irq_handler
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445#ifdef CONFIG_PREEMPT
Russell King706fdd92005-05-21 18:15:45 +0100446 ldr r0, [tsk, #TI_PREEMPT]
447 str r8, [tsk, #TI_PREEMPT]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 teq r0, r7
Catalin Marinasb86040a2009-07-24 12:32:54 +0100449 ARM( strne r0, [r0, -r0] )
450 THUMB( movne r0, #0 )
451 THUMB( strne r0, [r0] )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452#endif
Russell Kingccea7a12005-05-31 22:22:32 +0100453
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 mov why, #0
455 b ret_to_user
Catalin Marinasc4c57162009-02-16 11:42:09 +0100456 UNWIND(.fnend )
Catalin Marinas93ed3972008-08-28 11:22:32 +0100457ENDPROC(__irq_usr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
459 .ltorg
460
461 .align 5
462__und_usr:
Russell Kingccea7a12005-05-31 22:22:32 +0100463 usr_entry
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 @
466 @ fall through to the emulation code, which returns using r9 if
467 @ it has emulated the instruction, or the more conventional lr
468 @ if we are to treat this as a real undefined instruction
469 @
470 @ r0 - instruction
471 @
Catalin Marinasb86040a2009-07-24 12:32:54 +0100472 adr r9, BSYM(ret_from_exception)
473 adr lr, BSYM(__und_usr_unknown)
Paul Brookcb170a42008-04-18 22:43:08 +0100474 tst r3, #PSR_T_BIT @ Thumb mode?
Catalin Marinasb86040a2009-07-24 12:32:54 +0100475 itet eq @ explicit IT needed for the 1f label
Paul Brookcb170a42008-04-18 22:43:08 +0100476 subeq r4, r2, #4 @ ARM instr at LR - 4
477 subne r4, r2, #2 @ Thumb instr at LR - 2
4781: ldreqt r0, [r4]
Catalin Marinas26584852009-05-30 14:00:18 +0100479#ifdef CONFIG_CPU_ENDIAN_BE8
480 reveq r0, r0 @ little endian instruction
481#endif
Paul Brookcb170a42008-04-18 22:43:08 +0100482 beq call_fpe
483 @ Thumb instruction
484#if __LINUX_ARM_ARCH__ >= 7
Catalin Marinasb86040a2009-07-24 12:32:54 +01004852:
486 ARM( ldrht r5, [r4], #2 )
487 THUMB( ldrht r5, [r4] )
488 THUMB( add r4, r4, #2 )
Paul Brookcb170a42008-04-18 22:43:08 +0100489 and r0, r5, #0xf800 @ mask bits 111x x... .... ....
490 cmp r0, #0xe800 @ 32bit instruction if xx != 0
491 blo __und_usr_unknown
4923: ldrht r0, [r4]
493 add r2, r2, #2 @ r2 is PC + 2, make it PC + 4
494 orr r0, r0, r5, lsl #16
495#else
496 b __und_usr_unknown
497#endif
Catalin Marinasc4c57162009-02-16 11:42:09 +0100498 UNWIND(.fnend )
Catalin Marinas93ed3972008-08-28 11:22:32 +0100499ENDPROC(__und_usr)
Paul Brookcb170a42008-04-18 22:43:08 +0100500
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 @
502 @ fallthrough to call_fpe
503 @
504
505/*
506 * The out of line fixup for the ldrt above.
507 */
Russell King42604152010-04-19 10:15:03 +0100508 .pushsection .fixup, "ax"
Paul Brookcb170a42008-04-18 22:43:08 +01005094: mov pc, r9
Russell King42604152010-04-19 10:15:03 +0100510 .popsection
511 .pushsection __ex_table,"a"
Paul Brookcb170a42008-04-18 22:43:08 +0100512 .long 1b, 4b
513#if __LINUX_ARM_ARCH__ >= 7
514 .long 2b, 4b
515 .long 3b, 4b
516#endif
Russell King42604152010-04-19 10:15:03 +0100517 .popsection
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
519/*
520 * Check whether the instruction is a co-processor instruction.
521 * If yes, we need to call the relevant co-processor handler.
522 *
523 * Note that we don't do a full check here for the co-processor
524 * instructions; all instructions with bit 27 set are well
525 * defined. The only instructions that should fault are the
526 * co-processor instructions. However, we have to watch out
527 * for the ARM6/ARM7 SWI bug.
528 *
Catalin Marinasb5872db2008-01-10 19:16:17 +0100529 * NEON is a special case that has to be handled here. Not all
530 * NEON instructions are co-processor instructions, so we have
531 * to make a special case of checking for them. Plus, there's
532 * five groups of them, so we have a table of mask/opcode pairs
533 * to check against, and if any match then we branch off into the
534 * NEON handler code.
535 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 * Emulators may wish to make use of the following registers:
537 * r0 = instruction opcode.
538 * r2 = PC+4
Russell Kingdb6ccbb2007-01-06 22:53:48 +0000539 * r9 = normal "successful" return address
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 * r10 = this threads thread_info structure.
Russell Kingdb6ccbb2007-01-06 22:53:48 +0000541 * lr = unrecognised instruction return address
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 */
Paul Brookcb170a42008-04-18 22:43:08 +0100543 @
544 @ Fall-through from Thumb-2 __und_usr
545 @
546#ifdef CONFIG_NEON
547 adr r6, .LCneon_thumb_opcodes
548 b 2f
549#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550call_fpe:
Catalin Marinasb5872db2008-01-10 19:16:17 +0100551#ifdef CONFIG_NEON
Paul Brookcb170a42008-04-18 22:43:08 +0100552 adr r6, .LCneon_arm_opcodes
Catalin Marinasb5872db2008-01-10 19:16:17 +01005532:
554 ldr r7, [r6], #4 @ mask value
555 cmp r7, #0 @ end mask?
556 beq 1f
557 and r8, r0, r7
558 ldr r7, [r6], #4 @ opcode bits matching in mask
559 cmp r8, r7 @ NEON instruction?
560 bne 2b
561 get_thread_info r10
562 mov r7, #1
563 strb r7, [r10, #TI_USED_CP + 10] @ mark CP#10 as used
564 strb r7, [r10, #TI_USED_CP + 11] @ mark CP#11 as used
565 b do_vfp @ let VFP handler handle this
5661:
567#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 tst r0, #0x08000000 @ only CDP/CPRT/LDC/STC have bit 27
Paul Brookcb170a42008-04-18 22:43:08 +0100569 tstne r0, #0x04000000 @ bit 26 set on both ARM and Thumb-2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570#if defined(CONFIG_CPU_ARM610) || defined(CONFIG_CPU_ARM710)
571 and r8, r0, #0x0f000000 @ mask out op-code bits
572 teqne r8, #0x0f000000 @ SWI (ARM6/7 bug)?
573#endif
574 moveq pc, lr
575 get_thread_info r10 @ get current thread
576 and r8, r0, #0x00000f00 @ mask out CP number
Catalin Marinasb86040a2009-07-24 12:32:54 +0100577 THUMB( lsr r8, r8, #8 )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 mov r7, #1
579 add r6, r10, #TI_USED_CP
Catalin Marinasb86040a2009-07-24 12:32:54 +0100580 ARM( strb r7, [r6, r8, lsr #8] ) @ set appropriate used_cp[]
581 THUMB( strb r7, [r6, r8] ) @ set appropriate used_cp[]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582#ifdef CONFIG_IWMMXT
583 @ Test if we need to give access to iWMMXt coprocessors
584 ldr r5, [r10, #TI_FLAGS]
585 rsbs r7, r8, #(1 << 8) @ CP 0 or 1 only
586 movcss r7, r5, lsr #(TIF_USING_IWMMXT + 1)
587 bcs iwmmxt_task_enable
588#endif
Catalin Marinasb86040a2009-07-24 12:32:54 +0100589 ARM( add pc, pc, r8, lsr #6 )
590 THUMB( lsl r8, r8, #2 )
591 THUMB( add pc, r8 )
592 nop
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
Catalin Marinasa771fe62009-10-12 17:31:20 +0100594 movw_pc lr @ CP#0
Catalin Marinasb86040a2009-07-24 12:32:54 +0100595 W(b) do_fpe @ CP#1 (FPE)
596 W(b) do_fpe @ CP#2 (FPE)
Catalin Marinasa771fe62009-10-12 17:31:20 +0100597 movw_pc lr @ CP#3
Lennert Buytenhekc17fad12006-06-27 23:03:03 +0100598#ifdef CONFIG_CRUNCH
599 b crunch_task_enable @ CP#4 (MaverickCrunch)
600 b crunch_task_enable @ CP#5 (MaverickCrunch)
601 b crunch_task_enable @ CP#6 (MaverickCrunch)
602#else
Catalin Marinasa771fe62009-10-12 17:31:20 +0100603 movw_pc lr @ CP#4
604 movw_pc lr @ CP#5
605 movw_pc lr @ CP#6
Lennert Buytenhekc17fad12006-06-27 23:03:03 +0100606#endif
Catalin Marinasa771fe62009-10-12 17:31:20 +0100607 movw_pc lr @ CP#7
608 movw_pc lr @ CP#8
609 movw_pc lr @ CP#9
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610#ifdef CONFIG_VFP
Catalin Marinasb86040a2009-07-24 12:32:54 +0100611 W(b) do_vfp @ CP#10 (VFP)
612 W(b) do_vfp @ CP#11 (VFP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613#else
Catalin Marinasa771fe62009-10-12 17:31:20 +0100614 movw_pc lr @ CP#10 (VFP)
615 movw_pc lr @ CP#11 (VFP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616#endif
Catalin Marinasa771fe62009-10-12 17:31:20 +0100617 movw_pc lr @ CP#12
618 movw_pc lr @ CP#13
619 movw_pc lr @ CP#14 (Debug)
620 movw_pc lr @ CP#15 (Control)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
Catalin Marinasb5872db2008-01-10 19:16:17 +0100622#ifdef CONFIG_NEON
623 .align 6
624
Paul Brookcb170a42008-04-18 22:43:08 +0100625.LCneon_arm_opcodes:
Catalin Marinasb5872db2008-01-10 19:16:17 +0100626 .word 0xfe000000 @ mask
627 .word 0xf2000000 @ opcode
628
629 .word 0xff100000 @ mask
630 .word 0xf4000000 @ opcode
631
632 .word 0x00000000 @ mask
633 .word 0x00000000 @ opcode
Paul Brookcb170a42008-04-18 22:43:08 +0100634
635.LCneon_thumb_opcodes:
636 .word 0xef000000 @ mask
637 .word 0xef000000 @ opcode
638
639 .word 0xff100000 @ mask
640 .word 0xf9000000 @ opcode
641
642 .word 0x00000000 @ mask
643 .word 0x00000000 @ opcode
Catalin Marinasb5872db2008-01-10 19:16:17 +0100644#endif
645
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646do_fpe:
Russell King5d25ac02006-03-15 12:33:43 +0000647 enable_irq
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 ldr r4, .LCfp
649 add r10, r10, #TI_FPSTATE @ r10 = workspace
650 ldr pc, [r4] @ Call FP module USR entry point
651
652/*
653 * The FP module is called with these registers set:
654 * r0 = instruction
655 * r2 = PC+4
656 * r9 = normal "successful" return address
657 * r10 = FP workspace
658 * lr = unrecognised FP instruction return address
659 */
660
Santosh Shilimkar124efc22010-04-30 10:45:46 +0100661 .pushsection .data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662ENTRY(fp_enter)
Russell Kingdb6ccbb2007-01-06 22:53:48 +0000663 .word no_fp
Santosh Shilimkar124efc22010-04-30 10:45:46 +0100664 .popsection
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
Catalin Marinas83e686e2009-09-18 23:27:07 +0100666ENTRY(no_fp)
667 mov pc, lr
668ENDPROC(no_fp)
Russell Kingdb6ccbb2007-01-06 22:53:48 +0000669
670__und_usr_unknown:
Russell Kingecbab712009-01-27 23:20:00 +0000671 enable_irq
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 mov r0, sp
Catalin Marinasb86040a2009-07-24 12:32:54 +0100673 adr lr, BSYM(ret_from_exception)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 b do_undefinstr
Catalin Marinas93ed3972008-08-28 11:22:32 +0100675ENDPROC(__und_usr_unknown)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
677 .align 5
678__pabt_usr:
Russell Kingccea7a12005-05-31 22:22:32 +0100679 usr_entry
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
Paul Brook48d79272008-04-18 22:43:07 +0100681 mov r0, r2 @ pass address of aborted instruction.
Kirill A. Shutemov4fb28472009-09-25 13:39:47 +0100682#ifdef MULTI_PABORT
Paul Brook48d79272008-04-18 22:43:07 +0100683 ldr r4, .LCprocfns
684 mov lr, pc
685 ldr pc, [r4, #PROCESSOR_PABT_FUNC]
686#else
Kirill A. Shutemov4fb28472009-09-25 13:39:47 +0100687 bl CPU_PABORT_HANDLER
Paul Brook48d79272008-04-18 22:43:07 +0100688#endif
Will Deacon7e202692010-11-28 14:57:24 +0000689 debug_entry r1
Russell King1ec42c02005-04-26 15:18:26 +0100690 enable_irq @ Enable interrupts
Kirill A. Shutemov4fb28472009-09-25 13:39:47 +0100691 mov r2, sp @ regs
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 bl do_PrefetchAbort @ call abort handler
Catalin Marinasc4c57162009-02-16 11:42:09 +0100693 UNWIND(.fnend )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 /* fall through */
695/*
696 * This is the return code to user mode for abort handlers
697 */
698ENTRY(ret_from_exception)
Catalin Marinasc4c57162009-02-16 11:42:09 +0100699 UNWIND(.fnstart )
700 UNWIND(.cantunwind )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 get_thread_info tsk
702 mov why, #0
703 b ret_to_user
Catalin Marinasc4c57162009-02-16 11:42:09 +0100704 UNWIND(.fnend )
Catalin Marinas93ed3972008-08-28 11:22:32 +0100705ENDPROC(__pabt_usr)
706ENDPROC(ret_from_exception)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
708/*
709 * Register switch for ARMv3 and ARMv4 processors
710 * r0 = previous task_struct, r1 = previous thread_info, r2 = next thread_info
711 * previous and next are guaranteed not to be the same.
712 */
713ENTRY(__switch_to)
Catalin Marinasc4c57162009-02-16 11:42:09 +0100714 UNWIND(.fnstart )
715 UNWIND(.cantunwind )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 add ip, r1, #TI_CPU_SAVE
717 ldr r3, [r2, #TI_TP_VALUE]
Catalin Marinasb86040a2009-07-24 12:32:54 +0100718 ARM( stmia ip!, {r4 - sl, fp, sp, lr} ) @ Store most regs on stack
719 THUMB( stmia ip!, {r4 - sl, fp} ) @ Store most regs on stack
720 THUMB( str sp, [ip], #4 )
721 THUMB( str lr, [ip], #4 )
Catalin Marinas247055a2010-09-13 16:03:21 +0100722#ifdef CONFIG_CPU_USE_DOMAINS
Russell Kingd6551e82006-06-21 13:31:52 +0100723 ldr r6, [r2, #TI_CPU_DOMAIN]
Hyok S. Choiafeb90c2006-01-13 21:05:25 +0000724#endif
Tony Lindgrenf159f4e2010-07-05 14:53:10 +0100725 set_tls r3, r4, r5
Nicolas Pitredf0698b2010-06-07 21:50:33 -0400726#if defined(CONFIG_CC_STACKPROTECTOR) && !defined(CONFIG_SMP)
727 ldr r7, [r2, #TI_TASK]
728 ldr r8, =__stack_chk_guard
729 ldr r7, [r7, #TSK_STACK_CANARY]
730#endif
Catalin Marinas247055a2010-09-13 16:03:21 +0100731#ifdef CONFIG_CPU_USE_DOMAINS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 mcr p15, 0, r6, c3, c0, 0 @ Set domain register
Hyok S. Choiafeb90c2006-01-13 21:05:25 +0000733#endif
Russell Kingd6551e82006-06-21 13:31:52 +0100734 mov r5, r0
735 add r4, r2, #TI_CPU_SAVE
736 ldr r0, =thread_notify_head
737 mov r1, #THREAD_NOTIFY_SWITCH
738 bl atomic_notifier_call_chain
Nicolas Pitredf0698b2010-06-07 21:50:33 -0400739#if defined(CONFIG_CC_STACKPROTECTOR) && !defined(CONFIG_SMP)
740 str r7, [r8]
741#endif
Catalin Marinasb86040a2009-07-24 12:32:54 +0100742 THUMB( mov ip, r4 )
Russell Kingd6551e82006-06-21 13:31:52 +0100743 mov r0, r5
Catalin Marinasb86040a2009-07-24 12:32:54 +0100744 ARM( ldmia r4, {r4 - sl, fp, sp, pc} ) @ Load all regs saved previously
745 THUMB( ldmia ip!, {r4 - sl, fp} ) @ Load all regs saved previously
746 THUMB( ldr sp, [ip], #4 )
747 THUMB( ldr pc, [ip] )
Catalin Marinasc4c57162009-02-16 11:42:09 +0100748 UNWIND(.fnend )
Catalin Marinas93ed3972008-08-28 11:22:32 +0100749ENDPROC(__switch_to)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
751 __INIT
Nicolas Pitre2d2669b2005-04-29 22:08:33 +0100752
753/*
754 * User helpers.
755 *
756 * These are segment of kernel provided user code reachable from user space
757 * at a fixed address in kernel memory. This is used to provide user space
758 * with some operations which require kernel help because of unimplemented
759 * native feature and/or instructions in many ARM CPUs. The idea is for
760 * this code to be executed directly in user mode for best efficiency but
761 * which is too intimate with the kernel counter part to be left to user
762 * libraries. In fact this code might even differ from one CPU to another
763 * depending on the available instruction set and restrictions like on
764 * SMP systems. In other words, the kernel reserves the right to change
765 * this code as needed without warning. Only the entry points and their
766 * results are guaranteed to be stable.
767 *
768 * Each segment is 32-byte aligned and will be moved to the top of the high
769 * vector page. New segments (if ever needed) must be added in front of
770 * existing ones. This mechanism should be used only for things that are
771 * really small and justified, and not be abused freely.
772 *
773 * User space is expected to implement those things inline when optimizing
774 * for a processor that has the necessary native support, but only if such
775 * resulting binaries are already to be incompatible with earlier ARM
776 * processors due to the use of unsupported instructions other than what
777 * is provided here. In other words don't make binaries unable to run on
778 * earlier processors just for the sake of not using these kernel helpers
779 * if your compiled code is not going to use the new instructions for other
780 * purpose.
781 */
Catalin Marinasb86040a2009-07-24 12:32:54 +0100782 THUMB( .arm )
Nicolas Pitre2d2669b2005-04-29 22:08:33 +0100783
Nicolas Pitreba9b5d72006-08-18 17:20:15 +0100784 .macro usr_ret, reg
785#ifdef CONFIG_ARM_THUMB
786 bx \reg
787#else
788 mov pc, \reg
789#endif
790 .endm
791
Nicolas Pitre2d2669b2005-04-29 22:08:33 +0100792 .align 5
793 .globl __kuser_helper_start
794__kuser_helper_start:
795
796/*
797 * Reference prototype:
798 *
Nicolas Pitre7c612bf2005-12-19 22:20:51 +0000799 * void __kernel_memory_barrier(void)
800 *
801 * Input:
802 *
803 * lr = return address
804 *
805 * Output:
806 *
807 * none
808 *
809 * Clobbered:
810 *
Nicolas Pitreb49c0f22007-11-20 17:20:29 +0100811 * none
Nicolas Pitre7c612bf2005-12-19 22:20:51 +0000812 *
813 * Definition and user space usage example:
814 *
815 * typedef void (__kernel_dmb_t)(void);
816 * #define __kernel_dmb (*(__kernel_dmb_t *)0xffff0fa0)
817 *
818 * Apply any needed memory barrier to preserve consistency with data modified
819 * manually and __kuser_cmpxchg usage.
820 *
821 * This could be used as follows:
822 *
823 * #define __kernel_dmb() \
824 * asm volatile ( "mov r0, #0xffff0fff; mov lr, pc; sub pc, r0, #95" \
Paul Brook6896eec2006-03-28 22:19:29 +0100825 * : : : "r0", "lr","cc" )
Nicolas Pitre7c612bf2005-12-19 22:20:51 +0000826 */
827
828__kuser_memory_barrier: @ 0xffff0fa0
Dave Martined3768a2010-12-01 15:39:23 +0100829 smp_dmb arm
Nicolas Pitreba9b5d72006-08-18 17:20:15 +0100830 usr_ret lr
Nicolas Pitre7c612bf2005-12-19 22:20:51 +0000831
832 .align 5
833
834/*
835 * Reference prototype:
836 *
Nicolas Pitre2d2669b2005-04-29 22:08:33 +0100837 * int __kernel_cmpxchg(int oldval, int newval, int *ptr)
838 *
839 * Input:
840 *
841 * r0 = oldval
842 * r1 = newval
843 * r2 = ptr
844 * lr = return address
845 *
846 * Output:
847 *
848 * r0 = returned value (zero or non-zero)
849 * C flag = set if r0 == 0, clear if r0 != 0
850 *
851 * Clobbered:
852 *
853 * r3, ip, flags
854 *
855 * Definition and user space usage example:
856 *
857 * typedef int (__kernel_cmpxchg_t)(int oldval, int newval, int *ptr);
858 * #define __kernel_cmpxchg (*(__kernel_cmpxchg_t *)0xffff0fc0)
859 *
860 * Atomically store newval in *ptr if *ptr is equal to oldval for user space.
861 * Return zero if *ptr was changed or non-zero if no exchange happened.
862 * The C flag is also set if *ptr was changed to allow for assembly
863 * optimization in the calling code.
864 *
Nicolas Pitre5964eae2006-02-08 21:19:37 +0000865 * Notes:
866 *
867 * - This routine already includes memory barriers as needed.
868 *
Nicolas Pitre2d2669b2005-04-29 22:08:33 +0100869 * For example, a user space atomic_add implementation could look like this:
870 *
871 * #define atomic_add(ptr, val) \
872 * ({ register unsigned int *__ptr asm("r2") = (ptr); \
873 * register unsigned int __result asm("r1"); \
874 * asm volatile ( \
875 * "1: @ atomic_add\n\t" \
876 * "ldr r0, [r2]\n\t" \
877 * "mov r3, #0xffff0fff\n\t" \
878 * "add lr, pc, #4\n\t" \
879 * "add r1, r0, %2\n\t" \
880 * "add pc, r3, #(0xffff0fc0 - 0xffff0fff)\n\t" \
881 * "bcc 1b" \
882 * : "=&r" (__result) \
883 * : "r" (__ptr), "rIL" (val) \
884 * : "r0","r3","ip","lr","cc","memory" ); \
885 * __result; })
886 */
887
888__kuser_cmpxchg: @ 0xffff0fc0
889
Nicolas Pitredcef1f62005-06-08 19:00:47 +0100890#if defined(CONFIG_NEEDS_SYSCALL_FOR_CMPXCHG)
Nicolas Pitre2d2669b2005-04-29 22:08:33 +0100891
Nicolas Pitredcef1f62005-06-08 19:00:47 +0100892 /*
893 * Poor you. No fast solution possible...
894 * The kernel itself must perform the operation.
895 * A special ghost syscall is used for that (see traps.c).
896 */
Nicolas Pitre5e097442006-01-18 22:38:49 +0000897 stmfd sp!, {r7, lr}
Dave Martin55afd262010-12-01 18:12:43 +0100898 ldr r7, 1f @ it's 20 bits
Russell Kingcc20d422009-11-09 23:53:29 +0000899 swi __ARM_NR_cmpxchg
Nicolas Pitre5e097442006-01-18 22:38:49 +0000900 ldmfd sp!, {r7, pc}
Russell Kingcc20d422009-11-09 23:53:29 +00009011: .word __ARM_NR_cmpxchg
Nicolas Pitredcef1f62005-06-08 19:00:47 +0100902
903#elif __LINUX_ARM_ARCH__ < 6
Nicolas Pitre2d2669b2005-04-29 22:08:33 +0100904
Nicolas Pitre49bca4c2006-02-08 21:19:37 +0000905#ifdef CONFIG_MMU
Nicolas Pitreb49c0f22007-11-20 17:20:29 +0100906
907 /*
908 * The only thing that can break atomicity in this cmpxchg
909 * implementation is either an IRQ or a data abort exception
910 * causing another process/thread to be scheduled in the middle
911 * of the critical sequence. To prevent this, code is added to
912 * the IRQ and data abort exception handlers to set the pc back
913 * to the beginning of the critical section if it is found to be
914 * within that critical section (see kuser_cmpxchg_fixup).
915 */
9161: ldr r3, [r2] @ load current val
917 subs r3, r3, r0 @ compare with oldval
9182: streq r1, [r2] @ store newval if eq
919 rsbs r0, r3, #0 @ set return val and C flag
920 usr_ret lr
921
922 .text
923kuser_cmpxchg_fixup:
924 @ Called from kuser_cmpxchg_check macro.
925 @ r2 = address of interrupted insn (must be preserved).
926 @ sp = saved regs. r7 and r8 are clobbered.
927 @ 1b = first critical insn, 2b = last critical insn.
928 @ If r2 >= 1b and r2 <= 2b then saved pc_usr is set to 1b.
929 mov r7, #0xffff0fff
930 sub r7, r7, #(0xffff0fff - (0xffff0fc0 + (1b - __kuser_cmpxchg)))
931 subs r8, r2, r7
932 rsbcss r8, r8, #(2b - 1b)
933 strcs r7, [sp, #S_PC]
934 mov pc, lr
935 .previous
936
Nicolas Pitre49bca4c2006-02-08 21:19:37 +0000937#else
938#warning "NPTL on non MMU needs fixing"
939 mov r0, #-1
940 adds r0, r0, #0
Nicolas Pitreba9b5d72006-08-18 17:20:15 +0100941 usr_ret lr
Nicolas Pitreb49c0f22007-11-20 17:20:29 +0100942#endif
Nicolas Pitre2d2669b2005-04-29 22:08:33 +0100943
944#else
945
Dave Martined3768a2010-12-01 15:39:23 +0100946 smp_dmb arm
Nicolas Pitreb49c0f22007-11-20 17:20:29 +01009471: ldrex r3, [r2]
Nicolas Pitre2d2669b2005-04-29 22:08:33 +0100948 subs r3, r3, r0
949 strexeq r3, r1, [r2]
Nicolas Pitreb49c0f22007-11-20 17:20:29 +0100950 teqeq r3, #1
951 beq 1b
Nicolas Pitre2d2669b2005-04-29 22:08:33 +0100952 rsbs r0, r3, #0
Nicolas Pitreb49c0f22007-11-20 17:20:29 +0100953 /* beware -- each __kuser slot must be 8 instructions max */
Russell Kingf00ec482010-09-04 10:47:48 +0100954 ALT_SMP(b __kuser_memory_barrier)
955 ALT_UP(usr_ret lr)
Nicolas Pitre2d2669b2005-04-29 22:08:33 +0100956
957#endif
958
959 .align 5
960
961/*
962 * Reference prototype:
963 *
964 * int __kernel_get_tls(void)
965 *
966 * Input:
967 *
968 * lr = return address
969 *
970 * Output:
971 *
972 * r0 = TLS value
973 *
974 * Clobbered:
975 *
Nicolas Pitreb49c0f22007-11-20 17:20:29 +0100976 * none
Nicolas Pitre2d2669b2005-04-29 22:08:33 +0100977 *
978 * Definition and user space usage example:
979 *
980 * typedef int (__kernel_get_tls_t)(void);
981 * #define __kernel_get_tls (*(__kernel_get_tls_t *)0xffff0fe0)
982 *
983 * Get the TLS value as previously set via the __ARM_NR_set_tls syscall.
984 *
985 * This could be used as follows:
986 *
987 * #define __kernel_get_tls() \
988 * ({ register unsigned int __val asm("r0"); \
989 * asm( "mov r0, #0xffff0fff; mov lr, pc; sub pc, r0, #31" \
990 * : "=r" (__val) : : "lr","cc" ); \
991 * __val; })
992 */
993
994__kuser_get_tls: @ 0xffff0fe0
Tony Lindgrenf159f4e2010-07-05 14:53:10 +0100995 ldr r0, [pc, #(16 - 8)] @ read TLS, set in kuser_get_tls_init
Nicolas Pitreba9b5d72006-08-18 17:20:15 +0100996 usr_ret lr
Tony Lindgrenf159f4e2010-07-05 14:53:10 +0100997 mrc p15, 0, r0, c13, c0, 3 @ 0xffff0fe8 hardware TLS code
998 .rep 4
999 .word 0 @ 0xffff0ff0 software TLS value, then
1000 .endr @ pad up to __kuser_helper_version
Nicolas Pitre2d2669b2005-04-29 22:08:33 +01001001
1002/*
1003 * Reference declaration:
1004 *
1005 * extern unsigned int __kernel_helper_version;
1006 *
1007 * Definition and user space usage example:
1008 *
1009 * #define __kernel_helper_version (*(unsigned int *)0xffff0ffc)
1010 *
1011 * User space may read this to determine the curent number of helpers
1012 * available.
1013 */
1014
1015__kuser_helper_version: @ 0xffff0ffc
1016 .word ((__kuser_helper_end - __kuser_helper_start) >> 5)
1017
1018 .globl __kuser_helper_end
1019__kuser_helper_end:
1020
Catalin Marinasb86040a2009-07-24 12:32:54 +01001021 THUMB( .thumb )
Nicolas Pitre2d2669b2005-04-29 22:08:33 +01001022
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023/*
1024 * Vector stubs.
1025 *
Russell King79335232005-04-26 15:17:42 +01001026 * This code is copied to 0xffff0200 so we can use branches in the
1027 * vectors, rather than ldr's. Note that this code must not
1028 * exceed 0x300 bytes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 *
1030 * Common stub entry macro:
1031 * Enter in IRQ mode, spsr = SVC/USR CPSR, lr = SVC/USR PC
Russell Kingccea7a12005-05-31 22:22:32 +01001032 *
1033 * SP points to a minimal amount of processor-private memory, the address
1034 * of which is copied into r0 for the mode specific abort handler.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 */
Nicolas Pitreb7ec4792005-11-06 14:42:37 +00001036 .macro vector_stub, name, mode, correction=0
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 .align 5
1038
1039vector_\name:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 .if \correction
1041 sub lr, lr, #\correction
1042 .endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043
Russell Kingccea7a12005-05-31 22:22:32 +01001044 @
1045 @ Save r0, lr_<exception> (parent PC) and spsr_<exception>
1046 @ (parent CPSR)
1047 @
1048 stmia sp, {r0, lr} @ save r0, lr
1049 mrs lr, spsr
1050 str lr, [sp, #8] @ save spsr
1051
1052 @
1053 @ Prepare for SVC32 mode. IRQs remain disabled.
1054 @
1055 mrs r0, cpsr
Catalin Marinasb86040a2009-07-24 12:32:54 +01001056 eor r0, r0, #(\mode ^ SVC_MODE | PSR_ISETSTATE)
Russell Kingccea7a12005-05-31 22:22:32 +01001057 msr spsr_cxsf, r0
1058
1059 @
1060 @ the branch table must immediately follow this code
1061 @
Russell Kingccea7a12005-05-31 22:22:32 +01001062 and lr, lr, #0x0f
Catalin Marinasb86040a2009-07-24 12:32:54 +01001063 THUMB( adr r0, 1f )
1064 THUMB( ldr lr, [r0, lr, lsl #2] )
Nicolas Pitreb7ec4792005-11-06 14:42:37 +00001065 mov r0, sp
Catalin Marinasb86040a2009-07-24 12:32:54 +01001066 ARM( ldr lr, [pc, lr, lsl #2] )
Russell Kingccea7a12005-05-31 22:22:32 +01001067 movs pc, lr @ branch to handler in SVC mode
Catalin Marinas93ed3972008-08-28 11:22:32 +01001068ENDPROC(vector_\name)
Catalin Marinas88987ef2009-07-24 12:32:52 +01001069
1070 .align 2
1071 @ handler addresses follow this label
10721:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 .endm
1074
Russell King79335232005-04-26 15:17:42 +01001075 .globl __stubs_start
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076__stubs_start:
1077/*
1078 * Interrupt dispatcher
1079 */
Nicolas Pitreb7ec4792005-11-06 14:42:37 +00001080 vector_stub irq, IRQ_MODE, 4
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081
1082 .long __irq_usr @ 0 (USR_26 / USR_32)
1083 .long __irq_invalid @ 1 (FIQ_26 / FIQ_32)
1084 .long __irq_invalid @ 2 (IRQ_26 / IRQ_32)
1085 .long __irq_svc @ 3 (SVC_26 / SVC_32)
1086 .long __irq_invalid @ 4
1087 .long __irq_invalid @ 5
1088 .long __irq_invalid @ 6
1089 .long __irq_invalid @ 7
1090 .long __irq_invalid @ 8
1091 .long __irq_invalid @ 9
1092 .long __irq_invalid @ a
1093 .long __irq_invalid @ b
1094 .long __irq_invalid @ c
1095 .long __irq_invalid @ d
1096 .long __irq_invalid @ e
1097 .long __irq_invalid @ f
1098
1099/*
1100 * Data abort dispatcher
1101 * Enter in ABT mode, spsr = USR CPSR, lr = USR PC
1102 */
Nicolas Pitreb7ec4792005-11-06 14:42:37 +00001103 vector_stub dabt, ABT_MODE, 8
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
1105 .long __dabt_usr @ 0 (USR_26 / USR_32)
1106 .long __dabt_invalid @ 1 (FIQ_26 / FIQ_32)
1107 .long __dabt_invalid @ 2 (IRQ_26 / IRQ_32)
1108 .long __dabt_svc @ 3 (SVC_26 / SVC_32)
1109 .long __dabt_invalid @ 4
1110 .long __dabt_invalid @ 5
1111 .long __dabt_invalid @ 6
1112 .long __dabt_invalid @ 7
1113 .long __dabt_invalid @ 8
1114 .long __dabt_invalid @ 9
1115 .long __dabt_invalid @ a
1116 .long __dabt_invalid @ b
1117 .long __dabt_invalid @ c
1118 .long __dabt_invalid @ d
1119 .long __dabt_invalid @ e
1120 .long __dabt_invalid @ f
1121
1122/*
1123 * Prefetch abort dispatcher
1124 * Enter in ABT mode, spsr = USR CPSR, lr = USR PC
1125 */
Nicolas Pitreb7ec4792005-11-06 14:42:37 +00001126 vector_stub pabt, ABT_MODE, 4
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127
1128 .long __pabt_usr @ 0 (USR_26 / USR_32)
1129 .long __pabt_invalid @ 1 (FIQ_26 / FIQ_32)
1130 .long __pabt_invalid @ 2 (IRQ_26 / IRQ_32)
1131 .long __pabt_svc @ 3 (SVC_26 / SVC_32)
1132 .long __pabt_invalid @ 4
1133 .long __pabt_invalid @ 5
1134 .long __pabt_invalid @ 6
1135 .long __pabt_invalid @ 7
1136 .long __pabt_invalid @ 8
1137 .long __pabt_invalid @ 9
1138 .long __pabt_invalid @ a
1139 .long __pabt_invalid @ b
1140 .long __pabt_invalid @ c
1141 .long __pabt_invalid @ d
1142 .long __pabt_invalid @ e
1143 .long __pabt_invalid @ f
1144
1145/*
1146 * Undef instr entry dispatcher
1147 * Enter in UND mode, spsr = SVC/USR CPSR, lr = SVC/USR PC
1148 */
Nicolas Pitreb7ec4792005-11-06 14:42:37 +00001149 vector_stub und, UND_MODE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150
1151 .long __und_usr @ 0 (USR_26 / USR_32)
1152 .long __und_invalid @ 1 (FIQ_26 / FIQ_32)
1153 .long __und_invalid @ 2 (IRQ_26 / IRQ_32)
1154 .long __und_svc @ 3 (SVC_26 / SVC_32)
1155 .long __und_invalid @ 4
1156 .long __und_invalid @ 5
1157 .long __und_invalid @ 6
1158 .long __und_invalid @ 7
1159 .long __und_invalid @ 8
1160 .long __und_invalid @ 9
1161 .long __und_invalid @ a
1162 .long __und_invalid @ b
1163 .long __und_invalid @ c
1164 .long __und_invalid @ d
1165 .long __und_invalid @ e
1166 .long __und_invalid @ f
1167
1168 .align 5
1169
1170/*=============================================================================
1171 * Undefined FIQs
1172 *-----------------------------------------------------------------------------
1173 * Enter in FIQ mode, spsr = ANY CPSR, lr = ANY PC
1174 * MUST PRESERVE SVC SPSR, but need to switch to SVC mode to show our msg.
1175 * Basically to switch modes, we *HAVE* to clobber one register... brain
1176 * damage alert! I don't think that we can execute any code in here in any
1177 * other mode than FIQ... Ok you can switch to another mode, but you can't
1178 * get out of that mode without clobbering one register.
1179 */
1180vector_fiq:
1181 disable_fiq
1182 subs pc, lr, #4
1183
1184/*=============================================================================
1185 * Address exception handler
1186 *-----------------------------------------------------------------------------
1187 * These aren't too critical.
1188 * (they're not supposed to happen, and won't happen in 32-bit data mode).
1189 */
1190
1191vector_addrexcptn:
1192 b vector_addrexcptn
1193
1194/*
1195 * We group all the following data together to optimise
1196 * for CPUs with separate I & D caches.
1197 */
1198 .align 5
1199
1200.LCvswi:
1201 .word vector_swi
1202
Russell King79335232005-04-26 15:17:42 +01001203 .globl __stubs_end
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204__stubs_end:
1205
Russell King79335232005-04-26 15:17:42 +01001206 .equ stubs_offset, __vectors_start + 0x200 - __stubs_start
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207
Russell King79335232005-04-26 15:17:42 +01001208 .globl __vectors_start
1209__vectors_start:
Catalin Marinasb86040a2009-07-24 12:32:54 +01001210 ARM( swi SYS_ERROR0 )
1211 THUMB( svc #0 )
1212 THUMB( nop )
1213 W(b) vector_und + stubs_offset
1214 W(ldr) pc, .LCvswi + stubs_offset
1215 W(b) vector_pabt + stubs_offset
1216 W(b) vector_dabt + stubs_offset
1217 W(b) vector_addrexcptn + stubs_offset
1218 W(b) vector_irq + stubs_offset
1219 W(b) vector_fiq + stubs_offset
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220
Russell King79335232005-04-26 15:17:42 +01001221 .globl __vectors_end
1222__vectors_end:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223
1224 .data
1225
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 .globl cr_alignment
1227 .globl cr_no_alignment
1228cr_alignment:
1229 .space 4
1230cr_no_alignment:
1231 .space 4
eric miao52108642010-12-13 09:42:34 +01001232
1233#ifdef CONFIG_MULTI_IRQ_HANDLER
1234 .globl handle_arch_irq
1235handle_arch_irq:
1236 .space 4
1237#endif