blob: abcf8aa5f9a1f1737c66cae91b0704ac614090bf [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>
Russell King753790e2011-02-06 15:32:24 +000019#include <asm/glue-df.h>
20#include <asm/glue-pf.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <asm/vfpmacros.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010022#include <mach/entry-macro.S>
Russell Kingd6551e82006-06-21 13:31:52 +010023#include <asm/thread_notify.h>
Catalin Marinasc4c57162009-02-16 11:42:09 +010024#include <asm/unwind.h>
Russell Kingcc20d422009-11-09 23:53:29 +000025#include <asm/unistd.h>
Tony Lindgrenf159f4e2010-07-05 14:53:10 +010026#include <asm/tls.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
28#include "entry-header.S"
Magnus Dammcd544ce2010-12-22 13:20:08 +010029#include <asm/entry-macro-multi.S>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31/*
Russell Kingedee2d32011-06-26 10:34:02 +010032 * Interrupt handling.
Russell King187a51a2005-05-21 18:14:44 +010033 */
34 .macro irq_handler
eric miao52108642010-12-13 09:42:34 +010035#ifdef CONFIG_MULTI_IRQ_HANDLER
Russell Kingedee2d32011-06-26 10:34:02 +010036 ldr r1, =handle_arch_irq
eric miao52108642010-12-13 09:42:34 +010037 mov r0, sp
eric miao52108642010-12-13 09:42:34 +010038 adr lr, BSYM(9997f)
Marc Zyngier15179522011-09-27 18:56:26 +053039 ldr pc, [r1]
40#else
Magnus Dammcd544ce2010-12-22 13:20:08 +010041 arch_irq_handler_default
Marc Zyngier15179522011-09-27 18:56:26 +053042#endif
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
Ming Lei9fc25522011-06-05 02:24:58 +0100437#ifdef CONFIG_IRQSOFF_TRACER
438 bl trace_hardirqs_off
439#endif
440
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 get_thread_info tsk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442#ifdef CONFIG_PREEMPT
Russell King706fdd92005-05-21 18:15:45 +0100443 ldr r8, [tsk, #TI_PREEMPT] @ get preempt count
444 add r7, r8, #1 @ increment it
445 str r7, [tsk, #TI_PREEMPT]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446#endif
Russell Kingccea7a12005-05-31 22:22:32 +0100447
Russell King187a51a2005-05-21 18:14:44 +0100448 irq_handler
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449#ifdef CONFIG_PREEMPT
Russell King706fdd92005-05-21 18:15:45 +0100450 ldr r0, [tsk, #TI_PREEMPT]
451 str r8, [tsk, #TI_PREEMPT]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 teq r0, r7
Catalin Marinasb86040a2009-07-24 12:32:54 +0100453 ARM( strne r0, [r0, -r0] )
454 THUMB( movne r0, #0 )
455 THUMB( strne r0, [r0] )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456#endif
Russell Kingccea7a12005-05-31 22:22:32 +0100457
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 mov why, #0
Ming Lei9fc25522011-06-05 02:24:58 +0100459 b ret_to_user_from_irq
Catalin Marinasc4c57162009-02-16 11:42:09 +0100460 UNWIND(.fnend )
Catalin Marinas93ed3972008-08-28 11:22:32 +0100461ENDPROC(__irq_usr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
463 .ltorg
464
465 .align 5
466__und_usr:
Russell Kingccea7a12005-05-31 22:22:32 +0100467 usr_entry
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 @
470 @ fall through to the emulation code, which returns using r9 if
471 @ it has emulated the instruction, or the more conventional lr
472 @ if we are to treat this as a real undefined instruction
473 @
474 @ r0 - instruction
475 @
Catalin Marinasb86040a2009-07-24 12:32:54 +0100476 adr r9, BSYM(ret_from_exception)
477 adr lr, BSYM(__und_usr_unknown)
Paul Brookcb170a42008-04-18 22:43:08 +0100478 tst r3, #PSR_T_BIT @ Thumb mode?
Catalin Marinasb86040a2009-07-24 12:32:54 +0100479 itet eq @ explicit IT needed for the 1f label
Paul Brookcb170a42008-04-18 22:43:08 +0100480 subeq r4, r2, #4 @ ARM instr at LR - 4
481 subne r4, r2, #2 @ Thumb instr at LR - 2
4821: ldreqt r0, [r4]
Catalin Marinas26584852009-05-30 14:00:18 +0100483#ifdef CONFIG_CPU_ENDIAN_BE8
484 reveq r0, r0 @ little endian instruction
485#endif
Paul Brookcb170a42008-04-18 22:43:08 +0100486 beq call_fpe
487 @ Thumb instruction
488#if __LINUX_ARM_ARCH__ >= 7
Catalin Marinasb86040a2009-07-24 12:32:54 +01004892:
490 ARM( ldrht r5, [r4], #2 )
491 THUMB( ldrht r5, [r4] )
492 THUMB( add r4, r4, #2 )
Paul Brookcb170a42008-04-18 22:43:08 +0100493 and r0, r5, #0xf800 @ mask bits 111x x... .... ....
494 cmp r0, #0xe800 @ 32bit instruction if xx != 0
495 blo __und_usr_unknown
4963: ldrht r0, [r4]
497 add r2, r2, #2 @ r2 is PC + 2, make it PC + 4
Colin Cross082fec52011-01-27 15:46:20 -0800498 orr r0, r0, r5, lsl #16
Paul Brookcb170a42008-04-18 22:43:08 +0100499#else
500 b __und_usr_unknown
501#endif
Catalin Marinasc4c57162009-02-16 11:42:09 +0100502 UNWIND(.fnend )
Catalin Marinas93ed3972008-08-28 11:22:32 +0100503ENDPROC(__und_usr)
Paul Brookcb170a42008-04-18 22:43:08 +0100504
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 @
506 @ fallthrough to call_fpe
507 @
508
509/*
510 * The out of line fixup for the ldrt above.
511 */
Russell King42604152010-04-19 10:15:03 +0100512 .pushsection .fixup, "ax"
Paul Brookcb170a42008-04-18 22:43:08 +01005134: mov pc, r9
Russell King42604152010-04-19 10:15:03 +0100514 .popsection
515 .pushsection __ex_table,"a"
Paul Brookcb170a42008-04-18 22:43:08 +0100516 .long 1b, 4b
517#if __LINUX_ARM_ARCH__ >= 7
518 .long 2b, 4b
519 .long 3b, 4b
520#endif
Russell King42604152010-04-19 10:15:03 +0100521 .popsection
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
523/*
524 * Check whether the instruction is a co-processor instruction.
525 * If yes, we need to call the relevant co-processor handler.
526 *
527 * Note that we don't do a full check here for the co-processor
528 * instructions; all instructions with bit 27 set are well
529 * defined. The only instructions that should fault are the
530 * co-processor instructions. However, we have to watch out
531 * for the ARM6/ARM7 SWI bug.
532 *
Catalin Marinasb5872db2008-01-10 19:16:17 +0100533 * NEON is a special case that has to be handled here. Not all
534 * NEON instructions are co-processor instructions, so we have
535 * to make a special case of checking for them. Plus, there's
536 * five groups of them, so we have a table of mask/opcode pairs
537 * to check against, and if any match then we branch off into the
538 * NEON handler code.
539 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 * Emulators may wish to make use of the following registers:
541 * r0 = instruction opcode.
542 * r2 = PC+4
Russell Kingdb6ccbb2007-01-06 22:53:48 +0000543 * r9 = normal "successful" return address
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 * r10 = this threads thread_info structure.
Russell Kingdb6ccbb2007-01-06 22:53:48 +0000545 * lr = unrecognised instruction return address
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 */
Paul Brookcb170a42008-04-18 22:43:08 +0100547 @
548 @ Fall-through from Thumb-2 __und_usr
549 @
550#ifdef CONFIG_NEON
551 adr r6, .LCneon_thumb_opcodes
552 b 2f
553#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554call_fpe:
Catalin Marinasb5872db2008-01-10 19:16:17 +0100555#ifdef CONFIG_NEON
Paul Brookcb170a42008-04-18 22:43:08 +0100556 adr r6, .LCneon_arm_opcodes
Catalin Marinasb5872db2008-01-10 19:16:17 +01005572:
558 ldr r7, [r6], #4 @ mask value
559 cmp r7, #0 @ end mask?
560 beq 1f
561 and r8, r0, r7
562 ldr r7, [r6], #4 @ opcode bits matching in mask
563 cmp r8, r7 @ NEON instruction?
564 bne 2b
565 get_thread_info r10
566 mov r7, #1
567 strb r7, [r10, #TI_USED_CP + 10] @ mark CP#10 as used
568 strb r7, [r10, #TI_USED_CP + 11] @ mark CP#11 as used
569 b do_vfp @ let VFP handler handle this
5701:
571#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 tst r0, #0x08000000 @ only CDP/CPRT/LDC/STC have bit 27
Paul Brookcb170a42008-04-18 22:43:08 +0100573 tstne r0, #0x04000000 @ bit 26 set on both ARM and Thumb-2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574#if defined(CONFIG_CPU_ARM610) || defined(CONFIG_CPU_ARM710)
575 and r8, r0, #0x0f000000 @ mask out op-code bits
576 teqne r8, #0x0f000000 @ SWI (ARM6/7 bug)?
577#endif
578 moveq pc, lr
579 get_thread_info r10 @ get current thread
580 and r8, r0, #0x00000f00 @ mask out CP number
Catalin Marinasb86040a2009-07-24 12:32:54 +0100581 THUMB( lsr r8, r8, #8 )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 mov r7, #1
583 add r6, r10, #TI_USED_CP
Catalin Marinasb86040a2009-07-24 12:32:54 +0100584 ARM( strb r7, [r6, r8, lsr #8] ) @ set appropriate used_cp[]
585 THUMB( strb r7, [r6, r8] ) @ set appropriate used_cp[]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586#ifdef CONFIG_IWMMXT
587 @ Test if we need to give access to iWMMXt coprocessors
588 ldr r5, [r10, #TI_FLAGS]
589 rsbs r7, r8, #(1 << 8) @ CP 0 or 1 only
590 movcss r7, r5, lsr #(TIF_USING_IWMMXT + 1)
591 bcs iwmmxt_task_enable
592#endif
Catalin Marinasb86040a2009-07-24 12:32:54 +0100593 ARM( add pc, pc, r8, lsr #6 )
594 THUMB( lsl r8, r8, #2 )
595 THUMB( add pc, r8 )
596 nop
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
Catalin Marinasa771fe62009-10-12 17:31:20 +0100598 movw_pc lr @ CP#0
Catalin Marinasb86040a2009-07-24 12:32:54 +0100599 W(b) do_fpe @ CP#1 (FPE)
600 W(b) do_fpe @ CP#2 (FPE)
Catalin Marinasa771fe62009-10-12 17:31:20 +0100601 movw_pc lr @ CP#3
Lennert Buytenhekc17fad12006-06-27 23:03:03 +0100602#ifdef CONFIG_CRUNCH
603 b crunch_task_enable @ CP#4 (MaverickCrunch)
604 b crunch_task_enable @ CP#5 (MaverickCrunch)
605 b crunch_task_enable @ CP#6 (MaverickCrunch)
606#else
Catalin Marinasa771fe62009-10-12 17:31:20 +0100607 movw_pc lr @ CP#4
608 movw_pc lr @ CP#5
609 movw_pc lr @ CP#6
Lennert Buytenhekc17fad12006-06-27 23:03:03 +0100610#endif
Catalin Marinasa771fe62009-10-12 17:31:20 +0100611 movw_pc lr @ CP#7
612 movw_pc lr @ CP#8
613 movw_pc lr @ CP#9
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614#ifdef CONFIG_VFP
Catalin Marinasb86040a2009-07-24 12:32:54 +0100615 W(b) do_vfp @ CP#10 (VFP)
616 W(b) do_vfp @ CP#11 (VFP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617#else
Catalin Marinasa771fe62009-10-12 17:31:20 +0100618 movw_pc lr @ CP#10 (VFP)
619 movw_pc lr @ CP#11 (VFP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620#endif
Catalin Marinasa771fe62009-10-12 17:31:20 +0100621 movw_pc lr @ CP#12
622 movw_pc lr @ CP#13
623 movw_pc lr @ CP#14 (Debug)
624 movw_pc lr @ CP#15 (Control)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
Catalin Marinasb5872db2008-01-10 19:16:17 +0100626#ifdef CONFIG_NEON
627 .align 6
628
Paul Brookcb170a42008-04-18 22:43:08 +0100629.LCneon_arm_opcodes:
Catalin Marinasb5872db2008-01-10 19:16:17 +0100630 .word 0xfe000000 @ mask
631 .word 0xf2000000 @ opcode
632
633 .word 0xff100000 @ mask
634 .word 0xf4000000 @ opcode
635
636 .word 0x00000000 @ mask
637 .word 0x00000000 @ opcode
Paul Brookcb170a42008-04-18 22:43:08 +0100638
639.LCneon_thumb_opcodes:
640 .word 0xef000000 @ mask
641 .word 0xef000000 @ opcode
642
643 .word 0xff100000 @ mask
644 .word 0xf9000000 @ opcode
645
646 .word 0x00000000 @ mask
647 .word 0x00000000 @ opcode
Catalin Marinasb5872db2008-01-10 19:16:17 +0100648#endif
649
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650do_fpe:
Russell King5d25ac02006-03-15 12:33:43 +0000651 enable_irq
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 ldr r4, .LCfp
653 add r10, r10, #TI_FPSTATE @ r10 = workspace
654 ldr pc, [r4] @ Call FP module USR entry point
655
656/*
657 * The FP module is called with these registers set:
658 * r0 = instruction
659 * r2 = PC+4
660 * r9 = normal "successful" return address
661 * r10 = FP workspace
662 * lr = unrecognised FP instruction return address
663 */
664
Santosh Shilimkar124efc22010-04-30 10:45:46 +0100665 .pushsection .data
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666ENTRY(fp_enter)
Russell Kingdb6ccbb2007-01-06 22:53:48 +0000667 .word no_fp
Santosh Shilimkar124efc22010-04-30 10:45:46 +0100668 .popsection
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
Catalin Marinas83e686e2009-09-18 23:27:07 +0100670ENTRY(no_fp)
671 mov pc, lr
672ENDPROC(no_fp)
Russell Kingdb6ccbb2007-01-06 22:53:48 +0000673
674__und_usr_unknown:
Russell Kingecbab712009-01-27 23:20:00 +0000675 enable_irq
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 mov r0, sp
Catalin Marinasb86040a2009-07-24 12:32:54 +0100677 adr lr, BSYM(ret_from_exception)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 b do_undefinstr
Catalin Marinas93ed3972008-08-28 11:22:32 +0100679ENDPROC(__und_usr_unknown)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
681 .align 5
682__pabt_usr:
Russell Kingccea7a12005-05-31 22:22:32 +0100683 usr_entry
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
Paul Brook48d79272008-04-18 22:43:07 +0100685 mov r0, r2 @ pass address of aborted instruction.
Kirill A. Shutemov4fb28472009-09-25 13:39:47 +0100686#ifdef MULTI_PABORT
Paul Brook48d79272008-04-18 22:43:07 +0100687 ldr r4, .LCprocfns
688 mov lr, pc
689 ldr pc, [r4, #PROCESSOR_PABT_FUNC]
690#else
Kirill A. Shutemov4fb28472009-09-25 13:39:47 +0100691 bl CPU_PABORT_HANDLER
Paul Brook48d79272008-04-18 22:43:07 +0100692#endif
Will Deacon7e202692010-11-28 14:57:24 +0000693 debug_entry r1
Russell King1ec42c02005-04-26 15:18:26 +0100694 enable_irq @ Enable interrupts
Kirill A. Shutemov4fb28472009-09-25 13:39:47 +0100695 mov r2, sp @ regs
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 bl do_PrefetchAbort @ call abort handler
Catalin Marinasc4c57162009-02-16 11:42:09 +0100697 UNWIND(.fnend )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 /* fall through */
699/*
700 * This is the return code to user mode for abort handlers
701 */
702ENTRY(ret_from_exception)
Catalin Marinasc4c57162009-02-16 11:42:09 +0100703 UNWIND(.fnstart )
704 UNWIND(.cantunwind )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 get_thread_info tsk
706 mov why, #0
707 b ret_to_user
Catalin Marinasc4c57162009-02-16 11:42:09 +0100708 UNWIND(.fnend )
Catalin Marinas93ed3972008-08-28 11:22:32 +0100709ENDPROC(__pabt_usr)
710ENDPROC(ret_from_exception)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
712/*
713 * Register switch for ARMv3 and ARMv4 processors
714 * r0 = previous task_struct, r1 = previous thread_info, r2 = next thread_info
715 * previous and next are guaranteed not to be the same.
716 */
717ENTRY(__switch_to)
Catalin Marinasc4c57162009-02-16 11:42:09 +0100718 UNWIND(.fnstart )
719 UNWIND(.cantunwind )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 add ip, r1, #TI_CPU_SAVE
721 ldr r3, [r2, #TI_TP_VALUE]
Catalin Marinasb86040a2009-07-24 12:32:54 +0100722 ARM( stmia ip!, {r4 - sl, fp, sp, lr} ) @ Store most regs on stack
723 THUMB( stmia ip!, {r4 - sl, fp} ) @ Store most regs on stack
724 THUMB( str sp, [ip], #4 )
725 THUMB( str lr, [ip], #4 )
Catalin Marinas247055a2010-09-13 16:03:21 +0100726#ifdef CONFIG_CPU_USE_DOMAINS
Russell Kingd6551e82006-06-21 13:31:52 +0100727 ldr r6, [r2, #TI_CPU_DOMAIN]
Hyok S. Choiafeb90c2006-01-13 21:05:25 +0000728#endif
Tony Lindgrenf159f4e2010-07-05 14:53:10 +0100729 set_tls r3, r4, r5
Nicolas Pitredf0698b2010-06-07 21:50:33 -0400730#if defined(CONFIG_CC_STACKPROTECTOR) && !defined(CONFIG_SMP)
731 ldr r7, [r2, #TI_TASK]
732 ldr r8, =__stack_chk_guard
733 ldr r7, [r7, #TSK_STACK_CANARY]
734#endif
Catalin Marinas247055a2010-09-13 16:03:21 +0100735#ifdef CONFIG_CPU_USE_DOMAINS
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700736#ifdef CONFIG_EMULATE_DOMAIN_MANAGER_V7
737 stmdb r13!, {r0-r3, lr}
738 mov r0, r6
739 bl emulate_domain_manager_set
740 ldmia r13!, {r0-r3, lr}
741#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 mcr p15, 0, r6, c3, c0, 0 @ Set domain register
Hyok S. Choiafeb90c2006-01-13 21:05:25 +0000743#endif
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700744#endif
Russell Kingd6551e82006-06-21 13:31:52 +0100745 mov r5, r0
746 add r4, r2, #TI_CPU_SAVE
747 ldr r0, =thread_notify_head
748 mov r1, #THREAD_NOTIFY_SWITCH
749 bl atomic_notifier_call_chain
Nicolas Pitredf0698b2010-06-07 21:50:33 -0400750#if defined(CONFIG_CC_STACKPROTECTOR) && !defined(CONFIG_SMP)
751 str r7, [r8]
752#endif
Catalin Marinasb86040a2009-07-24 12:32:54 +0100753 THUMB( mov ip, r4 )
Russell Kingd6551e82006-06-21 13:31:52 +0100754 mov r0, r5
Catalin Marinasb86040a2009-07-24 12:32:54 +0100755 ARM( ldmia r4, {r4 - sl, fp, sp, pc} ) @ Load all regs saved previously
756 THUMB( ldmia ip!, {r4 - sl, fp} ) @ Load all regs saved previously
757 THUMB( ldr sp, [ip], #4 )
758 THUMB( ldr pc, [ip] )
Catalin Marinasc4c57162009-02-16 11:42:09 +0100759 UNWIND(.fnend )
Catalin Marinas93ed3972008-08-28 11:22:32 +0100760ENDPROC(__switch_to)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
762 __INIT
Nicolas Pitre2d2669b2005-04-29 22:08:33 +0100763
764/*
765 * User helpers.
766 *
767 * These are segment of kernel provided user code reachable from user space
768 * at a fixed address in kernel memory. This is used to provide user space
769 * with some operations which require kernel help because of unimplemented
770 * native feature and/or instructions in many ARM CPUs. The idea is for
771 * this code to be executed directly in user mode for best efficiency but
772 * which is too intimate with the kernel counter part to be left to user
773 * libraries. In fact this code might even differ from one CPU to another
774 * depending on the available instruction set and restrictions like on
775 * SMP systems. In other words, the kernel reserves the right to change
776 * this code as needed without warning. Only the entry points and their
777 * results are guaranteed to be stable.
778 *
779 * Each segment is 32-byte aligned and will be moved to the top of the high
780 * vector page. New segments (if ever needed) must be added in front of
781 * existing ones. This mechanism should be used only for things that are
782 * really small and justified, and not be abused freely.
783 *
784 * User space is expected to implement those things inline when optimizing
785 * for a processor that has the necessary native support, but only if such
786 * resulting binaries are already to be incompatible with earlier ARM
787 * processors due to the use of unsupported instructions other than what
788 * is provided here. In other words don't make binaries unable to run on
789 * earlier processors just for the sake of not using these kernel helpers
790 * if your compiled code is not going to use the new instructions for other
791 * purpose.
792 */
Catalin Marinasb86040a2009-07-24 12:32:54 +0100793 THUMB( .arm )
Nicolas Pitre2d2669b2005-04-29 22:08:33 +0100794
Nicolas Pitreba9b5d72006-08-18 17:20:15 +0100795 .macro usr_ret, reg
796#ifdef CONFIG_ARM_THUMB
797 bx \reg
798#else
799 mov pc, \reg
800#endif
801 .endm
802
Nicolas Pitre2d2669b2005-04-29 22:08:33 +0100803 .align 5
804 .globl __kuser_helper_start
805__kuser_helper_start:
806
807/*
808 * Reference prototype:
809 *
Nicolas Pitre7c612bf2005-12-19 22:20:51 +0000810 * void __kernel_memory_barrier(void)
811 *
812 * Input:
813 *
814 * lr = return address
815 *
816 * Output:
817 *
818 * none
819 *
820 * Clobbered:
821 *
Nicolas Pitreb49c0f22007-11-20 17:20:29 +0100822 * none
Nicolas Pitre7c612bf2005-12-19 22:20:51 +0000823 *
824 * Definition and user space usage example:
825 *
826 * typedef void (__kernel_dmb_t)(void);
827 * #define __kernel_dmb (*(__kernel_dmb_t *)0xffff0fa0)
828 *
829 * Apply any needed memory barrier to preserve consistency with data modified
830 * manually and __kuser_cmpxchg usage.
831 *
832 * This could be used as follows:
833 *
834 * #define __kernel_dmb() \
835 * asm volatile ( "mov r0, #0xffff0fff; mov lr, pc; sub pc, r0, #95" \
Paul Brook6896eec2006-03-28 22:19:29 +0100836 * : : : "r0", "lr","cc" )
Nicolas Pitre7c612bf2005-12-19 22:20:51 +0000837 */
838
839__kuser_memory_barrier: @ 0xffff0fa0
Dave Martined3768a2010-12-01 15:39:23 +0100840 smp_dmb arm
Nicolas Pitreba9b5d72006-08-18 17:20:15 +0100841 usr_ret lr
Nicolas Pitre7c612bf2005-12-19 22:20:51 +0000842
843 .align 5
844
845/*
846 * Reference prototype:
847 *
Nicolas Pitre2d2669b2005-04-29 22:08:33 +0100848 * int __kernel_cmpxchg(int oldval, int newval, int *ptr)
849 *
850 * Input:
851 *
852 * r0 = oldval
853 * r1 = newval
854 * r2 = ptr
855 * lr = return address
856 *
857 * Output:
858 *
859 * r0 = returned value (zero or non-zero)
860 * C flag = set if r0 == 0, clear if r0 != 0
861 *
862 * Clobbered:
863 *
864 * r3, ip, flags
865 *
866 * Definition and user space usage example:
867 *
868 * typedef int (__kernel_cmpxchg_t)(int oldval, int newval, int *ptr);
869 * #define __kernel_cmpxchg (*(__kernel_cmpxchg_t *)0xffff0fc0)
870 *
871 * Atomically store newval in *ptr if *ptr is equal to oldval for user space.
872 * Return zero if *ptr was changed or non-zero if no exchange happened.
873 * The C flag is also set if *ptr was changed to allow for assembly
874 * optimization in the calling code.
875 *
Nicolas Pitre5964eae2006-02-08 21:19:37 +0000876 * Notes:
877 *
878 * - This routine already includes memory barriers as needed.
879 *
Nicolas Pitre2d2669b2005-04-29 22:08:33 +0100880 * For example, a user space atomic_add implementation could look like this:
881 *
882 * #define atomic_add(ptr, val) \
883 * ({ register unsigned int *__ptr asm("r2") = (ptr); \
884 * register unsigned int __result asm("r1"); \
885 * asm volatile ( \
886 * "1: @ atomic_add\n\t" \
887 * "ldr r0, [r2]\n\t" \
888 * "mov r3, #0xffff0fff\n\t" \
889 * "add lr, pc, #4\n\t" \
890 * "add r1, r0, %2\n\t" \
891 * "add pc, r3, #(0xffff0fc0 - 0xffff0fff)\n\t" \
892 * "bcc 1b" \
893 * : "=&r" (__result) \
894 * : "r" (__ptr), "rIL" (val) \
895 * : "r0","r3","ip","lr","cc","memory" ); \
896 * __result; })
897 */
898
899__kuser_cmpxchg: @ 0xffff0fc0
900
Nicolas Pitredcef1f62005-06-08 19:00:47 +0100901#if defined(CONFIG_NEEDS_SYSCALL_FOR_CMPXCHG)
Nicolas Pitre2d2669b2005-04-29 22:08:33 +0100902
Nicolas Pitredcef1f62005-06-08 19:00:47 +0100903 /*
904 * Poor you. No fast solution possible...
905 * The kernel itself must perform the operation.
906 * A special ghost syscall is used for that (see traps.c).
907 */
Nicolas Pitre5e097442006-01-18 22:38:49 +0000908 stmfd sp!, {r7, lr}
Dave Martin55afd262010-12-01 18:12:43 +0100909 ldr r7, 1f @ it's 20 bits
Russell Kingcc20d422009-11-09 23:53:29 +0000910 swi __ARM_NR_cmpxchg
Nicolas Pitre5e097442006-01-18 22:38:49 +0000911 ldmfd sp!, {r7, pc}
Russell Kingcc20d422009-11-09 23:53:29 +00009121: .word __ARM_NR_cmpxchg
Nicolas Pitredcef1f62005-06-08 19:00:47 +0100913
914#elif __LINUX_ARM_ARCH__ < 6
Nicolas Pitre2d2669b2005-04-29 22:08:33 +0100915
Nicolas Pitre49bca4c2006-02-08 21:19:37 +0000916#ifdef CONFIG_MMU
Nicolas Pitreb49c0f22007-11-20 17:20:29 +0100917
918 /*
919 * The only thing that can break atomicity in this cmpxchg
920 * implementation is either an IRQ or a data abort exception
921 * causing another process/thread to be scheduled in the middle
922 * of the critical sequence. To prevent this, code is added to
923 * the IRQ and data abort exception handlers to set the pc back
924 * to the beginning of the critical section if it is found to be
925 * within that critical section (see kuser_cmpxchg_fixup).
926 */
9271: ldr r3, [r2] @ load current val
928 subs r3, r3, r0 @ compare with oldval
9292: streq r1, [r2] @ store newval if eq
930 rsbs r0, r3, #0 @ set return val and C flag
931 usr_ret lr
932
933 .text
934kuser_cmpxchg_fixup:
935 @ Called from kuser_cmpxchg_check macro.
936 @ r2 = address of interrupted insn (must be preserved).
937 @ sp = saved regs. r7 and r8 are clobbered.
938 @ 1b = first critical insn, 2b = last critical insn.
939 @ If r2 >= 1b and r2 <= 2b then saved pc_usr is set to 1b.
940 mov r7, #0xffff0fff
941 sub r7, r7, #(0xffff0fff - (0xffff0fc0 + (1b - __kuser_cmpxchg)))
942 subs r8, r2, r7
943 rsbcss r8, r8, #(2b - 1b)
944 strcs r7, [sp, #S_PC]
945 mov pc, lr
946 .previous
947
Nicolas Pitre49bca4c2006-02-08 21:19:37 +0000948#else
949#warning "NPTL on non MMU needs fixing"
950 mov r0, #-1
951 adds r0, r0, #0
Nicolas Pitreba9b5d72006-08-18 17:20:15 +0100952 usr_ret lr
Nicolas Pitreb49c0f22007-11-20 17:20:29 +0100953#endif
Nicolas Pitre2d2669b2005-04-29 22:08:33 +0100954
955#else
956
Dave Martined3768a2010-12-01 15:39:23 +0100957 smp_dmb arm
Nicolas Pitreb49c0f22007-11-20 17:20:29 +01009581: ldrex r3, [r2]
Nicolas Pitre2d2669b2005-04-29 22:08:33 +0100959 subs r3, r3, r0
960 strexeq r3, r1, [r2]
Nicolas Pitreb49c0f22007-11-20 17:20:29 +0100961 teqeq r3, #1
962 beq 1b
Nicolas Pitre2d2669b2005-04-29 22:08:33 +0100963 rsbs r0, r3, #0
Nicolas Pitreb49c0f22007-11-20 17:20:29 +0100964 /* beware -- each __kuser slot must be 8 instructions max */
Russell Kingf00ec482010-09-04 10:47:48 +0100965 ALT_SMP(b __kuser_memory_barrier)
966 ALT_UP(usr_ret lr)
Nicolas Pitre2d2669b2005-04-29 22:08:33 +0100967
968#endif
969
970 .align 5
971
972/*
973 * Reference prototype:
974 *
975 * int __kernel_get_tls(void)
976 *
977 * Input:
978 *
979 * lr = return address
980 *
981 * Output:
982 *
983 * r0 = TLS value
984 *
985 * Clobbered:
986 *
Nicolas Pitreb49c0f22007-11-20 17:20:29 +0100987 * none
Nicolas Pitre2d2669b2005-04-29 22:08:33 +0100988 *
989 * Definition and user space usage example:
990 *
991 * typedef int (__kernel_get_tls_t)(void);
992 * #define __kernel_get_tls (*(__kernel_get_tls_t *)0xffff0fe0)
993 *
994 * Get the TLS value as previously set via the __ARM_NR_set_tls syscall.
995 *
996 * This could be used as follows:
997 *
998 * #define __kernel_get_tls() \
999 * ({ register unsigned int __val asm("r0"); \
1000 * asm( "mov r0, #0xffff0fff; mov lr, pc; sub pc, r0, #31" \
1001 * : "=r" (__val) : : "lr","cc" ); \
1002 * __val; })
1003 */
1004
1005__kuser_get_tls: @ 0xffff0fe0
Tony Lindgrenf159f4e2010-07-05 14:53:10 +01001006 ldr r0, [pc, #(16 - 8)] @ read TLS, set in kuser_get_tls_init
Nicolas Pitreba9b5d72006-08-18 17:20:15 +01001007 usr_ret lr
Tony Lindgrenf159f4e2010-07-05 14:53:10 +01001008 mrc p15, 0, r0, c13, c0, 3 @ 0xffff0fe8 hardware TLS code
1009 .rep 4
1010 .word 0 @ 0xffff0ff0 software TLS value, then
1011 .endr @ pad up to __kuser_helper_version
Nicolas Pitre2d2669b2005-04-29 22:08:33 +01001012
1013/*
1014 * Reference declaration:
1015 *
1016 * extern unsigned int __kernel_helper_version;
1017 *
1018 * Definition and user space usage example:
1019 *
1020 * #define __kernel_helper_version (*(unsigned int *)0xffff0ffc)
1021 *
1022 * User space may read this to determine the curent number of helpers
1023 * available.
1024 */
1025
1026__kuser_helper_version: @ 0xffff0ffc
1027 .word ((__kuser_helper_end - __kuser_helper_start) >> 5)
1028
1029 .globl __kuser_helper_end
1030__kuser_helper_end:
1031
Catalin Marinasb86040a2009-07-24 12:32:54 +01001032 THUMB( .thumb )
Nicolas Pitre2d2669b2005-04-29 22:08:33 +01001033
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034/*
1035 * Vector stubs.
1036 *
Russell King79335232005-04-26 15:17:42 +01001037 * This code is copied to 0xffff0200 so we can use branches in the
1038 * vectors, rather than ldr's. Note that this code must not
1039 * exceed 0x300 bytes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 *
1041 * Common stub entry macro:
1042 * Enter in IRQ mode, spsr = SVC/USR CPSR, lr = SVC/USR PC
Russell Kingccea7a12005-05-31 22:22:32 +01001043 *
1044 * SP points to a minimal amount of processor-private memory, the address
1045 * of which is copied into r0 for the mode specific abort handler.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 */
Nicolas Pitreb7ec4792005-11-06 14:42:37 +00001047 .macro vector_stub, name, mode, correction=0
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 .align 5
1049
1050vector_\name:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 .if \correction
1052 sub lr, lr, #\correction
1053 .endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054
Russell Kingccea7a12005-05-31 22:22:32 +01001055 @
1056 @ Save r0, lr_<exception> (parent PC) and spsr_<exception>
1057 @ (parent CPSR)
1058 @
1059 stmia sp, {r0, lr} @ save r0, lr
1060 mrs lr, spsr
1061 str lr, [sp, #8] @ save spsr
1062
1063 @
1064 @ Prepare for SVC32 mode. IRQs remain disabled.
1065 @
1066 mrs r0, cpsr
Catalin Marinasb86040a2009-07-24 12:32:54 +01001067 eor r0, r0, #(\mode ^ SVC_MODE | PSR_ISETSTATE)
Russell Kingccea7a12005-05-31 22:22:32 +01001068 msr spsr_cxsf, r0
1069
1070 @
1071 @ the branch table must immediately follow this code
1072 @
Russell Kingccea7a12005-05-31 22:22:32 +01001073 and lr, lr, #0x0f
Catalin Marinasb86040a2009-07-24 12:32:54 +01001074 THUMB( adr r0, 1f )
1075 THUMB( ldr lr, [r0, lr, lsl #2] )
Nicolas Pitreb7ec4792005-11-06 14:42:37 +00001076 mov r0, sp
Catalin Marinasb86040a2009-07-24 12:32:54 +01001077 ARM( ldr lr, [pc, lr, lsl #2] )
Russell Kingccea7a12005-05-31 22:22:32 +01001078 movs pc, lr @ branch to handler in SVC mode
Catalin Marinas93ed3972008-08-28 11:22:32 +01001079ENDPROC(vector_\name)
Catalin Marinas88987ef2009-07-24 12:32:52 +01001080
1081 .align 2
1082 @ handler addresses follow this label
10831:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 .endm
1085
Russell King79335232005-04-26 15:17:42 +01001086 .globl __stubs_start
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087__stubs_start:
1088/*
1089 * Interrupt dispatcher
1090 */
Nicolas Pitreb7ec4792005-11-06 14:42:37 +00001091 vector_stub irq, IRQ_MODE, 4
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092
1093 .long __irq_usr @ 0 (USR_26 / USR_32)
1094 .long __irq_invalid @ 1 (FIQ_26 / FIQ_32)
1095 .long __irq_invalid @ 2 (IRQ_26 / IRQ_32)
1096 .long __irq_svc @ 3 (SVC_26 / SVC_32)
1097 .long __irq_invalid @ 4
1098 .long __irq_invalid @ 5
1099 .long __irq_invalid @ 6
1100 .long __irq_invalid @ 7
1101 .long __irq_invalid @ 8
1102 .long __irq_invalid @ 9
1103 .long __irq_invalid @ a
1104 .long __irq_invalid @ b
1105 .long __irq_invalid @ c
1106 .long __irq_invalid @ d
1107 .long __irq_invalid @ e
1108 .long __irq_invalid @ f
1109
1110/*
1111 * Data abort dispatcher
1112 * Enter in ABT mode, spsr = USR CPSR, lr = USR PC
1113 */
Nicolas Pitreb7ec4792005-11-06 14:42:37 +00001114 vector_stub dabt, ABT_MODE, 8
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115
1116 .long __dabt_usr @ 0 (USR_26 / USR_32)
1117 .long __dabt_invalid @ 1 (FIQ_26 / FIQ_32)
1118 .long __dabt_invalid @ 2 (IRQ_26 / IRQ_32)
1119 .long __dabt_svc @ 3 (SVC_26 / SVC_32)
1120 .long __dabt_invalid @ 4
1121 .long __dabt_invalid @ 5
1122 .long __dabt_invalid @ 6
1123 .long __dabt_invalid @ 7
1124 .long __dabt_invalid @ 8
1125 .long __dabt_invalid @ 9
1126 .long __dabt_invalid @ a
1127 .long __dabt_invalid @ b
1128 .long __dabt_invalid @ c
1129 .long __dabt_invalid @ d
1130 .long __dabt_invalid @ e
1131 .long __dabt_invalid @ f
1132
1133/*
1134 * Prefetch abort dispatcher
1135 * Enter in ABT mode, spsr = USR CPSR, lr = USR PC
1136 */
Nicolas Pitreb7ec4792005-11-06 14:42:37 +00001137 vector_stub pabt, ABT_MODE, 4
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138
1139 .long __pabt_usr @ 0 (USR_26 / USR_32)
1140 .long __pabt_invalid @ 1 (FIQ_26 / FIQ_32)
1141 .long __pabt_invalid @ 2 (IRQ_26 / IRQ_32)
1142 .long __pabt_svc @ 3 (SVC_26 / SVC_32)
1143 .long __pabt_invalid @ 4
1144 .long __pabt_invalid @ 5
1145 .long __pabt_invalid @ 6
1146 .long __pabt_invalid @ 7
1147 .long __pabt_invalid @ 8
1148 .long __pabt_invalid @ 9
1149 .long __pabt_invalid @ a
1150 .long __pabt_invalid @ b
1151 .long __pabt_invalid @ c
1152 .long __pabt_invalid @ d
1153 .long __pabt_invalid @ e
1154 .long __pabt_invalid @ f
1155
1156/*
1157 * Undef instr entry dispatcher
1158 * Enter in UND mode, spsr = SVC/USR CPSR, lr = SVC/USR PC
1159 */
Nicolas Pitreb7ec4792005-11-06 14:42:37 +00001160 vector_stub und, UND_MODE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161
1162 .long __und_usr @ 0 (USR_26 / USR_32)
1163 .long __und_invalid @ 1 (FIQ_26 / FIQ_32)
1164 .long __und_invalid @ 2 (IRQ_26 / IRQ_32)
1165 .long __und_svc @ 3 (SVC_26 / SVC_32)
1166 .long __und_invalid @ 4
1167 .long __und_invalid @ 5
1168 .long __und_invalid @ 6
1169 .long __und_invalid @ 7
1170 .long __und_invalid @ 8
1171 .long __und_invalid @ 9
1172 .long __und_invalid @ a
1173 .long __und_invalid @ b
1174 .long __und_invalid @ c
1175 .long __und_invalid @ d
1176 .long __und_invalid @ e
1177 .long __und_invalid @ f
1178
1179 .align 5
1180
1181/*=============================================================================
1182 * Undefined FIQs
1183 *-----------------------------------------------------------------------------
1184 * Enter in FIQ mode, spsr = ANY CPSR, lr = ANY PC
1185 * MUST PRESERVE SVC SPSR, but need to switch to SVC mode to show our msg.
1186 * Basically to switch modes, we *HAVE* to clobber one register... brain
1187 * damage alert! I don't think that we can execute any code in here in any
1188 * other mode than FIQ... Ok you can switch to another mode, but you can't
1189 * get out of that mode without clobbering one register.
1190 */
1191vector_fiq:
1192 disable_fiq
1193 subs pc, lr, #4
1194
1195/*=============================================================================
1196 * Address exception handler
1197 *-----------------------------------------------------------------------------
1198 * These aren't too critical.
1199 * (they're not supposed to happen, and won't happen in 32-bit data mode).
1200 */
1201
1202vector_addrexcptn:
1203 b vector_addrexcptn
1204
1205/*
1206 * We group all the following data together to optimise
1207 * for CPUs with separate I & D caches.
1208 */
1209 .align 5
1210
1211.LCvswi:
1212 .word vector_swi
1213
Russell King79335232005-04-26 15:17:42 +01001214 .globl __stubs_end
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215__stubs_end:
1216
Russell King79335232005-04-26 15:17:42 +01001217 .equ stubs_offset, __vectors_start + 0x200 - __stubs_start
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218
Russell King79335232005-04-26 15:17:42 +01001219 .globl __vectors_start
1220__vectors_start:
Catalin Marinasb86040a2009-07-24 12:32:54 +01001221 ARM( swi SYS_ERROR0 )
1222 THUMB( svc #0 )
1223 THUMB( nop )
1224 W(b) vector_und + stubs_offset
1225 W(ldr) pc, .LCvswi + stubs_offset
1226 W(b) vector_pabt + stubs_offset
1227 W(b) vector_dabt + stubs_offset
1228 W(b) vector_addrexcptn + stubs_offset
1229 W(b) vector_irq + stubs_offset
1230 W(b) vector_fiq + stubs_offset
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231
Russell King79335232005-04-26 15:17:42 +01001232 .globl __vectors_end
1233__vectors_end:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234
1235 .data
1236
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 .globl cr_alignment
1238 .globl cr_no_alignment
1239cr_alignment:
1240 .space 4
1241cr_no_alignment:
1242 .space 4
eric miao52108642010-12-13 09:42:34 +01001243
1244#ifdef CONFIG_MULTI_IRQ_HANDLER
1245 .globl handle_arch_irq
1246handle_arch_irq:
1247 .space 4
1248#endif