1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/ftrace.h>
3 #include <linux/percpu.h>
4 #include <linux/slab.h>
5 #include <linux/uaccess.h>
6 #include <linux/pgtable.h>
7 #include <linux/cpuidle.h>
8 #include <asm/alternative.h>
9 #include <asm/cacheflush.h>
10 #include <asm/cpufeature.h>
11 #include <asm/cpuidle.h>
12 #include <asm/daifflags.h>
13 #include <asm/debug-monitors.h>
15 #include <asm/fpsimd.h>
17 #include <asm/memory.h>
18 #include <asm/mmu_context.h>
19 #include <asm/smp_plat.h>
20 #include <asm/suspend.h>
23 * This is allocated by cpu_suspend_init(), and used to store a pointer to
24 * the 'struct sleep_stack_data' the contains a particular CPUs state.
26 unsigned long *sleep_save_stash
;
29 * This hook is provided so that cpu_suspend code can restore HW
30 * breakpoints as early as possible in the resume path, before reenabling
31 * debug exceptions. Code cannot be run from a CPU PM notifier since by the
32 * time the notifier runs debug exceptions might have been enabled already,
33 * with HW breakpoints registers content still in an unknown state.
35 static int (*hw_breakpoint_restore
)(unsigned int);
36 void __init
cpu_suspend_set_dbg_restorer(int (*hw_bp_restore
)(unsigned int))
38 /* Prevent multiple restore hook initializations */
39 if (WARN_ON(hw_breakpoint_restore
))
41 hw_breakpoint_restore
= hw_bp_restore
;
44 void notrace
__cpu_suspend_exit(void)
46 unsigned int cpu
= smp_processor_id();
51 * We are resuming from reset with the idmap active in TTBR0_EL1.
52 * We must uninstall the idmap and restore the expected MMU
53 * state before we can possibly return to userspace.
55 cpu_uninstall_idmap();
57 /* Restore CnP bit in TTBR1_EL1 */
58 if (system_supports_cnp())
59 cpu_enable_swapper_cnp();
62 * PSTATE was not saved over suspend/resume, re-enable any detected
63 * features that might not have been set correctly.
65 if (alternative_has_cap_unlikely(ARM64_HAS_DIT
))
67 __uaccess_enable_hw_pan();
70 * Restore HW breakpoint registers to sane values
71 * before debug exceptions are possibly reenabled
72 * by cpu_suspend()s local_daif_restore() call.
74 if (hw_breakpoint_restore
)
75 hw_breakpoint_restore(cpu
);
78 * On resume, firmware implementing dynamic mitigation will
79 * have turned the mitigation on. If the user has forcefully
80 * disabled it, make sure their wishes are obeyed.
82 spectre_v4_enable_mitigation(NULL
);
86 /* Restore additional feature-specific configuration */
87 ptrauth_suspend_exit();
93 * arg: argument to pass to the finisher function
94 * fn: finisher function pointer
97 int cpu_suspend(unsigned long arg
, int (*fn
)(unsigned long))
101 struct sleep_stack_data state
;
102 struct arm_cpuidle_irq_context context
;
105 * Some portions of CPU state (e.g. PSTATE.{PAN,DIT}) are initialized
106 * before alternatives are patched, but are only restored by
107 * __cpu_suspend_exit() after alternatives are patched. To avoid
108 * accidentally losing these bits we must not attempt to suspend until
109 * after alternatives have been patched.
111 WARN_ON(!system_capabilities_finalized());
113 /* Report any MTE async fault before going to suspend */
117 * From this point debug exceptions are disabled to prevent
118 * updates to mdscr register (saved and restored along with
119 * general purpose registers) from kernel debuggers.
121 * Strictly speaking the trace_hardirqs_off() here is superfluous,
122 * hardirqs should be firmly off by now. This really ought to use
123 * something like raw_local_daif_save().
125 flags
= local_daif_save();
128 * Function graph tracer state gets inconsistent when the kernel
129 * calls functions that never return (aka suspend finishers) hence
130 * disable graph tracing during their execution.
132 pause_graph_tracing();
135 * Switch to using DAIF.IF instead of PMR in order to reliably
136 * resume if we're using pseudo-NMIs.
138 arm_cpuidle_save_irq_context(&context
);
142 if (__cpu_suspend_enter(&state
)) {
143 /* Call the suspend finisher */
147 * Never gets here, unless the suspend finisher fails.
148 * Successful cpu_suspend() should return from cpu_resume(),
149 * returning through this code path is considered an error
150 * If the return value is set to 0 force ret = -EOPNOTSUPP
151 * to make sure a proper error condition is propagated
159 __cpu_suspend_exit();
162 arm_cpuidle_restore_irq_context(&context
);
164 unpause_graph_tracing();
167 * Restore pstate flags. OS lock and mdscr have been already
168 * restored, so from this point onwards, debugging is fully
169 * reenabled if it was enabled when core started shutdown.
171 local_daif_restore(flags
);
176 static int __init
cpu_suspend_init(void)
178 /* ctx_ptr is an array of physical addresses */
179 sleep_save_stash
= kcalloc(mpidr_hash_size(), sizeof(*sleep_save_stash
),
182 if (WARN_ON(!sleep_save_stash
))
187 early_initcall(cpu_suspend_init
);