Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/arch/arm/kernel/entry-armv.S |
| 3 | * |
| 4 | * Copyright (C) 1996,1997,1998 Russell King. |
| 5 | * ARM700 fix by Matthew Godbolt (linux-user@willothewisp.demon.co.uk) |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License version 2 as |
| 9 | * published by the Free Software Foundation. |
| 10 | * |
| 11 | * Low-level vector interface routines |
| 12 | * |
| 13 | * Note: there is a StrongARM bug in the STMIA rn, {regs}^ instruction that causes |
| 14 | * it to save wrong values... Be aware! |
| 15 | */ |
| 16 | #include <linux/config.h> |
| 17 | #include <linux/init.h> |
| 18 | |
| 19 | #include <asm/thread_info.h> |
| 20 | #include <asm/glue.h> |
| 21 | #include <asm/ptrace.h> |
| 22 | #include <asm/vfpmacros.h> |
| 23 | |
| 24 | #include "entry-header.S" |
| 25 | |
| 26 | /* |
| 27 | * Invalid mode handlers |
| 28 | */ |
| 29 | .macro inv_entry, sym, reason |
| 30 | sub sp, sp, #S_FRAME_SIZE @ Allocate frame size in one go |
| 31 | stmia sp, {r0 - lr} @ Save XXX r0 - lr |
| 32 | ldr r4, .LC\sym |
| 33 | mov r1, #\reason |
| 34 | .endm |
| 35 | |
| 36 | __pabt_invalid: |
| 37 | inv_entry abt, BAD_PREFETCH |
| 38 | b 1f |
| 39 | |
| 40 | __dabt_invalid: |
| 41 | inv_entry abt, BAD_DATA |
| 42 | b 1f |
| 43 | |
| 44 | __irq_invalid: |
| 45 | inv_entry irq, BAD_IRQ |
| 46 | b 1f |
| 47 | |
| 48 | __und_invalid: |
| 49 | inv_entry und, BAD_UNDEFINSTR |
| 50 | |
| 51 | 1: zero_fp |
| 52 | ldmia r4, {r5 - r7} @ Get XXX pc, cpsr, old_r0 |
| 53 | add r4, sp, #S_PC |
| 54 | stmia r4, {r5 - r7} @ Save XXX pc, cpsr, old_r0 |
| 55 | mov r0, sp |
| 56 | and r2, r6, #31 @ int mode |
| 57 | b bad_mode |
| 58 | |
| 59 | /* |
| 60 | * SVC mode handlers |
| 61 | */ |
| 62 | .macro svc_entry, sym |
| 63 | sub sp, sp, #S_FRAME_SIZE |
| 64 | stmia sp, {r0 - r12} @ save r0 - r12 |
| 65 | ldr r2, .LC\sym |
| 66 | add r0, sp, #S_FRAME_SIZE |
| 67 | ldmia r2, {r2 - r4} @ get pc, cpsr |
| 68 | add r5, sp, #S_SP |
| 69 | mov r1, lr |
| 70 | |
| 71 | @ |
| 72 | @ We are now ready to fill in the remaining blanks on the stack: |
| 73 | @ |
| 74 | @ r0 - sp_svc |
| 75 | @ r1 - lr_svc |
| 76 | @ r2 - lr_<exception>, already fixed up for correct return/restart |
| 77 | @ r3 - spsr_<exception> |
| 78 | @ r4 - orig_r0 (see pt_regs definition in ptrace.h) |
| 79 | @ |
| 80 | stmia r5, {r0 - r4} |
| 81 | .endm |
| 82 | |
| 83 | .align 5 |
| 84 | __dabt_svc: |
| 85 | svc_entry abt |
| 86 | |
| 87 | @ |
| 88 | @ get ready to re-enable interrupts if appropriate |
| 89 | @ |
| 90 | mrs r9, cpsr |
| 91 | tst r3, #PSR_I_BIT |
| 92 | biceq r9, r9, #PSR_I_BIT |
| 93 | |
| 94 | @ |
| 95 | @ Call the processor-specific abort handler: |
| 96 | @ |
| 97 | @ r2 - aborted context pc |
| 98 | @ r3 - aborted context cpsr |
| 99 | @ |
| 100 | @ The abort handler must return the aborted address in r0, and |
| 101 | @ the fault status register in r1. r9 must be preserved. |
| 102 | @ |
| 103 | #ifdef MULTI_ABORT |
| 104 | ldr r4, .LCprocfns |
| 105 | mov lr, pc |
| 106 | ldr pc, [r4] |
| 107 | #else |
| 108 | bl CPU_ABORT_HANDLER |
| 109 | #endif |
| 110 | |
| 111 | @ |
| 112 | @ set desired IRQ state, then call main handler |
| 113 | @ |
| 114 | msr cpsr_c, r9 |
| 115 | mov r2, sp |
| 116 | bl do_DataAbort |
| 117 | |
| 118 | @ |
| 119 | @ IRQs off again before pulling preserved data off the stack |
| 120 | @ |
Russell King | 1ec42c0 | 2005-04-26 15:18:26 +0100 | [diff] [blame^] | 121 | disable_irq |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | |
| 123 | @ |
| 124 | @ restore SPSR and restart the instruction |
| 125 | @ |
| 126 | ldr r0, [sp, #S_PSR] |
| 127 | msr spsr_cxsf, r0 |
| 128 | ldmia sp, {r0 - pc}^ @ load r0 - pc, cpsr |
| 129 | |
| 130 | .align 5 |
| 131 | __irq_svc: |
| 132 | svc_entry irq |
| 133 | #ifdef CONFIG_PREEMPT |
| 134 | get_thread_info r8 |
| 135 | ldr r9, [r8, #TI_PREEMPT] @ get preempt count |
| 136 | add r7, r9, #1 @ increment it |
| 137 | str r7, [r8, #TI_PREEMPT] |
| 138 | #endif |
| 139 | 1: get_irqnr_and_base r0, r6, r5, lr |
| 140 | movne r1, sp |
| 141 | @ |
| 142 | @ routine called with r0 = irq number, r1 = struct pt_regs * |
| 143 | @ |
| 144 | adrne lr, 1b |
| 145 | bne asm_do_IRQ |
| 146 | #ifdef CONFIG_PREEMPT |
| 147 | ldr r0, [r8, #TI_FLAGS] @ get flags |
| 148 | tst r0, #_TIF_NEED_RESCHED |
| 149 | blne svc_preempt |
| 150 | preempt_return: |
| 151 | ldr r0, [r8, #TI_PREEMPT] @ read preempt value |
| 152 | teq r0, r7 |
| 153 | str r9, [r8, #TI_PREEMPT] @ restore preempt count |
| 154 | strne r0, [r0, -r0] @ bug() |
| 155 | #endif |
| 156 | ldr r0, [sp, #S_PSR] @ irqs are already disabled |
| 157 | msr spsr_cxsf, r0 |
| 158 | ldmia sp, {r0 - pc}^ @ load r0 - pc, cpsr |
| 159 | |
| 160 | .ltorg |
| 161 | |
| 162 | #ifdef CONFIG_PREEMPT |
| 163 | svc_preempt: |
| 164 | teq r9, #0 @ was preempt count = 0 |
| 165 | ldreq r6, .LCirq_stat |
| 166 | movne pc, lr @ no |
| 167 | ldr r0, [r6, #4] @ local_irq_count |
| 168 | ldr r1, [r6, #8] @ local_bh_count |
| 169 | adds r0, r0, r1 |
| 170 | movne pc, lr |
| 171 | mov r7, #0 @ preempt_schedule_irq |
| 172 | str r7, [r8, #TI_PREEMPT] @ expects preempt_count == 0 |
| 173 | 1: bl preempt_schedule_irq @ irq en/disable is done inside |
| 174 | ldr r0, [r8, #TI_FLAGS] @ get new tasks TI_FLAGS |
| 175 | tst r0, #_TIF_NEED_RESCHED |
| 176 | beq preempt_return @ go again |
| 177 | b 1b |
| 178 | #endif |
| 179 | |
| 180 | .align 5 |
| 181 | __und_svc: |
| 182 | svc_entry und |
| 183 | |
| 184 | @ |
| 185 | @ call emulation code, which returns using r9 if it has emulated |
| 186 | @ the instruction, or the more conventional lr if we are to treat |
| 187 | @ this as a real undefined instruction |
| 188 | @ |
| 189 | @ r0 - instruction |
| 190 | @ |
| 191 | ldr r0, [r2, #-4] |
| 192 | adr r9, 1f |
| 193 | bl call_fpe |
| 194 | |
| 195 | mov r0, sp @ struct pt_regs *regs |
| 196 | bl do_undefinstr |
| 197 | |
| 198 | @ |
| 199 | @ IRQs off again before pulling preserved data off the stack |
| 200 | @ |
Russell King | 1ec42c0 | 2005-04-26 15:18:26 +0100 | [diff] [blame^] | 201 | 1: disable_irq |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | |
| 203 | @ |
| 204 | @ restore SPSR and restart the instruction |
| 205 | @ |
| 206 | ldr lr, [sp, #S_PSR] @ Get SVC cpsr |
| 207 | msr spsr_cxsf, lr |
| 208 | ldmia sp, {r0 - pc}^ @ Restore SVC registers |
| 209 | |
| 210 | .align 5 |
| 211 | __pabt_svc: |
| 212 | svc_entry abt |
| 213 | |
| 214 | @ |
| 215 | @ re-enable interrupts if appropriate |
| 216 | @ |
| 217 | mrs r9, cpsr |
| 218 | tst r3, #PSR_I_BIT |
| 219 | biceq r9, r9, #PSR_I_BIT |
| 220 | msr cpsr_c, r9 |
| 221 | |
| 222 | @ |
| 223 | @ set args, then call main handler |
| 224 | @ |
| 225 | @ r0 - address of faulting instruction |
| 226 | @ r1 - pointer to registers on stack |
| 227 | @ |
| 228 | mov r0, r2 @ address (pc) |
| 229 | mov r1, sp @ regs |
| 230 | bl do_PrefetchAbort @ call abort handler |
| 231 | |
| 232 | @ |
| 233 | @ IRQs off again before pulling preserved data off the stack |
| 234 | @ |
Russell King | 1ec42c0 | 2005-04-26 15:18:26 +0100 | [diff] [blame^] | 235 | disable_irq |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | |
| 237 | @ |
| 238 | @ restore SPSR and restart the instruction |
| 239 | @ |
| 240 | ldr r0, [sp, #S_PSR] |
| 241 | msr spsr_cxsf, r0 |
| 242 | ldmia sp, {r0 - pc}^ @ load r0 - pc, cpsr |
| 243 | |
| 244 | .align 5 |
| 245 | .LCirq: |
| 246 | .word __temp_irq |
| 247 | .LCund: |
| 248 | .word __temp_und |
| 249 | .LCabt: |
| 250 | .word __temp_abt |
| 251 | #ifdef MULTI_ABORT |
| 252 | .LCprocfns: |
| 253 | .word processor |
| 254 | #endif |
| 255 | .LCfp: |
| 256 | .word fp_enter |
| 257 | #ifdef CONFIG_PREEMPT |
| 258 | .LCirq_stat: |
| 259 | .word irq_stat |
| 260 | #endif |
| 261 | |
| 262 | /* |
| 263 | * User mode handlers |
| 264 | */ |
| 265 | .macro usr_entry, sym |
| 266 | sub sp, sp, #S_FRAME_SIZE @ Allocate frame size in one go |
| 267 | stmia sp, {r0 - r12} @ save r0 - r12 |
| 268 | ldr r7, .LC\sym |
| 269 | add r5, sp, #S_PC |
| 270 | ldmia r7, {r2 - r4} @ Get USR pc, cpsr |
| 271 | |
| 272 | @ |
| 273 | @ We are now ready to fill in the remaining blanks on the stack: |
| 274 | @ |
| 275 | @ r2 - lr_<exception>, already fixed up for correct return/restart |
| 276 | @ r3 - spsr_<exception> |
| 277 | @ r4 - orig_r0 (see pt_regs definition in ptrace.h) |
| 278 | @ |
| 279 | @ Also, separately save sp_usr and lr_usr |
| 280 | @ |
| 281 | stmia r5, {r2 - r4} |
| 282 | stmdb r5, {sp, lr}^ |
| 283 | |
| 284 | @ |
| 285 | @ Enable the alignment trap while in kernel mode |
| 286 | @ |
| 287 | alignment_trap r7, r0, __temp_\sym |
| 288 | |
| 289 | @ |
| 290 | @ Clear FP to mark the first stack frame |
| 291 | @ |
| 292 | zero_fp |
| 293 | .endm |
| 294 | |
| 295 | .align 5 |
| 296 | __dabt_usr: |
| 297 | usr_entry abt |
| 298 | |
| 299 | @ |
| 300 | @ Call the processor-specific abort handler: |
| 301 | @ |
| 302 | @ r2 - aborted context pc |
| 303 | @ r3 - aborted context cpsr |
| 304 | @ |
| 305 | @ The abort handler must return the aborted address in r0, and |
| 306 | @ the fault status register in r1. |
| 307 | @ |
| 308 | #ifdef MULTI_ABORT |
| 309 | ldr r4, .LCprocfns |
| 310 | mov lr, pc |
| 311 | ldr pc, [r4] |
| 312 | #else |
| 313 | bl CPU_ABORT_HANDLER |
| 314 | #endif |
| 315 | |
| 316 | @ |
| 317 | @ IRQs on, then call the main handler |
| 318 | @ |
Russell King | 1ec42c0 | 2005-04-26 15:18:26 +0100 | [diff] [blame^] | 319 | enable_irq |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | mov r2, sp |
| 321 | adr lr, ret_from_exception |
| 322 | b do_DataAbort |
| 323 | |
| 324 | .align 5 |
| 325 | __irq_usr: |
| 326 | usr_entry irq |
| 327 | |
| 328 | #ifdef CONFIG_PREEMPT |
| 329 | get_thread_info r8 |
| 330 | ldr r9, [r8, #TI_PREEMPT] @ get preempt count |
| 331 | add r7, r9, #1 @ increment it |
| 332 | str r7, [r8, #TI_PREEMPT] |
| 333 | #endif |
| 334 | 1: get_irqnr_and_base r0, r6, r5, lr |
| 335 | movne r1, sp |
| 336 | adrne lr, 1b |
| 337 | @ |
| 338 | @ routine called with r0 = irq number, r1 = struct pt_regs * |
| 339 | @ |
| 340 | bne asm_do_IRQ |
| 341 | #ifdef CONFIG_PREEMPT |
| 342 | ldr r0, [r8, #TI_PREEMPT] |
| 343 | teq r0, r7 |
| 344 | str r9, [r8, #TI_PREEMPT] |
| 345 | strne r0, [r0, -r0] |
| 346 | mov tsk, r8 |
| 347 | #else |
| 348 | get_thread_info tsk |
| 349 | #endif |
| 350 | mov why, #0 |
| 351 | b ret_to_user |
| 352 | |
| 353 | .ltorg |
| 354 | |
| 355 | .align 5 |
| 356 | __und_usr: |
| 357 | usr_entry und |
| 358 | |
| 359 | tst r3, #PSR_T_BIT @ Thumb mode? |
| 360 | bne fpundefinstr @ ignore FP |
| 361 | sub r4, r2, #4 |
| 362 | |
| 363 | @ |
| 364 | @ fall through to the emulation code, which returns using r9 if |
| 365 | @ it has emulated the instruction, or the more conventional lr |
| 366 | @ if we are to treat this as a real undefined instruction |
| 367 | @ |
| 368 | @ r0 - instruction |
| 369 | @ |
| 370 | 1: ldrt r0, [r4] |
| 371 | adr r9, ret_from_exception |
| 372 | adr lr, fpundefinstr |
| 373 | @ |
| 374 | @ fallthrough to call_fpe |
| 375 | @ |
| 376 | |
| 377 | /* |
| 378 | * The out of line fixup for the ldrt above. |
| 379 | */ |
| 380 | .section .fixup, "ax" |
| 381 | 2: mov pc, r9 |
| 382 | .previous |
| 383 | .section __ex_table,"a" |
| 384 | .long 1b, 2b |
| 385 | .previous |
| 386 | |
| 387 | /* |
| 388 | * Check whether the instruction is a co-processor instruction. |
| 389 | * If yes, we need to call the relevant co-processor handler. |
| 390 | * |
| 391 | * Note that we don't do a full check here for the co-processor |
| 392 | * instructions; all instructions with bit 27 set are well |
| 393 | * defined. The only instructions that should fault are the |
| 394 | * co-processor instructions. However, we have to watch out |
| 395 | * for the ARM6/ARM7 SWI bug. |
| 396 | * |
| 397 | * Emulators may wish to make use of the following registers: |
| 398 | * r0 = instruction opcode. |
| 399 | * r2 = PC+4 |
| 400 | * r10 = this threads thread_info structure. |
| 401 | */ |
| 402 | call_fpe: |
| 403 | tst r0, #0x08000000 @ only CDP/CPRT/LDC/STC have bit 27 |
| 404 | #if defined(CONFIG_CPU_ARM610) || defined(CONFIG_CPU_ARM710) |
| 405 | and r8, r0, #0x0f000000 @ mask out op-code bits |
| 406 | teqne r8, #0x0f000000 @ SWI (ARM6/7 bug)? |
| 407 | #endif |
| 408 | moveq pc, lr |
| 409 | get_thread_info r10 @ get current thread |
| 410 | and r8, r0, #0x00000f00 @ mask out CP number |
| 411 | mov r7, #1 |
| 412 | add r6, r10, #TI_USED_CP |
| 413 | strb r7, [r6, r8, lsr #8] @ set appropriate used_cp[] |
| 414 | #ifdef CONFIG_IWMMXT |
| 415 | @ Test if we need to give access to iWMMXt coprocessors |
| 416 | ldr r5, [r10, #TI_FLAGS] |
| 417 | rsbs r7, r8, #(1 << 8) @ CP 0 or 1 only |
| 418 | movcss r7, r5, lsr #(TIF_USING_IWMMXT + 1) |
| 419 | bcs iwmmxt_task_enable |
| 420 | #endif |
Russell King | 1ec42c0 | 2005-04-26 15:18:26 +0100 | [diff] [blame^] | 421 | enable_irq |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 422 | add pc, pc, r8, lsr #6 |
| 423 | mov r0, r0 |
| 424 | |
| 425 | mov pc, lr @ CP#0 |
| 426 | b do_fpe @ CP#1 (FPE) |
| 427 | b do_fpe @ CP#2 (FPE) |
| 428 | mov pc, lr @ CP#3 |
| 429 | mov pc, lr @ CP#4 |
| 430 | mov pc, lr @ CP#5 |
| 431 | mov pc, lr @ CP#6 |
| 432 | mov pc, lr @ CP#7 |
| 433 | mov pc, lr @ CP#8 |
| 434 | mov pc, lr @ CP#9 |
| 435 | #ifdef CONFIG_VFP |
| 436 | b do_vfp @ CP#10 (VFP) |
| 437 | b do_vfp @ CP#11 (VFP) |
| 438 | #else |
| 439 | mov pc, lr @ CP#10 (VFP) |
| 440 | mov pc, lr @ CP#11 (VFP) |
| 441 | #endif |
| 442 | mov pc, lr @ CP#12 |
| 443 | mov pc, lr @ CP#13 |
| 444 | mov pc, lr @ CP#14 (Debug) |
| 445 | mov pc, lr @ CP#15 (Control) |
| 446 | |
| 447 | do_fpe: |
| 448 | ldr r4, .LCfp |
| 449 | add r10, r10, #TI_FPSTATE @ r10 = workspace |
| 450 | ldr pc, [r4] @ Call FP module USR entry point |
| 451 | |
| 452 | /* |
| 453 | * The FP module is called with these registers set: |
| 454 | * r0 = instruction |
| 455 | * r2 = PC+4 |
| 456 | * r9 = normal "successful" return address |
| 457 | * r10 = FP workspace |
| 458 | * lr = unrecognised FP instruction return address |
| 459 | */ |
| 460 | |
| 461 | .data |
| 462 | ENTRY(fp_enter) |
| 463 | .word fpundefinstr |
| 464 | .text |
| 465 | |
| 466 | fpundefinstr: |
| 467 | mov r0, sp |
| 468 | adr lr, ret_from_exception |
| 469 | b do_undefinstr |
| 470 | |
| 471 | .align 5 |
| 472 | __pabt_usr: |
| 473 | usr_entry abt |
| 474 | |
Russell King | 1ec42c0 | 2005-04-26 15:18:26 +0100 | [diff] [blame^] | 475 | enable_irq @ Enable interrupts |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 476 | mov r0, r2 @ address (pc) |
| 477 | mov r1, sp @ regs |
| 478 | bl do_PrefetchAbort @ call abort handler |
| 479 | /* fall through */ |
| 480 | /* |
| 481 | * This is the return code to user mode for abort handlers |
| 482 | */ |
| 483 | ENTRY(ret_from_exception) |
| 484 | get_thread_info tsk |
| 485 | mov why, #0 |
| 486 | b ret_to_user |
| 487 | |
| 488 | /* |
| 489 | * Register switch for ARMv3 and ARMv4 processors |
| 490 | * r0 = previous task_struct, r1 = previous thread_info, r2 = next thread_info |
| 491 | * previous and next are guaranteed not to be the same. |
| 492 | */ |
| 493 | ENTRY(__switch_to) |
| 494 | add ip, r1, #TI_CPU_SAVE |
| 495 | ldr r3, [r2, #TI_TP_VALUE] |
| 496 | stmia ip!, {r4 - sl, fp, sp, lr} @ Store most regs on stack |
| 497 | ldr r6, [r2, #TI_CPU_DOMAIN]! |
| 498 | #if defined(CONFIG_CPU_XSCALE) && !defined(CONFIG_IWMMXT) |
| 499 | mra r4, r5, acc0 |
| 500 | stmia ip, {r4, r5} |
| 501 | #endif |
| 502 | mov r4, #0xffff0fff |
| 503 | str r3, [r4, #-3] @ Set TLS ptr |
| 504 | mcr p15, 0, r6, c3, c0, 0 @ Set domain register |
| 505 | #ifdef CONFIG_VFP |
| 506 | @ Always disable VFP so we can lazily save/restore the old |
| 507 | @ state. This occurs in the context of the previous thread. |
| 508 | VFPFMRX r4, FPEXC |
| 509 | bic r4, r4, #FPEXC_ENABLE |
| 510 | VFPFMXR FPEXC, r4 |
| 511 | #endif |
| 512 | #if defined(CONFIG_IWMMXT) |
| 513 | bl iwmmxt_task_switch |
| 514 | #elif defined(CONFIG_CPU_XSCALE) |
| 515 | add r4, r2, #40 @ cpu_context_save->extra |
| 516 | ldmib r4, {r4, r5} |
| 517 | mar acc0, r4, r5 |
| 518 | #endif |
| 519 | ldmib r2, {r4 - sl, fp, sp, pc} @ Load all regs saved previously |
| 520 | |
| 521 | __INIT |
| 522 | /* |
| 523 | * Vector stubs. |
| 524 | * |
Russell King | 7933523 | 2005-04-26 15:17:42 +0100 | [diff] [blame] | 525 | * This code is copied to 0xffff0200 so we can use branches in the |
| 526 | * vectors, rather than ldr's. Note that this code must not |
| 527 | * exceed 0x300 bytes. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | * |
| 529 | * Common stub entry macro: |
| 530 | * Enter in IRQ mode, spsr = SVC/USR CPSR, lr = SVC/USR PC |
| 531 | */ |
| 532 | .macro vector_stub, name, sym, correction=0 |
| 533 | .align 5 |
| 534 | |
| 535 | vector_\name: |
| 536 | ldr r13, .LCs\sym |
| 537 | .if \correction |
| 538 | sub lr, lr, #\correction |
| 539 | .endif |
| 540 | str lr, [r13] @ save lr_IRQ |
| 541 | mrs lr, spsr |
| 542 | str lr, [r13, #4] @ save spsr_IRQ |
| 543 | @ |
| 544 | @ now branch to the relevant MODE handling routine |
| 545 | @ |
| 546 | mrs r13, cpsr |
| 547 | bic r13, r13, #MODE_MASK |
| 548 | orr r13, r13, #MODE_SVC |
| 549 | msr spsr_cxsf, r13 @ switch to SVC_32 mode |
| 550 | |
| 551 | and lr, lr, #15 |
| 552 | ldr lr, [pc, lr, lsl #2] |
| 553 | movs pc, lr @ Changes mode and branches |
| 554 | .endm |
| 555 | |
Russell King | 7933523 | 2005-04-26 15:17:42 +0100 | [diff] [blame] | 556 | .globl __stubs_start |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 557 | __stubs_start: |
| 558 | /* |
| 559 | * Interrupt dispatcher |
| 560 | */ |
| 561 | vector_stub irq, irq, 4 |
| 562 | |
| 563 | .long __irq_usr @ 0 (USR_26 / USR_32) |
| 564 | .long __irq_invalid @ 1 (FIQ_26 / FIQ_32) |
| 565 | .long __irq_invalid @ 2 (IRQ_26 / IRQ_32) |
| 566 | .long __irq_svc @ 3 (SVC_26 / SVC_32) |
| 567 | .long __irq_invalid @ 4 |
| 568 | .long __irq_invalid @ 5 |
| 569 | .long __irq_invalid @ 6 |
| 570 | .long __irq_invalid @ 7 |
| 571 | .long __irq_invalid @ 8 |
| 572 | .long __irq_invalid @ 9 |
| 573 | .long __irq_invalid @ a |
| 574 | .long __irq_invalid @ b |
| 575 | .long __irq_invalid @ c |
| 576 | .long __irq_invalid @ d |
| 577 | .long __irq_invalid @ e |
| 578 | .long __irq_invalid @ f |
| 579 | |
| 580 | /* |
| 581 | * Data abort dispatcher |
| 582 | * Enter in ABT mode, spsr = USR CPSR, lr = USR PC |
| 583 | */ |
| 584 | vector_stub dabt, abt, 8 |
| 585 | |
| 586 | .long __dabt_usr @ 0 (USR_26 / USR_32) |
| 587 | .long __dabt_invalid @ 1 (FIQ_26 / FIQ_32) |
| 588 | .long __dabt_invalid @ 2 (IRQ_26 / IRQ_32) |
| 589 | .long __dabt_svc @ 3 (SVC_26 / SVC_32) |
| 590 | .long __dabt_invalid @ 4 |
| 591 | .long __dabt_invalid @ 5 |
| 592 | .long __dabt_invalid @ 6 |
| 593 | .long __dabt_invalid @ 7 |
| 594 | .long __dabt_invalid @ 8 |
| 595 | .long __dabt_invalid @ 9 |
| 596 | .long __dabt_invalid @ a |
| 597 | .long __dabt_invalid @ b |
| 598 | .long __dabt_invalid @ c |
| 599 | .long __dabt_invalid @ d |
| 600 | .long __dabt_invalid @ e |
| 601 | .long __dabt_invalid @ f |
| 602 | |
| 603 | /* |
| 604 | * Prefetch abort dispatcher |
| 605 | * Enter in ABT mode, spsr = USR CPSR, lr = USR PC |
| 606 | */ |
| 607 | vector_stub pabt, abt, 4 |
| 608 | |
| 609 | .long __pabt_usr @ 0 (USR_26 / USR_32) |
| 610 | .long __pabt_invalid @ 1 (FIQ_26 / FIQ_32) |
| 611 | .long __pabt_invalid @ 2 (IRQ_26 / IRQ_32) |
| 612 | .long __pabt_svc @ 3 (SVC_26 / SVC_32) |
| 613 | .long __pabt_invalid @ 4 |
| 614 | .long __pabt_invalid @ 5 |
| 615 | .long __pabt_invalid @ 6 |
| 616 | .long __pabt_invalid @ 7 |
| 617 | .long __pabt_invalid @ 8 |
| 618 | .long __pabt_invalid @ 9 |
| 619 | .long __pabt_invalid @ a |
| 620 | .long __pabt_invalid @ b |
| 621 | .long __pabt_invalid @ c |
| 622 | .long __pabt_invalid @ d |
| 623 | .long __pabt_invalid @ e |
| 624 | .long __pabt_invalid @ f |
| 625 | |
| 626 | /* |
| 627 | * Undef instr entry dispatcher |
| 628 | * Enter in UND mode, spsr = SVC/USR CPSR, lr = SVC/USR PC |
| 629 | */ |
| 630 | vector_stub und, und |
| 631 | |
| 632 | .long __und_usr @ 0 (USR_26 / USR_32) |
| 633 | .long __und_invalid @ 1 (FIQ_26 / FIQ_32) |
| 634 | .long __und_invalid @ 2 (IRQ_26 / IRQ_32) |
| 635 | .long __und_svc @ 3 (SVC_26 / SVC_32) |
| 636 | .long __und_invalid @ 4 |
| 637 | .long __und_invalid @ 5 |
| 638 | .long __und_invalid @ 6 |
| 639 | .long __und_invalid @ 7 |
| 640 | .long __und_invalid @ 8 |
| 641 | .long __und_invalid @ 9 |
| 642 | .long __und_invalid @ a |
| 643 | .long __und_invalid @ b |
| 644 | .long __und_invalid @ c |
| 645 | .long __und_invalid @ d |
| 646 | .long __und_invalid @ e |
| 647 | .long __und_invalid @ f |
| 648 | |
| 649 | .align 5 |
| 650 | |
| 651 | /*============================================================================= |
| 652 | * Undefined FIQs |
| 653 | *----------------------------------------------------------------------------- |
| 654 | * Enter in FIQ mode, spsr = ANY CPSR, lr = ANY PC |
| 655 | * MUST PRESERVE SVC SPSR, but need to switch to SVC mode to show our msg. |
| 656 | * Basically to switch modes, we *HAVE* to clobber one register... brain |
| 657 | * damage alert! I don't think that we can execute any code in here in any |
| 658 | * other mode than FIQ... Ok you can switch to another mode, but you can't |
| 659 | * get out of that mode without clobbering one register. |
| 660 | */ |
| 661 | vector_fiq: |
| 662 | disable_fiq |
| 663 | subs pc, lr, #4 |
| 664 | |
| 665 | /*============================================================================= |
| 666 | * Address exception handler |
| 667 | *----------------------------------------------------------------------------- |
| 668 | * These aren't too critical. |
| 669 | * (they're not supposed to happen, and won't happen in 32-bit data mode). |
| 670 | */ |
| 671 | |
| 672 | vector_addrexcptn: |
| 673 | b vector_addrexcptn |
| 674 | |
| 675 | /* |
| 676 | * We group all the following data together to optimise |
| 677 | * for CPUs with separate I & D caches. |
| 678 | */ |
| 679 | .align 5 |
| 680 | |
| 681 | .LCvswi: |
| 682 | .word vector_swi |
| 683 | |
| 684 | .LCsirq: |
| 685 | .word __temp_irq |
| 686 | .LCsund: |
| 687 | .word __temp_und |
| 688 | .LCsabt: |
| 689 | .word __temp_abt |
| 690 | |
Russell King | 7933523 | 2005-04-26 15:17:42 +0100 | [diff] [blame] | 691 | .globl __stubs_end |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 692 | __stubs_end: |
| 693 | |
Russell King | 7933523 | 2005-04-26 15:17:42 +0100 | [diff] [blame] | 694 | .equ stubs_offset, __vectors_start + 0x200 - __stubs_start |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 695 | |
Russell King | 7933523 | 2005-04-26 15:17:42 +0100 | [diff] [blame] | 696 | .globl __vectors_start |
| 697 | __vectors_start: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 698 | swi SYS_ERROR0 |
Russell King | 7933523 | 2005-04-26 15:17:42 +0100 | [diff] [blame] | 699 | b vector_und + stubs_offset |
| 700 | ldr pc, .LCvswi + stubs_offset |
| 701 | b vector_pabt + stubs_offset |
| 702 | b vector_dabt + stubs_offset |
| 703 | b vector_addrexcptn + stubs_offset |
| 704 | b vector_irq + stubs_offset |
| 705 | b vector_fiq + stubs_offset |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 706 | |
Russell King | 7933523 | 2005-04-26 15:17:42 +0100 | [diff] [blame] | 707 | .globl __vectors_end |
| 708 | __vectors_end: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 709 | |
| 710 | .data |
| 711 | |
| 712 | /* |
| 713 | * Do not reorder these, and do not insert extra data between... |
| 714 | */ |
| 715 | |
| 716 | __temp_irq: |
| 717 | .word 0 @ saved lr_irq |
| 718 | .word 0 @ saved spsr_irq |
| 719 | .word -1 @ old_r0 |
| 720 | __temp_und: |
| 721 | .word 0 @ Saved lr_und |
| 722 | .word 0 @ Saved spsr_und |
| 723 | .word -1 @ old_r0 |
| 724 | __temp_abt: |
| 725 | .word 0 @ Saved lr_abt |
| 726 | .word 0 @ Saved spsr_abt |
| 727 | .word -1 @ old_r0 |
| 728 | |
| 729 | .globl cr_alignment |
| 730 | .globl cr_no_alignment |
| 731 | cr_alignment: |
| 732 | .space 4 |
| 733 | cr_no_alignment: |
| 734 | .space 4 |