1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Low-level exception handling code
5 * Copyright (C) 2012 ARM Ltd.
6 * Authors: Catalin Marinas <catalin.marinas@arm.com>
7 * Will Deacon <will.deacon@arm.com>
10 #include <linux/arm-smccc.h>
11 #include <linux/init.h>
12 #include <linux/linkage.h>
14 #include <asm/alternative.h>
15 #include <asm/assembler.h>
16 #include <asm/asm-offsets.h>
17 #include <asm/asm_pointer_auth.h>
19 #include <asm/cpufeature.h>
20 #include <asm/errno.h>
23 #include <asm/memory.h>
25 #include <asm/processor.h>
26 #include <asm/ptrace.h>
28 #include <asm/thread_info.h>
29 #include <asm/asm-uaccess.h>
30 #include <asm/unistd.h>
33 * Context tracking subsystem. Used to instrument transitions
34 * between user and kernel mode.
36 .macro ct_user_exit_irqoff
37 #ifdef CONFIG_CONTEXT_TRACKING
38 bl enter_from_user_mode
43 #ifdef CONFIG_CONTEXT_TRACKING
44 bl context_tracking_user_enter
49 .irp n,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29
63 .macro kernel_ventry, el, label, regsize = 64
65 #ifdef CONFIG_UNMAP_KERNEL_AT_EL0
67 alternative_if ARM64_UNMAP_KERNEL_AT_EL0
74 alternative_else_nop_endif
78 sub sp, sp, #S_FRAME_SIZE
79 #ifdef CONFIG_VMAP_STACK
81 * Test whether the SP has overflowed, without corrupting a GPR.
82 * Task and IRQ stacks are aligned so that SP & (1 << THREAD_SHIFT)
83 * should always be zero.
85 add sp, sp, x0 // sp' = sp + x0
86 sub x0, sp, x0 // x0' = sp' - x0 = (sp + x0) - x0 = sp
87 tbnz x0, #THREAD_SHIFT, 0f
88 sub x0, sp, x0 // x0'' = sp' - x0' = (sp + x0) - sp = x0
89 sub sp, sp, x0 // sp'' = sp' - x0 = (sp + x0) - x0 = sp
94 * Either we've just detected an overflow, or we've taken an exception
95 * while on the overflow stack. Either way, we won't return to
96 * userspace, and can clobber EL0 registers to free up GPRs.
99 /* Stash the original SP (minus S_FRAME_SIZE) in tpidr_el0. */
102 /* Recover the original x0 value and stash it in tpidrro_el0 */
106 /* Switch to the overflow stack */
107 adr_this_cpu sp, overflow_stack + OVERFLOW_STACK_SIZE, x0
110 * Check whether we were already on the overflow stack. This may happen
111 * after panic() re-enables interrupts.
113 mrs x0, tpidr_el0 // sp of interrupted context
114 sub x0, sp, x0 // delta with top of overflow stack
115 tst x0, #~(OVERFLOW_STACK_SIZE - 1) // within range?
116 b.ne __bad_stack // no? -> bad stack pointer
118 /* We were already on the overflow stack. Restore sp/x0 and carry on. */
125 .macro tramp_alias, dst, sym
126 mov_q \dst, TRAMP_VALIAS
127 add \dst, \dst, #(\sym - .entry.tramp.text)
131 * This macro corrupts x0-x3. It is the caller's duty to save/restore
134 .macro apply_ssbd, state, tmp1, tmp2
135 alternative_cb spectre_v4_patch_fw_mitigation_enable
136 b .L__asm_ssbd_skip\@ // Patched to NOP
138 ldr_this_cpu \tmp2, arm64_ssbd_callback_required, \tmp1
139 cbz \tmp2, .L__asm_ssbd_skip\@
140 ldr \tmp2, [tsk, #TSK_TI_FLAGS]
141 tbnz \tmp2, #TIF_SSBD, .L__asm_ssbd_skip\@
142 mov w0, #ARM_SMCCC_ARCH_WORKAROUND_2
144 alternative_cb spectre_v4_patch_fw_mitigation_conduit
145 nop // Patched to SMC/HVC #0
150 /* Check for MTE asynchronous tag check faults */
151 .macro check_mte_async_tcf, flgs, tmp
152 #ifdef CONFIG_ARM64_MTE
153 alternative_if_not ARM64_MTE
155 alternative_else_nop_endif
156 mrs_s \tmp, SYS_TFSRE0_EL1
157 tbz \tmp, #SYS_TFSR_EL1_TF0_SHIFT, 1f
158 /* Asynchronous TCF occurred for TTBR0 access, set the TI flag */
159 orr \flgs, \flgs, #_TIF_MTE_ASYNC_FAULT
160 str \flgs, [tsk, #TSK_TI_FLAGS]
161 msr_s SYS_TFSRE0_EL1, xzr
166 /* Clear the MTE asynchronous tag check faults */
167 .macro clear_mte_async_tcf
168 #ifdef CONFIG_ARM64_MTE
169 alternative_if ARM64_MTE
171 msr_s SYS_TFSRE0_EL1, xzr
172 alternative_else_nop_endif
176 .macro kernel_entry, el, regsize = 64
178 mov w0, w0 // zero upper 32 bits of x0
180 stp x0, x1, [sp, #16 * 0]
181 stp x2, x3, [sp, #16 * 1]
182 stp x4, x5, [sp, #16 * 2]
183 stp x6, x7, [sp, #16 * 3]
184 stp x8, x9, [sp, #16 * 4]
185 stp x10, x11, [sp, #16 * 5]
186 stp x12, x13, [sp, #16 * 6]
187 stp x14, x15, [sp, #16 * 7]
188 stp x16, x17, [sp, #16 * 8]
189 stp x18, x19, [sp, #16 * 9]
190 stp x20, x21, [sp, #16 * 10]
191 stp x22, x23, [sp, #16 * 11]
192 stp x24, x25, [sp, #16 * 12]
193 stp x26, x27, [sp, #16 * 13]
194 stp x28, x29, [sp, #16 * 14]
199 ldr_this_cpu tsk, __entry_task, x20
203 * Ensure MDSCR_EL1.SS is clear, since we can unmask debug exceptions
206 ldr x19, [tsk, #TSK_TI_FLAGS]
207 disable_step_tsk x19, x20
209 /* Check for asynchronous tag check faults in user space */
210 check_mte_async_tcf x19, x22
211 apply_ssbd 1, x22, x23
213 ptrauth_keys_install_kernel tsk, x20, x22, x23
217 add x21, sp, #S_FRAME_SIZE
219 /* Save the task's original addr_limit and set USER_DS */
220 ldr x20, [tsk, #TSK_TI_ADDR_LIMIT]
221 str x20, [sp, #S_ORIG_ADDR_LIMIT]
223 str x20, [tsk, #TSK_TI_ADDR_LIMIT]
224 /* No need to reset PSTATE.UAO, hardware's already set it to 0 for us */
225 .endif /* \el == 0 */
228 stp lr, x21, [sp, #S_LR]
231 * In order to be able to dump the contents of struct pt_regs at the
232 * time the exception was taken (in case we attempt to walk the call
233 * stack later), chain it together with the stack frames.
236 stp xzr, xzr, [sp, #S_STACKFRAME]
238 stp x29, x22, [sp, #S_STACKFRAME]
240 add x29, sp, #S_STACKFRAME
242 #ifdef CONFIG_ARM64_SW_TTBR0_PAN
243 alternative_if_not ARM64_HAS_PAN
244 bl __swpan_entry_el\el
245 alternative_else_nop_endif
248 stp x22, x23, [sp, #S_PC]
250 /* Not in a syscall by default (el0_svc overwrites for real syscall) */
253 str w21, [sp, #S_SYSCALLNO]
257 alternative_if ARM64_HAS_IRQ_PRIO_MASKING
258 mrs_s x20, SYS_ICC_PMR_EL1
259 str x20, [sp, #S_PMR_SAVE]
260 alternative_else_nop_endif
262 /* Re-enable tag checking (TCO set on exception entry) */
263 #ifdef CONFIG_ARM64_MTE
264 alternative_if ARM64_MTE
266 alternative_else_nop_endif
270 * Registers that may be useful after this macro is invoked:
275 * x23 - aborted PSTATE
279 .macro kernel_exit, el
283 /* Restore the task's original addr_limit. */
284 ldr x20, [sp, #S_ORIG_ADDR_LIMIT]
285 str x20, [tsk, #TSK_TI_ADDR_LIMIT]
287 /* No need to restore UAO, it will be restored from SPSR_EL1 */
291 alternative_if ARM64_HAS_IRQ_PRIO_MASKING
292 ldr x20, [sp, #S_PMR_SAVE]
293 msr_s SYS_ICC_PMR_EL1, x20
294 mrs_s x21, SYS_ICC_CTLR_EL1
295 tbz x21, #6, .L__skip_pmr_sync\@ // Check for ICC_CTLR_EL1.PMHE
296 dsb sy // Ensure priority change is seen by redistributor
298 alternative_else_nop_endif
300 ldp x21, x22, [sp, #S_PC] // load ELR, SPSR
305 #ifdef CONFIG_ARM64_SW_TTBR0_PAN
306 alternative_if_not ARM64_HAS_PAN
307 bl __swpan_exit_el\el
308 alternative_else_nop_endif
312 ldr x23, [sp, #S_SP] // load return stack pointer
314 tst x22, #PSR_MODE32_BIT // native task?
317 #ifdef CONFIG_ARM64_ERRATUM_845719
318 alternative_if ARM64_WORKAROUND_845719
319 #ifdef CONFIG_PID_IN_CONTEXTIDR
320 mrs x29, contextidr_el1
321 msr contextidr_el1, x29
323 msr contextidr_el1, xzr
325 alternative_else_nop_endif
330 /* No kernel C function calls after this as user keys are set. */
331 ptrauth_keys_install_user tsk, x0, x1, x2
336 msr elr_el1, x21 // set up the return data
338 ldp x0, x1, [sp, #16 * 0]
339 ldp x2, x3, [sp, #16 * 1]
340 ldp x4, x5, [sp, #16 * 2]
341 ldp x6, x7, [sp, #16 * 3]
342 ldp x8, x9, [sp, #16 * 4]
343 ldp x10, x11, [sp, #16 * 5]
344 ldp x12, x13, [sp, #16 * 6]
345 ldp x14, x15, [sp, #16 * 7]
346 ldp x16, x17, [sp, #16 * 8]
347 ldp x18, x19, [sp, #16 * 9]
348 ldp x20, x21, [sp, #16 * 10]
349 ldp x22, x23, [sp, #16 * 11]
350 ldp x24, x25, [sp, #16 * 12]
351 ldp x26, x27, [sp, #16 * 13]
352 ldp x28, x29, [sp, #16 * 14]
354 add sp, sp, #S_FRAME_SIZE // restore sp
357 alternative_insn eret, nop, ARM64_UNMAP_KERNEL_AT_EL0
358 #ifdef CONFIG_UNMAP_KERNEL_AT_EL0
361 tramp_alias x30, tramp_exit_native
364 tramp_alias x30, tramp_exit_compat
373 #ifdef CONFIG_ARM64_SW_TTBR0_PAN
375 * Set the TTBR0 PAN bit in SPSR. When the exception is taken from
376 * EL0, there is no need to check the state of TTBR0_EL1 since
377 * accesses are always enabled.
378 * Note that the meaning of this bit differs from the ARMv8.1 PAN
379 * feature as all TTBR0_EL1 accesses are disabled, not just those to
382 SYM_CODE_START_LOCAL(__swpan_entry_el1)
384 tst x21, #TTBR_ASID_MASK // Check for the reserved ASID
385 orr x23, x23, #PSR_PAN_BIT // Set the emulated PAN in the saved SPSR
386 b.eq 1f // TTBR0 access already disabled
387 and x23, x23, #~PSR_PAN_BIT // Clear the emulated PAN in the saved SPSR
388 SYM_INNER_LABEL(__swpan_entry_el0, SYM_L_LOCAL)
389 __uaccess_ttbr0_disable x21
391 SYM_CODE_END(__swpan_entry_el1)
394 * Restore access to TTBR0_EL1. If returning to EL0, no need for SPSR
397 SYM_CODE_START_LOCAL(__swpan_exit_el1)
398 tbnz x22, #22, 1f // Skip re-enabling TTBR0 access if the PSR_PAN_BIT is set
399 __uaccess_ttbr0_enable x0, x1
400 1: and x22, x22, #~PSR_PAN_BIT // ARMv8.0 CPUs do not understand this bit
402 SYM_CODE_END(__swpan_exit_el1)
404 SYM_CODE_START_LOCAL(__swpan_exit_el0)
405 __uaccess_ttbr0_enable x0, x1
407 * Enable errata workarounds only if returning to user. The only
408 * workaround currently required for TTBR0_EL1 changes are for the
409 * Cavium erratum 27456 (broadcast TLBI instructions may cause I-cache
412 b post_ttbr_update_workaround
413 SYM_CODE_END(__swpan_exit_el0)
416 .macro irq_stack_entry
417 mov x19, sp // preserve the original sp
418 #ifdef CONFIG_SHADOW_CALL_STACK
419 mov x24, scs_sp // preserve the original shadow stack
423 * Compare sp with the base of the task stack.
424 * If the top ~(THREAD_SIZE - 1) bits match, we are on a task stack,
425 * and should switch to the irq stack.
427 ldr x25, [tsk, TSK_STACK]
429 and x25, x25, #~(THREAD_SIZE - 1)
432 ldr_this_cpu x25, irq_stack_ptr, x26
433 mov x26, #IRQ_STACK_SIZE
436 /* switch to the irq stack */
439 #ifdef CONFIG_SHADOW_CALL_STACK
440 /* also switch to the irq shadow stack */
441 adr_this_cpu scs_sp, irq_shadow_call_stack, x26
448 * The callee-saved regs (x19-x29) should be preserved between
449 * irq_stack_entry and irq_stack_exit, but note that kernel_entry
450 * uses x20-x23 to store data for later use.
452 .macro irq_stack_exit
454 #ifdef CONFIG_SHADOW_CALL_STACK
459 /* GPRs used by entry code */
460 tsk .req x28 // current thread_info
463 * Interrupt handling.
466 ldr_l x1, handle_arch_irq
473 #ifdef CONFIG_ARM64_PSEUDO_NMI
475 * Set res to 0 if irqs were unmasked in interrupted context.
476 * Otherwise set res to non-0 value.
478 .macro test_irqs_unmasked res:req, pmr:req
479 alternative_if ARM64_HAS_IRQ_PRIO_MASKING
480 sub \res, \pmr, #GIC_PRIO_IRQON
487 .macro gic_prio_kentry_setup, tmp:req
488 #ifdef CONFIG_ARM64_PSEUDO_NMI
489 alternative_if ARM64_HAS_IRQ_PRIO_MASKING
490 mov \tmp, #(GIC_PRIO_PSR_I_SET | GIC_PRIO_IRQON)
491 msr_s SYS_ICC_PMR_EL1, \tmp
492 alternative_else_nop_endif
496 .macro gic_prio_irq_setup, pmr:req, tmp:req
497 #ifdef CONFIG_ARM64_PSEUDO_NMI
498 alternative_if ARM64_HAS_IRQ_PRIO_MASKING
499 orr \tmp, \pmr, #GIC_PRIO_PSR_I_SET
500 msr_s SYS_ICC_PMR_EL1, \tmp
501 alternative_else_nop_endif
510 .pushsection ".entry.text", "ax"
513 SYM_CODE_START(vectors)
514 kernel_ventry 1, sync_invalid // Synchronous EL1t
515 kernel_ventry 1, irq_invalid // IRQ EL1t
516 kernel_ventry 1, fiq_invalid // FIQ EL1t
517 kernel_ventry 1, error_invalid // Error EL1t
519 kernel_ventry 1, sync // Synchronous EL1h
520 kernel_ventry 1, irq // IRQ EL1h
521 kernel_ventry 1, fiq_invalid // FIQ EL1h
522 kernel_ventry 1, error // Error EL1h
524 kernel_ventry 0, sync // Synchronous 64-bit EL0
525 kernel_ventry 0, irq // IRQ 64-bit EL0
526 kernel_ventry 0, fiq_invalid // FIQ 64-bit EL0
527 kernel_ventry 0, error // Error 64-bit EL0
530 kernel_ventry 0, sync_compat, 32 // Synchronous 32-bit EL0
531 kernel_ventry 0, irq_compat, 32 // IRQ 32-bit EL0
532 kernel_ventry 0, fiq_invalid_compat, 32 // FIQ 32-bit EL0
533 kernel_ventry 0, error_compat, 32 // Error 32-bit EL0
535 kernel_ventry 0, sync_invalid, 32 // Synchronous 32-bit EL0
536 kernel_ventry 0, irq_invalid, 32 // IRQ 32-bit EL0
537 kernel_ventry 0, fiq_invalid, 32 // FIQ 32-bit EL0
538 kernel_ventry 0, error_invalid, 32 // Error 32-bit EL0
540 SYM_CODE_END(vectors)
542 #ifdef CONFIG_VMAP_STACK
544 * We detected an overflow in kernel_ventry, which switched to the
545 * overflow stack. Stash the exception regs, and head to our overflow
549 /* Restore the original x0 value */
553 * Store the original GPRs to the new stack. The orginal SP (minus
554 * S_FRAME_SIZE) was stashed in tpidr_el0 by kernel_ventry.
556 sub sp, sp, #S_FRAME_SIZE
559 add x0, x0, #S_FRAME_SIZE
562 /* Stash the regs for handle_bad_stack */
568 #endif /* CONFIG_VMAP_STACK */
571 * Invalid mode handlers
573 .macro inv_entry, el, reason, regsize = 64
574 kernel_entry \el, \regsize
582 SYM_CODE_START_LOCAL(el0_sync_invalid)
583 inv_entry 0, BAD_SYNC
584 SYM_CODE_END(el0_sync_invalid)
586 SYM_CODE_START_LOCAL(el0_irq_invalid)
588 SYM_CODE_END(el0_irq_invalid)
590 SYM_CODE_START_LOCAL(el0_fiq_invalid)
592 SYM_CODE_END(el0_fiq_invalid)
594 SYM_CODE_START_LOCAL(el0_error_invalid)
595 inv_entry 0, BAD_ERROR
596 SYM_CODE_END(el0_error_invalid)
599 SYM_CODE_START_LOCAL(el0_fiq_invalid_compat)
600 inv_entry 0, BAD_FIQ, 32
601 SYM_CODE_END(el0_fiq_invalid_compat)
604 SYM_CODE_START_LOCAL(el1_sync_invalid)
605 inv_entry 1, BAD_SYNC
606 SYM_CODE_END(el1_sync_invalid)
608 SYM_CODE_START_LOCAL(el1_irq_invalid)
610 SYM_CODE_END(el1_irq_invalid)
612 SYM_CODE_START_LOCAL(el1_fiq_invalid)
614 SYM_CODE_END(el1_fiq_invalid)
616 SYM_CODE_START_LOCAL(el1_error_invalid)
617 inv_entry 1, BAD_ERROR
618 SYM_CODE_END(el1_error_invalid)
624 SYM_CODE_START_LOCAL_NOALIGN(el1_sync)
629 SYM_CODE_END(el1_sync)
632 SYM_CODE_START_LOCAL_NOALIGN(el1_irq)
634 gic_prio_irq_setup pmr=x20, tmp=x1
637 #ifdef CONFIG_ARM64_PSEUDO_NMI
638 test_irqs_unmasked res=x0, pmr=x20
644 #ifdef CONFIG_TRACE_IRQFLAGS
645 bl trace_hardirqs_off
650 #ifdef CONFIG_PREEMPTION
651 ldr x24, [tsk, #TSK_TI_PREEMPT] // get preempt count
652 alternative_if ARM64_HAS_IRQ_PRIO_MASKING
654 * DA_F were cleared at start of handling. If anything is set in DAIF,
655 * we come back from an NMI, so skip preemption
659 alternative_else_nop_endif
660 cbnz x24, 1f // preempt count != 0 || NMI return path
661 bl arm64_preempt_schedule_irq // irq en/disable is done inside
665 #ifdef CONFIG_ARM64_PSEUDO_NMI
667 * When using IRQ priority masking, we can get spurious interrupts while
668 * PMR is set to GIC_PRIO_IRQOFF. An NMI might also have occurred in a
669 * section with interrupts disabled. Skip tracing in those cases.
671 test_irqs_unmasked res=x0, pmr=x20
677 #ifdef CONFIG_TRACE_IRQFLAGS
678 #ifdef CONFIG_ARM64_PSEUDO_NMI
679 test_irqs_unmasked res=x0, pmr=x20
687 SYM_CODE_END(el1_irq)
693 SYM_CODE_START_LOCAL_NOALIGN(el0_sync)
698 SYM_CODE_END(el0_sync)
702 SYM_CODE_START_LOCAL_NOALIGN(el0_sync_compat)
705 bl el0_sync_compat_handler
707 SYM_CODE_END(el0_sync_compat)
710 SYM_CODE_START_LOCAL_NOALIGN(el0_irq_compat)
713 SYM_CODE_END(el0_irq_compat)
715 SYM_CODE_START_LOCAL_NOALIGN(el0_error_compat)
718 SYM_CODE_END(el0_error_compat)
722 SYM_CODE_START_LOCAL_NOALIGN(el0_irq)
725 gic_prio_irq_setup pmr=x20, tmp=x0
729 #ifdef CONFIG_TRACE_IRQFLAGS
730 bl trace_hardirqs_off
734 bl do_el0_irq_bp_hardening
738 #ifdef CONFIG_TRACE_IRQFLAGS
742 SYM_CODE_END(el0_irq)
744 SYM_CODE_START_LOCAL(el1_error)
747 gic_prio_kentry_setup tmp=x2
752 SYM_CODE_END(el1_error)
754 SYM_CODE_START_LOCAL(el0_error)
758 gic_prio_kentry_setup tmp=x2
766 SYM_CODE_END(el0_error)
769 * "slow" syscall return path.
771 SYM_CODE_START_LOCAL(ret_to_user)
773 gic_prio_kentry_setup tmp=x3
774 ldr x1, [tsk, #TSK_TI_FLAGS]
775 and x2, x1, #_TIF_WORK_MASK
776 cbnz x2, work_pending
778 /* Ignore asynchronous tag check faults in the uaccess routines */
780 enable_step_tsk x1, x2
781 #ifdef CONFIG_GCC_PLUGIN_STACKLEAK
787 * Ok, we need to do extra processing, enter the slow path.
792 #ifdef CONFIG_TRACE_IRQFLAGS
793 bl trace_hardirqs_on // enabled while in userspace
795 ldr x1, [tsk, #TSK_TI_FLAGS] // re-check for single-step
797 SYM_CODE_END(ret_to_user)
799 .popsection // .entry.text
801 #ifdef CONFIG_UNMAP_KERNEL_AT_EL0
803 * Exception vectors trampoline.
805 .pushsection ".entry.tramp.text", "ax"
807 .macro tramp_map_kernel, tmp
809 add \tmp, \tmp, #(PAGE_SIZE + RESERVED_TTBR0_SIZE)
810 bic \tmp, \tmp, #USER_ASID_FLAG
812 #ifdef CONFIG_QCOM_FALKOR_ERRATUM_1003
813 alternative_if ARM64_WORKAROUND_QCOM_FALKOR_E1003
814 /* ASID already in \tmp[63:48] */
815 movk \tmp, #:abs_g2_nc:(TRAMP_VALIAS >> 12)
816 movk \tmp, #:abs_g1_nc:(TRAMP_VALIAS >> 12)
817 /* 2MB boundary containing the vectors, so we nobble the walk cache */
818 movk \tmp, #:abs_g0_nc:((TRAMP_VALIAS & ~(SZ_2M - 1)) >> 12)
822 alternative_else_nop_endif
823 #endif /* CONFIG_QCOM_FALKOR_ERRATUM_1003 */
826 .macro tramp_unmap_kernel, tmp
828 sub \tmp, \tmp, #(PAGE_SIZE + RESERVED_TTBR0_SIZE)
829 orr \tmp, \tmp, #USER_ASID_FLAG
832 * We avoid running the post_ttbr_update_workaround here because
833 * it's only needed by Cavium ThunderX, which requires KPTI to be
838 .macro tramp_ventry, regsize = 64
842 msr tpidrro_el0, x30 // Restored in kernel_ventry
845 * Defend against branch aliasing attacks by pushing a dummy
846 * entry onto the return stack and using a RET instruction to
847 * enter the full-fat kernel vectors.
853 #ifdef CONFIG_RANDOMIZE_BASE
854 adr x30, tramp_vectors + PAGE_SIZE
855 alternative_insn isb, nop, ARM64_WORKAROUND_QCOM_FALKOR_E1003
860 alternative_if_not ARM64_WORKAROUND_CAVIUM_TX2_219_PRFM
861 prfm plil1strm, [x30, #(1b - tramp_vectors)]
862 alternative_else_nop_endif
864 add x30, x30, #(1b - tramp_vectors)
869 .macro tramp_exit, regsize = 64
870 adr x30, tramp_vectors
872 tramp_unmap_kernel x30
881 SYM_CODE_START_NOALIGN(tramp_vectors)
893 SYM_CODE_END(tramp_vectors)
895 SYM_CODE_START(tramp_exit_native)
897 SYM_CODE_END(tramp_exit_native)
899 SYM_CODE_START(tramp_exit_compat)
901 SYM_CODE_END(tramp_exit_compat)
904 .popsection // .entry.tramp.text
905 #ifdef CONFIG_RANDOMIZE_BASE
906 .pushsection ".rodata", "a"
908 SYM_DATA_START(__entry_tramp_data_start)
910 SYM_DATA_END(__entry_tramp_data_start)
911 .popsection // .rodata
912 #endif /* CONFIG_RANDOMIZE_BASE */
913 #endif /* CONFIG_UNMAP_KERNEL_AT_EL0 */
916 * Register switch for AArch64. The callee-saved registers need to be saved
917 * and restored. On entry:
918 * x0 = previous task_struct (must be preserved across the switch)
919 * x1 = next task_struct
920 * Previous and next are guaranteed not to be the same.
923 SYM_FUNC_START(cpu_switch_to)
924 mov x10, #THREAD_CPU_CONTEXT
927 stp x19, x20, [x8], #16 // store callee-saved registers
928 stp x21, x22, [x8], #16
929 stp x23, x24, [x8], #16
930 stp x25, x26, [x8], #16
931 stp x27, x28, [x8], #16
932 stp x29, x9, [x8], #16
935 ldp x19, x20, [x8], #16 // restore callee-saved registers
936 ldp x21, x22, [x8], #16
937 ldp x23, x24, [x8], #16
938 ldp x25, x26, [x8], #16
939 ldp x27, x28, [x8], #16
940 ldp x29, x9, [x8], #16
944 ptrauth_keys_install_kernel x1, x8, x9, x10
948 SYM_FUNC_END(cpu_switch_to)
949 NOKPROBE(cpu_switch_to)
952 * This is how we return from a fork.
954 SYM_CODE_START(ret_from_fork)
956 cbz x19, 1f // not a kernel thread
959 1: get_current_task tsk
961 SYM_CODE_END(ret_from_fork)
962 NOKPROBE(ret_from_fork)
964 #ifdef CONFIG_ARM_SDE_INTERFACE
966 #include <asm/sdei.h>
967 #include <uapi/linux/arm_sdei.h>
969 .macro sdei_handler_exit exit_mode
970 /* On success, this call never returns... */
971 cmp \exit_mode, #SDEI_EXIT_SMC
979 #ifdef CONFIG_UNMAP_KERNEL_AT_EL0
981 * The regular SDEI entry point may have been unmapped along with the rest of
982 * the kernel. This trampoline restores the kernel mapping to make the x1 memory
983 * argument accessible.
985 * This clobbers x4, __sdei_handler() will restore this from firmware's
989 .pushsection ".entry.tramp.text", "ax"
990 SYM_CODE_START(__sdei_asm_entry_trampoline)
992 tbz x4, #USER_ASID_BIT, 1f
994 tramp_map_kernel tmp=x4
999 * Use reg->interrupted_regs.addr_limit to remember whether to unmap
1000 * the kernel on exit.
1002 1: str x4, [x1, #(SDEI_EVENT_INTREGS + S_ORIG_ADDR_LIMIT)]
1004 #ifdef CONFIG_RANDOMIZE_BASE
1005 adr x4, tramp_vectors + PAGE_SIZE
1006 add x4, x4, #:lo12:__sdei_asm_trampoline_next_handler
1009 ldr x4, =__sdei_asm_handler
1012 SYM_CODE_END(__sdei_asm_entry_trampoline)
1013 NOKPROBE(__sdei_asm_entry_trampoline)
1016 * Make the exit call and restore the original ttbr1_el1
1018 * x0 & x1: setup for the exit API call
1020 * x4: struct sdei_registered_event argument from registration time.
1022 SYM_CODE_START(__sdei_asm_exit_trampoline)
1023 ldr x4, [x4, #(SDEI_EVENT_INTREGS + S_ORIG_ADDR_LIMIT)]
1026 tramp_unmap_kernel tmp=x4
1028 1: sdei_handler_exit exit_mode=x2
1029 SYM_CODE_END(__sdei_asm_exit_trampoline)
1030 NOKPROBE(__sdei_asm_exit_trampoline)
1032 .popsection // .entry.tramp.text
1033 #ifdef CONFIG_RANDOMIZE_BASE
1034 .pushsection ".rodata", "a"
1035 SYM_DATA_START(__sdei_asm_trampoline_next_handler)
1036 .quad __sdei_asm_handler
1037 SYM_DATA_END(__sdei_asm_trampoline_next_handler)
1038 .popsection // .rodata
1039 #endif /* CONFIG_RANDOMIZE_BASE */
1040 #endif /* CONFIG_UNMAP_KERNEL_AT_EL0 */
1043 * Software Delegated Exception entry point.
1046 * x1: struct sdei_registered_event argument from registration time.
1047 * x2: interrupted PC
1048 * x3: interrupted PSTATE
1049 * x4: maybe clobbered by the trampoline
1051 * Firmware has preserved x0->x17 for us, we must save/restore the rest to
1052 * follow SMC-CC. We save (or retrieve) all the registers as the handler may
1055 SYM_CODE_START(__sdei_asm_handler)
1056 stp x2, x3, [x1, #SDEI_EVENT_INTREGS + S_PC]
1057 stp x4, x5, [x1, #SDEI_EVENT_INTREGS + 16 * 2]
1058 stp x6, x7, [x1, #SDEI_EVENT_INTREGS + 16 * 3]
1059 stp x8, x9, [x1, #SDEI_EVENT_INTREGS + 16 * 4]
1060 stp x10, x11, [x1, #SDEI_EVENT_INTREGS + 16 * 5]
1061 stp x12, x13, [x1, #SDEI_EVENT_INTREGS + 16 * 6]
1062 stp x14, x15, [x1, #SDEI_EVENT_INTREGS + 16 * 7]
1063 stp x16, x17, [x1, #SDEI_EVENT_INTREGS + 16 * 8]
1064 stp x18, x19, [x1, #SDEI_EVENT_INTREGS + 16 * 9]
1065 stp x20, x21, [x1, #SDEI_EVENT_INTREGS + 16 * 10]
1066 stp x22, x23, [x1, #SDEI_EVENT_INTREGS + 16 * 11]
1067 stp x24, x25, [x1, #SDEI_EVENT_INTREGS + 16 * 12]
1068 stp x26, x27, [x1, #SDEI_EVENT_INTREGS + 16 * 13]
1069 stp x28, x29, [x1, #SDEI_EVENT_INTREGS + 16 * 14]
1071 stp lr, x4, [x1, #SDEI_EVENT_INTREGS + S_LR]
1075 #if defined(CONFIG_VMAP_STACK) || defined(CONFIG_SHADOW_CALL_STACK)
1076 ldrb w4, [x19, #SDEI_EVENT_PRIORITY]
1079 #ifdef CONFIG_VMAP_STACK
1081 * entry.S may have been using sp as a scratch register, find whether
1082 * this is a normal or critical event and switch to the appropriate
1083 * stack for this CPU.
1086 ldr_this_cpu dst=x5, sym=sdei_stack_normal_ptr, tmp=x6
1088 1: ldr_this_cpu dst=x5, sym=sdei_stack_critical_ptr, tmp=x6
1089 2: mov x6, #SDEI_STACK_SIZE
1094 #ifdef CONFIG_SHADOW_CALL_STACK
1095 /* Use a separate shadow call stack for normal and critical events */
1097 adr_this_cpu dst=scs_sp, sym=sdei_shadow_call_stack_normal, tmp=x6
1099 3: adr_this_cpu dst=scs_sp, sym=sdei_shadow_call_stack_critical, tmp=x6
1104 * We may have interrupted userspace, or a guest, or exit-from or
1105 * return-to either of these. We can't trust sp_el0, restore it.
1108 ldr_this_cpu dst=x0, sym=__entry_task, tmp=x1
1111 /* If we interrupted the kernel point to the previous stack/frame. */
1115 csel x29, x29, xzr, eq // fp, or zero
1116 csel x4, x2, xzr, eq // elr, or zero
1118 stp x29, x4, [sp, #-16]!
1121 add x0, x19, #SDEI_EVENT_INTREGS
1126 /* restore regs >x17 that we clobbered */
1127 mov x4, x19 // keep x4 for __sdei_asm_exit_trampoline
1128 ldp x28, x29, [x4, #SDEI_EVENT_INTREGS + 16 * 14]
1129 ldp x18, x19, [x4, #SDEI_EVENT_INTREGS + 16 * 9]
1130 ldp lr, x1, [x4, #SDEI_EVENT_INTREGS + S_LR]
1133 mov x1, x0 // address to complete_and_resume
1134 /* x0 = (x0 <= 1) ? EVENT_COMPLETE:EVENT_COMPLETE_AND_RESUME */
1136 mov_q x2, SDEI_1_0_FN_SDEI_EVENT_COMPLETE
1137 mov_q x3, SDEI_1_0_FN_SDEI_EVENT_COMPLETE_AND_RESUME
1140 ldr_l x2, sdei_exit_mode
1142 alternative_if_not ARM64_UNMAP_KERNEL_AT_EL0
1143 sdei_handler_exit exit_mode=x2
1144 alternative_else_nop_endif
1146 #ifdef CONFIG_UNMAP_KERNEL_AT_EL0
1147 tramp_alias dst=x5, sym=__sdei_asm_exit_trampoline
1150 SYM_CODE_END(__sdei_asm_handler)
1151 NOKPROBE(__sdei_asm_handler)
1152 #endif /* CONFIG_ARM_SDE_INTERFACE */