blob: 001913f429af2d5616409ae9833b26a1125f5d68 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
David Feng85fd5f12013-12-14 11:47:35 +08002/*
3 * (C) Copyright 2013
4 * David Feng <fenghua@phytium.com.cn>
David Feng85fd5f12013-12-14 11:47:35 +08005 */
6
7#include <asm-offsets.h>
8#include <config.h>
David Feng85fd5f12013-12-14 11:47:35 +08009#include <asm/ptrace.h>
10#include <asm/macro.h>
11#include <linux/linkage.h>
12
13/*
Andre Przywaraaf09f012018-07-25 00:57:00 +010014 * AArch64 exception vectors:
15 * We have four types of exceptions:
16 * - synchronous: traps, data aborts, undefined instructions, ...
17 * - IRQ: group 1 (normal) interrupts
18 * - FIQ: group 0 or secure interrupts
19 * - SError: fatal system errors
20 * There are entries for all four of those for different contexts:
21 * - from same exception level, when using the SP_EL0 stack pointer
22 * - from same exception level, when using the SP_ELx stack pointer
23 * - from lower exception level, when this is AArch64
24 * - from lower exception level, when this is AArch32
25 * Each of those 16 entries have space for 32 instructions, each entry must
26 * be 128 byte aligned, the whole table must be 2K aligned.
27 * The 32 instructions are not enough to save and restore all registers and
28 * to branch to the actual handler, so we split this up:
29 * Each entry saves the LR, branches to the save routine, then to the actual
30 * handler, then to the restore routine. The save and restore routines are
31 * each split in half and stuffed in the unused gap between the entries.
32 * Also as we do not run anything in a lower exception level, we just provide
33 * the first 8 entries for exceptions from the same EL.
Andre Przywara143362c2017-11-27 00:47:09 +000034 */
35 .align 11
36 .globl vectors
37vectors:
38 .align 7 /* Current EL Synchronous Thread */
39 stp x29, x30, [sp, #-16]!
40 bl _exception_entry
41 bl do_bad_sync
42 b exception_exit
43
Andre Przywara143362c2017-11-27 00:47:09 +000044/*
Andre Przywaraaf09f012018-07-25 00:57:00 +010045 * Save (most of) the GP registers to the stack frame.
46 * This is the first part of the shared routine called into from all entries.
David Feng85fd5f12013-12-14 11:47:35 +080047 */
Andre Przywara143362c2017-11-27 00:47:09 +000048_exception_entry:
David Feng85fd5f12013-12-14 11:47:35 +080049 stp x27, x28, [sp, #-16]!
50 stp x25, x26, [sp, #-16]!
51 stp x23, x24, [sp, #-16]!
52 stp x21, x22, [sp, #-16]!
53 stp x19, x20, [sp, #-16]!
54 stp x17, x18, [sp, #-16]!
55 stp x15, x16, [sp, #-16]!
56 stp x13, x14, [sp, #-16]!
57 stp x11, x12, [sp, #-16]!
58 stp x9, x10, [sp, #-16]!
59 stp x7, x8, [sp, #-16]!
60 stp x5, x6, [sp, #-16]!
61 stp x3, x4, [sp, #-16]!
62 stp x1, x2, [sp, #-16]!
Andre Przywaraaf09f012018-07-25 00:57:00 +010063 b _save_el_regs /* jump to the second part */
David Feng85fd5f12013-12-14 11:47:35 +080064
Andre Przywaraaf09f012018-07-25 00:57:00 +010065 .align 7 /* Current EL IRQ Thread */
66 stp x29, x30, [sp, #-16]!
67 bl _exception_entry
68 bl do_bad_irq
69 b exception_exit
70
71/*
72 * Save exception specific context: ESR and ELR, for all exception levels.
73 * This is the second part of the shared routine called into from all entries.
74 */
75_save_el_regs:
David Feng85fd5f12013-12-14 11:47:35 +080076 /* Could be running at EL3/EL2/EL1 */
77 switch_el x11, 3f, 2f, 1f
783: mrs x1, esr_el3
79 mrs x2, elr_el3
80 b 0f
812: mrs x1, esr_el2
82 mrs x2, elr_el2
83 b 0f
841: mrs x1, esr_el1
85 mrs x2, elr_el1
860:
Sean Anderson2d755492022-03-22 17:17:35 -040087 stp x1, x0, [sp, #-16]!
88 stp xzr, x2, [sp, #-16]!
David Feng85fd5f12013-12-14 11:47:35 +080089 mov x0, sp
Andre Przywara143362c2017-11-27 00:47:09 +000090 ret
David Feng85fd5f12013-12-14 11:47:35 +080091
Andre Przywaraaf09f012018-07-25 00:57:00 +010092 .align 7 /* Current EL FIQ Thread */
93 stp x29, x30, [sp, #-16]!
94 bl _exception_entry
95 bl do_bad_fiq
96 /* falling through to _exception_exit */
97/*
98 * Restore the exception return address, for all exception levels.
99 * This is the first part of the shared routine called into from all entries.
100 */
Alexander Graf99adbd92016-03-04 01:10:05 +0100101exception_exit:
Sean Anderson2d755492022-03-22 17:17:35 -0400102 ldp xzr, x2, [sp],#16
Alexander Graf99adbd92016-03-04 01:10:05 +0100103 switch_el x11, 3f, 2f, 1f
1043: msr elr_el3, x2
Andre Przywaraaf09f012018-07-25 00:57:00 +0100105 b _restore_regs
Alexander Graf99adbd92016-03-04 01:10:05 +01001062: msr elr_el2, x2
Andre Przywaraaf09f012018-07-25 00:57:00 +0100107 b _restore_regs
Alexander Graf99adbd92016-03-04 01:10:05 +01001081: msr elr_el1, x2
Andre Przywaraaf09f012018-07-25 00:57:00 +0100109 b _restore_regs /* jump to the second part */
110
111 .align 7 /* Current EL Error Thread */
112 stp x29, x30, [sp, #-16]!
113 bl _exception_entry
114 bl do_bad_error
115 b exception_exit
116
117/*
118 * Restore the general purpose registers from the exception stack, then return.
119 * This is the second part of the shared routine called into from all entries.
120 */
121_restore_regs:
Sean Anderson2d755492022-03-22 17:17:35 -0400122 ldp xzr, x0, [sp],#16
Alexander Graf99adbd92016-03-04 01:10:05 +0100123 ldp x1, x2, [sp],#16
124 ldp x3, x4, [sp],#16
125 ldp x5, x6, [sp],#16
126 ldp x7, x8, [sp],#16
127 ldp x9, x10, [sp],#16
128 ldp x11, x12, [sp],#16
129 ldp x13, x14, [sp],#16
130 ldp x15, x16, [sp],#16
131 ldp x17, x18, [sp],#16
132 ldp x19, x20, [sp],#16
133 ldp x21, x22, [sp],#16
134 ldp x23, x24, [sp],#16
135 ldp x25, x26, [sp],#16
136 ldp x27, x28, [sp],#16
137 ldp x29, x30, [sp],#16
138 eret
Andre Przywaraaf09f012018-07-25 00:57:00 +0100139
140 .align 7 /* Current EL (SP_ELx) Synchronous Handler */
141 stp x29, x30, [sp, #-16]!
142 bl _exception_entry
143 bl do_sync
144 b exception_exit
145
146 .align 7 /* Current EL (SP_ELx) IRQ Handler */
147 stp x29, x30, [sp, #-16]!
148 bl _exception_entry
149 bl do_irq
150 b exception_exit
151
152 .align 7 /* Current EL (SP_ELx) FIQ Handler */
153 stp x29, x30, [sp, #-16]!
154 bl _exception_entry
155 bl do_fiq
156 b exception_exit
157
158 .align 7 /* Current EL (SP_ELx) Error Handler */
159 stp x29, x30, [sp, #-16]!
160 bl _exception_entry
161 bl do_error
162 b exception_exit