blob: e12f2d0dfc5d6d7d5472db1d786c88942558acef [file] [log] [blame]
Lorenzo Pieraliside818bd2015-11-17 11:50:51 +00001#include <linux/ftrace.h>
Lorenzo Pieralisifb4a9602014-01-24 10:56:19 +00002#include <linux/percpu.h>
Lorenzo Pieralisi95322522013-07-22 12:22:13 +01003#include <linux/slab.h>
James Morsed0854412016-10-18 11:27:48 +01004#include <asm/alternative.h>
Lorenzo Pieralisi95322522013-07-22 12:22:13 +01005#include <asm/cacheflush.h>
James Morsed0854412016-10-18 11:27:48 +01006#include <asm/cpufeature.h>
Lorenzo Pieralisi95322522013-07-22 12:22:13 +01007#include <asm/debug-monitors.h>
James Morsed0854412016-10-18 11:27:48 +01008#include <asm/exec.h>
Lorenzo Pieralisi95322522013-07-22 12:22:13 +01009#include <asm/pgtable.h>
10#include <asm/memory.h>
Lorenzo Pieralisif43c2712014-12-19 17:03:47 +000011#include <asm/mmu_context.h>
Lorenzo Pieralisi95322522013-07-22 12:22:13 +010012#include <asm/smp_plat.h>
13#include <asm/suspend.h>
14#include <asm/tlbflush.h>
15
Lorenzo Pieralisi95322522013-07-22 12:22:13 +010016/*
James Morsecabe1c82016-04-27 17:47:07 +010017 * This is allocated by cpu_suspend_init(), and used to store a pointer to
18 * the 'struct sleep_stack_data' the contains a particular CPUs state.
Lorenzo Pieralisi95322522013-07-22 12:22:13 +010019 */
James Morsecabe1c82016-04-27 17:47:07 +010020unsigned long *sleep_save_stash;
Lorenzo Pieralisi95322522013-07-22 12:22:13 +010021
Lorenzo Pieralisi65c021b2014-01-10 13:15:05 +000022/*
23 * This hook is provided so that cpu_suspend code can restore HW
24 * breakpoints as early as possible in the resume path, before reenabling
25 * debug exceptions. Code cannot be run from a CPU PM notifier since by the
26 * time the notifier runs debug exceptions might have been enabled already,
27 * with HW breakpoints registers content still in an unknown state.
28 */
Will Deacond7a83d12016-08-15 18:55:11 +010029static int (*hw_breakpoint_restore)(unsigned int);
30void __init cpu_suspend_set_dbg_restorer(int (*hw_bp_restore)(unsigned int))
Lorenzo Pieralisi65c021b2014-01-10 13:15:05 +000031{
32 /* Prevent multiple restore hook initializations */
33 if (WARN_ON(hw_breakpoint_restore))
34 return;
35 hw_breakpoint_restore = hw_bp_restore;
36}
37
James Morseadc9b2d2016-04-27 17:47:06 +010038void notrace __cpu_suspend_exit(void)
39{
Will Deacond7a83d12016-08-15 18:55:11 +010040 unsigned int cpu = smp_processor_id();
41
James Morseadc9b2d2016-04-27 17:47:06 +010042 /*
43 * We are resuming from reset with the idmap active in TTBR0_EL1.
44 * We must uninstall the idmap and restore the expected MMU
45 * state before we can possibly return to userspace.
46 */
47 cpu_uninstall_idmap();
48
49 /*
James Morsed0854412016-10-18 11:27:48 +010050 * PSTATE was not saved over suspend/resume, re-enable any detected
51 * features that might not have been set correctly.
52 */
53 asm(ALTERNATIVE("nop", SET_PSTATE_PAN(1), ARM64_HAS_PAN,
54 CONFIG_ARM64_PAN));
55 uao_thread_switch(current);
56
57 /*
James Morseadc9b2d2016-04-27 17:47:06 +010058 * Restore HW breakpoint registers to sane values
59 * before debug exceptions are possibly reenabled
60 * through local_dbg_restore.
61 */
62 if (hw_breakpoint_restore)
Will Deacond7a83d12016-08-15 18:55:11 +010063 hw_breakpoint_restore(cpu);
Marc Zyngierd8fbc842018-07-20 10:56:28 +010064
65 /*
66 * On resume, firmware implementing dynamic mitigation will
67 * have turned the mitigation on. If the user has forcefully
68 * disabled it, make sure their wishes are obeyed.
69 */
70 if (arm64_get_ssbd_state() == ARM64_SSBD_FORCE_DISABLE)
71 arm64_set_ssbd_mitigation(false);
James Morseadc9b2d2016-04-27 17:47:06 +010072}
73
Lorenzo Pieralisi714f5992014-08-07 14:54:50 +010074/*
Sudeep Hollaaf391b12015-06-18 15:41:32 +010075 * cpu_suspend
Lorenzo Pieralisi714f5992014-08-07 14:54:50 +010076 *
77 * arg: argument to pass to the finisher function
78 * fn: finisher function pointer
79 *
80 */
Sudeep Hollaaf391b12015-06-18 15:41:32 +010081int cpu_suspend(unsigned long arg, int (*fn)(unsigned long))
Lorenzo Pieralisi714f5992014-08-07 14:54:50 +010082{
James Morseadc9b2d2016-04-27 17:47:06 +010083 int ret = 0;
Lorenzo Pieralisi714f5992014-08-07 14:54:50 +010084 unsigned long flags;
James Morseadc9b2d2016-04-27 17:47:06 +010085 struct sleep_stack_data state;
Lorenzo Pieralisi95322522013-07-22 12:22:13 +010086
87 /*
88 * From this point debug exceptions are disabled to prevent
89 * updates to mdscr register (saved and restored along with
90 * general purpose registers) from kernel debuggers.
91 */
92 local_dbg_save(flags);
93
94 /*
Lorenzo Pieraliside818bd2015-11-17 11:50:51 +000095 * Function graph tracer state gets incosistent when the kernel
96 * calls functions that never return (aka suspend finishers) hence
97 * disable graph tracing during their execution.
98 */
99 pause_graph_tracing();
100
James Morseadc9b2d2016-04-27 17:47:06 +0100101 if (__cpu_suspend_enter(&state)) {
102 /* Call the suspend finisher */
103 ret = fn(arg);
Lorenzo Pieralisifb4a9602014-01-24 10:56:19 +0000104
105 /*
James Morseadc9b2d2016-04-27 17:47:06 +0100106 * Never gets here, unless the suspend finisher fails.
107 * Successful cpu_suspend() should return from cpu_resume(),
108 * returning through this code path is considered an error
109 * If the return value is set to 0 force ret = -EOPNOTSUPP
110 * to make sure a proper error condition is propagated
Lorenzo Pieralisifb4a9602014-01-24 10:56:19 +0000111 */
James Morseadc9b2d2016-04-27 17:47:06 +0100112 if (!ret)
113 ret = -EOPNOTSUPP;
114 } else {
115 __cpu_suspend_exit();
Lorenzo Pieralisi95322522013-07-22 12:22:13 +0100116 }
117
Lorenzo Pieraliside818bd2015-11-17 11:50:51 +0000118 unpause_graph_tracing();
119
Lorenzo Pieralisi95322522013-07-22 12:22:13 +0100120 /*
121 * Restore pstate flags. OS lock and mdscr have been already
122 * restored, so from this point onwards, debugging is fully
123 * renabled if it was enabled when core started shutdown.
124 */
125 local_dbg_restore(flags);
126
127 return ret;
128}
129
Lorenzo Pieralisi18ab7db2014-07-17 18:19:20 +0100130static int __init cpu_suspend_init(void)
Lorenzo Pieralisi95322522013-07-22 12:22:13 +0100131{
Lorenzo Pieralisi95322522013-07-22 12:22:13 +0100132 /* ctx_ptr is an array of physical addresses */
James Morsecabe1c82016-04-27 17:47:07 +0100133 sleep_save_stash = kcalloc(mpidr_hash_size(), sizeof(*sleep_save_stash),
134 GFP_KERNEL);
Lorenzo Pieralisi95322522013-07-22 12:22:13 +0100135
James Morsecabe1c82016-04-27 17:47:07 +0100136 if (WARN_ON(!sleep_save_stash))
Lorenzo Pieralisi95322522013-07-22 12:22:13 +0100137 return -ENOMEM;
138
Lorenzo Pieralisi95322522013-07-22 12:22:13 +0100139 return 0;
140}
141early_initcall(cpu_suspend_init);