]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blob - arch/arm64/kernel/entry.S
UBUNTU: Ubuntu-4.15.0-96.97
[mirror_ubuntu-bionic-kernel.git] / arch / arm64 / kernel / entry.S
1 /*
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/arm-smccc.h>
22 #include <linux/init.h>
23 #include <linux/linkage.h>
24
25 #include <asm/alternative.h>
26 #include <asm/assembler.h>
27 #include <asm/asm-offsets.h>
28 #include <asm/cpufeature.h>
29 #include <asm/errno.h>
30 #include <asm/esr.h>
31 #include <asm/irq.h>
32 #include <asm/memory.h>
33 #include <asm/mmu.h>
34 #include <asm/processor.h>
35 #include <asm/ptrace.h>
36 #include <asm/thread_info.h>
37 #include <asm/asm-uaccess.h>
38 #include <asm/unistd.h>
39
40 /*
41 * Context tracking subsystem. Used to instrument transitions
42 * between user and kernel mode.
43 */
44 .macro ct_user_exit, syscall = 0
45 #ifdef CONFIG_CONTEXT_TRACKING
46 bl context_tracking_user_exit
47 .if \syscall == 1
48 /*
49 * Save/restore needed during syscalls. Restore syscall arguments from
50 * the values already saved on stack during kernel_entry.
51 */
52 ldp x0, x1, [sp]
53 ldp x2, x3, [sp, #S_X2]
54 ldp x4, x5, [sp, #S_X4]
55 ldp x6, x7, [sp, #S_X6]
56 .endif
57 #endif
58 .endm
59
60 .macro ct_user_enter
61 #ifdef CONFIG_CONTEXT_TRACKING
62 bl context_tracking_user_enter
63 #endif
64 .endm
65
66 /*
67 * Bad Abort numbers
68 *-----------------
69 */
70 #define BAD_SYNC 0
71 #define BAD_IRQ 1
72 #define BAD_FIQ 2
73 #define BAD_ERROR 3
74
75 .macro kernel_ventry, el, label, regsize = 64
76 .align 7
77 #ifdef CONFIG_UNMAP_KERNEL_AT_EL0
78 alternative_if ARM64_UNMAP_KERNEL_AT_EL0
79 .if \el == 0
80 .if \regsize == 64
81 mrs x30, tpidrro_el0
82 msr tpidrro_el0, xzr
83 .else
84 mov x30, xzr
85 .endif
86 .endif
87 alternative_else_nop_endif
88 #endif
89
90 sub sp, sp, #S_FRAME_SIZE
91 #ifdef CONFIG_VMAP_STACK
92 /*
93 * Test whether the SP has overflowed, without corrupting a GPR.
94 * Task and IRQ stacks are aligned to (1 << THREAD_SHIFT).
95 */
96 add sp, sp, x0 // sp' = sp + x0
97 sub x0, sp, x0 // x0' = sp' - x0 = (sp + x0) - x0 = sp
98 tbnz x0, #THREAD_SHIFT, 0f
99 sub x0, sp, x0 // x0'' = sp' - x0' = (sp + x0) - sp = x0
100 sub sp, sp, x0 // sp'' = sp' - x0 = (sp + x0) - x0 = sp
101 b el\()\el\()_\label
102
103 0:
104 /*
105 * Either we've just detected an overflow, or we've taken an exception
106 * while on the overflow stack. Either way, we won't return to
107 * userspace, and can clobber EL0 registers to free up GPRs.
108 */
109
110 /* Stash the original SP (minus S_FRAME_SIZE) in tpidr_el0. */
111 msr tpidr_el0, x0
112
113 /* Recover the original x0 value and stash it in tpidrro_el0 */
114 sub x0, sp, x0
115 msr tpidrro_el0, x0
116
117 /* Switch to the overflow stack */
118 adr_this_cpu sp, overflow_stack + OVERFLOW_STACK_SIZE, x0
119
120 /*
121 * Check whether we were already on the overflow stack. This may happen
122 * after panic() re-enables interrupts.
123 */
124 mrs x0, tpidr_el0 // sp of interrupted context
125 sub x0, sp, x0 // delta with top of overflow stack
126 tst x0, #~(OVERFLOW_STACK_SIZE - 1) // within range?
127 b.ne __bad_stack // no? -> bad stack pointer
128
129 /* We were already on the overflow stack. Restore sp/x0 and carry on. */
130 sub sp, sp, x0
131 mrs x0, tpidrro_el0
132 #endif
133 b el\()\el\()_\label
134 .endm
135
136 .macro tramp_alias, dst, sym
137 mov_q \dst, TRAMP_VALIAS
138 add \dst, \dst, #(\sym - .entry.tramp.text)
139 .endm
140
141 // This macro corrupts x0-x3. It is the caller's duty
142 // to save/restore them if required.
143 .macro apply_ssbd, state, targ, tmp1, tmp2
144 #ifdef CONFIG_ARM64_SSBD
145 alternative_cb arm64_enable_wa2_handling
146 b \targ
147 alternative_cb_end
148 ldr_this_cpu \tmp2, arm64_ssbd_callback_required, \tmp1
149 cbz \tmp2, \targ
150 ldr \tmp2, [tsk, #TSK_TI_FLAGS]
151 tbnz \tmp2, #TIF_SSBD, \targ
152 mov w0, #ARM_SMCCC_ARCH_WORKAROUND_2
153 mov w1, #\state
154 alternative_cb arm64_update_smccc_conduit
155 nop // Patched to SMC/HVC #0
156 alternative_cb_end
157 #endif
158 .endm
159
160 .macro kernel_entry, el, regsize = 64
161 .if \regsize == 32
162 mov w0, w0 // zero upper 32 bits of x0
163 .endif
164 stp x0, x1, [sp, #16 * 0]
165 stp x2, x3, [sp, #16 * 1]
166 stp x4, x5, [sp, #16 * 2]
167 stp x6, x7, [sp, #16 * 3]
168 stp x8, x9, [sp, #16 * 4]
169 stp x10, x11, [sp, #16 * 5]
170 stp x12, x13, [sp, #16 * 6]
171 stp x14, x15, [sp, #16 * 7]
172 stp x16, x17, [sp, #16 * 8]
173 stp x18, x19, [sp, #16 * 9]
174 stp x20, x21, [sp, #16 * 10]
175 stp x22, x23, [sp, #16 * 11]
176 stp x24, x25, [sp, #16 * 12]
177 stp x26, x27, [sp, #16 * 13]
178 stp x28, x29, [sp, #16 * 14]
179
180 .if \el == 0
181 mrs x21, sp_el0
182 ldr_this_cpu tsk, __entry_task, x20 // Ensure MDSCR_EL1.SS is clear,
183 ldr x19, [tsk, #TSK_TI_FLAGS] // since we can unmask debug
184 disable_step_tsk x19, x20 // exceptions when scheduling.
185
186 apply_ssbd 1, 1f, x22, x23
187
188 #ifdef CONFIG_ARM64_SSBD
189 ldp x0, x1, [sp, #16 * 0]
190 ldp x2, x3, [sp, #16 * 1]
191 #endif
192 1:
193
194 mov x29, xzr // fp pointed to user-space
195 .else
196 add x21, sp, #S_FRAME_SIZE
197 get_thread_info tsk
198 /* Save the task's original addr_limit and set USER_DS */
199 ldr x20, [tsk, #TSK_TI_ADDR_LIMIT]
200 str x20, [sp, #S_ORIG_ADDR_LIMIT]
201 mov x20, #USER_DS
202 str x20, [tsk, #TSK_TI_ADDR_LIMIT]
203 /* No need to reset PSTATE.UAO, hardware's already set it to 0 for us */
204 .endif /* \el == 0 */
205 mrs x22, elr_el1
206 mrs x23, spsr_el1
207 stp lr, x21, [sp, #S_LR]
208
209 /*
210 * In order to be able to dump the contents of struct pt_regs at the
211 * time the exception was taken (in case we attempt to walk the call
212 * stack later), chain it together with the stack frames.
213 */
214 .if \el == 0
215 stp xzr, xzr, [sp, #S_STACKFRAME]
216 .else
217 stp x29, x22, [sp, #S_STACKFRAME]
218 .endif
219 add x29, sp, #S_STACKFRAME
220
221 #ifdef CONFIG_ARM64_SW_TTBR0_PAN
222 /*
223 * Set the TTBR0 PAN bit in SPSR. When the exception is taken from
224 * EL0, there is no need to check the state of TTBR0_EL1 since
225 * accesses are always enabled.
226 * Note that the meaning of this bit differs from the ARMv8.1 PAN
227 * feature as all TTBR0_EL1 accesses are disabled, not just those to
228 * user mappings.
229 */
230 alternative_if ARM64_HAS_PAN
231 b 1f // skip TTBR0 PAN
232 alternative_else_nop_endif
233
234 .if \el != 0
235 mrs x21, ttbr0_el1
236 tst x21, #TTBR_ASID_MASK // Check for the reserved ASID
237 orr x23, x23, #PSR_PAN_BIT // Set the emulated PAN in the saved SPSR
238 b.eq 1f // TTBR0 access already disabled
239 and x23, x23, #~PSR_PAN_BIT // Clear the emulated PAN in the saved SPSR
240 .endif
241
242 __uaccess_ttbr0_disable x21
243 1:
244 #endif
245
246 stp x22, x23, [sp, #S_PC]
247
248 /* Not in a syscall by default (el0_svc overwrites for real syscall) */
249 .if \el == 0
250 mov w21, #NO_SYSCALL
251 str w21, [sp, #S_SYSCALLNO]
252 .endif
253
254 /*
255 * Set sp_el0 to current thread_info.
256 */
257 .if \el == 0
258 msr sp_el0, tsk
259 .endif
260
261 /*
262 * Registers that may be useful after this macro is invoked:
263 *
264 * x21 - aborted SP
265 * x22 - aborted PC
266 * x23 - aborted PSTATE
267 */
268 .endm
269
270 .macro kernel_exit, el
271 .if \el != 0
272 disable_daif
273
274 /* Restore the task's original addr_limit. */
275 ldr x20, [sp, #S_ORIG_ADDR_LIMIT]
276 str x20, [tsk, #TSK_TI_ADDR_LIMIT]
277
278 /* No need to restore UAO, it will be restored from SPSR_EL1 */
279 .endif
280
281 ldp x21, x22, [sp, #S_PC] // load ELR, SPSR
282 .if \el == 0
283 ct_user_enter
284 .endif
285
286 #ifdef CONFIG_ARM64_SW_TTBR0_PAN
287 /*
288 * Restore access to TTBR0_EL1. If returning to EL0, no need for SPSR
289 * PAN bit checking.
290 */
291 alternative_if ARM64_HAS_PAN
292 b 2f // skip TTBR0 PAN
293 alternative_else_nop_endif
294
295 .if \el != 0
296 tbnz x22, #22, 1f // Skip re-enabling TTBR0 access if the PSR_PAN_BIT is set
297 .endif
298
299 __uaccess_ttbr0_enable x0, x1
300
301 .if \el == 0
302 /*
303 * Enable errata workarounds only if returning to user. The only
304 * workaround currently required for TTBR0_EL1 changes are for the
305 * Cavium erratum 27456 (broadcast TLBI instructions may cause I-cache
306 * corruption).
307 */
308 bl post_ttbr_update_workaround
309 .endif
310 1:
311 .if \el != 0
312 and x22, x22, #~PSR_PAN_BIT // ARMv8.0 CPUs do not understand this bit
313 .endif
314 2:
315 #endif
316
317 .if \el == 0
318 ldr x23, [sp, #S_SP] // load return stack pointer
319 msr sp_el0, x23
320 tst x22, #PSR_MODE32_BIT // native task?
321 b.eq 3f
322
323 #ifdef CONFIG_ARM64_ERRATUM_845719
324 alternative_if ARM64_WORKAROUND_845719
325 #ifdef CONFIG_PID_IN_CONTEXTIDR
326 mrs x29, contextidr_el1
327 msr contextidr_el1, x29
328 #else
329 msr contextidr_el1, xzr
330 #endif
331 alternative_else_nop_endif
332 #endif
333 3:
334 apply_ssbd 0, 5f, x0, x1
335 5:
336 .endif
337
338 msr elr_el1, x21 // set up the return data
339 msr spsr_el1, x22
340 ldp x0, x1, [sp, #16 * 0]
341 ldp x2, x3, [sp, #16 * 1]
342 ldp x4, x5, [sp, #16 * 2]
343 ldp x6, x7, [sp, #16 * 3]
344 ldp x8, x9, [sp, #16 * 4]
345 ldp x10, x11, [sp, #16 * 5]
346 ldp x12, x13, [sp, #16 * 6]
347 ldp x14, x15, [sp, #16 * 7]
348 ldp x16, x17, [sp, #16 * 8]
349 ldp x18, x19, [sp, #16 * 9]
350 ldp x20, x21, [sp, #16 * 10]
351 ldp x22, x23, [sp, #16 * 11]
352 ldp x24, x25, [sp, #16 * 12]
353 ldp x26, x27, [sp, #16 * 13]
354 ldp x28, x29, [sp, #16 * 14]
355 ldr lr, [sp, #S_LR]
356 add sp, sp, #S_FRAME_SIZE // restore sp
357
358 .if \el == 0
359 alternative_insn eret, nop, ARM64_UNMAP_KERNEL_AT_EL0
360 #ifdef CONFIG_UNMAP_KERNEL_AT_EL0
361 bne 4f
362 msr far_el1, x30
363 tramp_alias x30, tramp_exit_native
364 br x30
365 4:
366 tramp_alias x30, tramp_exit_compat
367 br x30
368 #endif
369 .else
370 eret
371 .endif
372 .endm
373
374 .macro irq_stack_entry
375 mov x19, sp // preserve the original sp
376
377 /*
378 * Compare sp with the base of the task stack.
379 * If the top ~(THREAD_SIZE - 1) bits match, we are on a task stack,
380 * and should switch to the irq stack.
381 */
382 ldr x25, [tsk, TSK_STACK]
383 eor x25, x25, x19
384 and x25, x25, #~(THREAD_SIZE - 1)
385 cbnz x25, 9998f
386
387 ldr_this_cpu x25, irq_stack_ptr, x26
388 mov x26, #IRQ_STACK_SIZE
389 add x26, x25, x26
390
391 /* switch to the irq stack */
392 mov sp, x26
393 9998:
394 .endm
395
396 /*
397 * x19 should be preserved between irq_stack_entry and
398 * irq_stack_exit.
399 */
400 .macro irq_stack_exit
401 mov sp, x19
402 .endm
403
404 /*
405 * These are the registers used in the syscall handler, and allow us to
406 * have in theory up to 7 arguments to a function - x0 to x6.
407 *
408 * x7 is reserved for the system call number in 32-bit mode.
409 */
410 wsc_nr .req w25 // number of system calls
411 xsc_nr .req x25 // number of system calls (zero-extended)
412 wscno .req w26 // syscall number
413 xscno .req x26 // syscall number (zero-extended)
414 stbl .req x27 // syscall table pointer
415 tsk .req x28 // current thread_info
416
417 /*
418 * Interrupt handling.
419 */
420 .macro irq_handler
421 ldr_l x1, handle_arch_irq
422 mov x0, sp
423 irq_stack_entry
424 blr x1
425 irq_stack_exit
426 .endm
427
428 .text
429
430 /*
431 * Exception vectors.
432 */
433 .pushsection ".entry.text", "ax"
434
435 .align 11
436 ENTRY(vectors)
437 kernel_ventry 1, sync_invalid // Synchronous EL1t
438 kernel_ventry 1, irq_invalid // IRQ EL1t
439 kernel_ventry 1, fiq_invalid // FIQ EL1t
440 kernel_ventry 1, error_invalid // Error EL1t
441
442 kernel_ventry 1, sync // Synchronous EL1h
443 kernel_ventry 1, irq // IRQ EL1h
444 kernel_ventry 1, fiq_invalid // FIQ EL1h
445 kernel_ventry 1, error // Error EL1h
446
447 kernel_ventry 0, sync // Synchronous 64-bit EL0
448 kernel_ventry 0, irq // IRQ 64-bit EL0
449 kernel_ventry 0, fiq_invalid // FIQ 64-bit EL0
450 kernel_ventry 0, error // Error 64-bit EL0
451
452 #ifdef CONFIG_COMPAT
453 kernel_ventry 0, sync_compat, 32 // Synchronous 32-bit EL0
454 kernel_ventry 0, irq_compat, 32 // IRQ 32-bit EL0
455 kernel_ventry 0, fiq_invalid_compat, 32 // FIQ 32-bit EL0
456 kernel_ventry 0, error_compat, 32 // Error 32-bit EL0
457 #else
458 kernel_ventry 0, sync_invalid, 32 // Synchronous 32-bit EL0
459 kernel_ventry 0, irq_invalid, 32 // IRQ 32-bit EL0
460 kernel_ventry 0, fiq_invalid, 32 // FIQ 32-bit EL0
461 kernel_ventry 0, error_invalid, 32 // Error 32-bit EL0
462 #endif
463 END(vectors)
464
465 #ifdef CONFIG_VMAP_STACK
466 /*
467 * We detected an overflow in kernel_ventry, which switched to the
468 * overflow stack. Stash the exception regs, and head to our overflow
469 * handler.
470 */
471 __bad_stack:
472 /* Restore the original x0 value */
473 mrs x0, tpidrro_el0
474
475 /*
476 * Store the original GPRs to the new stack. The orginal SP (minus
477 * S_FRAME_SIZE) was stashed in tpidr_el0 by kernel_ventry.
478 */
479 sub sp, sp, #S_FRAME_SIZE
480 kernel_entry 1
481 mrs x0, tpidr_el0
482 add x0, x0, #S_FRAME_SIZE
483 str x0, [sp, #S_SP]
484
485 /* Stash the regs for handle_bad_stack */
486 mov x0, sp
487
488 /* Time to die */
489 bl handle_bad_stack
490 ASM_BUG()
491 #endif /* CONFIG_VMAP_STACK */
492
493 /*
494 * Invalid mode handlers
495 */
496 .macro inv_entry, el, reason, regsize = 64
497 kernel_entry \el, \regsize
498 mov x0, sp
499 mov x1, #\reason
500 mrs x2, esr_el1
501 bl bad_mode
502 ASM_BUG()
503 .endm
504
505 el0_sync_invalid:
506 inv_entry 0, BAD_SYNC
507 ENDPROC(el0_sync_invalid)
508
509 el0_irq_invalid:
510 inv_entry 0, BAD_IRQ
511 ENDPROC(el0_irq_invalid)
512
513 el0_fiq_invalid:
514 inv_entry 0, BAD_FIQ
515 ENDPROC(el0_fiq_invalid)
516
517 el0_error_invalid:
518 inv_entry 0, BAD_ERROR
519 ENDPROC(el0_error_invalid)
520
521 #ifdef CONFIG_COMPAT
522 el0_fiq_invalid_compat:
523 inv_entry 0, BAD_FIQ, 32
524 ENDPROC(el0_fiq_invalid_compat)
525 #endif
526
527 el1_sync_invalid:
528 inv_entry 1, BAD_SYNC
529 ENDPROC(el1_sync_invalid)
530
531 el1_irq_invalid:
532 inv_entry 1, BAD_IRQ
533 ENDPROC(el1_irq_invalid)
534
535 el1_fiq_invalid:
536 inv_entry 1, BAD_FIQ
537 ENDPROC(el1_fiq_invalid)
538
539 el1_error_invalid:
540 inv_entry 1, BAD_ERROR
541 ENDPROC(el1_error_invalid)
542
543 /*
544 * EL1 mode handlers.
545 */
546 .align 6
547 el1_sync:
548 kernel_entry 1
549 mrs x1, esr_el1 // read the syndrome register
550 lsr x24, x1, #ESR_ELx_EC_SHIFT // exception class
551 cmp x24, #ESR_ELx_EC_DABT_CUR // data abort in EL1
552 b.eq el1_da
553 cmp x24, #ESR_ELx_EC_IABT_CUR // instruction abort in EL1
554 b.eq el1_ia
555 cmp x24, #ESR_ELx_EC_SYS64 // configurable trap
556 b.eq el1_undef
557 cmp x24, #ESR_ELx_EC_SP_ALIGN // stack alignment exception
558 b.eq el1_sp_pc
559 cmp x24, #ESR_ELx_EC_PC_ALIGN // pc alignment exception
560 b.eq el1_sp_pc
561 cmp x24, #ESR_ELx_EC_UNKNOWN // unknown exception in EL1
562 b.eq el1_undef
563 cmp x24, #ESR_ELx_EC_BREAKPT_CUR // debug exception in EL1
564 b.ge el1_dbg
565 b el1_inv
566
567 el1_ia:
568 /*
569 * Fall through to the Data abort case
570 */
571 el1_da:
572 /*
573 * Data abort handling
574 */
575 mrs x3, far_el1
576 inherit_daif pstate=x23, tmp=x2
577 clear_address_tag x0, x3
578 mov x2, sp // struct pt_regs
579 bl do_mem_abort
580
581 kernel_exit 1
582 el1_sp_pc:
583 /*
584 * Stack or PC alignment exception handling
585 */
586 mrs x0, far_el1
587 inherit_daif pstate=x23, tmp=x2
588 mov x2, sp
589 bl do_sp_pc_abort
590 ASM_BUG()
591 el1_undef:
592 /*
593 * Undefined instruction
594 */
595 inherit_daif pstate=x23, tmp=x2
596 mov x0, sp
597 bl do_undefinstr
598 kernel_exit 1
599 el1_dbg:
600 /*
601 * Debug exception handling
602 */
603 cmp x24, #ESR_ELx_EC_BRK64 // if BRK64
604 cinc x24, x24, eq // set bit '0'
605 tbz x24, #0, el1_inv // EL1 only
606 mrs x0, far_el1
607 mov x2, sp // struct pt_regs
608 bl do_debug_exception
609 kernel_exit 1
610 el1_inv:
611 // TODO: add support for undefined instructions in kernel mode
612 inherit_daif pstate=x23, tmp=x2
613 mov x0, sp
614 mov x2, x1
615 mov x1, #BAD_SYNC
616 bl bad_mode
617 ASM_BUG()
618 ENDPROC(el1_sync)
619
620 .align 6
621 el1_irq:
622 kernel_entry 1
623 enable_da_f
624 #ifdef CONFIG_TRACE_IRQFLAGS
625 bl trace_hardirqs_off
626 #endif
627
628 irq_handler
629
630 #ifdef CONFIG_PREEMPT
631 ldr w24, [tsk, #TSK_TI_PREEMPT] // get preempt count
632 cbnz w24, 1f // preempt count != 0
633 ldr x0, [tsk, #TSK_TI_FLAGS] // get flags
634 tbz x0, #TIF_NEED_RESCHED, 1f // needs rescheduling?
635 bl el1_preempt
636 1:
637 #endif
638 #ifdef CONFIG_TRACE_IRQFLAGS
639 bl trace_hardirqs_on
640 #endif
641 kernel_exit 1
642 ENDPROC(el1_irq)
643
644 #ifdef CONFIG_PREEMPT
645 el1_preempt:
646 mov x24, lr
647 1: bl preempt_schedule_irq // irq en/disable is done inside
648 ldr x0, [tsk, #TSK_TI_FLAGS] // get new tasks TI_FLAGS
649 tbnz x0, #TIF_NEED_RESCHED, 1b // needs rescheduling?
650 ret x24
651 #endif
652
653 /*
654 * EL0 mode handlers.
655 */
656 .align 6
657 el0_sync:
658 kernel_entry 0
659 mrs x25, esr_el1 // read the syndrome register
660 lsr x24, x25, #ESR_ELx_EC_SHIFT // exception class
661 cmp x24, #ESR_ELx_EC_SVC64 // SVC in 64-bit state
662 b.eq el0_svc
663 cmp x24, #ESR_ELx_EC_DABT_LOW // data abort in EL0
664 b.eq el0_da
665 cmp x24, #ESR_ELx_EC_IABT_LOW // instruction abort in EL0
666 b.eq el0_ia
667 cmp x24, #ESR_ELx_EC_FP_ASIMD // FP/ASIMD access
668 b.eq el0_fpsimd_acc
669 cmp x24, #ESR_ELx_EC_SVE // SVE access
670 b.eq el0_sve_acc
671 cmp x24, #ESR_ELx_EC_FP_EXC64 // FP/ASIMD exception
672 b.eq el0_fpsimd_exc
673 cmp x24, #ESR_ELx_EC_SYS64 // configurable trap
674 b.eq el0_sys
675 cmp x24, #ESR_ELx_EC_SP_ALIGN // stack alignment exception
676 b.eq el0_sp_pc
677 cmp x24, #ESR_ELx_EC_PC_ALIGN // pc alignment exception
678 b.eq el0_sp_pc
679 cmp x24, #ESR_ELx_EC_UNKNOWN // unknown exception in EL0
680 b.eq el0_undef
681 cmp x24, #ESR_ELx_EC_BREAKPT_LOW // debug exception in EL0
682 b.ge el0_dbg
683 b el0_inv
684
685 #ifdef CONFIG_COMPAT
686 .align 6
687 el0_sync_compat:
688 kernel_entry 0, 32
689 mrs x25, esr_el1 // read the syndrome register
690 lsr x24, x25, #ESR_ELx_EC_SHIFT // exception class
691 cmp x24, #ESR_ELx_EC_SVC32 // SVC in 32-bit state
692 b.eq el0_svc_compat
693 cmp x24, #ESR_ELx_EC_DABT_LOW // data abort in EL0
694 b.eq el0_da
695 cmp x24, #ESR_ELx_EC_IABT_LOW // instruction abort in EL0
696 b.eq el0_ia
697 cmp x24, #ESR_ELx_EC_FP_ASIMD // FP/ASIMD access
698 b.eq el0_fpsimd_acc
699 cmp x24, #ESR_ELx_EC_FP_EXC32 // FP/ASIMD exception
700 b.eq el0_fpsimd_exc
701 cmp x24, #ESR_ELx_EC_PC_ALIGN // pc alignment exception
702 b.eq el0_sp_pc
703 cmp x24, #ESR_ELx_EC_UNKNOWN // unknown exception in EL0
704 b.eq el0_undef
705 cmp x24, #ESR_ELx_EC_CP15_32 // CP15 MRC/MCR trap
706 b.eq el0_undef
707 cmp x24, #ESR_ELx_EC_CP15_64 // CP15 MRRC/MCRR trap
708 b.eq el0_undef
709 cmp x24, #ESR_ELx_EC_CP14_MR // CP14 MRC/MCR trap
710 b.eq el0_undef
711 cmp x24, #ESR_ELx_EC_CP14_LS // CP14 LDC/STC trap
712 b.eq el0_undef
713 cmp x24, #ESR_ELx_EC_CP14_64 // CP14 MRRC/MCRR trap
714 b.eq el0_undef
715 cmp x24, #ESR_ELx_EC_BREAKPT_LOW // debug exception in EL0
716 b.ge el0_dbg
717 b el0_inv
718 el0_svc_compat:
719 /*
720 * AArch32 syscall handling
721 */
722 ldr x16, [tsk, #TSK_TI_FLAGS] // load thread flags
723 adrp stbl, compat_sys_call_table // load compat syscall table pointer
724 mov wscno, w7 // syscall number in w7 (r7)
725 mov wsc_nr, #__NR_compat_syscalls
726 b el0_svc_naked
727
728 .align 6
729 el0_irq_compat:
730 kernel_entry 0, 32
731 b el0_irq_naked
732
733 el0_error_compat:
734 kernel_entry 0, 32
735 b el0_error_naked
736 #endif
737
738 el0_da:
739 /*
740 * Data abort handling
741 */
742 mrs x26, far_el1
743 enable_daif
744 ct_user_exit
745 clear_address_tag x0, x26
746 mov x1, x25
747 mov x2, sp
748 bl do_mem_abort
749 b ret_to_user
750 el0_ia:
751 /*
752 * Instruction abort handling
753 */
754 mrs x26, far_el1
755 enable_da_f
756 #ifdef CONFIG_TRACE_IRQFLAGS
757 bl trace_hardirqs_off
758 #endif
759 ct_user_exit
760 mov x0, x26
761 mov x1, x25
762 mov x2, sp
763 bl do_el0_ia_bp_hardening
764 b ret_to_user
765 el0_fpsimd_acc:
766 /*
767 * Floating Point or Advanced SIMD access
768 */
769 enable_daif
770 ct_user_exit
771 mov x0, x25
772 mov x1, sp
773 bl do_fpsimd_acc
774 b ret_to_user
775 el0_sve_acc:
776 /*
777 * Scalable Vector Extension access
778 */
779 enable_daif
780 ct_user_exit
781 mov x0, x25
782 mov x1, sp
783 bl do_sve_acc
784 b ret_to_user
785 el0_fpsimd_exc:
786 /*
787 * Floating Point, Advanced SIMD or SVE exception
788 */
789 enable_daif
790 ct_user_exit
791 mov x0, x25
792 mov x1, sp
793 bl do_fpsimd_exc
794 b ret_to_user
795 el0_sp_pc:
796 /*
797 * Stack or PC alignment exception handling
798 */
799 mrs x26, far_el1
800 enable_da_f
801 #ifdef CONFIG_TRACE_IRQFLAGS
802 bl trace_hardirqs_off
803 #endif
804 ct_user_exit
805 mov x0, x26
806 mov x1, x25
807 mov x2, sp
808 bl do_sp_pc_abort
809 b ret_to_user
810 el0_undef:
811 /*
812 * Undefined instruction
813 */
814 enable_daif
815 ct_user_exit
816 mov x0, sp
817 bl do_undefinstr
818 b ret_to_user
819 el0_sys:
820 /*
821 * System instructions, for trapped cache maintenance instructions
822 */
823 enable_daif
824 ct_user_exit
825 mov x0, x25
826 mov x1, sp
827 bl do_sysinstr
828 b ret_to_user
829 el0_dbg:
830 /*
831 * Debug exception handling
832 */
833 tbnz x24, #0, el0_inv // EL0 only
834 mrs x0, far_el1
835 mov x1, x25
836 mov x2, sp
837 bl do_debug_exception
838 enable_da_f
839 ct_user_exit
840 b ret_to_user
841 el0_inv:
842 enable_daif
843 ct_user_exit
844 mov x0, sp
845 mov x1, #BAD_SYNC
846 mov x2, x25
847 bl bad_el0_sync
848 b ret_to_user
849 ENDPROC(el0_sync)
850
851 .align 6
852 el0_irq:
853 kernel_entry 0
854 el0_irq_naked:
855 enable_da_f
856 #ifdef CONFIG_TRACE_IRQFLAGS
857 bl trace_hardirqs_off
858 #endif
859
860 ct_user_exit
861 #ifdef CONFIG_HARDEN_BRANCH_PREDICTOR
862 tbz x22, #55, 1f
863 bl do_el0_irq_bp_hardening
864 1:
865 #endif
866 irq_handler
867
868 #ifdef CONFIG_TRACE_IRQFLAGS
869 bl trace_hardirqs_on
870 #endif
871 b ret_to_user
872 ENDPROC(el0_irq)
873
874 el1_error:
875 kernel_entry 1
876 mrs x1, esr_el1
877 enable_dbg
878 mov x0, sp
879 bl do_serror
880 kernel_exit 1
881 ENDPROC(el1_error)
882
883 el0_error:
884 kernel_entry 0
885 el0_error_naked:
886 mrs x1, esr_el1
887 enable_dbg
888 mov x0, sp
889 bl do_serror
890 enable_da_f
891 ct_user_exit
892 b ret_to_user
893 ENDPROC(el0_error)
894
895
896 /*
897 * This is the fast syscall return path. We do as little as possible here,
898 * and this includes saving x0 back into the kernel stack.
899 */
900 ret_fast_syscall:
901 disable_daif
902 str x0, [sp, #S_X0] // returned x0
903 ldr x1, [tsk, #TSK_TI_FLAGS] // re-check for syscall tracing
904 and x2, x1, #_TIF_SYSCALL_WORK
905 cbnz x2, ret_fast_syscall_trace
906 and x2, x1, #_TIF_WORK_MASK
907 cbnz x2, work_pending
908 enable_step_tsk x1, x2
909 kernel_exit 0
910 ret_fast_syscall_trace:
911 enable_daif
912 b __sys_trace_return_skipped // we already saved x0
913
914 /*
915 * Ok, we need to do extra processing, enter the slow path.
916 */
917 work_pending:
918 mov x0, sp // 'regs'
919 bl do_notify_resume
920 #ifdef CONFIG_TRACE_IRQFLAGS
921 bl trace_hardirqs_on // enabled while in userspace
922 #endif
923 ldr x1, [tsk, #TSK_TI_FLAGS] // re-check for single-step
924 b finish_ret_to_user
925 /*
926 * "slow" syscall return path.
927 */
928 ret_to_user:
929 disable_daif
930 ldr x1, [tsk, #TSK_TI_FLAGS]
931 and x2, x1, #_TIF_WORK_MASK
932 cbnz x2, work_pending
933 finish_ret_to_user:
934 enable_step_tsk x1, x2
935 kernel_exit 0
936 ENDPROC(ret_to_user)
937
938 /*
939 * SVC handler.
940 */
941 .align 6
942 el0_svc:
943 ldr x16, [tsk, #TSK_TI_FLAGS] // load thread flags
944 adrp stbl, sys_call_table // load syscall table pointer
945 mov wscno, w8 // syscall number in w8
946 mov wsc_nr, #__NR_syscalls
947
948 #ifdef CONFIG_ARM64_SVE
949 alternative_if_not ARM64_SVE
950 b el0_svc_naked
951 alternative_else_nop_endif
952 tbz x16, #TIF_SVE, el0_svc_naked // Skip unless TIF_SVE set:
953 bic x16, x16, #_TIF_SVE // discard SVE state
954 str x16, [tsk, #TSK_TI_FLAGS]
955
956 /*
957 * task_fpsimd_load() won't be called to update CPACR_EL1 in
958 * ret_to_user unless TIF_FOREIGN_FPSTATE is still set, which only
959 * happens if a context switch or kernel_neon_begin() or context
960 * modification (sigreturn, ptrace) intervenes.
961 * So, ensure that CPACR_EL1 is already correct for the fast-path case:
962 */
963 mrs x9, cpacr_el1
964 bic x9, x9, #CPACR_EL1_ZEN_EL0EN // disable SVE for el0
965 msr cpacr_el1, x9 // synchronised by eret to el0
966 #endif
967
968 el0_svc_naked: // compat entry point
969 stp x0, xscno, [sp, #S_ORIG_X0] // save the original x0 and syscall number
970 enable_daif
971 ct_user_exit 1
972
973 tst x16, #_TIF_SYSCALL_WORK // check for syscall hooks
974 b.ne __sys_trace
975 cmp wscno, wsc_nr // check upper syscall limit
976 b.hs ni_sys
977 mask_nospec64 xscno, xsc_nr, x19 // enforce bounds for syscall number
978 ldr x16, [stbl, xscno, lsl #3] // address in the syscall table
979 blr x16 // call sys_* routine
980 b ret_fast_syscall
981 ni_sys:
982 mov x0, sp
983 bl do_ni_syscall
984 b ret_fast_syscall
985 ENDPROC(el0_svc)
986
987 /*
988 * This is the really slow path. We're going to be doing context
989 * switches, and waiting for our parent to respond.
990 */
991 __sys_trace:
992 cmp wscno, #NO_SYSCALL // user-issued syscall(-1)?
993 b.ne 1f
994 mov x0, #-ENOSYS // set default errno if so
995 str x0, [sp, #S_X0]
996 1: mov x0, sp
997 bl syscall_trace_enter
998 cmp w0, #NO_SYSCALL // skip the syscall?
999 b.eq __sys_trace_return_skipped
1000 mov wscno, w0 // syscall number (possibly new)
1001 mov x1, sp // pointer to regs
1002 cmp wscno, wsc_nr // check upper syscall limit
1003 b.hs __ni_sys_trace
1004 ldp x0, x1, [sp] // restore the syscall args
1005 ldp x2, x3, [sp, #S_X2]
1006 ldp x4, x5, [sp, #S_X4]
1007 ldp x6, x7, [sp, #S_X6]
1008 ldr x16, [stbl, xscno, lsl #3] // address in the syscall table
1009 blr x16 // call sys_* routine
1010
1011 __sys_trace_return:
1012 str x0, [sp, #S_X0] // save returned x0
1013 __sys_trace_return_skipped:
1014 mov x0, sp
1015 bl syscall_trace_exit
1016 b ret_to_user
1017
1018 __ni_sys_trace:
1019 mov x0, sp
1020 bl do_ni_syscall
1021 b __sys_trace_return
1022
1023 .popsection // .entry.text
1024
1025 #ifdef CONFIG_UNMAP_KERNEL_AT_EL0
1026 /*
1027 * Exception vectors trampoline.
1028 */
1029 .pushsection ".entry.tramp.text", "ax"
1030
1031 .macro tramp_map_kernel, tmp
1032 mrs \tmp, ttbr1_el1
1033 sub \tmp, \tmp, #(SWAPPER_DIR_SIZE + RESERVED_TTBR0_SIZE)
1034 bic \tmp, \tmp, #USER_ASID_FLAG
1035 msr ttbr1_el1, \tmp
1036 #ifdef CONFIG_QCOM_FALKOR_ERRATUM_1003
1037 alternative_if ARM64_WORKAROUND_QCOM_FALKOR_E1003
1038 /* ASID already in \tmp[63:48] */
1039 movk \tmp, #:abs_g2_nc:(TRAMP_VALIAS >> 12)
1040 movk \tmp, #:abs_g1_nc:(TRAMP_VALIAS >> 12)
1041 /* 2MB boundary containing the vectors, so we nobble the walk cache */
1042 movk \tmp, #:abs_g0_nc:((TRAMP_VALIAS & ~(SZ_2M - 1)) >> 12)
1043 isb
1044 tlbi vae1, \tmp
1045 dsb nsh
1046 alternative_else_nop_endif
1047 #endif /* CONFIG_QCOM_FALKOR_ERRATUM_1003 */
1048 .endm
1049
1050 .macro tramp_unmap_kernel, tmp
1051 mrs \tmp, ttbr1_el1
1052 add \tmp, \tmp, #(SWAPPER_DIR_SIZE + RESERVED_TTBR0_SIZE)
1053 orr \tmp, \tmp, #USER_ASID_FLAG
1054 msr ttbr1_el1, \tmp
1055 /*
1056 * We avoid running the post_ttbr_update_workaround here because
1057 * it's only needed by Cavium ThunderX, which requires KPTI to be
1058 * disabled.
1059 */
1060 .endm
1061
1062 .macro tramp_ventry, regsize = 64
1063 .align 7
1064 1:
1065 .if \regsize == 64
1066 msr tpidrro_el0, x30 // Restored in kernel_ventry
1067 .endif
1068 /*
1069 * Defend against branch aliasing attacks by pushing a dummy
1070 * entry onto the return stack and using a RET instruction to
1071 * enter the full-fat kernel vectors.
1072 */
1073 bl 2f
1074 b .
1075 2:
1076 tramp_map_kernel x30
1077 #ifdef CONFIG_RANDOMIZE_BASE
1078 adr x30, tramp_vectors + PAGE_SIZE
1079 alternative_insn isb, nop, ARM64_WORKAROUND_QCOM_FALKOR_E1003
1080 ldr x30, [x30]
1081 #else
1082 ldr x30, =vectors
1083 #endif
1084 prfm plil1strm, [x30, #(1b - tramp_vectors)]
1085 msr vbar_el1, x30
1086 add x30, x30, #(1b - tramp_vectors)
1087 isb
1088 ret
1089 .endm
1090
1091 .macro tramp_exit, regsize = 64
1092 adr x30, tramp_vectors
1093 msr vbar_el1, x30
1094 tramp_unmap_kernel x30
1095 .if \regsize == 64
1096 mrs x30, far_el1
1097 .endif
1098 eret
1099 .endm
1100
1101 .align 11
1102 ENTRY(tramp_vectors)
1103 .space 0x400
1104
1105 tramp_ventry
1106 tramp_ventry
1107 tramp_ventry
1108 tramp_ventry
1109
1110 tramp_ventry 32
1111 tramp_ventry 32
1112 tramp_ventry 32
1113 tramp_ventry 32
1114 END(tramp_vectors)
1115
1116 ENTRY(tramp_exit_native)
1117 tramp_exit
1118 END(tramp_exit_native)
1119
1120 ENTRY(tramp_exit_compat)
1121 tramp_exit 32
1122 END(tramp_exit_compat)
1123
1124 .ltorg
1125 .popsection // .entry.tramp.text
1126 #ifdef CONFIG_RANDOMIZE_BASE
1127 .pushsection ".rodata", "a"
1128 .align PAGE_SHIFT
1129 .globl __entry_tramp_data_start
1130 __entry_tramp_data_start:
1131 .quad vectors
1132 .popsection // .rodata
1133 #endif /* CONFIG_RANDOMIZE_BASE */
1134 #endif /* CONFIG_UNMAP_KERNEL_AT_EL0 */
1135
1136 /*
1137 * Special system call wrappers.
1138 */
1139 ENTRY(sys_rt_sigreturn_wrapper)
1140 mov x0, sp
1141 b sys_rt_sigreturn
1142 ENDPROC(sys_rt_sigreturn_wrapper)
1143
1144 /*
1145 * Register switch for AArch64. The callee-saved registers need to be saved
1146 * and restored. On entry:
1147 * x0 = previous task_struct (must be preserved across the switch)
1148 * x1 = next task_struct
1149 * Previous and next are guaranteed not to be the same.
1150 *
1151 */
1152 ENTRY(cpu_switch_to)
1153 mov x10, #THREAD_CPU_CONTEXT
1154 add x8, x0, x10
1155 mov x9, sp
1156 stp x19, x20, [x8], #16 // store callee-saved registers
1157 stp x21, x22, [x8], #16
1158 stp x23, x24, [x8], #16
1159 stp x25, x26, [x8], #16
1160 stp x27, x28, [x8], #16
1161 stp x29, x9, [x8], #16
1162 str lr, [x8]
1163 add x8, x1, x10
1164 ldp x19, x20, [x8], #16 // restore callee-saved registers
1165 ldp x21, x22, [x8], #16
1166 ldp x23, x24, [x8], #16
1167 ldp x25, x26, [x8], #16
1168 ldp x27, x28, [x8], #16
1169 ldp x29, x9, [x8], #16
1170 ldr lr, [x8]
1171 mov sp, x9
1172 msr sp_el0, x1
1173 ret
1174 ENDPROC(cpu_switch_to)
1175 NOKPROBE(cpu_switch_to)
1176
1177 /*
1178 * This is how we return from a fork.
1179 */
1180 ENTRY(ret_from_fork)
1181 bl schedule_tail
1182 cbz x19, 1f // not a kernel thread
1183 mov x0, x20
1184 blr x19
1185 1: get_thread_info tsk
1186 b ret_to_user
1187 ENDPROC(ret_from_fork)
1188 NOKPROBE(ret_from_fork)
1189
1190 #ifdef CONFIG_ARM_SDE_INTERFACE
1191
1192 #include <asm/sdei.h>
1193 #include <uapi/linux/arm_sdei.h>
1194
1195 .macro sdei_handler_exit exit_mode
1196 /* On success, this call never returns... */
1197 cmp \exit_mode, #SDEI_EXIT_SMC
1198 b.ne 99f
1199 smc #0
1200 b .
1201 99: hvc #0
1202 b .
1203 .endm
1204
1205 #ifdef CONFIG_UNMAP_KERNEL_AT_EL0
1206 /*
1207 * The regular SDEI entry point may have been unmapped along with the rest of
1208 * the kernel. This trampoline restores the kernel mapping to make the x1 memory
1209 * argument accessible.
1210 *
1211 * This clobbers x4, __sdei_handler() will restore this from firmware's
1212 * copy.
1213 */
1214 .ltorg
1215 .pushsection ".entry.tramp.text", "ax"
1216 ENTRY(__sdei_asm_entry_trampoline)
1217 mrs x4, ttbr1_el1
1218 tbz x4, #USER_ASID_BIT, 1f
1219
1220 tramp_map_kernel tmp=x4
1221 isb
1222 mov x4, xzr
1223
1224 /*
1225 * Use reg->interrupted_regs.addr_limit to remember whether to unmap
1226 * the kernel on exit.
1227 */
1228 1: str x4, [x1, #(SDEI_EVENT_INTREGS + S_ORIG_ADDR_LIMIT)]
1229
1230 #ifdef CONFIG_RANDOMIZE_BASE
1231 adr x4, tramp_vectors + PAGE_SIZE
1232 add x4, x4, #:lo12:__sdei_asm_trampoline_next_handler
1233 ldr x4, [x4]
1234 #else
1235 ldr x4, =__sdei_asm_handler
1236 #endif
1237 br x4
1238 ENDPROC(__sdei_asm_entry_trampoline)
1239 NOKPROBE(__sdei_asm_entry_trampoline)
1240
1241 /*
1242 * Make the exit call and restore the original ttbr1_el1
1243 *
1244 * x0 & x1: setup for the exit API call
1245 * x2: exit_mode
1246 * x4: struct sdei_registered_event argument from registration time.
1247 */
1248 ENTRY(__sdei_asm_exit_trampoline)
1249 ldr x4, [x4, #(SDEI_EVENT_INTREGS + S_ORIG_ADDR_LIMIT)]
1250 cbnz x4, 1f
1251
1252 tramp_unmap_kernel tmp=x4
1253
1254 1: sdei_handler_exit exit_mode=x2
1255 ENDPROC(__sdei_asm_exit_trampoline)
1256 NOKPROBE(__sdei_asm_exit_trampoline)
1257 .ltorg
1258 .popsection // .entry.tramp.text
1259 #ifdef CONFIG_RANDOMIZE_BASE
1260 .pushsection ".rodata", "a"
1261 __sdei_asm_trampoline_next_handler:
1262 .quad __sdei_asm_handler
1263 .popsection // .rodata
1264 #endif /* CONFIG_RANDOMIZE_BASE */
1265 #endif /* CONFIG_UNMAP_KERNEL_AT_EL0 */
1266
1267 /*
1268 * Software Delegated Exception entry point.
1269 *
1270 * x0: Event number
1271 * x1: struct sdei_registered_event argument from registration time.
1272 * x2: interrupted PC
1273 * x3: interrupted PSTATE
1274 * x4: maybe clobbered by the trampoline
1275 *
1276 * Firmware has preserved x0->x17 for us, we must save/restore the rest to
1277 * follow SMC-CC. We save (or retrieve) all the registers as the handler may
1278 * want them.
1279 */
1280 ENTRY(__sdei_asm_handler)
1281 stp x2, x3, [x1, #SDEI_EVENT_INTREGS + S_PC]
1282 stp x4, x5, [x1, #SDEI_EVENT_INTREGS + 16 * 2]
1283 stp x6, x7, [x1, #SDEI_EVENT_INTREGS + 16 * 3]
1284 stp x8, x9, [x1, #SDEI_EVENT_INTREGS + 16 * 4]
1285 stp x10, x11, [x1, #SDEI_EVENT_INTREGS + 16 * 5]
1286 stp x12, x13, [x1, #SDEI_EVENT_INTREGS + 16 * 6]
1287 stp x14, x15, [x1, #SDEI_EVENT_INTREGS + 16 * 7]
1288 stp x16, x17, [x1, #SDEI_EVENT_INTREGS + 16 * 8]
1289 stp x18, x19, [x1, #SDEI_EVENT_INTREGS + 16 * 9]
1290 stp x20, x21, [x1, #SDEI_EVENT_INTREGS + 16 * 10]
1291 stp x22, x23, [x1, #SDEI_EVENT_INTREGS + 16 * 11]
1292 stp x24, x25, [x1, #SDEI_EVENT_INTREGS + 16 * 12]
1293 stp x26, x27, [x1, #SDEI_EVENT_INTREGS + 16 * 13]
1294 stp x28, x29, [x1, #SDEI_EVENT_INTREGS + 16 * 14]
1295 mov x4, sp
1296 stp lr, x4, [x1, #SDEI_EVENT_INTREGS + S_LR]
1297
1298 mov x19, x1
1299
1300 #ifdef CONFIG_VMAP_STACK
1301 /*
1302 * entry.S may have been using sp as a scratch register, find whether
1303 * this is a normal or critical event and switch to the appropriate
1304 * stack for this CPU.
1305 */
1306 ldrb w4, [x19, #SDEI_EVENT_PRIORITY]
1307 cbnz w4, 1f
1308 ldr_this_cpu dst=x5, sym=sdei_stack_normal_ptr, tmp=x6
1309 b 2f
1310 1: ldr_this_cpu dst=x5, sym=sdei_stack_critical_ptr, tmp=x6
1311 2: mov x6, #SDEI_STACK_SIZE
1312 add x5, x5, x6
1313 mov sp, x5
1314 #endif
1315
1316 /*
1317 * We may have interrupted userspace, or a guest, or exit-from or
1318 * return-to either of these. We can't trust sp_el0, restore it.
1319 */
1320 mrs x28, sp_el0
1321 ldr_this_cpu dst=x0, sym=__entry_task, tmp=x1
1322 msr sp_el0, x0
1323
1324 /* If we interrupted the kernel point to the previous stack/frame. */
1325 and x0, x3, #0xc
1326 mrs x1, CurrentEL
1327 cmp x0, x1
1328 csel x29, x29, xzr, eq // fp, or zero
1329 csel x4, x2, xzr, eq // elr, or zero
1330
1331 stp x29, x4, [sp, #-16]!
1332 mov x29, sp
1333
1334 add x0, x19, #SDEI_EVENT_INTREGS
1335 mov x1, x19
1336 bl __sdei_handler
1337
1338 msr sp_el0, x28
1339 /* restore regs >x17 that we clobbered */
1340 mov x4, x19 // keep x4 for __sdei_asm_exit_trampoline
1341 ldp x28, x29, [x4, #SDEI_EVENT_INTREGS + 16 * 14]
1342 ldp x18, x19, [x4, #SDEI_EVENT_INTREGS + 16 * 9]
1343 ldp lr, x1, [x4, #SDEI_EVENT_INTREGS + S_LR]
1344 mov sp, x1
1345
1346 mov x1, x0 // address to complete_and_resume
1347 /* x0 = (x0 <= 1) ? EVENT_COMPLETE:EVENT_COMPLETE_AND_RESUME */
1348 cmp x0, #1
1349 mov_q x2, SDEI_1_0_FN_SDEI_EVENT_COMPLETE
1350 mov_q x3, SDEI_1_0_FN_SDEI_EVENT_COMPLETE_AND_RESUME
1351 csel x0, x2, x3, ls
1352
1353 ldr_l x2, sdei_exit_mode
1354
1355 alternative_if_not ARM64_UNMAP_KERNEL_AT_EL0
1356 sdei_handler_exit exit_mode=x2
1357 alternative_else_nop_endif
1358
1359 #ifdef CONFIG_UNMAP_KERNEL_AT_EL0
1360 tramp_alias dst=x5, sym=__sdei_asm_exit_trampoline
1361 br x5
1362 #endif
1363 ENDPROC(__sdei_asm_handler)
1364 NOKPROBE(__sdei_asm_handler)
1365 #endif /* CONFIG_ARM_SDE_INTERFACE */