2 * vectors - Generic ARM exception table code
4 * Copyright (c) 1998 Dan Malek <dmalek@jlc.net>
5 * Copyright (c) 1999 Magnus Damm <kieraypc01.p.y.kie.era.ericsson.se>
6 * Copyright (c) 2000 Wolfgang Denk <wd@denx.de>
7 * Copyright (c) 2001 Alex Züpke <azu@sysgo.de>
8 * Copyright (c) 2001 Marius Gröger <mag@sysgo.de>
9 * Copyright (c) 2002 Alex Züpke <azu@sysgo.de>
10 * Copyright (c) 2002 Gary Jennejohn <garyj@denx.de>
11 * Copyright (c) 2002 Kyle Harris <kharris@nexus-tech.net>
13 * SPDX-License-Identifier: GPL-2.0+
19 *************************************************************************
21 * Symbol _start is referenced elsewhere, so make it global
23 *************************************************************************
29 *************************************************************************
31 * Vectors have their own section so linker script can map them easily
33 *************************************************************************
36 .section ".vectors", "ax"
39 *************************************************************************
41 * Exception vectors as described in ARM reference manuals
43 * Uses indirect branch to allow reaching handlers anywhere in memory.
45 *************************************************************************
50 #ifdef CONFIG_SYS_DV_NOR_BOOT_CFG
51 .word CONFIG_SYS_DV_NOR_BOOT_CFG
55 ldr pc, _undefined_instruction
56 ldr pc, _software_interrupt
57 ldr pc, _prefetch_abort
63 #ifdef CONFIG_ENABLE_ARM_SOC_BOOT0_HOOK
65 * Various SoCs need something special and SoC-specific up front in
66 * order to boot, allow them to set that in their boot0.h file and then
69 #include <asm/arch/boot0.h>
74 *************************************************************************
76 * Indirect vectors table
78 * Symbols referenced here must be defined somewhere else
80 *************************************************************************
83 .globl _undefined_instruction
84 .globl _software_interrupt
85 .globl _prefetch_abort
91 _undefined_instruction: .word undefined_instruction
92 _software_interrupt: .word software_interrupt
93 _prefetch_abort: .word prefetch_abort
94 _data_abort: .word data_abort
95 _not_used: .word not_used
99 .balignl 16,0xdeadbeef
102 *************************************************************************
106 *************************************************************************
109 /* SPL interrupt handling: just hang */
111 #ifdef CONFIG_SPL_BUILD
114 undefined_instruction:
123 bl 1b /* hang and never return */
125 #else /* !CONFIG_SPL_BUILD */
127 /* IRQ stack memory (calculated at run-time) + 8 bytes */
128 .globl IRQ_STACK_START_IN
132 #ifdef CONFIG_USE_IRQ
133 /* IRQ stack memory (calculated at run-time) */
134 .globl IRQ_STACK_START
138 /* IRQ stack memory (calculated at run-time) */
139 .globl FIQ_STACK_START
143 #endif /* CONFIG_USE_IRQ */
148 #define S_FRAME_SIZE 72
170 #define MODE_SVC 0x13
174 * use bad_save_user_regs for abort/prefetch/undef/swi ...
175 * use irq_save_user_regs / irq_restore_user_regs for IRQ/FIQ handling
178 .macro bad_save_user_regs
179 @ carve out a frame on current user stack
180 sub sp, sp, #S_FRAME_SIZE
181 stmia sp, {r0 - r12} @ Save user registers (now in svc mode) r0-r12
182 ldr r2, IRQ_STACK_START_IN
183 @ get values for "aborted" pc and cpsr (into parm regs)
185 add r0, sp, #S_FRAME_SIZE @ grab pointer to old stack
188 stmia r5, {r0 - r3} @ save sp_SVC, lr_SVC, pc, cpsr
189 mov r0, sp @ save current stack into r0 (param register)
192 .macro irq_save_user_regs
193 sub sp, sp, #S_FRAME_SIZE
194 stmia sp, {r0 - r12} @ Calling r0-r12
195 @ !!!! R8 NEEDS to be saved !!!! a reserved stack spot would be good.
197 stmdb r8, {sp, lr}^ @ Calling SP, LR
198 str lr, [r8, #0] @ Save calling PC
200 str r6, [r8, #4] @ Save CPSR
201 str r0, [r8, #8] @ Save OLD_R0
205 .macro irq_restore_user_regs
206 ldmia sp, {r0 - lr}^ @ Calling r0 - lr
208 ldr lr, [sp, #S_PC] @ Get PC
209 add sp, sp, #S_FRAME_SIZE
210 subs pc, lr, #4 @ return & move spsr_svc into cpsr
214 ldr r13, IRQ_STACK_START_IN @ setup our mode stack
216 str lr, [r13] @ save caller lr in position 0 of saved stack
217 mrs lr, spsr @ get the spsr
218 str lr, [r13, #4] @ save spsr in position 1 of saved stack
219 mov r13, #MODE_SVC @ prepare SVC-Mode
221 msr spsr, r13 @ switch modes, make sure moves will execute
222 mov lr, pc @ capture return pc
223 movs pc, lr @ jump to next instruction & switch modes.
226 .macro get_irq_stack @ setup IRQ stack
227 ldr sp, IRQ_STACK_START
230 .macro get_fiq_stack @ setup FIQ stack
231 ldr sp, FIQ_STACK_START
239 undefined_instruction:
242 bl do_undefined_instruction
248 bl do_software_interrupt
268 #ifdef CONFIG_USE_IRQ
275 irq_restore_user_regs
280 /* someone ought to write a more effiction fiq_save_user_regs */
283 irq_restore_user_regs
299 #endif /* CONFIG_USE_IRQ */
301 #endif /* CONFIG_SPL_BUILD */