arm64: suspend: Reconfigure PSTATE after resume from idle
[linux-2.6-block.git] / arch / arm64 / kernel / suspend.c
CommitLineData
de818bd4 1#include <linux/ftrace.h>
fb4a9602 2#include <linux/percpu.h>
95322526 3#include <linux/slab.h>
d0854412 4#include <asm/alternative.h>
95322526 5#include <asm/cacheflush.h>
d0854412 6#include <asm/cpufeature.h>
95322526 7#include <asm/debug-monitors.h>
d0854412 8#include <asm/exec.h>
95322526
LP
9#include <asm/pgtable.h>
10#include <asm/memory.h>
f43c2718 11#include <asm/mmu_context.h>
95322526
LP
12#include <asm/smp_plat.h>
13#include <asm/suspend.h>
14#include <asm/tlbflush.h>
15
95322526 16/*
cabe1c81
JM
17 * 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.
95322526 19 */
cabe1c81 20unsigned long *sleep_save_stash;
95322526 21
65c021bb
LP
22/*
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 */
d7a83d12
WD
29static int (*hw_breakpoint_restore)(unsigned int);
30void __init cpu_suspend_set_dbg_restorer(int (*hw_bp_restore)(unsigned int))
65c021bb
LP
31{
32 /* Prevent multiple restore hook initializations */
33 if (WARN_ON(hw_breakpoint_restore))
34 return;
35 hw_breakpoint_restore = hw_bp_restore;
36}
37
adc9b2df
JM
38void notrace __cpu_suspend_exit(void)
39{
d7a83d12
WD
40 unsigned int cpu = smp_processor_id();
41
adc9b2df
JM
42 /*
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 /*
50 * Restore per-cpu offset before any kernel
51 * subsystem relying on it has a chance to run.
52 */
d7a83d12 53 set_my_cpu_offset(per_cpu_offset(cpu));
adc9b2df 54
d0854412
JM
55 /*
56 * PSTATE was not saved over suspend/resume, re-enable any detected
57 * features that might not have been set correctly.
58 */
59 asm(ALTERNATIVE("nop", SET_PSTATE_PAN(1), ARM64_HAS_PAN,
60 CONFIG_ARM64_PAN));
61 uao_thread_switch(current);
62
adc9b2df
JM
63 /*
64 * Restore HW breakpoint registers to sane values
65 * before debug exceptions are possibly reenabled
66 * through local_dbg_restore.
67 */
68 if (hw_breakpoint_restore)
d7a83d12 69 hw_breakpoint_restore(cpu);
adc9b2df
JM
70}
71
714f5992 72/*
af391b15 73 * cpu_suspend
714f5992
LP
74 *
75 * arg: argument to pass to the finisher function
76 * fn: finisher function pointer
77 *
78 */
af391b15 79int cpu_suspend(unsigned long arg, int (*fn)(unsigned long))
714f5992 80{
adc9b2df 81 int ret = 0;
714f5992 82 unsigned long flags;
adc9b2df 83 struct sleep_stack_data state;
95322526
LP
84
85 /*
86 * From this point debug exceptions are disabled to prevent
87 * updates to mdscr register (saved and restored along with
88 * general purpose registers) from kernel debuggers.
89 */
90 local_dbg_save(flags);
91
de818bd4
LP
92 /*
93 * Function graph tracer state gets incosistent when the kernel
94 * calls functions that never return (aka suspend finishers) hence
95 * disable graph tracing during their execution.
96 */
97 pause_graph_tracing();
98
adc9b2df
JM
99 if (__cpu_suspend_enter(&state)) {
100 /* Call the suspend finisher */
101 ret = fn(arg);
fb4a9602 102
65c021bb 103 /*
adc9b2df
JM
104 * Never gets here, unless the suspend finisher fails.
105 * Successful cpu_suspend() should return from cpu_resume(),
106 * returning through this code path is considered an error
107 * If the return value is set to 0 force ret = -EOPNOTSUPP
108 * to make sure a proper error condition is propagated
65c021bb 109 */
adc9b2df
JM
110 if (!ret)
111 ret = -EOPNOTSUPP;
112 } else {
113 __cpu_suspend_exit();
95322526
LP
114 }
115
de818bd4
LP
116 unpause_graph_tracing();
117
95322526
LP
118 /*
119 * Restore pstate flags. OS lock and mdscr have been already
120 * restored, so from this point onwards, debugging is fully
121 * renabled if it was enabled when core started shutdown.
122 */
123 local_dbg_restore(flags);
124
125 return ret;
126}
127
18ab7db6 128static int __init cpu_suspend_init(void)
95322526 129{
95322526 130 /* ctx_ptr is an array of physical addresses */
cabe1c81
JM
131 sleep_save_stash = kcalloc(mpidr_hash_size(), sizeof(*sleep_save_stash),
132 GFP_KERNEL);
95322526 133
cabe1c81 134 if (WARN_ON(!sleep_save_stash))
95322526
LP
135 return -ENOMEM;
136
95322526
LP
137 return 0;
138}
139early_initcall(cpu_suspend_init);