xref: /openbmc/linux/arch/arm/kernel/entry-armv.S (revision 48d7927bdf071d05cf5d15b816cf06b0937cb84f)
11da177e4SLinus Torvalds/*
21da177e4SLinus Torvalds *  linux/arch/arm/kernel/entry-armv.S
31da177e4SLinus Torvalds *
41da177e4SLinus Torvalds *  Copyright (C) 1996,1997,1998 Russell King.
51da177e4SLinus Torvalds *  ARM700 fix by Matthew Godbolt (linux-user@willothewisp.demon.co.uk)
6afeb90caSHyok S. Choi *  nommu support by Hyok S. Choi (hyok.choi@samsung.com)
71da177e4SLinus Torvalds *
81da177e4SLinus Torvalds * This program is free software; you can redistribute it and/or modify
91da177e4SLinus Torvalds * it under the terms of the GNU General Public License version 2 as
101da177e4SLinus Torvalds * published by the Free Software Foundation.
111da177e4SLinus Torvalds *
121da177e4SLinus Torvalds *  Low-level vector interface routines
131da177e4SLinus Torvalds *
1470b6f2b4SNicolas Pitre *  Note:  there is a StrongARM bug in the STMIA rn, {regs}^ instruction
1570b6f2b4SNicolas Pitre *  that causes it to save wrong values...  Be aware!
161da177e4SLinus Torvalds */
171da177e4SLinus Torvalds
18f09b9979SNicolas Pitre#include <asm/memory.h>
191da177e4SLinus Torvalds#include <asm/glue.h>
201da177e4SLinus Torvalds#include <asm/vfpmacros.h>
21bce495d8SRussell King#include <asm/arch/entry-macro.S>
22d6551e88SRussell King#include <asm/thread_notify.h>
231da177e4SLinus Torvalds
241da177e4SLinus Torvalds#include "entry-header.S"
251da177e4SLinus Torvalds
261da177e4SLinus Torvalds/*
27187a51adSRussell King * Interrupt handling.  Preserves r7, r8, r9
28187a51adSRussell King */
29187a51adSRussell King	.macro	irq_handler
30f80dff9dSDan Williams	get_irqnr_preamble r5, lr
31187a51adSRussell King1:	get_irqnr_and_base r0, r6, r5, lr
32187a51adSRussell King	movne	r1, sp
33187a51adSRussell King	@
34187a51adSRussell King	@ routine called with r0 = irq number, r1 = struct pt_regs *
35187a51adSRussell King	@
36187a51adSRussell King	adrne	lr, 1b
37187a51adSRussell King	bne	asm_do_IRQ
38791be9b9SRussell King
39791be9b9SRussell King#ifdef CONFIG_SMP
40791be9b9SRussell King	/*
41791be9b9SRussell King	 * XXX
42791be9b9SRussell King	 *
43791be9b9SRussell King	 * this macro assumes that irqstat (r6) and base (r5) are
44791be9b9SRussell King	 * preserved from get_irqnr_and_base above
45791be9b9SRussell King	 */
46791be9b9SRussell King	test_for_ipi r0, r6, r5, lr
47791be9b9SRussell King	movne	r0, sp
48791be9b9SRussell King	adrne	lr, 1b
49791be9b9SRussell King	bne	do_IPI
5037ee16aeSRussell King
5137ee16aeSRussell King#ifdef CONFIG_LOCAL_TIMERS
5237ee16aeSRussell King	test_for_ltirq r0, r6, r5, lr
5337ee16aeSRussell King	movne	r0, sp
5437ee16aeSRussell King	adrne	lr, 1b
5537ee16aeSRussell King	bne	do_local_timer
5637ee16aeSRussell King#endif
57791be9b9SRussell King#endif
58791be9b9SRussell King
59187a51adSRussell King	.endm
60187a51adSRussell King
61785d3cd2SNicolas Pitre#ifdef CONFIG_KPROBES
62785d3cd2SNicolas Pitre	.section	.kprobes.text,"ax",%progbits
63785d3cd2SNicolas Pitre#else
64785d3cd2SNicolas Pitre	.text
65785d3cd2SNicolas Pitre#endif
66785d3cd2SNicolas Pitre
67187a51adSRussell King/*
681da177e4SLinus Torvalds * Invalid mode handlers
691da177e4SLinus Torvalds */
70ccea7a19SRussell King	.macro	inv_entry, reason
71ccea7a19SRussell King	sub	sp, sp, #S_FRAME_SIZE
72ccea7a19SRussell King	stmib	sp, {r1 - lr}
731da177e4SLinus Torvalds	mov	r1, #\reason
741da177e4SLinus Torvalds	.endm
751da177e4SLinus Torvalds
761da177e4SLinus Torvalds__pabt_invalid:
77ccea7a19SRussell King	inv_entry BAD_PREFETCH
78ccea7a19SRussell King	b	common_invalid
791da177e4SLinus Torvalds
801da177e4SLinus Torvalds__dabt_invalid:
81ccea7a19SRussell King	inv_entry BAD_DATA
82ccea7a19SRussell King	b	common_invalid
831da177e4SLinus Torvalds
841da177e4SLinus Torvalds__irq_invalid:
85ccea7a19SRussell King	inv_entry BAD_IRQ
86ccea7a19SRussell King	b	common_invalid
871da177e4SLinus Torvalds
881da177e4SLinus Torvalds__und_invalid:
89ccea7a19SRussell King	inv_entry BAD_UNDEFINSTR
901da177e4SLinus Torvalds
91ccea7a19SRussell King	@
92ccea7a19SRussell King	@ XXX fall through to common_invalid
93ccea7a19SRussell King	@
94ccea7a19SRussell King
95ccea7a19SRussell King@
96ccea7a19SRussell King@ common_invalid - generic code for failed exception (re-entrant version of handlers)
97ccea7a19SRussell King@
98ccea7a19SRussell Kingcommon_invalid:
99ccea7a19SRussell King	zero_fp
100ccea7a19SRussell King
101ccea7a19SRussell King	ldmia	r0, {r4 - r6}
102ccea7a19SRussell King	add	r0, sp, #S_PC		@ here for interlock avoidance
103ccea7a19SRussell King	mov	r7, #-1			@  ""   ""    ""        ""
104ccea7a19SRussell King	str	r4, [sp]		@ save preserved r0
105ccea7a19SRussell King	stmia	r0, {r5 - r7}		@ lr_<exception>,
106ccea7a19SRussell King					@ cpsr_<exception>, "old_r0"
107ccea7a19SRussell King
1081da177e4SLinus Torvalds	mov	r0, sp
1091da177e4SLinus Torvalds	b	bad_mode
1101da177e4SLinus Torvalds
1111da177e4SLinus Torvalds/*
1121da177e4SLinus Torvalds * SVC mode handlers
1131da177e4SLinus Torvalds */
1142dede2d8SNicolas Pitre
1152dede2d8SNicolas Pitre#if defined(CONFIG_AEABI) && (__LINUX_ARM_ARCH__ >= 5)
1162dede2d8SNicolas Pitre#define SPFIX(code...) code
1172dede2d8SNicolas Pitre#else
1182dede2d8SNicolas Pitre#define SPFIX(code...)
1192dede2d8SNicolas Pitre#endif
1202dede2d8SNicolas Pitre
121d30a0c8bSNicolas Pitre	.macro	svc_entry, stack_hole=0
122d30a0c8bSNicolas Pitre	sub	sp, sp, #(S_FRAME_SIZE + \stack_hole)
1232dede2d8SNicolas Pitre SPFIX(	tst	sp, #4		)
1242dede2d8SNicolas Pitre SPFIX(	bicne	sp, sp, #4	)
125ccea7a19SRussell King	stmib	sp, {r1 - r12}
126ccea7a19SRussell King
127ccea7a19SRussell King	ldmia	r0, {r1 - r3}
128ccea7a19SRussell King	add	r5, sp, #S_SP		@ here for interlock avoidance
129ccea7a19SRussell King	mov	r4, #-1			@  ""  ""      ""       ""
130d30a0c8bSNicolas Pitre	add	r0, sp, #(S_FRAME_SIZE + \stack_hole)
1312dede2d8SNicolas Pitre SPFIX(	addne	r0, r0, #4	)
132ccea7a19SRussell King	str	r1, [sp]		@ save the "real" r0 copied
133ccea7a19SRussell King					@ from the exception stack
134ccea7a19SRussell King
1351da177e4SLinus Torvalds	mov	r1, lr
1361da177e4SLinus Torvalds
1371da177e4SLinus Torvalds	@
1381da177e4SLinus Torvalds	@ We are now ready to fill in the remaining blanks on the stack:
1391da177e4SLinus Torvalds	@
1401da177e4SLinus Torvalds	@  r0 - sp_svc
1411da177e4SLinus Torvalds	@  r1 - lr_svc
1421da177e4SLinus Torvalds	@  r2 - lr_<exception>, already fixed up for correct return/restart
1431da177e4SLinus Torvalds	@  r3 - spsr_<exception>
1441da177e4SLinus Torvalds	@  r4 - orig_r0 (see pt_regs definition in ptrace.h)
1451da177e4SLinus Torvalds	@
1461da177e4SLinus Torvalds	stmia	r5, {r0 - r4}
1471da177e4SLinus Torvalds	.endm
1481da177e4SLinus Torvalds
1491da177e4SLinus Torvalds	.align	5
1501da177e4SLinus Torvalds__dabt_svc:
151ccea7a19SRussell King	svc_entry
1521da177e4SLinus Torvalds
1531da177e4SLinus Torvalds	@
1541da177e4SLinus Torvalds	@ get ready to re-enable interrupts if appropriate
1551da177e4SLinus Torvalds	@
1561da177e4SLinus Torvalds	mrs	r9, cpsr
1571da177e4SLinus Torvalds	tst	r3, #PSR_I_BIT
1581da177e4SLinus Torvalds	biceq	r9, r9, #PSR_I_BIT
1591da177e4SLinus Torvalds
1601da177e4SLinus Torvalds	@
1611da177e4SLinus Torvalds	@ Call the processor-specific abort handler:
1621da177e4SLinus Torvalds	@
1631da177e4SLinus Torvalds	@  r2 - aborted context pc
1641da177e4SLinus Torvalds	@  r3 - aborted context cpsr
1651da177e4SLinus Torvalds	@
1661da177e4SLinus Torvalds	@ The abort handler must return the aborted address in r0, and
1671da177e4SLinus Torvalds	@ the fault status register in r1.  r9 must be preserved.
1681da177e4SLinus Torvalds	@
169*48d7927bSPaul Brook#ifdef MULTI_DABORT
1701da177e4SLinus Torvalds	ldr	r4, .LCprocfns
1711da177e4SLinus Torvalds	mov	lr, pc
172*48d7927bSPaul Brook	ldr	pc, [r4, #PROCESSOR_DABT_FUNC]
1731da177e4SLinus Torvalds#else
174*48d7927bSPaul Brook	bl	CPU_DABORT_HANDLER
1751da177e4SLinus Torvalds#endif
1761da177e4SLinus Torvalds
1771da177e4SLinus Torvalds	@
1781da177e4SLinus Torvalds	@ set desired IRQ state, then call main handler
1791da177e4SLinus Torvalds	@
1801da177e4SLinus Torvalds	msr	cpsr_c, r9
1811da177e4SLinus Torvalds	mov	r2, sp
1821da177e4SLinus Torvalds	bl	do_DataAbort
1831da177e4SLinus Torvalds
1841da177e4SLinus Torvalds	@
1851da177e4SLinus Torvalds	@ IRQs off again before pulling preserved data off the stack
1861da177e4SLinus Torvalds	@
1871ec42c0cSRussell King	disable_irq
1881da177e4SLinus Torvalds
1891da177e4SLinus Torvalds	@
1901da177e4SLinus Torvalds	@ restore SPSR and restart the instruction
1911da177e4SLinus Torvalds	@
1921da177e4SLinus Torvalds	ldr	r0, [sp, #S_PSR]
1931da177e4SLinus Torvalds	msr	spsr_cxsf, r0
1941da177e4SLinus Torvalds	ldmia	sp, {r0 - pc}^			@ load r0 - pc, cpsr
1951da177e4SLinus Torvalds
1961da177e4SLinus Torvalds	.align	5
1971da177e4SLinus Torvalds__irq_svc:
198ccea7a19SRussell King	svc_entry
199ccea7a19SRussell King
2007ad1bcb2SRussell King#ifdef CONFIG_TRACE_IRQFLAGS
2017ad1bcb2SRussell King	bl	trace_hardirqs_off
2027ad1bcb2SRussell King#endif
2031da177e4SLinus Torvalds#ifdef CONFIG_PREEMPT
204706fdd9fSRussell King	get_thread_info tsk
205706fdd9fSRussell King	ldr	r8, [tsk, #TI_PREEMPT]		@ get preempt count
206706fdd9fSRussell King	add	r7, r8, #1			@ increment it
207706fdd9fSRussell King	str	r7, [tsk, #TI_PREEMPT]
2081da177e4SLinus Torvalds#endif
209ccea7a19SRussell King
210187a51adSRussell King	irq_handler
2111da177e4SLinus Torvalds#ifdef CONFIG_PREEMPT
212706fdd9fSRussell King	ldr	r0, [tsk, #TI_FLAGS]		@ get flags
2131da177e4SLinus Torvalds	tst	r0, #_TIF_NEED_RESCHED
2141da177e4SLinus Torvalds	blne	svc_preempt
2151da177e4SLinus Torvaldspreempt_return:
216706fdd9fSRussell King	ldr	r0, [tsk, #TI_PREEMPT]		@ read preempt value
217706fdd9fSRussell King	str	r8, [tsk, #TI_PREEMPT]		@ restore preempt count
2181da177e4SLinus Torvalds	teq	r0, r7
2191da177e4SLinus Torvalds	strne	r0, [r0, -r0]			@ bug()
2201da177e4SLinus Torvalds#endif
2211da177e4SLinus Torvalds	ldr	r0, [sp, #S_PSR]		@ irqs are already disabled
2221da177e4SLinus Torvalds	msr	spsr_cxsf, r0
2237ad1bcb2SRussell King#ifdef CONFIG_TRACE_IRQFLAGS
2247ad1bcb2SRussell King	tst	r0, #PSR_I_BIT
2257ad1bcb2SRussell King	bleq	trace_hardirqs_on
2267ad1bcb2SRussell King#endif
2271da177e4SLinus Torvalds	ldmia	sp, {r0 - pc}^			@ load r0 - pc, cpsr
2281da177e4SLinus Torvalds
2291da177e4SLinus Torvalds	.ltorg
2301da177e4SLinus Torvalds
2311da177e4SLinus Torvalds#ifdef CONFIG_PREEMPT
2321da177e4SLinus Torvaldssvc_preempt:
233706fdd9fSRussell King	teq	r8, #0				@ was preempt count = 0
2341da177e4SLinus Torvalds	ldreq	r6, .LCirq_stat
2351da177e4SLinus Torvalds	movne	pc, lr				@ no
2361da177e4SLinus Torvalds	ldr	r0, [r6, #4]			@ local_irq_count
2371da177e4SLinus Torvalds	ldr	r1, [r6, #8]			@ local_bh_count
2381da177e4SLinus Torvalds	adds	r0, r0, r1
2391da177e4SLinus Torvalds	movne	pc, lr
2401da177e4SLinus Torvalds	mov	r7, #0				@ preempt_schedule_irq
241706fdd9fSRussell King	str	r7, [tsk, #TI_PREEMPT]		@ expects preempt_count == 0
2421da177e4SLinus Torvalds1:	bl	preempt_schedule_irq		@ irq en/disable is done inside
243706fdd9fSRussell King	ldr	r0, [tsk, #TI_FLAGS]		@ get new tasks TI_FLAGS
2441da177e4SLinus Torvalds	tst	r0, #_TIF_NEED_RESCHED
2451da177e4SLinus Torvalds	beq	preempt_return			@ go again
2461da177e4SLinus Torvalds	b	1b
2471da177e4SLinus Torvalds#endif
2481da177e4SLinus Torvalds
2491da177e4SLinus Torvalds	.align	5
2501da177e4SLinus Torvalds__und_svc:
251d30a0c8bSNicolas Pitre#ifdef CONFIG_KPROBES
252d30a0c8bSNicolas Pitre	@ If a kprobe is about to simulate a "stmdb sp..." instruction,
253d30a0c8bSNicolas Pitre	@ it obviously needs free stack space which then will belong to
254d30a0c8bSNicolas Pitre	@ the saved context.
255d30a0c8bSNicolas Pitre	svc_entry 64
256d30a0c8bSNicolas Pitre#else
257ccea7a19SRussell King	svc_entry
258d30a0c8bSNicolas Pitre#endif
2591da177e4SLinus Torvalds
2601da177e4SLinus Torvalds	@
2611da177e4SLinus Torvalds	@ call emulation code, which returns using r9 if it has emulated
2621da177e4SLinus Torvalds	@ the instruction, or the more conventional lr if we are to treat
2631da177e4SLinus Torvalds	@ this as a real undefined instruction
2641da177e4SLinus Torvalds	@
2651da177e4SLinus Torvalds	@  r0 - instruction
2661da177e4SLinus Torvalds	@
2671da177e4SLinus Torvalds	ldr	r0, [r2, #-4]
2681da177e4SLinus Torvalds	adr	r9, 1f
2691da177e4SLinus Torvalds	bl	call_fpe
2701da177e4SLinus Torvalds
2711da177e4SLinus Torvalds	mov	r0, sp				@ struct pt_regs *regs
2721da177e4SLinus Torvalds	bl	do_undefinstr
2731da177e4SLinus Torvalds
2741da177e4SLinus Torvalds	@
2751da177e4SLinus Torvalds	@ IRQs off again before pulling preserved data off the stack
2761da177e4SLinus Torvalds	@
2771ec42c0cSRussell King1:	disable_irq
2781da177e4SLinus Torvalds
2791da177e4SLinus Torvalds	@
2801da177e4SLinus Torvalds	@ restore SPSR and restart the instruction
2811da177e4SLinus Torvalds	@
2821da177e4SLinus Torvalds	ldr	lr, [sp, #S_PSR]		@ Get SVC cpsr
2831da177e4SLinus Torvalds	msr	spsr_cxsf, lr
2841da177e4SLinus Torvalds	ldmia	sp, {r0 - pc}^			@ Restore SVC registers
2851da177e4SLinus Torvalds
2861da177e4SLinus Torvalds	.align	5
2871da177e4SLinus Torvalds__pabt_svc:
288ccea7a19SRussell King	svc_entry
2891da177e4SLinus Torvalds
2901da177e4SLinus Torvalds	@
2911da177e4SLinus Torvalds	@ re-enable interrupts if appropriate
2921da177e4SLinus Torvalds	@
2931da177e4SLinus Torvalds	mrs	r9, cpsr
2941da177e4SLinus Torvalds	tst	r3, #PSR_I_BIT
2951da177e4SLinus Torvalds	biceq	r9, r9, #PSR_I_BIT
2961da177e4SLinus Torvalds
2971da177e4SLinus Torvalds	@
2981da177e4SLinus Torvalds	@ set args, then call main handler
2991da177e4SLinus Torvalds	@
3001da177e4SLinus Torvalds	@  r0 - address of faulting instruction
3011da177e4SLinus Torvalds	@  r1 - pointer to registers on stack
3021da177e4SLinus Torvalds	@
303*48d7927bSPaul Brook#ifdef MULTI_PABORT
304*48d7927bSPaul Brook	mov	r0, r2			@ pass address of aborted instruction.
305*48d7927bSPaul Brook	ldr	r4, .LCprocfns
306*48d7927bSPaul Brook	mov	lr, pc
307*48d7927bSPaul Brook	ldr	pc, [r4, #PROCESSOR_PABT_FUNC]
308*48d7927bSPaul Brook#else
309*48d7927bSPaul Brook	CPU_PABORT_HANDLER(r0, r2)
310*48d7927bSPaul Brook#endif
311*48d7927bSPaul Brook	msr	cpsr_c, r9			@ Maybe enable interrupts
3121da177e4SLinus Torvalds	mov	r1, sp				@ regs
3131da177e4SLinus Torvalds	bl	do_PrefetchAbort		@ call abort handler
3141da177e4SLinus Torvalds
3151da177e4SLinus Torvalds	@
3161da177e4SLinus Torvalds	@ IRQs off again before pulling preserved data off the stack
3171da177e4SLinus Torvalds	@
3181ec42c0cSRussell King	disable_irq
3191da177e4SLinus Torvalds
3201da177e4SLinus Torvalds	@
3211da177e4SLinus Torvalds	@ restore SPSR and restart the instruction
3221da177e4SLinus Torvalds	@
3231da177e4SLinus Torvalds	ldr	r0, [sp, #S_PSR]
3241da177e4SLinus Torvalds	msr	spsr_cxsf, r0
3251da177e4SLinus Torvalds	ldmia	sp, {r0 - pc}^			@ load r0 - pc, cpsr
3261da177e4SLinus Torvalds
3271da177e4SLinus Torvalds	.align	5
32849f680eaSRussell King.LCcralign:
32949f680eaSRussell King	.word	cr_alignment
330*48d7927bSPaul Brook#ifdef MULTI_DABORT
3311da177e4SLinus Torvalds.LCprocfns:
3321da177e4SLinus Torvalds	.word	processor
3331da177e4SLinus Torvalds#endif
3341da177e4SLinus Torvalds.LCfp:
3351da177e4SLinus Torvalds	.word	fp_enter
3361da177e4SLinus Torvalds#ifdef CONFIG_PREEMPT
3371da177e4SLinus Torvalds.LCirq_stat:
3381da177e4SLinus Torvalds	.word	irq_stat
3391da177e4SLinus Torvalds#endif
3401da177e4SLinus Torvalds
3411da177e4SLinus Torvalds/*
3421da177e4SLinus Torvalds * User mode handlers
3432dede2d8SNicolas Pitre *
3442dede2d8SNicolas Pitre * EABI note: sp_svc is always 64-bit aligned here, so should S_FRAME_SIZE
3451da177e4SLinus Torvalds */
3462dede2d8SNicolas Pitre
3472dede2d8SNicolas Pitre#if defined(CONFIG_AEABI) && (__LINUX_ARM_ARCH__ >= 5) && (S_FRAME_SIZE & 7)
3482dede2d8SNicolas Pitre#error "sizeof(struct pt_regs) must be a multiple of 8"
3492dede2d8SNicolas Pitre#endif
3502dede2d8SNicolas Pitre
351ccea7a19SRussell King	.macro	usr_entry
352ccea7a19SRussell King	sub	sp, sp, #S_FRAME_SIZE
353ccea7a19SRussell King	stmib	sp, {r1 - r12}
354ccea7a19SRussell King
355ccea7a19SRussell King	ldmia	r0, {r1 - r3}
356ccea7a19SRussell King	add	r0, sp, #S_PC		@ here for interlock avoidance
357ccea7a19SRussell King	mov	r4, #-1			@  ""  ""     ""        ""
358ccea7a19SRussell King
359ccea7a19SRussell King	str	r1, [sp]		@ save the "real" r0 copied
360ccea7a19SRussell King					@ from the exception stack
3611da177e4SLinus Torvalds
3621da177e4SLinus Torvalds	@
3631da177e4SLinus Torvalds	@ We are now ready to fill in the remaining blanks on the stack:
3641da177e4SLinus Torvalds	@
3651da177e4SLinus Torvalds	@  r2 - lr_<exception>, already fixed up for correct return/restart
3661da177e4SLinus Torvalds	@  r3 - spsr_<exception>
3671da177e4SLinus Torvalds	@  r4 - orig_r0 (see pt_regs definition in ptrace.h)
3681da177e4SLinus Torvalds	@
3691da177e4SLinus Torvalds	@ Also, separately save sp_usr and lr_usr
3701da177e4SLinus Torvalds	@
371ccea7a19SRussell King	stmia	r0, {r2 - r4}
372ccea7a19SRussell King	stmdb	r0, {sp, lr}^
3731da177e4SLinus Torvalds
3741da177e4SLinus Torvalds	@
3751da177e4SLinus Torvalds	@ Enable the alignment trap while in kernel mode
3761da177e4SLinus Torvalds	@
37749f680eaSRussell King	alignment_trap r0
3781da177e4SLinus Torvalds
3791da177e4SLinus Torvalds	@
3801da177e4SLinus Torvalds	@ Clear FP to mark the first stack frame
3811da177e4SLinus Torvalds	@
3821da177e4SLinus Torvalds	zero_fp
3831da177e4SLinus Torvalds	.endm
3841da177e4SLinus Torvalds
385b49c0f24SNicolas Pitre	.macro	kuser_cmpxchg_check
386b49c0f24SNicolas Pitre#if __LINUX_ARM_ARCH__ < 6 && !defined(CONFIG_NEEDS_SYSCALL_FOR_CMPXCHG)
387b49c0f24SNicolas Pitre#ifndef CONFIG_MMU
388b49c0f24SNicolas Pitre#warning "NPTL on non MMU needs fixing"
389b49c0f24SNicolas Pitre#else
390b49c0f24SNicolas Pitre	@ Make sure our user space atomic helper is restarted
391b49c0f24SNicolas Pitre	@ if it was interrupted in a critical region.  Here we
392b49c0f24SNicolas Pitre	@ perform a quick test inline since it should be false
393b49c0f24SNicolas Pitre	@ 99.9999% of the time.  The rest is done out of line.
394b49c0f24SNicolas Pitre	cmp	r2, #TASK_SIZE
395b49c0f24SNicolas Pitre	blhs	kuser_cmpxchg_fixup
396b49c0f24SNicolas Pitre#endif
397b49c0f24SNicolas Pitre#endif
398b49c0f24SNicolas Pitre	.endm
399b49c0f24SNicolas Pitre
4001da177e4SLinus Torvalds	.align	5
4011da177e4SLinus Torvalds__dabt_usr:
402ccea7a19SRussell King	usr_entry
403b49c0f24SNicolas Pitre	kuser_cmpxchg_check
4041da177e4SLinus Torvalds
4051da177e4SLinus Torvalds	@
4061da177e4SLinus Torvalds	@ Call the processor-specific abort handler:
4071da177e4SLinus Torvalds	@
4081da177e4SLinus Torvalds	@  r2 - aborted context pc
4091da177e4SLinus Torvalds	@  r3 - aborted context cpsr
4101da177e4SLinus Torvalds	@
4111da177e4SLinus Torvalds	@ The abort handler must return the aborted address in r0, and
4121da177e4SLinus Torvalds	@ the fault status register in r1.
4131da177e4SLinus Torvalds	@
414*48d7927bSPaul Brook#ifdef MULTI_DABORT
4151da177e4SLinus Torvalds	ldr	r4, .LCprocfns
4161da177e4SLinus Torvalds	mov	lr, pc
417*48d7927bSPaul Brook	ldr	pc, [r4, #PROCESSOR_DABT_FUNC]
4181da177e4SLinus Torvalds#else
419*48d7927bSPaul Brook	bl	CPU_DABORT_HANDLER
4201da177e4SLinus Torvalds#endif
4211da177e4SLinus Torvalds
4221da177e4SLinus Torvalds	@
4231da177e4SLinus Torvalds	@ IRQs on, then call the main handler
4241da177e4SLinus Torvalds	@
4251ec42c0cSRussell King	enable_irq
4261da177e4SLinus Torvalds	mov	r2, sp
4271da177e4SLinus Torvalds	adr	lr, ret_from_exception
4281da177e4SLinus Torvalds	b	do_DataAbort
4291da177e4SLinus Torvalds
4301da177e4SLinus Torvalds	.align	5
4311da177e4SLinus Torvalds__irq_usr:
432ccea7a19SRussell King	usr_entry
433b49c0f24SNicolas Pitre	kuser_cmpxchg_check
4341da177e4SLinus Torvalds
4357ad1bcb2SRussell King#ifdef CONFIG_TRACE_IRQFLAGS
4367ad1bcb2SRussell King	bl	trace_hardirqs_off
4377ad1bcb2SRussell King#endif
4381da177e4SLinus Torvalds	get_thread_info tsk
4391da177e4SLinus Torvalds#ifdef CONFIG_PREEMPT
440706fdd9fSRussell King	ldr	r8, [tsk, #TI_PREEMPT]		@ get preempt count
441706fdd9fSRussell King	add	r7, r8, #1			@ increment it
442706fdd9fSRussell King	str	r7, [tsk, #TI_PREEMPT]
4431da177e4SLinus Torvalds#endif
444ccea7a19SRussell King
445187a51adSRussell King	irq_handler
4461da177e4SLinus Torvalds#ifdef CONFIG_PREEMPT
447706fdd9fSRussell King	ldr	r0, [tsk, #TI_PREEMPT]
448706fdd9fSRussell King	str	r8, [tsk, #TI_PREEMPT]
4491da177e4SLinus Torvalds	teq	r0, r7
4501da177e4SLinus Torvalds	strne	r0, [r0, -r0]
4511da177e4SLinus Torvalds#endif
4527ad1bcb2SRussell King#ifdef CONFIG_TRACE_IRQFLAGS
4537ad1bcb2SRussell King	bl	trace_hardirqs_on
4547ad1bcb2SRussell King#endif
455ccea7a19SRussell King
4561da177e4SLinus Torvalds	mov	why, #0
4571da177e4SLinus Torvalds	b	ret_to_user
4581da177e4SLinus Torvalds
4591da177e4SLinus Torvalds	.ltorg
4601da177e4SLinus Torvalds
4611da177e4SLinus Torvalds	.align	5
4621da177e4SLinus Torvalds__und_usr:
463ccea7a19SRussell King	usr_entry
4641da177e4SLinus Torvalds
4651da177e4SLinus Torvalds	tst	r3, #PSR_T_BIT			@ Thumb mode?
466db6ccbb6SRussell King	bne	__und_usr_unknown		@ ignore FP
4671da177e4SLinus Torvalds	sub	r4, r2, #4
4681da177e4SLinus Torvalds
4691da177e4SLinus Torvalds	@
4701da177e4SLinus Torvalds	@ fall through to the emulation code, which returns using r9 if
4711da177e4SLinus Torvalds	@ it has emulated the instruction, or the more conventional lr
4721da177e4SLinus Torvalds	@ if we are to treat this as a real undefined instruction
4731da177e4SLinus Torvalds	@
4741da177e4SLinus Torvalds	@  r0 - instruction
4751da177e4SLinus Torvalds	@
4761da177e4SLinus Torvalds	adr	r9, ret_from_exception
477db6ccbb6SRussell King	adr	lr, __und_usr_unknown
478d28a170dSNicolas Pitre1:	ldrt	r0, [r4]
4791da177e4SLinus Torvalds	@
4801da177e4SLinus Torvalds	@ fallthrough to call_fpe
4811da177e4SLinus Torvalds	@
4821da177e4SLinus Torvalds
4831da177e4SLinus Torvalds/*
4841da177e4SLinus Torvalds * The out of line fixup for the ldrt above.
4851da177e4SLinus Torvalds */
4861da177e4SLinus Torvalds	.section .fixup, "ax"
4871da177e4SLinus Torvalds2:	mov	pc, r9
4881da177e4SLinus Torvalds	.previous
4891da177e4SLinus Torvalds	.section __ex_table,"a"
4901da177e4SLinus Torvalds	.long	1b, 2b
4911da177e4SLinus Torvalds	.previous
4921da177e4SLinus Torvalds
4931da177e4SLinus Torvalds/*
4941da177e4SLinus Torvalds * Check whether the instruction is a co-processor instruction.
4951da177e4SLinus Torvalds * If yes, we need to call the relevant co-processor handler.
4961da177e4SLinus Torvalds *
4971da177e4SLinus Torvalds * Note that we don't do a full check here for the co-processor
4981da177e4SLinus Torvalds * instructions; all instructions with bit 27 set are well
4991da177e4SLinus Torvalds * defined.  The only instructions that should fault are the
5001da177e4SLinus Torvalds * co-processor instructions.  However, we have to watch out
5011da177e4SLinus Torvalds * for the ARM6/ARM7 SWI bug.
5021da177e4SLinus Torvalds *
503b5872db4SCatalin Marinas * NEON is a special case that has to be handled here. Not all
504b5872db4SCatalin Marinas * NEON instructions are co-processor instructions, so we have
505b5872db4SCatalin Marinas * to make a special case of checking for them. Plus, there's
506b5872db4SCatalin Marinas * five groups of them, so we have a table of mask/opcode pairs
507b5872db4SCatalin Marinas * to check against, and if any match then we branch off into the
508b5872db4SCatalin Marinas * NEON handler code.
509b5872db4SCatalin Marinas *
5101da177e4SLinus Torvalds * Emulators may wish to make use of the following registers:
5111da177e4SLinus Torvalds *  r0  = instruction opcode.
5121da177e4SLinus Torvalds *  r2  = PC+4
513db6ccbb6SRussell King *  r9  = normal "successful" return address
5141da177e4SLinus Torvalds *  r10 = this threads thread_info structure.
515db6ccbb6SRussell King *  lr  = unrecognised instruction return address
5161da177e4SLinus Torvalds */
5171da177e4SLinus Torvaldscall_fpe:
518b5872db4SCatalin Marinas#ifdef CONFIG_NEON
519b5872db4SCatalin Marinas	adr	r6, .LCneon_opcodes
520b5872db4SCatalin Marinas2:
521b5872db4SCatalin Marinas	ldr	r7, [r6], #4			@ mask value
522b5872db4SCatalin Marinas	cmp	r7, #0				@ end mask?
523b5872db4SCatalin Marinas	beq	1f
524b5872db4SCatalin Marinas	and	r8, r0, r7
525b5872db4SCatalin Marinas	ldr	r7, [r6], #4			@ opcode bits matching in mask
526b5872db4SCatalin Marinas	cmp	r8, r7				@ NEON instruction?
527b5872db4SCatalin Marinas	bne	2b
528b5872db4SCatalin Marinas	get_thread_info r10
529b5872db4SCatalin Marinas	mov	r7, #1
530b5872db4SCatalin Marinas	strb	r7, [r10, #TI_USED_CP + 10]	@ mark CP#10 as used
531b5872db4SCatalin Marinas	strb	r7, [r10, #TI_USED_CP + 11]	@ mark CP#11 as used
532b5872db4SCatalin Marinas	b	do_vfp				@ let VFP handler handle this
533b5872db4SCatalin Marinas1:
534b5872db4SCatalin Marinas#endif
5351da177e4SLinus Torvalds	tst	r0, #0x08000000			@ only CDP/CPRT/LDC/STC have bit 27
5361da177e4SLinus Torvalds#if defined(CONFIG_CPU_ARM610) || defined(CONFIG_CPU_ARM710)
5371da177e4SLinus Torvalds	and	r8, r0, #0x0f000000		@ mask out op-code bits
5381da177e4SLinus Torvalds	teqne	r8, #0x0f000000			@ SWI (ARM6/7 bug)?
5391da177e4SLinus Torvalds#endif
5401da177e4SLinus Torvalds	moveq	pc, lr
5411da177e4SLinus Torvalds	get_thread_info r10			@ get current thread
5421da177e4SLinus Torvalds	and	r8, r0, #0x00000f00		@ mask out CP number
5431da177e4SLinus Torvalds	mov	r7, #1
5441da177e4SLinus Torvalds	add	r6, r10, #TI_USED_CP
5451da177e4SLinus Torvalds	strb	r7, [r6, r8, lsr #8]		@ set appropriate used_cp[]
5461da177e4SLinus Torvalds#ifdef CONFIG_IWMMXT
5471da177e4SLinus Torvalds	@ Test if we need to give access to iWMMXt coprocessors
5481da177e4SLinus Torvalds	ldr	r5, [r10, #TI_FLAGS]
5491da177e4SLinus Torvalds	rsbs	r7, r8, #(1 << 8)		@ CP 0 or 1 only
5501da177e4SLinus Torvalds	movcss	r7, r5, lsr #(TIF_USING_IWMMXT + 1)
5511da177e4SLinus Torvalds	bcs	iwmmxt_task_enable
5521da177e4SLinus Torvalds#endif
5531da177e4SLinus Torvalds	add	pc, pc, r8, lsr #6
5541da177e4SLinus Torvalds	mov	r0, r0
5551da177e4SLinus Torvalds
5561da177e4SLinus Torvalds	mov	pc, lr				@ CP#0
5571da177e4SLinus Torvalds	b	do_fpe				@ CP#1 (FPE)
5581da177e4SLinus Torvalds	b	do_fpe				@ CP#2 (FPE)
5591da177e4SLinus Torvalds	mov	pc, lr				@ CP#3
560c17fad11SLennert Buytenhek#ifdef CONFIG_CRUNCH
561c17fad11SLennert Buytenhek	b	crunch_task_enable		@ CP#4 (MaverickCrunch)
562c17fad11SLennert Buytenhek	b	crunch_task_enable		@ CP#5 (MaverickCrunch)
563c17fad11SLennert Buytenhek	b	crunch_task_enable		@ CP#6 (MaverickCrunch)
564c17fad11SLennert Buytenhek#else
5651da177e4SLinus Torvalds	mov	pc, lr				@ CP#4
5661da177e4SLinus Torvalds	mov	pc, lr				@ CP#5
5671da177e4SLinus Torvalds	mov	pc, lr				@ CP#6
568c17fad11SLennert Buytenhek#endif
5691da177e4SLinus Torvalds	mov	pc, lr				@ CP#7
5701da177e4SLinus Torvalds	mov	pc, lr				@ CP#8
5711da177e4SLinus Torvalds	mov	pc, lr				@ CP#9
5721da177e4SLinus Torvalds#ifdef CONFIG_VFP
5731da177e4SLinus Torvalds	b	do_vfp				@ CP#10 (VFP)
5741da177e4SLinus Torvalds	b	do_vfp				@ CP#11 (VFP)
5751da177e4SLinus Torvalds#else
5761da177e4SLinus Torvalds	mov	pc, lr				@ CP#10 (VFP)
5771da177e4SLinus Torvalds	mov	pc, lr				@ CP#11 (VFP)
5781da177e4SLinus Torvalds#endif
5791da177e4SLinus Torvalds	mov	pc, lr				@ CP#12
5801da177e4SLinus Torvalds	mov	pc, lr				@ CP#13
5811da177e4SLinus Torvalds	mov	pc, lr				@ CP#14 (Debug)
5821da177e4SLinus Torvalds	mov	pc, lr				@ CP#15 (Control)
5831da177e4SLinus Torvalds
584b5872db4SCatalin Marinas#ifdef CONFIG_NEON
585b5872db4SCatalin Marinas	.align	6
586b5872db4SCatalin Marinas
587b5872db4SCatalin Marinas.LCneon_opcodes:
588b5872db4SCatalin Marinas	.word	0xfe000000			@ mask
589b5872db4SCatalin Marinas	.word	0xf2000000			@ opcode
590b5872db4SCatalin Marinas
591b5872db4SCatalin Marinas	.word	0xff100000			@ mask
592b5872db4SCatalin Marinas	.word	0xf4000000			@ opcode
593b5872db4SCatalin Marinas
594b5872db4SCatalin Marinas	.word	0x00000000			@ mask
595b5872db4SCatalin Marinas	.word	0x00000000			@ opcode
596b5872db4SCatalin Marinas#endif
597b5872db4SCatalin Marinas
5981da177e4SLinus Torvaldsdo_fpe:
5995d25ac03SRussell King	enable_irq
6001da177e4SLinus Torvalds	ldr	r4, .LCfp
6011da177e4SLinus Torvalds	add	r10, r10, #TI_FPSTATE		@ r10 = workspace
6021da177e4SLinus Torvalds	ldr	pc, [r4]			@ Call FP module USR entry point
6031da177e4SLinus Torvalds
6041da177e4SLinus Torvalds/*
6051da177e4SLinus Torvalds * The FP module is called with these registers set:
6061da177e4SLinus Torvalds *  r0  = instruction
6071da177e4SLinus Torvalds *  r2  = PC+4
6081da177e4SLinus Torvalds *  r9  = normal "successful" return address
6091da177e4SLinus Torvalds *  r10 = FP workspace
6101da177e4SLinus Torvalds *  lr  = unrecognised FP instruction return address
6111da177e4SLinus Torvalds */
6121da177e4SLinus Torvalds
6131da177e4SLinus Torvalds	.data
6141da177e4SLinus TorvaldsENTRY(fp_enter)
615db6ccbb6SRussell King	.word	no_fp
616785d3cd2SNicolas Pitre	.previous
6171da177e4SLinus Torvalds
618db6ccbb6SRussell Kingno_fp:	mov	pc, lr
619db6ccbb6SRussell King
620db6ccbb6SRussell King__und_usr_unknown:
6211da177e4SLinus Torvalds	mov	r0, sp
6221da177e4SLinus Torvalds	adr	lr, ret_from_exception
6231da177e4SLinus Torvalds	b	do_undefinstr
6241da177e4SLinus Torvalds
6251da177e4SLinus Torvalds	.align	5
6261da177e4SLinus Torvalds__pabt_usr:
627ccea7a19SRussell King	usr_entry
6281da177e4SLinus Torvalds
629*48d7927bSPaul Brook#ifdef MULTI_PABORT
630*48d7927bSPaul Brook	mov	r0, r2			@ pass address of aborted instruction.
631*48d7927bSPaul Brook	ldr	r4, .LCprocfns
632*48d7927bSPaul Brook	mov	lr, pc
633*48d7927bSPaul Brook	ldr	pc, [r4, #PROCESSOR_PABT_FUNC]
634*48d7927bSPaul Brook#else
635*48d7927bSPaul Brook	CPU_PABORT_HANDLER(r0, r2)
636*48d7927bSPaul Brook#endif
6371ec42c0cSRussell King	enable_irq				@ Enable interrupts
6381da177e4SLinus Torvalds	mov	r1, sp				@ regs
6391da177e4SLinus Torvalds	bl	do_PrefetchAbort		@ call abort handler
6401da177e4SLinus Torvalds	/* fall through */
6411da177e4SLinus Torvalds/*
6421da177e4SLinus Torvalds * This is the return code to user mode for abort handlers
6431da177e4SLinus Torvalds */
6441da177e4SLinus TorvaldsENTRY(ret_from_exception)
6451da177e4SLinus Torvalds	get_thread_info tsk
6461da177e4SLinus Torvalds	mov	why, #0
6471da177e4SLinus Torvalds	b	ret_to_user
6481da177e4SLinus Torvalds
6491da177e4SLinus Torvalds/*
6501da177e4SLinus Torvalds * Register switch for ARMv3 and ARMv4 processors
6511da177e4SLinus Torvalds * r0 = previous task_struct, r1 = previous thread_info, r2 = next thread_info
6521da177e4SLinus Torvalds * previous and next are guaranteed not to be the same.
6531da177e4SLinus Torvalds */
6541da177e4SLinus TorvaldsENTRY(__switch_to)
6551da177e4SLinus Torvalds	add	ip, r1, #TI_CPU_SAVE
6561da177e4SLinus Torvalds	ldr	r3, [r2, #TI_TP_VALUE]
6571da177e4SLinus Torvalds	stmia	ip!, {r4 - sl, fp, sp, lr}	@ Store most regs on stack
658d6551e88SRussell King#ifdef CONFIG_MMU
659d6551e88SRussell King	ldr	r6, [r2, #TI_CPU_DOMAIN]
660afeb90caSHyok S. Choi#endif
661b876386eSRussell King#if __LINUX_ARM_ARCH__ >= 6
66243cc1981SRussell King#ifdef CONFIG_CPU_32v6K
663b876386eSRussell King	clrex
664b876386eSRussell King#else
66573394322SRussell King	strex	r5, r4, [ip]			@ Clear exclusive monitor
666b876386eSRussell King#endif
667b876386eSRussell King#endif
6684b0e07a5SNicolas Pitre#if defined(CONFIG_HAS_TLS_REG)
6692d2669b6SNicolas Pitre	mcr	p15, 0, r3, c13, c0, 3		@ set TLS register
6704b0e07a5SNicolas Pitre#elif !defined(CONFIG_TLS_REG_EMUL)
6711da177e4SLinus Torvalds	mov	r4, #0xffff0fff
6722d2669b6SNicolas Pitre	str	r3, [r4, #-15]			@ TLS val at 0xffff0ff0
6732d2669b6SNicolas Pitre#endif
674afeb90caSHyok S. Choi#ifdef CONFIG_MMU
6751da177e4SLinus Torvalds	mcr	p15, 0, r6, c3, c0, 0		@ Set domain register
676afeb90caSHyok S. Choi#endif
677d6551e88SRussell King	mov	r5, r0
678d6551e88SRussell King	add	r4, r2, #TI_CPU_SAVE
679d6551e88SRussell King	ldr	r0, =thread_notify_head
680d6551e88SRussell King	mov	r1, #THREAD_NOTIFY_SWITCH
681d6551e88SRussell King	bl	atomic_notifier_call_chain
682d6551e88SRussell King	mov	r0, r5
683d6551e88SRussell King	ldmia	r4, {r4 - sl, fp, sp, pc}	@ Load all regs saved previously
6841da177e4SLinus Torvalds
6851da177e4SLinus Torvalds	__INIT
6862d2669b6SNicolas Pitre
6872d2669b6SNicolas Pitre/*
6882d2669b6SNicolas Pitre * User helpers.
6892d2669b6SNicolas Pitre *
6902d2669b6SNicolas Pitre * These are segment of kernel provided user code reachable from user space
6912d2669b6SNicolas Pitre * at a fixed address in kernel memory.  This is used to provide user space
6922d2669b6SNicolas Pitre * with some operations which require kernel help because of unimplemented
6932d2669b6SNicolas Pitre * native feature and/or instructions in many ARM CPUs. The idea is for
6942d2669b6SNicolas Pitre * this code to be executed directly in user mode for best efficiency but
6952d2669b6SNicolas Pitre * which is too intimate with the kernel counter part to be left to user
6962d2669b6SNicolas Pitre * libraries.  In fact this code might even differ from one CPU to another
6972d2669b6SNicolas Pitre * depending on the available  instruction set and restrictions like on
6982d2669b6SNicolas Pitre * SMP systems.  In other words, the kernel reserves the right to change
6992d2669b6SNicolas Pitre * this code as needed without warning. Only the entry points and their
7002d2669b6SNicolas Pitre * results are guaranteed to be stable.
7012d2669b6SNicolas Pitre *
7022d2669b6SNicolas Pitre * Each segment is 32-byte aligned and will be moved to the top of the high
7032d2669b6SNicolas Pitre * vector page.  New segments (if ever needed) must be added in front of
7042d2669b6SNicolas Pitre * existing ones.  This mechanism should be used only for things that are
7052d2669b6SNicolas Pitre * really small and justified, and not be abused freely.
7062d2669b6SNicolas Pitre *
7072d2669b6SNicolas Pitre * User space is expected to implement those things inline when optimizing
7082d2669b6SNicolas Pitre * for a processor that has the necessary native support, but only if such
7092d2669b6SNicolas Pitre * resulting binaries are already to be incompatible with earlier ARM
7102d2669b6SNicolas Pitre * processors due to the use of unsupported instructions other than what
7112d2669b6SNicolas Pitre * is provided here.  In other words don't make binaries unable to run on
7122d2669b6SNicolas Pitre * earlier processors just for the sake of not using these kernel helpers
7132d2669b6SNicolas Pitre * if your compiled code is not going to use the new instructions for other
7142d2669b6SNicolas Pitre * purpose.
7152d2669b6SNicolas Pitre */
7162d2669b6SNicolas Pitre
717ba9b5d76SNicolas Pitre	.macro	usr_ret, reg
718ba9b5d76SNicolas Pitre#ifdef CONFIG_ARM_THUMB
719ba9b5d76SNicolas Pitre	bx	\reg
720ba9b5d76SNicolas Pitre#else
721ba9b5d76SNicolas Pitre	mov	pc, \reg
722ba9b5d76SNicolas Pitre#endif
723ba9b5d76SNicolas Pitre	.endm
724ba9b5d76SNicolas Pitre
7252d2669b6SNicolas Pitre	.align	5
7262d2669b6SNicolas Pitre	.globl	__kuser_helper_start
7272d2669b6SNicolas Pitre__kuser_helper_start:
7282d2669b6SNicolas Pitre
7292d2669b6SNicolas Pitre/*
7302d2669b6SNicolas Pitre * Reference prototype:
7312d2669b6SNicolas Pitre *
7327c612bfdSNicolas Pitre *	void __kernel_memory_barrier(void)
7337c612bfdSNicolas Pitre *
7347c612bfdSNicolas Pitre * Input:
7357c612bfdSNicolas Pitre *
7367c612bfdSNicolas Pitre *	lr = return address
7377c612bfdSNicolas Pitre *
7387c612bfdSNicolas Pitre * Output:
7397c612bfdSNicolas Pitre *
7407c612bfdSNicolas Pitre *	none
7417c612bfdSNicolas Pitre *
7427c612bfdSNicolas Pitre * Clobbered:
7437c612bfdSNicolas Pitre *
744b49c0f24SNicolas Pitre *	none
7457c612bfdSNicolas Pitre *
7467c612bfdSNicolas Pitre * Definition and user space usage example:
7477c612bfdSNicolas Pitre *
7487c612bfdSNicolas Pitre *	typedef void (__kernel_dmb_t)(void);
7497c612bfdSNicolas Pitre *	#define __kernel_dmb (*(__kernel_dmb_t *)0xffff0fa0)
7507c612bfdSNicolas Pitre *
7517c612bfdSNicolas Pitre * Apply any needed memory barrier to preserve consistency with data modified
7527c612bfdSNicolas Pitre * manually and __kuser_cmpxchg usage.
7537c612bfdSNicolas Pitre *
7547c612bfdSNicolas Pitre * This could be used as follows:
7557c612bfdSNicolas Pitre *
7567c612bfdSNicolas Pitre * #define __kernel_dmb() \
7577c612bfdSNicolas Pitre *         asm volatile ( "mov r0, #0xffff0fff; mov lr, pc; sub pc, r0, #95" \
7586896eec0SPaul Brook *	        : : : "r0", "lr","cc" )
7597c612bfdSNicolas Pitre */
7607c612bfdSNicolas Pitre
7617c612bfdSNicolas Pitre__kuser_memory_barrier:				@ 0xffff0fa0
7627c612bfdSNicolas Pitre
7637c612bfdSNicolas Pitre#if __LINUX_ARM_ARCH__ >= 6 && defined(CONFIG_SMP)
7647c612bfdSNicolas Pitre	mcr	p15, 0, r0, c7, c10, 5	@ dmb
7657c612bfdSNicolas Pitre#endif
766ba9b5d76SNicolas Pitre	usr_ret	lr
7677c612bfdSNicolas Pitre
7687c612bfdSNicolas Pitre	.align	5
7697c612bfdSNicolas Pitre
7707c612bfdSNicolas Pitre/*
7717c612bfdSNicolas Pitre * Reference prototype:
7727c612bfdSNicolas Pitre *
7732d2669b6SNicolas Pitre *	int __kernel_cmpxchg(int oldval, int newval, int *ptr)
7742d2669b6SNicolas Pitre *
7752d2669b6SNicolas Pitre * Input:
7762d2669b6SNicolas Pitre *
7772d2669b6SNicolas Pitre *	r0 = oldval
7782d2669b6SNicolas Pitre *	r1 = newval
7792d2669b6SNicolas Pitre *	r2 = ptr
7802d2669b6SNicolas Pitre *	lr = return address
7812d2669b6SNicolas Pitre *
7822d2669b6SNicolas Pitre * Output:
7832d2669b6SNicolas Pitre *
7842d2669b6SNicolas Pitre *	r0 = returned value (zero or non-zero)
7852d2669b6SNicolas Pitre *	C flag = set if r0 == 0, clear if r0 != 0
7862d2669b6SNicolas Pitre *
7872d2669b6SNicolas Pitre * Clobbered:
7882d2669b6SNicolas Pitre *
7892d2669b6SNicolas Pitre *	r3, ip, flags
7902d2669b6SNicolas Pitre *
7912d2669b6SNicolas Pitre * Definition and user space usage example:
7922d2669b6SNicolas Pitre *
7932d2669b6SNicolas Pitre *	typedef int (__kernel_cmpxchg_t)(int oldval, int newval, int *ptr);
7942d2669b6SNicolas Pitre *	#define __kernel_cmpxchg (*(__kernel_cmpxchg_t *)0xffff0fc0)
7952d2669b6SNicolas Pitre *
7962d2669b6SNicolas Pitre * Atomically store newval in *ptr if *ptr is equal to oldval for user space.
7972d2669b6SNicolas Pitre * Return zero if *ptr was changed or non-zero if no exchange happened.
7982d2669b6SNicolas Pitre * The C flag is also set if *ptr was changed to allow for assembly
7992d2669b6SNicolas Pitre * optimization in the calling code.
8002d2669b6SNicolas Pitre *
8015964eae8SNicolas Pitre * Notes:
8025964eae8SNicolas Pitre *
8035964eae8SNicolas Pitre *    - This routine already includes memory barriers as needed.
8045964eae8SNicolas Pitre *
8052d2669b6SNicolas Pitre * For example, a user space atomic_add implementation could look like this:
8062d2669b6SNicolas Pitre *
8072d2669b6SNicolas Pitre * #define atomic_add(ptr, val) \
8082d2669b6SNicolas Pitre *	({ register unsigned int *__ptr asm("r2") = (ptr); \
8092d2669b6SNicolas Pitre *	   register unsigned int __result asm("r1"); \
8102d2669b6SNicolas Pitre *	   asm volatile ( \
8112d2669b6SNicolas Pitre *	       "1: @ atomic_add\n\t" \
8122d2669b6SNicolas Pitre *	       "ldr	r0, [r2]\n\t" \
8132d2669b6SNicolas Pitre *	       "mov	r3, #0xffff0fff\n\t" \
8142d2669b6SNicolas Pitre *	       "add	lr, pc, #4\n\t" \
8152d2669b6SNicolas Pitre *	       "add	r1, r0, %2\n\t" \
8162d2669b6SNicolas Pitre *	       "add	pc, r3, #(0xffff0fc0 - 0xffff0fff)\n\t" \
8172d2669b6SNicolas Pitre *	       "bcc	1b" \
8182d2669b6SNicolas Pitre *	       : "=&r" (__result) \
8192d2669b6SNicolas Pitre *	       : "r" (__ptr), "rIL" (val) \
8202d2669b6SNicolas Pitre *	       : "r0","r3","ip","lr","cc","memory" ); \
8212d2669b6SNicolas Pitre *	   __result; })
8222d2669b6SNicolas Pitre */
8232d2669b6SNicolas Pitre
8242d2669b6SNicolas Pitre__kuser_cmpxchg:				@ 0xffff0fc0
8252d2669b6SNicolas Pitre
826dcef1f63SNicolas Pitre#if defined(CONFIG_NEEDS_SYSCALL_FOR_CMPXCHG)
8272d2669b6SNicolas Pitre
828dcef1f63SNicolas Pitre	/*
829dcef1f63SNicolas Pitre	 * Poor you.  No fast solution possible...
830dcef1f63SNicolas Pitre	 * The kernel itself must perform the operation.
831dcef1f63SNicolas Pitre	 * A special ghost syscall is used for that (see traps.c).
832dcef1f63SNicolas Pitre	 */
8335e097445SNicolas Pitre	stmfd	sp!, {r7, lr}
8345e097445SNicolas Pitre	mov	r7, #0xff00		@ 0xfff0 into r7 for EABI
8355e097445SNicolas Pitre	orr	r7, r7, #0xf0
836dcef1f63SNicolas Pitre	swi	#0x9ffff0
8375e097445SNicolas Pitre	ldmfd	sp!, {r7, pc}
838dcef1f63SNicolas Pitre
839dcef1f63SNicolas Pitre#elif __LINUX_ARM_ARCH__ < 6
8402d2669b6SNicolas Pitre
84149bca4c2SNicolas Pitre#ifdef CONFIG_MMU
842b49c0f24SNicolas Pitre
843b49c0f24SNicolas Pitre	/*
844b49c0f24SNicolas Pitre	 * The only thing that can break atomicity in this cmpxchg
845b49c0f24SNicolas Pitre	 * implementation is either an IRQ or a data abort exception
846b49c0f24SNicolas Pitre	 * causing another process/thread to be scheduled in the middle
847b49c0f24SNicolas Pitre	 * of the critical sequence.  To prevent this, code is added to
848b49c0f24SNicolas Pitre	 * the IRQ and data abort exception handlers to set the pc back
849b49c0f24SNicolas Pitre	 * to the beginning of the critical section if it is found to be
850b49c0f24SNicolas Pitre	 * within that critical section (see kuser_cmpxchg_fixup).
851b49c0f24SNicolas Pitre	 */
852b49c0f24SNicolas Pitre1:	ldr	r3, [r2]			@ load current val
853b49c0f24SNicolas Pitre	subs	r3, r3, r0			@ compare with oldval
854b49c0f24SNicolas Pitre2:	streq	r1, [r2]			@ store newval if eq
855b49c0f24SNicolas Pitre	rsbs	r0, r3, #0			@ set return val and C flag
856b49c0f24SNicolas Pitre	usr_ret	lr
857b49c0f24SNicolas Pitre
858b49c0f24SNicolas Pitre	.text
859b49c0f24SNicolas Pitrekuser_cmpxchg_fixup:
860b49c0f24SNicolas Pitre	@ Called from kuser_cmpxchg_check macro.
861b49c0f24SNicolas Pitre	@ r2 = address of interrupted insn (must be preserved).
862b49c0f24SNicolas Pitre	@ sp = saved regs. r7 and r8 are clobbered.
863b49c0f24SNicolas Pitre	@ 1b = first critical insn, 2b = last critical insn.
864b49c0f24SNicolas Pitre	@ If r2 >= 1b and r2 <= 2b then saved pc_usr is set to 1b.
865b49c0f24SNicolas Pitre	mov	r7, #0xffff0fff
866b49c0f24SNicolas Pitre	sub	r7, r7, #(0xffff0fff - (0xffff0fc0 + (1b - __kuser_cmpxchg)))
867b49c0f24SNicolas Pitre	subs	r8, r2, r7
868b49c0f24SNicolas Pitre	rsbcss	r8, r8, #(2b - 1b)
869b49c0f24SNicolas Pitre	strcs	r7, [sp, #S_PC]
870b49c0f24SNicolas Pitre	mov	pc, lr
871b49c0f24SNicolas Pitre	.previous
872b49c0f24SNicolas Pitre
87349bca4c2SNicolas Pitre#else
87449bca4c2SNicolas Pitre#warning "NPTL on non MMU needs fixing"
87549bca4c2SNicolas Pitre	mov	r0, #-1
87649bca4c2SNicolas Pitre	adds	r0, r0, #0
877ba9b5d76SNicolas Pitre	usr_ret	lr
878b49c0f24SNicolas Pitre#endif
8792d2669b6SNicolas Pitre
8802d2669b6SNicolas Pitre#else
8812d2669b6SNicolas Pitre
8827c612bfdSNicolas Pitre#ifdef CONFIG_SMP
8837c612bfdSNicolas Pitre	mcr	p15, 0, r0, c7, c10, 5	@ dmb
8847c612bfdSNicolas Pitre#endif
885b49c0f24SNicolas Pitre1:	ldrex	r3, [r2]
8862d2669b6SNicolas Pitre	subs	r3, r3, r0
8872d2669b6SNicolas Pitre	strexeq	r3, r1, [r2]
888b49c0f24SNicolas Pitre	teqeq	r3, #1
889b49c0f24SNicolas Pitre	beq	1b
8902d2669b6SNicolas Pitre	rsbs	r0, r3, #0
891b49c0f24SNicolas Pitre	/* beware -- each __kuser slot must be 8 instructions max */
8927c612bfdSNicolas Pitre#ifdef CONFIG_SMP
893b49c0f24SNicolas Pitre	b	__kuser_memory_barrier
894b49c0f24SNicolas Pitre#else
895ba9b5d76SNicolas Pitre	usr_ret	lr
896b49c0f24SNicolas Pitre#endif
8972d2669b6SNicolas Pitre
8982d2669b6SNicolas Pitre#endif
8992d2669b6SNicolas Pitre
9002d2669b6SNicolas Pitre	.align	5
9012d2669b6SNicolas Pitre
9022d2669b6SNicolas Pitre/*
9032d2669b6SNicolas Pitre * Reference prototype:
9042d2669b6SNicolas Pitre *
9052d2669b6SNicolas Pitre *	int __kernel_get_tls(void)
9062d2669b6SNicolas Pitre *
9072d2669b6SNicolas Pitre * Input:
9082d2669b6SNicolas Pitre *
9092d2669b6SNicolas Pitre *	lr = return address
9102d2669b6SNicolas Pitre *
9112d2669b6SNicolas Pitre * Output:
9122d2669b6SNicolas Pitre *
9132d2669b6SNicolas Pitre *	r0 = TLS value
9142d2669b6SNicolas Pitre *
9152d2669b6SNicolas Pitre * Clobbered:
9162d2669b6SNicolas Pitre *
917b49c0f24SNicolas Pitre *	none
9182d2669b6SNicolas Pitre *
9192d2669b6SNicolas Pitre * Definition and user space usage example:
9202d2669b6SNicolas Pitre *
9212d2669b6SNicolas Pitre *	typedef int (__kernel_get_tls_t)(void);
9222d2669b6SNicolas Pitre *	#define __kernel_get_tls (*(__kernel_get_tls_t *)0xffff0fe0)
9232d2669b6SNicolas Pitre *
9242d2669b6SNicolas Pitre * Get the TLS value as previously set via the __ARM_NR_set_tls syscall.
9252d2669b6SNicolas Pitre *
9262d2669b6SNicolas Pitre * This could be used as follows:
9272d2669b6SNicolas Pitre *
9282d2669b6SNicolas Pitre * #define __kernel_get_tls() \
9292d2669b6SNicolas Pitre *	({ register unsigned int __val asm("r0"); \
9302d2669b6SNicolas Pitre *         asm( "mov r0, #0xffff0fff; mov lr, pc; sub pc, r0, #31" \
9312d2669b6SNicolas Pitre *	        : "=r" (__val) : : "lr","cc" ); \
9322d2669b6SNicolas Pitre *	   __val; })
9332d2669b6SNicolas Pitre */
9342d2669b6SNicolas Pitre
9352d2669b6SNicolas Pitre__kuser_get_tls:				@ 0xffff0fe0
9362d2669b6SNicolas Pitre
9374b0e07a5SNicolas Pitre#if !defined(CONFIG_HAS_TLS_REG) && !defined(CONFIG_TLS_REG_EMUL)
9382d2669b6SNicolas Pitre	ldr	r0, [pc, #(16 - 8)]		@ TLS stored at 0xffff0ff0
9392d2669b6SNicolas Pitre#else
9402d2669b6SNicolas Pitre	mrc	p15, 0, r0, c13, c0, 3		@ read TLS register
9412d2669b6SNicolas Pitre#endif
942ba9b5d76SNicolas Pitre	usr_ret	lr
9432d2669b6SNicolas Pitre
9442d2669b6SNicolas Pitre	.rep	5
9452d2669b6SNicolas Pitre	.word	0			@ pad up to __kuser_helper_version
9462d2669b6SNicolas Pitre	.endr
9472d2669b6SNicolas Pitre
9482d2669b6SNicolas Pitre/*
9492d2669b6SNicolas Pitre * Reference declaration:
9502d2669b6SNicolas Pitre *
9512d2669b6SNicolas Pitre *	extern unsigned int __kernel_helper_version;
9522d2669b6SNicolas Pitre *
9532d2669b6SNicolas Pitre * Definition and user space usage example:
9542d2669b6SNicolas Pitre *
9552d2669b6SNicolas Pitre *	#define __kernel_helper_version (*(unsigned int *)0xffff0ffc)
9562d2669b6SNicolas Pitre *
9572d2669b6SNicolas Pitre * User space may read this to determine the curent number of helpers
9582d2669b6SNicolas Pitre * available.
9592d2669b6SNicolas Pitre */
9602d2669b6SNicolas Pitre
9612d2669b6SNicolas Pitre__kuser_helper_version:				@ 0xffff0ffc
9622d2669b6SNicolas Pitre	.word	((__kuser_helper_end - __kuser_helper_start) >> 5)
9632d2669b6SNicolas Pitre
9642d2669b6SNicolas Pitre	.globl	__kuser_helper_end
9652d2669b6SNicolas Pitre__kuser_helper_end:
9662d2669b6SNicolas Pitre
9672d2669b6SNicolas Pitre
9681da177e4SLinus Torvalds/*
9691da177e4SLinus Torvalds * Vector stubs.
9701da177e4SLinus Torvalds *
9717933523dSRussell King * This code is copied to 0xffff0200 so we can use branches in the
9727933523dSRussell King * vectors, rather than ldr's.  Note that this code must not
9737933523dSRussell King * exceed 0x300 bytes.
9741da177e4SLinus Torvalds *
9751da177e4SLinus Torvalds * Common stub entry macro:
9761da177e4SLinus Torvalds *   Enter in IRQ mode, spsr = SVC/USR CPSR, lr = SVC/USR PC
977ccea7a19SRussell King *
978ccea7a19SRussell King * SP points to a minimal amount of processor-private memory, the address
979ccea7a19SRussell King * of which is copied into r0 for the mode specific abort handler.
9801da177e4SLinus Torvalds */
981b7ec4795SNicolas Pitre	.macro	vector_stub, name, mode, correction=0
9821da177e4SLinus Torvalds	.align	5
9831da177e4SLinus Torvalds
9841da177e4SLinus Torvaldsvector_\name:
9851da177e4SLinus Torvalds	.if \correction
9861da177e4SLinus Torvalds	sub	lr, lr, #\correction
9871da177e4SLinus Torvalds	.endif
9881da177e4SLinus Torvalds
989ccea7a19SRussell King	@
990ccea7a19SRussell King	@ Save r0, lr_<exception> (parent PC) and spsr_<exception>
991ccea7a19SRussell King	@ (parent CPSR)
992ccea7a19SRussell King	@
993ccea7a19SRussell King	stmia	sp, {r0, lr}		@ save r0, lr
994ccea7a19SRussell King	mrs	lr, spsr
995ccea7a19SRussell King	str	lr, [sp, #8]		@ save spsr
996ccea7a19SRussell King
997ccea7a19SRussell King	@
998ccea7a19SRussell King	@ Prepare for SVC32 mode.  IRQs remain disabled.
999ccea7a19SRussell King	@
1000ccea7a19SRussell King	mrs	r0, cpsr
1001b7ec4795SNicolas Pitre	eor	r0, r0, #(\mode ^ SVC_MODE)
1002ccea7a19SRussell King	msr	spsr_cxsf, r0
1003ccea7a19SRussell King
1004ccea7a19SRussell King	@
1005ccea7a19SRussell King	@ the branch table must immediately follow this code
1006ccea7a19SRussell King	@
1007ccea7a19SRussell King	and	lr, lr, #0x0f
1008b7ec4795SNicolas Pitre	mov	r0, sp
10091da177e4SLinus Torvalds	ldr	lr, [pc, lr, lsl #2]
1010ccea7a19SRussell King	movs	pc, lr			@ branch to handler in SVC mode
10111da177e4SLinus Torvalds	.endm
10121da177e4SLinus Torvalds
10137933523dSRussell King	.globl	__stubs_start
10141da177e4SLinus Torvalds__stubs_start:
10151da177e4SLinus Torvalds/*
10161da177e4SLinus Torvalds * Interrupt dispatcher
10171da177e4SLinus Torvalds */
1018b7ec4795SNicolas Pitre	vector_stub	irq, IRQ_MODE, 4
10191da177e4SLinus Torvalds
10201da177e4SLinus Torvalds	.long	__irq_usr			@  0  (USR_26 / USR_32)
10211da177e4SLinus Torvalds	.long	__irq_invalid			@  1  (FIQ_26 / FIQ_32)
10221da177e4SLinus Torvalds	.long	__irq_invalid			@  2  (IRQ_26 / IRQ_32)
10231da177e4SLinus Torvalds	.long	__irq_svc			@  3  (SVC_26 / SVC_32)
10241da177e4SLinus Torvalds	.long	__irq_invalid			@  4
10251da177e4SLinus Torvalds	.long	__irq_invalid			@  5
10261da177e4SLinus Torvalds	.long	__irq_invalid			@  6
10271da177e4SLinus Torvalds	.long	__irq_invalid			@  7
10281da177e4SLinus Torvalds	.long	__irq_invalid			@  8
10291da177e4SLinus Torvalds	.long	__irq_invalid			@  9
10301da177e4SLinus Torvalds	.long	__irq_invalid			@  a
10311da177e4SLinus Torvalds	.long	__irq_invalid			@  b
10321da177e4SLinus Torvalds	.long	__irq_invalid			@  c
10331da177e4SLinus Torvalds	.long	__irq_invalid			@  d
10341da177e4SLinus Torvalds	.long	__irq_invalid			@  e
10351da177e4SLinus Torvalds	.long	__irq_invalid			@  f
10361da177e4SLinus Torvalds
10371da177e4SLinus Torvalds/*
10381da177e4SLinus Torvalds * Data abort dispatcher
10391da177e4SLinus Torvalds * Enter in ABT mode, spsr = USR CPSR, lr = USR PC
10401da177e4SLinus Torvalds */
1041b7ec4795SNicolas Pitre	vector_stub	dabt, ABT_MODE, 8
10421da177e4SLinus Torvalds
10431da177e4SLinus Torvalds	.long	__dabt_usr			@  0  (USR_26 / USR_32)
10441da177e4SLinus Torvalds	.long	__dabt_invalid			@  1  (FIQ_26 / FIQ_32)
10451da177e4SLinus Torvalds	.long	__dabt_invalid			@  2  (IRQ_26 / IRQ_32)
10461da177e4SLinus Torvalds	.long	__dabt_svc			@  3  (SVC_26 / SVC_32)
10471da177e4SLinus Torvalds	.long	__dabt_invalid			@  4
10481da177e4SLinus Torvalds	.long	__dabt_invalid			@  5
10491da177e4SLinus Torvalds	.long	__dabt_invalid			@  6
10501da177e4SLinus Torvalds	.long	__dabt_invalid			@  7
10511da177e4SLinus Torvalds	.long	__dabt_invalid			@  8
10521da177e4SLinus Torvalds	.long	__dabt_invalid			@  9
10531da177e4SLinus Torvalds	.long	__dabt_invalid			@  a
10541da177e4SLinus Torvalds	.long	__dabt_invalid			@  b
10551da177e4SLinus Torvalds	.long	__dabt_invalid			@  c
10561da177e4SLinus Torvalds	.long	__dabt_invalid			@  d
10571da177e4SLinus Torvalds	.long	__dabt_invalid			@  e
10581da177e4SLinus Torvalds	.long	__dabt_invalid			@  f
10591da177e4SLinus Torvalds
10601da177e4SLinus Torvalds/*
10611da177e4SLinus Torvalds * Prefetch abort dispatcher
10621da177e4SLinus Torvalds * Enter in ABT mode, spsr = USR CPSR, lr = USR PC
10631da177e4SLinus Torvalds */
1064b7ec4795SNicolas Pitre	vector_stub	pabt, ABT_MODE, 4
10651da177e4SLinus Torvalds
10661da177e4SLinus Torvalds	.long	__pabt_usr			@  0 (USR_26 / USR_32)
10671da177e4SLinus Torvalds	.long	__pabt_invalid			@  1 (FIQ_26 / FIQ_32)
10681da177e4SLinus Torvalds	.long	__pabt_invalid			@  2 (IRQ_26 / IRQ_32)
10691da177e4SLinus Torvalds	.long	__pabt_svc			@  3 (SVC_26 / SVC_32)
10701da177e4SLinus Torvalds	.long	__pabt_invalid			@  4
10711da177e4SLinus Torvalds	.long	__pabt_invalid			@  5
10721da177e4SLinus Torvalds	.long	__pabt_invalid			@  6
10731da177e4SLinus Torvalds	.long	__pabt_invalid			@  7
10741da177e4SLinus Torvalds	.long	__pabt_invalid			@  8
10751da177e4SLinus Torvalds	.long	__pabt_invalid			@  9
10761da177e4SLinus Torvalds	.long	__pabt_invalid			@  a
10771da177e4SLinus Torvalds	.long	__pabt_invalid			@  b
10781da177e4SLinus Torvalds	.long	__pabt_invalid			@  c
10791da177e4SLinus Torvalds	.long	__pabt_invalid			@  d
10801da177e4SLinus Torvalds	.long	__pabt_invalid			@  e
10811da177e4SLinus Torvalds	.long	__pabt_invalid			@  f
10821da177e4SLinus Torvalds
10831da177e4SLinus Torvalds/*
10841da177e4SLinus Torvalds * Undef instr entry dispatcher
10851da177e4SLinus Torvalds * Enter in UND mode, spsr = SVC/USR CPSR, lr = SVC/USR PC
10861da177e4SLinus Torvalds */
1087b7ec4795SNicolas Pitre	vector_stub	und, UND_MODE
10881da177e4SLinus Torvalds
10891da177e4SLinus Torvalds	.long	__und_usr			@  0 (USR_26 / USR_32)
10901da177e4SLinus Torvalds	.long	__und_invalid			@  1 (FIQ_26 / FIQ_32)
10911da177e4SLinus Torvalds	.long	__und_invalid			@  2 (IRQ_26 / IRQ_32)
10921da177e4SLinus Torvalds	.long	__und_svc			@  3 (SVC_26 / SVC_32)
10931da177e4SLinus Torvalds	.long	__und_invalid			@  4
10941da177e4SLinus Torvalds	.long	__und_invalid			@  5
10951da177e4SLinus Torvalds	.long	__und_invalid			@  6
10961da177e4SLinus Torvalds	.long	__und_invalid			@  7
10971da177e4SLinus Torvalds	.long	__und_invalid			@  8
10981da177e4SLinus Torvalds	.long	__und_invalid			@  9
10991da177e4SLinus Torvalds	.long	__und_invalid			@  a
11001da177e4SLinus Torvalds	.long	__und_invalid			@  b
11011da177e4SLinus Torvalds	.long	__und_invalid			@  c
11021da177e4SLinus Torvalds	.long	__und_invalid			@  d
11031da177e4SLinus Torvalds	.long	__und_invalid			@  e
11041da177e4SLinus Torvalds	.long	__und_invalid			@  f
11051da177e4SLinus Torvalds
11061da177e4SLinus Torvalds	.align	5
11071da177e4SLinus Torvalds
11081da177e4SLinus Torvalds/*=============================================================================
11091da177e4SLinus Torvalds * Undefined FIQs
11101da177e4SLinus Torvalds *-----------------------------------------------------------------------------
11111da177e4SLinus Torvalds * Enter in FIQ mode, spsr = ANY CPSR, lr = ANY PC
11121da177e4SLinus Torvalds * MUST PRESERVE SVC SPSR, but need to switch to SVC mode to show our msg.
11131da177e4SLinus Torvalds * Basically to switch modes, we *HAVE* to clobber one register...  brain
11141da177e4SLinus Torvalds * damage alert!  I don't think that we can execute any code in here in any
11151da177e4SLinus Torvalds * other mode than FIQ...  Ok you can switch to another mode, but you can't
11161da177e4SLinus Torvalds * get out of that mode without clobbering one register.
11171da177e4SLinus Torvalds */
11181da177e4SLinus Torvaldsvector_fiq:
11191da177e4SLinus Torvalds	disable_fiq
11201da177e4SLinus Torvalds	subs	pc, lr, #4
11211da177e4SLinus Torvalds
11221da177e4SLinus Torvalds/*=============================================================================
11231da177e4SLinus Torvalds * Address exception handler
11241da177e4SLinus Torvalds *-----------------------------------------------------------------------------
11251da177e4SLinus Torvalds * These aren't too critical.
11261da177e4SLinus Torvalds * (they're not supposed to happen, and won't happen in 32-bit data mode).
11271da177e4SLinus Torvalds */
11281da177e4SLinus Torvalds
11291da177e4SLinus Torvaldsvector_addrexcptn:
11301da177e4SLinus Torvalds	b	vector_addrexcptn
11311da177e4SLinus Torvalds
11321da177e4SLinus Torvalds/*
11331da177e4SLinus Torvalds * We group all the following data together to optimise
11341da177e4SLinus Torvalds * for CPUs with separate I & D caches.
11351da177e4SLinus Torvalds */
11361da177e4SLinus Torvalds	.align	5
11371da177e4SLinus Torvalds
11381da177e4SLinus Torvalds.LCvswi:
11391da177e4SLinus Torvalds	.word	vector_swi
11401da177e4SLinus Torvalds
11417933523dSRussell King	.globl	__stubs_end
11421da177e4SLinus Torvalds__stubs_end:
11431da177e4SLinus Torvalds
11447933523dSRussell King	.equ	stubs_offset, __vectors_start + 0x200 - __stubs_start
11451da177e4SLinus Torvalds
11467933523dSRussell King	.globl	__vectors_start
11477933523dSRussell King__vectors_start:
11481da177e4SLinus Torvalds	swi	SYS_ERROR0
11497933523dSRussell King	b	vector_und + stubs_offset
11507933523dSRussell King	ldr	pc, .LCvswi + stubs_offset
11517933523dSRussell King	b	vector_pabt + stubs_offset
11527933523dSRussell King	b	vector_dabt + stubs_offset
11537933523dSRussell King	b	vector_addrexcptn + stubs_offset
11547933523dSRussell King	b	vector_irq + stubs_offset
11557933523dSRussell King	b	vector_fiq + stubs_offset
11561da177e4SLinus Torvalds
11577933523dSRussell King	.globl	__vectors_end
11587933523dSRussell King__vectors_end:
11591da177e4SLinus Torvalds
11601da177e4SLinus Torvalds	.data
11611da177e4SLinus Torvalds
11621da177e4SLinus Torvalds	.globl	cr_alignment
11631da177e4SLinus Torvalds	.globl	cr_no_alignment
11641da177e4SLinus Torvaldscr_alignment:
11651da177e4SLinus Torvalds	.space	4
11661da177e4SLinus Torvaldscr_no_alignment:
11671da177e4SLinus Torvalds	.space	4
1168