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 189b9cf81aSPaul Gortmaker#include <linux/init.h> 199b9cf81aSPaul Gortmaker 206f6f6a70SRob Herring#include <asm/assembler.h> 21f09b9979SNicolas Pitre#include <asm/memory.h> 22753790e7SRussell King#include <asm/glue-df.h> 23753790e7SRussell King#include <asm/glue-pf.h> 241da177e4SLinus Torvalds#include <asm/vfpmacros.h> 25243c8654SRob Herring#ifndef CONFIG_MULTI_IRQ_HANDLER 26a09e64fbSRussell King#include <mach/entry-macro.S> 27243c8654SRob Herring#endif 28d6551e88SRussell King#include <asm/thread_notify.h> 29c4c5716eSCatalin Marinas#include <asm/unwind.h> 30cc20d429SRussell King#include <asm/unistd.h> 31f159f4edSTony Lindgren#include <asm/tls.h> 329f97da78SDavid Howells#include <asm/system_info.h> 331da177e4SLinus Torvalds 341da177e4SLinus Torvalds#include "entry-header.S" 35cd544ce7SMagnus Damm#include <asm/entry-macro-multi.S> 36a0266c21SWang Nan#include <asm/probes.h> 371da177e4SLinus Torvalds 381da177e4SLinus Torvalds/* 39d9600c99SRussell King * Interrupt handling. 40187a51adSRussell King */ 41187a51adSRussell King .macro irq_handler 4252108641Seric miao#ifdef CONFIG_MULTI_IRQ_HANDLER 43d9600c99SRussell King ldr r1, =handle_arch_irq 4452108641Seric miao mov r0, sp 4514327c66SRussell King badr lr, 9997f 46abeb24aeSMarc Zyngier ldr pc, [r1] 47abeb24aeSMarc Zyngier#else 48cd544ce7SMagnus Damm arch_irq_handler_default 49abeb24aeSMarc Zyngier#endif 50f00ec48fSRussell King9997: 51187a51adSRussell King .endm 52187a51adSRussell King 53ac8b9c1cSRussell King .macro pabt_helper 548dfe7ac9SRussell King @ PABORT handler takes pt_regs in r2, fault address in r4 and psr in r5 55ac8b9c1cSRussell King#ifdef MULTI_PABORT 560402beceSRussell King ldr ip, .LCprocfns 57ac8b9c1cSRussell King mov lr, pc 580402beceSRussell King ldr pc, [ip, #PROCESSOR_PABT_FUNC] 59ac8b9c1cSRussell King#else 60ac8b9c1cSRussell King bl CPU_PABORT_HANDLER 61ac8b9c1cSRussell King#endif 62ac8b9c1cSRussell King .endm 63ac8b9c1cSRussell King 64ac8b9c1cSRussell King .macro dabt_helper 65ac8b9c1cSRussell King 66ac8b9c1cSRussell King @ 67ac8b9c1cSRussell King @ Call the processor-specific abort handler: 68ac8b9c1cSRussell King @ 69da740472SRussell King @ r2 - pt_regs 703e287becSRussell King @ r4 - aborted context pc 713e287becSRussell King @ r5 - aborted context psr 72ac8b9c1cSRussell King @ 73ac8b9c1cSRussell King @ The abort handler must return the aborted address in r0, and 74ac8b9c1cSRussell King @ the fault status register in r1. r9 must be preserved. 75ac8b9c1cSRussell King @ 76ac8b9c1cSRussell King#ifdef MULTI_DABORT 770402beceSRussell King ldr ip, .LCprocfns 78ac8b9c1cSRussell King mov lr, pc 790402beceSRussell King ldr pc, [ip, #PROCESSOR_DABT_FUNC] 80ac8b9c1cSRussell King#else 81ac8b9c1cSRussell King bl CPU_DABORT_HANDLER 82ac8b9c1cSRussell King#endif 83ac8b9c1cSRussell King .endm 84ac8b9c1cSRussell King 85785d3cd2SNicolas Pitre#ifdef CONFIG_KPROBES 86785d3cd2SNicolas Pitre .section .kprobes.text,"ax",%progbits 87785d3cd2SNicolas Pitre#else 88785d3cd2SNicolas Pitre .text 89785d3cd2SNicolas Pitre#endif 90785d3cd2SNicolas Pitre 91187a51adSRussell King/* 921da177e4SLinus Torvalds * Invalid mode handlers 931da177e4SLinus Torvalds */ 94ccea7a19SRussell King .macro inv_entry, reason 95ccea7a19SRussell King sub sp, sp, #S_FRAME_SIZE 96b86040a5SCatalin Marinas ARM( stmib sp, {r1 - lr} ) 97b86040a5SCatalin Marinas THUMB( stmia sp, {r0 - r12} ) 98b86040a5SCatalin Marinas THUMB( str sp, [sp, #S_SP] ) 99b86040a5SCatalin Marinas THUMB( str lr, [sp, #S_LR] ) 1001da177e4SLinus Torvalds mov r1, #\reason 1011da177e4SLinus Torvalds .endm 1021da177e4SLinus Torvalds 1031da177e4SLinus Torvalds__pabt_invalid: 104ccea7a19SRussell King inv_entry BAD_PREFETCH 105ccea7a19SRussell King b common_invalid 10693ed3970SCatalin MarinasENDPROC(__pabt_invalid) 1071da177e4SLinus Torvalds 1081da177e4SLinus Torvalds__dabt_invalid: 109ccea7a19SRussell King inv_entry BAD_DATA 110ccea7a19SRussell King b common_invalid 11193ed3970SCatalin MarinasENDPROC(__dabt_invalid) 1121da177e4SLinus Torvalds 1131da177e4SLinus Torvalds__irq_invalid: 114ccea7a19SRussell King inv_entry BAD_IRQ 115ccea7a19SRussell King b common_invalid 11693ed3970SCatalin MarinasENDPROC(__irq_invalid) 1171da177e4SLinus Torvalds 1181da177e4SLinus Torvalds__und_invalid: 119ccea7a19SRussell King inv_entry BAD_UNDEFINSTR 1201da177e4SLinus Torvalds 121ccea7a19SRussell King @ 122ccea7a19SRussell King @ XXX fall through to common_invalid 123ccea7a19SRussell King @ 124ccea7a19SRussell King 125ccea7a19SRussell King@ 126ccea7a19SRussell King@ common_invalid - generic code for failed exception (re-entrant version of handlers) 127ccea7a19SRussell King@ 128ccea7a19SRussell Kingcommon_invalid: 129ccea7a19SRussell King zero_fp 130ccea7a19SRussell King 131ccea7a19SRussell King ldmia r0, {r4 - r6} 132ccea7a19SRussell King add r0, sp, #S_PC @ here for interlock avoidance 133ccea7a19SRussell King mov r7, #-1 @ "" "" "" "" 134ccea7a19SRussell King str r4, [sp] @ save preserved r0 135ccea7a19SRussell King stmia r0, {r5 - r7} @ lr_<exception>, 136ccea7a19SRussell King @ cpsr_<exception>, "old_r0" 137ccea7a19SRussell King 1381da177e4SLinus Torvalds mov r0, sp 1391da177e4SLinus Torvalds b bad_mode 14093ed3970SCatalin MarinasENDPROC(__und_invalid) 1411da177e4SLinus Torvalds 1421da177e4SLinus Torvalds/* 1431da177e4SLinus Torvalds * SVC mode handlers 1441da177e4SLinus Torvalds */ 1452dede2d8SNicolas Pitre 1462dede2d8SNicolas Pitre#if defined(CONFIG_AEABI) && (__LINUX_ARM_ARCH__ >= 5) 1472dede2d8SNicolas Pitre#define SPFIX(code...) code 1482dede2d8SNicolas Pitre#else 1492dede2d8SNicolas Pitre#define SPFIX(code...) 1502dede2d8SNicolas Pitre#endif 1512dede2d8SNicolas Pitre 152*2190fed6SRussell King .macro svc_entry, stack_hole=0, trace=1, uaccess=1 153c4c5716eSCatalin Marinas UNWIND(.fnstart ) 154c4c5716eSCatalin Marinas UNWIND(.save {r0 - pc} ) 155*2190fed6SRussell King sub sp, sp, #(S_FRAME_SIZE + 8 + \stack_hole - 4) 156b86040a5SCatalin Marinas#ifdef CONFIG_THUMB2_KERNEL 157b86040a5SCatalin Marinas SPFIX( str r0, [sp] ) @ temporarily saved 158b86040a5SCatalin Marinas SPFIX( mov r0, sp ) 159b86040a5SCatalin Marinas SPFIX( tst r0, #4 ) @ test original stack alignment 160b86040a5SCatalin Marinas SPFIX( ldr r0, [sp] ) @ restored 161b86040a5SCatalin Marinas#else 1622dede2d8SNicolas Pitre SPFIX( tst sp, #4 ) 163b86040a5SCatalin Marinas#endif 164b86040a5SCatalin Marinas SPFIX( subeq sp, sp, #4 ) 165b86040a5SCatalin Marinas stmia sp, {r1 - r12} 166ccea7a19SRussell King 167b059bdc3SRussell King ldmia r0, {r3 - r5} 168b059bdc3SRussell King add r7, sp, #S_SP - 4 @ here for interlock avoidance 169b059bdc3SRussell King mov r6, #-1 @ "" "" "" "" 170*2190fed6SRussell King add r2, sp, #(S_FRAME_SIZE + 8 + \stack_hole - 4) 171b059bdc3SRussell King SPFIX( addeq r2, r2, #4 ) 172b059bdc3SRussell King str r3, [sp, #-4]! @ save the "real" r0 copied 173ccea7a19SRussell King @ from the exception stack 174ccea7a19SRussell King 175b059bdc3SRussell King mov r3, lr 1761da177e4SLinus Torvalds 1771da177e4SLinus Torvalds @ 1781da177e4SLinus Torvalds @ We are now ready to fill in the remaining blanks on the stack: 1791da177e4SLinus Torvalds @ 180b059bdc3SRussell King @ r2 - sp_svc 181b059bdc3SRussell King @ r3 - lr_svc 182b059bdc3SRussell King @ r4 - lr_<exception>, already fixed up for correct return/restart 183b059bdc3SRussell King @ r5 - spsr_<exception> 184b059bdc3SRussell King @ r6 - orig_r0 (see pt_regs definition in ptrace.h) 1851da177e4SLinus Torvalds @ 186b059bdc3SRussell King stmia r7, {r2 - r6} 187f2741b78SRussell King 188*2190fed6SRussell King uaccess_save r0 189*2190fed6SRussell King .if \uaccess 190*2190fed6SRussell King uaccess_disable r0 191*2190fed6SRussell King .endif 192*2190fed6SRussell King 193c0e7f7eeSDaniel Thompson .if \trace 194f2741b78SRussell King#ifdef CONFIG_TRACE_IRQFLAGS 195f2741b78SRussell King bl trace_hardirqs_off 196f2741b78SRussell King#endif 197c0e7f7eeSDaniel Thompson .endif 1981da177e4SLinus Torvalds .endm 1991da177e4SLinus Torvalds 2001da177e4SLinus Torvalds .align 5 2011da177e4SLinus Torvalds__dabt_svc: 202*2190fed6SRussell King svc_entry uaccess=0 2031da177e4SLinus Torvalds mov r2, sp 204da740472SRussell King dabt_helper 205e16b31bfSMarc Zyngier THUMB( ldr r5, [sp, #S_PSR] ) @ potentially updated CPSR 206b059bdc3SRussell King svc_exit r5 @ return from exception 207c4c5716eSCatalin Marinas UNWIND(.fnend ) 20893ed3970SCatalin MarinasENDPROC(__dabt_svc) 2091da177e4SLinus Torvalds 2101da177e4SLinus Torvalds .align 5 2111da177e4SLinus Torvalds__irq_svc: 212ccea7a19SRussell King svc_entry 2131613cc11SRussell King irq_handler 2141613cc11SRussell King 2151da177e4SLinus Torvalds#ifdef CONFIG_PREEMPT 216706fdd9fSRussell King get_thread_info tsk 217706fdd9fSRussell King ldr r8, [tsk, #TI_PREEMPT] @ get preempt count 218706fdd9fSRussell King ldr r0, [tsk, #TI_FLAGS] @ get flags 21928fab1a2SRussell King teq r8, #0 @ if preempt count != 0 22028fab1a2SRussell King movne r0, #0 @ force flags to 0 2211da177e4SLinus Torvalds tst r0, #_TIF_NEED_RESCHED 2221da177e4SLinus Torvalds blne svc_preempt 2231da177e4SLinus Torvalds#endif 22430891c90SRussell King 2259b56febeSRussell King svc_exit r5, irq = 1 @ return from exception 226c4c5716eSCatalin Marinas UNWIND(.fnend ) 22793ed3970SCatalin MarinasENDPROC(__irq_svc) 2281da177e4SLinus Torvalds 2291da177e4SLinus Torvalds .ltorg 2301da177e4SLinus Torvalds 2311da177e4SLinus Torvalds#ifdef CONFIG_PREEMPT 2321da177e4SLinus Torvaldssvc_preempt: 23328fab1a2SRussell King mov r8, lr 2341da177e4SLinus Torvalds1: bl preempt_schedule_irq @ irq en/disable is done inside 235706fdd9fSRussell King ldr r0, [tsk, #TI_FLAGS] @ get new tasks TI_FLAGS 2361da177e4SLinus Torvalds tst r0, #_TIF_NEED_RESCHED 2376ebbf2ceSRussell King reteq r8 @ go again 2381da177e4SLinus Torvalds b 1b 2391da177e4SLinus Torvalds#endif 2401da177e4SLinus Torvalds 24115ac49b6SRussell King__und_fault: 24215ac49b6SRussell King @ Correct the PC such that it is pointing at the instruction 24315ac49b6SRussell King @ which caused the fault. If the faulting instruction was ARM 24415ac49b6SRussell King @ the PC will be pointing at the next instruction, and have to 24515ac49b6SRussell King @ subtract 4. Otherwise, it is Thumb, and the PC will be 24615ac49b6SRussell King @ pointing at the second half of the Thumb instruction. We 24715ac49b6SRussell King @ have to subtract 2. 24815ac49b6SRussell King ldr r2, [r0, #S_PC] 24915ac49b6SRussell King sub r2, r2, r1 25015ac49b6SRussell King str r2, [r0, #S_PC] 25115ac49b6SRussell King b do_undefinstr 25215ac49b6SRussell KingENDPROC(__und_fault) 25315ac49b6SRussell King 2541da177e4SLinus Torvalds .align 5 2551da177e4SLinus Torvalds__und_svc: 256d30a0c8bSNicolas Pitre#ifdef CONFIG_KPROBES 257d30a0c8bSNicolas Pitre @ If a kprobe is about to simulate a "stmdb sp..." instruction, 258d30a0c8bSNicolas Pitre @ it obviously needs free stack space which then will belong to 259d30a0c8bSNicolas Pitre @ the saved context. 260a0266c21SWang Nan svc_entry MAX_STACK_SIZE 261d30a0c8bSNicolas Pitre#else 262ccea7a19SRussell King svc_entry 263d30a0c8bSNicolas Pitre#endif 2641da177e4SLinus Torvalds @ 2651da177e4SLinus Torvalds @ call emulation code, which returns using r9 if it has emulated 2661da177e4SLinus Torvalds @ the instruction, or the more conventional lr if we are to treat 2671da177e4SLinus Torvalds @ this as a real undefined instruction 2681da177e4SLinus Torvalds @ 2691da177e4SLinus Torvalds @ r0 - instruction 2701da177e4SLinus Torvalds @ 27183e686eaSCatalin Marinas#ifndef CONFIG_THUMB2_KERNEL 272b059bdc3SRussell King ldr r0, [r4, #-4] 27383e686eaSCatalin Marinas#else 27415ac49b6SRussell King mov r1, #2 275b059bdc3SRussell King ldrh r0, [r4, #-2] @ Thumb instruction at LR - 2 27685519189SDave Martin cmp r0, #0xe800 @ 32-bit instruction if xx >= 0 27715ac49b6SRussell King blo __und_svc_fault 27815ac49b6SRussell King ldrh r9, [r4] @ bottom 16 bits 27915ac49b6SRussell King add r4, r4, #2 28015ac49b6SRussell King str r4, [sp, #S_PC] 28115ac49b6SRussell King orr r0, r9, r0, lsl #16 28283e686eaSCatalin Marinas#endif 28314327c66SRussell King badr r9, __und_svc_finish 284b059bdc3SRussell King mov r2, r4 2851da177e4SLinus Torvalds bl call_fpe 2861da177e4SLinus Torvalds 28715ac49b6SRussell King mov r1, #4 @ PC correction to apply 28815ac49b6SRussell King__und_svc_fault: 2891da177e4SLinus Torvalds mov r0, sp @ struct pt_regs *regs 29015ac49b6SRussell King bl __und_fault 2911da177e4SLinus Torvalds 29215ac49b6SRussell King__und_svc_finish: 293b059bdc3SRussell King ldr r5, [sp, #S_PSR] @ Get SVC cpsr 294b059bdc3SRussell King svc_exit r5 @ return from exception 295c4c5716eSCatalin Marinas UNWIND(.fnend ) 29693ed3970SCatalin MarinasENDPROC(__und_svc) 2971da177e4SLinus Torvalds 2981da177e4SLinus Torvalds .align 5 2991da177e4SLinus Torvalds__pabt_svc: 300ccea7a19SRussell King svc_entry 3014fb28474SKirill A. Shutemov mov r2, sp @ regs 3028dfe7ac9SRussell King pabt_helper 303b059bdc3SRussell King svc_exit r5 @ return from exception 304c4c5716eSCatalin Marinas UNWIND(.fnend ) 30593ed3970SCatalin MarinasENDPROC(__pabt_svc) 3061da177e4SLinus Torvalds 3071da177e4SLinus Torvalds .align 5 308c0e7f7eeSDaniel Thompson__fiq_svc: 309c0e7f7eeSDaniel Thompson svc_entry trace=0 310c0e7f7eeSDaniel Thompson mov r0, sp @ struct pt_regs *regs 311c0e7f7eeSDaniel Thompson bl handle_fiq_as_nmi 312c0e7f7eeSDaniel Thompson svc_exit_via_fiq 313c0e7f7eeSDaniel Thompson UNWIND(.fnend ) 314c0e7f7eeSDaniel ThompsonENDPROC(__fiq_svc) 315c0e7f7eeSDaniel Thompson 316c0e7f7eeSDaniel Thompson .align 5 31749f680eaSRussell King.LCcralign: 31849f680eaSRussell King .word cr_alignment 31948d7927bSPaul Brook#ifdef MULTI_DABORT 3201da177e4SLinus Torvalds.LCprocfns: 3211da177e4SLinus Torvalds .word processor 3221da177e4SLinus Torvalds#endif 3231da177e4SLinus Torvalds.LCfp: 3241da177e4SLinus Torvalds .word fp_enter 3251da177e4SLinus Torvalds 3261da177e4SLinus Torvalds/* 327c0e7f7eeSDaniel Thompson * Abort mode handlers 328c0e7f7eeSDaniel Thompson */ 329c0e7f7eeSDaniel Thompson 330c0e7f7eeSDaniel Thompson@ 331c0e7f7eeSDaniel Thompson@ Taking a FIQ in abort mode is similar to taking a FIQ in SVC mode 332c0e7f7eeSDaniel Thompson@ and reuses the same macros. However in abort mode we must also 333c0e7f7eeSDaniel Thompson@ save/restore lr_abt and spsr_abt to make nested aborts safe. 334c0e7f7eeSDaniel Thompson@ 335c0e7f7eeSDaniel Thompson .align 5 336c0e7f7eeSDaniel Thompson__fiq_abt: 337c0e7f7eeSDaniel Thompson svc_entry trace=0 338c0e7f7eeSDaniel Thompson 339c0e7f7eeSDaniel Thompson ARM( msr cpsr_c, #ABT_MODE | PSR_I_BIT | PSR_F_BIT ) 340c0e7f7eeSDaniel Thompson THUMB( mov r0, #ABT_MODE | PSR_I_BIT | PSR_F_BIT ) 341c0e7f7eeSDaniel Thompson THUMB( msr cpsr_c, r0 ) 342c0e7f7eeSDaniel Thompson mov r1, lr @ Save lr_abt 343c0e7f7eeSDaniel Thompson mrs r2, spsr @ Save spsr_abt, abort is now safe 344c0e7f7eeSDaniel Thompson ARM( msr cpsr_c, #SVC_MODE | PSR_I_BIT | PSR_F_BIT ) 345c0e7f7eeSDaniel Thompson THUMB( mov r0, #SVC_MODE | PSR_I_BIT | PSR_F_BIT ) 346c0e7f7eeSDaniel Thompson THUMB( msr cpsr_c, r0 ) 347c0e7f7eeSDaniel Thompson stmfd sp!, {r1 - r2} 348c0e7f7eeSDaniel Thompson 349c0e7f7eeSDaniel Thompson add r0, sp, #8 @ struct pt_regs *regs 350c0e7f7eeSDaniel Thompson bl handle_fiq_as_nmi 351c0e7f7eeSDaniel Thompson 352c0e7f7eeSDaniel Thompson ldmfd sp!, {r1 - r2} 353c0e7f7eeSDaniel Thompson ARM( msr cpsr_c, #ABT_MODE | PSR_I_BIT | PSR_F_BIT ) 354c0e7f7eeSDaniel Thompson THUMB( mov r0, #ABT_MODE | PSR_I_BIT | PSR_F_BIT ) 355c0e7f7eeSDaniel Thompson THUMB( msr cpsr_c, r0 ) 356c0e7f7eeSDaniel Thompson mov lr, r1 @ Restore lr_abt, abort is unsafe 357c0e7f7eeSDaniel Thompson msr spsr_cxsf, r2 @ Restore spsr_abt 358c0e7f7eeSDaniel Thompson ARM( msr cpsr_c, #SVC_MODE | PSR_I_BIT | PSR_F_BIT ) 359c0e7f7eeSDaniel Thompson THUMB( mov r0, #SVC_MODE | PSR_I_BIT | PSR_F_BIT ) 360c0e7f7eeSDaniel Thompson THUMB( msr cpsr_c, r0 ) 361c0e7f7eeSDaniel Thompson 362c0e7f7eeSDaniel Thompson svc_exit_via_fiq 363c0e7f7eeSDaniel Thompson UNWIND(.fnend ) 364c0e7f7eeSDaniel ThompsonENDPROC(__fiq_abt) 365c0e7f7eeSDaniel Thompson 366c0e7f7eeSDaniel Thompson/* 3671da177e4SLinus Torvalds * User mode handlers 3682dede2d8SNicolas Pitre * 3692dede2d8SNicolas Pitre * EABI note: sp_svc is always 64-bit aligned here, so should S_FRAME_SIZE 3701da177e4SLinus Torvalds */ 3712dede2d8SNicolas Pitre 3722dede2d8SNicolas Pitre#if defined(CONFIG_AEABI) && (__LINUX_ARM_ARCH__ >= 5) && (S_FRAME_SIZE & 7) 3732dede2d8SNicolas Pitre#error "sizeof(struct pt_regs) must be a multiple of 8" 3742dede2d8SNicolas Pitre#endif 3752dede2d8SNicolas Pitre 376*2190fed6SRussell King .macro usr_entry, trace=1, uaccess=1 377c4c5716eSCatalin Marinas UNWIND(.fnstart ) 378c4c5716eSCatalin Marinas UNWIND(.cantunwind ) @ don't unwind the user space 379ccea7a19SRussell King sub sp, sp, #S_FRAME_SIZE 380b86040a5SCatalin Marinas ARM( stmib sp, {r1 - r12} ) 381b86040a5SCatalin Marinas THUMB( stmia sp, {r0 - r12} ) 382ccea7a19SRussell King 383195b58adSRussell King ATRAP( mrc p15, 0, r7, c1, c0, 0) 384195b58adSRussell King ATRAP( ldr r8, .LCcralign) 385195b58adSRussell King 386b059bdc3SRussell King ldmia r0, {r3 - r5} 387ccea7a19SRussell King add r0, sp, #S_PC @ here for interlock avoidance 388b059bdc3SRussell King mov r6, #-1 @ "" "" "" "" 389ccea7a19SRussell King 390b059bdc3SRussell King str r3, [sp] @ save the "real" r0 copied 391ccea7a19SRussell King @ from the exception stack 3921da177e4SLinus Torvalds 393195b58adSRussell King ATRAP( ldr r8, [r8, #0]) 394195b58adSRussell King 3951da177e4SLinus Torvalds @ 3961da177e4SLinus Torvalds @ We are now ready to fill in the remaining blanks on the stack: 3971da177e4SLinus Torvalds @ 398b059bdc3SRussell King @ r4 - lr_<exception>, already fixed up for correct return/restart 399b059bdc3SRussell King @ r5 - spsr_<exception> 400b059bdc3SRussell King @ r6 - orig_r0 (see pt_regs definition in ptrace.h) 4011da177e4SLinus Torvalds @ 4021da177e4SLinus Torvalds @ Also, separately save sp_usr and lr_usr 4031da177e4SLinus Torvalds @ 404b059bdc3SRussell King stmia r0, {r4 - r6} 405b86040a5SCatalin Marinas ARM( stmdb r0, {sp, lr}^ ) 406b86040a5SCatalin Marinas THUMB( store_user_sp_lr r0, r1, S_SP - S_PC ) 4071da177e4SLinus Torvalds 408*2190fed6SRussell King .if \uaccess 409*2190fed6SRussell King uaccess_disable ip 410*2190fed6SRussell King .endif 411*2190fed6SRussell King 4121da177e4SLinus Torvalds @ Enable the alignment trap while in kernel mode 413195b58adSRussell King ATRAP( teq r8, r7) 414195b58adSRussell King ATRAP( mcrne p15, 0, r8, c1, c0, 0) 4151da177e4SLinus Torvalds 4161da177e4SLinus Torvalds @ 4171da177e4SLinus Torvalds @ Clear FP to mark the first stack frame 4181da177e4SLinus Torvalds @ 4191da177e4SLinus Torvalds zero_fp 420f2741b78SRussell King 421c0e7f7eeSDaniel Thompson .if \trace 422f2741b78SRussell King#ifdef CONFIG_IRQSOFF_TRACER 423f2741b78SRussell King bl trace_hardirqs_off 424f2741b78SRussell King#endif 425b0088480SKevin Hilman ct_user_exit save = 0 426c0e7f7eeSDaniel Thompson .endif 4271da177e4SLinus Torvalds .endm 4281da177e4SLinus Torvalds 429b49c0f24SNicolas Pitre .macro kuser_cmpxchg_check 4301b16c4bcSRussell King#if !defined(CONFIG_CPU_32v6K) && defined(CONFIG_KUSER_HELPERS) && \ 4311b16c4bcSRussell King !defined(CONFIG_NEEDS_SYSCALL_FOR_CMPXCHG) 432b49c0f24SNicolas Pitre#ifndef CONFIG_MMU 433b49c0f24SNicolas Pitre#warning "NPTL on non MMU needs fixing" 434b49c0f24SNicolas Pitre#else 435b49c0f24SNicolas Pitre @ Make sure our user space atomic helper is restarted 436b49c0f24SNicolas Pitre @ if it was interrupted in a critical region. Here we 437b49c0f24SNicolas Pitre @ perform a quick test inline since it should be false 438b49c0f24SNicolas Pitre @ 99.9999% of the time. The rest is done out of line. 439b059bdc3SRussell King cmp r4, #TASK_SIZE 44040fb79c8SNicolas Pitre blhs kuser_cmpxchg64_fixup 441b49c0f24SNicolas Pitre#endif 442b49c0f24SNicolas Pitre#endif 443b49c0f24SNicolas Pitre .endm 444b49c0f24SNicolas Pitre 4451da177e4SLinus Torvalds .align 5 4461da177e4SLinus Torvalds__dabt_usr: 447*2190fed6SRussell King usr_entry uaccess=0 448b49c0f24SNicolas Pitre kuser_cmpxchg_check 4491da177e4SLinus Torvalds mov r2, sp 450da740472SRussell King dabt_helper 451da740472SRussell King b ret_from_exception 452c4c5716eSCatalin Marinas UNWIND(.fnend ) 45393ed3970SCatalin MarinasENDPROC(__dabt_usr) 4541da177e4SLinus Torvalds 4551da177e4SLinus Torvalds .align 5 4561da177e4SLinus Torvalds__irq_usr: 457ccea7a19SRussell King usr_entry 458bc089602SRussell King kuser_cmpxchg_check 459187a51adSRussell King irq_handler 4601613cc11SRussell King get_thread_info tsk 4611da177e4SLinus Torvalds mov why, #0 4629fc2552aSMing Lei b ret_to_user_from_irq 463c4c5716eSCatalin Marinas UNWIND(.fnend ) 46493ed3970SCatalin MarinasENDPROC(__irq_usr) 4651da177e4SLinus Torvalds 4661da177e4SLinus Torvalds .ltorg 4671da177e4SLinus Torvalds 4681da177e4SLinus Torvalds .align 5 4691da177e4SLinus Torvalds__und_usr: 470*2190fed6SRussell King usr_entry uaccess=0 471bc089602SRussell King 472b059bdc3SRussell King mov r2, r4 473b059bdc3SRussell King mov r3, r5 4741da177e4SLinus Torvalds 47515ac49b6SRussell King @ r2 = regs->ARM_pc, which is either 2 or 4 bytes ahead of the 47615ac49b6SRussell King @ faulting instruction depending on Thumb mode. 47715ac49b6SRussell King @ r3 = regs->ARM_cpsr 4781da177e4SLinus Torvalds @ 47915ac49b6SRussell King @ The emulation code returns using r9 if it has emulated the 48015ac49b6SRussell King @ instruction, or the more conventional lr if we are to treat 48115ac49b6SRussell King @ this as a real undefined instruction 4821da177e4SLinus Torvalds @ 48314327c66SRussell King badr r9, ret_from_exception 48415ac49b6SRussell King 4851417a6b8SCatalin Marinas @ IRQs must be enabled before attempting to read the instruction from 4861417a6b8SCatalin Marinas @ user space since that could cause a page/translation fault if the 4871417a6b8SCatalin Marinas @ page table was modified by another CPU. 4881417a6b8SCatalin Marinas enable_irq 4891417a6b8SCatalin Marinas 490cb170a45SPaul Brook tst r3, #PSR_T_BIT @ Thumb mode? 49115ac49b6SRussell King bne __und_usr_thumb 49215ac49b6SRussell King sub r4, r2, #4 @ ARM instr at LR - 4 49315ac49b6SRussell King1: ldrt r0, [r4] 494457c2403SBen Dooks ARM_BE8(rev r0, r0) @ little endian instruction 495457c2403SBen Dooks 496*2190fed6SRussell King uaccess_disable ip 497*2190fed6SRussell King 49815ac49b6SRussell King @ r0 = 32-bit ARM instruction which caused the exception 49915ac49b6SRussell King @ r2 = PC value for the following instruction (:= regs->ARM_pc) 50015ac49b6SRussell King @ r4 = PC value for the faulting instruction 50115ac49b6SRussell King @ lr = 32-bit undefined instruction function 50214327c66SRussell King badr lr, __und_usr_fault_32 50315ac49b6SRussell King b call_fpe 50415ac49b6SRussell King 50515ac49b6SRussell King__und_usr_thumb: 506cb170a45SPaul Brook @ Thumb instruction 50715ac49b6SRussell King sub r4, r2, #2 @ First half of thumb instr at LR - 2 508ef4c5368SDave Martin#if CONFIG_ARM_THUMB && __LINUX_ARM_ARCH__ >= 6 && CONFIG_CPU_V7 509ef4c5368SDave Martin/* 510ef4c5368SDave Martin * Thumb-2 instruction handling. Note that because pre-v6 and >= v6 platforms 511ef4c5368SDave Martin * can never be supported in a single kernel, this code is not applicable at 512ef4c5368SDave Martin * all when __LINUX_ARM_ARCH__ < 6. This allows simplifying assumptions to be 513ef4c5368SDave Martin * made about .arch directives. 514ef4c5368SDave Martin */ 515ef4c5368SDave Martin#if __LINUX_ARM_ARCH__ < 7 516ef4c5368SDave Martin/* If the target CPU may not be Thumb-2-capable, a run-time check is needed: */ 517ef4c5368SDave Martin#define NEED_CPU_ARCHITECTURE 518ef4c5368SDave Martin ldr r5, .LCcpu_architecture 519ef4c5368SDave Martin ldr r5, [r5] 520ef4c5368SDave Martin cmp r5, #CPU_ARCH_ARMv7 52115ac49b6SRussell King blo __und_usr_fault_16 @ 16bit undefined instruction 522ef4c5368SDave Martin/* 523ef4c5368SDave Martin * The following code won't get run unless the running CPU really is v7, so 524ef4c5368SDave Martin * coding round the lack of ldrht on older arches is pointless. Temporarily 525ef4c5368SDave Martin * override the assembler target arch with the minimum required instead: 526ef4c5368SDave Martin */ 527ef4c5368SDave Martin .arch armv6t2 528ef4c5368SDave Martin#endif 52915ac49b6SRussell King2: ldrht r5, [r4] 530f8fe23ecSVictor KamenskyARM_BE8(rev16 r5, r5) @ little endian instruction 53185519189SDave Martin cmp r5, #0xe800 @ 32bit instruction if xx != 0 532*2190fed6SRussell King blo __und_usr_fault_16_pan @ 16bit undefined instruction 53315ac49b6SRussell King3: ldrht r0, [r2] 534f8fe23ecSVictor KamenskyARM_BE8(rev16 r0, r0) @ little endian instruction 535*2190fed6SRussell King uaccess_disable ip 536cb170a45SPaul Brook add r2, r2, #2 @ r2 is PC + 2, make it PC + 4 53715ac49b6SRussell King str r2, [sp, #S_PC] @ it's a 2x16bit instr, update 538cb170a45SPaul Brook orr r0, r0, r5, lsl #16 53914327c66SRussell King badr lr, __und_usr_fault_32 54015ac49b6SRussell King @ r0 = the two 16-bit Thumb instructions which caused the exception 54115ac49b6SRussell King @ r2 = PC value for the following Thumb instruction (:= regs->ARM_pc) 54215ac49b6SRussell King @ r4 = PC value for the first 16-bit Thumb instruction 54315ac49b6SRussell King @ lr = 32bit undefined instruction function 544ef4c5368SDave Martin 545ef4c5368SDave Martin#if __LINUX_ARM_ARCH__ < 7 546ef4c5368SDave Martin/* If the target arch was overridden, change it back: */ 547ef4c5368SDave Martin#ifdef CONFIG_CPU_32v6K 548ef4c5368SDave Martin .arch armv6k 549cb170a45SPaul Brook#else 550ef4c5368SDave Martin .arch armv6 551ef4c5368SDave Martin#endif 552ef4c5368SDave Martin#endif /* __LINUX_ARM_ARCH__ < 7 */ 553ef4c5368SDave Martin#else /* !(CONFIG_ARM_THUMB && __LINUX_ARM_ARCH__ >= 6 && CONFIG_CPU_V7) */ 55415ac49b6SRussell King b __und_usr_fault_16 555cb170a45SPaul Brook#endif 556c4c5716eSCatalin Marinas UNWIND(.fnend) 55793ed3970SCatalin MarinasENDPROC(__und_usr) 558cb170a45SPaul Brook 5591da177e4SLinus Torvalds/* 56015ac49b6SRussell King * The out of line fixup for the ldrt instructions above. 5611da177e4SLinus Torvalds */ 562c4a84ae3SArd Biesheuvel .pushsection .text.fixup, "ax" 563667d1b48SWill Deacon .align 2 5643780f7abSArun K S4: str r4, [sp, #S_PC] @ retry current instruction 5656ebbf2ceSRussell King ret r9 5664260415fSRussell King .popsection 5674260415fSRussell King .pushsection __ex_table,"a" 568cb170a45SPaul Brook .long 1b, 4b 569c89cefedSGuennadi Liakhovetski#if CONFIG_ARM_THUMB && __LINUX_ARM_ARCH__ >= 6 && CONFIG_CPU_V7 570cb170a45SPaul Brook .long 2b, 4b 571cb170a45SPaul Brook .long 3b, 4b 572cb170a45SPaul Brook#endif 5734260415fSRussell King .popsection 5741da177e4SLinus Torvalds 5751da177e4SLinus Torvalds/* 5761da177e4SLinus Torvalds * Check whether the instruction is a co-processor instruction. 5771da177e4SLinus Torvalds * If yes, we need to call the relevant co-processor handler. 5781da177e4SLinus Torvalds * 5791da177e4SLinus Torvalds * Note that we don't do a full check here for the co-processor 5801da177e4SLinus Torvalds * instructions; all instructions with bit 27 set are well 5811da177e4SLinus Torvalds * defined. The only instructions that should fault are the 5821da177e4SLinus Torvalds * co-processor instructions. However, we have to watch out 5831da177e4SLinus Torvalds * for the ARM6/ARM7 SWI bug. 5841da177e4SLinus Torvalds * 585b5872db4SCatalin Marinas * NEON is a special case that has to be handled here. Not all 586b5872db4SCatalin Marinas * NEON instructions are co-processor instructions, so we have 587b5872db4SCatalin Marinas * to make a special case of checking for them. Plus, there's 588b5872db4SCatalin Marinas * five groups of them, so we have a table of mask/opcode pairs 589b5872db4SCatalin Marinas * to check against, and if any match then we branch off into the 590b5872db4SCatalin Marinas * NEON handler code. 591b5872db4SCatalin Marinas * 5921da177e4SLinus Torvalds * Emulators may wish to make use of the following registers: 59315ac49b6SRussell King * r0 = instruction opcode (32-bit ARM or two 16-bit Thumb) 59415ac49b6SRussell King * r2 = PC value to resume execution after successful emulation 595db6ccbb6SRussell King * r9 = normal "successful" return address 59615ac49b6SRussell King * r10 = this threads thread_info structure 597db6ccbb6SRussell King * lr = unrecognised instruction return address 5981417a6b8SCatalin Marinas * IRQs enabled, FIQs enabled. 5991da177e4SLinus Torvalds */ 600cb170a45SPaul Brook @ 601cb170a45SPaul Brook @ Fall-through from Thumb-2 __und_usr 602cb170a45SPaul Brook @ 603cb170a45SPaul Brook#ifdef CONFIG_NEON 604d3f79584SRussell King get_thread_info r10 @ get current thread 605cb170a45SPaul Brook adr r6, .LCneon_thumb_opcodes 606cb170a45SPaul Brook b 2f 607cb170a45SPaul Brook#endif 6081da177e4SLinus Torvaldscall_fpe: 609d3f79584SRussell King get_thread_info r10 @ get current thread 610b5872db4SCatalin Marinas#ifdef CONFIG_NEON 611cb170a45SPaul Brook adr r6, .LCneon_arm_opcodes 612d3f79584SRussell King2: ldr r5, [r6], #4 @ mask value 613b5872db4SCatalin Marinas ldr r7, [r6], #4 @ opcode bits matching in mask 614d3f79584SRussell King cmp r5, #0 @ end mask? 615d3f79584SRussell King beq 1f 616d3f79584SRussell King and r8, r0, r5 617b5872db4SCatalin Marinas cmp r8, r7 @ NEON instruction? 618b5872db4SCatalin Marinas bne 2b 619b5872db4SCatalin Marinas mov r7, #1 620b5872db4SCatalin Marinas strb r7, [r10, #TI_USED_CP + 10] @ mark CP#10 as used 621b5872db4SCatalin Marinas strb r7, [r10, #TI_USED_CP + 11] @ mark CP#11 as used 622b5872db4SCatalin Marinas b do_vfp @ let VFP handler handle this 623b5872db4SCatalin Marinas1: 624b5872db4SCatalin Marinas#endif 6251da177e4SLinus Torvalds tst r0, #0x08000000 @ only CDP/CPRT/LDC/STC have bit 27 626cb170a45SPaul Brook tstne r0, #0x04000000 @ bit 26 set on both ARM and Thumb-2 6276ebbf2ceSRussell King reteq lr 6281da177e4SLinus Torvalds and r8, r0, #0x00000f00 @ mask out CP number 629b86040a5SCatalin Marinas THUMB( lsr r8, r8, #8 ) 6301da177e4SLinus Torvalds mov r7, #1 6311da177e4SLinus Torvalds add r6, r10, #TI_USED_CP 632b86040a5SCatalin Marinas ARM( strb r7, [r6, r8, lsr #8] ) @ set appropriate used_cp[] 633b86040a5SCatalin Marinas THUMB( strb r7, [r6, r8] ) @ set appropriate used_cp[] 6341da177e4SLinus Torvalds#ifdef CONFIG_IWMMXT 6351da177e4SLinus Torvalds @ Test if we need to give access to iWMMXt coprocessors 6361da177e4SLinus Torvalds ldr r5, [r10, #TI_FLAGS] 6371da177e4SLinus Torvalds rsbs r7, r8, #(1 << 8) @ CP 0 or 1 only 6381da177e4SLinus Torvalds movcss r7, r5, lsr #(TIF_USING_IWMMXT + 1) 6391da177e4SLinus Torvalds bcs iwmmxt_task_enable 6401da177e4SLinus Torvalds#endif 641b86040a5SCatalin Marinas ARM( add pc, pc, r8, lsr #6 ) 642b86040a5SCatalin Marinas THUMB( lsl r8, r8, #2 ) 643b86040a5SCatalin Marinas THUMB( add pc, r8 ) 644b86040a5SCatalin Marinas nop 6451da177e4SLinus Torvalds 6466ebbf2ceSRussell King ret.w lr @ CP#0 647b86040a5SCatalin Marinas W(b) do_fpe @ CP#1 (FPE) 648b86040a5SCatalin Marinas W(b) do_fpe @ CP#2 (FPE) 6496ebbf2ceSRussell King ret.w lr @ CP#3 650c17fad11SLennert Buytenhek#ifdef CONFIG_CRUNCH 651c17fad11SLennert Buytenhek b crunch_task_enable @ CP#4 (MaverickCrunch) 652c17fad11SLennert Buytenhek b crunch_task_enable @ CP#5 (MaverickCrunch) 653c17fad11SLennert Buytenhek b crunch_task_enable @ CP#6 (MaverickCrunch) 654c17fad11SLennert Buytenhek#else 6556ebbf2ceSRussell King ret.w lr @ CP#4 6566ebbf2ceSRussell King ret.w lr @ CP#5 6576ebbf2ceSRussell King ret.w lr @ CP#6 658c17fad11SLennert Buytenhek#endif 6596ebbf2ceSRussell King ret.w lr @ CP#7 6606ebbf2ceSRussell King ret.w lr @ CP#8 6616ebbf2ceSRussell King ret.w lr @ CP#9 6621da177e4SLinus Torvalds#ifdef CONFIG_VFP 663b86040a5SCatalin Marinas W(b) do_vfp @ CP#10 (VFP) 664b86040a5SCatalin Marinas W(b) do_vfp @ CP#11 (VFP) 6651da177e4SLinus Torvalds#else 6666ebbf2ceSRussell King ret.w lr @ CP#10 (VFP) 6676ebbf2ceSRussell King ret.w lr @ CP#11 (VFP) 6681da177e4SLinus Torvalds#endif 6696ebbf2ceSRussell King ret.w lr @ CP#12 6706ebbf2ceSRussell King ret.w lr @ CP#13 6716ebbf2ceSRussell King ret.w lr @ CP#14 (Debug) 6726ebbf2ceSRussell King ret.w lr @ CP#15 (Control) 6731da177e4SLinus Torvalds 674ef4c5368SDave Martin#ifdef NEED_CPU_ARCHITECTURE 675ef4c5368SDave Martin .align 2 676ef4c5368SDave Martin.LCcpu_architecture: 677ef4c5368SDave Martin .word __cpu_architecture 678ef4c5368SDave Martin#endif 679ef4c5368SDave Martin 680b5872db4SCatalin Marinas#ifdef CONFIG_NEON 681b5872db4SCatalin Marinas .align 6 682b5872db4SCatalin Marinas 683cb170a45SPaul Brook.LCneon_arm_opcodes: 684b5872db4SCatalin Marinas .word 0xfe000000 @ mask 685b5872db4SCatalin Marinas .word 0xf2000000 @ opcode 686b5872db4SCatalin Marinas 687b5872db4SCatalin Marinas .word 0xff100000 @ mask 688b5872db4SCatalin Marinas .word 0xf4000000 @ opcode 689b5872db4SCatalin Marinas 690b5872db4SCatalin Marinas .word 0x00000000 @ mask 691b5872db4SCatalin Marinas .word 0x00000000 @ opcode 692cb170a45SPaul Brook 693cb170a45SPaul Brook.LCneon_thumb_opcodes: 694cb170a45SPaul Brook .word 0xef000000 @ mask 695cb170a45SPaul Brook .word 0xef000000 @ opcode 696cb170a45SPaul Brook 697cb170a45SPaul Brook .word 0xff100000 @ mask 698cb170a45SPaul Brook .word 0xf9000000 @ opcode 699cb170a45SPaul Brook 700cb170a45SPaul Brook .word 0x00000000 @ mask 701cb170a45SPaul Brook .word 0x00000000 @ opcode 702b5872db4SCatalin Marinas#endif 703b5872db4SCatalin Marinas 7041da177e4SLinus Torvaldsdo_fpe: 7051da177e4SLinus Torvalds ldr r4, .LCfp 7061da177e4SLinus Torvalds add r10, r10, #TI_FPSTATE @ r10 = workspace 7071da177e4SLinus Torvalds ldr pc, [r4] @ Call FP module USR entry point 7081da177e4SLinus Torvalds 7091da177e4SLinus Torvalds/* 7101da177e4SLinus Torvalds * The FP module is called with these registers set: 7111da177e4SLinus Torvalds * r0 = instruction 7121da177e4SLinus Torvalds * r2 = PC+4 7131da177e4SLinus Torvalds * r9 = normal "successful" return address 7141da177e4SLinus Torvalds * r10 = FP workspace 7151da177e4SLinus Torvalds * lr = unrecognised FP instruction return address 7161da177e4SLinus Torvalds */ 7171da177e4SLinus Torvalds 718124efc27SSantosh Shilimkar .pushsection .data 7191da177e4SLinus TorvaldsENTRY(fp_enter) 720db6ccbb6SRussell King .word no_fp 721124efc27SSantosh Shilimkar .popsection 7221da177e4SLinus Torvalds 72383e686eaSCatalin MarinasENTRY(no_fp) 7246ebbf2ceSRussell King ret lr 72583e686eaSCatalin MarinasENDPROC(no_fp) 726db6ccbb6SRussell King 72715ac49b6SRussell King__und_usr_fault_32: 72815ac49b6SRussell King mov r1, #4 72915ac49b6SRussell King b 1f 730*2190fed6SRussell King__und_usr_fault_16_pan: 731*2190fed6SRussell King uaccess_disable ip 73215ac49b6SRussell King__und_usr_fault_16: 73315ac49b6SRussell King mov r1, #2 7341417a6b8SCatalin Marinas1: mov r0, sp 73514327c66SRussell King badr lr, ret_from_exception 73615ac49b6SRussell King b __und_fault 73715ac49b6SRussell KingENDPROC(__und_usr_fault_32) 73815ac49b6SRussell KingENDPROC(__und_usr_fault_16) 7391da177e4SLinus Torvalds 7401da177e4SLinus Torvalds .align 5 7411da177e4SLinus Torvalds__pabt_usr: 742ccea7a19SRussell King usr_entry 7434fb28474SKirill A. Shutemov mov r2, sp @ regs 7448dfe7ac9SRussell King pabt_helper 745c4c5716eSCatalin Marinas UNWIND(.fnend ) 7461da177e4SLinus Torvalds /* fall through */ 7471da177e4SLinus Torvalds/* 7481da177e4SLinus Torvalds * This is the return code to user mode for abort handlers 7491da177e4SLinus Torvalds */ 7501da177e4SLinus TorvaldsENTRY(ret_from_exception) 751c4c5716eSCatalin Marinas UNWIND(.fnstart ) 752c4c5716eSCatalin Marinas UNWIND(.cantunwind ) 7531da177e4SLinus Torvalds get_thread_info tsk 7541da177e4SLinus Torvalds mov why, #0 7551da177e4SLinus Torvalds b ret_to_user 756c4c5716eSCatalin Marinas UNWIND(.fnend ) 75793ed3970SCatalin MarinasENDPROC(__pabt_usr) 75893ed3970SCatalin MarinasENDPROC(ret_from_exception) 7591da177e4SLinus Torvalds 760c0e7f7eeSDaniel Thompson .align 5 761c0e7f7eeSDaniel Thompson__fiq_usr: 762c0e7f7eeSDaniel Thompson usr_entry trace=0 763c0e7f7eeSDaniel Thompson kuser_cmpxchg_check 764c0e7f7eeSDaniel Thompson mov r0, sp @ struct pt_regs *regs 765c0e7f7eeSDaniel Thompson bl handle_fiq_as_nmi 766c0e7f7eeSDaniel Thompson get_thread_info tsk 767c0e7f7eeSDaniel Thompson restore_user_regs fast = 0, offset = 0 768c0e7f7eeSDaniel Thompson UNWIND(.fnend ) 769c0e7f7eeSDaniel ThompsonENDPROC(__fiq_usr) 770c0e7f7eeSDaniel Thompson 7711da177e4SLinus Torvalds/* 7721da177e4SLinus Torvalds * Register switch for ARMv3 and ARMv4 processors 7731da177e4SLinus Torvalds * r0 = previous task_struct, r1 = previous thread_info, r2 = next thread_info 7741da177e4SLinus Torvalds * previous and next are guaranteed not to be the same. 7751da177e4SLinus Torvalds */ 7761da177e4SLinus TorvaldsENTRY(__switch_to) 777c4c5716eSCatalin Marinas UNWIND(.fnstart ) 778c4c5716eSCatalin Marinas UNWIND(.cantunwind ) 7791da177e4SLinus Torvalds add ip, r1, #TI_CPU_SAVE 780b86040a5SCatalin Marinas ARM( stmia ip!, {r4 - sl, fp, sp, lr} ) @ Store most regs on stack 781b86040a5SCatalin Marinas THUMB( stmia ip!, {r4 - sl, fp} ) @ Store most regs on stack 782b86040a5SCatalin Marinas THUMB( str sp, [ip], #4 ) 783b86040a5SCatalin Marinas THUMB( str lr, [ip], #4 ) 784a4780adeSAndré Hentschel ldr r4, [r2, #TI_TP_VALUE] 785a4780adeSAndré Hentschel ldr r5, [r2, #TI_TP_VALUE + 4] 786247055aaSCatalin Marinas#ifdef CONFIG_CPU_USE_DOMAINS 7871eef5d2fSRussell King mrc p15, 0, r6, c3, c0, 0 @ Get domain register 7881eef5d2fSRussell King str r6, [r1, #TI_CPU_DOMAIN] @ Save old domain register 789d6551e88SRussell King ldr r6, [r2, #TI_CPU_DOMAIN] 790afeb90caSHyok S. Choi#endif 791a4780adeSAndré Hentschel switch_tls r1, r4, r5, r3, r7 792df0698beSNicolas Pitre#if defined(CONFIG_CC_STACKPROTECTOR) && !defined(CONFIG_SMP) 793df0698beSNicolas Pitre ldr r7, [r2, #TI_TASK] 794df0698beSNicolas Pitre ldr r8, =__stack_chk_guard 795df0698beSNicolas Pitre ldr r7, [r7, #TSK_STACK_CANARY] 796df0698beSNicolas Pitre#endif 797247055aaSCatalin Marinas#ifdef CONFIG_CPU_USE_DOMAINS 7981da177e4SLinus Torvalds mcr p15, 0, r6, c3, c0, 0 @ Set domain register 799afeb90caSHyok S. Choi#endif 800d6551e88SRussell King mov r5, r0 801d6551e88SRussell King add r4, r2, #TI_CPU_SAVE 802d6551e88SRussell King ldr r0, =thread_notify_head 803d6551e88SRussell King mov r1, #THREAD_NOTIFY_SWITCH 804d6551e88SRussell King bl atomic_notifier_call_chain 805df0698beSNicolas Pitre#if defined(CONFIG_CC_STACKPROTECTOR) && !defined(CONFIG_SMP) 806df0698beSNicolas Pitre str r7, [r8] 807df0698beSNicolas Pitre#endif 808b86040a5SCatalin Marinas THUMB( mov ip, r4 ) 809d6551e88SRussell King mov r0, r5 810b86040a5SCatalin Marinas ARM( ldmia r4, {r4 - sl, fp, sp, pc} ) @ Load all regs saved previously 811b86040a5SCatalin Marinas THUMB( ldmia ip!, {r4 - sl, fp} ) @ Load all regs saved previously 812b86040a5SCatalin Marinas THUMB( ldr sp, [ip], #4 ) 813b86040a5SCatalin Marinas THUMB( ldr pc, [ip] ) 814c4c5716eSCatalin Marinas UNWIND(.fnend ) 81593ed3970SCatalin MarinasENDPROC(__switch_to) 8161da177e4SLinus Torvalds 8171da177e4SLinus Torvalds __INIT 8182d2669b6SNicolas Pitre 8192d2669b6SNicolas Pitre/* 8202d2669b6SNicolas Pitre * User helpers. 8212d2669b6SNicolas Pitre * 8222d2669b6SNicolas Pitre * Each segment is 32-byte aligned and will be moved to the top of the high 8232d2669b6SNicolas Pitre * vector page. New segments (if ever needed) must be added in front of 8242d2669b6SNicolas Pitre * existing ones. This mechanism should be used only for things that are 8252d2669b6SNicolas Pitre * really small and justified, and not be abused freely. 8262d2669b6SNicolas Pitre * 82737b83046SNicolas Pitre * See Documentation/arm/kernel_user_helpers.txt for formal definitions. 8282d2669b6SNicolas Pitre */ 829b86040a5SCatalin Marinas THUMB( .arm ) 8302d2669b6SNicolas Pitre 831ba9b5d76SNicolas Pitre .macro usr_ret, reg 832ba9b5d76SNicolas Pitre#ifdef CONFIG_ARM_THUMB 833ba9b5d76SNicolas Pitre bx \reg 834ba9b5d76SNicolas Pitre#else 8356ebbf2ceSRussell King ret \reg 836ba9b5d76SNicolas Pitre#endif 837ba9b5d76SNicolas Pitre .endm 838ba9b5d76SNicolas Pitre 8395b43e7a3SRussell King .macro kuser_pad, sym, size 8405b43e7a3SRussell King .if (. - \sym) & 3 8415b43e7a3SRussell King .rept 4 - (. - \sym) & 3 8425b43e7a3SRussell King .byte 0 8435b43e7a3SRussell King .endr 8445b43e7a3SRussell King .endif 8455b43e7a3SRussell King .rept (\size - (. - \sym)) / 4 8465b43e7a3SRussell King .word 0xe7fddef1 8475b43e7a3SRussell King .endr 8485b43e7a3SRussell King .endm 8495b43e7a3SRussell King 850f6f91b0dSRussell King#ifdef CONFIG_KUSER_HELPERS 8512d2669b6SNicolas Pitre .align 5 8522d2669b6SNicolas Pitre .globl __kuser_helper_start 8532d2669b6SNicolas Pitre__kuser_helper_start: 8542d2669b6SNicolas Pitre 8552d2669b6SNicolas Pitre/* 85640fb79c8SNicolas Pitre * Due to the length of some sequences, __kuser_cmpxchg64 spans 2 regular 85740fb79c8SNicolas Pitre * kuser "slots", therefore 0xffff0f80 is not used as a valid entry point. 8587c612bfdSNicolas Pitre */ 8597c612bfdSNicolas Pitre 86040fb79c8SNicolas Pitre__kuser_cmpxchg64: @ 0xffff0f60 86140fb79c8SNicolas Pitre 86240fb79c8SNicolas Pitre#if defined(CONFIG_NEEDS_SYSCALL_FOR_CMPXCHG) 86340fb79c8SNicolas Pitre 86440fb79c8SNicolas Pitre /* 86540fb79c8SNicolas Pitre * Poor you. No fast solution possible... 86640fb79c8SNicolas Pitre * The kernel itself must perform the operation. 86740fb79c8SNicolas Pitre * A special ghost syscall is used for that (see traps.c). 86840fb79c8SNicolas Pitre */ 86940fb79c8SNicolas Pitre stmfd sp!, {r7, lr} 87040fb79c8SNicolas Pitre ldr r7, 1f @ it's 20 bits 87140fb79c8SNicolas Pitre swi __ARM_NR_cmpxchg64 87240fb79c8SNicolas Pitre ldmfd sp!, {r7, pc} 87340fb79c8SNicolas Pitre1: .word __ARM_NR_cmpxchg64 87440fb79c8SNicolas Pitre 87540fb79c8SNicolas Pitre#elif defined(CONFIG_CPU_32v6K) 87640fb79c8SNicolas Pitre 87740fb79c8SNicolas Pitre stmfd sp!, {r4, r5, r6, r7} 87840fb79c8SNicolas Pitre ldrd r4, r5, [r0] @ load old val 87940fb79c8SNicolas Pitre ldrd r6, r7, [r1] @ load new val 88040fb79c8SNicolas Pitre smp_dmb arm 88140fb79c8SNicolas Pitre1: ldrexd r0, r1, [r2] @ load current val 88240fb79c8SNicolas Pitre eors r3, r0, r4 @ compare with oldval (1) 88340fb79c8SNicolas Pitre eoreqs r3, r1, r5 @ compare with oldval (2) 88440fb79c8SNicolas Pitre strexdeq r3, r6, r7, [r2] @ store newval if eq 88540fb79c8SNicolas Pitre teqeq r3, #1 @ success? 88640fb79c8SNicolas Pitre beq 1b @ if no then retry 88740fb79c8SNicolas Pitre smp_dmb arm 88840fb79c8SNicolas Pitre rsbs r0, r3, #0 @ set returned val and C flag 88940fb79c8SNicolas Pitre ldmfd sp!, {r4, r5, r6, r7} 8905a97d0aeSWill Deacon usr_ret lr 89140fb79c8SNicolas Pitre 89240fb79c8SNicolas Pitre#elif !defined(CONFIG_SMP) 89340fb79c8SNicolas Pitre 89440fb79c8SNicolas Pitre#ifdef CONFIG_MMU 89540fb79c8SNicolas Pitre 89640fb79c8SNicolas Pitre /* 89740fb79c8SNicolas Pitre * The only thing that can break atomicity in this cmpxchg64 89840fb79c8SNicolas Pitre * implementation is either an IRQ or a data abort exception 89940fb79c8SNicolas Pitre * causing another process/thread to be scheduled in the middle of 90040fb79c8SNicolas Pitre * the critical sequence. The same strategy as for cmpxchg is used. 90140fb79c8SNicolas Pitre */ 90240fb79c8SNicolas Pitre stmfd sp!, {r4, r5, r6, lr} 90340fb79c8SNicolas Pitre ldmia r0, {r4, r5} @ load old val 90440fb79c8SNicolas Pitre ldmia r1, {r6, lr} @ load new val 90540fb79c8SNicolas Pitre1: ldmia r2, {r0, r1} @ load current val 90640fb79c8SNicolas Pitre eors r3, r0, r4 @ compare with oldval (1) 90740fb79c8SNicolas Pitre eoreqs r3, r1, r5 @ compare with oldval (2) 90840fb79c8SNicolas Pitre2: stmeqia r2, {r6, lr} @ store newval if eq 90940fb79c8SNicolas Pitre rsbs r0, r3, #0 @ set return val and C flag 91040fb79c8SNicolas Pitre ldmfd sp!, {r4, r5, r6, pc} 91140fb79c8SNicolas Pitre 91240fb79c8SNicolas Pitre .text 91340fb79c8SNicolas Pitrekuser_cmpxchg64_fixup: 91440fb79c8SNicolas Pitre @ Called from kuser_cmpxchg_fixup. 9153ad55155SRussell King @ r4 = address of interrupted insn (must be preserved). 91640fb79c8SNicolas Pitre @ sp = saved regs. r7 and r8 are clobbered. 91740fb79c8SNicolas Pitre @ 1b = first critical insn, 2b = last critical insn. 9183ad55155SRussell King @ If r4 >= 1b and r4 <= 2b then saved pc_usr is set to 1b. 91940fb79c8SNicolas Pitre mov r7, #0xffff0fff 92040fb79c8SNicolas Pitre sub r7, r7, #(0xffff0fff - (0xffff0f60 + (1b - __kuser_cmpxchg64))) 9213ad55155SRussell King subs r8, r4, r7 92240fb79c8SNicolas Pitre rsbcss r8, r8, #(2b - 1b) 92340fb79c8SNicolas Pitre strcs r7, [sp, #S_PC] 92440fb79c8SNicolas Pitre#if __LINUX_ARM_ARCH__ < 6 92540fb79c8SNicolas Pitre bcc kuser_cmpxchg32_fixup 92640fb79c8SNicolas Pitre#endif 9276ebbf2ceSRussell King ret lr 92840fb79c8SNicolas Pitre .previous 92940fb79c8SNicolas Pitre 93040fb79c8SNicolas Pitre#else 93140fb79c8SNicolas Pitre#warning "NPTL on non MMU needs fixing" 93240fb79c8SNicolas Pitre mov r0, #-1 93340fb79c8SNicolas Pitre adds r0, r0, #0 93440fb79c8SNicolas Pitre usr_ret lr 93540fb79c8SNicolas Pitre#endif 93640fb79c8SNicolas Pitre 93740fb79c8SNicolas Pitre#else 93840fb79c8SNicolas Pitre#error "incoherent kernel configuration" 93940fb79c8SNicolas Pitre#endif 94040fb79c8SNicolas Pitre 9415b43e7a3SRussell King kuser_pad __kuser_cmpxchg64, 64 94240fb79c8SNicolas Pitre 9437c612bfdSNicolas Pitre__kuser_memory_barrier: @ 0xffff0fa0 944ed3768a8SDave Martin smp_dmb arm 945ba9b5d76SNicolas Pitre usr_ret lr 9467c612bfdSNicolas Pitre 9475b43e7a3SRussell King kuser_pad __kuser_memory_barrier, 32 9487c612bfdSNicolas Pitre 9492d2669b6SNicolas Pitre__kuser_cmpxchg: @ 0xffff0fc0 9502d2669b6SNicolas Pitre 951dcef1f63SNicolas Pitre#if defined(CONFIG_NEEDS_SYSCALL_FOR_CMPXCHG) 9522d2669b6SNicolas Pitre 953dcef1f63SNicolas Pitre /* 954dcef1f63SNicolas Pitre * Poor you. No fast solution possible... 955dcef1f63SNicolas Pitre * The kernel itself must perform the operation. 956dcef1f63SNicolas Pitre * A special ghost syscall is used for that (see traps.c). 957dcef1f63SNicolas Pitre */ 9585e097445SNicolas Pitre stmfd sp!, {r7, lr} 95955afd264SDave Martin ldr r7, 1f @ it's 20 bits 960cc20d429SRussell King swi __ARM_NR_cmpxchg 9615e097445SNicolas Pitre ldmfd sp!, {r7, pc} 962cc20d429SRussell King1: .word __ARM_NR_cmpxchg 963dcef1f63SNicolas Pitre 964dcef1f63SNicolas Pitre#elif __LINUX_ARM_ARCH__ < 6 9652d2669b6SNicolas Pitre 96649bca4c2SNicolas Pitre#ifdef CONFIG_MMU 967b49c0f24SNicolas Pitre 968b49c0f24SNicolas Pitre /* 969b49c0f24SNicolas Pitre * The only thing that can break atomicity in this cmpxchg 970b49c0f24SNicolas Pitre * implementation is either an IRQ or a data abort exception 971b49c0f24SNicolas Pitre * causing another process/thread to be scheduled in the middle 972b49c0f24SNicolas Pitre * of the critical sequence. To prevent this, code is added to 973b49c0f24SNicolas Pitre * the IRQ and data abort exception handlers to set the pc back 974b49c0f24SNicolas Pitre * to the beginning of the critical section if it is found to be 975b49c0f24SNicolas Pitre * within that critical section (see kuser_cmpxchg_fixup). 976b49c0f24SNicolas Pitre */ 977b49c0f24SNicolas Pitre1: ldr r3, [r2] @ load current val 978b49c0f24SNicolas Pitre subs r3, r3, r0 @ compare with oldval 979b49c0f24SNicolas Pitre2: streq r1, [r2] @ store newval if eq 980b49c0f24SNicolas Pitre rsbs r0, r3, #0 @ set return val and C flag 981b49c0f24SNicolas Pitre usr_ret lr 982b49c0f24SNicolas Pitre 983b49c0f24SNicolas Pitre .text 98440fb79c8SNicolas Pitrekuser_cmpxchg32_fixup: 985b49c0f24SNicolas Pitre @ Called from kuser_cmpxchg_check macro. 986b059bdc3SRussell King @ r4 = address of interrupted insn (must be preserved). 987b49c0f24SNicolas Pitre @ sp = saved regs. r7 and r8 are clobbered. 988b49c0f24SNicolas Pitre @ 1b = first critical insn, 2b = last critical insn. 989b059bdc3SRussell King @ If r4 >= 1b and r4 <= 2b then saved pc_usr is set to 1b. 990b49c0f24SNicolas Pitre mov r7, #0xffff0fff 991b49c0f24SNicolas Pitre sub r7, r7, #(0xffff0fff - (0xffff0fc0 + (1b - __kuser_cmpxchg))) 992b059bdc3SRussell King subs r8, r4, r7 993b49c0f24SNicolas Pitre rsbcss r8, r8, #(2b - 1b) 994b49c0f24SNicolas Pitre strcs r7, [sp, #S_PC] 9956ebbf2ceSRussell King ret lr 996b49c0f24SNicolas Pitre .previous 997b49c0f24SNicolas Pitre 99849bca4c2SNicolas Pitre#else 99949bca4c2SNicolas Pitre#warning "NPTL on non MMU needs fixing" 100049bca4c2SNicolas Pitre mov r0, #-1 100149bca4c2SNicolas Pitre adds r0, r0, #0 1002ba9b5d76SNicolas Pitre usr_ret lr 1003b49c0f24SNicolas Pitre#endif 10042d2669b6SNicolas Pitre 10052d2669b6SNicolas Pitre#else 10062d2669b6SNicolas Pitre 1007ed3768a8SDave Martin smp_dmb arm 1008b49c0f24SNicolas Pitre1: ldrex r3, [r2] 10092d2669b6SNicolas Pitre subs r3, r3, r0 10102d2669b6SNicolas Pitre strexeq r3, r1, [r2] 1011b49c0f24SNicolas Pitre teqeq r3, #1 1012b49c0f24SNicolas Pitre beq 1b 10132d2669b6SNicolas Pitre rsbs r0, r3, #0 1014b49c0f24SNicolas Pitre /* beware -- each __kuser slot must be 8 instructions max */ 1015f00ec48fSRussell King ALT_SMP(b __kuser_memory_barrier) 1016f00ec48fSRussell King ALT_UP(usr_ret lr) 10172d2669b6SNicolas Pitre 10182d2669b6SNicolas Pitre#endif 10192d2669b6SNicolas Pitre 10205b43e7a3SRussell King kuser_pad __kuser_cmpxchg, 32 10212d2669b6SNicolas Pitre 10222d2669b6SNicolas Pitre__kuser_get_tls: @ 0xffff0fe0 1023f159f4edSTony Lindgren ldr r0, [pc, #(16 - 8)] @ read TLS, set in kuser_get_tls_init 1024ba9b5d76SNicolas Pitre usr_ret lr 1025f159f4edSTony Lindgren mrc p15, 0, r0, c13, c0, 3 @ 0xffff0fe8 hardware TLS code 10265b43e7a3SRussell King kuser_pad __kuser_get_tls, 16 10275b43e7a3SRussell King .rep 3 1028f159f4edSTony Lindgren .word 0 @ 0xffff0ff0 software TLS value, then 1029f159f4edSTony Lindgren .endr @ pad up to __kuser_helper_version 10302d2669b6SNicolas Pitre 10312d2669b6SNicolas Pitre__kuser_helper_version: @ 0xffff0ffc 10322d2669b6SNicolas Pitre .word ((__kuser_helper_end - __kuser_helper_start) >> 5) 10332d2669b6SNicolas Pitre 10342d2669b6SNicolas Pitre .globl __kuser_helper_end 10352d2669b6SNicolas Pitre__kuser_helper_end: 10362d2669b6SNicolas Pitre 1037f6f91b0dSRussell King#endif 1038f6f91b0dSRussell King 1039b86040a5SCatalin Marinas THUMB( .thumb ) 10402d2669b6SNicolas Pitre 10411da177e4SLinus Torvalds/* 10421da177e4SLinus Torvalds * Vector stubs. 10431da177e4SLinus Torvalds * 104419accfd3SRussell King * This code is copied to 0xffff1000 so we can use branches in the 104519accfd3SRussell King * vectors, rather than ldr's. Note that this code must not exceed 104619accfd3SRussell King * a page size. 10471da177e4SLinus Torvalds * 10481da177e4SLinus Torvalds * Common stub entry macro: 10491da177e4SLinus Torvalds * Enter in IRQ mode, spsr = SVC/USR CPSR, lr = SVC/USR PC 1050ccea7a19SRussell King * 1051ccea7a19SRussell King * SP points to a minimal amount of processor-private memory, the address 1052ccea7a19SRussell King * of which is copied into r0 for the mode specific abort handler. 10531da177e4SLinus Torvalds */ 1054b7ec4795SNicolas Pitre .macro vector_stub, name, mode, correction=0 10551da177e4SLinus Torvalds .align 5 10561da177e4SLinus Torvalds 10571da177e4SLinus Torvaldsvector_\name: 10581da177e4SLinus Torvalds .if \correction 10591da177e4SLinus Torvalds sub lr, lr, #\correction 10601da177e4SLinus Torvalds .endif 10611da177e4SLinus Torvalds 1062ccea7a19SRussell King @ 1063ccea7a19SRussell King @ Save r0, lr_<exception> (parent PC) and spsr_<exception> 1064ccea7a19SRussell King @ (parent CPSR) 1065ccea7a19SRussell King @ 1066ccea7a19SRussell King stmia sp, {r0, lr} @ save r0, lr 1067ccea7a19SRussell King mrs lr, spsr 1068ccea7a19SRussell King str lr, [sp, #8] @ save spsr 1069ccea7a19SRussell King 1070ccea7a19SRussell King @ 1071ccea7a19SRussell King @ Prepare for SVC32 mode. IRQs remain disabled. 1072ccea7a19SRussell King @ 1073ccea7a19SRussell King mrs r0, cpsr 1074b86040a5SCatalin Marinas eor r0, r0, #(\mode ^ SVC_MODE | PSR_ISETSTATE) 1075ccea7a19SRussell King msr spsr_cxsf, r0 1076ccea7a19SRussell King 1077ccea7a19SRussell King @ 1078ccea7a19SRussell King @ the branch table must immediately follow this code 1079ccea7a19SRussell King @ 1080ccea7a19SRussell King and lr, lr, #0x0f 1081b86040a5SCatalin Marinas THUMB( adr r0, 1f ) 1082b86040a5SCatalin Marinas THUMB( ldr lr, [r0, lr, lsl #2] ) 1083b7ec4795SNicolas Pitre mov r0, sp 1084b86040a5SCatalin Marinas ARM( ldr lr, [pc, lr, lsl #2] ) 1085ccea7a19SRussell King movs pc, lr @ branch to handler in SVC mode 108693ed3970SCatalin MarinasENDPROC(vector_\name) 108788987ef9SCatalin Marinas 108888987ef9SCatalin Marinas .align 2 108988987ef9SCatalin Marinas @ handler addresses follow this label 109088987ef9SCatalin Marinas1: 10911da177e4SLinus Torvalds .endm 10921da177e4SLinus Torvalds 1093b9b32bf7SRussell King .section .stubs, "ax", %progbits 10941da177e4SLinus Torvalds__stubs_start: 109519accfd3SRussell King @ This must be the first word 109619accfd3SRussell King .word vector_swi 109719accfd3SRussell King 109819accfd3SRussell Kingvector_rst: 109919accfd3SRussell King ARM( swi SYS_ERROR0 ) 110019accfd3SRussell King THUMB( svc #0 ) 110119accfd3SRussell King THUMB( nop ) 110219accfd3SRussell King b vector_und 110319accfd3SRussell King 11041da177e4SLinus Torvalds/* 11051da177e4SLinus Torvalds * Interrupt dispatcher 11061da177e4SLinus Torvalds */ 1107b7ec4795SNicolas Pitre vector_stub irq, IRQ_MODE, 4 11081da177e4SLinus Torvalds 11091da177e4SLinus Torvalds .long __irq_usr @ 0 (USR_26 / USR_32) 11101da177e4SLinus Torvalds .long __irq_invalid @ 1 (FIQ_26 / FIQ_32) 11111da177e4SLinus Torvalds .long __irq_invalid @ 2 (IRQ_26 / IRQ_32) 11121da177e4SLinus Torvalds .long __irq_svc @ 3 (SVC_26 / SVC_32) 11131da177e4SLinus Torvalds .long __irq_invalid @ 4 11141da177e4SLinus Torvalds .long __irq_invalid @ 5 11151da177e4SLinus Torvalds .long __irq_invalid @ 6 11161da177e4SLinus Torvalds .long __irq_invalid @ 7 11171da177e4SLinus Torvalds .long __irq_invalid @ 8 11181da177e4SLinus Torvalds .long __irq_invalid @ 9 11191da177e4SLinus Torvalds .long __irq_invalid @ a 11201da177e4SLinus Torvalds .long __irq_invalid @ b 11211da177e4SLinus Torvalds .long __irq_invalid @ c 11221da177e4SLinus Torvalds .long __irq_invalid @ d 11231da177e4SLinus Torvalds .long __irq_invalid @ e 11241da177e4SLinus Torvalds .long __irq_invalid @ f 11251da177e4SLinus Torvalds 11261da177e4SLinus Torvalds/* 11271da177e4SLinus Torvalds * Data abort dispatcher 11281da177e4SLinus Torvalds * Enter in ABT mode, spsr = USR CPSR, lr = USR PC 11291da177e4SLinus Torvalds */ 1130b7ec4795SNicolas Pitre vector_stub dabt, ABT_MODE, 8 11311da177e4SLinus Torvalds 11321da177e4SLinus Torvalds .long __dabt_usr @ 0 (USR_26 / USR_32) 11331da177e4SLinus Torvalds .long __dabt_invalid @ 1 (FIQ_26 / FIQ_32) 11341da177e4SLinus Torvalds .long __dabt_invalid @ 2 (IRQ_26 / IRQ_32) 11351da177e4SLinus Torvalds .long __dabt_svc @ 3 (SVC_26 / SVC_32) 11361da177e4SLinus Torvalds .long __dabt_invalid @ 4 11371da177e4SLinus Torvalds .long __dabt_invalid @ 5 11381da177e4SLinus Torvalds .long __dabt_invalid @ 6 11391da177e4SLinus Torvalds .long __dabt_invalid @ 7 11401da177e4SLinus Torvalds .long __dabt_invalid @ 8 11411da177e4SLinus Torvalds .long __dabt_invalid @ 9 11421da177e4SLinus Torvalds .long __dabt_invalid @ a 11431da177e4SLinus Torvalds .long __dabt_invalid @ b 11441da177e4SLinus Torvalds .long __dabt_invalid @ c 11451da177e4SLinus Torvalds .long __dabt_invalid @ d 11461da177e4SLinus Torvalds .long __dabt_invalid @ e 11471da177e4SLinus Torvalds .long __dabt_invalid @ f 11481da177e4SLinus Torvalds 11491da177e4SLinus Torvalds/* 11501da177e4SLinus Torvalds * Prefetch abort dispatcher 11511da177e4SLinus Torvalds * Enter in ABT mode, spsr = USR CPSR, lr = USR PC 11521da177e4SLinus Torvalds */ 1153b7ec4795SNicolas Pitre vector_stub pabt, ABT_MODE, 4 11541da177e4SLinus Torvalds 11551da177e4SLinus Torvalds .long __pabt_usr @ 0 (USR_26 / USR_32) 11561da177e4SLinus Torvalds .long __pabt_invalid @ 1 (FIQ_26 / FIQ_32) 11571da177e4SLinus Torvalds .long __pabt_invalid @ 2 (IRQ_26 / IRQ_32) 11581da177e4SLinus Torvalds .long __pabt_svc @ 3 (SVC_26 / SVC_32) 11591da177e4SLinus Torvalds .long __pabt_invalid @ 4 11601da177e4SLinus Torvalds .long __pabt_invalid @ 5 11611da177e4SLinus Torvalds .long __pabt_invalid @ 6 11621da177e4SLinus Torvalds .long __pabt_invalid @ 7 11631da177e4SLinus Torvalds .long __pabt_invalid @ 8 11641da177e4SLinus Torvalds .long __pabt_invalid @ 9 11651da177e4SLinus Torvalds .long __pabt_invalid @ a 11661da177e4SLinus Torvalds .long __pabt_invalid @ b 11671da177e4SLinus Torvalds .long __pabt_invalid @ c 11681da177e4SLinus Torvalds .long __pabt_invalid @ d 11691da177e4SLinus Torvalds .long __pabt_invalid @ e 11701da177e4SLinus Torvalds .long __pabt_invalid @ f 11711da177e4SLinus Torvalds 11721da177e4SLinus Torvalds/* 11731da177e4SLinus Torvalds * Undef instr entry dispatcher 11741da177e4SLinus Torvalds * Enter in UND mode, spsr = SVC/USR CPSR, lr = SVC/USR PC 11751da177e4SLinus Torvalds */ 1176b7ec4795SNicolas Pitre vector_stub und, UND_MODE 11771da177e4SLinus Torvalds 11781da177e4SLinus Torvalds .long __und_usr @ 0 (USR_26 / USR_32) 11791da177e4SLinus Torvalds .long __und_invalid @ 1 (FIQ_26 / FIQ_32) 11801da177e4SLinus Torvalds .long __und_invalid @ 2 (IRQ_26 / IRQ_32) 11811da177e4SLinus Torvalds .long __und_svc @ 3 (SVC_26 / SVC_32) 11821da177e4SLinus Torvalds .long __und_invalid @ 4 11831da177e4SLinus Torvalds .long __und_invalid @ 5 11841da177e4SLinus Torvalds .long __und_invalid @ 6 11851da177e4SLinus Torvalds .long __und_invalid @ 7 11861da177e4SLinus Torvalds .long __und_invalid @ 8 11871da177e4SLinus Torvalds .long __und_invalid @ 9 11881da177e4SLinus Torvalds .long __und_invalid @ a 11891da177e4SLinus Torvalds .long __und_invalid @ b 11901da177e4SLinus Torvalds .long __und_invalid @ c 11911da177e4SLinus Torvalds .long __und_invalid @ d 11921da177e4SLinus Torvalds .long __und_invalid @ e 11931da177e4SLinus Torvalds .long __und_invalid @ f 11941da177e4SLinus Torvalds 11951da177e4SLinus Torvalds .align 5 11961da177e4SLinus Torvalds 11971da177e4SLinus Torvalds/*============================================================================= 119819accfd3SRussell King * Address exception handler 119919accfd3SRussell King *----------------------------------------------------------------------------- 120019accfd3SRussell King * These aren't too critical. 120119accfd3SRussell King * (they're not supposed to happen, and won't happen in 32-bit data mode). 120219accfd3SRussell King */ 120319accfd3SRussell King 120419accfd3SRussell Kingvector_addrexcptn: 120519accfd3SRussell King b vector_addrexcptn 120619accfd3SRussell King 120719accfd3SRussell King/*============================================================================= 1208c0e7f7eeSDaniel Thompson * FIQ "NMI" handler 12091da177e4SLinus Torvalds *----------------------------------------------------------------------------- 1210c0e7f7eeSDaniel Thompson * Handle a FIQ using the SVC stack allowing FIQ act like NMI on x86 1211c0e7f7eeSDaniel Thompson * systems. 12121da177e4SLinus Torvalds */ 1213c0e7f7eeSDaniel Thompson vector_stub fiq, FIQ_MODE, 4 1214c0e7f7eeSDaniel Thompson 1215c0e7f7eeSDaniel Thompson .long __fiq_usr @ 0 (USR_26 / USR_32) 1216c0e7f7eeSDaniel Thompson .long __fiq_svc @ 1 (FIQ_26 / FIQ_32) 1217c0e7f7eeSDaniel Thompson .long __fiq_svc @ 2 (IRQ_26 / IRQ_32) 1218c0e7f7eeSDaniel Thompson .long __fiq_svc @ 3 (SVC_26 / SVC_32) 1219c0e7f7eeSDaniel Thompson .long __fiq_svc @ 4 1220c0e7f7eeSDaniel Thompson .long __fiq_svc @ 5 1221c0e7f7eeSDaniel Thompson .long __fiq_svc @ 6 1222c0e7f7eeSDaniel Thompson .long __fiq_abt @ 7 1223c0e7f7eeSDaniel Thompson .long __fiq_svc @ 8 1224c0e7f7eeSDaniel Thompson .long __fiq_svc @ 9 1225c0e7f7eeSDaniel Thompson .long __fiq_svc @ a 1226c0e7f7eeSDaniel Thompson .long __fiq_svc @ b 1227c0e7f7eeSDaniel Thompson .long __fiq_svc @ c 1228c0e7f7eeSDaniel Thompson .long __fiq_svc @ d 1229c0e7f7eeSDaniel Thompson .long __fiq_svc @ e 1230c0e7f7eeSDaniel Thompson .long __fiq_svc @ f 12311da177e4SLinus Torvalds 1232e39e3f3eSRussell King .globl vector_fiq_offset 1233e39e3f3eSRussell King .equ vector_fiq_offset, vector_fiq 1234e39e3f3eSRussell King 1235b9b32bf7SRussell King .section .vectors, "ax", %progbits 12367933523dSRussell King__vectors_start: 1237b9b32bf7SRussell King W(b) vector_rst 1238b9b32bf7SRussell King W(b) vector_und 1239b9b32bf7SRussell King W(ldr) pc, __vectors_start + 0x1000 1240b9b32bf7SRussell King W(b) vector_pabt 1241b9b32bf7SRussell King W(b) vector_dabt 1242b9b32bf7SRussell King W(b) vector_addrexcptn 1243b9b32bf7SRussell King W(b) vector_irq 1244b9b32bf7SRussell King W(b) vector_fiq 12451da177e4SLinus Torvalds 12461da177e4SLinus Torvalds .data 12471da177e4SLinus Torvalds 12481da177e4SLinus Torvalds .globl cr_alignment 12491da177e4SLinus Torvaldscr_alignment: 12501da177e4SLinus Torvalds .space 4 125152108641Seric miao 125252108641Seric miao#ifdef CONFIG_MULTI_IRQ_HANDLER 125352108641Seric miao .globl handle_arch_irq 125452108641Seric miaohandle_arch_irq: 125552108641Seric miao .space 4 125652108641Seric miao#endif 1257