blob: c1dee9066ff97115fce01ccf16e1b1320b9be265 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Lorenzo Pieraliside818bd2015-11-17 11:50:51 +00002#include <linux/ftrace.h>
Lorenzo Pieralisifb4a9602014-01-24 10:56:19 +00003#include <linux/percpu.h>
Lorenzo Pieralisi95322522013-07-22 12:22:13 +01004#include <linux/slab.h>
James Morsee1281f52018-01-08 15:38:11 +00005#include <linux/uaccess.h>
Mike Rapoport65fddcf2020-06-08 21:32:42 -07006#include <linux/pgtable.h>
James Morsed0854412016-10-18 11:27:48 +01007#include <asm/alternative.h>
Lorenzo Pieralisi95322522013-07-22 12:22:13 +01008#include <asm/cacheflush.h>
James Morsed0854412016-10-18 11:27:48 +01009#include <asm/cpufeature.h>
James Morse0fbeb312017-11-02 12:12:34 +000010#include <asm/daifflags.h>
Lorenzo Pieralisi95322522013-07-22 12:22:13 +010011#include <asm/debug-monitors.h>
James Morsed0854412016-10-18 11:27:48 +010012#include <asm/exec.h>
Lorenzo Pieralisi95322522013-07-22 12:22:13 +010013#include <asm/memory.h>
Lorenzo Pieralisif43c2712014-12-19 17:03:47 +000014#include <asm/mmu_context.h>
Lorenzo Pieralisi95322522013-07-22 12:22:13 +010015#include <asm/smp_plat.h>
16#include <asm/suspend.h>
Lorenzo Pieralisi95322522013-07-22 12:22:13 +010017
Lorenzo Pieralisi95322522013-07-22 12:22:13 +010018/*
James Morsecabe1c82016-04-27 17:47:07 +010019 * This is allocated by cpu_suspend_init(), and used to store a pointer to
20 * the 'struct sleep_stack_data' the contains a particular CPUs state.
Lorenzo Pieralisi95322522013-07-22 12:22:13 +010021 */
James Morsecabe1c82016-04-27 17:47:07 +010022unsigned long *sleep_save_stash;
Lorenzo Pieralisi95322522013-07-22 12:22:13 +010023
Lorenzo Pieralisi65c021b2014-01-10 13:15:05 +000024/*
25 * This hook is provided so that cpu_suspend code can restore HW
26 * breakpoints as early as possible in the resume path, before reenabling
27 * debug exceptions. Code cannot be run from a CPU PM notifier since by the
28 * time the notifier runs debug exceptions might have been enabled already,
29 * with HW breakpoints registers content still in an unknown state.
30 */
Will Deacond7a83d12016-08-15 18:55:11 +010031static int (*hw_breakpoint_restore)(unsigned int);
32void __init cpu_suspend_set_dbg_restorer(int (*hw_bp_restore)(unsigned int))
Lorenzo Pieralisi65c021b2014-01-10 13:15:05 +000033{
34 /* Prevent multiple restore hook initializations */
35 if (WARN_ON(hw_breakpoint_restore))
36 return;
37 hw_breakpoint_restore = hw_bp_restore;
38}
39
James Morseadc9b2d2016-04-27 17:47:06 +010040void notrace __cpu_suspend_exit(void)
41{
Will Deacond7a83d12016-08-15 18:55:11 +010042 unsigned int cpu = smp_processor_id();
43
James Morseadc9b2d2016-04-27 17:47:06 +010044 /*
45 * We are resuming from reset with the idmap active in TTBR0_EL1.
46 * We must uninstall the idmap and restore the expected MMU
47 * state before we can possibly return to userspace.
48 */
49 cpu_uninstall_idmap();
50
Vladimir Murzin5ffdfae2018-07-31 14:08:56 +010051 /* Restore CnP bit in TTBR1_EL1 */
52 if (system_supports_cnp())
53 cpu_replace_ttbr1(lm_alias(swapper_pg_dir));
54
James Morseadc9b2d2016-04-27 17:47:06 +010055 /*
James Morsed0854412016-10-18 11:27:48 +010056 * PSTATE was not saved over suspend/resume, re-enable any detected
57 * features that might not have been set correctly.
58 */
James Morsee1281f52018-01-08 15:38:11 +000059 __uaccess_enable_hw_pan();
James Morsed0854412016-10-18 11:27:48 +010060 uao_thread_switch(current);
61
62 /*
James Morseadc9b2d2016-04-27 17:47:06 +010063 * Restore HW breakpoint registers to sane values
64 * before debug exceptions are possibly reenabled
James Morse0fbeb312017-11-02 12:12:34 +000065 * by cpu_suspend()s local_daif_restore() call.
James Morseadc9b2d2016-04-27 17:47:06 +010066 */
67 if (hw_breakpoint_restore)
Will Deacond7a83d12016-08-15 18:55:11 +010068 hw_breakpoint_restore(cpu);
Marc Zyngier647d0512018-05-29 13:11:12 +010069
70 /*
71 * On resume, firmware implementing dynamic mitigation will
72 * have turned the mitigation on. If the user has forcefully
73 * disabled it, make sure their wishes are obeyed.
74 */
75 if (arm64_get_ssbd_state() == ARM64_SSBD_FORCE_DISABLE)
76 arm64_set_ssbd_mitigation(false);
James Morseadc9b2d2016-04-27 17:47:06 +010077}
78
Lorenzo Pieralisi714f5992014-08-07 14:54:50 +010079/*
Sudeep Hollaaf391b12015-06-18 15:41:32 +010080 * cpu_suspend
Lorenzo Pieralisi714f5992014-08-07 14:54:50 +010081 *
82 * arg: argument to pass to the finisher function
83 * fn: finisher function pointer
84 *
85 */
Sudeep Hollaaf391b12015-06-18 15:41:32 +010086int cpu_suspend(unsigned long arg, int (*fn)(unsigned long))
Lorenzo Pieralisi714f5992014-08-07 14:54:50 +010087{
James Morseadc9b2d2016-04-27 17:47:06 +010088 int ret = 0;
Lorenzo Pieralisi714f5992014-08-07 14:54:50 +010089 unsigned long flags;
James Morseadc9b2d2016-04-27 17:47:06 +010090 struct sleep_stack_data state;
Lorenzo Pieralisi95322522013-07-22 12:22:13 +010091
92 /*
93 * From this point debug exceptions are disabled to prevent
94 * updates to mdscr register (saved and restored along with
95 * general purpose registers) from kernel debuggers.
96 */
James Morse0fbeb312017-11-02 12:12:34 +000097 flags = local_daif_save();
Lorenzo Pieralisi95322522013-07-22 12:22:13 +010098
99 /*
Lorenzo Pieraliside818bd2015-11-17 11:50:51 +0000100 * Function graph tracer state gets incosistent when the kernel
101 * calls functions that never return (aka suspend finishers) hence
102 * disable graph tracing during their execution.
103 */
104 pause_graph_tracing();
105
James Morseadc9b2d2016-04-27 17:47:06 +0100106 if (__cpu_suspend_enter(&state)) {
107 /* Call the suspend finisher */
108 ret = fn(arg);
Lorenzo Pieralisifb4a9602014-01-24 10:56:19 +0000109
110 /*
James Morseadc9b2d2016-04-27 17:47:06 +0100111 * Never gets here, unless the suspend finisher fails.
112 * Successful cpu_suspend() should return from cpu_resume(),
113 * returning through this code path is considered an error
114 * If the return value is set to 0 force ret = -EOPNOTSUPP
115 * to make sure a proper error condition is propagated
Lorenzo Pieralisifb4a9602014-01-24 10:56:19 +0000116 */
James Morseadc9b2d2016-04-27 17:47:06 +0100117 if (!ret)
118 ret = -EOPNOTSUPP;
119 } else {
120 __cpu_suspend_exit();
Lorenzo Pieralisi95322522013-07-22 12:22:13 +0100121 }
122
Lorenzo Pieraliside818bd2015-11-17 11:50:51 +0000123 unpause_graph_tracing();
124
Lorenzo Pieralisi95322522013-07-22 12:22:13 +0100125 /*
126 * Restore pstate flags. OS lock and mdscr have been already
127 * restored, so from this point onwards, debugging is fully
128 * renabled if it was enabled when core started shutdown.
129 */
James Morse0fbeb312017-11-02 12:12:34 +0000130 local_daif_restore(flags);
Lorenzo Pieralisi95322522013-07-22 12:22:13 +0100131
132 return ret;
133}
134
Lorenzo Pieralisi18ab7db2014-07-17 18:19:20 +0100135static int __init cpu_suspend_init(void)
Lorenzo Pieralisi95322522013-07-22 12:22:13 +0100136{
Lorenzo Pieralisi95322522013-07-22 12:22:13 +0100137 /* ctx_ptr is an array of physical addresses */
James Morsecabe1c82016-04-27 17:47:07 +0100138 sleep_save_stash = kcalloc(mpidr_hash_size(), sizeof(*sleep_save_stash),
139 GFP_KERNEL);
Lorenzo Pieralisi95322522013-07-22 12:22:13 +0100140
James Morsecabe1c82016-04-27 17:47:07 +0100141 if (WARN_ON(!sleep_save_stash))
Lorenzo Pieralisi95322522013-07-22 12:22:13 +0100142 return -ENOMEM;
143
Lorenzo Pieralisi95322522013-07-22 12:22:13 +0100144 return 0;
145}
146early_initcall(cpu_suspend_init);