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> 21a09e64fbSRussell King#include <mach/entry-macro.S> 22d6551e88SRussell King#include <asm/thread_notify.h> 23*c4c5716eSCatalin Marinas#include <asm/unwind.h> 241da177e4SLinus Torvalds 251da177e4SLinus Torvalds#include "entry-header.S" 261da177e4SLinus Torvalds 271da177e4SLinus Torvalds/* 28187a51adSRussell King * Interrupt handling. Preserves r7, r8, r9 29187a51adSRussell King */ 30187a51adSRussell King .macro irq_handler 31f80dff9dSDan Williams get_irqnr_preamble r5, lr 32187a51adSRussell King1: get_irqnr_and_base r0, r6, r5, lr 33187a51adSRussell King movne r1, sp 34187a51adSRussell King @ 35187a51adSRussell King @ routine called with r0 = irq number, r1 = struct pt_regs * 36187a51adSRussell King @ 37187a51adSRussell King adrne lr, 1b 38187a51adSRussell King bne asm_do_IRQ 39791be9b9SRussell King 40791be9b9SRussell King#ifdef CONFIG_SMP 41791be9b9SRussell King /* 42791be9b9SRussell King * XXX 43791be9b9SRussell King * 44791be9b9SRussell King * this macro assumes that irqstat (r6) and base (r5) are 45791be9b9SRussell King * preserved from get_irqnr_and_base above 46791be9b9SRussell King */ 47791be9b9SRussell King test_for_ipi r0, r6, r5, lr 48791be9b9SRussell King movne r0, sp 49791be9b9SRussell King adrne lr, 1b 50791be9b9SRussell King bne do_IPI 5137ee16aeSRussell King 5237ee16aeSRussell King#ifdef CONFIG_LOCAL_TIMERS 5337ee16aeSRussell King test_for_ltirq r0, r6, r5, lr 5437ee16aeSRussell King movne r0, sp 5537ee16aeSRussell King adrne lr, 1b 5637ee16aeSRussell King bne do_local_timer 5737ee16aeSRussell King#endif 58791be9b9SRussell King#endif 59791be9b9SRussell King 60187a51adSRussell King .endm 61187a51adSRussell King 62785d3cd2SNicolas Pitre#ifdef CONFIG_KPROBES 63785d3cd2SNicolas Pitre .section .kprobes.text,"ax",%progbits 64785d3cd2SNicolas Pitre#else 65785d3cd2SNicolas Pitre .text 66785d3cd2SNicolas Pitre#endif 67785d3cd2SNicolas Pitre 68187a51adSRussell King/* 691da177e4SLinus Torvalds * Invalid mode handlers 701da177e4SLinus Torvalds */ 71ccea7a19SRussell King .macro inv_entry, reason 72ccea7a19SRussell King sub sp, sp, #S_FRAME_SIZE 73ccea7a19SRussell King stmib sp, {r1 - lr} 741da177e4SLinus Torvalds mov r1, #\reason 751da177e4SLinus Torvalds .endm 761da177e4SLinus Torvalds 771da177e4SLinus Torvalds__pabt_invalid: 78ccea7a19SRussell King inv_entry BAD_PREFETCH 79ccea7a19SRussell King b common_invalid 8093ed3970SCatalin MarinasENDPROC(__pabt_invalid) 811da177e4SLinus Torvalds 821da177e4SLinus Torvalds__dabt_invalid: 83ccea7a19SRussell King inv_entry BAD_DATA 84ccea7a19SRussell King b common_invalid 8593ed3970SCatalin MarinasENDPROC(__dabt_invalid) 861da177e4SLinus Torvalds 871da177e4SLinus Torvalds__irq_invalid: 88ccea7a19SRussell King inv_entry BAD_IRQ 89ccea7a19SRussell King b common_invalid 9093ed3970SCatalin MarinasENDPROC(__irq_invalid) 911da177e4SLinus Torvalds 921da177e4SLinus Torvalds__und_invalid: 93ccea7a19SRussell King inv_entry BAD_UNDEFINSTR 941da177e4SLinus Torvalds 95ccea7a19SRussell King @ 96ccea7a19SRussell King @ XXX fall through to common_invalid 97ccea7a19SRussell King @ 98ccea7a19SRussell King 99ccea7a19SRussell King@ 100ccea7a19SRussell King@ common_invalid - generic code for failed exception (re-entrant version of handlers) 101ccea7a19SRussell King@ 102ccea7a19SRussell Kingcommon_invalid: 103ccea7a19SRussell King zero_fp 104ccea7a19SRussell King 105ccea7a19SRussell King ldmia r0, {r4 - r6} 106ccea7a19SRussell King add r0, sp, #S_PC @ here for interlock avoidance 107ccea7a19SRussell King mov r7, #-1 @ "" "" "" "" 108ccea7a19SRussell King str r4, [sp] @ save preserved r0 109ccea7a19SRussell King stmia r0, {r5 - r7} @ lr_<exception>, 110ccea7a19SRussell King @ cpsr_<exception>, "old_r0" 111ccea7a19SRussell King 1121da177e4SLinus Torvalds mov r0, sp 1131da177e4SLinus Torvalds b bad_mode 11493ed3970SCatalin MarinasENDPROC(__und_invalid) 1151da177e4SLinus Torvalds 1161da177e4SLinus Torvalds/* 1171da177e4SLinus Torvalds * SVC mode handlers 1181da177e4SLinus Torvalds */ 1192dede2d8SNicolas Pitre 1202dede2d8SNicolas Pitre#if defined(CONFIG_AEABI) && (__LINUX_ARM_ARCH__ >= 5) 1212dede2d8SNicolas Pitre#define SPFIX(code...) code 1222dede2d8SNicolas Pitre#else 1232dede2d8SNicolas Pitre#define SPFIX(code...) 1242dede2d8SNicolas Pitre#endif 1252dede2d8SNicolas Pitre 126d30a0c8bSNicolas Pitre .macro svc_entry, stack_hole=0 127*c4c5716eSCatalin Marinas UNWIND(.fnstart ) 128*c4c5716eSCatalin Marinas UNWIND(.save {r0 - pc} ) 129d30a0c8bSNicolas Pitre sub sp, sp, #(S_FRAME_SIZE + \stack_hole) 1302dede2d8SNicolas Pitre SPFIX( tst sp, #4 ) 1312dede2d8SNicolas Pitre SPFIX( bicne sp, sp, #4 ) 132ccea7a19SRussell King stmib sp, {r1 - r12} 133ccea7a19SRussell King 134ccea7a19SRussell King ldmia r0, {r1 - r3} 135ccea7a19SRussell King add r5, sp, #S_SP @ here for interlock avoidance 136ccea7a19SRussell King mov r4, #-1 @ "" "" "" "" 137d30a0c8bSNicolas Pitre add r0, sp, #(S_FRAME_SIZE + \stack_hole) 1382dede2d8SNicolas Pitre SPFIX( addne r0, r0, #4 ) 139ccea7a19SRussell King str r1, [sp] @ save the "real" r0 copied 140ccea7a19SRussell King @ from the exception stack 141ccea7a19SRussell King 1421da177e4SLinus Torvalds mov r1, lr 1431da177e4SLinus Torvalds 1441da177e4SLinus Torvalds @ 1451da177e4SLinus Torvalds @ We are now ready to fill in the remaining blanks on the stack: 1461da177e4SLinus Torvalds @ 1471da177e4SLinus Torvalds @ r0 - sp_svc 1481da177e4SLinus Torvalds @ r1 - lr_svc 1491da177e4SLinus Torvalds @ r2 - lr_<exception>, already fixed up for correct return/restart 1501da177e4SLinus Torvalds @ r3 - spsr_<exception> 1511da177e4SLinus Torvalds @ r4 - orig_r0 (see pt_regs definition in ptrace.h) 1521da177e4SLinus Torvalds @ 1531da177e4SLinus Torvalds stmia r5, {r0 - r4} 1541da177e4SLinus Torvalds .endm 1551da177e4SLinus Torvalds 1561da177e4SLinus Torvalds .align 5 1571da177e4SLinus Torvalds__dabt_svc: 158ccea7a19SRussell King svc_entry 1591da177e4SLinus Torvalds 1601da177e4SLinus Torvalds @ 1611da177e4SLinus Torvalds @ get ready to re-enable interrupts if appropriate 1621da177e4SLinus Torvalds @ 1631da177e4SLinus Torvalds mrs r9, cpsr 1641da177e4SLinus Torvalds tst r3, #PSR_I_BIT 1651da177e4SLinus Torvalds biceq r9, r9, #PSR_I_BIT 1661da177e4SLinus Torvalds 1671da177e4SLinus Torvalds @ 1681da177e4SLinus Torvalds @ Call the processor-specific abort handler: 1691da177e4SLinus Torvalds @ 1701da177e4SLinus Torvalds @ r2 - aborted context pc 1711da177e4SLinus Torvalds @ r3 - aborted context cpsr 1721da177e4SLinus Torvalds @ 1731da177e4SLinus Torvalds @ The abort handler must return the aborted address in r0, and 1741da177e4SLinus Torvalds @ the fault status register in r1. r9 must be preserved. 1751da177e4SLinus Torvalds @ 17648d7927bSPaul Brook#ifdef MULTI_DABORT 1771da177e4SLinus Torvalds ldr r4, .LCprocfns 1781da177e4SLinus Torvalds mov lr, pc 17948d7927bSPaul Brook ldr pc, [r4, #PROCESSOR_DABT_FUNC] 1801da177e4SLinus Torvalds#else 18148d7927bSPaul Brook bl CPU_DABORT_HANDLER 1821da177e4SLinus Torvalds#endif 1831da177e4SLinus Torvalds 1841da177e4SLinus Torvalds @ 1851da177e4SLinus Torvalds @ set desired IRQ state, then call main handler 1861da177e4SLinus Torvalds @ 1871da177e4SLinus Torvalds msr cpsr_c, r9 1881da177e4SLinus Torvalds mov r2, sp 1891da177e4SLinus Torvalds bl do_DataAbort 1901da177e4SLinus Torvalds 1911da177e4SLinus Torvalds @ 1921da177e4SLinus Torvalds @ IRQs off again before pulling preserved data off the stack 1931da177e4SLinus Torvalds @ 1941ec42c0cSRussell King disable_irq 1951da177e4SLinus Torvalds 1961da177e4SLinus Torvalds @ 1971da177e4SLinus Torvalds @ restore SPSR and restart the instruction 1981da177e4SLinus Torvalds @ 1991da177e4SLinus Torvalds ldr r0, [sp, #S_PSR] 2001da177e4SLinus Torvalds msr spsr_cxsf, r0 2011da177e4SLinus Torvalds ldmia sp, {r0 - pc}^ @ load r0 - pc, cpsr 202*c4c5716eSCatalin Marinas UNWIND(.fnend ) 20393ed3970SCatalin MarinasENDPROC(__dabt_svc) 2041da177e4SLinus Torvalds 2051da177e4SLinus Torvalds .align 5 2061da177e4SLinus Torvalds__irq_svc: 207ccea7a19SRussell King svc_entry 208ccea7a19SRussell King 2097ad1bcb2SRussell King#ifdef CONFIG_TRACE_IRQFLAGS 2107ad1bcb2SRussell King bl trace_hardirqs_off 2117ad1bcb2SRussell King#endif 2121da177e4SLinus Torvalds#ifdef CONFIG_PREEMPT 213706fdd9fSRussell King get_thread_info tsk 214706fdd9fSRussell King ldr r8, [tsk, #TI_PREEMPT] @ get preempt count 215706fdd9fSRussell King add r7, r8, #1 @ increment it 216706fdd9fSRussell King str r7, [tsk, #TI_PREEMPT] 2171da177e4SLinus Torvalds#endif 218ccea7a19SRussell King 219187a51adSRussell King irq_handler 2201da177e4SLinus Torvalds#ifdef CONFIG_PREEMPT 22128fab1a2SRussell King str r8, [tsk, #TI_PREEMPT] @ restore preempt count 222706fdd9fSRussell King ldr r0, [tsk, #TI_FLAGS] @ get flags 22328fab1a2SRussell King teq r8, #0 @ if preempt count != 0 22428fab1a2SRussell King movne r0, #0 @ force flags to 0 2251da177e4SLinus Torvalds tst r0, #_TIF_NEED_RESCHED 2261da177e4SLinus Torvalds blne svc_preempt 2271da177e4SLinus Torvalds#endif 2281da177e4SLinus Torvalds ldr r0, [sp, #S_PSR] @ irqs are already disabled 2291da177e4SLinus Torvalds msr spsr_cxsf, r0 2307ad1bcb2SRussell King#ifdef CONFIG_TRACE_IRQFLAGS 2317ad1bcb2SRussell King tst r0, #PSR_I_BIT 2327ad1bcb2SRussell King bleq trace_hardirqs_on 2337ad1bcb2SRussell King#endif 2341da177e4SLinus Torvalds ldmia sp, {r0 - pc}^ @ load r0 - pc, cpsr 235*c4c5716eSCatalin Marinas UNWIND(.fnend ) 23693ed3970SCatalin MarinasENDPROC(__irq_svc) 2371da177e4SLinus Torvalds 2381da177e4SLinus Torvalds .ltorg 2391da177e4SLinus Torvalds 2401da177e4SLinus Torvalds#ifdef CONFIG_PREEMPT 2411da177e4SLinus Torvaldssvc_preempt: 24228fab1a2SRussell King mov r8, lr 2431da177e4SLinus Torvalds1: bl preempt_schedule_irq @ irq en/disable is done inside 244706fdd9fSRussell King ldr r0, [tsk, #TI_FLAGS] @ get new tasks TI_FLAGS 2451da177e4SLinus Torvalds tst r0, #_TIF_NEED_RESCHED 24628fab1a2SRussell King moveq pc, r8 @ go again 2471da177e4SLinus Torvalds b 1b 2481da177e4SLinus Torvalds#endif 2491da177e4SLinus Torvalds 2501da177e4SLinus Torvalds .align 5 2511da177e4SLinus Torvalds__und_svc: 252d30a0c8bSNicolas Pitre#ifdef CONFIG_KPROBES 253d30a0c8bSNicolas Pitre @ If a kprobe is about to simulate a "stmdb sp..." instruction, 254d30a0c8bSNicolas Pitre @ it obviously needs free stack space which then will belong to 255d30a0c8bSNicolas Pitre @ the saved context. 256d30a0c8bSNicolas Pitre svc_entry 64 257d30a0c8bSNicolas Pitre#else 258ccea7a19SRussell King svc_entry 259d30a0c8bSNicolas Pitre#endif 2601da177e4SLinus Torvalds 2611da177e4SLinus Torvalds @ 2621da177e4SLinus Torvalds @ call emulation code, which returns using r9 if it has emulated 2631da177e4SLinus Torvalds @ the instruction, or the more conventional lr if we are to treat 2641da177e4SLinus Torvalds @ this as a real undefined instruction 2651da177e4SLinus Torvalds @ 2661da177e4SLinus Torvalds @ r0 - instruction 2671da177e4SLinus Torvalds @ 2681da177e4SLinus Torvalds ldr r0, [r2, #-4] 2691da177e4SLinus Torvalds adr r9, 1f 2701da177e4SLinus Torvalds bl call_fpe 2711da177e4SLinus Torvalds 2721da177e4SLinus Torvalds mov r0, sp @ struct pt_regs *regs 2731da177e4SLinus Torvalds bl do_undefinstr 2741da177e4SLinus Torvalds 2751da177e4SLinus Torvalds @ 2761da177e4SLinus Torvalds @ IRQs off again before pulling preserved data off the stack 2771da177e4SLinus Torvalds @ 2781ec42c0cSRussell King1: disable_irq 2791da177e4SLinus Torvalds 2801da177e4SLinus Torvalds @ 2811da177e4SLinus Torvalds @ restore SPSR and restart the instruction 2821da177e4SLinus Torvalds @ 2831da177e4SLinus Torvalds ldr lr, [sp, #S_PSR] @ Get SVC cpsr 2841da177e4SLinus Torvalds msr spsr_cxsf, lr 2851da177e4SLinus Torvalds ldmia sp, {r0 - pc}^ @ Restore SVC registers 286*c4c5716eSCatalin Marinas UNWIND(.fnend ) 28793ed3970SCatalin MarinasENDPROC(__und_svc) 2881da177e4SLinus Torvalds 2891da177e4SLinus Torvalds .align 5 2901da177e4SLinus Torvalds__pabt_svc: 291ccea7a19SRussell King svc_entry 2921da177e4SLinus Torvalds 2931da177e4SLinus Torvalds @ 2941da177e4SLinus Torvalds @ re-enable interrupts if appropriate 2951da177e4SLinus Torvalds @ 2961da177e4SLinus Torvalds mrs r9, cpsr 2971da177e4SLinus Torvalds tst r3, #PSR_I_BIT 2981da177e4SLinus Torvalds biceq r9, r9, #PSR_I_BIT 2991da177e4SLinus Torvalds 3001da177e4SLinus Torvalds @ 3011da177e4SLinus Torvalds @ set args, then call main handler 3021da177e4SLinus Torvalds @ 3031da177e4SLinus Torvalds @ r0 - address of faulting instruction 3041da177e4SLinus Torvalds @ r1 - pointer to registers on stack 3051da177e4SLinus Torvalds @ 30648d7927bSPaul Brook#ifdef MULTI_PABORT 30748d7927bSPaul Brook mov r0, r2 @ pass address of aborted instruction. 30848d7927bSPaul Brook ldr r4, .LCprocfns 30948d7927bSPaul Brook mov lr, pc 31048d7927bSPaul Brook ldr pc, [r4, #PROCESSOR_PABT_FUNC] 31148d7927bSPaul Brook#else 31248d7927bSPaul Brook CPU_PABORT_HANDLER(r0, r2) 31348d7927bSPaul Brook#endif 31448d7927bSPaul Brook msr cpsr_c, r9 @ Maybe enable interrupts 3151da177e4SLinus Torvalds mov r1, sp @ regs 3161da177e4SLinus Torvalds bl do_PrefetchAbort @ call abort handler 3171da177e4SLinus Torvalds 3181da177e4SLinus Torvalds @ 3191da177e4SLinus Torvalds @ IRQs off again before pulling preserved data off the stack 3201da177e4SLinus Torvalds @ 3211ec42c0cSRussell King disable_irq 3221da177e4SLinus Torvalds 3231da177e4SLinus Torvalds @ 3241da177e4SLinus Torvalds @ restore SPSR and restart the instruction 3251da177e4SLinus Torvalds @ 3261da177e4SLinus Torvalds ldr r0, [sp, #S_PSR] 3271da177e4SLinus Torvalds msr spsr_cxsf, r0 3281da177e4SLinus Torvalds ldmia sp, {r0 - pc}^ @ load r0 - pc, cpsr 329*c4c5716eSCatalin Marinas UNWIND(.fnend ) 33093ed3970SCatalin MarinasENDPROC(__pabt_svc) 3311da177e4SLinus Torvalds 3321da177e4SLinus Torvalds .align 5 33349f680eaSRussell King.LCcralign: 33449f680eaSRussell King .word cr_alignment 33548d7927bSPaul Brook#ifdef MULTI_DABORT 3361da177e4SLinus Torvalds.LCprocfns: 3371da177e4SLinus Torvalds .word processor 3381da177e4SLinus Torvalds#endif 3391da177e4SLinus Torvalds.LCfp: 3401da177e4SLinus Torvalds .word fp_enter 3411da177e4SLinus Torvalds 3421da177e4SLinus Torvalds/* 3431da177e4SLinus Torvalds * User mode handlers 3442dede2d8SNicolas Pitre * 3452dede2d8SNicolas Pitre * EABI note: sp_svc is always 64-bit aligned here, so should S_FRAME_SIZE 3461da177e4SLinus Torvalds */ 3472dede2d8SNicolas Pitre 3482dede2d8SNicolas Pitre#if defined(CONFIG_AEABI) && (__LINUX_ARM_ARCH__ >= 5) && (S_FRAME_SIZE & 7) 3492dede2d8SNicolas Pitre#error "sizeof(struct pt_regs) must be a multiple of 8" 3502dede2d8SNicolas Pitre#endif 3512dede2d8SNicolas Pitre 352ccea7a19SRussell King .macro usr_entry 353*c4c5716eSCatalin Marinas UNWIND(.fnstart ) 354*c4c5716eSCatalin Marinas UNWIND(.cantunwind ) @ don't unwind the user space 355ccea7a19SRussell King sub sp, sp, #S_FRAME_SIZE 356ccea7a19SRussell King stmib sp, {r1 - r12} 357ccea7a19SRussell King 358ccea7a19SRussell King ldmia r0, {r1 - r3} 359ccea7a19SRussell King add r0, sp, #S_PC @ here for interlock avoidance 360ccea7a19SRussell King mov r4, #-1 @ "" "" "" "" 361ccea7a19SRussell King 362ccea7a19SRussell King str r1, [sp] @ save the "real" r0 copied 363ccea7a19SRussell King @ from the exception stack 3641da177e4SLinus Torvalds 3651da177e4SLinus Torvalds @ 3661da177e4SLinus Torvalds @ We are now ready to fill in the remaining blanks on the stack: 3671da177e4SLinus Torvalds @ 3681da177e4SLinus Torvalds @ r2 - lr_<exception>, already fixed up for correct return/restart 3691da177e4SLinus Torvalds @ r3 - spsr_<exception> 3701da177e4SLinus Torvalds @ r4 - orig_r0 (see pt_regs definition in ptrace.h) 3711da177e4SLinus Torvalds @ 3721da177e4SLinus Torvalds @ Also, separately save sp_usr and lr_usr 3731da177e4SLinus Torvalds @ 374ccea7a19SRussell King stmia r0, {r2 - r4} 375ccea7a19SRussell King stmdb r0, {sp, lr}^ 3761da177e4SLinus Torvalds 3771da177e4SLinus Torvalds @ 3781da177e4SLinus Torvalds @ Enable the alignment trap while in kernel mode 3791da177e4SLinus Torvalds @ 38049f680eaSRussell King alignment_trap r0 3811da177e4SLinus Torvalds 3821da177e4SLinus Torvalds @ 3831da177e4SLinus Torvalds @ Clear FP to mark the first stack frame 3841da177e4SLinus Torvalds @ 3851da177e4SLinus Torvalds zero_fp 3861da177e4SLinus Torvalds .endm 3871da177e4SLinus Torvalds 388b49c0f24SNicolas Pitre .macro kuser_cmpxchg_check 389b49c0f24SNicolas Pitre#if __LINUX_ARM_ARCH__ < 6 && !defined(CONFIG_NEEDS_SYSCALL_FOR_CMPXCHG) 390b49c0f24SNicolas Pitre#ifndef CONFIG_MMU 391b49c0f24SNicolas Pitre#warning "NPTL on non MMU needs fixing" 392b49c0f24SNicolas Pitre#else 393b49c0f24SNicolas Pitre @ Make sure our user space atomic helper is restarted 394b49c0f24SNicolas Pitre @ if it was interrupted in a critical region. Here we 395b49c0f24SNicolas Pitre @ perform a quick test inline since it should be false 396b49c0f24SNicolas Pitre @ 99.9999% of the time. The rest is done out of line. 397b49c0f24SNicolas Pitre cmp r2, #TASK_SIZE 398b49c0f24SNicolas Pitre blhs kuser_cmpxchg_fixup 399b49c0f24SNicolas Pitre#endif 400b49c0f24SNicolas Pitre#endif 401b49c0f24SNicolas Pitre .endm 402b49c0f24SNicolas Pitre 4031da177e4SLinus Torvalds .align 5 4041da177e4SLinus Torvalds__dabt_usr: 405ccea7a19SRussell King usr_entry 406b49c0f24SNicolas Pitre kuser_cmpxchg_check 4071da177e4SLinus Torvalds 4081da177e4SLinus Torvalds @ 4091da177e4SLinus Torvalds @ Call the processor-specific abort handler: 4101da177e4SLinus Torvalds @ 4111da177e4SLinus Torvalds @ r2 - aborted context pc 4121da177e4SLinus Torvalds @ r3 - aborted context cpsr 4131da177e4SLinus Torvalds @ 4141da177e4SLinus Torvalds @ The abort handler must return the aborted address in r0, and 4151da177e4SLinus Torvalds @ the fault status register in r1. 4161da177e4SLinus Torvalds @ 41748d7927bSPaul Brook#ifdef MULTI_DABORT 4181da177e4SLinus Torvalds ldr r4, .LCprocfns 4191da177e4SLinus Torvalds mov lr, pc 42048d7927bSPaul Brook ldr pc, [r4, #PROCESSOR_DABT_FUNC] 4211da177e4SLinus Torvalds#else 42248d7927bSPaul Brook bl CPU_DABORT_HANDLER 4231da177e4SLinus Torvalds#endif 4241da177e4SLinus Torvalds 4251da177e4SLinus Torvalds @ 4261da177e4SLinus Torvalds @ IRQs on, then call the main handler 4271da177e4SLinus Torvalds @ 4281ec42c0cSRussell King enable_irq 4291da177e4SLinus Torvalds mov r2, sp 4301da177e4SLinus Torvalds adr lr, ret_from_exception 4311da177e4SLinus Torvalds b do_DataAbort 432*c4c5716eSCatalin Marinas UNWIND(.fnend ) 43393ed3970SCatalin MarinasENDPROC(__dabt_usr) 4341da177e4SLinus Torvalds 4351da177e4SLinus Torvalds .align 5 4361da177e4SLinus Torvalds__irq_usr: 437ccea7a19SRussell King usr_entry 438b49c0f24SNicolas Pitre kuser_cmpxchg_check 4391da177e4SLinus Torvalds 4407ad1bcb2SRussell King#ifdef CONFIG_TRACE_IRQFLAGS 4417ad1bcb2SRussell King bl trace_hardirqs_off 4427ad1bcb2SRussell King#endif 4431da177e4SLinus Torvalds get_thread_info tsk 4441da177e4SLinus Torvalds#ifdef CONFIG_PREEMPT 445706fdd9fSRussell King ldr r8, [tsk, #TI_PREEMPT] @ get preempt count 446706fdd9fSRussell King add r7, r8, #1 @ increment it 447706fdd9fSRussell King str r7, [tsk, #TI_PREEMPT] 4481da177e4SLinus Torvalds#endif 449ccea7a19SRussell King 450187a51adSRussell King irq_handler 4511da177e4SLinus Torvalds#ifdef CONFIG_PREEMPT 452706fdd9fSRussell King ldr r0, [tsk, #TI_PREEMPT] 453706fdd9fSRussell King str r8, [tsk, #TI_PREEMPT] 4541da177e4SLinus Torvalds teq r0, r7 4551da177e4SLinus Torvalds strne r0, [r0, -r0] 4561da177e4SLinus Torvalds#endif 4577ad1bcb2SRussell King#ifdef CONFIG_TRACE_IRQFLAGS 4587ad1bcb2SRussell King bl trace_hardirqs_on 4597ad1bcb2SRussell King#endif 460ccea7a19SRussell King 4611da177e4SLinus Torvalds mov why, #0 4621da177e4SLinus Torvalds b ret_to_user 463*c4c5716eSCatalin Marinas UNWIND(.fnend ) 46493ed3970SCatalin MarinasENDPROC(__irq_usr) 4651da177e4SLinus Torvalds 4661da177e4SLinus Torvalds .ltorg 4671da177e4SLinus Torvalds 4681da177e4SLinus Torvalds .align 5 4691da177e4SLinus Torvalds__und_usr: 470ccea7a19SRussell King usr_entry 4711da177e4SLinus Torvalds 4721da177e4SLinus Torvalds @ 4731da177e4SLinus Torvalds @ fall through to the emulation code, which returns using r9 if 4741da177e4SLinus Torvalds @ it has emulated the instruction, or the more conventional lr 4751da177e4SLinus Torvalds @ if we are to treat this as a real undefined instruction 4761da177e4SLinus Torvalds @ 4771da177e4SLinus Torvalds @ r0 - instruction 4781da177e4SLinus Torvalds @ 4791da177e4SLinus Torvalds adr r9, ret_from_exception 480db6ccbb6SRussell King adr lr, __und_usr_unknown 481cb170a45SPaul Brook tst r3, #PSR_T_BIT @ Thumb mode? 482cb170a45SPaul Brook subeq r4, r2, #4 @ ARM instr at LR - 4 483cb170a45SPaul Brook subne r4, r2, #2 @ Thumb instr at LR - 2 484cb170a45SPaul Brook1: ldreqt r0, [r4] 485cb170a45SPaul Brook beq call_fpe 486cb170a45SPaul Brook @ Thumb instruction 487cb170a45SPaul Brook#if __LINUX_ARM_ARCH__ >= 7 488cb170a45SPaul Brook2: ldrht r5, [r4], #2 489cb170a45SPaul Brook and r0, r5, #0xf800 @ mask bits 111x x... .... .... 490cb170a45SPaul Brook cmp r0, #0xe800 @ 32bit instruction if xx != 0 491cb170a45SPaul Brook blo __und_usr_unknown 492cb170a45SPaul Brook3: ldrht r0, [r4] 493cb170a45SPaul Brook add r2, r2, #2 @ r2 is PC + 2, make it PC + 4 494cb170a45SPaul Brook orr r0, r0, r5, lsl #16 495cb170a45SPaul Brook#else 496cb170a45SPaul Brook b __und_usr_unknown 497cb170a45SPaul Brook#endif 498*c4c5716eSCatalin Marinas UNWIND(.fnend ) 49993ed3970SCatalin MarinasENDPROC(__und_usr) 500cb170a45SPaul Brook 5011da177e4SLinus Torvalds @ 5021da177e4SLinus Torvalds @ fallthrough to call_fpe 5031da177e4SLinus Torvalds @ 5041da177e4SLinus Torvalds 5051da177e4SLinus Torvalds/* 5061da177e4SLinus Torvalds * The out of line fixup for the ldrt above. 5071da177e4SLinus Torvalds */ 5081da177e4SLinus Torvalds .section .fixup, "ax" 509cb170a45SPaul Brook4: mov pc, r9 5101da177e4SLinus Torvalds .previous 5111da177e4SLinus Torvalds .section __ex_table,"a" 512cb170a45SPaul Brook .long 1b, 4b 513cb170a45SPaul Brook#if __LINUX_ARM_ARCH__ >= 7 514cb170a45SPaul Brook .long 2b, 4b 515cb170a45SPaul Brook .long 3b, 4b 516cb170a45SPaul Brook#endif 5171da177e4SLinus Torvalds .previous 5181da177e4SLinus Torvalds 5191da177e4SLinus Torvalds/* 5201da177e4SLinus Torvalds * Check whether the instruction is a co-processor instruction. 5211da177e4SLinus Torvalds * If yes, we need to call the relevant co-processor handler. 5221da177e4SLinus Torvalds * 5231da177e4SLinus Torvalds * Note that we don't do a full check here for the co-processor 5241da177e4SLinus Torvalds * instructions; all instructions with bit 27 set are well 5251da177e4SLinus Torvalds * defined. The only instructions that should fault are the 5261da177e4SLinus Torvalds * co-processor instructions. However, we have to watch out 5271da177e4SLinus Torvalds * for the ARM6/ARM7 SWI bug. 5281da177e4SLinus Torvalds * 529b5872db4SCatalin Marinas * NEON is a special case that has to be handled here. Not all 530b5872db4SCatalin Marinas * NEON instructions are co-processor instructions, so we have 531b5872db4SCatalin Marinas * to make a special case of checking for them. Plus, there's 532b5872db4SCatalin Marinas * five groups of them, so we have a table of mask/opcode pairs 533b5872db4SCatalin Marinas * to check against, and if any match then we branch off into the 534b5872db4SCatalin Marinas * NEON handler code. 535b5872db4SCatalin Marinas * 5361da177e4SLinus Torvalds * Emulators may wish to make use of the following registers: 5371da177e4SLinus Torvalds * r0 = instruction opcode. 5381da177e4SLinus Torvalds * r2 = PC+4 539db6ccbb6SRussell King * r9 = normal "successful" return address 5401da177e4SLinus Torvalds * r10 = this threads thread_info structure. 541db6ccbb6SRussell King * lr = unrecognised instruction return address 5421da177e4SLinus Torvalds */ 543cb170a45SPaul Brook @ 544cb170a45SPaul Brook @ Fall-through from Thumb-2 __und_usr 545cb170a45SPaul Brook @ 546cb170a45SPaul Brook#ifdef CONFIG_NEON 547cb170a45SPaul Brook adr r6, .LCneon_thumb_opcodes 548cb170a45SPaul Brook b 2f 549cb170a45SPaul Brook#endif 5501da177e4SLinus Torvaldscall_fpe: 551b5872db4SCatalin Marinas#ifdef CONFIG_NEON 552cb170a45SPaul Brook adr r6, .LCneon_arm_opcodes 553b5872db4SCatalin Marinas2: 554b5872db4SCatalin Marinas ldr r7, [r6], #4 @ mask value 555b5872db4SCatalin Marinas cmp r7, #0 @ end mask? 556b5872db4SCatalin Marinas beq 1f 557b5872db4SCatalin Marinas and r8, r0, r7 558b5872db4SCatalin Marinas ldr r7, [r6], #4 @ opcode bits matching in mask 559b5872db4SCatalin Marinas cmp r8, r7 @ NEON instruction? 560b5872db4SCatalin Marinas bne 2b 561b5872db4SCatalin Marinas get_thread_info r10 562b5872db4SCatalin Marinas mov r7, #1 563b5872db4SCatalin Marinas strb r7, [r10, #TI_USED_CP + 10] @ mark CP#10 as used 564b5872db4SCatalin Marinas strb r7, [r10, #TI_USED_CP + 11] @ mark CP#11 as used 565b5872db4SCatalin Marinas b do_vfp @ let VFP handler handle this 566b5872db4SCatalin Marinas1: 567b5872db4SCatalin Marinas#endif 5681da177e4SLinus Torvalds tst r0, #0x08000000 @ only CDP/CPRT/LDC/STC have bit 27 569cb170a45SPaul Brook tstne r0, #0x04000000 @ bit 26 set on both ARM and Thumb-2 5701da177e4SLinus Torvalds#if defined(CONFIG_CPU_ARM610) || defined(CONFIG_CPU_ARM710) 5711da177e4SLinus Torvalds and r8, r0, #0x0f000000 @ mask out op-code bits 5721da177e4SLinus Torvalds teqne r8, #0x0f000000 @ SWI (ARM6/7 bug)? 5731da177e4SLinus Torvalds#endif 5741da177e4SLinus Torvalds moveq pc, lr 5751da177e4SLinus Torvalds get_thread_info r10 @ get current thread 5761da177e4SLinus Torvalds and r8, r0, #0x00000f00 @ mask out CP number 5771da177e4SLinus Torvalds mov r7, #1 5781da177e4SLinus Torvalds add r6, r10, #TI_USED_CP 5791da177e4SLinus Torvalds strb r7, [r6, r8, lsr #8] @ set appropriate used_cp[] 5801da177e4SLinus Torvalds#ifdef CONFIG_IWMMXT 5811da177e4SLinus Torvalds @ Test if we need to give access to iWMMXt coprocessors 5821da177e4SLinus Torvalds ldr r5, [r10, #TI_FLAGS] 5831da177e4SLinus Torvalds rsbs r7, r8, #(1 << 8) @ CP 0 or 1 only 5841da177e4SLinus Torvalds movcss r7, r5, lsr #(TIF_USING_IWMMXT + 1) 5851da177e4SLinus Torvalds bcs iwmmxt_task_enable 5861da177e4SLinus Torvalds#endif 5871da177e4SLinus Torvalds add pc, pc, r8, lsr #6 5881da177e4SLinus Torvalds mov r0, r0 5891da177e4SLinus Torvalds 5901da177e4SLinus Torvalds mov pc, lr @ CP#0 5911da177e4SLinus Torvalds b do_fpe @ CP#1 (FPE) 5921da177e4SLinus Torvalds b do_fpe @ CP#2 (FPE) 5931da177e4SLinus Torvalds mov pc, lr @ CP#3 594c17fad11SLennert Buytenhek#ifdef CONFIG_CRUNCH 595c17fad11SLennert Buytenhek b crunch_task_enable @ CP#4 (MaverickCrunch) 596c17fad11SLennert Buytenhek b crunch_task_enable @ CP#5 (MaverickCrunch) 597c17fad11SLennert Buytenhek b crunch_task_enable @ CP#6 (MaverickCrunch) 598c17fad11SLennert Buytenhek#else 5991da177e4SLinus Torvalds mov pc, lr @ CP#4 6001da177e4SLinus Torvalds mov pc, lr @ CP#5 6011da177e4SLinus Torvalds mov pc, lr @ CP#6 602c17fad11SLennert Buytenhek#endif 6031da177e4SLinus Torvalds mov pc, lr @ CP#7 6041da177e4SLinus Torvalds mov pc, lr @ CP#8 6051da177e4SLinus Torvalds mov pc, lr @ CP#9 6061da177e4SLinus Torvalds#ifdef CONFIG_VFP 6071da177e4SLinus Torvalds b do_vfp @ CP#10 (VFP) 6081da177e4SLinus Torvalds b do_vfp @ CP#11 (VFP) 6091da177e4SLinus Torvalds#else 6101da177e4SLinus Torvalds mov pc, lr @ CP#10 (VFP) 6111da177e4SLinus Torvalds mov pc, lr @ CP#11 (VFP) 6121da177e4SLinus Torvalds#endif 6131da177e4SLinus Torvalds mov pc, lr @ CP#12 6141da177e4SLinus Torvalds mov pc, lr @ CP#13 6151da177e4SLinus Torvalds mov pc, lr @ CP#14 (Debug) 6161da177e4SLinus Torvalds mov pc, lr @ CP#15 (Control) 6171da177e4SLinus Torvalds 618b5872db4SCatalin Marinas#ifdef CONFIG_NEON 619b5872db4SCatalin Marinas .align 6 620b5872db4SCatalin Marinas 621cb170a45SPaul Brook.LCneon_arm_opcodes: 622b5872db4SCatalin Marinas .word 0xfe000000 @ mask 623b5872db4SCatalin Marinas .word 0xf2000000 @ opcode 624b5872db4SCatalin Marinas 625b5872db4SCatalin Marinas .word 0xff100000 @ mask 626b5872db4SCatalin Marinas .word 0xf4000000 @ opcode 627b5872db4SCatalin Marinas 628b5872db4SCatalin Marinas .word 0x00000000 @ mask 629b5872db4SCatalin Marinas .word 0x00000000 @ opcode 630cb170a45SPaul Brook 631cb170a45SPaul Brook.LCneon_thumb_opcodes: 632cb170a45SPaul Brook .word 0xef000000 @ mask 633cb170a45SPaul Brook .word 0xef000000 @ opcode 634cb170a45SPaul Brook 635cb170a45SPaul Brook .word 0xff100000 @ mask 636cb170a45SPaul Brook .word 0xf9000000 @ opcode 637cb170a45SPaul Brook 638cb170a45SPaul Brook .word 0x00000000 @ mask 639cb170a45SPaul Brook .word 0x00000000 @ opcode 640b5872db4SCatalin Marinas#endif 641b5872db4SCatalin Marinas 6421da177e4SLinus Torvaldsdo_fpe: 6435d25ac03SRussell King enable_irq 6441da177e4SLinus Torvalds ldr r4, .LCfp 6451da177e4SLinus Torvalds add r10, r10, #TI_FPSTATE @ r10 = workspace 6461da177e4SLinus Torvalds ldr pc, [r4] @ Call FP module USR entry point 6471da177e4SLinus Torvalds 6481da177e4SLinus Torvalds/* 6491da177e4SLinus Torvalds * The FP module is called with these registers set: 6501da177e4SLinus Torvalds * r0 = instruction 6511da177e4SLinus Torvalds * r2 = PC+4 6521da177e4SLinus Torvalds * r9 = normal "successful" return address 6531da177e4SLinus Torvalds * r10 = FP workspace 6541da177e4SLinus Torvalds * lr = unrecognised FP instruction return address 6551da177e4SLinus Torvalds */ 6561da177e4SLinus Torvalds 6571da177e4SLinus Torvalds .data 6581da177e4SLinus TorvaldsENTRY(fp_enter) 659db6ccbb6SRussell King .word no_fp 660785d3cd2SNicolas Pitre .previous 6611da177e4SLinus Torvalds 662db6ccbb6SRussell Kingno_fp: mov pc, lr 663db6ccbb6SRussell King 664db6ccbb6SRussell King__und_usr_unknown: 665ecbab71cSRussell King enable_irq 6661da177e4SLinus Torvalds mov r0, sp 6671da177e4SLinus Torvalds adr lr, ret_from_exception 6681da177e4SLinus Torvalds b do_undefinstr 66993ed3970SCatalin MarinasENDPROC(__und_usr_unknown) 6701da177e4SLinus Torvalds 6711da177e4SLinus Torvalds .align 5 6721da177e4SLinus Torvalds__pabt_usr: 673ccea7a19SRussell King usr_entry 6741da177e4SLinus Torvalds 67548d7927bSPaul Brook#ifdef MULTI_PABORT 67648d7927bSPaul Brook mov r0, r2 @ pass address of aborted instruction. 67748d7927bSPaul Brook ldr r4, .LCprocfns 67848d7927bSPaul Brook mov lr, pc 67948d7927bSPaul Brook ldr pc, [r4, #PROCESSOR_PABT_FUNC] 68048d7927bSPaul Brook#else 68148d7927bSPaul Brook CPU_PABORT_HANDLER(r0, r2) 68248d7927bSPaul Brook#endif 6831ec42c0cSRussell King enable_irq @ Enable interrupts 6841da177e4SLinus Torvalds mov r1, sp @ regs 6851da177e4SLinus Torvalds bl do_PrefetchAbort @ call abort handler 686*c4c5716eSCatalin Marinas UNWIND(.fnend ) 6871da177e4SLinus Torvalds /* fall through */ 6881da177e4SLinus Torvalds/* 6891da177e4SLinus Torvalds * This is the return code to user mode for abort handlers 6901da177e4SLinus Torvalds */ 6911da177e4SLinus TorvaldsENTRY(ret_from_exception) 692*c4c5716eSCatalin Marinas UNWIND(.fnstart ) 693*c4c5716eSCatalin Marinas UNWIND(.cantunwind ) 6941da177e4SLinus Torvalds get_thread_info tsk 6951da177e4SLinus Torvalds mov why, #0 6961da177e4SLinus Torvalds b ret_to_user 697*c4c5716eSCatalin Marinas UNWIND(.fnend ) 69893ed3970SCatalin MarinasENDPROC(__pabt_usr) 69993ed3970SCatalin MarinasENDPROC(ret_from_exception) 7001da177e4SLinus Torvalds 7011da177e4SLinus Torvalds/* 7021da177e4SLinus Torvalds * Register switch for ARMv3 and ARMv4 processors 7031da177e4SLinus Torvalds * r0 = previous task_struct, r1 = previous thread_info, r2 = next thread_info 7041da177e4SLinus Torvalds * previous and next are guaranteed not to be the same. 7051da177e4SLinus Torvalds */ 7061da177e4SLinus TorvaldsENTRY(__switch_to) 707*c4c5716eSCatalin Marinas UNWIND(.fnstart ) 708*c4c5716eSCatalin Marinas UNWIND(.cantunwind ) 7091da177e4SLinus Torvalds add ip, r1, #TI_CPU_SAVE 7101da177e4SLinus Torvalds ldr r3, [r2, #TI_TP_VALUE] 7111da177e4SLinus Torvalds stmia ip!, {r4 - sl, fp, sp, lr} @ Store most regs on stack 712d6551e88SRussell King#ifdef CONFIG_MMU 713d6551e88SRussell King ldr r6, [r2, #TI_CPU_DOMAIN] 714afeb90caSHyok S. Choi#endif 715b876386eSRussell King#if __LINUX_ARM_ARCH__ >= 6 71643cc1981SRussell King#ifdef CONFIG_CPU_32v6K 717b876386eSRussell King clrex 718b876386eSRussell King#else 71973394322SRussell King strex r5, r4, [ip] @ Clear exclusive monitor 720b876386eSRussell King#endif 721b876386eSRussell King#endif 7224b0e07a5SNicolas Pitre#if defined(CONFIG_HAS_TLS_REG) 7232d2669b6SNicolas Pitre mcr p15, 0, r3, c13, c0, 3 @ set TLS register 7244b0e07a5SNicolas Pitre#elif !defined(CONFIG_TLS_REG_EMUL) 7251da177e4SLinus Torvalds mov r4, #0xffff0fff 7262d2669b6SNicolas Pitre str r3, [r4, #-15] @ TLS val at 0xffff0ff0 7272d2669b6SNicolas Pitre#endif 728afeb90caSHyok S. Choi#ifdef CONFIG_MMU 7291da177e4SLinus Torvalds mcr p15, 0, r6, c3, c0, 0 @ Set domain register 730afeb90caSHyok S. Choi#endif 731d6551e88SRussell King mov r5, r0 732d6551e88SRussell King add r4, r2, #TI_CPU_SAVE 733d6551e88SRussell King ldr r0, =thread_notify_head 734d6551e88SRussell King mov r1, #THREAD_NOTIFY_SWITCH 735d6551e88SRussell King bl atomic_notifier_call_chain 736d6551e88SRussell King mov r0, r5 737d6551e88SRussell King ldmia r4, {r4 - sl, fp, sp, pc} @ Load all regs saved previously 738*c4c5716eSCatalin Marinas UNWIND(.fnend ) 73993ed3970SCatalin MarinasENDPROC(__switch_to) 7401da177e4SLinus Torvalds 7411da177e4SLinus Torvalds __INIT 7422d2669b6SNicolas Pitre 7432d2669b6SNicolas Pitre/* 7442d2669b6SNicolas Pitre * User helpers. 7452d2669b6SNicolas Pitre * 7462d2669b6SNicolas Pitre * These are segment of kernel provided user code reachable from user space 7472d2669b6SNicolas Pitre * at a fixed address in kernel memory. This is used to provide user space 7482d2669b6SNicolas Pitre * with some operations which require kernel help because of unimplemented 7492d2669b6SNicolas Pitre * native feature and/or instructions in many ARM CPUs. The idea is for 7502d2669b6SNicolas Pitre * this code to be executed directly in user mode for best efficiency but 7512d2669b6SNicolas Pitre * which is too intimate with the kernel counter part to be left to user 7522d2669b6SNicolas Pitre * libraries. In fact this code might even differ from one CPU to another 7532d2669b6SNicolas Pitre * depending on the available instruction set and restrictions like on 7542d2669b6SNicolas Pitre * SMP systems. In other words, the kernel reserves the right to change 7552d2669b6SNicolas Pitre * this code as needed without warning. Only the entry points and their 7562d2669b6SNicolas Pitre * results are guaranteed to be stable. 7572d2669b6SNicolas Pitre * 7582d2669b6SNicolas Pitre * Each segment is 32-byte aligned and will be moved to the top of the high 7592d2669b6SNicolas Pitre * vector page. New segments (if ever needed) must be added in front of 7602d2669b6SNicolas Pitre * existing ones. This mechanism should be used only for things that are 7612d2669b6SNicolas Pitre * really small and justified, and not be abused freely. 7622d2669b6SNicolas Pitre * 7632d2669b6SNicolas Pitre * User space is expected to implement those things inline when optimizing 7642d2669b6SNicolas Pitre * for a processor that has the necessary native support, but only if such 7652d2669b6SNicolas Pitre * resulting binaries are already to be incompatible with earlier ARM 7662d2669b6SNicolas Pitre * processors due to the use of unsupported instructions other than what 7672d2669b6SNicolas Pitre * is provided here. In other words don't make binaries unable to run on 7682d2669b6SNicolas Pitre * earlier processors just for the sake of not using these kernel helpers 7692d2669b6SNicolas Pitre * if your compiled code is not going to use the new instructions for other 7702d2669b6SNicolas Pitre * purpose. 7712d2669b6SNicolas Pitre */ 7722d2669b6SNicolas Pitre 773ba9b5d76SNicolas Pitre .macro usr_ret, reg 774ba9b5d76SNicolas Pitre#ifdef CONFIG_ARM_THUMB 775ba9b5d76SNicolas Pitre bx \reg 776ba9b5d76SNicolas Pitre#else 777ba9b5d76SNicolas Pitre mov pc, \reg 778ba9b5d76SNicolas Pitre#endif 779ba9b5d76SNicolas Pitre .endm 780ba9b5d76SNicolas Pitre 7812d2669b6SNicolas Pitre .align 5 7822d2669b6SNicolas Pitre .globl __kuser_helper_start 7832d2669b6SNicolas Pitre__kuser_helper_start: 7842d2669b6SNicolas Pitre 7852d2669b6SNicolas Pitre/* 7862d2669b6SNicolas Pitre * Reference prototype: 7872d2669b6SNicolas Pitre * 7887c612bfdSNicolas Pitre * void __kernel_memory_barrier(void) 7897c612bfdSNicolas Pitre * 7907c612bfdSNicolas Pitre * Input: 7917c612bfdSNicolas Pitre * 7927c612bfdSNicolas Pitre * lr = return address 7937c612bfdSNicolas Pitre * 7947c612bfdSNicolas Pitre * Output: 7957c612bfdSNicolas Pitre * 7967c612bfdSNicolas Pitre * none 7977c612bfdSNicolas Pitre * 7987c612bfdSNicolas Pitre * Clobbered: 7997c612bfdSNicolas Pitre * 800b49c0f24SNicolas Pitre * none 8017c612bfdSNicolas Pitre * 8027c612bfdSNicolas Pitre * Definition and user space usage example: 8037c612bfdSNicolas Pitre * 8047c612bfdSNicolas Pitre * typedef void (__kernel_dmb_t)(void); 8057c612bfdSNicolas Pitre * #define __kernel_dmb (*(__kernel_dmb_t *)0xffff0fa0) 8067c612bfdSNicolas Pitre * 8077c612bfdSNicolas Pitre * Apply any needed memory barrier to preserve consistency with data modified 8087c612bfdSNicolas Pitre * manually and __kuser_cmpxchg usage. 8097c612bfdSNicolas Pitre * 8107c612bfdSNicolas Pitre * This could be used as follows: 8117c612bfdSNicolas Pitre * 8127c612bfdSNicolas Pitre * #define __kernel_dmb() \ 8137c612bfdSNicolas Pitre * asm volatile ( "mov r0, #0xffff0fff; mov lr, pc; sub pc, r0, #95" \ 8146896eec0SPaul Brook * : : : "r0", "lr","cc" ) 8157c612bfdSNicolas Pitre */ 8167c612bfdSNicolas Pitre 8177c612bfdSNicolas Pitre__kuser_memory_barrier: @ 0xffff0fa0 8187c612bfdSNicolas Pitre 8197c612bfdSNicolas Pitre#if __LINUX_ARM_ARCH__ >= 6 && defined(CONFIG_SMP) 8207c612bfdSNicolas Pitre mcr p15, 0, r0, c7, c10, 5 @ dmb 8217c612bfdSNicolas Pitre#endif 822ba9b5d76SNicolas Pitre usr_ret lr 8237c612bfdSNicolas Pitre 8247c612bfdSNicolas Pitre .align 5 8257c612bfdSNicolas Pitre 8267c612bfdSNicolas Pitre/* 8277c612bfdSNicolas Pitre * Reference prototype: 8287c612bfdSNicolas Pitre * 8292d2669b6SNicolas Pitre * int __kernel_cmpxchg(int oldval, int newval, int *ptr) 8302d2669b6SNicolas Pitre * 8312d2669b6SNicolas Pitre * Input: 8322d2669b6SNicolas Pitre * 8332d2669b6SNicolas Pitre * r0 = oldval 8342d2669b6SNicolas Pitre * r1 = newval 8352d2669b6SNicolas Pitre * r2 = ptr 8362d2669b6SNicolas Pitre * lr = return address 8372d2669b6SNicolas Pitre * 8382d2669b6SNicolas Pitre * Output: 8392d2669b6SNicolas Pitre * 8402d2669b6SNicolas Pitre * r0 = returned value (zero or non-zero) 8412d2669b6SNicolas Pitre * C flag = set if r0 == 0, clear if r0 != 0 8422d2669b6SNicolas Pitre * 8432d2669b6SNicolas Pitre * Clobbered: 8442d2669b6SNicolas Pitre * 8452d2669b6SNicolas Pitre * r3, ip, flags 8462d2669b6SNicolas Pitre * 8472d2669b6SNicolas Pitre * Definition and user space usage example: 8482d2669b6SNicolas Pitre * 8492d2669b6SNicolas Pitre * typedef int (__kernel_cmpxchg_t)(int oldval, int newval, int *ptr); 8502d2669b6SNicolas Pitre * #define __kernel_cmpxchg (*(__kernel_cmpxchg_t *)0xffff0fc0) 8512d2669b6SNicolas Pitre * 8522d2669b6SNicolas Pitre * Atomically store newval in *ptr if *ptr is equal to oldval for user space. 8532d2669b6SNicolas Pitre * Return zero if *ptr was changed or non-zero if no exchange happened. 8542d2669b6SNicolas Pitre * The C flag is also set if *ptr was changed to allow for assembly 8552d2669b6SNicolas Pitre * optimization in the calling code. 8562d2669b6SNicolas Pitre * 8575964eae8SNicolas Pitre * Notes: 8585964eae8SNicolas Pitre * 8595964eae8SNicolas Pitre * - This routine already includes memory barriers as needed. 8605964eae8SNicolas Pitre * 8612d2669b6SNicolas Pitre * For example, a user space atomic_add implementation could look like this: 8622d2669b6SNicolas Pitre * 8632d2669b6SNicolas Pitre * #define atomic_add(ptr, val) \ 8642d2669b6SNicolas Pitre * ({ register unsigned int *__ptr asm("r2") = (ptr); \ 8652d2669b6SNicolas Pitre * register unsigned int __result asm("r1"); \ 8662d2669b6SNicolas Pitre * asm volatile ( \ 8672d2669b6SNicolas Pitre * "1: @ atomic_add\n\t" \ 8682d2669b6SNicolas Pitre * "ldr r0, [r2]\n\t" \ 8692d2669b6SNicolas Pitre * "mov r3, #0xffff0fff\n\t" \ 8702d2669b6SNicolas Pitre * "add lr, pc, #4\n\t" \ 8712d2669b6SNicolas Pitre * "add r1, r0, %2\n\t" \ 8722d2669b6SNicolas Pitre * "add pc, r3, #(0xffff0fc0 - 0xffff0fff)\n\t" \ 8732d2669b6SNicolas Pitre * "bcc 1b" \ 8742d2669b6SNicolas Pitre * : "=&r" (__result) \ 8752d2669b6SNicolas Pitre * : "r" (__ptr), "rIL" (val) \ 8762d2669b6SNicolas Pitre * : "r0","r3","ip","lr","cc","memory" ); \ 8772d2669b6SNicolas Pitre * __result; }) 8782d2669b6SNicolas Pitre */ 8792d2669b6SNicolas Pitre 8802d2669b6SNicolas Pitre__kuser_cmpxchg: @ 0xffff0fc0 8812d2669b6SNicolas Pitre 882dcef1f63SNicolas Pitre#if defined(CONFIG_NEEDS_SYSCALL_FOR_CMPXCHG) 8832d2669b6SNicolas Pitre 884dcef1f63SNicolas Pitre /* 885dcef1f63SNicolas Pitre * Poor you. No fast solution possible... 886dcef1f63SNicolas Pitre * The kernel itself must perform the operation. 887dcef1f63SNicolas Pitre * A special ghost syscall is used for that (see traps.c). 888dcef1f63SNicolas Pitre */ 8895e097445SNicolas Pitre stmfd sp!, {r7, lr} 8905e097445SNicolas Pitre mov r7, #0xff00 @ 0xfff0 into r7 for EABI 8915e097445SNicolas Pitre orr r7, r7, #0xf0 892dcef1f63SNicolas Pitre swi #0x9ffff0 8935e097445SNicolas Pitre ldmfd sp!, {r7, pc} 894dcef1f63SNicolas Pitre 895dcef1f63SNicolas Pitre#elif __LINUX_ARM_ARCH__ < 6 8962d2669b6SNicolas Pitre 89749bca4c2SNicolas Pitre#ifdef CONFIG_MMU 898b49c0f24SNicolas Pitre 899b49c0f24SNicolas Pitre /* 900b49c0f24SNicolas Pitre * The only thing that can break atomicity in this cmpxchg 901b49c0f24SNicolas Pitre * implementation is either an IRQ or a data abort exception 902b49c0f24SNicolas Pitre * causing another process/thread to be scheduled in the middle 903b49c0f24SNicolas Pitre * of the critical sequence. To prevent this, code is added to 904b49c0f24SNicolas Pitre * the IRQ and data abort exception handlers to set the pc back 905b49c0f24SNicolas Pitre * to the beginning of the critical section if it is found to be 906b49c0f24SNicolas Pitre * within that critical section (see kuser_cmpxchg_fixup). 907b49c0f24SNicolas Pitre */ 908b49c0f24SNicolas Pitre1: ldr r3, [r2] @ load current val 909b49c0f24SNicolas Pitre subs r3, r3, r0 @ compare with oldval 910b49c0f24SNicolas Pitre2: streq r1, [r2] @ store newval if eq 911b49c0f24SNicolas Pitre rsbs r0, r3, #0 @ set return val and C flag 912b49c0f24SNicolas Pitre usr_ret lr 913b49c0f24SNicolas Pitre 914b49c0f24SNicolas Pitre .text 915b49c0f24SNicolas Pitrekuser_cmpxchg_fixup: 916b49c0f24SNicolas Pitre @ Called from kuser_cmpxchg_check macro. 917b49c0f24SNicolas Pitre @ r2 = address of interrupted insn (must be preserved). 918b49c0f24SNicolas Pitre @ sp = saved regs. r7 and r8 are clobbered. 919b49c0f24SNicolas Pitre @ 1b = first critical insn, 2b = last critical insn. 920b49c0f24SNicolas Pitre @ If r2 >= 1b and r2 <= 2b then saved pc_usr is set to 1b. 921b49c0f24SNicolas Pitre mov r7, #0xffff0fff 922b49c0f24SNicolas Pitre sub r7, r7, #(0xffff0fff - (0xffff0fc0 + (1b - __kuser_cmpxchg))) 923b49c0f24SNicolas Pitre subs r8, r2, r7 924b49c0f24SNicolas Pitre rsbcss r8, r8, #(2b - 1b) 925b49c0f24SNicolas Pitre strcs r7, [sp, #S_PC] 926b49c0f24SNicolas Pitre mov pc, lr 927b49c0f24SNicolas Pitre .previous 928b49c0f24SNicolas Pitre 92949bca4c2SNicolas Pitre#else 93049bca4c2SNicolas Pitre#warning "NPTL on non MMU needs fixing" 93149bca4c2SNicolas Pitre mov r0, #-1 93249bca4c2SNicolas Pitre adds r0, r0, #0 933ba9b5d76SNicolas Pitre usr_ret lr 934b49c0f24SNicolas Pitre#endif 9352d2669b6SNicolas Pitre 9362d2669b6SNicolas Pitre#else 9372d2669b6SNicolas Pitre 9387c612bfdSNicolas Pitre#ifdef CONFIG_SMP 9397c612bfdSNicolas Pitre mcr p15, 0, r0, c7, c10, 5 @ dmb 9407c612bfdSNicolas Pitre#endif 941b49c0f24SNicolas Pitre1: ldrex r3, [r2] 9422d2669b6SNicolas Pitre subs r3, r3, r0 9432d2669b6SNicolas Pitre strexeq r3, r1, [r2] 944b49c0f24SNicolas Pitre teqeq r3, #1 945b49c0f24SNicolas Pitre beq 1b 9462d2669b6SNicolas Pitre rsbs r0, r3, #0 947b49c0f24SNicolas Pitre /* beware -- each __kuser slot must be 8 instructions max */ 9487c612bfdSNicolas Pitre#ifdef CONFIG_SMP 949b49c0f24SNicolas Pitre b __kuser_memory_barrier 950b49c0f24SNicolas Pitre#else 951ba9b5d76SNicolas Pitre usr_ret lr 952b49c0f24SNicolas Pitre#endif 9532d2669b6SNicolas Pitre 9542d2669b6SNicolas Pitre#endif 9552d2669b6SNicolas Pitre 9562d2669b6SNicolas Pitre .align 5 9572d2669b6SNicolas Pitre 9582d2669b6SNicolas Pitre/* 9592d2669b6SNicolas Pitre * Reference prototype: 9602d2669b6SNicolas Pitre * 9612d2669b6SNicolas Pitre * int __kernel_get_tls(void) 9622d2669b6SNicolas Pitre * 9632d2669b6SNicolas Pitre * Input: 9642d2669b6SNicolas Pitre * 9652d2669b6SNicolas Pitre * lr = return address 9662d2669b6SNicolas Pitre * 9672d2669b6SNicolas Pitre * Output: 9682d2669b6SNicolas Pitre * 9692d2669b6SNicolas Pitre * r0 = TLS value 9702d2669b6SNicolas Pitre * 9712d2669b6SNicolas Pitre * Clobbered: 9722d2669b6SNicolas Pitre * 973b49c0f24SNicolas Pitre * none 9742d2669b6SNicolas Pitre * 9752d2669b6SNicolas Pitre * Definition and user space usage example: 9762d2669b6SNicolas Pitre * 9772d2669b6SNicolas Pitre * typedef int (__kernel_get_tls_t)(void); 9782d2669b6SNicolas Pitre * #define __kernel_get_tls (*(__kernel_get_tls_t *)0xffff0fe0) 9792d2669b6SNicolas Pitre * 9802d2669b6SNicolas Pitre * Get the TLS value as previously set via the __ARM_NR_set_tls syscall. 9812d2669b6SNicolas Pitre * 9822d2669b6SNicolas Pitre * This could be used as follows: 9832d2669b6SNicolas Pitre * 9842d2669b6SNicolas Pitre * #define __kernel_get_tls() \ 9852d2669b6SNicolas Pitre * ({ register unsigned int __val asm("r0"); \ 9862d2669b6SNicolas Pitre * asm( "mov r0, #0xffff0fff; mov lr, pc; sub pc, r0, #31" \ 9872d2669b6SNicolas Pitre * : "=r" (__val) : : "lr","cc" ); \ 9882d2669b6SNicolas Pitre * __val; }) 9892d2669b6SNicolas Pitre */ 9902d2669b6SNicolas Pitre 9912d2669b6SNicolas Pitre__kuser_get_tls: @ 0xffff0fe0 9922d2669b6SNicolas Pitre 9934b0e07a5SNicolas Pitre#if !defined(CONFIG_HAS_TLS_REG) && !defined(CONFIG_TLS_REG_EMUL) 9942d2669b6SNicolas Pitre ldr r0, [pc, #(16 - 8)] @ TLS stored at 0xffff0ff0 9952d2669b6SNicolas Pitre#else 9962d2669b6SNicolas Pitre mrc p15, 0, r0, c13, c0, 3 @ read TLS register 9972d2669b6SNicolas Pitre#endif 998ba9b5d76SNicolas Pitre usr_ret lr 9992d2669b6SNicolas Pitre 10002d2669b6SNicolas Pitre .rep 5 10012d2669b6SNicolas Pitre .word 0 @ pad up to __kuser_helper_version 10022d2669b6SNicolas Pitre .endr 10032d2669b6SNicolas Pitre 10042d2669b6SNicolas Pitre/* 10052d2669b6SNicolas Pitre * Reference declaration: 10062d2669b6SNicolas Pitre * 10072d2669b6SNicolas Pitre * extern unsigned int __kernel_helper_version; 10082d2669b6SNicolas Pitre * 10092d2669b6SNicolas Pitre * Definition and user space usage example: 10102d2669b6SNicolas Pitre * 10112d2669b6SNicolas Pitre * #define __kernel_helper_version (*(unsigned int *)0xffff0ffc) 10122d2669b6SNicolas Pitre * 10132d2669b6SNicolas Pitre * User space may read this to determine the curent number of helpers 10142d2669b6SNicolas Pitre * available. 10152d2669b6SNicolas Pitre */ 10162d2669b6SNicolas Pitre 10172d2669b6SNicolas Pitre__kuser_helper_version: @ 0xffff0ffc 10182d2669b6SNicolas Pitre .word ((__kuser_helper_end - __kuser_helper_start) >> 5) 10192d2669b6SNicolas Pitre 10202d2669b6SNicolas Pitre .globl __kuser_helper_end 10212d2669b6SNicolas Pitre__kuser_helper_end: 10222d2669b6SNicolas Pitre 10232d2669b6SNicolas Pitre 10241da177e4SLinus Torvalds/* 10251da177e4SLinus Torvalds * Vector stubs. 10261da177e4SLinus Torvalds * 10277933523dSRussell King * This code is copied to 0xffff0200 so we can use branches in the 10287933523dSRussell King * vectors, rather than ldr's. Note that this code must not 10297933523dSRussell King * exceed 0x300 bytes. 10301da177e4SLinus Torvalds * 10311da177e4SLinus Torvalds * Common stub entry macro: 10321da177e4SLinus Torvalds * Enter in IRQ mode, spsr = SVC/USR CPSR, lr = SVC/USR PC 1033ccea7a19SRussell King * 1034ccea7a19SRussell King * SP points to a minimal amount of processor-private memory, the address 1035ccea7a19SRussell King * of which is copied into r0 for the mode specific abort handler. 10361da177e4SLinus Torvalds */ 1037b7ec4795SNicolas Pitre .macro vector_stub, name, mode, correction=0 10381da177e4SLinus Torvalds .align 5 10391da177e4SLinus Torvalds 10401da177e4SLinus Torvaldsvector_\name: 10411da177e4SLinus Torvalds .if \correction 10421da177e4SLinus Torvalds sub lr, lr, #\correction 10431da177e4SLinus Torvalds .endif 10441da177e4SLinus Torvalds 1045ccea7a19SRussell King @ 1046ccea7a19SRussell King @ Save r0, lr_<exception> (parent PC) and spsr_<exception> 1047ccea7a19SRussell King @ (parent CPSR) 1048ccea7a19SRussell King @ 1049ccea7a19SRussell King stmia sp, {r0, lr} @ save r0, lr 1050ccea7a19SRussell King mrs lr, spsr 1051ccea7a19SRussell King str lr, [sp, #8] @ save spsr 1052ccea7a19SRussell King 1053ccea7a19SRussell King @ 1054ccea7a19SRussell King @ Prepare for SVC32 mode. IRQs remain disabled. 1055ccea7a19SRussell King @ 1056ccea7a19SRussell King mrs r0, cpsr 1057b7ec4795SNicolas Pitre eor r0, r0, #(\mode ^ SVC_MODE) 1058ccea7a19SRussell King msr spsr_cxsf, r0 1059ccea7a19SRussell King 1060ccea7a19SRussell King @ 1061ccea7a19SRussell King @ the branch table must immediately follow this code 1062ccea7a19SRussell King @ 1063ccea7a19SRussell King and lr, lr, #0x0f 1064b7ec4795SNicolas Pitre mov r0, sp 10651da177e4SLinus Torvalds ldr lr, [pc, lr, lsl #2] 1066ccea7a19SRussell King movs pc, lr @ branch to handler in SVC mode 106793ed3970SCatalin MarinasENDPROC(vector_\name) 10681da177e4SLinus Torvalds .endm 10691da177e4SLinus Torvalds 10707933523dSRussell King .globl __stubs_start 10711da177e4SLinus Torvalds__stubs_start: 10721da177e4SLinus Torvalds/* 10731da177e4SLinus Torvalds * Interrupt dispatcher 10741da177e4SLinus Torvalds */ 1075b7ec4795SNicolas Pitre vector_stub irq, IRQ_MODE, 4 10761da177e4SLinus Torvalds 10771da177e4SLinus Torvalds .long __irq_usr @ 0 (USR_26 / USR_32) 10781da177e4SLinus Torvalds .long __irq_invalid @ 1 (FIQ_26 / FIQ_32) 10791da177e4SLinus Torvalds .long __irq_invalid @ 2 (IRQ_26 / IRQ_32) 10801da177e4SLinus Torvalds .long __irq_svc @ 3 (SVC_26 / SVC_32) 10811da177e4SLinus Torvalds .long __irq_invalid @ 4 10821da177e4SLinus Torvalds .long __irq_invalid @ 5 10831da177e4SLinus Torvalds .long __irq_invalid @ 6 10841da177e4SLinus Torvalds .long __irq_invalid @ 7 10851da177e4SLinus Torvalds .long __irq_invalid @ 8 10861da177e4SLinus Torvalds .long __irq_invalid @ 9 10871da177e4SLinus Torvalds .long __irq_invalid @ a 10881da177e4SLinus Torvalds .long __irq_invalid @ b 10891da177e4SLinus Torvalds .long __irq_invalid @ c 10901da177e4SLinus Torvalds .long __irq_invalid @ d 10911da177e4SLinus Torvalds .long __irq_invalid @ e 10921da177e4SLinus Torvalds .long __irq_invalid @ f 10931da177e4SLinus Torvalds 10941da177e4SLinus Torvalds/* 10951da177e4SLinus Torvalds * Data abort dispatcher 10961da177e4SLinus Torvalds * Enter in ABT mode, spsr = USR CPSR, lr = USR PC 10971da177e4SLinus Torvalds */ 1098b7ec4795SNicolas Pitre vector_stub dabt, ABT_MODE, 8 10991da177e4SLinus Torvalds 11001da177e4SLinus Torvalds .long __dabt_usr @ 0 (USR_26 / USR_32) 11011da177e4SLinus Torvalds .long __dabt_invalid @ 1 (FIQ_26 / FIQ_32) 11021da177e4SLinus Torvalds .long __dabt_invalid @ 2 (IRQ_26 / IRQ_32) 11031da177e4SLinus Torvalds .long __dabt_svc @ 3 (SVC_26 / SVC_32) 11041da177e4SLinus Torvalds .long __dabt_invalid @ 4 11051da177e4SLinus Torvalds .long __dabt_invalid @ 5 11061da177e4SLinus Torvalds .long __dabt_invalid @ 6 11071da177e4SLinus Torvalds .long __dabt_invalid @ 7 11081da177e4SLinus Torvalds .long __dabt_invalid @ 8 11091da177e4SLinus Torvalds .long __dabt_invalid @ 9 11101da177e4SLinus Torvalds .long __dabt_invalid @ a 11111da177e4SLinus Torvalds .long __dabt_invalid @ b 11121da177e4SLinus Torvalds .long __dabt_invalid @ c 11131da177e4SLinus Torvalds .long __dabt_invalid @ d 11141da177e4SLinus Torvalds .long __dabt_invalid @ e 11151da177e4SLinus Torvalds .long __dabt_invalid @ f 11161da177e4SLinus Torvalds 11171da177e4SLinus Torvalds/* 11181da177e4SLinus Torvalds * Prefetch abort dispatcher 11191da177e4SLinus Torvalds * Enter in ABT mode, spsr = USR CPSR, lr = USR PC 11201da177e4SLinus Torvalds */ 1121b7ec4795SNicolas Pitre vector_stub pabt, ABT_MODE, 4 11221da177e4SLinus Torvalds 11231da177e4SLinus Torvalds .long __pabt_usr @ 0 (USR_26 / USR_32) 11241da177e4SLinus Torvalds .long __pabt_invalid @ 1 (FIQ_26 / FIQ_32) 11251da177e4SLinus Torvalds .long __pabt_invalid @ 2 (IRQ_26 / IRQ_32) 11261da177e4SLinus Torvalds .long __pabt_svc @ 3 (SVC_26 / SVC_32) 11271da177e4SLinus Torvalds .long __pabt_invalid @ 4 11281da177e4SLinus Torvalds .long __pabt_invalid @ 5 11291da177e4SLinus Torvalds .long __pabt_invalid @ 6 11301da177e4SLinus Torvalds .long __pabt_invalid @ 7 11311da177e4SLinus Torvalds .long __pabt_invalid @ 8 11321da177e4SLinus Torvalds .long __pabt_invalid @ 9 11331da177e4SLinus Torvalds .long __pabt_invalid @ a 11341da177e4SLinus Torvalds .long __pabt_invalid @ b 11351da177e4SLinus Torvalds .long __pabt_invalid @ c 11361da177e4SLinus Torvalds .long __pabt_invalid @ d 11371da177e4SLinus Torvalds .long __pabt_invalid @ e 11381da177e4SLinus Torvalds .long __pabt_invalid @ f 11391da177e4SLinus Torvalds 11401da177e4SLinus Torvalds/* 11411da177e4SLinus Torvalds * Undef instr entry dispatcher 11421da177e4SLinus Torvalds * Enter in UND mode, spsr = SVC/USR CPSR, lr = SVC/USR PC 11431da177e4SLinus Torvalds */ 1144b7ec4795SNicolas Pitre vector_stub und, UND_MODE 11451da177e4SLinus Torvalds 11461da177e4SLinus Torvalds .long __und_usr @ 0 (USR_26 / USR_32) 11471da177e4SLinus Torvalds .long __und_invalid @ 1 (FIQ_26 / FIQ_32) 11481da177e4SLinus Torvalds .long __und_invalid @ 2 (IRQ_26 / IRQ_32) 11491da177e4SLinus Torvalds .long __und_svc @ 3 (SVC_26 / SVC_32) 11501da177e4SLinus Torvalds .long __und_invalid @ 4 11511da177e4SLinus Torvalds .long __und_invalid @ 5 11521da177e4SLinus Torvalds .long __und_invalid @ 6 11531da177e4SLinus Torvalds .long __und_invalid @ 7 11541da177e4SLinus Torvalds .long __und_invalid @ 8 11551da177e4SLinus Torvalds .long __und_invalid @ 9 11561da177e4SLinus Torvalds .long __und_invalid @ a 11571da177e4SLinus Torvalds .long __und_invalid @ b 11581da177e4SLinus Torvalds .long __und_invalid @ c 11591da177e4SLinus Torvalds .long __und_invalid @ d 11601da177e4SLinus Torvalds .long __und_invalid @ e 11611da177e4SLinus Torvalds .long __und_invalid @ f 11621da177e4SLinus Torvalds 11631da177e4SLinus Torvalds .align 5 11641da177e4SLinus Torvalds 11651da177e4SLinus Torvalds/*============================================================================= 11661da177e4SLinus Torvalds * Undefined FIQs 11671da177e4SLinus Torvalds *----------------------------------------------------------------------------- 11681da177e4SLinus Torvalds * Enter in FIQ mode, spsr = ANY CPSR, lr = ANY PC 11691da177e4SLinus Torvalds * MUST PRESERVE SVC SPSR, but need to switch to SVC mode to show our msg. 11701da177e4SLinus Torvalds * Basically to switch modes, we *HAVE* to clobber one register... brain 11711da177e4SLinus Torvalds * damage alert! I don't think that we can execute any code in here in any 11721da177e4SLinus Torvalds * other mode than FIQ... Ok you can switch to another mode, but you can't 11731da177e4SLinus Torvalds * get out of that mode without clobbering one register. 11741da177e4SLinus Torvalds */ 11751da177e4SLinus Torvaldsvector_fiq: 11761da177e4SLinus Torvalds disable_fiq 11771da177e4SLinus Torvalds subs pc, lr, #4 11781da177e4SLinus Torvalds 11791da177e4SLinus Torvalds/*============================================================================= 11801da177e4SLinus Torvalds * Address exception handler 11811da177e4SLinus Torvalds *----------------------------------------------------------------------------- 11821da177e4SLinus Torvalds * These aren't too critical. 11831da177e4SLinus Torvalds * (they're not supposed to happen, and won't happen in 32-bit data mode). 11841da177e4SLinus Torvalds */ 11851da177e4SLinus Torvalds 11861da177e4SLinus Torvaldsvector_addrexcptn: 11871da177e4SLinus Torvalds b vector_addrexcptn 11881da177e4SLinus Torvalds 11891da177e4SLinus Torvalds/* 11901da177e4SLinus Torvalds * We group all the following data together to optimise 11911da177e4SLinus Torvalds * for CPUs with separate I & D caches. 11921da177e4SLinus Torvalds */ 11931da177e4SLinus Torvalds .align 5 11941da177e4SLinus Torvalds 11951da177e4SLinus Torvalds.LCvswi: 11961da177e4SLinus Torvalds .word vector_swi 11971da177e4SLinus Torvalds 11987933523dSRussell King .globl __stubs_end 11991da177e4SLinus Torvalds__stubs_end: 12001da177e4SLinus Torvalds 12017933523dSRussell King .equ stubs_offset, __vectors_start + 0x200 - __stubs_start 12021da177e4SLinus Torvalds 12037933523dSRussell King .globl __vectors_start 12047933523dSRussell King__vectors_start: 12051da177e4SLinus Torvalds swi SYS_ERROR0 12067933523dSRussell King b vector_und + stubs_offset 12077933523dSRussell King ldr pc, .LCvswi + stubs_offset 12087933523dSRussell King b vector_pabt + stubs_offset 12097933523dSRussell King b vector_dabt + stubs_offset 12107933523dSRussell King b vector_addrexcptn + stubs_offset 12117933523dSRussell King b vector_irq + stubs_offset 12127933523dSRussell King b vector_fiq + stubs_offset 12131da177e4SLinus Torvalds 12147933523dSRussell King .globl __vectors_end 12157933523dSRussell King__vectors_end: 12161da177e4SLinus Torvalds 12171da177e4SLinus Torvalds .data 12181da177e4SLinus Torvalds 12191da177e4SLinus Torvalds .globl cr_alignment 12201da177e4SLinus Torvalds .globl cr_no_alignment 12211da177e4SLinus Torvaldscr_alignment: 12221da177e4SLinus Torvalds .space 4 12231da177e4SLinus Torvaldscr_no_alignment: 12241da177e4SLinus Torvalds .space 4 1225