blob: 22b240da949bcd8e9728f9325f2da14eb4ddef41 [file] [log] [blame]
Catalin Marinas60ffc302012-03-05 11:49:27 +00001/*
2 * Low-level exception handling code
3 *
4 * Copyright (C) 2012 ARM Ltd.
5 * Authors: Catalin Marinas <catalin.marinas@arm.com>
6 * Will Deacon <will.deacon@arm.com>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 */
20
Marc Zyngier8e290622018-05-29 13:11:06 +010021#include <linux/arm-smccc.h>
Catalin Marinas60ffc302012-03-05 11:49:27 +000022#include <linux/init.h>
23#include <linux/linkage.h>
24
Marc Zyngier8d883b22015-06-01 10:47:41 +010025#include <asm/alternative.h>
Catalin Marinas60ffc302012-03-05 11:49:27 +000026#include <asm/assembler.h>
27#include <asm/asm-offsets.h>
Will Deacon905e8c52015-03-23 19:07:02 +000028#include <asm/cpufeature.h>
Catalin Marinas60ffc302012-03-05 11:49:27 +000029#include <asm/errno.h>
Marc Zyngier5c1ce6f2013-04-08 17:17:03 +010030#include <asm/esr.h>
James Morse8e23dac2015-12-04 11:02:27 +000031#include <asm/irq.h>
Will Deaconc7b9ada2017-11-14 14:07:40 +000032#include <asm/memory.h>
33#include <asm/mmu.h>
Yury Noroveef94a32017-08-31 11:30:50 +030034#include <asm/processor.h>
Catalin Marinas39bc88e2016-09-02 14:54:03 +010035#include <asm/ptrace.h>
Catalin Marinas60ffc302012-03-05 11:49:27 +000036#include <asm/thread_info.h>
Al Virob4b86642016-12-26 04:10:19 -050037#include <asm/asm-uaccess.h>
Catalin Marinas60ffc302012-03-05 11:49:27 +000038#include <asm/unistd.h>
39
40/*
Larry Bassel6c81fe72014-05-30 12:34:15 -070041 * Context tracking subsystem. Used to instrument transitions
42 * between user and kernel mode.
43 */
Mark Rutlandd9be0322018-07-11 14:56:46 +010044 .macro ct_user_exit
Larry Bassel6c81fe72014-05-30 12:34:15 -070045#ifdef CONFIG_CONTEXT_TRACKING
46 bl context_tracking_user_exit
Larry Bassel6c81fe72014-05-30 12:34:15 -070047#endif
48 .endm
49
50 .macro ct_user_enter
51#ifdef CONFIG_CONTEXT_TRACKING
52 bl context_tracking_user_enter
53#endif
54 .endm
55
56/*
Catalin Marinas60ffc302012-03-05 11:49:27 +000057 * Bad Abort numbers
58 *-----------------
59 */
60#define BAD_SYNC 0
61#define BAD_IRQ 1
62#define BAD_FIQ 2
63#define BAD_ERROR 3
64
Will Deacon5b1f7fe2017-11-14 14:20:21 +000065 .macro kernel_ventry, el, label, regsize = 64
Mark Rutlandb11e5752017-07-19 17:24:49 +010066 .align 7
Will Deacon4bf32862017-11-14 14:24:29 +000067#ifdef CONFIG_UNMAP_KERNEL_AT_EL0
Will Deaconea1e3de2017-11-14 14:38:19 +000068alternative_if ARM64_UNMAP_KERNEL_AT_EL0
Will Deacon4bf32862017-11-14 14:24:29 +000069 .if \el == 0
70 .if \regsize == 64
71 mrs x30, tpidrro_el0
72 msr tpidrro_el0, xzr
73 .else
74 mov x30, xzr
75 .endif
76 .endif
Will Deaconea1e3de2017-11-14 14:38:19 +000077alternative_else_nop_endif
Will Deacon4bf32862017-11-14 14:24:29 +000078#endif
79
Will Deacon63648dd2014-09-29 12:26:41 +010080 sub sp, sp, #S_FRAME_SIZE
Mark Rutland872d8322017-07-14 20:30:35 +010081#ifdef CONFIG_VMAP_STACK
82 /*
83 * Test whether the SP has overflowed, without corrupting a GPR.
84 * Task and IRQ stacks are aligned to (1 << THREAD_SHIFT).
85 */
86 add sp, sp, x0 // sp' = sp + x0
87 sub x0, sp, x0 // x0' = sp' - x0 = (sp + x0) - x0 = sp
88 tbnz x0, #THREAD_SHIFT, 0f
89 sub x0, sp, x0 // x0'' = sp' - x0' = (sp + x0) - sp = x0
90 sub sp, sp, x0 // sp'' = sp' - x0 = (sp + x0) - x0 = sp
Will Deacon5b1f7fe2017-11-14 14:20:21 +000091 b el\()\el\()_\label
Mark Rutland872d8322017-07-14 20:30:35 +010092
930:
94 /*
95 * Either we've just detected an overflow, or we've taken an exception
96 * while on the overflow stack. Either way, we won't return to
97 * userspace, and can clobber EL0 registers to free up GPRs.
98 */
99
100 /* Stash the original SP (minus S_FRAME_SIZE) in tpidr_el0. */
101 msr tpidr_el0, x0
102
103 /* Recover the original x0 value and stash it in tpidrro_el0 */
104 sub x0, sp, x0
105 msr tpidrro_el0, x0
106
107 /* Switch to the overflow stack */
108 adr_this_cpu sp, overflow_stack + OVERFLOW_STACK_SIZE, x0
109
110 /*
111 * Check whether we were already on the overflow stack. This may happen
112 * after panic() re-enables interrupts.
113 */
114 mrs x0, tpidr_el0 // sp of interrupted context
115 sub x0, sp, x0 // delta with top of overflow stack
116 tst x0, #~(OVERFLOW_STACK_SIZE - 1) // within range?
117 b.ne __bad_stack // no? -> bad stack pointer
118
119 /* We were already on the overflow stack. Restore sp/x0 and carry on. */
120 sub sp, sp, x0
121 mrs x0, tpidrro_el0
122#endif
Will Deacon5b1f7fe2017-11-14 14:20:21 +0000123 b el\()\el\()_\label
Mark Rutlandb11e5752017-07-19 17:24:49 +0100124 .endm
125
Will Deacon4bf32862017-11-14 14:24:29 +0000126 .macro tramp_alias, dst, sym
127 mov_q \dst, TRAMP_VALIAS
128 add \dst, \dst, #(\sym - .entry.tramp.text)
Mark Rutlandb11e5752017-07-19 17:24:49 +0100129 .endm
130
Marc Zyngier8e290622018-05-29 13:11:06 +0100131 // This macro corrupts x0-x3. It is the caller's duty
132 // to save/restore them if required.
Mark Rutland99ed3ed2018-07-11 14:56:47 +0100133 .macro apply_ssbd, state, tmp1, tmp2
Marc Zyngier8e290622018-05-29 13:11:06 +0100134#ifdef CONFIG_ARM64_SSBD
Marc Zyngier986372c2018-05-29 13:11:11 +0100135alternative_cb arm64_enable_wa2_handling
Mark Rutland99ed3ed2018-07-11 14:56:47 +0100136 b .L__asm_ssbd_skip\@
Marc Zyngier986372c2018-05-29 13:11:11 +0100137alternative_cb_end
Marc Zyngier5cf9ce62018-05-29 13:11:07 +0100138 ldr_this_cpu \tmp2, arm64_ssbd_callback_required, \tmp1
Mark Rutland99ed3ed2018-07-11 14:56:47 +0100139 cbz \tmp2, .L__asm_ssbd_skip\@
Marc Zyngier9dd96142018-05-29 13:11:13 +0100140 ldr \tmp2, [tsk, #TSK_TI_FLAGS]
Mark Rutland99ed3ed2018-07-11 14:56:47 +0100141 tbnz \tmp2, #TIF_SSBD, .L__asm_ssbd_skip\@
Marc Zyngier8e290622018-05-29 13:11:06 +0100142 mov w0, #ARM_SMCCC_ARCH_WORKAROUND_2
143 mov w1, #\state
144alternative_cb arm64_update_smccc_conduit
145 nop // Patched to SMC/HVC #0
146alternative_cb_end
Mark Rutland99ed3ed2018-07-11 14:56:47 +0100147.L__asm_ssbd_skip\@:
Marc Zyngier8e290622018-05-29 13:11:06 +0100148#endif
149 .endm
150
Mark Rutlandb11e5752017-07-19 17:24:49 +0100151 .macro kernel_entry, el, regsize = 64
Catalin Marinas60ffc302012-03-05 11:49:27 +0000152 .if \regsize == 32
153 mov w0, w0 // zero upper 32 bits of x0
154 .endif
Will Deacon63648dd2014-09-29 12:26:41 +0100155 stp x0, x1, [sp, #16 * 0]
156 stp x2, x3, [sp, #16 * 1]
157 stp x4, x5, [sp, #16 * 2]
158 stp x6, x7, [sp, #16 * 3]
159 stp x8, x9, [sp, #16 * 4]
160 stp x10, x11, [sp, #16 * 5]
161 stp x12, x13, [sp, #16 * 6]
162 stp x14, x15, [sp, #16 * 7]
163 stp x16, x17, [sp, #16 * 8]
164 stp x18, x19, [sp, #16 * 9]
165 stp x20, x21, [sp, #16 * 10]
166 stp x22, x23, [sp, #16 * 11]
167 stp x24, x25, [sp, #16 * 12]
168 stp x26, x27, [sp, #16 * 13]
169 stp x28, x29, [sp, #16 * 14]
170
Catalin Marinas60ffc302012-03-05 11:49:27 +0000171 .if \el == 0
172 mrs x21, sp_el0
Mark Rutlandc02433d2016-11-03 20:23:13 +0000173 ldr_this_cpu tsk, __entry_task, x20 // Ensure MDSCR_EL1.SS is clear,
174 ldr x19, [tsk, #TSK_TI_FLAGS] // since we can unmask debug
Will Deacon2a283072014-04-29 19:04:06 +0100175 disable_step_tsk x19, x20 // exceptions when scheduling.
James Morse49003a82015-12-10 10:22:41 +0000176
Mark Rutland99ed3ed2018-07-11 14:56:47 +0100177 apply_ssbd 1, x22, x23
Marc Zyngier8e290622018-05-29 13:11:06 +0100178
James Morse49003a82015-12-10 10:22:41 +0000179 mov x29, xzr // fp pointed to user-space
Catalin Marinas60ffc302012-03-05 11:49:27 +0000180 .else
181 add x21, sp, #S_FRAME_SIZE
James Morsee19a6ee2016-06-20 18:28:01 +0100182 get_thread_info tsk
Robin Murphy51369e32018-02-05 15:34:18 +0000183 /* Save the task's original addr_limit and set USER_DS */
Mark Rutlandc02433d2016-11-03 20:23:13 +0000184 ldr x20, [tsk, #TSK_TI_ADDR_LIMIT]
James Morsee19a6ee2016-06-20 18:28:01 +0100185 str x20, [sp, #S_ORIG_ADDR_LIMIT]
Robin Murphy51369e32018-02-05 15:34:18 +0000186 mov x20, #USER_DS
Mark Rutlandc02433d2016-11-03 20:23:13 +0000187 str x20, [tsk, #TSK_TI_ADDR_LIMIT]
Vladimir Murzin563cada2016-09-01 14:35:59 +0100188 /* No need to reset PSTATE.UAO, hardware's already set it to 0 for us */
James Morsee19a6ee2016-06-20 18:28:01 +0100189 .endif /* \el == 0 */
Catalin Marinas60ffc302012-03-05 11:49:27 +0000190 mrs x22, elr_el1
191 mrs x23, spsr_el1
192 stp lr, x21, [sp, #S_LR]
Catalin Marinas39bc88e2016-09-02 14:54:03 +0100193
Ard Biesheuvel73267492017-07-22 18:45:33 +0100194 /*
195 * In order to be able to dump the contents of struct pt_regs at the
196 * time the exception was taken (in case we attempt to walk the call
197 * stack later), chain it together with the stack frames.
198 */
199 .if \el == 0
200 stp xzr, xzr, [sp, #S_STACKFRAME]
201 .else
202 stp x29, x22, [sp, #S_STACKFRAME]
203 .endif
204 add x29, sp, #S_STACKFRAME
205
Catalin Marinas39bc88e2016-09-02 14:54:03 +0100206#ifdef CONFIG_ARM64_SW_TTBR0_PAN
207 /*
208 * Set the TTBR0 PAN bit in SPSR. When the exception is taken from
209 * EL0, there is no need to check the state of TTBR0_EL1 since
210 * accesses are always enabled.
211 * Note that the meaning of this bit differs from the ARMv8.1 PAN
212 * feature as all TTBR0_EL1 accesses are disabled, not just those to
213 * user mappings.
214 */
215alternative_if ARM64_HAS_PAN
216 b 1f // skip TTBR0 PAN
217alternative_else_nop_endif
218
219 .if \el != 0
220 mrs x21, ttbr0_el1
Will Deaconb5195382017-12-01 17:33:48 +0000221 tst x21, #TTBR_ASID_MASK // Check for the reserved ASID
Catalin Marinas39bc88e2016-09-02 14:54:03 +0100222 orr x23, x23, #PSR_PAN_BIT // Set the emulated PAN in the saved SPSR
223 b.eq 1f // TTBR0 access already disabled
224 and x23, x23, #~PSR_PAN_BIT // Clear the emulated PAN in the saved SPSR
225 .endif
226
227 __uaccess_ttbr0_disable x21
2281:
229#endif
230
Catalin Marinas60ffc302012-03-05 11:49:27 +0000231 stp x22, x23, [sp, #S_PC]
232
Dave Martin17c28952017-08-01 15:35:54 +0100233 /* Not in a syscall by default (el0_svc overwrites for real syscall) */
Catalin Marinas60ffc302012-03-05 11:49:27 +0000234 .if \el == 0
Dave Martin17c28952017-08-01 15:35:54 +0100235 mov w21, #NO_SYSCALL
Dave Martin35d0e6f2017-08-01 15:35:53 +0100236 str w21, [sp, #S_SYSCALLNO]
Catalin Marinas60ffc302012-03-05 11:49:27 +0000237 .endif
238
239 /*
Jungseok Lee6cdf9c72015-12-04 11:02:25 +0000240 * Set sp_el0 to current thread_info.
241 */
242 .if \el == 0
243 msr sp_el0, tsk
244 .endif
245
246 /*
Catalin Marinas60ffc302012-03-05 11:49:27 +0000247 * Registers that may be useful after this macro is invoked:
248 *
249 * x21 - aborted SP
250 * x22 - aborted PC
251 * x23 - aborted PSTATE
252 */
253 .endm
254
Will Deacon412fcb62015-08-19 15:57:09 +0100255 .macro kernel_exit, el
James Morsee19a6ee2016-06-20 18:28:01 +0100256 .if \el != 0
James Morse8d667722017-11-02 12:12:37 +0000257 disable_daif
258
James Morsee19a6ee2016-06-20 18:28:01 +0100259 /* Restore the task's original addr_limit. */
260 ldr x20, [sp, #S_ORIG_ADDR_LIMIT]
Mark Rutlandc02433d2016-11-03 20:23:13 +0000261 str x20, [tsk, #TSK_TI_ADDR_LIMIT]
James Morsee19a6ee2016-06-20 18:28:01 +0100262
263 /* No need to restore UAO, it will be restored from SPSR_EL1 */
264 .endif
265
Catalin Marinas60ffc302012-03-05 11:49:27 +0000266 ldp x21, x22, [sp, #S_PC] // load ELR, SPSR
267 .if \el == 0
Larry Bassel6c81fe72014-05-30 12:34:15 -0700268 ct_user_enter
Catalin Marinas39bc88e2016-09-02 14:54:03 +0100269 .endif
270
271#ifdef CONFIG_ARM64_SW_TTBR0_PAN
272 /*
273 * Restore access to TTBR0_EL1. If returning to EL0, no need for SPSR
274 * PAN bit checking.
275 */
276alternative_if ARM64_HAS_PAN
277 b 2f // skip TTBR0 PAN
278alternative_else_nop_endif
279
280 .if \el != 0
281 tbnz x22, #22, 1f // Skip re-enabling TTBR0 access if the PSR_PAN_BIT is set
282 .endif
283
Will Deacon27a921e2017-08-10 13:58:16 +0100284 __uaccess_ttbr0_enable x0, x1
Catalin Marinas39bc88e2016-09-02 14:54:03 +0100285
286 .if \el == 0
287 /*
288 * Enable errata workarounds only if returning to user. The only
289 * workaround currently required for TTBR0_EL1 changes are for the
290 * Cavium erratum 27456 (broadcast TLBI instructions may cause I-cache
291 * corruption).
292 */
Marc Zyngier95e3de32018-01-02 18:19:39 +0000293 bl post_ttbr_update_workaround
Catalin Marinas39bc88e2016-09-02 14:54:03 +0100294 .endif
2951:
296 .if \el != 0
297 and x22, x22, #~PSR_PAN_BIT // ARMv8.0 CPUs do not understand this bit
298 .endif
2992:
300#endif
301
302 .if \el == 0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000303 ldr x23, [sp, #S_SP] // load return stack pointer
Catalin Marinas60ffc302012-03-05 11:49:27 +0000304 msr sp_el0, x23
Will Deacon4bf32862017-11-14 14:24:29 +0000305 tst x22, #PSR_MODE32_BIT // native task?
306 b.eq 3f
307
Will Deacon905e8c52015-03-23 19:07:02 +0000308#ifdef CONFIG_ARM64_ERRATUM_845719
Mark Rutland6ba3b552016-09-07 11:07:09 +0100309alternative_if ARM64_WORKAROUND_845719
Daniel Thompsone28cabf2015-07-22 12:21:03 +0100310#ifdef CONFIG_PID_IN_CONTEXTIDR
311 mrs x29, contextidr_el1
312 msr contextidr_el1, x29
313#else
314 msr contextidr_el1, xzr
315#endif
Mark Rutland6ba3b552016-09-07 11:07:09 +0100316alternative_else_nop_endif
Will Deacon905e8c52015-03-23 19:07:02 +0000317#endif
Will Deacon4bf32862017-11-14 14:24:29 +00003183:
Mark Rutland99ed3ed2018-07-11 14:56:47 +0100319 apply_ssbd 0, x0, x1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000320 .endif
Catalin Marinas39bc88e2016-09-02 14:54:03 +0100321
Will Deacon63648dd2014-09-29 12:26:41 +0100322 msr elr_el1, x21 // set up the return data
323 msr spsr_el1, x22
Will Deacon63648dd2014-09-29 12:26:41 +0100324 ldp x0, x1, [sp, #16 * 0]
Will Deacon63648dd2014-09-29 12:26:41 +0100325 ldp x2, x3, [sp, #16 * 1]
326 ldp x4, x5, [sp, #16 * 2]
327 ldp x6, x7, [sp, #16 * 3]
328 ldp x8, x9, [sp, #16 * 4]
329 ldp x10, x11, [sp, #16 * 5]
330 ldp x12, x13, [sp, #16 * 6]
331 ldp x14, x15, [sp, #16 * 7]
332 ldp x16, x17, [sp, #16 * 8]
333 ldp x18, x19, [sp, #16 * 9]
334 ldp x20, x21, [sp, #16 * 10]
335 ldp x22, x23, [sp, #16 * 11]
336 ldp x24, x25, [sp, #16 * 12]
337 ldp x26, x27, [sp, #16 * 13]
338 ldp x28, x29, [sp, #16 * 14]
339 ldr lr, [sp, #S_LR]
340 add sp, sp, #S_FRAME_SIZE // restore sp
Mathieu Desnoyersf1e3a122018-01-29 15:20:19 -0500341 /*
342 * ARCH_HAS_MEMBARRIER_SYNC_CORE rely on eret context synchronization
343 * when returning from IPI handler, and when returning to user-space.
344 */
Will Deacon4bf32862017-11-14 14:24:29 +0000345
Will Deacon4bf32862017-11-14 14:24:29 +0000346 .if \el == 0
Will Deaconea1e3de2017-11-14 14:38:19 +0000347alternative_insn eret, nop, ARM64_UNMAP_KERNEL_AT_EL0
348#ifdef CONFIG_UNMAP_KERNEL_AT_EL0
Will Deacon4bf32862017-11-14 14:24:29 +0000349 bne 4f
350 msr far_el1, x30
351 tramp_alias x30, tramp_exit_native
352 br x30
3534:
354 tramp_alias x30, tramp_exit_compat
355 br x30
Will Deaconea1e3de2017-11-14 14:38:19 +0000356#endif
Will Deacon4bf32862017-11-14 14:24:29 +0000357 .else
358 eret
359 .endif
Catalin Marinas60ffc302012-03-05 11:49:27 +0000360 .endm
361
James Morse971c67c2015-12-15 11:21:25 +0000362 .macro irq_stack_entry
James Morse8e23dac2015-12-04 11:02:27 +0000363 mov x19, sp // preserve the original sp
364
James Morse8e23dac2015-12-04 11:02:27 +0000365 /*
Mark Rutlandc02433d2016-11-03 20:23:13 +0000366 * Compare sp with the base of the task stack.
367 * If the top ~(THREAD_SIZE - 1) bits match, we are on a task stack,
368 * and should switch to the irq stack.
James Morse8e23dac2015-12-04 11:02:27 +0000369 */
Mark Rutlandc02433d2016-11-03 20:23:13 +0000370 ldr x25, [tsk, TSK_STACK]
371 eor x25, x25, x19
372 and x25, x25, #~(THREAD_SIZE - 1)
373 cbnz x25, 9998f
James Morse8e23dac2015-12-04 11:02:27 +0000374
Mark Rutlandf60fe782017-07-31 21:17:03 +0100375 ldr_this_cpu x25, irq_stack_ptr, x26
Ard Biesheuvel34be98f2017-07-20 17:15:45 +0100376 mov x26, #IRQ_STACK_SIZE
James Morse8e23dac2015-12-04 11:02:27 +0000377 add x26, x25, x26
James Morsed224a692015-12-18 16:01:47 +0000378
379 /* switch to the irq stack */
James Morse8e23dac2015-12-04 11:02:27 +0000380 mov sp, x26
James Morse8e23dac2015-12-04 11:02:27 +00003819998:
382 .endm
383
384 /*
385 * x19 should be preserved between irq_stack_entry and
386 * irq_stack_exit.
387 */
388 .macro irq_stack_exit
389 mov sp, x19
390 .endm
391
Catalin Marinas60ffc302012-03-05 11:49:27 +0000392/*
393 * These are the registers used in the syscall handler, and allow us to
394 * have in theory up to 7 arguments to a function - x0 to x6.
395 *
396 * x7 is reserved for the system call number in 32-bit mode.
397 */
Dave Martin35d0e6f2017-08-01 15:35:53 +0100398wsc_nr .req w25 // number of system calls
Will Deacon6314d902018-02-05 15:34:20 +0000399xsc_nr .req x25 // number of system calls (zero-extended)
Dave Martin35d0e6f2017-08-01 15:35:53 +0100400wscno .req w26 // syscall number
401xscno .req x26 // syscall number (zero-extended)
Catalin Marinas60ffc302012-03-05 11:49:27 +0000402stbl .req x27 // syscall table pointer
403tsk .req x28 // current thread_info
404
405/*
406 * Interrupt handling.
407 */
408 .macro irq_handler
James Morse8e23dac2015-12-04 11:02:27 +0000409 ldr_l x1, handle_arch_irq
Catalin Marinas60ffc302012-03-05 11:49:27 +0000410 mov x0, sp
James Morse971c67c2015-12-15 11:21:25 +0000411 irq_stack_entry
Catalin Marinas60ffc302012-03-05 11:49:27 +0000412 blr x1
James Morse8e23dac2015-12-04 11:02:27 +0000413 irq_stack_exit
Catalin Marinas60ffc302012-03-05 11:49:27 +0000414 .endm
415
416 .text
417
418/*
419 * Exception vectors.
420 */
Pratyush Anand888b3c82016-07-08 12:35:50 -0400421 .pushsection ".entry.text", "ax"
Catalin Marinas60ffc302012-03-05 11:49:27 +0000422
423 .align 11
424ENTRY(vectors)
Will Deacon5b1f7fe2017-11-14 14:20:21 +0000425 kernel_ventry 1, sync_invalid // Synchronous EL1t
426 kernel_ventry 1, irq_invalid // IRQ EL1t
427 kernel_ventry 1, fiq_invalid // FIQ EL1t
428 kernel_ventry 1, error_invalid // Error EL1t
Catalin Marinas60ffc302012-03-05 11:49:27 +0000429
Will Deacon5b1f7fe2017-11-14 14:20:21 +0000430 kernel_ventry 1, sync // Synchronous EL1h
431 kernel_ventry 1, irq // IRQ EL1h
432 kernel_ventry 1, fiq_invalid // FIQ EL1h
433 kernel_ventry 1, error // Error EL1h
Catalin Marinas60ffc302012-03-05 11:49:27 +0000434
Will Deacon5b1f7fe2017-11-14 14:20:21 +0000435 kernel_ventry 0, sync // Synchronous 64-bit EL0
436 kernel_ventry 0, irq // IRQ 64-bit EL0
437 kernel_ventry 0, fiq_invalid // FIQ 64-bit EL0
438 kernel_ventry 0, error // Error 64-bit EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000439
440#ifdef CONFIG_COMPAT
Will Deacon5b1f7fe2017-11-14 14:20:21 +0000441 kernel_ventry 0, sync_compat, 32 // Synchronous 32-bit EL0
442 kernel_ventry 0, irq_compat, 32 // IRQ 32-bit EL0
443 kernel_ventry 0, fiq_invalid_compat, 32 // FIQ 32-bit EL0
444 kernel_ventry 0, error_compat, 32 // Error 32-bit EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000445#else
Will Deacon5b1f7fe2017-11-14 14:20:21 +0000446 kernel_ventry 0, sync_invalid, 32 // Synchronous 32-bit EL0
447 kernel_ventry 0, irq_invalid, 32 // IRQ 32-bit EL0
448 kernel_ventry 0, fiq_invalid, 32 // FIQ 32-bit EL0
449 kernel_ventry 0, error_invalid, 32 // Error 32-bit EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000450#endif
451END(vectors)
452
Mark Rutland872d8322017-07-14 20:30:35 +0100453#ifdef CONFIG_VMAP_STACK
454 /*
455 * We detected an overflow in kernel_ventry, which switched to the
456 * overflow stack. Stash the exception regs, and head to our overflow
457 * handler.
458 */
459__bad_stack:
460 /* Restore the original x0 value */
461 mrs x0, tpidrro_el0
462
463 /*
464 * Store the original GPRs to the new stack. The orginal SP (minus
465 * S_FRAME_SIZE) was stashed in tpidr_el0 by kernel_ventry.
466 */
467 sub sp, sp, #S_FRAME_SIZE
468 kernel_entry 1
469 mrs x0, tpidr_el0
470 add x0, x0, #S_FRAME_SIZE
471 str x0, [sp, #S_SP]
472
473 /* Stash the regs for handle_bad_stack */
474 mov x0, sp
475
476 /* Time to die */
477 bl handle_bad_stack
478 ASM_BUG()
479#endif /* CONFIG_VMAP_STACK */
480
Catalin Marinas60ffc302012-03-05 11:49:27 +0000481/*
482 * Invalid mode handlers
483 */
484 .macro inv_entry, el, reason, regsize = 64
Ard Biesheuvelb6609502016-03-18 10:58:09 +0100485 kernel_entry \el, \regsize
Catalin Marinas60ffc302012-03-05 11:49:27 +0000486 mov x0, sp
487 mov x1, #\reason
488 mrs x2, esr_el1
Mark Rutland2d0e7512017-07-26 11:14:53 +0100489 bl bad_mode
490 ASM_BUG()
Catalin Marinas60ffc302012-03-05 11:49:27 +0000491 .endm
492
493el0_sync_invalid:
494 inv_entry 0, BAD_SYNC
495ENDPROC(el0_sync_invalid)
496
497el0_irq_invalid:
498 inv_entry 0, BAD_IRQ
499ENDPROC(el0_irq_invalid)
500
501el0_fiq_invalid:
502 inv_entry 0, BAD_FIQ
503ENDPROC(el0_fiq_invalid)
504
505el0_error_invalid:
506 inv_entry 0, BAD_ERROR
507ENDPROC(el0_error_invalid)
508
509#ifdef CONFIG_COMPAT
510el0_fiq_invalid_compat:
511 inv_entry 0, BAD_FIQ, 32
512ENDPROC(el0_fiq_invalid_compat)
Catalin Marinas60ffc302012-03-05 11:49:27 +0000513#endif
514
515el1_sync_invalid:
516 inv_entry 1, BAD_SYNC
517ENDPROC(el1_sync_invalid)
518
519el1_irq_invalid:
520 inv_entry 1, BAD_IRQ
521ENDPROC(el1_irq_invalid)
522
523el1_fiq_invalid:
524 inv_entry 1, BAD_FIQ
525ENDPROC(el1_fiq_invalid)
526
527el1_error_invalid:
528 inv_entry 1, BAD_ERROR
529ENDPROC(el1_error_invalid)
530
531/*
532 * EL1 mode handlers.
533 */
534 .align 6
535el1_sync:
536 kernel_entry 1
537 mrs x1, esr_el1 // read the syndrome register
Mark Rutlandaed40e02014-11-24 12:31:40 +0000538 lsr x24, x1, #ESR_ELx_EC_SHIFT // exception class
539 cmp x24, #ESR_ELx_EC_DABT_CUR // data abort in EL1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000540 b.eq el1_da
Laura Abbott9adeb8e2016-08-09 18:25:26 -0700541 cmp x24, #ESR_ELx_EC_IABT_CUR // instruction abort in EL1
542 b.eq el1_ia
Mark Rutlandaed40e02014-11-24 12:31:40 +0000543 cmp x24, #ESR_ELx_EC_SYS64 // configurable trap
Catalin Marinas60ffc302012-03-05 11:49:27 +0000544 b.eq el1_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000545 cmp x24, #ESR_ELx_EC_SP_ALIGN // stack alignment exception
Catalin Marinas60ffc302012-03-05 11:49:27 +0000546 b.eq el1_sp_pc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000547 cmp x24, #ESR_ELx_EC_PC_ALIGN // pc alignment exception
Catalin Marinas60ffc302012-03-05 11:49:27 +0000548 b.eq el1_sp_pc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000549 cmp x24, #ESR_ELx_EC_UNKNOWN // unknown exception in EL1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000550 b.eq el1_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000551 cmp x24, #ESR_ELx_EC_BREAKPT_CUR // debug exception in EL1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000552 b.ge el1_dbg
553 b el1_inv
Laura Abbott9adeb8e2016-08-09 18:25:26 -0700554
555el1_ia:
556 /*
557 * Fall through to the Data abort case
558 */
Catalin Marinas60ffc302012-03-05 11:49:27 +0000559el1_da:
560 /*
561 * Data abort handling
562 */
Kristina Martsenko276e9322017-05-03 16:37:47 +0100563 mrs x3, far_el1
James Morseb55a5a12017-11-02 12:12:39 +0000564 inherit_daif pstate=x23, tmp=x2
Kristina Martsenko276e9322017-05-03 16:37:47 +0100565 clear_address_tag x0, x3
Catalin Marinas60ffc302012-03-05 11:49:27 +0000566 mov x2, sp // struct pt_regs
567 bl do_mem_abort
568
Catalin Marinas60ffc302012-03-05 11:49:27 +0000569 kernel_exit 1
570el1_sp_pc:
571 /*
572 * Stack or PC alignment exception handling
573 */
574 mrs x0, far_el1
James Morseb55a5a12017-11-02 12:12:39 +0000575 inherit_daif pstate=x23, tmp=x2
Catalin Marinas60ffc302012-03-05 11:49:27 +0000576 mov x2, sp
Mark Rutland2d0e7512017-07-26 11:14:53 +0100577 bl do_sp_pc_abort
578 ASM_BUG()
Catalin Marinas60ffc302012-03-05 11:49:27 +0000579el1_undef:
580 /*
581 * Undefined instruction
582 */
James Morseb55a5a12017-11-02 12:12:39 +0000583 inherit_daif pstate=x23, tmp=x2
Catalin Marinas60ffc302012-03-05 11:49:27 +0000584 mov x0, sp
Mark Rutland2d0e7512017-07-26 11:14:53 +0100585 bl do_undefinstr
586 ASM_BUG()
Catalin Marinas60ffc302012-03-05 11:49:27 +0000587el1_dbg:
588 /*
589 * Debug exception handling
590 */
Mark Rutlandaed40e02014-11-24 12:31:40 +0000591 cmp x24, #ESR_ELx_EC_BRK64 // if BRK64
Sandeepa Prabhuee6214c2013-12-04 05:50:20 +0000592 cinc x24, x24, eq // set bit '0'
Catalin Marinas60ffc302012-03-05 11:49:27 +0000593 tbz x24, #0, el1_inv // EL1 only
594 mrs x0, far_el1
595 mov x2, sp // struct pt_regs
596 bl do_debug_exception
Catalin Marinas60ffc302012-03-05 11:49:27 +0000597 kernel_exit 1
598el1_inv:
599 // TODO: add support for undefined instructions in kernel mode
James Morseb55a5a12017-11-02 12:12:39 +0000600 inherit_daif pstate=x23, tmp=x2
Catalin Marinas60ffc302012-03-05 11:49:27 +0000601 mov x0, sp
Mark Rutland1b428042015-07-07 18:00:49 +0100602 mov x2, x1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000603 mov x1, #BAD_SYNC
Mark Rutland2d0e7512017-07-26 11:14:53 +0100604 bl bad_mode
605 ASM_BUG()
Catalin Marinas60ffc302012-03-05 11:49:27 +0000606ENDPROC(el1_sync)
607
608 .align 6
609el1_irq:
610 kernel_entry 1
James Morseb282e1c2017-11-02 12:12:41 +0000611 enable_da_f
Catalin Marinas60ffc302012-03-05 11:49:27 +0000612#ifdef CONFIG_TRACE_IRQFLAGS
613 bl trace_hardirqs_off
614#endif
Marc Zyngier64681782013-11-12 17:11:53 +0000615
616 irq_handler
617
Catalin Marinas60ffc302012-03-05 11:49:27 +0000618#ifdef CONFIG_PREEMPT
Mark Rutlandc02433d2016-11-03 20:23:13 +0000619 ldr w24, [tsk, #TSK_TI_PREEMPT] // get preempt count
Marc Zyngier717321f2013-11-04 20:14:58 +0000620 cbnz w24, 1f // preempt count != 0
Mark Rutlandc02433d2016-11-03 20:23:13 +0000621 ldr x0, [tsk, #TSK_TI_FLAGS] // get flags
Catalin Marinas60ffc302012-03-05 11:49:27 +0000622 tbz x0, #TIF_NEED_RESCHED, 1f // needs rescheduling?
623 bl el1_preempt
6241:
625#endif
626#ifdef CONFIG_TRACE_IRQFLAGS
627 bl trace_hardirqs_on
628#endif
629 kernel_exit 1
630ENDPROC(el1_irq)
631
632#ifdef CONFIG_PREEMPT
633el1_preempt:
634 mov x24, lr
Will Deacon2a283072014-04-29 19:04:06 +01006351: bl preempt_schedule_irq // irq en/disable is done inside
Mark Rutlandc02433d2016-11-03 20:23:13 +0000636 ldr x0, [tsk, #TSK_TI_FLAGS] // get new tasks TI_FLAGS
Catalin Marinas60ffc302012-03-05 11:49:27 +0000637 tbnz x0, #TIF_NEED_RESCHED, 1b // needs rescheduling?
638 ret x24
639#endif
640
641/*
642 * EL0 mode handlers.
643 */
644 .align 6
645el0_sync:
646 kernel_entry 0
647 mrs x25, esr_el1 // read the syndrome register
Mark Rutlandaed40e02014-11-24 12:31:40 +0000648 lsr x24, x25, #ESR_ELx_EC_SHIFT // exception class
649 cmp x24, #ESR_ELx_EC_SVC64 // SVC in 64-bit state
Catalin Marinas60ffc302012-03-05 11:49:27 +0000650 b.eq el0_svc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000651 cmp x24, #ESR_ELx_EC_DABT_LOW // data abort in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000652 b.eq el0_da
Mark Rutlandaed40e02014-11-24 12:31:40 +0000653 cmp x24, #ESR_ELx_EC_IABT_LOW // instruction abort in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000654 b.eq el0_ia
Mark Rutlandaed40e02014-11-24 12:31:40 +0000655 cmp x24, #ESR_ELx_EC_FP_ASIMD // FP/ASIMD access
Catalin Marinas60ffc302012-03-05 11:49:27 +0000656 b.eq el0_fpsimd_acc
Dave Martinbc0ee472017-10-31 15:51:05 +0000657 cmp x24, #ESR_ELx_EC_SVE // SVE access
658 b.eq el0_sve_acc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000659 cmp x24, #ESR_ELx_EC_FP_EXC64 // FP/ASIMD exception
Catalin Marinas60ffc302012-03-05 11:49:27 +0000660 b.eq el0_fpsimd_exc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000661 cmp x24, #ESR_ELx_EC_SYS64 // configurable trap
Andre Przywara7dd01ae2016-06-28 18:07:32 +0100662 b.eq el0_sys
Mark Rutlandaed40e02014-11-24 12:31:40 +0000663 cmp x24, #ESR_ELx_EC_SP_ALIGN // stack alignment exception
Catalin Marinas60ffc302012-03-05 11:49:27 +0000664 b.eq el0_sp_pc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000665 cmp x24, #ESR_ELx_EC_PC_ALIGN // pc alignment exception
Catalin Marinas60ffc302012-03-05 11:49:27 +0000666 b.eq el0_sp_pc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000667 cmp x24, #ESR_ELx_EC_UNKNOWN // unknown exception in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000668 b.eq el0_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000669 cmp x24, #ESR_ELx_EC_BREAKPT_LOW // debug exception in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000670 b.ge el0_dbg
671 b el0_inv
672
673#ifdef CONFIG_COMPAT
674 .align 6
675el0_sync_compat:
676 kernel_entry 0, 32
677 mrs x25, esr_el1 // read the syndrome register
Mark Rutlandaed40e02014-11-24 12:31:40 +0000678 lsr x24, x25, #ESR_ELx_EC_SHIFT // exception class
679 cmp x24, #ESR_ELx_EC_SVC32 // SVC in 32-bit state
Catalin Marinas60ffc302012-03-05 11:49:27 +0000680 b.eq el0_svc_compat
Mark Rutlandaed40e02014-11-24 12:31:40 +0000681 cmp x24, #ESR_ELx_EC_DABT_LOW // data abort in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000682 b.eq el0_da
Mark Rutlandaed40e02014-11-24 12:31:40 +0000683 cmp x24, #ESR_ELx_EC_IABT_LOW // instruction abort in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000684 b.eq el0_ia
Mark Rutlandaed40e02014-11-24 12:31:40 +0000685 cmp x24, #ESR_ELx_EC_FP_ASIMD // FP/ASIMD access
Catalin Marinas60ffc302012-03-05 11:49:27 +0000686 b.eq el0_fpsimd_acc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000687 cmp x24, #ESR_ELx_EC_FP_EXC32 // FP/ASIMD exception
Catalin Marinas60ffc302012-03-05 11:49:27 +0000688 b.eq el0_fpsimd_exc
Mark Salyzyn77f3228f2015-10-13 14:30:51 -0700689 cmp x24, #ESR_ELx_EC_PC_ALIGN // pc alignment exception
690 b.eq el0_sp_pc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000691 cmp x24, #ESR_ELx_EC_UNKNOWN // unknown exception in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000692 b.eq el0_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000693 cmp x24, #ESR_ELx_EC_CP15_32 // CP15 MRC/MCR trap
Mark Rutland381cc2b2013-05-24 12:02:35 +0100694 b.eq el0_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000695 cmp x24, #ESR_ELx_EC_CP15_64 // CP15 MRRC/MCRR trap
Mark Rutland381cc2b2013-05-24 12:02:35 +0100696 b.eq el0_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000697 cmp x24, #ESR_ELx_EC_CP14_MR // CP14 MRC/MCR trap
Mark Rutland381cc2b2013-05-24 12:02:35 +0100698 b.eq el0_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000699 cmp x24, #ESR_ELx_EC_CP14_LS // CP14 LDC/STC trap
Mark Rutland381cc2b2013-05-24 12:02:35 +0100700 b.eq el0_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000701 cmp x24, #ESR_ELx_EC_CP14_64 // CP14 MRRC/MCRR trap
Mark Rutland381cc2b2013-05-24 12:02:35 +0100702 b.eq el0_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000703 cmp x24, #ESR_ELx_EC_BREAKPT_LOW // debug exception in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000704 b.ge el0_dbg
705 b el0_inv
706el0_svc_compat:
Mark Rutland3b714272018-07-11 14:56:45 +0100707 mov x0, sp
708 bl el0_svc_compat_handler
709 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000710
711 .align 6
712el0_irq_compat:
713 kernel_entry 0, 32
714 b el0_irq_naked
Xie XiuQia92d4d12017-11-02 12:12:42 +0000715
716el0_error_compat:
717 kernel_entry 0, 32
718 b el0_error_naked
Catalin Marinas60ffc302012-03-05 11:49:27 +0000719#endif
720
721el0_da:
722 /*
723 * Data abort handling
724 */
Larry Bassel6ab64632014-05-30 20:34:14 +0100725 mrs x26, far_el1
James Morse746647c2017-11-02 12:12:40 +0000726 enable_daif
Larry Bassel6c81fe72014-05-30 12:34:15 -0700727 ct_user_exit
Kristina Martsenko276e9322017-05-03 16:37:47 +0100728 clear_address_tag x0, x26
Catalin Marinas60ffc302012-03-05 11:49:27 +0000729 mov x1, x25
730 mov x2, sp
Will Deacond54e81f2014-09-29 11:44:01 +0100731 bl do_mem_abort
732 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000733el0_ia:
734 /*
735 * Instruction abort handling
736 */
Larry Bassel6ab64632014-05-30 20:34:14 +0100737 mrs x26, far_el1
Will Deacon0f15adb2018-01-03 11:17:58 +0000738 enable_da_f
739#ifdef CONFIG_TRACE_IRQFLAGS
740 bl trace_hardirqs_off
741#endif
Larry Bassel6c81fe72014-05-30 12:34:15 -0700742 ct_user_exit
Larry Bassel6ab64632014-05-30 20:34:14 +0100743 mov x0, x26
Mark Rutland541ec872016-05-31 12:33:03 +0100744 mov x1, x25
Catalin Marinas60ffc302012-03-05 11:49:27 +0000745 mov x2, sp
Will Deacon0f15adb2018-01-03 11:17:58 +0000746 bl do_el0_ia_bp_hardening
Will Deacond54e81f2014-09-29 11:44:01 +0100747 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000748el0_fpsimd_acc:
749 /*
750 * Floating Point or Advanced SIMD access
751 */
James Morse746647c2017-11-02 12:12:40 +0000752 enable_daif
Larry Bassel6c81fe72014-05-30 12:34:15 -0700753 ct_user_exit
Catalin Marinas60ffc302012-03-05 11:49:27 +0000754 mov x0, x25
755 mov x1, sp
Will Deacond54e81f2014-09-29 11:44:01 +0100756 bl do_fpsimd_acc
757 b ret_to_user
Dave Martinbc0ee472017-10-31 15:51:05 +0000758el0_sve_acc:
759 /*
760 * Scalable Vector Extension access
761 */
762 enable_daif
763 ct_user_exit
764 mov x0, x25
765 mov x1, sp
766 bl do_sve_acc
767 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000768el0_fpsimd_exc:
769 /*
Dave Martinbc0ee472017-10-31 15:51:05 +0000770 * Floating Point, Advanced SIMD or SVE exception
Catalin Marinas60ffc302012-03-05 11:49:27 +0000771 */
James Morse746647c2017-11-02 12:12:40 +0000772 enable_daif
Larry Bassel6c81fe72014-05-30 12:34:15 -0700773 ct_user_exit
Catalin Marinas60ffc302012-03-05 11:49:27 +0000774 mov x0, x25
775 mov x1, sp
Will Deacond54e81f2014-09-29 11:44:01 +0100776 bl do_fpsimd_exc
777 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000778el0_sp_pc:
779 /*
780 * Stack or PC alignment exception handling
781 */
Larry Bassel6ab64632014-05-30 20:34:14 +0100782 mrs x26, far_el1
Will Deacon5dfc6ed2018-02-02 17:31:39 +0000783 enable_da_f
784#ifdef CONFIG_TRACE_IRQFLAGS
785 bl trace_hardirqs_off
786#endif
Mark Rutland46b05672015-06-15 16:40:27 +0100787 ct_user_exit
Larry Bassel6ab64632014-05-30 20:34:14 +0100788 mov x0, x26
Catalin Marinas60ffc302012-03-05 11:49:27 +0000789 mov x1, x25
790 mov x2, sp
Will Deacond54e81f2014-09-29 11:44:01 +0100791 bl do_sp_pc_abort
792 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000793el0_undef:
794 /*
795 * Undefined instruction
796 */
James Morse746647c2017-11-02 12:12:40 +0000797 enable_daif
Larry Bassel6c81fe72014-05-30 12:34:15 -0700798 ct_user_exit
Will Deacon2a283072014-04-29 19:04:06 +0100799 mov x0, sp
Will Deacond54e81f2014-09-29 11:44:01 +0100800 bl do_undefinstr
801 b ret_to_user
Andre Przywara7dd01ae2016-06-28 18:07:32 +0100802el0_sys:
803 /*
804 * System instructions, for trapped cache maintenance instructions
805 */
James Morse746647c2017-11-02 12:12:40 +0000806 enable_daif
Andre Przywara7dd01ae2016-06-28 18:07:32 +0100807 ct_user_exit
808 mov x0, x25
809 mov x1, sp
810 bl do_sysinstr
811 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000812el0_dbg:
813 /*
814 * Debug exception handling
815 */
816 tbnz x24, #0, el0_inv // EL0 only
817 mrs x0, far_el1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000818 mov x1, x25
819 mov x2, sp
Will Deacon2a283072014-04-29 19:04:06 +0100820 bl do_debug_exception
James Morse746647c2017-11-02 12:12:40 +0000821 enable_daif
Larry Bassel6c81fe72014-05-30 12:34:15 -0700822 ct_user_exit
Will Deacon2a283072014-04-29 19:04:06 +0100823 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000824el0_inv:
James Morse746647c2017-11-02 12:12:40 +0000825 enable_daif
Larry Bassel6c81fe72014-05-30 12:34:15 -0700826 ct_user_exit
Catalin Marinas60ffc302012-03-05 11:49:27 +0000827 mov x0, sp
828 mov x1, #BAD_SYNC
Mark Rutland1b428042015-07-07 18:00:49 +0100829 mov x2, x25
Mark Rutland7d9e8f72017-01-18 17:23:41 +0000830 bl bad_el0_sync
Will Deacond54e81f2014-09-29 11:44:01 +0100831 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000832ENDPROC(el0_sync)
833
834 .align 6
835el0_irq:
836 kernel_entry 0
837el0_irq_naked:
James Morseb282e1c2017-11-02 12:12:41 +0000838 enable_da_f
Catalin Marinas60ffc302012-03-05 11:49:27 +0000839#ifdef CONFIG_TRACE_IRQFLAGS
840 bl trace_hardirqs_off
841#endif
Marc Zyngier64681782013-11-12 17:11:53 +0000842
Larry Bassel6c81fe72014-05-30 12:34:15 -0700843 ct_user_exit
Will Deacon30d88c02018-02-02 17:31:40 +0000844#ifdef CONFIG_HARDEN_BRANCH_PREDICTOR
845 tbz x22, #55, 1f
846 bl do_el0_irq_bp_hardening
8471:
848#endif
Catalin Marinas60ffc302012-03-05 11:49:27 +0000849 irq_handler
Marc Zyngier64681782013-11-12 17:11:53 +0000850
Catalin Marinas60ffc302012-03-05 11:49:27 +0000851#ifdef CONFIG_TRACE_IRQFLAGS
852 bl trace_hardirqs_on
853#endif
854 b ret_to_user
855ENDPROC(el0_irq)
856
Xie XiuQia92d4d12017-11-02 12:12:42 +0000857el1_error:
858 kernel_entry 1
859 mrs x1, esr_el1
860 enable_dbg
861 mov x0, sp
862 bl do_serror
863 kernel_exit 1
864ENDPROC(el1_error)
865
866el0_error:
867 kernel_entry 0
868el0_error_naked:
869 mrs x1, esr_el1
870 enable_dbg
871 mov x0, sp
872 bl do_serror
873 enable_daif
874 ct_user_exit
875 b ret_to_user
876ENDPROC(el0_error)
877
Catalin Marinas60ffc302012-03-05 11:49:27 +0000878/*
879 * Ok, we need to do extra processing, enter the slow path.
880 */
Catalin Marinas60ffc302012-03-05 11:49:27 +0000881work_pending:
Catalin Marinas60ffc302012-03-05 11:49:27 +0000882 mov x0, sp // 'regs'
Catalin Marinas60ffc302012-03-05 11:49:27 +0000883 bl do_notify_resume
Catalin Marinasdb3899a2015-12-04 12:42:29 +0000884#ifdef CONFIG_TRACE_IRQFLAGS
Chris Metcalf421dd6f2016-07-14 16:48:14 -0400885 bl trace_hardirqs_on // enabled while in userspace
Catalin Marinasdb3899a2015-12-04 12:42:29 +0000886#endif
Mark Rutlandc02433d2016-11-03 20:23:13 +0000887 ldr x1, [tsk, #TSK_TI_FLAGS] // re-check for single-step
Chris Metcalf421dd6f2016-07-14 16:48:14 -0400888 b finish_ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000889/*
890 * "slow" syscall return path.
891 */
Catalin Marinas59dc67b2012-09-10 16:11:46 +0100892ret_to_user:
James Morse8d667722017-11-02 12:12:37 +0000893 disable_daif
Mark Rutlandc02433d2016-11-03 20:23:13 +0000894 ldr x1, [tsk, #TSK_TI_FLAGS]
Catalin Marinas60ffc302012-03-05 11:49:27 +0000895 and x2, x1, #_TIF_WORK_MASK
896 cbnz x2, work_pending
Chris Metcalf421dd6f2016-07-14 16:48:14 -0400897finish_ret_to_user:
Will Deacon2a283072014-04-29 19:04:06 +0100898 enable_step_tsk x1, x2
Will Deacon412fcb62015-08-19 15:57:09 +0100899 kernel_exit 0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000900ENDPROC(ret_to_user)
901
902/*
Catalin Marinas60ffc302012-03-05 11:49:27 +0000903 * SVC handler.
904 */
905 .align 6
906el0_svc:
Catalin Marinas60ffc302012-03-05 11:49:27 +0000907 mov x0, sp
Mark Rutland3b714272018-07-11 14:56:45 +0100908 bl el0_svc_handler
Catalin Marinas60ffc302012-03-05 11:49:27 +0000909 b ret_to_user
Mark Rutlandf37099b2018-07-11 14:56:44 +0100910ENDPROC(el0_svc)
Catalin Marinas60ffc302012-03-05 11:49:27 +0000911
Pratyush Anand888b3c82016-07-08 12:35:50 -0400912 .popsection // .entry.text
913
Will Deaconc7b9ada2017-11-14 14:07:40 +0000914#ifdef CONFIG_UNMAP_KERNEL_AT_EL0
915/*
916 * Exception vectors trampoline.
917 */
918 .pushsection ".entry.tramp.text", "ax"
919
920 .macro tramp_map_kernel, tmp
921 mrs \tmp, ttbr1_el1
Steve Capper1e1b8c02018-01-11 10:11:58 +0000922 add \tmp, \tmp, #(PAGE_SIZE + RESERVED_TTBR0_SIZE)
Will Deaconc7b9ada2017-11-14 14:07:40 +0000923 bic \tmp, \tmp, #USER_ASID_FLAG
924 msr ttbr1_el1, \tmp
Will Deacond1777e62017-11-14 14:29:19 +0000925#ifdef CONFIG_QCOM_FALKOR_ERRATUM_1003
926alternative_if ARM64_WORKAROUND_QCOM_FALKOR_E1003
927 /* ASID already in \tmp[63:48] */
928 movk \tmp, #:abs_g2_nc:(TRAMP_VALIAS >> 12)
929 movk \tmp, #:abs_g1_nc:(TRAMP_VALIAS >> 12)
930 /* 2MB boundary containing the vectors, so we nobble the walk cache */
931 movk \tmp, #:abs_g0_nc:((TRAMP_VALIAS & ~(SZ_2M - 1)) >> 12)
932 isb
933 tlbi vae1, \tmp
934 dsb nsh
935alternative_else_nop_endif
936#endif /* CONFIG_QCOM_FALKOR_ERRATUM_1003 */
Will Deaconc7b9ada2017-11-14 14:07:40 +0000937 .endm
938
939 .macro tramp_unmap_kernel, tmp
940 mrs \tmp, ttbr1_el1
Steve Capper1e1b8c02018-01-11 10:11:58 +0000941 sub \tmp, \tmp, #(PAGE_SIZE + RESERVED_TTBR0_SIZE)
Will Deaconc7b9ada2017-11-14 14:07:40 +0000942 orr \tmp, \tmp, #USER_ASID_FLAG
943 msr ttbr1_el1, \tmp
944 /*
Will Deaconf1672112018-01-29 11:59:58 +0000945 * We avoid running the post_ttbr_update_workaround here because
946 * it's only needed by Cavium ThunderX, which requires KPTI to be
947 * disabled.
Will Deaconc7b9ada2017-11-14 14:07:40 +0000948 */
949 .endm
950
951 .macro tramp_ventry, regsize = 64
952 .align 7
9531:
954 .if \regsize == 64
955 msr tpidrro_el0, x30 // Restored in kernel_ventry
956 .endif
Will Deaconbe04a6d2017-11-14 16:15:59 +0000957 /*
958 * Defend against branch aliasing attacks by pushing a dummy
959 * entry onto the return stack and using a RET instruction to
960 * enter the full-fat kernel vectors.
961 */
962 bl 2f
963 b .
9642:
Will Deaconc7b9ada2017-11-14 14:07:40 +0000965 tramp_map_kernel x30
Will Deacon6c27c402017-12-06 11:24:02 +0000966#ifdef CONFIG_RANDOMIZE_BASE
967 adr x30, tramp_vectors + PAGE_SIZE
968alternative_insn isb, nop, ARM64_WORKAROUND_QCOM_FALKOR_E1003
969 ldr x30, [x30]
970#else
Will Deaconc7b9ada2017-11-14 14:07:40 +0000971 ldr x30, =vectors
Will Deacon6c27c402017-12-06 11:24:02 +0000972#endif
Will Deaconc7b9ada2017-11-14 14:07:40 +0000973 prfm plil1strm, [x30, #(1b - tramp_vectors)]
974 msr vbar_el1, x30
975 add x30, x30, #(1b - tramp_vectors)
976 isb
Will Deaconbe04a6d2017-11-14 16:15:59 +0000977 ret
Will Deaconc7b9ada2017-11-14 14:07:40 +0000978 .endm
979
980 .macro tramp_exit, regsize = 64
981 adr x30, tramp_vectors
982 msr vbar_el1, x30
983 tramp_unmap_kernel x30
984 .if \regsize == 64
985 mrs x30, far_el1
986 .endif
987 eret
988 .endm
989
990 .align 11
991ENTRY(tramp_vectors)
992 .space 0x400
993
994 tramp_ventry
995 tramp_ventry
996 tramp_ventry
997 tramp_ventry
998
999 tramp_ventry 32
1000 tramp_ventry 32
1001 tramp_ventry 32
1002 tramp_ventry 32
1003END(tramp_vectors)
1004
1005ENTRY(tramp_exit_native)
1006 tramp_exit
1007END(tramp_exit_native)
1008
1009ENTRY(tramp_exit_compat)
1010 tramp_exit 32
1011END(tramp_exit_compat)
1012
1013 .ltorg
1014 .popsection // .entry.tramp.text
Will Deacon6c27c402017-12-06 11:24:02 +00001015#ifdef CONFIG_RANDOMIZE_BASE
1016 .pushsection ".rodata", "a"
1017 .align PAGE_SHIFT
1018 .globl __entry_tramp_data_start
1019__entry_tramp_data_start:
1020 .quad vectors
1021 .popsection // .rodata
1022#endif /* CONFIG_RANDOMIZE_BASE */
Will Deaconc7b9ada2017-11-14 14:07:40 +00001023#endif /* CONFIG_UNMAP_KERNEL_AT_EL0 */
1024
Catalin Marinas60ffc302012-03-05 11:49:27 +00001025/*
Mark Rutlanded84b4e2017-07-26 16:05:20 +01001026 * Register switch for AArch64. The callee-saved registers need to be saved
1027 * and restored. On entry:
1028 * x0 = previous task_struct (must be preserved across the switch)
1029 * x1 = next task_struct
1030 * Previous and next are guaranteed not to be the same.
1031 *
1032 */
1033ENTRY(cpu_switch_to)
1034 mov x10, #THREAD_CPU_CONTEXT
1035 add x8, x0, x10
1036 mov x9, sp
1037 stp x19, x20, [x8], #16 // store callee-saved registers
1038 stp x21, x22, [x8], #16
1039 stp x23, x24, [x8], #16
1040 stp x25, x26, [x8], #16
1041 stp x27, x28, [x8], #16
1042 stp x29, x9, [x8], #16
1043 str lr, [x8]
1044 add x8, x1, x10
1045 ldp x19, x20, [x8], #16 // restore callee-saved registers
1046 ldp x21, x22, [x8], #16
1047 ldp x23, x24, [x8], #16
1048 ldp x25, x26, [x8], #16
1049 ldp x27, x28, [x8], #16
1050 ldp x29, x9, [x8], #16
1051 ldr lr, [x8]
1052 mov sp, x9
1053 msr sp_el0, x1
1054 ret
1055ENDPROC(cpu_switch_to)
1056NOKPROBE(cpu_switch_to)
1057
1058/*
1059 * This is how we return from a fork.
1060 */
1061ENTRY(ret_from_fork)
1062 bl schedule_tail
1063 cbz x19, 1f // not a kernel thread
1064 mov x0, x20
1065 blr x19
10661: get_thread_info tsk
1067 b ret_to_user
1068ENDPROC(ret_from_fork)
1069NOKPROBE(ret_from_fork)
James Morsef5df2692018-01-08 15:38:12 +00001070
1071#ifdef CONFIG_ARM_SDE_INTERFACE
1072
1073#include <asm/sdei.h>
1074#include <uapi/linux/arm_sdei.h>
1075
James Morse79e9aa52018-01-08 15:38:18 +00001076.macro sdei_handler_exit exit_mode
1077 /* On success, this call never returns... */
1078 cmp \exit_mode, #SDEI_EXIT_SMC
1079 b.ne 99f
1080 smc #0
1081 b .
108299: hvc #0
1083 b .
1084.endm
1085
1086#ifdef CONFIG_UNMAP_KERNEL_AT_EL0
1087/*
1088 * The regular SDEI entry point may have been unmapped along with the rest of
1089 * the kernel. This trampoline restores the kernel mapping to make the x1 memory
1090 * argument accessible.
1091 *
1092 * This clobbers x4, __sdei_handler() will restore this from firmware's
1093 * copy.
1094 */
1095.ltorg
1096.pushsection ".entry.tramp.text", "ax"
1097ENTRY(__sdei_asm_entry_trampoline)
1098 mrs x4, ttbr1_el1
1099 tbz x4, #USER_ASID_BIT, 1f
1100
1101 tramp_map_kernel tmp=x4
1102 isb
1103 mov x4, xzr
1104
1105 /*
1106 * Use reg->interrupted_regs.addr_limit to remember whether to unmap
1107 * the kernel on exit.
1108 */
11091: str x4, [x1, #(SDEI_EVENT_INTREGS + S_ORIG_ADDR_LIMIT)]
1110
1111#ifdef CONFIG_RANDOMIZE_BASE
1112 adr x4, tramp_vectors + PAGE_SIZE
1113 add x4, x4, #:lo12:__sdei_asm_trampoline_next_handler
1114 ldr x4, [x4]
1115#else
1116 ldr x4, =__sdei_asm_handler
1117#endif
1118 br x4
1119ENDPROC(__sdei_asm_entry_trampoline)
1120NOKPROBE(__sdei_asm_entry_trampoline)
1121
1122/*
1123 * Make the exit call and restore the original ttbr1_el1
1124 *
1125 * x0 & x1: setup for the exit API call
1126 * x2: exit_mode
1127 * x4: struct sdei_registered_event argument from registration time.
1128 */
1129ENTRY(__sdei_asm_exit_trampoline)
1130 ldr x4, [x4, #(SDEI_EVENT_INTREGS + S_ORIG_ADDR_LIMIT)]
1131 cbnz x4, 1f
1132
1133 tramp_unmap_kernel tmp=x4
1134
11351: sdei_handler_exit exit_mode=x2
1136ENDPROC(__sdei_asm_exit_trampoline)
1137NOKPROBE(__sdei_asm_exit_trampoline)
1138 .ltorg
1139.popsection // .entry.tramp.text
1140#ifdef CONFIG_RANDOMIZE_BASE
1141.pushsection ".rodata", "a"
1142__sdei_asm_trampoline_next_handler:
1143 .quad __sdei_asm_handler
1144.popsection // .rodata
1145#endif /* CONFIG_RANDOMIZE_BASE */
1146#endif /* CONFIG_UNMAP_KERNEL_AT_EL0 */
1147
James Morsef5df2692018-01-08 15:38:12 +00001148/*
1149 * Software Delegated Exception entry point.
1150 *
1151 * x0: Event number
1152 * x1: struct sdei_registered_event argument from registration time.
1153 * x2: interrupted PC
1154 * x3: interrupted PSTATE
James Morse79e9aa52018-01-08 15:38:18 +00001155 * x4: maybe clobbered by the trampoline
James Morsef5df2692018-01-08 15:38:12 +00001156 *
1157 * Firmware has preserved x0->x17 for us, we must save/restore the rest to
1158 * follow SMC-CC. We save (or retrieve) all the registers as the handler may
1159 * want them.
1160 */
1161ENTRY(__sdei_asm_handler)
1162 stp x2, x3, [x1, #SDEI_EVENT_INTREGS + S_PC]
1163 stp x4, x5, [x1, #SDEI_EVENT_INTREGS + 16 * 2]
1164 stp x6, x7, [x1, #SDEI_EVENT_INTREGS + 16 * 3]
1165 stp x8, x9, [x1, #SDEI_EVENT_INTREGS + 16 * 4]
1166 stp x10, x11, [x1, #SDEI_EVENT_INTREGS + 16 * 5]
1167 stp x12, x13, [x1, #SDEI_EVENT_INTREGS + 16 * 6]
1168 stp x14, x15, [x1, #SDEI_EVENT_INTREGS + 16 * 7]
1169 stp x16, x17, [x1, #SDEI_EVENT_INTREGS + 16 * 8]
1170 stp x18, x19, [x1, #SDEI_EVENT_INTREGS + 16 * 9]
1171 stp x20, x21, [x1, #SDEI_EVENT_INTREGS + 16 * 10]
1172 stp x22, x23, [x1, #SDEI_EVENT_INTREGS + 16 * 11]
1173 stp x24, x25, [x1, #SDEI_EVENT_INTREGS + 16 * 12]
1174 stp x26, x27, [x1, #SDEI_EVENT_INTREGS + 16 * 13]
1175 stp x28, x29, [x1, #SDEI_EVENT_INTREGS + 16 * 14]
1176 mov x4, sp
1177 stp lr, x4, [x1, #SDEI_EVENT_INTREGS + S_LR]
1178
1179 mov x19, x1
1180
1181#ifdef CONFIG_VMAP_STACK
1182 /*
1183 * entry.S may have been using sp as a scratch register, find whether
1184 * this is a normal or critical event and switch to the appropriate
1185 * stack for this CPU.
1186 */
1187 ldrb w4, [x19, #SDEI_EVENT_PRIORITY]
1188 cbnz w4, 1f
1189 ldr_this_cpu dst=x5, sym=sdei_stack_normal_ptr, tmp=x6
1190 b 2f
11911: ldr_this_cpu dst=x5, sym=sdei_stack_critical_ptr, tmp=x6
11922: mov x6, #SDEI_STACK_SIZE
1193 add x5, x5, x6
1194 mov sp, x5
1195#endif
1196
1197 /*
1198 * We may have interrupted userspace, or a guest, or exit-from or
1199 * return-to either of these. We can't trust sp_el0, restore it.
1200 */
1201 mrs x28, sp_el0
1202 ldr_this_cpu dst=x0, sym=__entry_task, tmp=x1
1203 msr sp_el0, x0
1204
1205 /* If we interrupted the kernel point to the previous stack/frame. */
1206 and x0, x3, #0xc
1207 mrs x1, CurrentEL
1208 cmp x0, x1
1209 csel x29, x29, xzr, eq // fp, or zero
1210 csel x4, x2, xzr, eq // elr, or zero
1211
1212 stp x29, x4, [sp, #-16]!
1213 mov x29, sp
1214
1215 add x0, x19, #SDEI_EVENT_INTREGS
1216 mov x1, x19
1217 bl __sdei_handler
1218
1219 msr sp_el0, x28
1220 /* restore regs >x17 that we clobbered */
James Morse79e9aa52018-01-08 15:38:18 +00001221 mov x4, x19 // keep x4 for __sdei_asm_exit_trampoline
1222 ldp x28, x29, [x4, #SDEI_EVENT_INTREGS + 16 * 14]
1223 ldp x18, x19, [x4, #SDEI_EVENT_INTREGS + 16 * 9]
1224 ldp lr, x1, [x4, #SDEI_EVENT_INTREGS + S_LR]
1225 mov sp, x1
James Morsef5df2692018-01-08 15:38:12 +00001226
1227 mov x1, x0 // address to complete_and_resume
1228 /* x0 = (x0 <= 1) ? EVENT_COMPLETE:EVENT_COMPLETE_AND_RESUME */
1229 cmp x0, #1
1230 mov_q x2, SDEI_1_0_FN_SDEI_EVENT_COMPLETE
1231 mov_q x3, SDEI_1_0_FN_SDEI_EVENT_COMPLETE_AND_RESUME
1232 csel x0, x2, x3, ls
1233
James Morsef5df2692018-01-08 15:38:12 +00001234 ldr_l x2, sdei_exit_mode
James Morse79e9aa52018-01-08 15:38:18 +00001235
1236alternative_if_not ARM64_UNMAP_KERNEL_AT_EL0
1237 sdei_handler_exit exit_mode=x2
1238alternative_else_nop_endif
1239
1240#ifdef CONFIG_UNMAP_KERNEL_AT_EL0
1241 tramp_alias dst=x5, sym=__sdei_asm_exit_trampoline
1242 br x5
1243#endif
James Morsef5df2692018-01-08 15:38:12 +00001244ENDPROC(__sdei_asm_handler)
1245NOKPROBE(__sdei_asm_handler)
1246#endif /* CONFIG_ARM_SDE_INTERFACE */