blob: 5edde1c2e93ea267aa55fbbfc9dc56da9744ce7c [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
21#include <linux/init.h>
22#include <linux/linkage.h>
23
Marc Zyngier8d883b22015-06-01 10:47:41 +010024#include <asm/alternative.h>
Catalin Marinas60ffc302012-03-05 11:49:27 +000025#include <asm/assembler.h>
26#include <asm/asm-offsets.h>
Will Deacon905e8c52015-03-23 19:07:02 +000027#include <asm/cpufeature.h>
Catalin Marinas60ffc302012-03-05 11:49:27 +000028#include <asm/errno.h>
Marc Zyngier5c1ce6f2013-04-08 17:17:03 +010029#include <asm/esr.h>
James Morse8e23dac2015-12-04 11:02:27 +000030#include <asm/irq.h>
Yury Noroveef94a32017-08-31 11:30:50 +030031#include <asm/processor.h>
Catalin Marinas39bc88e2016-09-02 14:54:03 +010032#include <asm/ptrace.h>
Catalin Marinas60ffc302012-03-05 11:49:27 +000033#include <asm/thread_info.h>
Al Virob4b86642016-12-26 04:10:19 -050034#include <asm/asm-uaccess.h>
Catalin Marinas60ffc302012-03-05 11:49:27 +000035#include <asm/unistd.h>
36
37/*
Larry Bassel6c81fe72014-05-30 12:34:15 -070038 * Context tracking subsystem. Used to instrument transitions
39 * between user and kernel mode.
40 */
41 .macro ct_user_exit, syscall = 0
42#ifdef CONFIG_CONTEXT_TRACKING
43 bl context_tracking_user_exit
44 .if \syscall == 1
45 /*
46 * Save/restore needed during syscalls. Restore syscall arguments from
47 * the values already saved on stack during kernel_entry.
48 */
49 ldp x0, x1, [sp]
50 ldp x2, x3, [sp, #S_X2]
51 ldp x4, x5, [sp, #S_X4]
52 ldp x6, x7, [sp, #S_X6]
53 .endif
54#endif
55 .endm
56
57 .macro ct_user_enter
58#ifdef CONFIG_CONTEXT_TRACKING
59 bl context_tracking_user_enter
60#endif
61 .endm
62
63/*
Catalin Marinas60ffc302012-03-05 11:49:27 +000064 * Bad Abort numbers
65 *-----------------
66 */
67#define BAD_SYNC 0
68#define BAD_IRQ 1
69#define BAD_FIQ 2
70#define BAD_ERROR 3
71
Mark Rutlandb11e5752017-07-19 17:24:49 +010072 .macro kernel_ventry label
73 .align 7
Will Deacon63648dd2014-09-29 12:26:41 +010074 sub sp, sp, #S_FRAME_SIZE
Mark Rutland872d8322017-07-14 20:30:35 +010075#ifdef CONFIG_VMAP_STACK
76 /*
77 * Test whether the SP has overflowed, without corrupting a GPR.
78 * Task and IRQ stacks are aligned to (1 << THREAD_SHIFT).
79 */
80 add sp, sp, x0 // sp' = sp + x0
81 sub x0, sp, x0 // x0' = sp' - x0 = (sp + x0) - x0 = sp
82 tbnz x0, #THREAD_SHIFT, 0f
83 sub x0, sp, x0 // x0'' = sp' - x0' = (sp + x0) - sp = x0
84 sub sp, sp, x0 // sp'' = sp' - x0 = (sp + x0) - x0 = sp
85 b \label
86
870:
88 /*
89 * Either we've just detected an overflow, or we've taken an exception
90 * while on the overflow stack. Either way, we won't return to
91 * userspace, and can clobber EL0 registers to free up GPRs.
92 */
93
94 /* Stash the original SP (minus S_FRAME_SIZE) in tpidr_el0. */
95 msr tpidr_el0, x0
96
97 /* Recover the original x0 value and stash it in tpidrro_el0 */
98 sub x0, sp, x0
99 msr tpidrro_el0, x0
100
101 /* Switch to the overflow stack */
102 adr_this_cpu sp, overflow_stack + OVERFLOW_STACK_SIZE, x0
103
104 /*
105 * Check whether we were already on the overflow stack. This may happen
106 * after panic() re-enables interrupts.
107 */
108 mrs x0, tpidr_el0 // sp of interrupted context
109 sub x0, sp, x0 // delta with top of overflow stack
110 tst x0, #~(OVERFLOW_STACK_SIZE - 1) // within range?
111 b.ne __bad_stack // no? -> bad stack pointer
112
113 /* We were already on the overflow stack. Restore sp/x0 and carry on. */
114 sub sp, sp, x0
115 mrs x0, tpidrro_el0
116#endif
Mark Rutlandb11e5752017-07-19 17:24:49 +0100117 b \label
118 .endm
119
120 .macro kernel_entry, el, regsize = 64
Catalin Marinas60ffc302012-03-05 11:49:27 +0000121 .if \regsize == 32
122 mov w0, w0 // zero upper 32 bits of x0
123 .endif
Will Deacon63648dd2014-09-29 12:26:41 +0100124 stp x0, x1, [sp, #16 * 0]
125 stp x2, x3, [sp, #16 * 1]
126 stp x4, x5, [sp, #16 * 2]
127 stp x6, x7, [sp, #16 * 3]
128 stp x8, x9, [sp, #16 * 4]
129 stp x10, x11, [sp, #16 * 5]
130 stp x12, x13, [sp, #16 * 6]
131 stp x14, x15, [sp, #16 * 7]
132 stp x16, x17, [sp, #16 * 8]
133 stp x18, x19, [sp, #16 * 9]
134 stp x20, x21, [sp, #16 * 10]
135 stp x22, x23, [sp, #16 * 11]
136 stp x24, x25, [sp, #16 * 12]
137 stp x26, x27, [sp, #16 * 13]
138 stp x28, x29, [sp, #16 * 14]
139
Catalin Marinas60ffc302012-03-05 11:49:27 +0000140 .if \el == 0
141 mrs x21, sp_el0
Mark Rutlandc02433d2016-11-03 20:23:13 +0000142 ldr_this_cpu tsk, __entry_task, x20 // Ensure MDSCR_EL1.SS is clear,
143 ldr x19, [tsk, #TSK_TI_FLAGS] // since we can unmask debug
Will Deacon2a283072014-04-29 19:04:06 +0100144 disable_step_tsk x19, x20 // exceptions when scheduling.
James Morse49003a82015-12-10 10:22:41 +0000145
146 mov x29, xzr // fp pointed to user-space
Catalin Marinas60ffc302012-03-05 11:49:27 +0000147 .else
148 add x21, sp, #S_FRAME_SIZE
James Morsee19a6ee2016-06-20 18:28:01 +0100149 get_thread_info tsk
150 /* Save the task's original addr_limit and set USER_DS (TASK_SIZE_64) */
Mark Rutlandc02433d2016-11-03 20:23:13 +0000151 ldr x20, [tsk, #TSK_TI_ADDR_LIMIT]
James Morsee19a6ee2016-06-20 18:28:01 +0100152 str x20, [sp, #S_ORIG_ADDR_LIMIT]
153 mov x20, #TASK_SIZE_64
Mark Rutlandc02433d2016-11-03 20:23:13 +0000154 str x20, [tsk, #TSK_TI_ADDR_LIMIT]
Vladimir Murzin563cada2016-09-01 14:35:59 +0100155 /* No need to reset PSTATE.UAO, hardware's already set it to 0 for us */
James Morsee19a6ee2016-06-20 18:28:01 +0100156 .endif /* \el == 0 */
Catalin Marinas60ffc302012-03-05 11:49:27 +0000157 mrs x22, elr_el1
158 mrs x23, spsr_el1
159 stp lr, x21, [sp, #S_LR]
Catalin Marinas39bc88e2016-09-02 14:54:03 +0100160
Ard Biesheuvel73267492017-07-22 18:45:33 +0100161 /*
162 * In order to be able to dump the contents of struct pt_regs at the
163 * time the exception was taken (in case we attempt to walk the call
164 * stack later), chain it together with the stack frames.
165 */
166 .if \el == 0
167 stp xzr, xzr, [sp, #S_STACKFRAME]
168 .else
169 stp x29, x22, [sp, #S_STACKFRAME]
170 .endif
171 add x29, sp, #S_STACKFRAME
172
Catalin Marinas39bc88e2016-09-02 14:54:03 +0100173#ifdef CONFIG_ARM64_SW_TTBR0_PAN
174 /*
175 * Set the TTBR0 PAN bit in SPSR. When the exception is taken from
176 * EL0, there is no need to check the state of TTBR0_EL1 since
177 * accesses are always enabled.
178 * Note that the meaning of this bit differs from the ARMv8.1 PAN
179 * feature as all TTBR0_EL1 accesses are disabled, not just those to
180 * user mappings.
181 */
182alternative_if ARM64_HAS_PAN
183 b 1f // skip TTBR0 PAN
184alternative_else_nop_endif
185
186 .if \el != 0
187 mrs x21, ttbr0_el1
188 tst x21, #0xffff << 48 // Check for the reserved ASID
189 orr x23, x23, #PSR_PAN_BIT // Set the emulated PAN in the saved SPSR
190 b.eq 1f // TTBR0 access already disabled
191 and x23, x23, #~PSR_PAN_BIT // Clear the emulated PAN in the saved SPSR
192 .endif
193
194 __uaccess_ttbr0_disable x21
1951:
196#endif
197
Catalin Marinas60ffc302012-03-05 11:49:27 +0000198 stp x22, x23, [sp, #S_PC]
199
Dave Martin17c28952017-08-01 15:35:54 +0100200 /* Not in a syscall by default (el0_svc overwrites for real syscall) */
Catalin Marinas60ffc302012-03-05 11:49:27 +0000201 .if \el == 0
Dave Martin17c28952017-08-01 15:35:54 +0100202 mov w21, #NO_SYSCALL
Dave Martin35d0e6f2017-08-01 15:35:53 +0100203 str w21, [sp, #S_SYSCALLNO]
Catalin Marinas60ffc302012-03-05 11:49:27 +0000204 .endif
205
206 /*
Jungseok Lee6cdf9c72015-12-04 11:02:25 +0000207 * Set sp_el0 to current thread_info.
208 */
209 .if \el == 0
210 msr sp_el0, tsk
211 .endif
212
213 /*
Catalin Marinas60ffc302012-03-05 11:49:27 +0000214 * Registers that may be useful after this macro is invoked:
215 *
216 * x21 - aborted SP
217 * x22 - aborted PC
218 * x23 - aborted PSTATE
219 */
220 .endm
221
Will Deacon412fcb62015-08-19 15:57:09 +0100222 .macro kernel_exit, el
James Morsee19a6ee2016-06-20 18:28:01 +0100223 .if \el != 0
James Morse8d667722017-11-02 12:12:37 +0000224 disable_daif
225
James Morsee19a6ee2016-06-20 18:28:01 +0100226 /* Restore the task's original addr_limit. */
227 ldr x20, [sp, #S_ORIG_ADDR_LIMIT]
Mark Rutlandc02433d2016-11-03 20:23:13 +0000228 str x20, [tsk, #TSK_TI_ADDR_LIMIT]
James Morsee19a6ee2016-06-20 18:28:01 +0100229
230 /* No need to restore UAO, it will be restored from SPSR_EL1 */
231 .endif
232
Catalin Marinas60ffc302012-03-05 11:49:27 +0000233 ldp x21, x22, [sp, #S_PC] // load ELR, SPSR
234 .if \el == 0
Larry Bassel6c81fe72014-05-30 12:34:15 -0700235 ct_user_enter
Catalin Marinas39bc88e2016-09-02 14:54:03 +0100236 .endif
237
238#ifdef CONFIG_ARM64_SW_TTBR0_PAN
239 /*
240 * Restore access to TTBR0_EL1. If returning to EL0, no need for SPSR
241 * PAN bit checking.
242 */
243alternative_if ARM64_HAS_PAN
244 b 2f // skip TTBR0 PAN
245alternative_else_nop_endif
246
247 .if \el != 0
248 tbnz x22, #22, 1f // Skip re-enabling TTBR0 access if the PSR_PAN_BIT is set
249 .endif
250
251 __uaccess_ttbr0_enable x0
252
253 .if \el == 0
254 /*
255 * Enable errata workarounds only if returning to user. The only
256 * workaround currently required for TTBR0_EL1 changes are for the
257 * Cavium erratum 27456 (broadcast TLBI instructions may cause I-cache
258 * corruption).
259 */
260 post_ttbr0_update_workaround
261 .endif
2621:
263 .if \el != 0
264 and x22, x22, #~PSR_PAN_BIT // ARMv8.0 CPUs do not understand this bit
265 .endif
2662:
267#endif
268
269 .if \el == 0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000270 ldr x23, [sp, #S_SP] // load return stack pointer
Catalin Marinas60ffc302012-03-05 11:49:27 +0000271 msr sp_el0, x23
Will Deacon905e8c52015-03-23 19:07:02 +0000272#ifdef CONFIG_ARM64_ERRATUM_845719
Mark Rutland6ba3b552016-09-07 11:07:09 +0100273alternative_if ARM64_WORKAROUND_845719
Daniel Thompsone28cabf2015-07-22 12:21:03 +0100274 tbz x22, #4, 1f
275#ifdef CONFIG_PID_IN_CONTEXTIDR
276 mrs x29, contextidr_el1
277 msr contextidr_el1, x29
278#else
279 msr contextidr_el1, xzr
280#endif
2811:
Mark Rutland6ba3b552016-09-07 11:07:09 +0100282alternative_else_nop_endif
Will Deacon905e8c52015-03-23 19:07:02 +0000283#endif
Catalin Marinas60ffc302012-03-05 11:49:27 +0000284 .endif
Catalin Marinas39bc88e2016-09-02 14:54:03 +0100285
Will Deacon63648dd2014-09-29 12:26:41 +0100286 msr elr_el1, x21 // set up the return data
287 msr spsr_el1, x22
Will Deacon63648dd2014-09-29 12:26:41 +0100288 ldp x0, x1, [sp, #16 * 0]
Will Deacon63648dd2014-09-29 12:26:41 +0100289 ldp x2, x3, [sp, #16 * 1]
290 ldp x4, x5, [sp, #16 * 2]
291 ldp x6, x7, [sp, #16 * 3]
292 ldp x8, x9, [sp, #16 * 4]
293 ldp x10, x11, [sp, #16 * 5]
294 ldp x12, x13, [sp, #16 * 6]
295 ldp x14, x15, [sp, #16 * 7]
296 ldp x16, x17, [sp, #16 * 8]
297 ldp x18, x19, [sp, #16 * 9]
298 ldp x20, x21, [sp, #16 * 10]
299 ldp x22, x23, [sp, #16 * 11]
300 ldp x24, x25, [sp, #16 * 12]
301 ldp x26, x27, [sp, #16 * 13]
302 ldp x28, x29, [sp, #16 * 14]
303 ldr lr, [sp, #S_LR]
304 add sp, sp, #S_FRAME_SIZE // restore sp
Mathieu Desnoyersf1e3a122018-01-29 15:20:19 -0500305 /*
306 * ARCH_HAS_MEMBARRIER_SYNC_CORE rely on eret context synchronization
307 * when returning from IPI handler, and when returning to user-space.
308 */
Catalin Marinas60ffc302012-03-05 11:49:27 +0000309 eret // return to kernel
310 .endm
311
James Morse971c67c2015-12-15 11:21:25 +0000312 .macro irq_stack_entry
James Morse8e23dac2015-12-04 11:02:27 +0000313 mov x19, sp // preserve the original sp
314
James Morse8e23dac2015-12-04 11:02:27 +0000315 /*
Mark Rutlandc02433d2016-11-03 20:23:13 +0000316 * Compare sp with the base of the task stack.
317 * If the top ~(THREAD_SIZE - 1) bits match, we are on a task stack,
318 * and should switch to the irq stack.
James Morse8e23dac2015-12-04 11:02:27 +0000319 */
Mark Rutlandc02433d2016-11-03 20:23:13 +0000320 ldr x25, [tsk, TSK_STACK]
321 eor x25, x25, x19
322 and x25, x25, #~(THREAD_SIZE - 1)
323 cbnz x25, 9998f
James Morse8e23dac2015-12-04 11:02:27 +0000324
Mark Rutlandf60fe782017-07-31 21:17:03 +0100325 ldr_this_cpu x25, irq_stack_ptr, x26
Ard Biesheuvel34be98f2017-07-20 17:15:45 +0100326 mov x26, #IRQ_STACK_SIZE
James Morse8e23dac2015-12-04 11:02:27 +0000327 add x26, x25, x26
James Morsed224a692015-12-18 16:01:47 +0000328
329 /* switch to the irq stack */
James Morse8e23dac2015-12-04 11:02:27 +0000330 mov sp, x26
James Morse8e23dac2015-12-04 11:02:27 +00003319998:
332 .endm
333
334 /*
335 * x19 should be preserved between irq_stack_entry and
336 * irq_stack_exit.
337 */
338 .macro irq_stack_exit
339 mov sp, x19
340 .endm
341
Catalin Marinas60ffc302012-03-05 11:49:27 +0000342/*
343 * These are the registers used in the syscall handler, and allow us to
344 * have in theory up to 7 arguments to a function - x0 to x6.
345 *
346 * x7 is reserved for the system call number in 32-bit mode.
347 */
Dave Martin35d0e6f2017-08-01 15:35:53 +0100348wsc_nr .req w25 // number of system calls
349wscno .req w26 // syscall number
350xscno .req x26 // syscall number (zero-extended)
Catalin Marinas60ffc302012-03-05 11:49:27 +0000351stbl .req x27 // syscall table pointer
352tsk .req x28 // current thread_info
353
354/*
355 * Interrupt handling.
356 */
357 .macro irq_handler
James Morse8e23dac2015-12-04 11:02:27 +0000358 ldr_l x1, handle_arch_irq
Catalin Marinas60ffc302012-03-05 11:49:27 +0000359 mov x0, sp
James Morse971c67c2015-12-15 11:21:25 +0000360 irq_stack_entry
Catalin Marinas60ffc302012-03-05 11:49:27 +0000361 blr x1
James Morse8e23dac2015-12-04 11:02:27 +0000362 irq_stack_exit
Catalin Marinas60ffc302012-03-05 11:49:27 +0000363 .endm
364
365 .text
366
367/*
368 * Exception vectors.
369 */
Pratyush Anand888b3c82016-07-08 12:35:50 -0400370 .pushsection ".entry.text", "ax"
Catalin Marinas60ffc302012-03-05 11:49:27 +0000371
372 .align 11
373ENTRY(vectors)
Mark Rutlandb11e5752017-07-19 17:24:49 +0100374 kernel_ventry el1_sync_invalid // Synchronous EL1t
375 kernel_ventry el1_irq_invalid // IRQ EL1t
376 kernel_ventry el1_fiq_invalid // FIQ EL1t
377 kernel_ventry el1_error_invalid // Error EL1t
Catalin Marinas60ffc302012-03-05 11:49:27 +0000378
Mark Rutlandb11e5752017-07-19 17:24:49 +0100379 kernel_ventry el1_sync // Synchronous EL1h
380 kernel_ventry el1_irq // IRQ EL1h
381 kernel_ventry el1_fiq_invalid // FIQ EL1h
Xie XiuQia92d4d12017-11-02 12:12:42 +0000382 kernel_ventry el1_error // Error EL1h
Catalin Marinas60ffc302012-03-05 11:49:27 +0000383
Mark Rutlandb11e5752017-07-19 17:24:49 +0100384 kernel_ventry el0_sync // Synchronous 64-bit EL0
385 kernel_ventry el0_irq // IRQ 64-bit EL0
386 kernel_ventry el0_fiq_invalid // FIQ 64-bit EL0
Xie XiuQia92d4d12017-11-02 12:12:42 +0000387 kernel_ventry el0_error // Error 64-bit EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000388
389#ifdef CONFIG_COMPAT
Mark Rutlandb11e5752017-07-19 17:24:49 +0100390 kernel_ventry el0_sync_compat // Synchronous 32-bit EL0
391 kernel_ventry el0_irq_compat // IRQ 32-bit EL0
392 kernel_ventry el0_fiq_invalid_compat // FIQ 32-bit EL0
Xie XiuQia92d4d12017-11-02 12:12:42 +0000393 kernel_ventry el0_error_compat // Error 32-bit EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000394#else
Mark Rutlandb11e5752017-07-19 17:24:49 +0100395 kernel_ventry el0_sync_invalid // Synchronous 32-bit EL0
396 kernel_ventry el0_irq_invalid // IRQ 32-bit EL0
397 kernel_ventry el0_fiq_invalid // FIQ 32-bit EL0
398 kernel_ventry el0_error_invalid // Error 32-bit EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000399#endif
400END(vectors)
401
Mark Rutland872d8322017-07-14 20:30:35 +0100402#ifdef CONFIG_VMAP_STACK
403 /*
404 * We detected an overflow in kernel_ventry, which switched to the
405 * overflow stack. Stash the exception regs, and head to our overflow
406 * handler.
407 */
408__bad_stack:
409 /* Restore the original x0 value */
410 mrs x0, tpidrro_el0
411
412 /*
413 * Store the original GPRs to the new stack. The orginal SP (minus
414 * S_FRAME_SIZE) was stashed in tpidr_el0 by kernel_ventry.
415 */
416 sub sp, sp, #S_FRAME_SIZE
417 kernel_entry 1
418 mrs x0, tpidr_el0
419 add x0, x0, #S_FRAME_SIZE
420 str x0, [sp, #S_SP]
421
422 /* Stash the regs for handle_bad_stack */
423 mov x0, sp
424
425 /* Time to die */
426 bl handle_bad_stack
427 ASM_BUG()
428#endif /* CONFIG_VMAP_STACK */
429
Catalin Marinas60ffc302012-03-05 11:49:27 +0000430/*
431 * Invalid mode handlers
432 */
433 .macro inv_entry, el, reason, regsize = 64
Ard Biesheuvelb6609502016-03-18 10:58:09 +0100434 kernel_entry \el, \regsize
Catalin Marinas60ffc302012-03-05 11:49:27 +0000435 mov x0, sp
436 mov x1, #\reason
437 mrs x2, esr_el1
Mark Rutland2d0e7512017-07-26 11:14:53 +0100438 bl bad_mode
439 ASM_BUG()
Catalin Marinas60ffc302012-03-05 11:49:27 +0000440 .endm
441
442el0_sync_invalid:
443 inv_entry 0, BAD_SYNC
444ENDPROC(el0_sync_invalid)
445
446el0_irq_invalid:
447 inv_entry 0, BAD_IRQ
448ENDPROC(el0_irq_invalid)
449
450el0_fiq_invalid:
451 inv_entry 0, BAD_FIQ
452ENDPROC(el0_fiq_invalid)
453
454el0_error_invalid:
455 inv_entry 0, BAD_ERROR
456ENDPROC(el0_error_invalid)
457
458#ifdef CONFIG_COMPAT
459el0_fiq_invalid_compat:
460 inv_entry 0, BAD_FIQ, 32
461ENDPROC(el0_fiq_invalid_compat)
Catalin Marinas60ffc302012-03-05 11:49:27 +0000462#endif
463
464el1_sync_invalid:
465 inv_entry 1, BAD_SYNC
466ENDPROC(el1_sync_invalid)
467
468el1_irq_invalid:
469 inv_entry 1, BAD_IRQ
470ENDPROC(el1_irq_invalid)
471
472el1_fiq_invalid:
473 inv_entry 1, BAD_FIQ
474ENDPROC(el1_fiq_invalid)
475
476el1_error_invalid:
477 inv_entry 1, BAD_ERROR
478ENDPROC(el1_error_invalid)
479
480/*
481 * EL1 mode handlers.
482 */
483 .align 6
484el1_sync:
485 kernel_entry 1
486 mrs x1, esr_el1 // read the syndrome register
Mark Rutlandaed40e02014-11-24 12:31:40 +0000487 lsr x24, x1, #ESR_ELx_EC_SHIFT // exception class
488 cmp x24, #ESR_ELx_EC_DABT_CUR // data abort in EL1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000489 b.eq el1_da
Laura Abbott9adeb8e2016-08-09 18:25:26 -0700490 cmp x24, #ESR_ELx_EC_IABT_CUR // instruction abort in EL1
491 b.eq el1_ia
Mark Rutlandaed40e02014-11-24 12:31:40 +0000492 cmp x24, #ESR_ELx_EC_SYS64 // configurable trap
Catalin Marinas60ffc302012-03-05 11:49:27 +0000493 b.eq el1_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000494 cmp x24, #ESR_ELx_EC_SP_ALIGN // stack alignment exception
Catalin Marinas60ffc302012-03-05 11:49:27 +0000495 b.eq el1_sp_pc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000496 cmp x24, #ESR_ELx_EC_PC_ALIGN // pc alignment exception
Catalin Marinas60ffc302012-03-05 11:49:27 +0000497 b.eq el1_sp_pc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000498 cmp x24, #ESR_ELx_EC_UNKNOWN // unknown exception in EL1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000499 b.eq el1_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000500 cmp x24, #ESR_ELx_EC_BREAKPT_CUR // debug exception in EL1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000501 b.ge el1_dbg
502 b el1_inv
Laura Abbott9adeb8e2016-08-09 18:25:26 -0700503
504el1_ia:
505 /*
506 * Fall through to the Data abort case
507 */
Catalin Marinas60ffc302012-03-05 11:49:27 +0000508el1_da:
509 /*
510 * Data abort handling
511 */
Kristina Martsenko276e9322017-05-03 16:37:47 +0100512 mrs x3, far_el1
James Morseb55a5a12017-11-02 12:12:39 +0000513 inherit_daif pstate=x23, tmp=x2
Kristina Martsenko276e9322017-05-03 16:37:47 +0100514 clear_address_tag x0, x3
Catalin Marinas60ffc302012-03-05 11:49:27 +0000515 mov x2, sp // struct pt_regs
516 bl do_mem_abort
517
Catalin Marinas60ffc302012-03-05 11:49:27 +0000518 kernel_exit 1
519el1_sp_pc:
520 /*
521 * Stack or PC alignment exception handling
522 */
523 mrs x0, far_el1
James Morseb55a5a12017-11-02 12:12:39 +0000524 inherit_daif pstate=x23, tmp=x2
Catalin Marinas60ffc302012-03-05 11:49:27 +0000525 mov x2, sp
Mark Rutland2d0e7512017-07-26 11:14:53 +0100526 bl do_sp_pc_abort
527 ASM_BUG()
Catalin Marinas60ffc302012-03-05 11:49:27 +0000528el1_undef:
529 /*
530 * Undefined instruction
531 */
James Morseb55a5a12017-11-02 12:12:39 +0000532 inherit_daif pstate=x23, tmp=x2
Catalin Marinas60ffc302012-03-05 11:49:27 +0000533 mov x0, sp
Mark Rutland2d0e7512017-07-26 11:14:53 +0100534 bl do_undefinstr
535 ASM_BUG()
Catalin Marinas60ffc302012-03-05 11:49:27 +0000536el1_dbg:
537 /*
538 * Debug exception handling
539 */
Mark Rutlandaed40e02014-11-24 12:31:40 +0000540 cmp x24, #ESR_ELx_EC_BRK64 // if BRK64
Sandeepa Prabhuee6214c2013-12-04 05:50:20 +0000541 cinc x24, x24, eq // set bit '0'
Catalin Marinas60ffc302012-03-05 11:49:27 +0000542 tbz x24, #0, el1_inv // EL1 only
543 mrs x0, far_el1
544 mov x2, sp // struct pt_regs
545 bl do_debug_exception
Catalin Marinas60ffc302012-03-05 11:49:27 +0000546 kernel_exit 1
547el1_inv:
548 // TODO: add support for undefined instructions in kernel mode
James Morseb55a5a12017-11-02 12:12:39 +0000549 inherit_daif pstate=x23, tmp=x2
Catalin Marinas60ffc302012-03-05 11:49:27 +0000550 mov x0, sp
Mark Rutland1b428042015-07-07 18:00:49 +0100551 mov x2, x1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000552 mov x1, #BAD_SYNC
Mark Rutland2d0e7512017-07-26 11:14:53 +0100553 bl bad_mode
554 ASM_BUG()
Catalin Marinas60ffc302012-03-05 11:49:27 +0000555ENDPROC(el1_sync)
556
557 .align 6
558el1_irq:
559 kernel_entry 1
James Morseb282e1c2017-11-02 12:12:41 +0000560 enable_da_f
Catalin Marinas60ffc302012-03-05 11:49:27 +0000561#ifdef CONFIG_TRACE_IRQFLAGS
562 bl trace_hardirqs_off
563#endif
Marc Zyngier64681782013-11-12 17:11:53 +0000564
565 irq_handler
566
Catalin Marinas60ffc302012-03-05 11:49:27 +0000567#ifdef CONFIG_PREEMPT
Mark Rutlandc02433d2016-11-03 20:23:13 +0000568 ldr w24, [tsk, #TSK_TI_PREEMPT] // get preempt count
Marc Zyngier717321f2013-11-04 20:14:58 +0000569 cbnz w24, 1f // preempt count != 0
Mark Rutlandc02433d2016-11-03 20:23:13 +0000570 ldr x0, [tsk, #TSK_TI_FLAGS] // get flags
Catalin Marinas60ffc302012-03-05 11:49:27 +0000571 tbz x0, #TIF_NEED_RESCHED, 1f // needs rescheduling?
572 bl el1_preempt
5731:
574#endif
575#ifdef CONFIG_TRACE_IRQFLAGS
576 bl trace_hardirqs_on
577#endif
578 kernel_exit 1
579ENDPROC(el1_irq)
580
581#ifdef CONFIG_PREEMPT
582el1_preempt:
583 mov x24, lr
Will Deacon2a283072014-04-29 19:04:06 +01005841: bl preempt_schedule_irq // irq en/disable is done inside
Mark Rutlandc02433d2016-11-03 20:23:13 +0000585 ldr x0, [tsk, #TSK_TI_FLAGS] // get new tasks TI_FLAGS
Catalin Marinas60ffc302012-03-05 11:49:27 +0000586 tbnz x0, #TIF_NEED_RESCHED, 1b // needs rescheduling?
587 ret x24
588#endif
589
590/*
591 * EL0 mode handlers.
592 */
593 .align 6
594el0_sync:
595 kernel_entry 0
596 mrs x25, esr_el1 // read the syndrome register
Mark Rutlandaed40e02014-11-24 12:31:40 +0000597 lsr x24, x25, #ESR_ELx_EC_SHIFT // exception class
598 cmp x24, #ESR_ELx_EC_SVC64 // SVC in 64-bit state
Catalin Marinas60ffc302012-03-05 11:49:27 +0000599 b.eq el0_svc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000600 cmp x24, #ESR_ELx_EC_DABT_LOW // data abort in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000601 b.eq el0_da
Mark Rutlandaed40e02014-11-24 12:31:40 +0000602 cmp x24, #ESR_ELx_EC_IABT_LOW // instruction abort in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000603 b.eq el0_ia
Mark Rutlandaed40e02014-11-24 12:31:40 +0000604 cmp x24, #ESR_ELx_EC_FP_ASIMD // FP/ASIMD access
Catalin Marinas60ffc302012-03-05 11:49:27 +0000605 b.eq el0_fpsimd_acc
Dave Martinbc0ee472017-10-31 15:51:05 +0000606 cmp x24, #ESR_ELx_EC_SVE // SVE access
607 b.eq el0_sve_acc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000608 cmp x24, #ESR_ELx_EC_FP_EXC64 // FP/ASIMD exception
Catalin Marinas60ffc302012-03-05 11:49:27 +0000609 b.eq el0_fpsimd_exc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000610 cmp x24, #ESR_ELx_EC_SYS64 // configurable trap
Andre Przywara7dd01ae2016-06-28 18:07:32 +0100611 b.eq el0_sys
Mark Rutlandaed40e02014-11-24 12:31:40 +0000612 cmp x24, #ESR_ELx_EC_SP_ALIGN // stack alignment exception
Catalin Marinas60ffc302012-03-05 11:49:27 +0000613 b.eq el0_sp_pc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000614 cmp x24, #ESR_ELx_EC_PC_ALIGN // pc alignment exception
Catalin Marinas60ffc302012-03-05 11:49:27 +0000615 b.eq el0_sp_pc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000616 cmp x24, #ESR_ELx_EC_UNKNOWN // unknown exception in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000617 b.eq el0_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000618 cmp x24, #ESR_ELx_EC_BREAKPT_LOW // debug exception in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000619 b.ge el0_dbg
620 b el0_inv
621
622#ifdef CONFIG_COMPAT
623 .align 6
624el0_sync_compat:
625 kernel_entry 0, 32
626 mrs x25, esr_el1 // read the syndrome register
Mark Rutlandaed40e02014-11-24 12:31:40 +0000627 lsr x24, x25, #ESR_ELx_EC_SHIFT // exception class
628 cmp x24, #ESR_ELx_EC_SVC32 // SVC in 32-bit state
Catalin Marinas60ffc302012-03-05 11:49:27 +0000629 b.eq el0_svc_compat
Mark Rutlandaed40e02014-11-24 12:31:40 +0000630 cmp x24, #ESR_ELx_EC_DABT_LOW // data abort in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000631 b.eq el0_da
Mark Rutlandaed40e02014-11-24 12:31:40 +0000632 cmp x24, #ESR_ELx_EC_IABT_LOW // instruction abort in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000633 b.eq el0_ia
Mark Rutlandaed40e02014-11-24 12:31:40 +0000634 cmp x24, #ESR_ELx_EC_FP_ASIMD // FP/ASIMD access
Catalin Marinas60ffc302012-03-05 11:49:27 +0000635 b.eq el0_fpsimd_acc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000636 cmp x24, #ESR_ELx_EC_FP_EXC32 // FP/ASIMD exception
Catalin Marinas60ffc302012-03-05 11:49:27 +0000637 b.eq el0_fpsimd_exc
Mark Salyzyn77f3228f2015-10-13 14:30:51 -0700638 cmp x24, #ESR_ELx_EC_PC_ALIGN // pc alignment exception
639 b.eq el0_sp_pc
Mark Rutlandaed40e02014-11-24 12:31:40 +0000640 cmp x24, #ESR_ELx_EC_UNKNOWN // unknown exception in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000641 b.eq el0_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000642 cmp x24, #ESR_ELx_EC_CP15_32 // CP15 MRC/MCR trap
Mark Rutland381cc2b2013-05-24 12:02:35 +0100643 b.eq el0_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000644 cmp x24, #ESR_ELx_EC_CP15_64 // CP15 MRRC/MCRR trap
Mark Rutland381cc2b2013-05-24 12:02:35 +0100645 b.eq el0_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000646 cmp x24, #ESR_ELx_EC_CP14_MR // CP14 MRC/MCR trap
Mark Rutland381cc2b2013-05-24 12:02:35 +0100647 b.eq el0_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000648 cmp x24, #ESR_ELx_EC_CP14_LS // CP14 LDC/STC trap
Mark Rutland381cc2b2013-05-24 12:02:35 +0100649 b.eq el0_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000650 cmp x24, #ESR_ELx_EC_CP14_64 // CP14 MRRC/MCRR trap
Mark Rutland381cc2b2013-05-24 12:02:35 +0100651 b.eq el0_undef
Mark Rutlandaed40e02014-11-24 12:31:40 +0000652 cmp x24, #ESR_ELx_EC_BREAKPT_LOW // debug exception in EL0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000653 b.ge el0_dbg
654 b el0_inv
655el0_svc_compat:
656 /*
657 * AArch32 syscall handling
658 */
Dave Martinbc0ee472017-10-31 15:51:05 +0000659 ldr x16, [tsk, #TSK_TI_FLAGS] // load thread flags
Catalin Marinas01564112015-01-06 16:42:32 +0000660 adrp stbl, compat_sys_call_table // load compat syscall table pointer
Dave Martin35d0e6f2017-08-01 15:35:53 +0100661 mov wscno, w7 // syscall number in w7 (r7)
662 mov wsc_nr, #__NR_compat_syscalls
Catalin Marinas60ffc302012-03-05 11:49:27 +0000663 b el0_svc_naked
664
665 .align 6
666el0_irq_compat:
667 kernel_entry 0, 32
668 b el0_irq_naked
Xie XiuQia92d4d12017-11-02 12:12:42 +0000669
670el0_error_compat:
671 kernel_entry 0, 32
672 b el0_error_naked
Catalin Marinas60ffc302012-03-05 11:49:27 +0000673#endif
674
675el0_da:
676 /*
677 * Data abort handling
678 */
Larry Bassel6ab64632014-05-30 20:34:14 +0100679 mrs x26, far_el1
James Morse746647c2017-11-02 12:12:40 +0000680 enable_daif
Larry Bassel6c81fe72014-05-30 12:34:15 -0700681 ct_user_exit
Kristina Martsenko276e9322017-05-03 16:37:47 +0100682 clear_address_tag x0, x26
Catalin Marinas60ffc302012-03-05 11:49:27 +0000683 mov x1, x25
684 mov x2, sp
Will Deacond54e81f2014-09-29 11:44:01 +0100685 bl do_mem_abort
686 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000687el0_ia:
688 /*
689 * Instruction abort handling
690 */
Larry Bassel6ab64632014-05-30 20:34:14 +0100691 mrs x26, far_el1
James Morse746647c2017-11-02 12:12:40 +0000692 enable_daif
Larry Bassel6c81fe72014-05-30 12:34:15 -0700693 ct_user_exit
Larry Bassel6ab64632014-05-30 20:34:14 +0100694 mov x0, x26
Mark Rutland541ec872016-05-31 12:33:03 +0100695 mov x1, x25
Catalin Marinas60ffc302012-03-05 11:49:27 +0000696 mov x2, sp
Will Deacond54e81f2014-09-29 11:44:01 +0100697 bl do_mem_abort
698 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000699el0_fpsimd_acc:
700 /*
701 * Floating Point or Advanced SIMD access
702 */
James Morse746647c2017-11-02 12:12:40 +0000703 enable_daif
Larry Bassel6c81fe72014-05-30 12:34:15 -0700704 ct_user_exit
Catalin Marinas60ffc302012-03-05 11:49:27 +0000705 mov x0, x25
706 mov x1, sp
Will Deacond54e81f2014-09-29 11:44:01 +0100707 bl do_fpsimd_acc
708 b ret_to_user
Dave Martinbc0ee472017-10-31 15:51:05 +0000709el0_sve_acc:
710 /*
711 * Scalable Vector Extension access
712 */
713 enable_daif
714 ct_user_exit
715 mov x0, x25
716 mov x1, sp
717 bl do_sve_acc
718 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000719el0_fpsimd_exc:
720 /*
Dave Martinbc0ee472017-10-31 15:51:05 +0000721 * Floating Point, Advanced SIMD or SVE exception
Catalin Marinas60ffc302012-03-05 11:49:27 +0000722 */
James Morse746647c2017-11-02 12:12:40 +0000723 enable_daif
Larry Bassel6c81fe72014-05-30 12:34:15 -0700724 ct_user_exit
Catalin Marinas60ffc302012-03-05 11:49:27 +0000725 mov x0, x25
726 mov x1, sp
Will Deacond54e81f2014-09-29 11:44:01 +0100727 bl do_fpsimd_exc
728 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000729el0_sp_pc:
730 /*
731 * Stack or PC alignment exception handling
732 */
Larry Bassel6ab64632014-05-30 20:34:14 +0100733 mrs x26, far_el1
James Morse746647c2017-11-02 12:12:40 +0000734 enable_daif
Mark Rutland46b05672015-06-15 16:40:27 +0100735 ct_user_exit
Larry Bassel6ab64632014-05-30 20:34:14 +0100736 mov x0, x26
Catalin Marinas60ffc302012-03-05 11:49:27 +0000737 mov x1, x25
738 mov x2, sp
Will Deacond54e81f2014-09-29 11:44:01 +0100739 bl do_sp_pc_abort
740 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000741el0_undef:
742 /*
743 * Undefined instruction
744 */
James Morse746647c2017-11-02 12:12:40 +0000745 enable_daif
Larry Bassel6c81fe72014-05-30 12:34:15 -0700746 ct_user_exit
Will Deacon2a283072014-04-29 19:04:06 +0100747 mov x0, sp
Will Deacond54e81f2014-09-29 11:44:01 +0100748 bl do_undefinstr
749 b ret_to_user
Andre Przywara7dd01ae2016-06-28 18:07:32 +0100750el0_sys:
751 /*
752 * System instructions, for trapped cache maintenance instructions
753 */
James Morse746647c2017-11-02 12:12:40 +0000754 enable_daif
Andre Przywara7dd01ae2016-06-28 18:07:32 +0100755 ct_user_exit
756 mov x0, x25
757 mov x1, sp
758 bl do_sysinstr
759 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000760el0_dbg:
761 /*
762 * Debug exception handling
763 */
764 tbnz x24, #0, el0_inv // EL0 only
765 mrs x0, far_el1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000766 mov x1, x25
767 mov x2, sp
Will Deacon2a283072014-04-29 19:04:06 +0100768 bl do_debug_exception
James Morse746647c2017-11-02 12:12:40 +0000769 enable_daif
Larry Bassel6c81fe72014-05-30 12:34:15 -0700770 ct_user_exit
Will Deacon2a283072014-04-29 19:04:06 +0100771 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000772el0_inv:
James Morse746647c2017-11-02 12:12:40 +0000773 enable_daif
Larry Bassel6c81fe72014-05-30 12:34:15 -0700774 ct_user_exit
Catalin Marinas60ffc302012-03-05 11:49:27 +0000775 mov x0, sp
776 mov x1, #BAD_SYNC
Mark Rutland1b428042015-07-07 18:00:49 +0100777 mov x2, x25
Mark Rutland7d9e8f72017-01-18 17:23:41 +0000778 bl bad_el0_sync
Will Deacond54e81f2014-09-29 11:44:01 +0100779 b ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000780ENDPROC(el0_sync)
781
782 .align 6
783el0_irq:
784 kernel_entry 0
785el0_irq_naked:
James Morseb282e1c2017-11-02 12:12:41 +0000786 enable_da_f
Catalin Marinas60ffc302012-03-05 11:49:27 +0000787#ifdef CONFIG_TRACE_IRQFLAGS
788 bl trace_hardirqs_off
789#endif
Marc Zyngier64681782013-11-12 17:11:53 +0000790
Larry Bassel6c81fe72014-05-30 12:34:15 -0700791 ct_user_exit
Catalin Marinas60ffc302012-03-05 11:49:27 +0000792 irq_handler
Marc Zyngier64681782013-11-12 17:11:53 +0000793
Catalin Marinas60ffc302012-03-05 11:49:27 +0000794#ifdef CONFIG_TRACE_IRQFLAGS
795 bl trace_hardirqs_on
796#endif
797 b ret_to_user
798ENDPROC(el0_irq)
799
Xie XiuQia92d4d12017-11-02 12:12:42 +0000800el1_error:
801 kernel_entry 1
802 mrs x1, esr_el1
803 enable_dbg
804 mov x0, sp
805 bl do_serror
806 kernel_exit 1
807ENDPROC(el1_error)
808
809el0_error:
810 kernel_entry 0
811el0_error_naked:
812 mrs x1, esr_el1
813 enable_dbg
814 mov x0, sp
815 bl do_serror
816 enable_daif
817 ct_user_exit
818 b ret_to_user
819ENDPROC(el0_error)
820
821
Catalin Marinas60ffc302012-03-05 11:49:27 +0000822/*
Catalin Marinas60ffc302012-03-05 11:49:27 +0000823 * This is the fast syscall return path. We do as little as possible here,
824 * and this includes saving x0 back into the kernel stack.
825 */
826ret_fast_syscall:
James Morse8d667722017-11-02 12:12:37 +0000827 disable_daif
Will Deacon412fcb62015-08-19 15:57:09 +0100828 str x0, [sp, #S_X0] // returned x0
Mark Rutlandc02433d2016-11-03 20:23:13 +0000829 ldr x1, [tsk, #TSK_TI_FLAGS] // re-check for syscall tracing
Josh Stone04d7e092015-06-05 14:28:03 -0700830 and x2, x1, #_TIF_SYSCALL_WORK
831 cbnz x2, ret_fast_syscall_trace
Catalin Marinas60ffc302012-03-05 11:49:27 +0000832 and x2, x1, #_TIF_WORK_MASK
Will Deacon412fcb62015-08-19 15:57:09 +0100833 cbnz x2, work_pending
Will Deacon2a283072014-04-29 19:04:06 +0100834 enable_step_tsk x1, x2
Will Deacon412fcb62015-08-19 15:57:09 +0100835 kernel_exit 0
Josh Stone04d7e092015-06-05 14:28:03 -0700836ret_fast_syscall_trace:
James Morse8d667722017-11-02 12:12:37 +0000837 enable_daif
Will Deacon412fcb62015-08-19 15:57:09 +0100838 b __sys_trace_return_skipped // we already saved x0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000839
840/*
841 * Ok, we need to do extra processing, enter the slow path.
842 */
Catalin Marinas60ffc302012-03-05 11:49:27 +0000843work_pending:
Catalin Marinas60ffc302012-03-05 11:49:27 +0000844 mov x0, sp // 'regs'
Catalin Marinas60ffc302012-03-05 11:49:27 +0000845 bl do_notify_resume
Catalin Marinasdb3899a2015-12-04 12:42:29 +0000846#ifdef CONFIG_TRACE_IRQFLAGS
Chris Metcalf421dd6f2016-07-14 16:48:14 -0400847 bl trace_hardirqs_on // enabled while in userspace
Catalin Marinasdb3899a2015-12-04 12:42:29 +0000848#endif
Mark Rutlandc02433d2016-11-03 20:23:13 +0000849 ldr x1, [tsk, #TSK_TI_FLAGS] // re-check for single-step
Chris Metcalf421dd6f2016-07-14 16:48:14 -0400850 b finish_ret_to_user
Catalin Marinas60ffc302012-03-05 11:49:27 +0000851/*
852 * "slow" syscall return path.
853 */
Catalin Marinas59dc67b2012-09-10 16:11:46 +0100854ret_to_user:
James Morse8d667722017-11-02 12:12:37 +0000855 disable_daif
Mark Rutlandc02433d2016-11-03 20:23:13 +0000856 ldr x1, [tsk, #TSK_TI_FLAGS]
Catalin Marinas60ffc302012-03-05 11:49:27 +0000857 and x2, x1, #_TIF_WORK_MASK
858 cbnz x2, work_pending
Chris Metcalf421dd6f2016-07-14 16:48:14 -0400859finish_ret_to_user:
Will Deacon2a283072014-04-29 19:04:06 +0100860 enable_step_tsk x1, x2
Will Deacon412fcb62015-08-19 15:57:09 +0100861 kernel_exit 0
Catalin Marinas60ffc302012-03-05 11:49:27 +0000862ENDPROC(ret_to_user)
863
864/*
Catalin Marinas60ffc302012-03-05 11:49:27 +0000865 * SVC handler.
866 */
867 .align 6
868el0_svc:
Dave Martinbc0ee472017-10-31 15:51:05 +0000869 ldr x16, [tsk, #TSK_TI_FLAGS] // load thread flags
Catalin Marinas60ffc302012-03-05 11:49:27 +0000870 adrp stbl, sys_call_table // load syscall table pointer
Dave Martin35d0e6f2017-08-01 15:35:53 +0100871 mov wscno, w8 // syscall number in w8
872 mov wsc_nr, #__NR_syscalls
Dave Martinbc0ee472017-10-31 15:51:05 +0000873
Dave Martin43994d82017-10-31 15:51:19 +0000874#ifdef CONFIG_ARM64_SVE
875alternative_if_not ARM64_SVE
Dave Martinbc0ee472017-10-31 15:51:05 +0000876 b el0_svc_naked
Dave Martin43994d82017-10-31 15:51:19 +0000877alternative_else_nop_endif
Dave Martinbc0ee472017-10-31 15:51:05 +0000878 tbz x16, #TIF_SVE, el0_svc_naked // Skip unless TIF_SVE set:
879 bic x16, x16, #_TIF_SVE // discard SVE state
880 str x16, [tsk, #TSK_TI_FLAGS]
881
882 /*
883 * task_fpsimd_load() won't be called to update CPACR_EL1 in
884 * ret_to_user unless TIF_FOREIGN_FPSTATE is still set, which only
885 * happens if a context switch or kernel_neon_begin() or context
886 * modification (sigreturn, ptrace) intervenes.
887 * So, ensure that CPACR_EL1 is already correct for the fast-path case:
888 */
889 mrs x9, cpacr_el1
890 bic x9, x9, #CPACR_EL1_ZEN_EL0EN // disable SVE for el0
891 msr cpacr_el1, x9 // synchronised by eret to el0
Dave Martin43994d82017-10-31 15:51:19 +0000892#endif
Dave Martinbc0ee472017-10-31 15:51:05 +0000893
Catalin Marinas60ffc302012-03-05 11:49:27 +0000894el0_svc_naked: // compat entry point
Dave Martin35d0e6f2017-08-01 15:35:53 +0100895 stp x0, xscno, [sp, #S_ORIG_X0] // save the original x0 and syscall number
James Morse746647c2017-11-02 12:12:40 +0000896 enable_daif
Larry Bassel6c81fe72014-05-30 12:34:15 -0700897 ct_user_exit 1
Catalin Marinas60ffc302012-03-05 11:49:27 +0000898
Dave Martinbc0ee472017-10-31 15:51:05 +0000899 tst x16, #_TIF_SYSCALL_WORK // check for syscall hooks
AKASHI Takahiro449f81a2014-04-30 10:51:29 +0100900 b.ne __sys_trace
Dave Martin35d0e6f2017-08-01 15:35:53 +0100901 cmp wscno, wsc_nr // check upper syscall limit
Catalin Marinas60ffc302012-03-05 11:49:27 +0000902 b.hs ni_sys
Dave Martin35d0e6f2017-08-01 15:35:53 +0100903 ldr x16, [stbl, xscno, lsl #3] // address in the syscall table
Will Deacond54e81f2014-09-29 11:44:01 +0100904 blr x16 // call sys_* routine
905 b ret_fast_syscall
Catalin Marinas60ffc302012-03-05 11:49:27 +0000906ni_sys:
907 mov x0, sp
Will Deacond54e81f2014-09-29 11:44:01 +0100908 bl do_ni_syscall
909 b ret_fast_syscall
Catalin Marinas60ffc302012-03-05 11:49:27 +0000910ENDPROC(el0_svc)
911
912 /*
913 * This is the really slow path. We're going to be doing context
914 * switches, and waiting for our parent to respond.
915 */
916__sys_trace:
Dave Martin17c28952017-08-01 15:35:54 +0100917 cmp wscno, #NO_SYSCALL // user-issued syscall(-1)?
AKASHI Takahiro1014c812014-11-28 05:26:35 +0000918 b.ne 1f
Dave Martin35d0e6f2017-08-01 15:35:53 +0100919 mov x0, #-ENOSYS // set default errno if so
AKASHI Takahiro1014c812014-11-28 05:26:35 +0000920 str x0, [sp, #S_X0]
9211: mov x0, sp
AKASHI Takahiro3157858f2014-04-30 10:51:30 +0100922 bl syscall_trace_enter
Dave Martin17c28952017-08-01 15:35:54 +0100923 cmp w0, #NO_SYSCALL // skip the syscall?
AKASHI Takahiro1014c812014-11-28 05:26:35 +0000924 b.eq __sys_trace_return_skipped
Dave Martin35d0e6f2017-08-01 15:35:53 +0100925 mov wscno, w0 // syscall number (possibly new)
Catalin Marinas60ffc302012-03-05 11:49:27 +0000926 mov x1, sp // pointer to regs
Dave Martin35d0e6f2017-08-01 15:35:53 +0100927 cmp wscno, wsc_nr // check upper syscall limit
Will Deacond54e81f2014-09-29 11:44:01 +0100928 b.hs __ni_sys_trace
Catalin Marinas60ffc302012-03-05 11:49:27 +0000929 ldp x0, x1, [sp] // restore the syscall args
930 ldp x2, x3, [sp, #S_X2]
931 ldp x4, x5, [sp, #S_X4]
932 ldp x6, x7, [sp, #S_X6]
Dave Martin35d0e6f2017-08-01 15:35:53 +0100933 ldr x16, [stbl, xscno, lsl #3] // address in the syscall table
Will Deacond54e81f2014-09-29 11:44:01 +0100934 blr x16 // call sys_* routine
Catalin Marinas60ffc302012-03-05 11:49:27 +0000935
936__sys_trace_return:
AKASHI Takahiro1014c812014-11-28 05:26:35 +0000937 str x0, [sp, #S_X0] // save returned x0
938__sys_trace_return_skipped:
AKASHI Takahiro3157858f2014-04-30 10:51:30 +0100939 mov x0, sp
940 bl syscall_trace_exit
Catalin Marinas60ffc302012-03-05 11:49:27 +0000941 b ret_to_user
942
Will Deacond54e81f2014-09-29 11:44:01 +0100943__ni_sys_trace:
944 mov x0, sp
945 bl do_ni_syscall
946 b __sys_trace_return
947
Pratyush Anand888b3c82016-07-08 12:35:50 -0400948 .popsection // .entry.text
949
Catalin Marinas60ffc302012-03-05 11:49:27 +0000950/*
951 * Special system call wrappers.
952 */
Catalin Marinas60ffc302012-03-05 11:49:27 +0000953ENTRY(sys_rt_sigreturn_wrapper)
954 mov x0, sp
955 b sys_rt_sigreturn
956ENDPROC(sys_rt_sigreturn_wrapper)
Mark Rutlanded84b4e2017-07-26 16:05:20 +0100957
958/*
959 * Register switch for AArch64. The callee-saved registers need to be saved
960 * and restored. On entry:
961 * x0 = previous task_struct (must be preserved across the switch)
962 * x1 = next task_struct
963 * Previous and next are guaranteed not to be the same.
964 *
965 */
966ENTRY(cpu_switch_to)
967 mov x10, #THREAD_CPU_CONTEXT
968 add x8, x0, x10
969 mov x9, sp
970 stp x19, x20, [x8], #16 // store callee-saved registers
971 stp x21, x22, [x8], #16
972 stp x23, x24, [x8], #16
973 stp x25, x26, [x8], #16
974 stp x27, x28, [x8], #16
975 stp x29, x9, [x8], #16
976 str lr, [x8]
977 add x8, x1, x10
978 ldp x19, x20, [x8], #16 // restore callee-saved registers
979 ldp x21, x22, [x8], #16
980 ldp x23, x24, [x8], #16
981 ldp x25, x26, [x8], #16
982 ldp x27, x28, [x8], #16
983 ldp x29, x9, [x8], #16
984 ldr lr, [x8]
985 mov sp, x9
986 msr sp_el0, x1
987 ret
988ENDPROC(cpu_switch_to)
989NOKPROBE(cpu_switch_to)
990
991/*
992 * This is how we return from a fork.
993 */
994ENTRY(ret_from_fork)
995 bl schedule_tail
996 cbz x19, 1f // not a kernel thread
997 mov x0, x20
998 blr x19
9991: get_thread_info tsk
1000 b ret_to_user
1001ENDPROC(ret_from_fork)
1002NOKPROBE(ret_from_fork)