1 // SPDX-License-Identifier: GPL-2.0
3 * Exception handling code
5 * Copyright (C) 2019 ARM Ltd.
8 #include <linux/context_tracking.h>
9 #include <linux/kasan.h>
10 #include <linux/linkage.h>
11 #include <linux/lockdep.h>
12 #include <linux/ptrace.h>
13 #include <linux/sched.h>
14 #include <linux/sched/debug.h>
15 #include <linux/thread_info.h>
17 #include <asm/cpufeature.h>
18 #include <asm/daifflags.h>
20 #include <asm/exception.h>
21 #include <asm/irq_regs.h>
22 #include <asm/kprobes.h>
24 #include <asm/processor.h>
26 #include <asm/stacktrace.h>
27 #include <asm/sysreg.h>
28 #include <asm/system_misc.h>
31 * Handle IRQ/context state management when entering from kernel mode.
32 * Before this function is called it is not safe to call regular kernel code,
33 * intrumentable code, or any code which may trigger an exception.
35 * This is intended to match the logic in irqentry_enter(), handling the kernel
36 * mode transitions only.
38 static __always_inline void __enter_from_kernel_mode(struct pt_regs *regs)
40 regs->exit_rcu = false;
42 if (!IS_ENABLED(CONFIG_TINY_RCU) && is_idle_task(current)) {
43 lockdep_hardirqs_off(CALLER_ADDR0);
45 trace_hardirqs_off_finish();
47 regs->exit_rcu = true;
51 lockdep_hardirqs_off(CALLER_ADDR0);
52 rcu_irq_enter_check_tick();
53 trace_hardirqs_off_finish();
56 static void noinstr enter_from_kernel_mode(struct pt_regs *regs)
58 __enter_from_kernel_mode(regs);
59 mte_check_tfsr_entry();
60 mte_disable_tco_entry(current);
64 * Handle IRQ/context state management when exiting to kernel mode.
65 * After this function returns it is not safe to call regular kernel code,
66 * intrumentable code, or any code which may trigger an exception.
68 * This is intended to match the logic in irqentry_exit(), handling the kernel
69 * mode transitions only, and with preemption handled elsewhere.
71 static __always_inline void __exit_to_kernel_mode(struct pt_regs *regs)
73 lockdep_assert_irqs_disabled();
75 if (interrupts_enabled(regs)) {
77 trace_hardirqs_on_prepare();
78 lockdep_hardirqs_on_prepare();
80 lockdep_hardirqs_on(CALLER_ADDR0);
91 static void noinstr exit_to_kernel_mode(struct pt_regs *regs)
93 mte_check_tfsr_exit();
94 __exit_to_kernel_mode(regs);
98 * Handle IRQ/context state management when entering from user mode.
99 * Before this function is called it is not safe to call regular kernel code,
100 * intrumentable code, or any code which may trigger an exception.
102 static __always_inline void __enter_from_user_mode(void)
104 lockdep_hardirqs_off(CALLER_ADDR0);
105 CT_WARN_ON(ct_state() != CONTEXT_USER);
107 trace_hardirqs_off_finish();
108 mte_disable_tco_entry(current);
111 static __always_inline void enter_from_user_mode(struct pt_regs *regs)
113 __enter_from_user_mode();
117 * Handle IRQ/context state management when exiting to user mode.
118 * After this function returns it is not safe to call regular kernel code,
119 * intrumentable code, or any code which may trigger an exception.
121 static __always_inline void __exit_to_user_mode(void)
123 trace_hardirqs_on_prepare();
124 lockdep_hardirqs_on_prepare();
126 lockdep_hardirqs_on(CALLER_ADDR0);
129 static __always_inline void prepare_exit_to_user_mode(struct pt_regs *regs)
135 flags = read_thread_flags();
136 if (unlikely(flags & _TIF_WORK_MASK))
137 do_notify_resume(regs, flags);
140 static __always_inline void exit_to_user_mode(struct pt_regs *regs)
142 prepare_exit_to_user_mode(regs);
143 mte_check_tfsr_exit();
144 __exit_to_user_mode();
147 asmlinkage void noinstr asm_exit_to_user_mode(struct pt_regs *regs)
149 exit_to_user_mode(regs);
153 * Handle IRQ/context state management when entering an NMI from user/kernel
154 * mode. Before this function is called it is not safe to call regular kernel
155 * code, intrumentable code, or any code which may trigger an exception.
157 static void noinstr arm64_enter_nmi(struct pt_regs *regs)
159 regs->lockdep_hardirqs = lockdep_hardirqs_enabled();
162 lockdep_hardirqs_off(CALLER_ADDR0);
163 lockdep_hardirq_enter();
166 trace_hardirqs_off_finish();
171 * Handle IRQ/context state management when exiting an NMI from user/kernel
172 * mode. After this function returns it is not safe to call regular kernel
173 * code, intrumentable code, or any code which may trigger an exception.
175 static void noinstr arm64_exit_nmi(struct pt_regs *regs)
177 bool restore = regs->lockdep_hardirqs;
181 trace_hardirqs_on_prepare();
182 lockdep_hardirqs_on_prepare();
186 lockdep_hardirq_exit();
188 lockdep_hardirqs_on(CALLER_ADDR0);
193 * Handle IRQ/context state management when entering a debug exception from
194 * kernel mode. Before this function is called it is not safe to call regular
195 * kernel code, intrumentable code, or any code which may trigger an exception.
197 static void noinstr arm64_enter_el1_dbg(struct pt_regs *regs)
199 regs->lockdep_hardirqs = lockdep_hardirqs_enabled();
201 lockdep_hardirqs_off(CALLER_ADDR0);
204 trace_hardirqs_off_finish();
208 * Handle IRQ/context state management when exiting a debug exception from
209 * kernel mode. After this function returns it is not safe to call regular
210 * kernel code, intrumentable code, or any code which may trigger an exception.
212 static void noinstr arm64_exit_el1_dbg(struct pt_regs *regs)
214 bool restore = regs->lockdep_hardirqs;
217 trace_hardirqs_on_prepare();
218 lockdep_hardirqs_on_prepare();
223 lockdep_hardirqs_on(CALLER_ADDR0);
226 #ifdef CONFIG_PREEMPT_DYNAMIC
227 DEFINE_STATIC_KEY_TRUE(sk_dynamic_irqentry_exit_cond_resched);
228 #define need_irq_preemption() \
229 (static_branch_unlikely(&sk_dynamic_irqentry_exit_cond_resched))
231 #define need_irq_preemption() (IS_ENABLED(CONFIG_PREEMPTION))
234 static void __sched arm64_preempt_schedule_irq(void)
236 if (!need_irq_preemption())
240 * Note: thread_info::preempt_count includes both thread_info::count
241 * and thread_info::need_resched, and is not equivalent to
244 if (READ_ONCE(current_thread_info()->preempt_count) != 0)
248 * DAIF.DA are cleared at the start of IRQ/FIQ handling, and when GIC
249 * priority masking is used the GIC irqchip driver will clear DAIF.IF
250 * using gic_arch_enable_irqs() for normal IRQs. If anything is set in
251 * DAIF we must have handled an NMI, so skip preemption.
253 if (system_uses_irq_prio_masking() && read_sysreg(daif))
257 * Preempting a task from an IRQ means we leave copies of PSTATE
258 * on the stack. cpufeature's enable calls may modify PSTATE, but
259 * resuming one of these preempted tasks would undo those changes.
261 * Only allow a task to be preempted once cpufeatures have been
264 if (system_capabilities_finalized())
265 preempt_schedule_irq();
268 static void do_interrupt_handler(struct pt_regs *regs,
269 void (*handler)(struct pt_regs *))
271 struct pt_regs *old_regs = set_irq_regs(regs);
273 if (on_thread_stack())
274 call_on_irq_stack(regs, handler);
278 set_irq_regs(old_regs);
281 extern void (*handle_arch_irq)(struct pt_regs *);
282 extern void (*handle_arch_fiq)(struct pt_regs *);
284 static void noinstr __panic_unhandled(struct pt_regs *regs, const char *vector,
287 arm64_enter_nmi(regs);
291 pr_crit("Unhandled %s exception on CPU%d, ESR 0x%016lx -- %s\n",
292 vector, smp_processor_id(), esr,
293 esr_get_class_string(esr));
296 panic("Unhandled exception");
299 #define UNHANDLED(el, regsize, vector) \
300 asmlinkage void noinstr el##_##regsize##_##vector##_handler(struct pt_regs *regs) \
302 const char *desc = #regsize "-bit " #el " " #vector; \
303 __panic_unhandled(regs, desc, read_sysreg(esr_el1)); \
306 #ifdef CONFIG_ARM64_ERRATUM_1463225
307 static DEFINE_PER_CPU(int, __in_cortex_a76_erratum_1463225_wa);
309 static void cortex_a76_erratum_1463225_svc_handler(void)
313 if (!unlikely(test_thread_flag(TIF_SINGLESTEP)))
316 if (!unlikely(this_cpu_has_cap(ARM64_WORKAROUND_1463225)))
319 __this_cpu_write(__in_cortex_a76_erratum_1463225_wa, 1);
320 reg = read_sysreg(mdscr_el1);
321 val = reg | DBG_MDSCR_SS | DBG_MDSCR_KDE;
322 write_sysreg(val, mdscr_el1);
323 asm volatile("msr daifclr, #8");
326 /* We will have taken a single-step exception by this point */
328 write_sysreg(reg, mdscr_el1);
329 __this_cpu_write(__in_cortex_a76_erratum_1463225_wa, 0);
332 static bool cortex_a76_erratum_1463225_debug_handler(struct pt_regs *regs)
334 if (!__this_cpu_read(__in_cortex_a76_erratum_1463225_wa))
338 * We've taken a dummy step exception from the kernel to ensure
339 * that interrupts are re-enabled on the syscall path. Return back
340 * to cortex_a76_erratum_1463225_svc_handler() with debug exceptions
341 * masked so that we can safely restore the mdscr and get on with
342 * handling the syscall.
344 regs->pstate |= PSR_D_BIT;
347 #else /* CONFIG_ARM64_ERRATUM_1463225 */
348 static void cortex_a76_erratum_1463225_svc_handler(void) { }
349 static bool cortex_a76_erratum_1463225_debug_handler(struct pt_regs *regs)
353 #endif /* CONFIG_ARM64_ERRATUM_1463225 */
355 UNHANDLED(el1t, 64, sync)
356 UNHANDLED(el1t, 64, irq)
357 UNHANDLED(el1t, 64, fiq)
358 UNHANDLED(el1t, 64, error)
360 static void noinstr el1_abort(struct pt_regs *regs, unsigned long esr)
362 unsigned long far = read_sysreg(far_el1);
364 enter_from_kernel_mode(regs);
365 local_daif_inherit(regs);
366 do_mem_abort(far, esr, regs);
368 exit_to_kernel_mode(regs);
371 static void noinstr el1_pc(struct pt_regs *regs, unsigned long esr)
373 unsigned long far = read_sysreg(far_el1);
375 enter_from_kernel_mode(regs);
376 local_daif_inherit(regs);
377 do_sp_pc_abort(far, esr, regs);
379 exit_to_kernel_mode(regs);
382 static void noinstr el1_undef(struct pt_regs *regs)
384 enter_from_kernel_mode(regs);
385 local_daif_inherit(regs);
388 exit_to_kernel_mode(regs);
391 static void noinstr el1_dbg(struct pt_regs *regs, unsigned long esr)
393 unsigned long far = read_sysreg(far_el1);
395 arm64_enter_el1_dbg(regs);
396 if (!cortex_a76_erratum_1463225_debug_handler(regs))
397 do_debug_exception(far, esr, regs);
398 arm64_exit_el1_dbg(regs);
401 static void noinstr el1_fpac(struct pt_regs *regs, unsigned long esr)
403 enter_from_kernel_mode(regs);
404 local_daif_inherit(regs);
405 do_ptrauth_fault(regs, esr);
407 exit_to_kernel_mode(regs);
410 asmlinkage void noinstr el1h_64_sync_handler(struct pt_regs *regs)
412 unsigned long esr = read_sysreg(esr_el1);
414 switch (ESR_ELx_EC(esr)) {
415 case ESR_ELx_EC_DABT_CUR:
416 case ESR_ELx_EC_IABT_CUR:
417 el1_abort(regs, esr);
420 * We don't handle ESR_ELx_EC_SP_ALIGN, since we will have hit a
421 * recursive exception when trying to push the initial pt_regs.
423 case ESR_ELx_EC_PC_ALIGN:
426 case ESR_ELx_EC_SYS64:
427 case ESR_ELx_EC_UNKNOWN:
430 case ESR_ELx_EC_BREAKPT_CUR:
431 case ESR_ELx_EC_SOFTSTP_CUR:
432 case ESR_ELx_EC_WATCHPT_CUR:
433 case ESR_ELx_EC_BRK64:
436 case ESR_ELx_EC_FPAC:
440 __panic_unhandled(regs, "64-bit el1h sync", esr);
444 static __always_inline void __el1_pnmi(struct pt_regs *regs,
445 void (*handler)(struct pt_regs *))
447 arm64_enter_nmi(regs);
448 do_interrupt_handler(regs, handler);
449 arm64_exit_nmi(regs);
452 static __always_inline void __el1_irq(struct pt_regs *regs,
453 void (*handler)(struct pt_regs *))
455 enter_from_kernel_mode(regs);
458 do_interrupt_handler(regs, handler);
461 arm64_preempt_schedule_irq();
463 exit_to_kernel_mode(regs);
465 static void noinstr el1_interrupt(struct pt_regs *regs,
466 void (*handler)(struct pt_regs *))
468 write_sysreg(DAIF_PROCCTX_NOIRQ, daif);
470 if (IS_ENABLED(CONFIG_ARM64_PSEUDO_NMI) && !interrupts_enabled(regs))
471 __el1_pnmi(regs, handler);
473 __el1_irq(regs, handler);
476 asmlinkage void noinstr el1h_64_irq_handler(struct pt_regs *regs)
478 el1_interrupt(regs, handle_arch_irq);
481 asmlinkage void noinstr el1h_64_fiq_handler(struct pt_regs *regs)
483 el1_interrupt(regs, handle_arch_fiq);
486 asmlinkage void noinstr el1h_64_error_handler(struct pt_regs *regs)
488 unsigned long esr = read_sysreg(esr_el1);
490 local_daif_restore(DAIF_ERRCTX);
491 arm64_enter_nmi(regs);
492 do_serror(regs, esr);
493 arm64_exit_nmi(regs);
496 static void noinstr el0_da(struct pt_regs *regs, unsigned long esr)
498 unsigned long far = read_sysreg(far_el1);
500 enter_from_user_mode(regs);
501 local_daif_restore(DAIF_PROCCTX);
502 do_mem_abort(far, esr, regs);
503 exit_to_user_mode(regs);
506 static void noinstr el0_ia(struct pt_regs *regs, unsigned long esr)
508 unsigned long far = read_sysreg(far_el1);
511 * We've taken an instruction abort from userspace and not yet
512 * re-enabled IRQs. If the address is a kernel address, apply
513 * BP hardening prior to enabling IRQs and pre-emption.
515 if (!is_ttbr0_addr(far))
516 arm64_apply_bp_hardening();
518 enter_from_user_mode(regs);
519 local_daif_restore(DAIF_PROCCTX);
520 do_mem_abort(far, esr, regs);
521 exit_to_user_mode(regs);
524 static void noinstr el0_fpsimd_acc(struct pt_regs *regs, unsigned long esr)
526 enter_from_user_mode(regs);
527 local_daif_restore(DAIF_PROCCTX);
528 do_fpsimd_acc(esr, regs);
529 exit_to_user_mode(regs);
532 static void noinstr el0_sve_acc(struct pt_regs *regs, unsigned long esr)
534 enter_from_user_mode(regs);
535 local_daif_restore(DAIF_PROCCTX);
536 do_sve_acc(esr, regs);
537 exit_to_user_mode(regs);
540 static void noinstr el0_sme_acc(struct pt_regs *regs, unsigned long esr)
542 enter_from_user_mode(regs);
543 local_daif_restore(DAIF_PROCCTX);
544 do_sme_acc(esr, regs);
545 exit_to_user_mode(regs);
548 static void noinstr el0_fpsimd_exc(struct pt_regs *regs, unsigned long esr)
550 enter_from_user_mode(regs);
551 local_daif_restore(DAIF_PROCCTX);
552 do_fpsimd_exc(esr, regs);
553 exit_to_user_mode(regs);
556 static void noinstr el0_sys(struct pt_regs *regs, unsigned long esr)
558 enter_from_user_mode(regs);
559 local_daif_restore(DAIF_PROCCTX);
560 do_sysinstr(esr, regs);
561 exit_to_user_mode(regs);
564 static void noinstr el0_pc(struct pt_regs *regs, unsigned long esr)
566 unsigned long far = read_sysreg(far_el1);
568 if (!is_ttbr0_addr(instruction_pointer(regs)))
569 arm64_apply_bp_hardening();
571 enter_from_user_mode(regs);
572 local_daif_restore(DAIF_PROCCTX);
573 do_sp_pc_abort(far, esr, regs);
574 exit_to_user_mode(regs);
577 static void noinstr el0_sp(struct pt_regs *regs, unsigned long esr)
579 enter_from_user_mode(regs);
580 local_daif_restore(DAIF_PROCCTX);
581 do_sp_pc_abort(regs->sp, esr, regs);
582 exit_to_user_mode(regs);
585 static void noinstr el0_undef(struct pt_regs *regs)
587 enter_from_user_mode(regs);
588 local_daif_restore(DAIF_PROCCTX);
590 exit_to_user_mode(regs);
593 static void noinstr el0_bti(struct pt_regs *regs)
595 enter_from_user_mode(regs);
596 local_daif_restore(DAIF_PROCCTX);
598 exit_to_user_mode(regs);
601 static void noinstr el0_inv(struct pt_regs *regs, unsigned long esr)
603 enter_from_user_mode(regs);
604 local_daif_restore(DAIF_PROCCTX);
605 bad_el0_sync(regs, 0, esr);
606 exit_to_user_mode(regs);
609 static void noinstr el0_dbg(struct pt_regs *regs, unsigned long esr)
611 /* Only watchpoints write FAR_EL1, otherwise its UNKNOWN */
612 unsigned long far = read_sysreg(far_el1);
614 enter_from_user_mode(regs);
615 do_debug_exception(far, esr, regs);
616 local_daif_restore(DAIF_PROCCTX);
617 exit_to_user_mode(regs);
620 static void noinstr el0_svc(struct pt_regs *regs)
622 enter_from_user_mode(regs);
623 cortex_a76_erratum_1463225_svc_handler();
625 exit_to_user_mode(regs);
628 static void noinstr el0_fpac(struct pt_regs *regs, unsigned long esr)
630 enter_from_user_mode(regs);
631 local_daif_restore(DAIF_PROCCTX);
632 do_ptrauth_fault(regs, esr);
633 exit_to_user_mode(regs);
636 asmlinkage void noinstr el0t_64_sync_handler(struct pt_regs *regs)
638 unsigned long esr = read_sysreg(esr_el1);
640 switch (ESR_ELx_EC(esr)) {
641 case ESR_ELx_EC_SVC64:
644 case ESR_ELx_EC_DABT_LOW:
647 case ESR_ELx_EC_IABT_LOW:
650 case ESR_ELx_EC_FP_ASIMD:
651 el0_fpsimd_acc(regs, esr);
654 el0_sve_acc(regs, esr);
657 el0_sme_acc(regs, esr);
659 case ESR_ELx_EC_FP_EXC64:
660 el0_fpsimd_exc(regs, esr);
662 case ESR_ELx_EC_SYS64:
666 case ESR_ELx_EC_SP_ALIGN:
669 case ESR_ELx_EC_PC_ALIGN:
672 case ESR_ELx_EC_UNKNOWN:
678 case ESR_ELx_EC_BREAKPT_LOW:
679 case ESR_ELx_EC_SOFTSTP_LOW:
680 case ESR_ELx_EC_WATCHPT_LOW:
681 case ESR_ELx_EC_BRK64:
684 case ESR_ELx_EC_FPAC:
692 static void noinstr el0_interrupt(struct pt_regs *regs,
693 void (*handler)(struct pt_regs *))
695 enter_from_user_mode(regs);
697 write_sysreg(DAIF_PROCCTX_NOIRQ, daif);
699 if (regs->pc & BIT(55))
700 arm64_apply_bp_hardening();
703 do_interrupt_handler(regs, handler);
706 exit_to_user_mode(regs);
709 static void noinstr __el0_irq_handler_common(struct pt_regs *regs)
711 el0_interrupt(regs, handle_arch_irq);
714 asmlinkage void noinstr el0t_64_irq_handler(struct pt_regs *regs)
716 __el0_irq_handler_common(regs);
719 static void noinstr __el0_fiq_handler_common(struct pt_regs *regs)
721 el0_interrupt(regs, handle_arch_fiq);
724 asmlinkage void noinstr el0t_64_fiq_handler(struct pt_regs *regs)
726 __el0_fiq_handler_common(regs);
729 static void noinstr __el0_error_handler_common(struct pt_regs *regs)
731 unsigned long esr = read_sysreg(esr_el1);
733 enter_from_user_mode(regs);
734 local_daif_restore(DAIF_ERRCTX);
735 arm64_enter_nmi(regs);
736 do_serror(regs, esr);
737 arm64_exit_nmi(regs);
738 local_daif_restore(DAIF_PROCCTX);
739 exit_to_user_mode(regs);
742 asmlinkage void noinstr el0t_64_error_handler(struct pt_regs *regs)
744 __el0_error_handler_common(regs);
748 static void noinstr el0_cp15(struct pt_regs *regs, unsigned long esr)
750 enter_from_user_mode(regs);
751 local_daif_restore(DAIF_PROCCTX);
752 do_cp15instr(esr, regs);
753 exit_to_user_mode(regs);
756 static void noinstr el0_svc_compat(struct pt_regs *regs)
758 enter_from_user_mode(regs);
759 cortex_a76_erratum_1463225_svc_handler();
760 do_el0_svc_compat(regs);
761 exit_to_user_mode(regs);
764 asmlinkage void noinstr el0t_32_sync_handler(struct pt_regs *regs)
766 unsigned long esr = read_sysreg(esr_el1);
768 switch (ESR_ELx_EC(esr)) {
769 case ESR_ELx_EC_SVC32:
770 el0_svc_compat(regs);
772 case ESR_ELx_EC_DABT_LOW:
775 case ESR_ELx_EC_IABT_LOW:
778 case ESR_ELx_EC_FP_ASIMD:
779 el0_fpsimd_acc(regs, esr);
781 case ESR_ELx_EC_FP_EXC32:
782 el0_fpsimd_exc(regs, esr);
784 case ESR_ELx_EC_PC_ALIGN:
787 case ESR_ELx_EC_UNKNOWN:
788 case ESR_ELx_EC_CP14_MR:
789 case ESR_ELx_EC_CP14_LS:
790 case ESR_ELx_EC_CP14_64:
793 case ESR_ELx_EC_CP15_32:
794 case ESR_ELx_EC_CP15_64:
797 case ESR_ELx_EC_BREAKPT_LOW:
798 case ESR_ELx_EC_SOFTSTP_LOW:
799 case ESR_ELx_EC_WATCHPT_LOW:
800 case ESR_ELx_EC_BKPT32:
808 asmlinkage void noinstr el0t_32_irq_handler(struct pt_regs *regs)
810 __el0_irq_handler_common(regs);
813 asmlinkage void noinstr el0t_32_fiq_handler(struct pt_regs *regs)
815 __el0_fiq_handler_common(regs);
818 asmlinkage void noinstr el0t_32_error_handler(struct pt_regs *regs)
820 __el0_error_handler_common(regs);
822 #else /* CONFIG_COMPAT */
823 UNHANDLED(el0t, 32, sync)
824 UNHANDLED(el0t, 32, irq)
825 UNHANDLED(el0t, 32, fiq)
826 UNHANDLED(el0t, 32, error)
827 #endif /* CONFIG_COMPAT */
829 #ifdef CONFIG_VMAP_STACK
830 asmlinkage void noinstr handle_bad_stack(struct pt_regs *regs)
832 unsigned long esr = read_sysreg(esr_el1);
833 unsigned long far = read_sysreg(far_el1);
835 arm64_enter_nmi(regs);
836 panic_bad_stack(regs, esr, far);
838 #endif /* CONFIG_VMAP_STACK */
840 #ifdef CONFIG_ARM_SDE_INTERFACE
841 asmlinkage noinstr unsigned long
842 __sdei_handler(struct pt_regs *regs, struct sdei_registered_event *arg)
847 * We didn't take an exception to get here, so the HW hasn't
848 * set/cleared bits in PSTATE that we may rely on.
850 * The original SDEI spec (ARM DEN 0054A) can be read ambiguously as to
851 * whether PSTATE bits are inherited unchanged or generated from
852 * scratch, and the TF-A implementation always clears PAN and always
853 * clears UAO. There are no other known implementations.
855 * Subsequent revisions (ARM DEN 0054B) follow the usual rules for how
856 * PSTATE is modified upon architectural exceptions, and so PAN is
857 * either inherited or set per SCTLR_ELx.SPAN, and UAO is always
860 * We must explicitly reset PAN to the expected state, including
861 * clearing it when the host isn't using it, in case a VM had it set.
863 if (system_uses_hw_pan())
865 else if (cpu_has_pan())
868 arm64_enter_nmi(regs);
869 ret = do_sdei_event(regs, arg);
870 arm64_exit_nmi(regs);
874 #endif /* CONFIG_ARM_SDE_INTERFACE */