Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* CPU control. |
| 2 | * (C) 2001, 2002, 2003, 2004 Rusty Russell |
| 3 | * |
| 4 | * This code is licenced under the GPL. |
| 5 | */ |
Peter Zijlstra | bf2c59f | 2020-04-01 17:40:33 -0400 | [diff] [blame] | 6 | #include <linux/sched/mm.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | #include <linux/proc_fs.h> |
| 8 | #include <linux/smp.h> |
| 9 | #include <linux/init.h> |
| 10 | #include <linux/notifier.h> |
Ingo Molnar | 3f07c01 | 2017-02-08 18:51:30 +0100 | [diff] [blame] | 11 | #include <linux/sched/signal.h> |
Ingo Molnar | ef8bd77 | 2017-02-08 18:51:36 +0100 | [diff] [blame] | 12 | #include <linux/sched/hotplug.h> |
Nicholas Piggin | 9ca12ac | 2019-04-11 13:34:46 +1000 | [diff] [blame] | 13 | #include <linux/sched/isolation.h> |
Ingo Molnar | 2993002 | 2017-02-08 18:51:36 +0100 | [diff] [blame] | 14 | #include <linux/sched/task.h> |
Thomas Gleixner | a74cfff | 2018-11-25 19:33:39 +0100 | [diff] [blame] | 15 | #include <linux/sched/smt.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include <linux/unistd.h> |
| 17 | #include <linux/cpu.h> |
Anton Vorontsov | cb79295 | 2012-05-31 16:26:22 -0700 | [diff] [blame] | 18 | #include <linux/oom.h> |
| 19 | #include <linux/rcupdate.h> |
Paul Gortmaker | 9984de1 | 2011-05-23 14:51:41 -0400 | [diff] [blame] | 20 | #include <linux/export.h> |
Anton Vorontsov | e4cc2f8 | 2012-05-31 16:26:26 -0700 | [diff] [blame] | 21 | #include <linux/bug.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include <linux/kthread.h> |
| 23 | #include <linux/stop_machine.h> |
Ingo Molnar | 81615b62 | 2006-06-26 00:24:32 -0700 | [diff] [blame] | 24 | #include <linux/mutex.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 25 | #include <linux/gfp.h> |
Srivatsa S. Bhat | 79cfbdf | 2011-11-03 00:59:25 +0100 | [diff] [blame] | 26 | #include <linux/suspend.h> |
Gautham R. Shenoy | a19423b | 2014-03-11 02:04:03 +0530 | [diff] [blame] | 27 | #include <linux/lockdep.h> |
Preeti U Murthy | 345527b | 2015-03-30 14:59:19 +0530 | [diff] [blame] | 28 | #include <linux/tick.h> |
Thomas Gleixner | a899418 | 2015-07-05 17:12:30 +0000 | [diff] [blame] | 29 | #include <linux/irq.h> |
Thomas Gleixner | 941154b | 2017-09-12 21:37:04 +0200 | [diff] [blame] | 30 | #include <linux/nmi.h> |
Thomas Gleixner | 4cb28ce | 2016-02-26 18:43:38 +0000 | [diff] [blame] | 31 | #include <linux/smpboot.h> |
Richard Weinberger | e6d4989 | 2016-08-18 14:57:17 +0200 | [diff] [blame] | 32 | #include <linux/relay.h> |
Sebastian Andrzej Siewior | 6731d4f | 2016-08-23 14:53:19 +0200 | [diff] [blame] | 33 | #include <linux/slab.h> |
Thomas Gleixner | fc8dffd | 2017-05-24 10:15:40 +0200 | [diff] [blame] | 34 | #include <linux/percpu-rwsem.h> |
Thomas Gleixner | cff7d37 | 2016-02-26 18:43:28 +0000 | [diff] [blame] | 35 | |
Todd E Brandt | bb3632c | 2014-06-06 05:40:17 -0700 | [diff] [blame] | 36 | #include <trace/events/power.h> |
Thomas Gleixner | cff7d37 | 2016-02-26 18:43:28 +0000 | [diff] [blame] | 37 | #define CREATE_TRACE_POINTS |
| 38 | #include <trace/events/cpuhp.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | |
Thomas Gleixner | 38498a6 | 2012-04-20 13:05:44 +0000 | [diff] [blame] | 40 | #include "smpboot.h" |
| 41 | |
Thomas Gleixner | cff7d37 | 2016-02-26 18:43:28 +0000 | [diff] [blame] | 42 | /** |
| 43 | * cpuhp_cpu_state - Per cpu hotplug state storage |
| 44 | * @state: The current cpu state |
| 45 | * @target: The target state |
Thomas Gleixner | 4cb28ce | 2016-02-26 18:43:38 +0000 | [diff] [blame] | 46 | * @thread: Pointer to the hotplug thread |
| 47 | * @should_run: Thread should execute |
Sebastian Andrzej Siewior | 3b9d6da | 2016-04-08 14:40:15 +0200 | [diff] [blame] | 48 | * @rollback: Perform a rollback |
Thomas Gleixner | a724632 | 2016-08-12 19:49:38 +0200 | [diff] [blame] | 49 | * @single: Single callback invocation |
| 50 | * @bringup: Single callback bringup or teardown selector |
| 51 | * @cb_state: The state for a single callback (install/uninstall) |
Thomas Gleixner | 4cb28ce | 2016-02-26 18:43:38 +0000 | [diff] [blame] | 52 | * @result: Result of the operation |
Peter Zijlstra | 5ebe774 | 2017-09-20 19:00:19 +0200 | [diff] [blame] | 53 | * @done_up: Signal completion to the issuer of the task for cpu-up |
| 54 | * @done_down: Signal completion to the issuer of the task for cpu-down |
Thomas Gleixner | cff7d37 | 2016-02-26 18:43:28 +0000 | [diff] [blame] | 55 | */ |
| 56 | struct cpuhp_cpu_state { |
| 57 | enum cpuhp_state state; |
| 58 | enum cpuhp_state target; |
Peter Zijlstra | 1db4948 | 2017-09-20 19:00:21 +0200 | [diff] [blame] | 59 | enum cpuhp_state fail; |
Thomas Gleixner | 4cb28ce | 2016-02-26 18:43:38 +0000 | [diff] [blame] | 60 | #ifdef CONFIG_SMP |
| 61 | struct task_struct *thread; |
| 62 | bool should_run; |
Sebastian Andrzej Siewior | 3b9d6da | 2016-04-08 14:40:15 +0200 | [diff] [blame] | 63 | bool rollback; |
Thomas Gleixner | a724632 | 2016-08-12 19:49:38 +0200 | [diff] [blame] | 64 | bool single; |
| 65 | bool bringup; |
Peter Zijlstra | 2ea46c6 | 2021-04-20 20:04:19 +0200 | [diff] [blame] | 66 | int cpu; |
Thomas Gleixner | cf392d1 | 2016-08-12 19:49:39 +0200 | [diff] [blame] | 67 | struct hlist_node *node; |
Peter Zijlstra | 4dddfb5 | 2017-09-20 19:00:17 +0200 | [diff] [blame] | 68 | struct hlist_node *last; |
Thomas Gleixner | 4cb28ce | 2016-02-26 18:43:38 +0000 | [diff] [blame] | 69 | enum cpuhp_state cb_state; |
Thomas Gleixner | 4cb28ce | 2016-02-26 18:43:38 +0000 | [diff] [blame] | 70 | int result; |
Peter Zijlstra | 5ebe774 | 2017-09-20 19:00:19 +0200 | [diff] [blame] | 71 | struct completion done_up; |
| 72 | struct completion done_down; |
Thomas Gleixner | 4cb28ce | 2016-02-26 18:43:38 +0000 | [diff] [blame] | 73 | #endif |
Thomas Gleixner | cff7d37 | 2016-02-26 18:43:28 +0000 | [diff] [blame] | 74 | }; |
| 75 | |
Peter Zijlstra | 1db4948 | 2017-09-20 19:00:21 +0200 | [diff] [blame] | 76 | static DEFINE_PER_CPU(struct cpuhp_cpu_state, cpuhp_state) = { |
| 77 | .fail = CPUHP_INVALID, |
| 78 | }; |
Thomas Gleixner | cff7d37 | 2016-02-26 18:43:28 +0000 | [diff] [blame] | 79 | |
Thomas Gleixner | e797bda | 2019-07-22 20:47:16 +0200 | [diff] [blame] | 80 | #ifdef CONFIG_SMP |
| 81 | cpumask_t cpus_booted_once_mask; |
| 82 | #endif |
| 83 | |
Thomas Gleixner | 49dfe2a | 2017-05-24 10:15:43 +0200 | [diff] [blame] | 84 | #if defined(CONFIG_LOCKDEP) && defined(CONFIG_SMP) |
Peter Zijlstra | 5f4b55e | 2017-09-20 19:00:20 +0200 | [diff] [blame] | 85 | static struct lockdep_map cpuhp_state_up_map = |
| 86 | STATIC_LOCKDEP_MAP_INIT("cpuhp_state-up", &cpuhp_state_up_map); |
| 87 | static struct lockdep_map cpuhp_state_down_map = |
| 88 | STATIC_LOCKDEP_MAP_INIT("cpuhp_state-down", &cpuhp_state_down_map); |
| 89 | |
| 90 | |
Mathieu Malaterre | 76dc6c0 | 2017-12-26 15:08:53 +0100 | [diff] [blame] | 91 | static inline void cpuhp_lock_acquire(bool bringup) |
Peter Zijlstra | 5f4b55e | 2017-09-20 19:00:20 +0200 | [diff] [blame] | 92 | { |
| 93 | lock_map_acquire(bringup ? &cpuhp_state_up_map : &cpuhp_state_down_map); |
| 94 | } |
| 95 | |
Mathieu Malaterre | 76dc6c0 | 2017-12-26 15:08:53 +0100 | [diff] [blame] | 96 | static inline void cpuhp_lock_release(bool bringup) |
Peter Zijlstra | 5f4b55e | 2017-09-20 19:00:20 +0200 | [diff] [blame] | 97 | { |
| 98 | lock_map_release(bringup ? &cpuhp_state_up_map : &cpuhp_state_down_map); |
| 99 | } |
| 100 | #else |
| 101 | |
Mathieu Malaterre | 76dc6c0 | 2017-12-26 15:08:53 +0100 | [diff] [blame] | 102 | static inline void cpuhp_lock_acquire(bool bringup) { } |
| 103 | static inline void cpuhp_lock_release(bool bringup) { } |
Peter Zijlstra | 5f4b55e | 2017-09-20 19:00:20 +0200 | [diff] [blame] | 104 | |
Thomas Gleixner | 49dfe2a | 2017-05-24 10:15:43 +0200 | [diff] [blame] | 105 | #endif |
| 106 | |
Thomas Gleixner | cff7d37 | 2016-02-26 18:43:28 +0000 | [diff] [blame] | 107 | /** |
| 108 | * cpuhp_step - Hotplug state machine step |
| 109 | * @name: Name of the step |
| 110 | * @startup: Startup function of the step |
| 111 | * @teardown: Teardown function of the step |
Thomas Gleixner | 757c989 | 2016-02-26 18:43:32 +0000 | [diff] [blame] | 112 | * @cant_stop: Bringup/teardown can't be stopped at this step |
Thomas Gleixner | cff7d37 | 2016-02-26 18:43:28 +0000 | [diff] [blame] | 113 | */ |
| 114 | struct cpuhp_step { |
Thomas Gleixner | cf392d1 | 2016-08-12 19:49:39 +0200 | [diff] [blame] | 115 | const char *name; |
| 116 | union { |
Thomas Gleixner | 3c1627e | 2016-09-05 15:28:36 +0200 | [diff] [blame] | 117 | int (*single)(unsigned int cpu); |
| 118 | int (*multi)(unsigned int cpu, |
| 119 | struct hlist_node *node); |
| 120 | } startup; |
Thomas Gleixner | cf392d1 | 2016-08-12 19:49:39 +0200 | [diff] [blame] | 121 | union { |
Thomas Gleixner | 3c1627e | 2016-09-05 15:28:36 +0200 | [diff] [blame] | 122 | int (*single)(unsigned int cpu); |
| 123 | int (*multi)(unsigned int cpu, |
| 124 | struct hlist_node *node); |
| 125 | } teardown; |
Thomas Gleixner | cf392d1 | 2016-08-12 19:49:39 +0200 | [diff] [blame] | 126 | struct hlist_head list; |
Thomas Gleixner | cf392d1 | 2016-08-12 19:49:39 +0200 | [diff] [blame] | 127 | bool cant_stop; |
| 128 | bool multi_instance; |
Thomas Gleixner | cff7d37 | 2016-02-26 18:43:28 +0000 | [diff] [blame] | 129 | }; |
| 130 | |
Thomas Gleixner | 98f8cdc | 2016-02-26 18:43:31 +0000 | [diff] [blame] | 131 | static DEFINE_MUTEX(cpuhp_state_mutex); |
Lai Jiangshan | 17a2f1c | 2017-12-01 21:50:05 +0800 | [diff] [blame] | 132 | static struct cpuhp_step cpuhp_hp_states[]; |
Thomas Gleixner | cff7d37 | 2016-02-26 18:43:28 +0000 | [diff] [blame] | 133 | |
Thomas Gleixner | a724632 | 2016-08-12 19:49:38 +0200 | [diff] [blame] | 134 | static struct cpuhp_step *cpuhp_get_step(enum cpuhp_state state) |
| 135 | { |
Lai Jiangshan | 17a2f1c | 2017-12-01 21:50:05 +0800 | [diff] [blame] | 136 | return cpuhp_hp_states + state; |
Thomas Gleixner | a724632 | 2016-08-12 19:49:38 +0200 | [diff] [blame] | 137 | } |
| 138 | |
Vincent Donnefort | 453e410 | 2021-02-16 10:35:06 +0000 | [diff] [blame] | 139 | static bool cpuhp_step_empty(bool bringup, struct cpuhp_step *step) |
| 140 | { |
| 141 | return bringup ? !step->startup.single : !step->teardown.single; |
| 142 | } |
| 143 | |
Thomas Gleixner | cff7d37 | 2016-02-26 18:43:28 +0000 | [diff] [blame] | 144 | /** |
| 145 | * cpuhp_invoke_callback _ Invoke the callbacks for a given state |
| 146 | * @cpu: The cpu for which the callback should be invoked |
Peter Zijlstra | 96abb96 | 2017-09-20 19:00:16 +0200 | [diff] [blame] | 147 | * @state: The state to do callbacks for |
Thomas Gleixner | a724632 | 2016-08-12 19:49:38 +0200 | [diff] [blame] | 148 | * @bringup: True if the bringup callback should be invoked |
Peter Zijlstra | 96abb96 | 2017-09-20 19:00:16 +0200 | [diff] [blame] | 149 | * @node: For multi-instance, do a single entry callback for install/remove |
| 150 | * @lastp: For multi-instance rollback, remember how far we got |
Thomas Gleixner | cff7d37 | 2016-02-26 18:43:28 +0000 | [diff] [blame] | 151 | * |
Thomas Gleixner | cf392d1 | 2016-08-12 19:49:39 +0200 | [diff] [blame] | 152 | * Called from cpu hotplug and from the state register machinery. |
Thomas Gleixner | cff7d37 | 2016-02-26 18:43:28 +0000 | [diff] [blame] | 153 | */ |
Thomas Gleixner | a724632 | 2016-08-12 19:49:38 +0200 | [diff] [blame] | 154 | static int cpuhp_invoke_callback(unsigned int cpu, enum cpuhp_state state, |
Peter Zijlstra | 96abb96 | 2017-09-20 19:00:16 +0200 | [diff] [blame] | 155 | bool bringup, struct hlist_node *node, |
| 156 | struct hlist_node **lastp) |
Thomas Gleixner | cff7d37 | 2016-02-26 18:43:28 +0000 | [diff] [blame] | 157 | { |
| 158 | struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu); |
Thomas Gleixner | a724632 | 2016-08-12 19:49:38 +0200 | [diff] [blame] | 159 | struct cpuhp_step *step = cpuhp_get_step(state); |
Thomas Gleixner | cf392d1 | 2016-08-12 19:49:39 +0200 | [diff] [blame] | 160 | int (*cbm)(unsigned int cpu, struct hlist_node *node); |
| 161 | int (*cb)(unsigned int cpu); |
| 162 | int ret, cnt; |
Thomas Gleixner | cff7d37 | 2016-02-26 18:43:28 +0000 | [diff] [blame] | 163 | |
Peter Zijlstra | 1db4948 | 2017-09-20 19:00:21 +0200 | [diff] [blame] | 164 | if (st->fail == state) { |
| 165 | st->fail = CPUHP_INVALID; |
Peter Zijlstra | 1db4948 | 2017-09-20 19:00:21 +0200 | [diff] [blame] | 166 | return -EAGAIN; |
| 167 | } |
| 168 | |
Vincent Donnefort | 453e410 | 2021-02-16 10:35:06 +0000 | [diff] [blame] | 169 | if (cpuhp_step_empty(bringup, step)) { |
| 170 | WARN_ON_ONCE(1); |
| 171 | return 0; |
| 172 | } |
| 173 | |
Thomas Gleixner | cf392d1 | 2016-08-12 19:49:39 +0200 | [diff] [blame] | 174 | if (!step->multi_instance) { |
Peter Zijlstra | 96abb96 | 2017-09-20 19:00:16 +0200 | [diff] [blame] | 175 | WARN_ON_ONCE(lastp && *lastp); |
Thomas Gleixner | 3c1627e | 2016-09-05 15:28:36 +0200 | [diff] [blame] | 176 | cb = bringup ? step->startup.single : step->teardown.single; |
Vincent Donnefort | 453e410 | 2021-02-16 10:35:06 +0000 | [diff] [blame] | 177 | |
Thomas Gleixner | a724632 | 2016-08-12 19:49:38 +0200 | [diff] [blame] | 178 | trace_cpuhp_enter(cpu, st->target, state, cb); |
Thomas Gleixner | cff7d37 | 2016-02-26 18:43:28 +0000 | [diff] [blame] | 179 | ret = cb(cpu); |
Thomas Gleixner | a724632 | 2016-08-12 19:49:38 +0200 | [diff] [blame] | 180 | trace_cpuhp_exit(cpu, st->state, state, ret); |
Thomas Gleixner | cf392d1 | 2016-08-12 19:49:39 +0200 | [diff] [blame] | 181 | return ret; |
| 182 | } |
Thomas Gleixner | 3c1627e | 2016-09-05 15:28:36 +0200 | [diff] [blame] | 183 | cbm = bringup ? step->startup.multi : step->teardown.multi; |
Thomas Gleixner | cf392d1 | 2016-08-12 19:49:39 +0200 | [diff] [blame] | 184 | |
| 185 | /* Single invocation for instance add/remove */ |
| 186 | if (node) { |
Peter Zijlstra | 96abb96 | 2017-09-20 19:00:16 +0200 | [diff] [blame] | 187 | WARN_ON_ONCE(lastp && *lastp); |
Thomas Gleixner | cf392d1 | 2016-08-12 19:49:39 +0200 | [diff] [blame] | 188 | trace_cpuhp_multi_enter(cpu, st->target, state, cbm, node); |
| 189 | ret = cbm(cpu, node); |
| 190 | trace_cpuhp_exit(cpu, st->state, state, ret); |
| 191 | return ret; |
| 192 | } |
| 193 | |
| 194 | /* State transition. Invoke on all instances */ |
| 195 | cnt = 0; |
| 196 | hlist_for_each(node, &step->list) { |
Peter Zijlstra | 96abb96 | 2017-09-20 19:00:16 +0200 | [diff] [blame] | 197 | if (lastp && node == *lastp) |
| 198 | break; |
| 199 | |
Thomas Gleixner | cf392d1 | 2016-08-12 19:49:39 +0200 | [diff] [blame] | 200 | trace_cpuhp_multi_enter(cpu, st->target, state, cbm, node); |
| 201 | ret = cbm(cpu, node); |
| 202 | trace_cpuhp_exit(cpu, st->state, state, ret); |
Peter Zijlstra | 96abb96 | 2017-09-20 19:00:16 +0200 | [diff] [blame] | 203 | if (ret) { |
| 204 | if (!lastp) |
| 205 | goto err; |
| 206 | |
| 207 | *lastp = node; |
| 208 | return ret; |
| 209 | } |
Thomas Gleixner | cf392d1 | 2016-08-12 19:49:39 +0200 | [diff] [blame] | 210 | cnt++; |
| 211 | } |
Peter Zijlstra | 96abb96 | 2017-09-20 19:00:16 +0200 | [diff] [blame] | 212 | if (lastp) |
| 213 | *lastp = NULL; |
Thomas Gleixner | cf392d1 | 2016-08-12 19:49:39 +0200 | [diff] [blame] | 214 | return 0; |
| 215 | err: |
| 216 | /* Rollback the instances if one failed */ |
Thomas Gleixner | 3c1627e | 2016-09-05 15:28:36 +0200 | [diff] [blame] | 217 | cbm = !bringup ? step->startup.multi : step->teardown.multi; |
Thomas Gleixner | cf392d1 | 2016-08-12 19:49:39 +0200 | [diff] [blame] | 218 | if (!cbm) |
| 219 | return ret; |
| 220 | |
| 221 | hlist_for_each(node, &step->list) { |
| 222 | if (!cnt--) |
| 223 | break; |
Peter Zijlstra | 724a868 | 2017-09-20 19:00:18 +0200 | [diff] [blame] | 224 | |
| 225 | trace_cpuhp_multi_enter(cpu, st->target, state, cbm, node); |
| 226 | ret = cbm(cpu, node); |
| 227 | trace_cpuhp_exit(cpu, st->state, state, ret); |
| 228 | /* |
| 229 | * Rollback must not fail, |
| 230 | */ |
| 231 | WARN_ON_ONCE(ret); |
Thomas Gleixner | cff7d37 | 2016-02-26 18:43:28 +0000 | [diff] [blame] | 232 | } |
| 233 | return ret; |
| 234 | } |
| 235 | |
Rusty Russell | 98a79d6 | 2008-12-13 21:19:41 +1030 | [diff] [blame] | 236 | #ifdef CONFIG_SMP |
Arnd Bergmann | fcb3029 | 2018-03-15 16:38:04 +0100 | [diff] [blame] | 237 | static bool cpuhp_is_ap_state(enum cpuhp_state state) |
| 238 | { |
| 239 | /* |
| 240 | * The extra check for CPUHP_TEARDOWN_CPU is only for documentation |
| 241 | * purposes as that state is handled explicitly in cpu_down. |
| 242 | */ |
| 243 | return state > CPUHP_BRINGUP_CPU && state != CPUHP_TEARDOWN_CPU; |
| 244 | } |
| 245 | |
Peter Zijlstra | 5ebe774 | 2017-09-20 19:00:19 +0200 | [diff] [blame] | 246 | static inline void wait_for_ap_thread(struct cpuhp_cpu_state *st, bool bringup) |
| 247 | { |
| 248 | struct completion *done = bringup ? &st->done_up : &st->done_down; |
| 249 | wait_for_completion(done); |
| 250 | } |
| 251 | |
| 252 | static inline void complete_ap_thread(struct cpuhp_cpu_state *st, bool bringup) |
| 253 | { |
| 254 | struct completion *done = bringup ? &st->done_up : &st->done_down; |
| 255 | complete(done); |
| 256 | } |
| 257 | |
| 258 | /* |
| 259 | * The former STARTING/DYING states, ran with IRQs disabled and must not fail. |
| 260 | */ |
| 261 | static bool cpuhp_is_atomic_state(enum cpuhp_state state) |
| 262 | { |
| 263 | return CPUHP_AP_IDLE_DEAD <= state && state < CPUHP_AP_ONLINE; |
| 264 | } |
| 265 | |
Rusty Russell | b3199c0 | 2008-12-30 09:05:14 +1030 | [diff] [blame] | 266 | /* Serializes the updates to cpu_online_mask, cpu_present_mask */ |
Linus Torvalds | aa95387 | 2006-07-23 12:12:16 -0700 | [diff] [blame] | 267 | static DEFINE_MUTEX(cpu_add_remove_lock); |
Thomas Gleixner | 090e77c | 2016-02-26 18:43:23 +0000 | [diff] [blame] | 268 | bool cpuhp_tasks_frozen; |
| 269 | EXPORT_SYMBOL_GPL(cpuhp_tasks_frozen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | |
Lai Jiangshan | 79a6cde | 2010-05-26 14:43:36 -0700 | [diff] [blame] | 271 | /* |
Srivatsa S. Bhat | 93ae4f9 | 2014-03-11 02:04:14 +0530 | [diff] [blame] | 272 | * The following two APIs (cpu_maps_update_begin/done) must be used when |
| 273 | * attempting to serialize the updates to cpu_online_mask & cpu_present_mask. |
Lai Jiangshan | 79a6cde | 2010-05-26 14:43:36 -0700 | [diff] [blame] | 274 | */ |
| 275 | void cpu_maps_update_begin(void) |
| 276 | { |
| 277 | mutex_lock(&cpu_add_remove_lock); |
| 278 | } |
| 279 | |
| 280 | void cpu_maps_update_done(void) |
| 281 | { |
| 282 | mutex_unlock(&cpu_add_remove_lock); |
| 283 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | |
Thomas Gleixner | fc8dffd | 2017-05-24 10:15:40 +0200 | [diff] [blame] | 285 | /* |
| 286 | * If set, cpu_up and cpu_down will return -EBUSY and do nothing. |
Rafael J. Wysocki | e3920fb | 2006-09-25 23:32:48 -0700 | [diff] [blame] | 287 | * Should always be manipulated under cpu_add_remove_lock |
| 288 | */ |
| 289 | static int cpu_hotplug_disabled; |
| 290 | |
Lai Jiangshan | 79a6cde | 2010-05-26 14:43:36 -0700 | [diff] [blame] | 291 | #ifdef CONFIG_HOTPLUG_CPU |
| 292 | |
Thomas Gleixner | fc8dffd | 2017-05-24 10:15:40 +0200 | [diff] [blame] | 293 | DEFINE_STATIC_PERCPU_RWSEM(cpu_hotplug_lock); |
Gautham R. Shenoy | a19423b | 2014-03-11 02:04:03 +0530 | [diff] [blame] | 294 | |
Thomas Gleixner | 8f553c4 | 2017-05-24 10:15:12 +0200 | [diff] [blame] | 295 | void cpus_read_lock(void) |
Ashok Raj | a9d9baa | 2005-11-28 13:43:46 -0800 | [diff] [blame] | 296 | { |
Thomas Gleixner | fc8dffd | 2017-05-24 10:15:40 +0200 | [diff] [blame] | 297 | percpu_down_read(&cpu_hotplug_lock); |
Ashok Raj | a9d9baa | 2005-11-28 13:43:46 -0800 | [diff] [blame] | 298 | } |
Thomas Gleixner | 8f553c4 | 2017-05-24 10:15:12 +0200 | [diff] [blame] | 299 | EXPORT_SYMBOL_GPL(cpus_read_lock); |
Ashok Raj | 90d45d1 | 2005-11-08 21:34:24 -0800 | [diff] [blame] | 300 | |
Waiman Long | 6f4ceee | 2018-07-24 14:26:04 -0400 | [diff] [blame] | 301 | int cpus_read_trylock(void) |
| 302 | { |
| 303 | return percpu_down_read_trylock(&cpu_hotplug_lock); |
| 304 | } |
| 305 | EXPORT_SYMBOL_GPL(cpus_read_trylock); |
| 306 | |
Thomas Gleixner | 8f553c4 | 2017-05-24 10:15:12 +0200 | [diff] [blame] | 307 | void cpus_read_unlock(void) |
Ashok Raj | a9d9baa | 2005-11-28 13:43:46 -0800 | [diff] [blame] | 308 | { |
Thomas Gleixner | fc8dffd | 2017-05-24 10:15:40 +0200 | [diff] [blame] | 309 | percpu_up_read(&cpu_hotplug_lock); |
Ashok Raj | a9d9baa | 2005-11-28 13:43:46 -0800 | [diff] [blame] | 310 | } |
Thomas Gleixner | 8f553c4 | 2017-05-24 10:15:12 +0200 | [diff] [blame] | 311 | EXPORT_SYMBOL_GPL(cpus_read_unlock); |
Ashok Raj | a9d9baa | 2005-11-28 13:43:46 -0800 | [diff] [blame] | 312 | |
Thomas Gleixner | 8f553c4 | 2017-05-24 10:15:12 +0200 | [diff] [blame] | 313 | void cpus_write_lock(void) |
Gautham R Shenoy | d221938 | 2008-01-25 21:08:01 +0100 | [diff] [blame] | 314 | { |
Thomas Gleixner | fc8dffd | 2017-05-24 10:15:40 +0200 | [diff] [blame] | 315 | percpu_down_write(&cpu_hotplug_lock); |
Gautham R Shenoy | d221938 | 2008-01-25 21:08:01 +0100 | [diff] [blame] | 316 | } |
| 317 | |
Thomas Gleixner | 8f553c4 | 2017-05-24 10:15:12 +0200 | [diff] [blame] | 318 | void cpus_write_unlock(void) |
Gautham R Shenoy | d221938 | 2008-01-25 21:08:01 +0100 | [diff] [blame] | 319 | { |
Thomas Gleixner | fc8dffd | 2017-05-24 10:15:40 +0200 | [diff] [blame] | 320 | percpu_up_write(&cpu_hotplug_lock); |
| 321 | } |
| 322 | |
| 323 | void lockdep_assert_cpus_held(void) |
| 324 | { |
Valentin Schneider | ce48c457 | 2018-12-19 18:23:15 +0000 | [diff] [blame] | 325 | /* |
| 326 | * We can't have hotplug operations before userspace starts running, |
| 327 | * and some init codepaths will knowingly not take the hotplug lock. |
| 328 | * This is all valid, so mute lockdep until it makes sense to report |
| 329 | * unheld locks. |
| 330 | */ |
| 331 | if (system_state < SYSTEM_RUNNING) |
| 332 | return; |
| 333 | |
Thomas Gleixner | fc8dffd | 2017-05-24 10:15:40 +0200 | [diff] [blame] | 334 | percpu_rwsem_assert_held(&cpu_hotplug_lock); |
Gautham R Shenoy | d221938 | 2008-01-25 21:08:01 +0100 | [diff] [blame] | 335 | } |
Lai Jiangshan | 79a6cde | 2010-05-26 14:43:36 -0700 | [diff] [blame] | 336 | |
Frederic Weisbecker | 43759fe | 2020-11-11 23:53:13 +0100 | [diff] [blame] | 337 | #ifdef CONFIG_LOCKDEP |
| 338 | int lockdep_is_cpus_held(void) |
| 339 | { |
| 340 | return percpu_rwsem_is_held(&cpu_hotplug_lock); |
| 341 | } |
| 342 | #endif |
| 343 | |
Peter Zijlstra | cb92173 | 2018-09-11 11:51:27 +0200 | [diff] [blame] | 344 | static void lockdep_acquire_cpus_lock(void) |
| 345 | { |
Peter Zijlstra | 1751060 | 2019-10-30 20:01:26 +0100 | [diff] [blame] | 346 | rwsem_acquire(&cpu_hotplug_lock.dep_map, 0, 0, _THIS_IP_); |
Peter Zijlstra | cb92173 | 2018-09-11 11:51:27 +0200 | [diff] [blame] | 347 | } |
| 348 | |
| 349 | static void lockdep_release_cpus_lock(void) |
| 350 | { |
Peter Zijlstra | 1751060 | 2019-10-30 20:01:26 +0100 | [diff] [blame] | 351 | rwsem_release(&cpu_hotplug_lock.dep_map, _THIS_IP_); |
Peter Zijlstra | cb92173 | 2018-09-11 11:51:27 +0200 | [diff] [blame] | 352 | } |
| 353 | |
Srivatsa S. Bhat | 16e53db | 2013-06-12 14:04:36 -0700 | [diff] [blame] | 354 | /* |
| 355 | * Wait for currently running CPU hotplug operations to complete (if any) and |
| 356 | * disable future CPU hotplug (from sysfs). The 'cpu_add_remove_lock' protects |
| 357 | * the 'cpu_hotplug_disabled' flag. The same lock is also acquired by the |
| 358 | * hotplug path before performing hotplug operations. So acquiring that lock |
| 359 | * guarantees mutual exclusion from any currently running hotplug operations. |
| 360 | */ |
| 361 | void cpu_hotplug_disable(void) |
| 362 | { |
| 363 | cpu_maps_update_begin(); |
Vitaly Kuznetsov | 89af7ba | 2015-08-05 00:52:46 -0700 | [diff] [blame] | 364 | cpu_hotplug_disabled++; |
Srivatsa S. Bhat | 16e53db | 2013-06-12 14:04:36 -0700 | [diff] [blame] | 365 | cpu_maps_update_done(); |
| 366 | } |
Vitaly Kuznetsov | 32145c4 | 2015-08-05 00:52:47 -0700 | [diff] [blame] | 367 | EXPORT_SYMBOL_GPL(cpu_hotplug_disable); |
Srivatsa S. Bhat | 16e53db | 2013-06-12 14:04:36 -0700 | [diff] [blame] | 368 | |
Lianwei Wang | 01b4115 | 2016-06-09 23:43:28 -0700 | [diff] [blame] | 369 | static void __cpu_hotplug_enable(void) |
| 370 | { |
| 371 | if (WARN_ONCE(!cpu_hotplug_disabled, "Unbalanced cpu hotplug enable\n")) |
| 372 | return; |
| 373 | cpu_hotplug_disabled--; |
| 374 | } |
| 375 | |
Srivatsa S. Bhat | 16e53db | 2013-06-12 14:04:36 -0700 | [diff] [blame] | 376 | void cpu_hotplug_enable(void) |
| 377 | { |
| 378 | cpu_maps_update_begin(); |
Lianwei Wang | 01b4115 | 2016-06-09 23:43:28 -0700 | [diff] [blame] | 379 | __cpu_hotplug_enable(); |
Srivatsa S. Bhat | 16e53db | 2013-06-12 14:04:36 -0700 | [diff] [blame] | 380 | cpu_maps_update_done(); |
| 381 | } |
Vitaly Kuznetsov | 32145c4 | 2015-08-05 00:52:47 -0700 | [diff] [blame] | 382 | EXPORT_SYMBOL_GPL(cpu_hotplug_enable); |
Peter Zijlstra | cb92173 | 2018-09-11 11:51:27 +0200 | [diff] [blame] | 383 | |
| 384 | #else |
| 385 | |
| 386 | static void lockdep_acquire_cpus_lock(void) |
| 387 | { |
| 388 | } |
| 389 | |
| 390 | static void lockdep_release_cpus_lock(void) |
| 391 | { |
| 392 | } |
| 393 | |
Toshi Kani | b9d10be | 2013-08-12 09:45:53 -0600 | [diff] [blame] | 394 | #endif /* CONFIG_HOTPLUG_CPU */ |
Lai Jiangshan | 79a6cde | 2010-05-26 14:43:36 -0700 | [diff] [blame] | 395 | |
Thomas Gleixner | a74cfff | 2018-11-25 19:33:39 +0100 | [diff] [blame] | 396 | /* |
| 397 | * Architectures that need SMT-specific errata handling during SMT hotplug |
| 398 | * should override this. |
| 399 | */ |
| 400 | void __weak arch_smt_update(void) { } |
| 401 | |
Thomas Gleixner | 0cc3cd2 | 2018-06-29 16:05:48 +0200 | [diff] [blame] | 402 | #ifdef CONFIG_HOTPLUG_SMT |
| 403 | enum cpuhp_smt_control cpu_smt_control __read_mostly = CPU_SMT_ENABLED; |
Thomas Gleixner | bc2d8d26 | 2018-08-07 08:19:57 +0200 | [diff] [blame] | 404 | |
Jiri Kosina | 8e1b706 | 2018-07-13 16:23:23 +0200 | [diff] [blame] | 405 | void __init cpu_smt_disable(bool force) |
Thomas Gleixner | 0cc3cd2 | 2018-06-29 16:05:48 +0200 | [diff] [blame] | 406 | { |
Vitaly Kuznetsov | e1572f1 | 2019-09-16 18:22:56 +0200 | [diff] [blame] | 407 | if (!cpu_smt_possible()) |
Jiri Kosina | 8e1b706 | 2018-07-13 16:23:23 +0200 | [diff] [blame] | 408 | return; |
| 409 | |
| 410 | if (force) { |
Thomas Gleixner | 0cc3cd2 | 2018-06-29 16:05:48 +0200 | [diff] [blame] | 411 | pr_info("SMT: Force disabled\n"); |
| 412 | cpu_smt_control = CPU_SMT_FORCE_DISABLED; |
Jiri Kosina | 8e1b706 | 2018-07-13 16:23:23 +0200 | [diff] [blame] | 413 | } else { |
Borislav Petkov | d0e7d14 | 2018-10-04 19:22:27 +0200 | [diff] [blame] | 414 | pr_info("SMT: disabled\n"); |
Jiri Kosina | 8e1b706 | 2018-07-13 16:23:23 +0200 | [diff] [blame] | 415 | cpu_smt_control = CPU_SMT_DISABLED; |
Thomas Gleixner | 0cc3cd2 | 2018-06-29 16:05:48 +0200 | [diff] [blame] | 416 | } |
Jiri Kosina | 8e1b706 | 2018-07-13 16:23:23 +0200 | [diff] [blame] | 417 | } |
| 418 | |
Thomas Gleixner | fee0aed | 2018-07-13 16:23:24 +0200 | [diff] [blame] | 419 | /* |
| 420 | * The decision whether SMT is supported can only be done after the full |
Josh Poimboeuf | b284909 | 2019-01-30 07:13:58 -0600 | [diff] [blame] | 421 | * CPU identification. Called from architecture code. |
Thomas Gleixner | fee0aed | 2018-07-13 16:23:24 +0200 | [diff] [blame] | 422 | */ |
| 423 | void __init cpu_smt_check_topology(void) |
| 424 | { |
Josh Poimboeuf | b284909 | 2019-01-30 07:13:58 -0600 | [diff] [blame] | 425 | if (!topology_smt_supported()) |
Thomas Gleixner | fee0aed | 2018-07-13 16:23:24 +0200 | [diff] [blame] | 426 | cpu_smt_control = CPU_SMT_NOT_SUPPORTED; |
| 427 | } |
| 428 | |
Jiri Kosina | 8e1b706 | 2018-07-13 16:23:23 +0200 | [diff] [blame] | 429 | static int __init smt_cmdline_disable(char *str) |
| 430 | { |
| 431 | cpu_smt_disable(str && !strcmp(str, "force")); |
Thomas Gleixner | 0cc3cd2 | 2018-06-29 16:05:48 +0200 | [diff] [blame] | 432 | return 0; |
| 433 | } |
| 434 | early_param("nosmt", smt_cmdline_disable); |
| 435 | |
| 436 | static inline bool cpu_smt_allowed(unsigned int cpu) |
| 437 | { |
Josh Poimboeuf | b284909 | 2019-01-30 07:13:58 -0600 | [diff] [blame] | 438 | if (cpu_smt_control == CPU_SMT_ENABLED) |
Thomas Gleixner | 0cc3cd2 | 2018-06-29 16:05:48 +0200 | [diff] [blame] | 439 | return true; |
| 440 | |
Josh Poimboeuf | b284909 | 2019-01-30 07:13:58 -0600 | [diff] [blame] | 441 | if (topology_is_primary_thread(cpu)) |
Thomas Gleixner | 0cc3cd2 | 2018-06-29 16:05:48 +0200 | [diff] [blame] | 442 | return true; |
| 443 | |
| 444 | /* |
| 445 | * On x86 it's required to boot all logical CPUs at least once so |
| 446 | * that the init code can get a chance to set CR4.MCE on each |
Ethon Paul | 182e073 | 2020-04-18 00:40:04 +0800 | [diff] [blame] | 447 | * CPU. Otherwise, a broadcasted MCE observing CR4.MCE=0b on any |
Thomas Gleixner | 0cc3cd2 | 2018-06-29 16:05:48 +0200 | [diff] [blame] | 448 | * core will shutdown the machine. |
| 449 | */ |
Thomas Gleixner | e797bda | 2019-07-22 20:47:16 +0200 | [diff] [blame] | 450 | return !cpumask_test_cpu(cpu, &cpus_booted_once_mask); |
Thomas Gleixner | 0cc3cd2 | 2018-06-29 16:05:48 +0200 | [diff] [blame] | 451 | } |
Vitaly Kuznetsov | e1572f1 | 2019-09-16 18:22:56 +0200 | [diff] [blame] | 452 | |
| 453 | /* Returns true if SMT is not supported of forcefully (irreversibly) disabled */ |
| 454 | bool cpu_smt_possible(void) |
| 455 | { |
| 456 | return cpu_smt_control != CPU_SMT_FORCE_DISABLED && |
| 457 | cpu_smt_control != CPU_SMT_NOT_SUPPORTED; |
| 458 | } |
| 459 | EXPORT_SYMBOL_GPL(cpu_smt_possible); |
Thomas Gleixner | 0cc3cd2 | 2018-06-29 16:05:48 +0200 | [diff] [blame] | 460 | #else |
| 461 | static inline bool cpu_smt_allowed(unsigned int cpu) { return true; } |
| 462 | #endif |
| 463 | |
Peter Zijlstra | 4dddfb5 | 2017-09-20 19:00:17 +0200 | [diff] [blame] | 464 | static inline enum cpuhp_state |
| 465 | cpuhp_set_state(struct cpuhp_cpu_state *st, enum cpuhp_state target) |
| 466 | { |
| 467 | enum cpuhp_state prev_state = st->state; |
Peter Zijlstra | 2ea46c6 | 2021-04-20 20:04:19 +0200 | [diff] [blame] | 468 | bool bringup = st->state < target; |
Peter Zijlstra | 4dddfb5 | 2017-09-20 19:00:17 +0200 | [diff] [blame] | 469 | |
| 470 | st->rollback = false; |
| 471 | st->last = NULL; |
| 472 | |
| 473 | st->target = target; |
| 474 | st->single = false; |
Peter Zijlstra | 2ea46c6 | 2021-04-20 20:04:19 +0200 | [diff] [blame] | 475 | st->bringup = bringup; |
| 476 | if (cpu_dying(st->cpu) != !bringup) |
| 477 | set_cpu_dying(st->cpu, !bringup); |
Peter Zijlstra | 4dddfb5 | 2017-09-20 19:00:17 +0200 | [diff] [blame] | 478 | |
| 479 | return prev_state; |
| 480 | } |
| 481 | |
| 482 | static inline void |
| 483 | cpuhp_reset_state(struct cpuhp_cpu_state *st, enum cpuhp_state prev_state) |
| 484 | { |
Peter Zijlstra | 2ea46c6 | 2021-04-20 20:04:19 +0200 | [diff] [blame] | 485 | bool bringup = !st->bringup; |
| 486 | |
Vincent Donnefort | 453e410 | 2021-02-16 10:35:06 +0000 | [diff] [blame] | 487 | st->target = prev_state; |
| 488 | |
| 489 | /* |
| 490 | * Already rolling back. No need invert the bringup value or to change |
| 491 | * the current state. |
| 492 | */ |
| 493 | if (st->rollback) |
| 494 | return; |
| 495 | |
Peter Zijlstra | 4dddfb5 | 2017-09-20 19:00:17 +0200 | [diff] [blame] | 496 | st->rollback = true; |
| 497 | |
| 498 | /* |
| 499 | * If we have st->last we need to undo partial multi_instance of this |
| 500 | * state first. Otherwise start undo at the previous state. |
| 501 | */ |
| 502 | if (!st->last) { |
| 503 | if (st->bringup) |
| 504 | st->state--; |
| 505 | else |
| 506 | st->state++; |
| 507 | } |
| 508 | |
Peter Zijlstra | 2ea46c6 | 2021-04-20 20:04:19 +0200 | [diff] [blame] | 509 | st->bringup = bringup; |
| 510 | if (cpu_dying(st->cpu) != !bringup) |
| 511 | set_cpu_dying(st->cpu, !bringup); |
Peter Zijlstra | 4dddfb5 | 2017-09-20 19:00:17 +0200 | [diff] [blame] | 512 | } |
| 513 | |
| 514 | /* Regular hotplug invocation of the AP hotplug thread */ |
| 515 | static void __cpuhp_kick_ap(struct cpuhp_cpu_state *st) |
| 516 | { |
| 517 | if (!st->single && st->state == st->target) |
| 518 | return; |
| 519 | |
| 520 | st->result = 0; |
| 521 | /* |
| 522 | * Make sure the above stores are visible before should_run becomes |
| 523 | * true. Paired with the mb() above in cpuhp_thread_fun() |
| 524 | */ |
| 525 | smp_mb(); |
| 526 | st->should_run = true; |
| 527 | wake_up_process(st->thread); |
Peter Zijlstra | 5ebe774 | 2017-09-20 19:00:19 +0200 | [diff] [blame] | 528 | wait_for_ap_thread(st, st->bringup); |
Peter Zijlstra | 4dddfb5 | 2017-09-20 19:00:17 +0200 | [diff] [blame] | 529 | } |
| 530 | |
| 531 | static int cpuhp_kick_ap(struct cpuhp_cpu_state *st, enum cpuhp_state target) |
| 532 | { |
| 533 | enum cpuhp_state prev_state; |
| 534 | int ret; |
| 535 | |
| 536 | prev_state = cpuhp_set_state(st, target); |
| 537 | __cpuhp_kick_ap(st); |
| 538 | if ((ret = st->result)) { |
| 539 | cpuhp_reset_state(st, prev_state); |
| 540 | __cpuhp_kick_ap(st); |
| 541 | } |
| 542 | |
| 543 | return ret; |
| 544 | } |
Thomas Gleixner | 9cd4f1a | 2017-07-04 22:20:23 +0200 | [diff] [blame] | 545 | |
Thomas Gleixner | 8df3e07 | 2016-02-26 18:43:41 +0000 | [diff] [blame] | 546 | static int bringup_wait_for_ap(unsigned int cpu) |
| 547 | { |
| 548 | struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu); |
| 549 | |
Thomas Gleixner | 9cd4f1a | 2017-07-04 22:20:23 +0200 | [diff] [blame] | 550 | /* Wait for the CPU to reach CPUHP_AP_ONLINE_IDLE */ |
Peter Zijlstra | 5ebe774 | 2017-09-20 19:00:19 +0200 | [diff] [blame] | 551 | wait_for_ap_thread(st, true); |
Thomas Gleixner | dea1d0f | 2017-07-11 22:06:24 +0200 | [diff] [blame] | 552 | if (WARN_ON_ONCE((!cpu_online(cpu)))) |
| 553 | return -ECANCELED; |
Thomas Gleixner | 9cd4f1a | 2017-07-04 22:20:23 +0200 | [diff] [blame] | 554 | |
Peter Zijlstra | 45178ac | 2019-12-10 09:34:54 +0100 | [diff] [blame] | 555 | /* Unpark the hotplug thread of the target cpu */ |
Thomas Gleixner | 9cd4f1a | 2017-07-04 22:20:23 +0200 | [diff] [blame] | 556 | kthread_unpark(st->thread); |
| 557 | |
Thomas Gleixner | 0cc3cd2 | 2018-06-29 16:05:48 +0200 | [diff] [blame] | 558 | /* |
| 559 | * SMT soft disabling on X86 requires to bring the CPU out of the |
| 560 | * BIOS 'wait for SIPI' state in order to set the CR4.MCE bit. The |
Jiri Kosina | f560201 | 2019-05-28 21:31:49 +0200 | [diff] [blame] | 561 | * CPU marked itself as booted_once in notify_cpu_starting() so the |
Thomas Gleixner | 0cc3cd2 | 2018-06-29 16:05:48 +0200 | [diff] [blame] | 562 | * cpu_smt_allowed() check will now return false if this is not the |
| 563 | * primary sibling. |
| 564 | */ |
| 565 | if (!cpu_smt_allowed(cpu)) |
| 566 | return -ECANCELED; |
| 567 | |
Peter Zijlstra | 4dddfb5 | 2017-09-20 19:00:17 +0200 | [diff] [blame] | 568 | if (st->target <= CPUHP_AP_ONLINE_IDLE) |
| 569 | return 0; |
| 570 | |
| 571 | return cpuhp_kick_ap(st, st->target); |
Thomas Gleixner | 8df3e07 | 2016-02-26 18:43:41 +0000 | [diff] [blame] | 572 | } |
| 573 | |
Thomas Gleixner | ba99746 | 2016-02-26 18:43:24 +0000 | [diff] [blame] | 574 | static int bringup_cpu(unsigned int cpu) |
| 575 | { |
| 576 | struct task_struct *idle = idle_thread_get(cpu); |
| 577 | int ret; |
| 578 | |
Boris Ostrovsky | aa87717 | 2016-08-03 13:22:28 -0400 | [diff] [blame] | 579 | /* |
| 580 | * Some architectures have to walk the irq descriptors to |
| 581 | * setup the vector space for the cpu which comes online. |
| 582 | * Prevent irq alloc/free across the bringup. |
| 583 | */ |
| 584 | irq_lock_sparse(); |
| 585 | |
Thomas Gleixner | ba99746 | 2016-02-26 18:43:24 +0000 | [diff] [blame] | 586 | /* Arch-specific enabling code. */ |
| 587 | ret = __cpu_up(cpu, idle); |
Boris Ostrovsky | aa87717 | 2016-08-03 13:22:28 -0400 | [diff] [blame] | 588 | irq_unlock_sparse(); |
Thomas Gleixner | 530e9b7 | 2016-12-21 20:19:53 +0100 | [diff] [blame] | 589 | if (ret) |
Thomas Gleixner | ba99746 | 2016-02-26 18:43:24 +0000 | [diff] [blame] | 590 | return ret; |
Thomas Gleixner | 9cd4f1a | 2017-07-04 22:20:23 +0200 | [diff] [blame] | 591 | return bringup_wait_for_ap(cpu); |
Thomas Gleixner | ba99746 | 2016-02-26 18:43:24 +0000 | [diff] [blame] | 592 | } |
| 593 | |
Peter Zijlstra | bf2c59f | 2020-04-01 17:40:33 -0400 | [diff] [blame] | 594 | static int finish_cpu(unsigned int cpu) |
| 595 | { |
| 596 | struct task_struct *idle = idle_thread_get(cpu); |
| 597 | struct mm_struct *mm = idle->active_mm; |
| 598 | |
| 599 | /* |
| 600 | * idle_task_exit() will have switched to &init_mm, now |
| 601 | * clean up any remaining active_mm state. |
| 602 | */ |
| 603 | if (mm != &init_mm) |
| 604 | idle->active_mm = &init_mm; |
| 605 | mmdrop(mm); |
| 606 | return 0; |
| 607 | } |
| 608 | |
Thomas Gleixner | 2e1a348 | 2016-02-26 18:43:37 +0000 | [diff] [blame] | 609 | /* |
| 610 | * Hotplug state machine related functions |
| 611 | */ |
Thomas Gleixner | 2e1a348 | 2016-02-26 18:43:37 +0000 | [diff] [blame] | 612 | |
Vincent Donnefort | 453e410 | 2021-02-16 10:35:06 +0000 | [diff] [blame] | 613 | /* |
| 614 | * Get the next state to run. Empty ones will be skipped. Returns true if a |
| 615 | * state must be run. |
| 616 | * |
| 617 | * st->state will be modified ahead of time, to match state_to_run, as if it |
| 618 | * has already ran. |
| 619 | */ |
| 620 | static bool cpuhp_next_state(bool bringup, |
| 621 | enum cpuhp_state *state_to_run, |
| 622 | struct cpuhp_cpu_state *st, |
| 623 | enum cpuhp_state target) |
Thomas Gleixner | 2e1a348 | 2016-02-26 18:43:37 +0000 | [diff] [blame] | 624 | { |
Vincent Donnefort | 453e410 | 2021-02-16 10:35:06 +0000 | [diff] [blame] | 625 | do { |
| 626 | if (bringup) { |
| 627 | if (st->state >= target) |
| 628 | return false; |
| 629 | |
| 630 | *state_to_run = ++st->state; |
| 631 | } else { |
| 632 | if (st->state <= target) |
| 633 | return false; |
| 634 | |
| 635 | *state_to_run = st->state--; |
| 636 | } |
| 637 | |
| 638 | if (!cpuhp_step_empty(bringup, cpuhp_get_step(*state_to_run))) |
| 639 | break; |
| 640 | } while (true); |
| 641 | |
| 642 | return true; |
| 643 | } |
| 644 | |
| 645 | static int cpuhp_invoke_callback_range(bool bringup, |
| 646 | unsigned int cpu, |
| 647 | struct cpuhp_cpu_state *st, |
| 648 | enum cpuhp_state target) |
| 649 | { |
| 650 | enum cpuhp_state state; |
| 651 | int err = 0; |
| 652 | |
| 653 | while (cpuhp_next_state(bringup, &state, st, target)) { |
| 654 | err = cpuhp_invoke_callback(cpu, state, bringup, NULL, NULL); |
| 655 | if (err) |
| 656 | break; |
| 657 | } |
| 658 | |
| 659 | return err; |
Thomas Gleixner | 2e1a348 | 2016-02-26 18:43:37 +0000 | [diff] [blame] | 660 | } |
| 661 | |
Thomas Gleixner | 206b923 | 2019-03-26 17:36:05 +0100 | [diff] [blame] | 662 | static inline bool can_rollback_cpu(struct cpuhp_cpu_state *st) |
| 663 | { |
| 664 | if (IS_ENABLED(CONFIG_HOTPLUG_CPU)) |
| 665 | return true; |
| 666 | /* |
| 667 | * When CPU hotplug is disabled, then taking the CPU down is not |
| 668 | * possible because takedown_cpu() and the architecture and |
| 669 | * subsystem specific mechanisms are not available. So the CPU |
| 670 | * which would be completely unplugged again needs to stay around |
| 671 | * in the current state. |
| 672 | */ |
| 673 | return st->state <= CPUHP_BRINGUP_CPU; |
| 674 | } |
| 675 | |
Thomas Gleixner | 2e1a348 | 2016-02-26 18:43:37 +0000 | [diff] [blame] | 676 | static int cpuhp_up_callbacks(unsigned int cpu, struct cpuhp_cpu_state *st, |
Thomas Gleixner | a724632 | 2016-08-12 19:49:38 +0200 | [diff] [blame] | 677 | enum cpuhp_state target) |
Thomas Gleixner | 2e1a348 | 2016-02-26 18:43:37 +0000 | [diff] [blame] | 678 | { |
| 679 | enum cpuhp_state prev_state = st->state; |
| 680 | int ret = 0; |
| 681 | |
Vincent Donnefort | 453e410 | 2021-02-16 10:35:06 +0000 | [diff] [blame] | 682 | ret = cpuhp_invoke_callback_range(true, cpu, st, target); |
| 683 | if (ret) { |
| 684 | cpuhp_reset_state(st, prev_state); |
| 685 | if (can_rollback_cpu(st)) |
| 686 | WARN_ON(cpuhp_invoke_callback_range(false, cpu, st, |
| 687 | prev_state)); |
Thomas Gleixner | 2e1a348 | 2016-02-26 18:43:37 +0000 | [diff] [blame] | 688 | } |
| 689 | return ret; |
| 690 | } |
| 691 | |
Thomas Gleixner | 4cb28ce | 2016-02-26 18:43:38 +0000 | [diff] [blame] | 692 | /* |
| 693 | * The cpu hotplug threads manage the bringup and teardown of the cpus |
| 694 | */ |
| 695 | static void cpuhp_create(unsigned int cpu) |
| 696 | { |
| 697 | struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu); |
| 698 | |
Peter Zijlstra | 5ebe774 | 2017-09-20 19:00:19 +0200 | [diff] [blame] | 699 | init_completion(&st->done_up); |
| 700 | init_completion(&st->done_down); |
Peter Zijlstra | 2ea46c6 | 2021-04-20 20:04:19 +0200 | [diff] [blame] | 701 | st->cpu = cpu; |
Thomas Gleixner | 4cb28ce | 2016-02-26 18:43:38 +0000 | [diff] [blame] | 702 | } |
| 703 | |
| 704 | static int cpuhp_should_run(unsigned int cpu) |
| 705 | { |
| 706 | struct cpuhp_cpu_state *st = this_cpu_ptr(&cpuhp_state); |
| 707 | |
| 708 | return st->should_run; |
| 709 | } |
| 710 | |
Thomas Gleixner | 4cb28ce | 2016-02-26 18:43:38 +0000 | [diff] [blame] | 711 | /* |
| 712 | * Execute teardown/startup callbacks on the plugged cpu. Also used to invoke |
| 713 | * callbacks when a state gets [un]installed at runtime. |
Peter Zijlstra | 4dddfb5 | 2017-09-20 19:00:17 +0200 | [diff] [blame] | 714 | * |
| 715 | * Each invocation of this function by the smpboot thread does a single AP |
| 716 | * state callback. |
| 717 | * |
| 718 | * It has 3 modes of operation: |
| 719 | * - single: runs st->cb_state |
| 720 | * - up: runs ++st->state, while st->state < st->target |
| 721 | * - down: runs st->state--, while st->state > st->target |
| 722 | * |
| 723 | * When complete or on error, should_run is cleared and the completion is fired. |
Thomas Gleixner | 4cb28ce | 2016-02-26 18:43:38 +0000 | [diff] [blame] | 724 | */ |
| 725 | static void cpuhp_thread_fun(unsigned int cpu) |
| 726 | { |
| 727 | struct cpuhp_cpu_state *st = this_cpu_ptr(&cpuhp_state); |
Peter Zijlstra | 4dddfb5 | 2017-09-20 19:00:17 +0200 | [diff] [blame] | 728 | bool bringup = st->bringup; |
| 729 | enum cpuhp_state state; |
Thomas Gleixner | 4cb28ce | 2016-02-26 18:43:38 +0000 | [diff] [blame] | 730 | |
Neeraj Upadhyay | f8b7530 | 2018-09-05 11:22:07 +0530 | [diff] [blame] | 731 | if (WARN_ON_ONCE(!st->should_run)) |
| 732 | return; |
| 733 | |
Thomas Gleixner | 4cb28ce | 2016-02-26 18:43:38 +0000 | [diff] [blame] | 734 | /* |
Peter Zijlstra | 4dddfb5 | 2017-09-20 19:00:17 +0200 | [diff] [blame] | 735 | * ACQUIRE for the cpuhp_should_run() load of ->should_run. Ensures |
| 736 | * that if we see ->should_run we also see the rest of the state. |
Thomas Gleixner | 4cb28ce | 2016-02-26 18:43:38 +0000 | [diff] [blame] | 737 | */ |
| 738 | smp_mb(); |
Peter Zijlstra | 4dddfb5 | 2017-09-20 19:00:17 +0200 | [diff] [blame] | 739 | |
Peter Zijlstra | cb92173 | 2018-09-11 11:51:27 +0200 | [diff] [blame] | 740 | /* |
| 741 | * The BP holds the hotplug lock, but we're now running on the AP, |
| 742 | * ensure that anybody asserting the lock is held, will actually find |
| 743 | * it so. |
| 744 | */ |
| 745 | lockdep_acquire_cpus_lock(); |
Peter Zijlstra | 5f4b55e | 2017-09-20 19:00:20 +0200 | [diff] [blame] | 746 | cpuhp_lock_acquire(bringup); |
Peter Zijlstra | 4dddfb5 | 2017-09-20 19:00:17 +0200 | [diff] [blame] | 747 | |
Thomas Gleixner | a724632 | 2016-08-12 19:49:38 +0200 | [diff] [blame] | 748 | if (st->single) { |
Peter Zijlstra | 4dddfb5 | 2017-09-20 19:00:17 +0200 | [diff] [blame] | 749 | state = st->cb_state; |
| 750 | st->should_run = false; |
Thomas Gleixner | 4cb28ce | 2016-02-26 18:43:38 +0000 | [diff] [blame] | 751 | } else { |
Vincent Donnefort | 453e410 | 2021-02-16 10:35:06 +0000 | [diff] [blame] | 752 | st->should_run = cpuhp_next_state(bringup, &state, st, st->target); |
| 753 | if (!st->should_run) |
| 754 | goto end; |
Thomas Gleixner | 4cb28ce | 2016-02-26 18:43:38 +0000 | [diff] [blame] | 755 | } |
Peter Zijlstra | 4dddfb5 | 2017-09-20 19:00:17 +0200 | [diff] [blame] | 756 | |
| 757 | WARN_ON_ONCE(!cpuhp_is_ap_state(state)); |
| 758 | |
Peter Zijlstra | 4dddfb5 | 2017-09-20 19:00:17 +0200 | [diff] [blame] | 759 | if (cpuhp_is_atomic_state(state)) { |
| 760 | local_irq_disable(); |
| 761 | st->result = cpuhp_invoke_callback(cpu, state, bringup, st->node, &st->last); |
| 762 | local_irq_enable(); |
| 763 | |
| 764 | /* |
| 765 | * STARTING/DYING must not fail! |
| 766 | */ |
| 767 | WARN_ON_ONCE(st->result); |
| 768 | } else { |
| 769 | st->result = cpuhp_invoke_callback(cpu, state, bringup, st->node, &st->last); |
| 770 | } |
| 771 | |
| 772 | if (st->result) { |
| 773 | /* |
| 774 | * If we fail on a rollback, we're up a creek without no |
| 775 | * paddle, no way forward, no way back. We loose, thanks for |
| 776 | * playing. |
| 777 | */ |
| 778 | WARN_ON_ONCE(st->rollback); |
| 779 | st->should_run = false; |
| 780 | } |
| 781 | |
Vincent Donnefort | 453e410 | 2021-02-16 10:35:06 +0000 | [diff] [blame] | 782 | end: |
Peter Zijlstra | 5f4b55e | 2017-09-20 19:00:20 +0200 | [diff] [blame] | 783 | cpuhp_lock_release(bringup); |
Peter Zijlstra | cb92173 | 2018-09-11 11:51:27 +0200 | [diff] [blame] | 784 | lockdep_release_cpus_lock(); |
Peter Zijlstra | 4dddfb5 | 2017-09-20 19:00:17 +0200 | [diff] [blame] | 785 | |
| 786 | if (!st->should_run) |
Peter Zijlstra | 5ebe774 | 2017-09-20 19:00:19 +0200 | [diff] [blame] | 787 | complete_ap_thread(st, bringup); |
Thomas Gleixner | 4cb28ce | 2016-02-26 18:43:38 +0000 | [diff] [blame] | 788 | } |
| 789 | |
| 790 | /* Invoke a single callback on a remote cpu */ |
Thomas Gleixner | a724632 | 2016-08-12 19:49:38 +0200 | [diff] [blame] | 791 | static int |
Thomas Gleixner | cf392d1 | 2016-08-12 19:49:39 +0200 | [diff] [blame] | 792 | cpuhp_invoke_ap_callback(int cpu, enum cpuhp_state state, bool bringup, |
| 793 | struct hlist_node *node) |
Thomas Gleixner | 4cb28ce | 2016-02-26 18:43:38 +0000 | [diff] [blame] | 794 | { |
| 795 | struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu); |
Peter Zijlstra | 4dddfb5 | 2017-09-20 19:00:17 +0200 | [diff] [blame] | 796 | int ret; |
Thomas Gleixner | 4cb28ce | 2016-02-26 18:43:38 +0000 | [diff] [blame] | 797 | |
| 798 | if (!cpu_online(cpu)) |
| 799 | return 0; |
| 800 | |
Peter Zijlstra | 5f4b55e | 2017-09-20 19:00:20 +0200 | [diff] [blame] | 801 | cpuhp_lock_acquire(false); |
| 802 | cpuhp_lock_release(false); |
| 803 | |
| 804 | cpuhp_lock_acquire(true); |
| 805 | cpuhp_lock_release(true); |
Thomas Gleixner | 49dfe2a | 2017-05-24 10:15:43 +0200 | [diff] [blame] | 806 | |
Thomas Gleixner | 6a4e245 | 2016-07-13 17:16:03 +0000 | [diff] [blame] | 807 | /* |
| 808 | * If we are up and running, use the hotplug thread. For early calls |
| 809 | * we invoke the thread function directly. |
| 810 | */ |
| 811 | if (!st->thread) |
Peter Zijlstra | 96abb96 | 2017-09-20 19:00:16 +0200 | [diff] [blame] | 812 | return cpuhp_invoke_callback(cpu, state, bringup, node, NULL); |
Thomas Gleixner | 6a4e245 | 2016-07-13 17:16:03 +0000 | [diff] [blame] | 813 | |
Peter Zijlstra | 4dddfb5 | 2017-09-20 19:00:17 +0200 | [diff] [blame] | 814 | st->rollback = false; |
| 815 | st->last = NULL; |
| 816 | |
| 817 | st->node = node; |
| 818 | st->bringup = bringup; |
Thomas Gleixner | 4cb28ce | 2016-02-26 18:43:38 +0000 | [diff] [blame] | 819 | st->cb_state = state; |
Thomas Gleixner | a724632 | 2016-08-12 19:49:38 +0200 | [diff] [blame] | 820 | st->single = true; |
Peter Zijlstra | 4dddfb5 | 2017-09-20 19:00:17 +0200 | [diff] [blame] | 821 | |
| 822 | __cpuhp_kick_ap(st); |
Thomas Gleixner | a724632 | 2016-08-12 19:49:38 +0200 | [diff] [blame] | 823 | |
Thomas Gleixner | 4cb28ce | 2016-02-26 18:43:38 +0000 | [diff] [blame] | 824 | /* |
Peter Zijlstra | 4dddfb5 | 2017-09-20 19:00:17 +0200 | [diff] [blame] | 825 | * If we failed and did a partial, do a rollback. |
Thomas Gleixner | 4cb28ce | 2016-02-26 18:43:38 +0000 | [diff] [blame] | 826 | */ |
Peter Zijlstra | 4dddfb5 | 2017-09-20 19:00:17 +0200 | [diff] [blame] | 827 | if ((ret = st->result) && st->last) { |
| 828 | st->rollback = true; |
| 829 | st->bringup = !bringup; |
Thomas Gleixner | 4cb28ce | 2016-02-26 18:43:38 +0000 | [diff] [blame] | 830 | |
Peter Zijlstra | 4dddfb5 | 2017-09-20 19:00:17 +0200 | [diff] [blame] | 831 | __cpuhp_kick_ap(st); |
| 832 | } |
| 833 | |
Thomas Gleixner | 1f7c70d | 2017-10-21 16:06:52 +0200 | [diff] [blame] | 834 | /* |
| 835 | * Clean up the leftovers so the next hotplug operation wont use stale |
| 836 | * data. |
| 837 | */ |
| 838 | st->node = st->last = NULL; |
Peter Zijlstra | 4dddfb5 | 2017-09-20 19:00:17 +0200 | [diff] [blame] | 839 | return ret; |
Thomas Gleixner | 1cf4f62 | 2016-02-26 18:43:39 +0000 | [diff] [blame] | 840 | } |
| 841 | |
| 842 | static int cpuhp_kick_ap_work(unsigned int cpu) |
| 843 | { |
| 844 | struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu); |
Peter Zijlstra | 4dddfb5 | 2017-09-20 19:00:17 +0200 | [diff] [blame] | 845 | enum cpuhp_state prev_state = st->state; |
| 846 | int ret; |
Thomas Gleixner | 1cf4f62 | 2016-02-26 18:43:39 +0000 | [diff] [blame] | 847 | |
Peter Zijlstra | 5f4b55e | 2017-09-20 19:00:20 +0200 | [diff] [blame] | 848 | cpuhp_lock_acquire(false); |
| 849 | cpuhp_lock_release(false); |
| 850 | |
| 851 | cpuhp_lock_acquire(true); |
| 852 | cpuhp_lock_release(true); |
Peter Zijlstra | 4dddfb5 | 2017-09-20 19:00:17 +0200 | [diff] [blame] | 853 | |
| 854 | trace_cpuhp_enter(cpu, st->target, prev_state, cpuhp_kick_ap_work); |
| 855 | ret = cpuhp_kick_ap(st, st->target); |
| 856 | trace_cpuhp_exit(cpu, st->state, prev_state, ret); |
| 857 | |
| 858 | return ret; |
Thomas Gleixner | 4cb28ce | 2016-02-26 18:43:38 +0000 | [diff] [blame] | 859 | } |
| 860 | |
| 861 | static struct smp_hotplug_thread cpuhp_threads = { |
| 862 | .store = &cpuhp_state.thread, |
| 863 | .create = &cpuhp_create, |
| 864 | .thread_should_run = cpuhp_should_run, |
| 865 | .thread_fn = cpuhp_thread_fun, |
| 866 | .thread_comm = "cpuhp/%u", |
| 867 | .selfparking = true, |
| 868 | }; |
| 869 | |
| 870 | void __init cpuhp_threads_init(void) |
| 871 | { |
| 872 | BUG_ON(smpboot_register_percpu_thread(&cpuhp_threads)); |
| 873 | kthread_unpark(this_cpu_read(cpuhp_state.thread)); |
| 874 | } |
| 875 | |
Michal Hocko | 777c6e0 | 2016-12-07 14:54:38 +0100 | [diff] [blame] | 876 | #ifdef CONFIG_HOTPLUG_CPU |
Nicholas Piggin | 8ff0039 | 2020-11-26 20:25:29 +1000 | [diff] [blame] | 877 | #ifndef arch_clear_mm_cpumask_cpu |
| 878 | #define arch_clear_mm_cpumask_cpu(cpu, mm) cpumask_clear_cpu(cpu, mm_cpumask(mm)) |
| 879 | #endif |
| 880 | |
Anton Vorontsov | e4cc2f8 | 2012-05-31 16:26:26 -0700 | [diff] [blame] | 881 | /** |
| 882 | * clear_tasks_mm_cpumask - Safely clear tasks' mm_cpumask for a CPU |
| 883 | * @cpu: a CPU id |
| 884 | * |
| 885 | * This function walks all processes, finds a valid mm struct for each one and |
| 886 | * then clears a corresponding bit in mm's cpumask. While this all sounds |
| 887 | * trivial, there are various non-obvious corner cases, which this function |
| 888 | * tries to solve in a safe manner. |
| 889 | * |
| 890 | * Also note that the function uses a somewhat relaxed locking scheme, so it may |
| 891 | * be called only for an already offlined CPU. |
| 892 | */ |
Anton Vorontsov | cb79295 | 2012-05-31 16:26:22 -0700 | [diff] [blame] | 893 | void clear_tasks_mm_cpumask(int cpu) |
| 894 | { |
| 895 | struct task_struct *p; |
| 896 | |
| 897 | /* |
| 898 | * This function is called after the cpu is taken down and marked |
| 899 | * offline, so its not like new tasks will ever get this cpu set in |
| 900 | * their mm mask. -- Peter Zijlstra |
| 901 | * Thus, we may use rcu_read_lock() here, instead of grabbing |
| 902 | * full-fledged tasklist_lock. |
| 903 | */ |
Anton Vorontsov | e4cc2f8 | 2012-05-31 16:26:26 -0700 | [diff] [blame] | 904 | WARN_ON(cpu_online(cpu)); |
Anton Vorontsov | cb79295 | 2012-05-31 16:26:22 -0700 | [diff] [blame] | 905 | rcu_read_lock(); |
| 906 | for_each_process(p) { |
| 907 | struct task_struct *t; |
| 908 | |
Anton Vorontsov | e4cc2f8 | 2012-05-31 16:26:26 -0700 | [diff] [blame] | 909 | /* |
| 910 | * Main thread might exit, but other threads may still have |
| 911 | * a valid mm. Find one. |
| 912 | */ |
Anton Vorontsov | cb79295 | 2012-05-31 16:26:22 -0700 | [diff] [blame] | 913 | t = find_lock_task_mm(p); |
| 914 | if (!t) |
| 915 | continue; |
Nicholas Piggin | 8ff0039 | 2020-11-26 20:25:29 +1000 | [diff] [blame] | 916 | arch_clear_mm_cpumask_cpu(cpu, t->mm); |
Anton Vorontsov | cb79295 | 2012-05-31 16:26:22 -0700 | [diff] [blame] | 917 | task_unlock(t); |
| 918 | } |
| 919 | rcu_read_unlock(); |
| 920 | } |
| 921 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 922 | /* Take this CPU down. */ |
Mathias Krause | 71cf5ae | 2015-07-19 20:06:22 +0200 | [diff] [blame] | 923 | static int take_cpu_down(void *_param) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 924 | { |
Thomas Gleixner | 4baa0af | 2016-02-26 18:43:29 +0000 | [diff] [blame] | 925 | struct cpuhp_cpu_state *st = this_cpu_ptr(&cpuhp_state); |
| 926 | enum cpuhp_state target = max((int)st->target, CPUHP_AP_OFFLINE); |
Thomas Gleixner | 090e77c | 2016-02-26 18:43:23 +0000 | [diff] [blame] | 927 | int err, cpu = smp_processor_id(); |
Peter Zijlstra | 724a868 | 2017-09-20 19:00:18 +0200 | [diff] [blame] | 928 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 929 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 930 | /* Ensure this CPU doesn't handle any more interrupts. */ |
| 931 | err = __cpu_disable(); |
| 932 | if (err < 0) |
Zwane Mwaikambo | f370513 | 2005-06-25 14:54:50 -0700 | [diff] [blame] | 933 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 934 | |
Thomas Gleixner | a724632 | 2016-08-12 19:49:38 +0200 | [diff] [blame] | 935 | /* |
Vincent Donnefort | 453e410 | 2021-02-16 10:35:06 +0000 | [diff] [blame] | 936 | * Must be called from CPUHP_TEARDOWN_CPU, which means, as we are going |
| 937 | * down, that the current state is CPUHP_TEARDOWN_CPU - 1. |
Thomas Gleixner | a724632 | 2016-08-12 19:49:38 +0200 | [diff] [blame] | 938 | */ |
Vincent Donnefort | 453e410 | 2021-02-16 10:35:06 +0000 | [diff] [blame] | 939 | WARN_ON(st->state != (CPUHP_TEARDOWN_CPU - 1)); |
| 940 | |
Thomas Gleixner | 4baa0af | 2016-02-26 18:43:29 +0000 | [diff] [blame] | 941 | /* Invoke the former CPU_DYING callbacks */ |
Vincent Donnefort | 453e410 | 2021-02-16 10:35:06 +0000 | [diff] [blame] | 942 | ret = cpuhp_invoke_callback_range(false, cpu, st, target); |
| 943 | |
| 944 | /* |
| 945 | * DYING must not fail! |
| 946 | */ |
| 947 | WARN_ON_ONCE(ret); |
Thomas Gleixner | 4baa0af | 2016-02-26 18:43:29 +0000 | [diff] [blame] | 948 | |
Thomas Gleixner | 52c063d | 2015-04-03 02:37:24 +0200 | [diff] [blame] | 949 | /* Give up timekeeping duties */ |
| 950 | tick_handover_do_timer(); |
Thomas Gleixner | 1b72d43 | 2019-03-21 16:39:20 +0100 | [diff] [blame] | 951 | /* Remove CPU from timer broadcasting */ |
| 952 | tick_offline_cpu(cpu); |
Thomas Gleixner | 14e568e | 2013-01-31 12:11:14 +0000 | [diff] [blame] | 953 | /* Park the stopper thread */ |
Thomas Gleixner | 090e77c | 2016-02-26 18:43:23 +0000 | [diff] [blame] | 954 | stop_machine_park(cpu); |
Zwane Mwaikambo | f370513 | 2005-06-25 14:54:50 -0700 | [diff] [blame] | 955 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 956 | } |
| 957 | |
Thomas Gleixner | 9845817 | 2016-02-26 18:43:25 +0000 | [diff] [blame] | 958 | static int takedown_cpu(unsigned int cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 959 | { |
Thomas Gleixner | e69aab1 | 2016-02-26 18:43:43 +0000 | [diff] [blame] | 960 | struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu); |
Thomas Gleixner | 9845817 | 2016-02-26 18:43:25 +0000 | [diff] [blame] | 961 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 962 | |
Thomas Gleixner | 2a58c52 | 2016-03-10 20:42:08 +0100 | [diff] [blame] | 963 | /* Park the smpboot threads */ |
Thomas Gleixner | 1cf4f62 | 2016-02-26 18:43:39 +0000 | [diff] [blame] | 964 | kthread_park(per_cpu_ptr(&cpuhp_state, cpu)->thread); |
| 965 | |
Peter Zijlstra | 6acce3e | 2013-10-11 14:38:20 +0200 | [diff] [blame] | 966 | /* |
Thomas Gleixner | a899418 | 2015-07-05 17:12:30 +0000 | [diff] [blame] | 967 | * Prevent irq alloc/free while the dying cpu reorganizes the |
| 968 | * interrupt affinities. |
| 969 | */ |
| 970 | irq_lock_sparse(); |
| 971 | |
| 972 | /* |
Peter Zijlstra | 6acce3e | 2013-10-11 14:38:20 +0200 | [diff] [blame] | 973 | * So now all preempt/rcu users must observe !cpu_active(). |
| 974 | */ |
Sebastian Andrzej Siewior | 210e213 | 2017-05-24 10:15:28 +0200 | [diff] [blame] | 975 | err = stop_machine_cpuslocked(take_cpu_down, NULL, cpumask_of(cpu)); |
Rusty Russell | 0432158 | 2008-07-28 12:16:29 -0500 | [diff] [blame] | 976 | if (err) { |
Sebastian Andrzej Siewior | 3b9d6da | 2016-04-08 14:40:15 +0200 | [diff] [blame] | 977 | /* CPU refused to die */ |
Thomas Gleixner | a899418 | 2015-07-05 17:12:30 +0000 | [diff] [blame] | 978 | irq_unlock_sparse(); |
Sebastian Andrzej Siewior | 3b9d6da | 2016-04-08 14:40:15 +0200 | [diff] [blame] | 979 | /* Unpark the hotplug thread so we can rollback there */ |
| 980 | kthread_unpark(per_cpu_ptr(&cpuhp_state, cpu)->thread); |
Thomas Gleixner | 9845817 | 2016-02-26 18:43:25 +0000 | [diff] [blame] | 981 | return err; |
Satoru Takeuchi | 8fa1d7d | 2006-10-28 10:38:57 -0700 | [diff] [blame] | 982 | } |
Rusty Russell | 0432158 | 2008-07-28 12:16:29 -0500 | [diff] [blame] | 983 | BUG_ON(cpu_online(cpu)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 984 | |
Peter Zijlstra | 48c5ccae | 2010-11-13 19:32:29 +0100 | [diff] [blame] | 985 | /* |
Brendan Jackman | 5b1ead6 | 2017-12-06 10:59:11 +0000 | [diff] [blame] | 986 | * The teardown callback for CPUHP_AP_SCHED_STARTING will have removed |
| 987 | * all runnable tasks from the CPU, there's only the idle task left now |
Peter Zijlstra | 48c5ccae | 2010-11-13 19:32:29 +0100 | [diff] [blame] | 988 | * that the migration thread is done doing the stop_machine thing. |
Peter Zijlstra | 51a96c7 | 2010-11-19 20:37:53 +0100 | [diff] [blame] | 989 | * |
| 990 | * Wait for the stop thread to go away. |
Peter Zijlstra | 48c5ccae | 2010-11-13 19:32:29 +0100 | [diff] [blame] | 991 | */ |
Peter Zijlstra | 5ebe774 | 2017-09-20 19:00:19 +0200 | [diff] [blame] | 992 | wait_for_ap_thread(st, false); |
Thomas Gleixner | e69aab1 | 2016-02-26 18:43:43 +0000 | [diff] [blame] | 993 | BUG_ON(st->state != CPUHP_AP_IDLE_DEAD); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 994 | |
Thomas Gleixner | a899418 | 2015-07-05 17:12:30 +0000 | [diff] [blame] | 995 | /* Interrupts are moved away from the dying cpu, reenable alloc/free */ |
| 996 | irq_unlock_sparse(); |
| 997 | |
Preeti U Murthy | 345527b | 2015-03-30 14:59:19 +0530 | [diff] [blame] | 998 | hotplug_cpu__broadcast_tick_pull(cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 999 | /* This actually kills the CPU. */ |
| 1000 | __cpu_die(cpu); |
| 1001 | |
Thomas Gleixner | a49b116 | 2015-04-03 02:38:05 +0200 | [diff] [blame] | 1002 | tick_cleanup_dead_cpu(cpu); |
Paul E. McKenney | a58163d | 2017-06-20 12:11:34 -0700 | [diff] [blame] | 1003 | rcutree_migrate_callbacks(cpu); |
Thomas Gleixner | 9845817 | 2016-02-26 18:43:25 +0000 | [diff] [blame] | 1004 | return 0; |
| 1005 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1006 | |
Thomas Gleixner | 71f87b2 | 2016-03-03 10:52:10 +0100 | [diff] [blame] | 1007 | static void cpuhp_complete_idle_dead(void *arg) |
| 1008 | { |
| 1009 | struct cpuhp_cpu_state *st = arg; |
| 1010 | |
Peter Zijlstra | 5ebe774 | 2017-09-20 19:00:19 +0200 | [diff] [blame] | 1011 | complete_ap_thread(st, false); |
Thomas Gleixner | 71f87b2 | 2016-03-03 10:52:10 +0100 | [diff] [blame] | 1012 | } |
| 1013 | |
Thomas Gleixner | e69aab1 | 2016-02-26 18:43:43 +0000 | [diff] [blame] | 1014 | void cpuhp_report_idle_dead(void) |
| 1015 | { |
| 1016 | struct cpuhp_cpu_state *st = this_cpu_ptr(&cpuhp_state); |
| 1017 | |
| 1018 | BUG_ON(st->state != CPUHP_AP_OFFLINE); |
Thomas Gleixner | 27d50c7 | 2016-02-26 18:43:44 +0000 | [diff] [blame] | 1019 | rcu_report_dead(smp_processor_id()); |
Thomas Gleixner | 71f87b2 | 2016-03-03 10:52:10 +0100 | [diff] [blame] | 1020 | st->state = CPUHP_AP_IDLE_DEAD; |
| 1021 | /* |
| 1022 | * We cannot call complete after rcu_report_dead() so we delegate it |
| 1023 | * to an online cpu. |
| 1024 | */ |
| 1025 | smp_call_function_single(cpumask_first(cpu_online_mask), |
| 1026 | cpuhp_complete_idle_dead, st, 0); |
Thomas Gleixner | e69aab1 | 2016-02-26 18:43:43 +0000 | [diff] [blame] | 1027 | } |
| 1028 | |
Peter Zijlstra | 4dddfb5 | 2017-09-20 19:00:17 +0200 | [diff] [blame] | 1029 | static int cpuhp_down_callbacks(unsigned int cpu, struct cpuhp_cpu_state *st, |
| 1030 | enum cpuhp_state target) |
| 1031 | { |
| 1032 | enum cpuhp_state prev_state = st->state; |
| 1033 | int ret = 0; |
| 1034 | |
Vincent Donnefort | 453e410 | 2021-02-16 10:35:06 +0000 | [diff] [blame] | 1035 | ret = cpuhp_invoke_callback_range(false, cpu, st, target); |
| 1036 | if (ret) { |
| 1037 | |
| 1038 | cpuhp_reset_state(st, prev_state); |
| 1039 | |
| 1040 | if (st->state < prev_state) |
| 1041 | WARN_ON(cpuhp_invoke_callback_range(true, cpu, st, |
| 1042 | prev_state)); |
Peter Zijlstra | 4dddfb5 | 2017-09-20 19:00:17 +0200 | [diff] [blame] | 1043 | } |
Vincent Donnefort | 453e410 | 2021-02-16 10:35:06 +0000 | [diff] [blame] | 1044 | |
Peter Zijlstra | 4dddfb5 | 2017-09-20 19:00:17 +0200 | [diff] [blame] | 1045 | return ret; |
| 1046 | } |
Thomas Gleixner | cff7d37 | 2016-02-26 18:43:28 +0000 | [diff] [blame] | 1047 | |
Thomas Gleixner | 9845817 | 2016-02-26 18:43:25 +0000 | [diff] [blame] | 1048 | /* Requires cpu_add_remove_lock to be held */ |
Thomas Gleixner | af1f404 | 2016-02-26 18:43:30 +0000 | [diff] [blame] | 1049 | static int __ref _cpu_down(unsigned int cpu, int tasks_frozen, |
| 1050 | enum cpuhp_state target) |
Thomas Gleixner | 9845817 | 2016-02-26 18:43:25 +0000 | [diff] [blame] | 1051 | { |
Thomas Gleixner | cff7d37 | 2016-02-26 18:43:28 +0000 | [diff] [blame] | 1052 | struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu); |
| 1053 | int prev_state, ret = 0; |
Thomas Gleixner | 9845817 | 2016-02-26 18:43:25 +0000 | [diff] [blame] | 1054 | |
| 1055 | if (num_online_cpus() == 1) |
| 1056 | return -EBUSY; |
| 1057 | |
Thomas Gleixner | 757c989 | 2016-02-26 18:43:32 +0000 | [diff] [blame] | 1058 | if (!cpu_present(cpu)) |
Thomas Gleixner | 9845817 | 2016-02-26 18:43:25 +0000 | [diff] [blame] | 1059 | return -EINVAL; |
| 1060 | |
Thomas Gleixner | 8f553c4 | 2017-05-24 10:15:12 +0200 | [diff] [blame] | 1061 | cpus_write_lock(); |
Thomas Gleixner | 9845817 | 2016-02-26 18:43:25 +0000 | [diff] [blame] | 1062 | |
| 1063 | cpuhp_tasks_frozen = tasks_frozen; |
| 1064 | |
Peter Zijlstra | 4dddfb5 | 2017-09-20 19:00:17 +0200 | [diff] [blame] | 1065 | prev_state = cpuhp_set_state(st, target); |
Thomas Gleixner | 1cf4f62 | 2016-02-26 18:43:39 +0000 | [diff] [blame] | 1066 | /* |
| 1067 | * If the current CPU state is in the range of the AP hotplug thread, |
| 1068 | * then we need to kick the thread. |
| 1069 | */ |
Thomas Gleixner | 8df3e07 | 2016-02-26 18:43:41 +0000 | [diff] [blame] | 1070 | if (st->state > CPUHP_TEARDOWN_CPU) { |
Peter Zijlstra | 4dddfb5 | 2017-09-20 19:00:17 +0200 | [diff] [blame] | 1071 | st->target = max((int)target, CPUHP_TEARDOWN_CPU); |
Thomas Gleixner | 1cf4f62 | 2016-02-26 18:43:39 +0000 | [diff] [blame] | 1072 | ret = cpuhp_kick_ap_work(cpu); |
| 1073 | /* |
| 1074 | * The AP side has done the error rollback already. Just |
| 1075 | * return the error code.. |
| 1076 | */ |
| 1077 | if (ret) |
| 1078 | goto out; |
| 1079 | |
| 1080 | /* |
| 1081 | * We might have stopped still in the range of the AP hotplug |
| 1082 | * thread. Nothing to do anymore. |
| 1083 | */ |
Thomas Gleixner | 8df3e07 | 2016-02-26 18:43:41 +0000 | [diff] [blame] | 1084 | if (st->state > CPUHP_TEARDOWN_CPU) |
Thomas Gleixner | 1cf4f62 | 2016-02-26 18:43:39 +0000 | [diff] [blame] | 1085 | goto out; |
Peter Zijlstra | 4dddfb5 | 2017-09-20 19:00:17 +0200 | [diff] [blame] | 1086 | |
| 1087 | st->target = target; |
Thomas Gleixner | 1cf4f62 | 2016-02-26 18:43:39 +0000 | [diff] [blame] | 1088 | } |
| 1089 | /* |
Thomas Gleixner | 8df3e07 | 2016-02-26 18:43:41 +0000 | [diff] [blame] | 1090 | * The AP brought itself down to CPUHP_TEARDOWN_CPU. So we need |
Thomas Gleixner | 1cf4f62 | 2016-02-26 18:43:39 +0000 | [diff] [blame] | 1091 | * to do the further cleanups. |
| 1092 | */ |
Thomas Gleixner | a724632 | 2016-08-12 19:49:38 +0200 | [diff] [blame] | 1093 | ret = cpuhp_down_callbacks(cpu, st, target); |
Vincent Donnefort | 62f2506 | 2021-02-16 10:35:05 +0000 | [diff] [blame] | 1094 | if (ret && st->state < prev_state) { |
| 1095 | if (st->state == CPUHP_TEARDOWN_CPU) { |
| 1096 | cpuhp_reset_state(st, prev_state); |
| 1097 | __cpuhp_kick_ap(st); |
| 1098 | } else { |
| 1099 | WARN(1, "DEAD callback error for CPU%d", cpu); |
| 1100 | } |
Sebastian Andrzej Siewior | 3b9d6da | 2016-04-08 14:40:15 +0200 | [diff] [blame] | 1101 | } |
Thomas Gleixner | 9845817 | 2016-02-26 18:43:25 +0000 | [diff] [blame] | 1102 | |
Thomas Gleixner | 1cf4f62 | 2016-02-26 18:43:39 +0000 | [diff] [blame] | 1103 | out: |
Thomas Gleixner | 8f553c4 | 2017-05-24 10:15:12 +0200 | [diff] [blame] | 1104 | cpus_write_unlock(); |
Thomas Gleixner | 941154b | 2017-09-12 21:37:04 +0200 | [diff] [blame] | 1105 | /* |
| 1106 | * Do post unplug cleanup. This is still protected against |
| 1107 | * concurrent CPU hotplug via cpu_add_remove_lock. |
| 1108 | */ |
| 1109 | lockup_detector_cleanup(); |
Thomas Gleixner | a74cfff | 2018-11-25 19:33:39 +0100 | [diff] [blame] | 1110 | arch_smt_update(); |
Thomas Gleixner | cff7d37 | 2016-02-26 18:43:28 +0000 | [diff] [blame] | 1111 | return ret; |
Rafael J. Wysocki | e3920fb | 2006-09-25 23:32:48 -0700 | [diff] [blame] | 1112 | } |
| 1113 | |
Thomas Gleixner | cc1fe21 | 2018-05-29 17:49:05 +0200 | [diff] [blame] | 1114 | static int cpu_down_maps_locked(unsigned int cpu, enum cpuhp_state target) |
| 1115 | { |
| 1116 | if (cpu_hotplug_disabled) |
| 1117 | return -EBUSY; |
| 1118 | return _cpu_down(cpu, 0, target); |
| 1119 | } |
| 1120 | |
Qais Yousef | 33c3736 | 2020-03-23 13:51:10 +0000 | [diff] [blame] | 1121 | static int cpu_down(unsigned int cpu, enum cpuhp_state target) |
Rafael J. Wysocki | e3920fb | 2006-09-25 23:32:48 -0700 | [diff] [blame] | 1122 | { |
Heiko Carstens | 9ea09af | 2008-12-22 12:36:30 +0100 | [diff] [blame] | 1123 | int err; |
Rafael J. Wysocki | e3920fb | 2006-09-25 23:32:48 -0700 | [diff] [blame] | 1124 | |
Gautham R Shenoy | d221938 | 2008-01-25 21:08:01 +0100 | [diff] [blame] | 1125 | cpu_maps_update_begin(); |
Thomas Gleixner | cc1fe21 | 2018-05-29 17:49:05 +0200 | [diff] [blame] | 1126 | err = cpu_down_maps_locked(cpu, target); |
Gautham R Shenoy | d221938 | 2008-01-25 21:08:01 +0100 | [diff] [blame] | 1127 | cpu_maps_update_done(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1128 | return err; |
| 1129 | } |
Peter Zijlstra | 4dddfb5 | 2017-09-20 19:00:17 +0200 | [diff] [blame] | 1130 | |
Qais Yousef | 33c3736 | 2020-03-23 13:51:10 +0000 | [diff] [blame] | 1131 | /** |
| 1132 | * cpu_device_down - Bring down a cpu device |
| 1133 | * @dev: Pointer to the cpu device to offline |
| 1134 | * |
| 1135 | * This function is meant to be used by device core cpu subsystem only. |
| 1136 | * |
| 1137 | * Other subsystems should use remove_cpu() instead. |
| 1138 | */ |
| 1139 | int cpu_device_down(struct device *dev) |
Thomas Gleixner | af1f404 | 2016-02-26 18:43:30 +0000 | [diff] [blame] | 1140 | { |
Qais Yousef | 33c3736 | 2020-03-23 13:51:10 +0000 | [diff] [blame] | 1141 | return cpu_down(dev->id, CPUHP_OFFLINE); |
Thomas Gleixner | af1f404 | 2016-02-26 18:43:30 +0000 | [diff] [blame] | 1142 | } |
Peter Zijlstra | 4dddfb5 | 2017-09-20 19:00:17 +0200 | [diff] [blame] | 1143 | |
Qais Yousef | 93ef142 | 2020-03-23 13:50:54 +0000 | [diff] [blame] | 1144 | int remove_cpu(unsigned int cpu) |
| 1145 | { |
| 1146 | int ret; |
| 1147 | |
| 1148 | lock_device_hotplug(); |
| 1149 | ret = device_offline(get_cpu_device(cpu)); |
| 1150 | unlock_device_hotplug(); |
| 1151 | |
| 1152 | return ret; |
| 1153 | } |
| 1154 | EXPORT_SYMBOL_GPL(remove_cpu); |
| 1155 | |
Qais Yousef | 0441a55 | 2020-03-23 13:50:55 +0000 | [diff] [blame] | 1156 | void smp_shutdown_nonboot_cpus(unsigned int primary_cpu) |
| 1157 | { |
| 1158 | unsigned int cpu; |
| 1159 | int error; |
| 1160 | |
| 1161 | cpu_maps_update_begin(); |
| 1162 | |
| 1163 | /* |
| 1164 | * Make certain the cpu I'm about to reboot on is online. |
| 1165 | * |
| 1166 | * This is inline to what migrate_to_reboot_cpu() already do. |
| 1167 | */ |
| 1168 | if (!cpu_online(primary_cpu)) |
| 1169 | primary_cpu = cpumask_first(cpu_online_mask); |
| 1170 | |
| 1171 | for_each_online_cpu(cpu) { |
| 1172 | if (cpu == primary_cpu) |
| 1173 | continue; |
| 1174 | |
| 1175 | error = cpu_down_maps_locked(cpu, CPUHP_OFFLINE); |
| 1176 | if (error) { |
| 1177 | pr_err("Failed to offline CPU%d - error=%d", |
| 1178 | cpu, error); |
| 1179 | break; |
| 1180 | } |
| 1181 | } |
| 1182 | |
| 1183 | /* |
| 1184 | * Ensure all but the reboot CPU are offline. |
| 1185 | */ |
| 1186 | BUG_ON(num_online_cpus() > 1); |
| 1187 | |
| 1188 | /* |
| 1189 | * Make sure the CPUs won't be enabled by someone else after this |
| 1190 | * point. Kexec will reboot to a new kernel shortly resetting |
| 1191 | * everything along the way. |
| 1192 | */ |
| 1193 | cpu_hotplug_disabled++; |
| 1194 | |
| 1195 | cpu_maps_update_done(); |
| 1196 | } |
Peter Zijlstra | 4dddfb5 | 2017-09-20 19:00:17 +0200 | [diff] [blame] | 1197 | |
| 1198 | #else |
| 1199 | #define takedown_cpu NULL |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1200 | #endif /*CONFIG_HOTPLUG_CPU*/ |
| 1201 | |
Thomas Gleixner | 4baa0af | 2016-02-26 18:43:29 +0000 | [diff] [blame] | 1202 | /** |
Thomas Gleixner | ee1e714 | 2016-08-18 14:57:16 +0200 | [diff] [blame] | 1203 | * notify_cpu_starting(cpu) - Invoke the callbacks on the starting CPU |
Thomas Gleixner | 4baa0af | 2016-02-26 18:43:29 +0000 | [diff] [blame] | 1204 | * @cpu: cpu that just started |
| 1205 | * |
Thomas Gleixner | 4baa0af | 2016-02-26 18:43:29 +0000 | [diff] [blame] | 1206 | * It must be called by the arch code on the new cpu, before the new cpu |
| 1207 | * enables interrupts and before the "boot" cpu returns from __cpu_up(). |
| 1208 | */ |
| 1209 | void notify_cpu_starting(unsigned int cpu) |
| 1210 | { |
| 1211 | struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu); |
| 1212 | enum cpuhp_state target = min((int)st->target, CPUHP_AP_ONLINE); |
Peter Zijlstra | 724a868 | 2017-09-20 19:00:18 +0200 | [diff] [blame] | 1213 | int ret; |
Thomas Gleixner | 4baa0af | 2016-02-26 18:43:29 +0000 | [diff] [blame] | 1214 | |
Sebastian Andrzej Siewior | 0c6d457 | 2016-08-17 14:21:04 +0200 | [diff] [blame] | 1215 | rcu_cpu_starting(cpu); /* Enables RCU usage on this CPU. */ |
Thomas Gleixner | e797bda | 2019-07-22 20:47:16 +0200 | [diff] [blame] | 1216 | cpumask_set_cpu(cpu, &cpus_booted_once_mask); |
Vincent Donnefort | 453e410 | 2021-02-16 10:35:06 +0000 | [diff] [blame] | 1217 | ret = cpuhp_invoke_callback_range(true, cpu, st, target); |
| 1218 | |
| 1219 | /* |
| 1220 | * STARTING must not fail! |
| 1221 | */ |
| 1222 | WARN_ON_ONCE(ret); |
Thomas Gleixner | 4baa0af | 2016-02-26 18:43:29 +0000 | [diff] [blame] | 1223 | } |
| 1224 | |
Thomas Gleixner | 949338e | 2016-02-26 18:43:35 +0000 | [diff] [blame] | 1225 | /* |
Thomas Gleixner | 9cd4f1a | 2017-07-04 22:20:23 +0200 | [diff] [blame] | 1226 | * Called from the idle task. Wake up the controlling task which brings the |
Peter Zijlstra | 45178ac | 2019-12-10 09:34:54 +0100 | [diff] [blame] | 1227 | * hotplug thread of the upcoming CPU up and then delegates the rest of the |
| 1228 | * online bringup to the hotplug thread. |
Thomas Gleixner | 949338e | 2016-02-26 18:43:35 +0000 | [diff] [blame] | 1229 | */ |
Thomas Gleixner | 8df3e07 | 2016-02-26 18:43:41 +0000 | [diff] [blame] | 1230 | void cpuhp_online_idle(enum cpuhp_state state) |
Thomas Gleixner | 949338e | 2016-02-26 18:43:35 +0000 | [diff] [blame] | 1231 | { |
Thomas Gleixner | 8df3e07 | 2016-02-26 18:43:41 +0000 | [diff] [blame] | 1232 | struct cpuhp_cpu_state *st = this_cpu_ptr(&cpuhp_state); |
Thomas Gleixner | 8df3e07 | 2016-02-26 18:43:41 +0000 | [diff] [blame] | 1233 | |
| 1234 | /* Happens for the boot cpu */ |
| 1235 | if (state != CPUHP_AP_ONLINE_IDLE) |
| 1236 | return; |
| 1237 | |
Peter Zijlstra | 45178ac | 2019-12-10 09:34:54 +0100 | [diff] [blame] | 1238 | /* |
| 1239 | * Unpart the stopper thread before we start the idle loop (and start |
| 1240 | * scheduling); this ensures the stopper task is always available. |
| 1241 | */ |
| 1242 | stop_machine_unpark(smp_processor_id()); |
| 1243 | |
Thomas Gleixner | 8df3e07 | 2016-02-26 18:43:41 +0000 | [diff] [blame] | 1244 | st->state = CPUHP_AP_ONLINE_IDLE; |
Peter Zijlstra | 5ebe774 | 2017-09-20 19:00:19 +0200 | [diff] [blame] | 1245 | complete_ap_thread(st, true); |
Thomas Gleixner | 949338e | 2016-02-26 18:43:35 +0000 | [diff] [blame] | 1246 | } |
| 1247 | |
Rafael J. Wysocki | e3920fb | 2006-09-25 23:32:48 -0700 | [diff] [blame] | 1248 | /* Requires cpu_add_remove_lock to be held */ |
Thomas Gleixner | af1f404 | 2016-02-26 18:43:30 +0000 | [diff] [blame] | 1249 | static int _cpu_up(unsigned int cpu, int tasks_frozen, enum cpuhp_state target) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1250 | { |
Thomas Gleixner | cff7d37 | 2016-02-26 18:43:28 +0000 | [diff] [blame] | 1251 | struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu); |
Suresh Siddha | 3bb5d2e | 2012-04-20 17:08:50 -0700 | [diff] [blame] | 1252 | struct task_struct *idle; |
Thomas Gleixner | 2e1a348 | 2016-02-26 18:43:37 +0000 | [diff] [blame] | 1253 | int ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1254 | |
Thomas Gleixner | 8f553c4 | 2017-05-24 10:15:12 +0200 | [diff] [blame] | 1255 | cpus_write_lock(); |
Thomas Gleixner | 38498a6 | 2012-04-20 13:05:44 +0000 | [diff] [blame] | 1256 | |
Thomas Gleixner | 757c989 | 2016-02-26 18:43:32 +0000 | [diff] [blame] | 1257 | if (!cpu_present(cpu)) { |
Yasuaki Ishimatsu | 5e5041f | 2012-10-23 01:30:54 +0200 | [diff] [blame] | 1258 | ret = -EINVAL; |
| 1259 | goto out; |
| 1260 | } |
| 1261 | |
Thomas Gleixner | 757c989 | 2016-02-26 18:43:32 +0000 | [diff] [blame] | 1262 | /* |
Qais Yousef | 33c3736 | 2020-03-23 13:51:10 +0000 | [diff] [blame] | 1263 | * The caller of cpu_up() might have raced with another |
| 1264 | * caller. Nothing to do. |
Thomas Gleixner | 757c989 | 2016-02-26 18:43:32 +0000 | [diff] [blame] | 1265 | */ |
| 1266 | if (st->state >= target) |
Thomas Gleixner | 38498a6 | 2012-04-20 13:05:44 +0000 | [diff] [blame] | 1267 | goto out; |
Thomas Gleixner | 757c989 | 2016-02-26 18:43:32 +0000 | [diff] [blame] | 1268 | |
| 1269 | if (st->state == CPUHP_OFFLINE) { |
| 1270 | /* Let it fail before we try to bring the cpu up */ |
| 1271 | idle = idle_thread_get(cpu); |
| 1272 | if (IS_ERR(idle)) { |
| 1273 | ret = PTR_ERR(idle); |
| 1274 | goto out; |
| 1275 | } |
Suresh Siddha | 3bb5d2e | 2012-04-20 17:08:50 -0700 | [diff] [blame] | 1276 | } |
Thomas Gleixner | 38498a6 | 2012-04-20 13:05:44 +0000 | [diff] [blame] | 1277 | |
Thomas Gleixner | ba99746 | 2016-02-26 18:43:24 +0000 | [diff] [blame] | 1278 | cpuhp_tasks_frozen = tasks_frozen; |
| 1279 | |
Peter Zijlstra | 4dddfb5 | 2017-09-20 19:00:17 +0200 | [diff] [blame] | 1280 | cpuhp_set_state(st, target); |
Thomas Gleixner | 1cf4f62 | 2016-02-26 18:43:39 +0000 | [diff] [blame] | 1281 | /* |
| 1282 | * If the current CPU state is in the range of the AP hotplug thread, |
| 1283 | * then we need to kick the thread once more. |
| 1284 | */ |
Thomas Gleixner | 8df3e07 | 2016-02-26 18:43:41 +0000 | [diff] [blame] | 1285 | if (st->state > CPUHP_BRINGUP_CPU) { |
Thomas Gleixner | 1cf4f62 | 2016-02-26 18:43:39 +0000 | [diff] [blame] | 1286 | ret = cpuhp_kick_ap_work(cpu); |
| 1287 | /* |
| 1288 | * The AP side has done the error rollback already. Just |
| 1289 | * return the error code.. |
| 1290 | */ |
| 1291 | if (ret) |
| 1292 | goto out; |
| 1293 | } |
| 1294 | |
| 1295 | /* |
| 1296 | * Try to reach the target state. We max out on the BP at |
Thomas Gleixner | 8df3e07 | 2016-02-26 18:43:41 +0000 | [diff] [blame] | 1297 | * CPUHP_BRINGUP_CPU. After that the AP hotplug thread is |
Thomas Gleixner | 1cf4f62 | 2016-02-26 18:43:39 +0000 | [diff] [blame] | 1298 | * responsible for bringing it up to the target state. |
| 1299 | */ |
Thomas Gleixner | 8df3e07 | 2016-02-26 18:43:41 +0000 | [diff] [blame] | 1300 | target = min((int)target, CPUHP_BRINGUP_CPU); |
Thomas Gleixner | a724632 | 2016-08-12 19:49:38 +0200 | [diff] [blame] | 1301 | ret = cpuhp_up_callbacks(cpu, st, target); |
Thomas Gleixner | 38498a6 | 2012-04-20 13:05:44 +0000 | [diff] [blame] | 1302 | out: |
Thomas Gleixner | 8f553c4 | 2017-05-24 10:15:12 +0200 | [diff] [blame] | 1303 | cpus_write_unlock(); |
Thomas Gleixner | a74cfff | 2018-11-25 19:33:39 +0100 | [diff] [blame] | 1304 | arch_smt_update(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1305 | return ret; |
| 1306 | } |
Rafael J. Wysocki | e3920fb | 2006-09-25 23:32:48 -0700 | [diff] [blame] | 1307 | |
Qais Yousef | 33c3736 | 2020-03-23 13:51:10 +0000 | [diff] [blame] | 1308 | static int cpu_up(unsigned int cpu, enum cpuhp_state target) |
Rafael J. Wysocki | e3920fb | 2006-09-25 23:32:48 -0700 | [diff] [blame] | 1309 | { |
| 1310 | int err = 0; |
minskey guo | cf23422 | 2010-05-24 14:32:41 -0700 | [diff] [blame] | 1311 | |
Rusty Russell | e0b582e | 2009-01-01 10:12:28 +1030 | [diff] [blame] | 1312 | if (!cpu_possible(cpu)) { |
Fabian Frederick | 84117da | 2014-06-04 16:11:17 -0700 | [diff] [blame] | 1313 | pr_err("can't online cpu %d because it is not configured as may-hotadd at boot time\n", |
| 1314 | cpu); |
Chen Gong | 87d5e023 | 2010-03-05 13:42:38 -0800 | [diff] [blame] | 1315 | #if defined(CONFIG_IA64) |
Fabian Frederick | 84117da | 2014-06-04 16:11:17 -0700 | [diff] [blame] | 1316 | pr_err("please check additional_cpus= boot parameter\n"); |
KAMEZAWA Hiroyuki | 73e753a | 2007-10-18 23:40:47 -0700 | [diff] [blame] | 1317 | #endif |
| 1318 | return -EINVAL; |
| 1319 | } |
Rafael J. Wysocki | e3920fb | 2006-09-25 23:32:48 -0700 | [diff] [blame] | 1320 | |
Toshi Kani | 01b0f19 | 2013-11-12 15:07:25 -0800 | [diff] [blame] | 1321 | err = try_online_node(cpu_to_node(cpu)); |
| 1322 | if (err) |
| 1323 | return err; |
minskey guo | cf23422 | 2010-05-24 14:32:41 -0700 | [diff] [blame] | 1324 | |
Gautham R Shenoy | d221938 | 2008-01-25 21:08:01 +0100 | [diff] [blame] | 1325 | cpu_maps_update_begin(); |
Rafael J. Wysocki | e3920fb | 2006-09-25 23:32:48 -0700 | [diff] [blame] | 1326 | |
Max Krasnyansky | e761b77 | 2008-07-15 04:43:49 -0700 | [diff] [blame] | 1327 | if (cpu_hotplug_disabled) { |
| 1328 | err = -EBUSY; |
| 1329 | goto out; |
| 1330 | } |
Thomas Gleixner | 05736e4 | 2018-05-29 17:48:27 +0200 | [diff] [blame] | 1331 | if (!cpu_smt_allowed(cpu)) { |
| 1332 | err = -EPERM; |
| 1333 | goto out; |
| 1334 | } |
Max Krasnyansky | e761b77 | 2008-07-15 04:43:49 -0700 | [diff] [blame] | 1335 | |
Thomas Gleixner | af1f404 | 2016-02-26 18:43:30 +0000 | [diff] [blame] | 1336 | err = _cpu_up(cpu, 0, target); |
Max Krasnyansky | e761b77 | 2008-07-15 04:43:49 -0700 | [diff] [blame] | 1337 | out: |
Gautham R Shenoy | d221938 | 2008-01-25 21:08:01 +0100 | [diff] [blame] | 1338 | cpu_maps_update_done(); |
Rafael J. Wysocki | e3920fb | 2006-09-25 23:32:48 -0700 | [diff] [blame] | 1339 | return err; |
| 1340 | } |
Thomas Gleixner | af1f404 | 2016-02-26 18:43:30 +0000 | [diff] [blame] | 1341 | |
Qais Yousef | 33c3736 | 2020-03-23 13:51:10 +0000 | [diff] [blame] | 1342 | /** |
| 1343 | * cpu_device_up - Bring up a cpu device |
| 1344 | * @dev: Pointer to the cpu device to online |
| 1345 | * |
| 1346 | * This function is meant to be used by device core cpu subsystem only. |
| 1347 | * |
| 1348 | * Other subsystems should use add_cpu() instead. |
| 1349 | */ |
| 1350 | int cpu_device_up(struct device *dev) |
Thomas Gleixner | af1f404 | 2016-02-26 18:43:30 +0000 | [diff] [blame] | 1351 | { |
Qais Yousef | 33c3736 | 2020-03-23 13:51:10 +0000 | [diff] [blame] | 1352 | return cpu_up(dev->id, CPUHP_ONLINE); |
Thomas Gleixner | af1f404 | 2016-02-26 18:43:30 +0000 | [diff] [blame] | 1353 | } |
Rafael J. Wysocki | e3920fb | 2006-09-25 23:32:48 -0700 | [diff] [blame] | 1354 | |
Qais Yousef | 93ef142 | 2020-03-23 13:50:54 +0000 | [diff] [blame] | 1355 | int add_cpu(unsigned int cpu) |
| 1356 | { |
| 1357 | int ret; |
| 1358 | |
| 1359 | lock_device_hotplug(); |
| 1360 | ret = device_online(get_cpu_device(cpu)); |
| 1361 | unlock_device_hotplug(); |
| 1362 | |
| 1363 | return ret; |
| 1364 | } |
| 1365 | EXPORT_SYMBOL_GPL(add_cpu); |
| 1366 | |
Qais Yousef | d720f98 | 2020-03-23 13:51:01 +0000 | [diff] [blame] | 1367 | /** |
| 1368 | * bringup_hibernate_cpu - Bring up the CPU that we hibernated on |
| 1369 | * @sleep_cpu: The cpu we hibernated on and should be brought up. |
| 1370 | * |
| 1371 | * On some architectures like arm64, we can hibernate on any CPU, but on |
| 1372 | * wake up the CPU we hibernated on might be offline as a side effect of |
| 1373 | * using maxcpus= for example. |
| 1374 | */ |
| 1375 | int bringup_hibernate_cpu(unsigned int sleep_cpu) |
| 1376 | { |
| 1377 | int ret; |
| 1378 | |
| 1379 | if (!cpu_online(sleep_cpu)) { |
| 1380 | pr_info("Hibernated on a CPU that is offline! Bringing CPU up.\n"); |
Qais Yousef | 33c3736 | 2020-03-23 13:51:10 +0000 | [diff] [blame] | 1381 | ret = cpu_up(sleep_cpu, CPUHP_ONLINE); |
Qais Yousef | d720f98 | 2020-03-23 13:51:01 +0000 | [diff] [blame] | 1382 | if (ret) { |
| 1383 | pr_err("Failed to bring hibernate-CPU up!\n"); |
| 1384 | return ret; |
| 1385 | } |
| 1386 | } |
| 1387 | return 0; |
| 1388 | } |
| 1389 | |
Qais Yousef | b99a265 | 2020-03-23 13:51:09 +0000 | [diff] [blame] | 1390 | void bringup_nonboot_cpus(unsigned int setup_max_cpus) |
| 1391 | { |
| 1392 | unsigned int cpu; |
| 1393 | |
| 1394 | for_each_present_cpu(cpu) { |
| 1395 | if (num_online_cpus() >= setup_max_cpus) |
| 1396 | break; |
| 1397 | if (!cpu_online(cpu)) |
Qais Yousef | 33c3736 | 2020-03-23 13:51:10 +0000 | [diff] [blame] | 1398 | cpu_up(cpu, CPUHP_ONLINE); |
Qais Yousef | b99a265 | 2020-03-23 13:51:09 +0000 | [diff] [blame] | 1399 | } |
| 1400 | } |
Rafael J. Wysocki | e3920fb | 2006-09-25 23:32:48 -0700 | [diff] [blame] | 1401 | |
Rafael J. Wysocki | f3de4be | 2007-08-30 23:56:29 -0700 | [diff] [blame] | 1402 | #ifdef CONFIG_PM_SLEEP_SMP |
Rusty Russell | e0b582e | 2009-01-01 10:12:28 +1030 | [diff] [blame] | 1403 | static cpumask_var_t frozen_cpus; |
Rafael J. Wysocki | e3920fb | 2006-09-25 23:32:48 -0700 | [diff] [blame] | 1404 | |
Qais Yousef | fb7fb84 | 2020-04-30 12:40:04 +0100 | [diff] [blame] | 1405 | int freeze_secondary_cpus(int primary) |
Rafael J. Wysocki | e3920fb | 2006-09-25 23:32:48 -0700 | [diff] [blame] | 1406 | { |
James Morse | d391e55 | 2016-08-17 13:50:25 +0100 | [diff] [blame] | 1407 | int cpu, error = 0; |
Rafael J. Wysocki | e3920fb | 2006-09-25 23:32:48 -0700 | [diff] [blame] | 1408 | |
Gautham R Shenoy | d221938 | 2008-01-25 21:08:01 +0100 | [diff] [blame] | 1409 | cpu_maps_update_begin(); |
Nicholas Piggin | 9ca12ac | 2019-04-11 13:34:46 +1000 | [diff] [blame] | 1410 | if (primary == -1) { |
James Morse | d391e55 | 2016-08-17 13:50:25 +0100 | [diff] [blame] | 1411 | primary = cpumask_first(cpu_online_mask); |
Nicholas Piggin | 9ca12ac | 2019-04-11 13:34:46 +1000 | [diff] [blame] | 1412 | if (!housekeeping_cpu(primary, HK_FLAG_TIMER)) |
| 1413 | primary = housekeeping_any_cpu(HK_FLAG_TIMER); |
| 1414 | } else { |
| 1415 | if (!cpu_online(primary)) |
| 1416 | primary = cpumask_first(cpu_online_mask); |
| 1417 | } |
| 1418 | |
Xiaotian Feng | 9ee349a | 2009-12-16 18:04:32 +0100 | [diff] [blame] | 1419 | /* |
| 1420 | * We take down all of the non-boot CPUs in one shot to avoid races |
Rafael J. Wysocki | e3920fb | 2006-09-25 23:32:48 -0700 | [diff] [blame] | 1421 | * with the userspace trying to use the CPU hotplug at the same time |
| 1422 | */ |
Rusty Russell | e0b582e | 2009-01-01 10:12:28 +1030 | [diff] [blame] | 1423 | cpumask_clear(frozen_cpus); |
Peter Zijlstra | 6ad4c18 | 2009-11-25 13:31:39 +0100 | [diff] [blame] | 1424 | |
Fabian Frederick | 84117da | 2014-06-04 16:11:17 -0700 | [diff] [blame] | 1425 | pr_info("Disabling non-boot CPUs ...\n"); |
Rafael J. Wysocki | e3920fb | 2006-09-25 23:32:48 -0700 | [diff] [blame] | 1426 | for_each_online_cpu(cpu) { |
James Morse | d391e55 | 2016-08-17 13:50:25 +0100 | [diff] [blame] | 1427 | if (cpu == primary) |
Rafael J. Wysocki | e3920fb | 2006-09-25 23:32:48 -0700 | [diff] [blame] | 1428 | continue; |
Pavankumar Kondeti | a66d955 | 2019-06-03 10:01:03 +0530 | [diff] [blame] | 1429 | |
Qais Yousef | fb7fb84 | 2020-04-30 12:40:04 +0100 | [diff] [blame] | 1430 | if (pm_wakeup_pending()) { |
Pavankumar Kondeti | a66d955 | 2019-06-03 10:01:03 +0530 | [diff] [blame] | 1431 | pr_info("Wakeup pending. Abort CPU freeze\n"); |
| 1432 | error = -EBUSY; |
| 1433 | break; |
| 1434 | } |
| 1435 | |
Todd E Brandt | bb3632c | 2014-06-06 05:40:17 -0700 | [diff] [blame] | 1436 | trace_suspend_resume(TPS("CPU_OFF"), cpu, true); |
Thomas Gleixner | af1f404 | 2016-02-26 18:43:30 +0000 | [diff] [blame] | 1437 | error = _cpu_down(cpu, 1, CPUHP_OFFLINE); |
Todd E Brandt | bb3632c | 2014-06-06 05:40:17 -0700 | [diff] [blame] | 1438 | trace_suspend_resume(TPS("CPU_OFF"), cpu, false); |
Mike Travis | feae320 | 2009-11-17 18:22:13 -0600 | [diff] [blame] | 1439 | if (!error) |
Rusty Russell | e0b582e | 2009-01-01 10:12:28 +1030 | [diff] [blame] | 1440 | cpumask_set_cpu(cpu, frozen_cpus); |
Mike Travis | feae320 | 2009-11-17 18:22:13 -0600 | [diff] [blame] | 1441 | else { |
Fabian Frederick | 84117da | 2014-06-04 16:11:17 -0700 | [diff] [blame] | 1442 | pr_err("Error taking CPU%d down: %d\n", cpu, error); |
Rafael J. Wysocki | e3920fb | 2006-09-25 23:32:48 -0700 | [diff] [blame] | 1443 | break; |
| 1444 | } |
| 1445 | } |
Joseph Cihula | 86886e5 | 2009-06-30 19:31:07 -0700 | [diff] [blame] | 1446 | |
Vitaly Kuznetsov | 89af7ba | 2015-08-05 00:52:46 -0700 | [diff] [blame] | 1447 | if (!error) |
Rafael J. Wysocki | e3920fb | 2006-09-25 23:32:48 -0700 | [diff] [blame] | 1448 | BUG_ON(num_online_cpus() > 1); |
Vitaly Kuznetsov | 89af7ba | 2015-08-05 00:52:46 -0700 | [diff] [blame] | 1449 | else |
Fabian Frederick | 84117da | 2014-06-04 16:11:17 -0700 | [diff] [blame] | 1450 | pr_err("Non-boot CPUs are not disabled\n"); |
Vitaly Kuznetsov | 89af7ba | 2015-08-05 00:52:46 -0700 | [diff] [blame] | 1451 | |
| 1452 | /* |
| 1453 | * Make sure the CPUs won't be enabled by someone else. We need to do |
Qais Yousef | 5655585 | 2020-04-30 12:40:03 +0100 | [diff] [blame] | 1454 | * this even in case of failure as all freeze_secondary_cpus() users are |
| 1455 | * supposed to do thaw_secondary_cpus() on the failure path. |
Vitaly Kuznetsov | 89af7ba | 2015-08-05 00:52:46 -0700 | [diff] [blame] | 1456 | */ |
| 1457 | cpu_hotplug_disabled++; |
| 1458 | |
Gautham R Shenoy | d221938 | 2008-01-25 21:08:01 +0100 | [diff] [blame] | 1459 | cpu_maps_update_done(); |
Rafael J. Wysocki | e3920fb | 2006-09-25 23:32:48 -0700 | [diff] [blame] | 1460 | return error; |
| 1461 | } |
| 1462 | |
Qais Yousef | 5655585 | 2020-04-30 12:40:03 +0100 | [diff] [blame] | 1463 | void __weak arch_thaw_secondary_cpus_begin(void) |
Suresh Siddha | d0af9ee | 2009-08-19 18:05:36 -0700 | [diff] [blame] | 1464 | { |
| 1465 | } |
| 1466 | |
Qais Yousef | 5655585 | 2020-04-30 12:40:03 +0100 | [diff] [blame] | 1467 | void __weak arch_thaw_secondary_cpus_end(void) |
Suresh Siddha | d0af9ee | 2009-08-19 18:05:36 -0700 | [diff] [blame] | 1468 | { |
| 1469 | } |
| 1470 | |
Qais Yousef | 5655585 | 2020-04-30 12:40:03 +0100 | [diff] [blame] | 1471 | void thaw_secondary_cpus(void) |
Rafael J. Wysocki | e3920fb | 2006-09-25 23:32:48 -0700 | [diff] [blame] | 1472 | { |
| 1473 | int cpu, error; |
| 1474 | |
| 1475 | /* Allow everyone to use the CPU hotplug again */ |
Gautham R Shenoy | d221938 | 2008-01-25 21:08:01 +0100 | [diff] [blame] | 1476 | cpu_maps_update_begin(); |
Lianwei Wang | 01b4115 | 2016-06-09 23:43:28 -0700 | [diff] [blame] | 1477 | __cpu_hotplug_enable(); |
Rusty Russell | e0b582e | 2009-01-01 10:12:28 +1030 | [diff] [blame] | 1478 | if (cpumask_empty(frozen_cpus)) |
Rafael J. Wysocki | 1d64b9c | 2007-04-01 23:49:49 -0700 | [diff] [blame] | 1479 | goto out; |
Rafael J. Wysocki | e3920fb | 2006-09-25 23:32:48 -0700 | [diff] [blame] | 1480 | |
Fabian Frederick | 84117da | 2014-06-04 16:11:17 -0700 | [diff] [blame] | 1481 | pr_info("Enabling non-boot CPUs ...\n"); |
Suresh Siddha | d0af9ee | 2009-08-19 18:05:36 -0700 | [diff] [blame] | 1482 | |
Qais Yousef | 5655585 | 2020-04-30 12:40:03 +0100 | [diff] [blame] | 1483 | arch_thaw_secondary_cpus_begin(); |
Suresh Siddha | d0af9ee | 2009-08-19 18:05:36 -0700 | [diff] [blame] | 1484 | |
Rusty Russell | e0b582e | 2009-01-01 10:12:28 +1030 | [diff] [blame] | 1485 | for_each_cpu(cpu, frozen_cpus) { |
Todd E Brandt | bb3632c | 2014-06-06 05:40:17 -0700 | [diff] [blame] | 1486 | trace_suspend_resume(TPS("CPU_ON"), cpu, true); |
Thomas Gleixner | af1f404 | 2016-02-26 18:43:30 +0000 | [diff] [blame] | 1487 | error = _cpu_up(cpu, 1, CPUHP_ONLINE); |
Todd E Brandt | bb3632c | 2014-06-06 05:40:17 -0700 | [diff] [blame] | 1488 | trace_suspend_resume(TPS("CPU_ON"), cpu, false); |
Rafael J. Wysocki | e3920fb | 2006-09-25 23:32:48 -0700 | [diff] [blame] | 1489 | if (!error) { |
Fabian Frederick | 84117da | 2014-06-04 16:11:17 -0700 | [diff] [blame] | 1490 | pr_info("CPU%d is up\n", cpu); |
Rafael J. Wysocki | e3920fb | 2006-09-25 23:32:48 -0700 | [diff] [blame] | 1491 | continue; |
| 1492 | } |
Fabian Frederick | 84117da | 2014-06-04 16:11:17 -0700 | [diff] [blame] | 1493 | pr_warn("Error taking CPU%d up: %d\n", cpu, error); |
Rafael J. Wysocki | e3920fb | 2006-09-25 23:32:48 -0700 | [diff] [blame] | 1494 | } |
Suresh Siddha | d0af9ee | 2009-08-19 18:05:36 -0700 | [diff] [blame] | 1495 | |
Qais Yousef | 5655585 | 2020-04-30 12:40:03 +0100 | [diff] [blame] | 1496 | arch_thaw_secondary_cpus_end(); |
Suresh Siddha | d0af9ee | 2009-08-19 18:05:36 -0700 | [diff] [blame] | 1497 | |
Rusty Russell | e0b582e | 2009-01-01 10:12:28 +1030 | [diff] [blame] | 1498 | cpumask_clear(frozen_cpus); |
Rafael J. Wysocki | 1d64b9c | 2007-04-01 23:49:49 -0700 | [diff] [blame] | 1499 | out: |
Gautham R Shenoy | d221938 | 2008-01-25 21:08:01 +0100 | [diff] [blame] | 1500 | cpu_maps_update_done(); |
Rafael J. Wysocki | e3920fb | 2006-09-25 23:32:48 -0700 | [diff] [blame] | 1501 | } |
Rusty Russell | e0b582e | 2009-01-01 10:12:28 +1030 | [diff] [blame] | 1502 | |
Fenghua Yu | d7268a3 | 2011-11-15 21:59:31 +0100 | [diff] [blame] | 1503 | static int __init alloc_frozen_cpus(void) |
Rusty Russell | e0b582e | 2009-01-01 10:12:28 +1030 | [diff] [blame] | 1504 | { |
| 1505 | if (!alloc_cpumask_var(&frozen_cpus, GFP_KERNEL|__GFP_ZERO)) |
| 1506 | return -ENOMEM; |
| 1507 | return 0; |
| 1508 | } |
| 1509 | core_initcall(alloc_frozen_cpus); |
Srivatsa S. Bhat | 79cfbdf | 2011-11-03 00:59:25 +0100 | [diff] [blame] | 1510 | |
| 1511 | /* |
Srivatsa S. Bhat | 79cfbdf | 2011-11-03 00:59:25 +0100 | [diff] [blame] | 1512 | * When callbacks for CPU hotplug notifications are being executed, we must |
| 1513 | * ensure that the state of the system with respect to the tasks being frozen |
| 1514 | * or not, as reported by the notification, remains unchanged *throughout the |
| 1515 | * duration* of the execution of the callbacks. |
| 1516 | * Hence we need to prevent the freezer from racing with regular CPU hotplug. |
| 1517 | * |
| 1518 | * This synchronization is implemented by mutually excluding regular CPU |
| 1519 | * hotplug and Suspend/Hibernate call paths by hooking onto the Suspend/ |
| 1520 | * Hibernate notifications. |
| 1521 | */ |
| 1522 | static int |
| 1523 | cpu_hotplug_pm_callback(struct notifier_block *nb, |
| 1524 | unsigned long action, void *ptr) |
| 1525 | { |
| 1526 | switch (action) { |
| 1527 | |
| 1528 | case PM_SUSPEND_PREPARE: |
| 1529 | case PM_HIBERNATION_PREPARE: |
Srivatsa S. Bhat | 16e53db | 2013-06-12 14:04:36 -0700 | [diff] [blame] | 1530 | cpu_hotplug_disable(); |
Srivatsa S. Bhat | 79cfbdf | 2011-11-03 00:59:25 +0100 | [diff] [blame] | 1531 | break; |
| 1532 | |
| 1533 | case PM_POST_SUSPEND: |
| 1534 | case PM_POST_HIBERNATION: |
Srivatsa S. Bhat | 16e53db | 2013-06-12 14:04:36 -0700 | [diff] [blame] | 1535 | cpu_hotplug_enable(); |
Srivatsa S. Bhat | 79cfbdf | 2011-11-03 00:59:25 +0100 | [diff] [blame] | 1536 | break; |
| 1537 | |
| 1538 | default: |
| 1539 | return NOTIFY_DONE; |
| 1540 | } |
| 1541 | |
| 1542 | return NOTIFY_OK; |
| 1543 | } |
| 1544 | |
| 1545 | |
Fenghua Yu | d7268a3 | 2011-11-15 21:59:31 +0100 | [diff] [blame] | 1546 | static int __init cpu_hotplug_pm_sync_init(void) |
Srivatsa S. Bhat | 79cfbdf | 2011-11-03 00:59:25 +0100 | [diff] [blame] | 1547 | { |
Fenghua Yu | 6e32d47 | 2012-11-13 11:32:43 -0800 | [diff] [blame] | 1548 | /* |
| 1549 | * cpu_hotplug_pm_callback has higher priority than x86 |
| 1550 | * bsp_pm_callback which depends on cpu_hotplug_pm_callback |
| 1551 | * to disable cpu hotplug to avoid cpu hotplug race. |
| 1552 | */ |
Srivatsa S. Bhat | 79cfbdf | 2011-11-03 00:59:25 +0100 | [diff] [blame] | 1553 | pm_notifier(cpu_hotplug_pm_callback, 0); |
| 1554 | return 0; |
| 1555 | } |
| 1556 | core_initcall(cpu_hotplug_pm_sync_init); |
| 1557 | |
Rafael J. Wysocki | f3de4be | 2007-08-30 23:56:29 -0700 | [diff] [blame] | 1558 | #endif /* CONFIG_PM_SLEEP_SMP */ |
Max Krasnyansky | 68f4f1e | 2008-05-29 11:17:02 -0700 | [diff] [blame] | 1559 | |
Peter Zijlstra | 8ce371f | 2017-03-20 12:26:55 +0100 | [diff] [blame] | 1560 | int __boot_cpu_id; |
| 1561 | |
Max Krasnyansky | 68f4f1e | 2008-05-29 11:17:02 -0700 | [diff] [blame] | 1562 | #endif /* CONFIG_SMP */ |
Mike Travis | b8d317d | 2008-07-24 18:21:29 -0700 | [diff] [blame] | 1563 | |
Thomas Gleixner | cff7d37 | 2016-02-26 18:43:28 +0000 | [diff] [blame] | 1564 | /* Boot processor state steps */ |
Lai Jiangshan | 17a2f1c | 2017-12-01 21:50:05 +0800 | [diff] [blame] | 1565 | static struct cpuhp_step cpuhp_hp_states[] = { |
Thomas Gleixner | cff7d37 | 2016-02-26 18:43:28 +0000 | [diff] [blame] | 1566 | [CPUHP_OFFLINE] = { |
| 1567 | .name = "offline", |
Thomas Gleixner | 3c1627e | 2016-09-05 15:28:36 +0200 | [diff] [blame] | 1568 | .startup.single = NULL, |
| 1569 | .teardown.single = NULL, |
Thomas Gleixner | cff7d37 | 2016-02-26 18:43:28 +0000 | [diff] [blame] | 1570 | }, |
| 1571 | #ifdef CONFIG_SMP |
| 1572 | [CPUHP_CREATE_THREADS]= { |
Thomas Gleixner | 677f664 | 2016-09-06 16:13:48 +0200 | [diff] [blame] | 1573 | .name = "threads:prepare", |
Thomas Gleixner | 3c1627e | 2016-09-05 15:28:36 +0200 | [diff] [blame] | 1574 | .startup.single = smpboot_create_threads, |
| 1575 | .teardown.single = NULL, |
Thomas Gleixner | 757c989 | 2016-02-26 18:43:32 +0000 | [diff] [blame] | 1576 | .cant_stop = true, |
Thomas Gleixner | cff7d37 | 2016-02-26 18:43:28 +0000 | [diff] [blame] | 1577 | }, |
Thomas Gleixner | 00e16c3 | 2016-07-13 17:16:09 +0000 | [diff] [blame] | 1578 | [CPUHP_PERF_PREPARE] = { |
Thomas Gleixner | 3c1627e | 2016-09-05 15:28:36 +0200 | [diff] [blame] | 1579 | .name = "perf:prepare", |
| 1580 | .startup.single = perf_event_init_cpu, |
| 1581 | .teardown.single = perf_event_exit_cpu, |
Thomas Gleixner | 00e16c3 | 2016-07-13 17:16:09 +0000 | [diff] [blame] | 1582 | }, |
Thomas Gleixner | 7ee681b | 2016-07-13 17:16:29 +0000 | [diff] [blame] | 1583 | [CPUHP_WORKQUEUE_PREP] = { |
Thomas Gleixner | 3c1627e | 2016-09-05 15:28:36 +0200 | [diff] [blame] | 1584 | .name = "workqueue:prepare", |
| 1585 | .startup.single = workqueue_prepare_cpu, |
| 1586 | .teardown.single = NULL, |
Thomas Gleixner | 7ee681b | 2016-07-13 17:16:29 +0000 | [diff] [blame] | 1587 | }, |
Thomas Gleixner | 27590dc | 2016-07-15 10:41:04 +0200 | [diff] [blame] | 1588 | [CPUHP_HRTIMERS_PREPARE] = { |
Thomas Gleixner | 3c1627e | 2016-09-05 15:28:36 +0200 | [diff] [blame] | 1589 | .name = "hrtimers:prepare", |
| 1590 | .startup.single = hrtimers_prepare_cpu, |
| 1591 | .teardown.single = hrtimers_dead_cpu, |
Thomas Gleixner | 27590dc | 2016-07-15 10:41:04 +0200 | [diff] [blame] | 1592 | }, |
Richard Weinberger | 31487f8 | 2016-07-13 17:17:01 +0000 | [diff] [blame] | 1593 | [CPUHP_SMPCFD_PREPARE] = { |
Thomas Gleixner | 677f664 | 2016-09-06 16:13:48 +0200 | [diff] [blame] | 1594 | .name = "smpcfd:prepare", |
Thomas Gleixner | 3c1627e | 2016-09-05 15:28:36 +0200 | [diff] [blame] | 1595 | .startup.single = smpcfd_prepare_cpu, |
| 1596 | .teardown.single = smpcfd_dead_cpu, |
Richard Weinberger | 31487f8 | 2016-07-13 17:17:01 +0000 | [diff] [blame] | 1597 | }, |
Richard Weinberger | e6d4989 | 2016-08-18 14:57:17 +0200 | [diff] [blame] | 1598 | [CPUHP_RELAY_PREPARE] = { |
| 1599 | .name = "relay:prepare", |
| 1600 | .startup.single = relay_prepare_cpu, |
| 1601 | .teardown.single = NULL, |
| 1602 | }, |
Sebastian Andrzej Siewior | 6731d4f | 2016-08-23 14:53:19 +0200 | [diff] [blame] | 1603 | [CPUHP_SLAB_PREPARE] = { |
| 1604 | .name = "slab:prepare", |
| 1605 | .startup.single = slab_prepare_cpu, |
| 1606 | .teardown.single = slab_dead_cpu, |
Thomas Gleixner | cff7d37 | 2016-02-26 18:43:28 +0000 | [diff] [blame] | 1607 | }, |
Thomas Gleixner | 4df8374 | 2016-07-13 17:17:03 +0000 | [diff] [blame] | 1608 | [CPUHP_RCUTREE_PREP] = { |
Thomas Gleixner | 677f664 | 2016-09-06 16:13:48 +0200 | [diff] [blame] | 1609 | .name = "RCU/tree:prepare", |
Thomas Gleixner | 3c1627e | 2016-09-05 15:28:36 +0200 | [diff] [blame] | 1610 | .startup.single = rcutree_prepare_cpu, |
| 1611 | .teardown.single = rcutree_dead_cpu, |
Thomas Gleixner | 4df8374 | 2016-07-13 17:17:03 +0000 | [diff] [blame] | 1612 | }, |
Thomas Gleixner | cff7d37 | 2016-02-26 18:43:28 +0000 | [diff] [blame] | 1613 | /* |
Richard Cochran | 4fae16d | 2016-07-27 11:08:18 +0200 | [diff] [blame] | 1614 | * On the tear-down path, timers_dead_cpu() must be invoked |
| 1615 | * before blk_mq_queue_reinit_notify() from notify_dead(), |
| 1616 | * otherwise a RCU stall occurs. |
| 1617 | */ |
Thomas Gleixner | 26456f8 | 2017-12-27 21:37:25 +0100 | [diff] [blame] | 1618 | [CPUHP_TIMERS_PREPARE] = { |
Mukesh Ojha | d018031 | 2018-07-24 20:17:48 +0530 | [diff] [blame] | 1619 | .name = "timers:prepare", |
Thomas Gleixner | 26456f8 | 2017-12-27 21:37:25 +0100 | [diff] [blame] | 1620 | .startup.single = timers_prepare_cpu, |
Thomas Gleixner | 3c1627e | 2016-09-05 15:28:36 +0200 | [diff] [blame] | 1621 | .teardown.single = timers_dead_cpu, |
Richard Cochran | 4fae16d | 2016-07-27 11:08:18 +0200 | [diff] [blame] | 1622 | }, |
Thomas Gleixner | d10ef6f | 2016-03-08 10:36:13 +0100 | [diff] [blame] | 1623 | /* Kicks the plugged cpu into life */ |
Thomas Gleixner | cff7d37 | 2016-02-26 18:43:28 +0000 | [diff] [blame] | 1624 | [CPUHP_BRINGUP_CPU] = { |
| 1625 | .name = "cpu:bringup", |
Thomas Gleixner | 3c1627e | 2016-09-05 15:28:36 +0200 | [diff] [blame] | 1626 | .startup.single = bringup_cpu, |
Peter Zijlstra | bf2c59f | 2020-04-01 17:40:33 -0400 | [diff] [blame] | 1627 | .teardown.single = finish_cpu, |
Thomas Gleixner | 757c989 | 2016-02-26 18:43:32 +0000 | [diff] [blame] | 1628 | .cant_stop = true, |
Thomas Gleixner | 4baa0af | 2016-02-26 18:43:29 +0000 | [diff] [blame] | 1629 | }, |
Thomas Gleixner | d10ef6f | 2016-03-08 10:36:13 +0100 | [diff] [blame] | 1630 | /* Final state before CPU kills itself */ |
| 1631 | [CPUHP_AP_IDLE_DEAD] = { |
| 1632 | .name = "idle:dead", |
| 1633 | }, |
| 1634 | /* |
| 1635 | * Last state before CPU enters the idle loop to die. Transient state |
| 1636 | * for synchronization. |
| 1637 | */ |
| 1638 | [CPUHP_AP_OFFLINE] = { |
| 1639 | .name = "ap:offline", |
| 1640 | .cant_stop = true, |
| 1641 | }, |
Thomas Gleixner | 9cf7243 | 2016-03-10 12:54:09 +0100 | [diff] [blame] | 1642 | /* First state is scheduler control. Interrupts are disabled */ |
| 1643 | [CPUHP_AP_SCHED_STARTING] = { |
| 1644 | .name = "sched:starting", |
Thomas Gleixner | 3c1627e | 2016-09-05 15:28:36 +0200 | [diff] [blame] | 1645 | .startup.single = sched_cpu_starting, |
| 1646 | .teardown.single = sched_cpu_dying, |
Thomas Gleixner | 9cf7243 | 2016-03-10 12:54:09 +0100 | [diff] [blame] | 1647 | }, |
Thomas Gleixner | 4df8374 | 2016-07-13 17:17:03 +0000 | [diff] [blame] | 1648 | [CPUHP_AP_RCUTREE_DYING] = { |
Thomas Gleixner | 677f664 | 2016-09-06 16:13:48 +0200 | [diff] [blame] | 1649 | .name = "RCU/tree:dying", |
Thomas Gleixner | 3c1627e | 2016-09-05 15:28:36 +0200 | [diff] [blame] | 1650 | .startup.single = NULL, |
| 1651 | .teardown.single = rcutree_dying_cpu, |
Thomas Gleixner | 4baa0af | 2016-02-26 18:43:29 +0000 | [diff] [blame] | 1652 | }, |
Lai Jiangshan | 46febd3 | 2017-11-28 21:19:53 +0800 | [diff] [blame] | 1653 | [CPUHP_AP_SMPCFD_DYING] = { |
| 1654 | .name = "smpcfd:dying", |
| 1655 | .startup.single = NULL, |
| 1656 | .teardown.single = smpcfd_dying_cpu, |
| 1657 | }, |
Thomas Gleixner | d10ef6f | 2016-03-08 10:36:13 +0100 | [diff] [blame] | 1658 | /* Entry state on starting. Interrupts enabled from here on. Transient |
| 1659 | * state for synchronsization */ |
| 1660 | [CPUHP_AP_ONLINE] = { |
| 1661 | .name = "ap:online", |
| 1662 | }, |
Lai Jiangshan | 17a2f1c | 2017-12-01 21:50:05 +0800 | [diff] [blame] | 1663 | /* |
Thomas Gleixner | 1cf12e0 | 2020-09-16 09:27:18 +0200 | [diff] [blame] | 1664 | * Handled on control processor until the plugged processor manages |
Lai Jiangshan | 17a2f1c | 2017-12-01 21:50:05 +0800 | [diff] [blame] | 1665 | * this itself. |
| 1666 | */ |
| 1667 | [CPUHP_TEARDOWN_CPU] = { |
| 1668 | .name = "cpu:teardown", |
| 1669 | .startup.single = NULL, |
| 1670 | .teardown.single = takedown_cpu, |
| 1671 | .cant_stop = true, |
| 1672 | }, |
Thomas Gleixner | 1cf12e0 | 2020-09-16 09:27:18 +0200 | [diff] [blame] | 1673 | |
| 1674 | [CPUHP_AP_SCHED_WAIT_EMPTY] = { |
| 1675 | .name = "sched:waitempty", |
| 1676 | .startup.single = NULL, |
| 1677 | .teardown.single = sched_cpu_wait_empty, |
| 1678 | }, |
| 1679 | |
Thomas Gleixner | d10ef6f | 2016-03-08 10:36:13 +0100 | [diff] [blame] | 1680 | /* Handle smpboot threads park/unpark */ |
Thomas Gleixner | 1cf4f62 | 2016-02-26 18:43:39 +0000 | [diff] [blame] | 1681 | [CPUHP_AP_SMPBOOT_THREADS] = { |
Thomas Gleixner | 677f664 | 2016-09-06 16:13:48 +0200 | [diff] [blame] | 1682 | .name = "smpboot/threads:online", |
Thomas Gleixner | 3c1627e | 2016-09-05 15:28:36 +0200 | [diff] [blame] | 1683 | .startup.single = smpboot_unpark_threads, |
Thomas Gleixner | c4de656 | 2018-05-29 19:05:25 +0200 | [diff] [blame] | 1684 | .teardown.single = smpboot_park_threads, |
Thomas Gleixner | 1cf4f62 | 2016-02-26 18:43:39 +0000 | [diff] [blame] | 1685 | }, |
Thomas Gleixner | c5cb83b | 2017-06-20 01:37:51 +0200 | [diff] [blame] | 1686 | [CPUHP_AP_IRQ_AFFINITY_ONLINE] = { |
| 1687 | .name = "irq/affinity:online", |
| 1688 | .startup.single = irq_affinity_online_cpu, |
| 1689 | .teardown.single = NULL, |
| 1690 | }, |
Thomas Gleixner | 00e16c3 | 2016-07-13 17:16:09 +0000 | [diff] [blame] | 1691 | [CPUHP_AP_PERF_ONLINE] = { |
Thomas Gleixner | 3c1627e | 2016-09-05 15:28:36 +0200 | [diff] [blame] | 1692 | .name = "perf:online", |
| 1693 | .startup.single = perf_event_init_cpu, |
| 1694 | .teardown.single = perf_event_exit_cpu, |
Thomas Gleixner | 00e16c3 | 2016-07-13 17:16:09 +0000 | [diff] [blame] | 1695 | }, |
Peter Zijlstra | 9cf5773 | 2018-06-07 10:52:03 +0200 | [diff] [blame] | 1696 | [CPUHP_AP_WATCHDOG_ONLINE] = { |
| 1697 | .name = "lockup_detector:online", |
| 1698 | .startup.single = lockup_detector_online_cpu, |
| 1699 | .teardown.single = lockup_detector_offline_cpu, |
| 1700 | }, |
Thomas Gleixner | 7ee681b | 2016-07-13 17:16:29 +0000 | [diff] [blame] | 1701 | [CPUHP_AP_WORKQUEUE_ONLINE] = { |
Thomas Gleixner | 3c1627e | 2016-09-05 15:28:36 +0200 | [diff] [blame] | 1702 | .name = "workqueue:online", |
| 1703 | .startup.single = workqueue_online_cpu, |
| 1704 | .teardown.single = workqueue_offline_cpu, |
Thomas Gleixner | 7ee681b | 2016-07-13 17:16:29 +0000 | [diff] [blame] | 1705 | }, |
Thomas Gleixner | 4df8374 | 2016-07-13 17:17:03 +0000 | [diff] [blame] | 1706 | [CPUHP_AP_RCUTREE_ONLINE] = { |
Thomas Gleixner | 677f664 | 2016-09-06 16:13:48 +0200 | [diff] [blame] | 1707 | .name = "RCU/tree:online", |
Thomas Gleixner | 3c1627e | 2016-09-05 15:28:36 +0200 | [diff] [blame] | 1708 | .startup.single = rcutree_online_cpu, |
| 1709 | .teardown.single = rcutree_offline_cpu, |
Thomas Gleixner | 4df8374 | 2016-07-13 17:17:03 +0000 | [diff] [blame] | 1710 | }, |
Thomas Gleixner | 4baa0af | 2016-02-26 18:43:29 +0000 | [diff] [blame] | 1711 | #endif |
Thomas Gleixner | d10ef6f | 2016-03-08 10:36:13 +0100 | [diff] [blame] | 1712 | /* |
| 1713 | * The dynamically registered state space is here |
| 1714 | */ |
| 1715 | |
Thomas Gleixner | aaddd7d | 2016-03-10 12:54:19 +0100 | [diff] [blame] | 1716 | #ifdef CONFIG_SMP |
| 1717 | /* Last state is scheduler control setting the cpu active */ |
| 1718 | [CPUHP_AP_ACTIVE] = { |
| 1719 | .name = "sched:active", |
Thomas Gleixner | 3c1627e | 2016-09-05 15:28:36 +0200 | [diff] [blame] | 1720 | .startup.single = sched_cpu_activate, |
| 1721 | .teardown.single = sched_cpu_deactivate, |
Thomas Gleixner | aaddd7d | 2016-03-10 12:54:19 +0100 | [diff] [blame] | 1722 | }, |
| 1723 | #endif |
| 1724 | |
Thomas Gleixner | d10ef6f | 2016-03-08 10:36:13 +0100 | [diff] [blame] | 1725 | /* CPU is fully up and running. */ |
Thomas Gleixner | 4baa0af | 2016-02-26 18:43:29 +0000 | [diff] [blame] | 1726 | [CPUHP_ONLINE] = { |
| 1727 | .name = "online", |
Thomas Gleixner | 3c1627e | 2016-09-05 15:28:36 +0200 | [diff] [blame] | 1728 | .startup.single = NULL, |
| 1729 | .teardown.single = NULL, |
Thomas Gleixner | 4baa0af | 2016-02-26 18:43:29 +0000 | [diff] [blame] | 1730 | }, |
| 1731 | }; |
| 1732 | |
Thomas Gleixner | 5b7aa87 | 2016-02-26 18:43:33 +0000 | [diff] [blame] | 1733 | /* Sanity check for callbacks */ |
| 1734 | static int cpuhp_cb_check(enum cpuhp_state state) |
| 1735 | { |
| 1736 | if (state <= CPUHP_OFFLINE || state >= CPUHP_ONLINE) |
| 1737 | return -EINVAL; |
| 1738 | return 0; |
| 1739 | } |
| 1740 | |
Thomas Gleixner | dc280d93 | 2016-12-21 20:19:49 +0100 | [diff] [blame] | 1741 | /* |
| 1742 | * Returns a free for dynamic slot assignment of the Online state. The states |
| 1743 | * are protected by the cpuhp_slot_states mutex and an empty slot is identified |
| 1744 | * by having no name assigned. |
| 1745 | */ |
| 1746 | static int cpuhp_reserve_state(enum cpuhp_state state) |
| 1747 | { |
Thomas Gleixner | 4205e47 | 2017-01-10 14:01:05 +0100 | [diff] [blame] | 1748 | enum cpuhp_state i, end; |
| 1749 | struct cpuhp_step *step; |
Thomas Gleixner | dc280d93 | 2016-12-21 20:19:49 +0100 | [diff] [blame] | 1750 | |
Thomas Gleixner | 4205e47 | 2017-01-10 14:01:05 +0100 | [diff] [blame] | 1751 | switch (state) { |
| 1752 | case CPUHP_AP_ONLINE_DYN: |
Lai Jiangshan | 17a2f1c | 2017-12-01 21:50:05 +0800 | [diff] [blame] | 1753 | step = cpuhp_hp_states + CPUHP_AP_ONLINE_DYN; |
Thomas Gleixner | 4205e47 | 2017-01-10 14:01:05 +0100 | [diff] [blame] | 1754 | end = CPUHP_AP_ONLINE_DYN_END; |
| 1755 | break; |
| 1756 | case CPUHP_BP_PREPARE_DYN: |
Lai Jiangshan | 17a2f1c | 2017-12-01 21:50:05 +0800 | [diff] [blame] | 1757 | step = cpuhp_hp_states + CPUHP_BP_PREPARE_DYN; |
Thomas Gleixner | 4205e47 | 2017-01-10 14:01:05 +0100 | [diff] [blame] | 1758 | end = CPUHP_BP_PREPARE_DYN_END; |
| 1759 | break; |
| 1760 | default: |
| 1761 | return -EINVAL; |
| 1762 | } |
| 1763 | |
| 1764 | for (i = state; i <= end; i++, step++) { |
| 1765 | if (!step->name) |
Thomas Gleixner | dc280d93 | 2016-12-21 20:19:49 +0100 | [diff] [blame] | 1766 | return i; |
| 1767 | } |
| 1768 | WARN(1, "No more dynamic states available for CPU hotplug\n"); |
| 1769 | return -ENOSPC; |
| 1770 | } |
| 1771 | |
| 1772 | static int cpuhp_store_callbacks(enum cpuhp_state state, const char *name, |
| 1773 | int (*startup)(unsigned int cpu), |
| 1774 | int (*teardown)(unsigned int cpu), |
| 1775 | bool multi_instance) |
Thomas Gleixner | 5b7aa87 | 2016-02-26 18:43:33 +0000 | [diff] [blame] | 1776 | { |
| 1777 | /* (Un)Install the callbacks for further cpu hotplug operations */ |
| 1778 | struct cpuhp_step *sp; |
Thomas Gleixner | dc280d93 | 2016-12-21 20:19:49 +0100 | [diff] [blame] | 1779 | int ret = 0; |
Thomas Gleixner | 5b7aa87 | 2016-02-26 18:43:33 +0000 | [diff] [blame] | 1780 | |
Ethan Barnes | 0c96b27 | 2017-07-19 22:36:00 +0000 | [diff] [blame] | 1781 | /* |
| 1782 | * If name is NULL, then the state gets removed. |
| 1783 | * |
| 1784 | * CPUHP_AP_ONLINE_DYN and CPUHP_BP_PREPARE_DYN are handed out on |
| 1785 | * the first allocation from these dynamic ranges, so the removal |
| 1786 | * would trigger a new allocation and clear the wrong (already |
| 1787 | * empty) state, leaving the callbacks of the to be cleared state |
| 1788 | * dangling, which causes wreckage on the next hotplug operation. |
| 1789 | */ |
| 1790 | if (name && (state == CPUHP_AP_ONLINE_DYN || |
| 1791 | state == CPUHP_BP_PREPARE_DYN)) { |
Thomas Gleixner | dc280d93 | 2016-12-21 20:19:49 +0100 | [diff] [blame] | 1792 | ret = cpuhp_reserve_state(state); |
| 1793 | if (ret < 0) |
Sebastian Andrzej Siewior | dc434e05 | 2017-03-14 16:06:45 +0100 | [diff] [blame] | 1794 | return ret; |
Thomas Gleixner | dc280d93 | 2016-12-21 20:19:49 +0100 | [diff] [blame] | 1795 | state = ret; |
| 1796 | } |
Thomas Gleixner | 5b7aa87 | 2016-02-26 18:43:33 +0000 | [diff] [blame] | 1797 | sp = cpuhp_get_step(state); |
Sebastian Andrzej Siewior | dc434e05 | 2017-03-14 16:06:45 +0100 | [diff] [blame] | 1798 | if (name && sp->name) |
| 1799 | return -EBUSY; |
| 1800 | |
Thomas Gleixner | 3c1627e | 2016-09-05 15:28:36 +0200 | [diff] [blame] | 1801 | sp->startup.single = startup; |
| 1802 | sp->teardown.single = teardown; |
Thomas Gleixner | 5b7aa87 | 2016-02-26 18:43:33 +0000 | [diff] [blame] | 1803 | sp->name = name; |
Thomas Gleixner | cf392d1 | 2016-08-12 19:49:39 +0200 | [diff] [blame] | 1804 | sp->multi_instance = multi_instance; |
| 1805 | INIT_HLIST_HEAD(&sp->list); |
Thomas Gleixner | dc280d93 | 2016-12-21 20:19:49 +0100 | [diff] [blame] | 1806 | return ret; |
Thomas Gleixner | 5b7aa87 | 2016-02-26 18:43:33 +0000 | [diff] [blame] | 1807 | } |
| 1808 | |
| 1809 | static void *cpuhp_get_teardown_cb(enum cpuhp_state state) |
| 1810 | { |
Thomas Gleixner | 3c1627e | 2016-09-05 15:28:36 +0200 | [diff] [blame] | 1811 | return cpuhp_get_step(state)->teardown.single; |
Thomas Gleixner | 5b7aa87 | 2016-02-26 18:43:33 +0000 | [diff] [blame] | 1812 | } |
| 1813 | |
Thomas Gleixner | 5b7aa87 | 2016-02-26 18:43:33 +0000 | [diff] [blame] | 1814 | /* |
| 1815 | * Call the startup/teardown function for a step either on the AP or |
| 1816 | * on the current CPU. |
| 1817 | */ |
Thomas Gleixner | cf392d1 | 2016-08-12 19:49:39 +0200 | [diff] [blame] | 1818 | static int cpuhp_issue_call(int cpu, enum cpuhp_state state, bool bringup, |
| 1819 | struct hlist_node *node) |
Thomas Gleixner | 5b7aa87 | 2016-02-26 18:43:33 +0000 | [diff] [blame] | 1820 | { |
Thomas Gleixner | a724632 | 2016-08-12 19:49:38 +0200 | [diff] [blame] | 1821 | struct cpuhp_step *sp = cpuhp_get_step(state); |
Thomas Gleixner | 5b7aa87 | 2016-02-26 18:43:33 +0000 | [diff] [blame] | 1822 | int ret; |
| 1823 | |
Peter Zijlstra | 4dddfb5 | 2017-09-20 19:00:17 +0200 | [diff] [blame] | 1824 | /* |
| 1825 | * If there's nothing to do, we done. |
| 1826 | * Relies on the union for multi_instance. |
| 1827 | */ |
Vincent Donnefort | 453e410 | 2021-02-16 10:35:06 +0000 | [diff] [blame] | 1828 | if (cpuhp_step_empty(bringup, sp)) |
Thomas Gleixner | 5b7aa87 | 2016-02-26 18:43:33 +0000 | [diff] [blame] | 1829 | return 0; |
Thomas Gleixner | 5b7aa87 | 2016-02-26 18:43:33 +0000 | [diff] [blame] | 1830 | /* |
| 1831 | * The non AP bound callbacks can fail on bringup. On teardown |
| 1832 | * e.g. module removal we crash for now. |
| 1833 | */ |
Thomas Gleixner | 1cf4f62 | 2016-02-26 18:43:39 +0000 | [diff] [blame] | 1834 | #ifdef CONFIG_SMP |
| 1835 | if (cpuhp_is_ap_state(state)) |
Thomas Gleixner | cf392d1 | 2016-08-12 19:49:39 +0200 | [diff] [blame] | 1836 | ret = cpuhp_invoke_ap_callback(cpu, state, bringup, node); |
Thomas Gleixner | 1cf4f62 | 2016-02-26 18:43:39 +0000 | [diff] [blame] | 1837 | else |
Peter Zijlstra | 96abb96 | 2017-09-20 19:00:16 +0200 | [diff] [blame] | 1838 | ret = cpuhp_invoke_callback(cpu, state, bringup, node, NULL); |
Thomas Gleixner | 1cf4f62 | 2016-02-26 18:43:39 +0000 | [diff] [blame] | 1839 | #else |
Peter Zijlstra | 96abb96 | 2017-09-20 19:00:16 +0200 | [diff] [blame] | 1840 | ret = cpuhp_invoke_callback(cpu, state, bringup, node, NULL); |
Thomas Gleixner | 1cf4f62 | 2016-02-26 18:43:39 +0000 | [diff] [blame] | 1841 | #endif |
Thomas Gleixner | 5b7aa87 | 2016-02-26 18:43:33 +0000 | [diff] [blame] | 1842 | BUG_ON(ret && !bringup); |
| 1843 | return ret; |
| 1844 | } |
| 1845 | |
| 1846 | /* |
| 1847 | * Called from __cpuhp_setup_state on a recoverable failure. |
| 1848 | * |
| 1849 | * Note: The teardown callbacks for rollback are not allowed to fail! |
| 1850 | */ |
| 1851 | static void cpuhp_rollback_install(int failedcpu, enum cpuhp_state state, |
Thomas Gleixner | cf392d1 | 2016-08-12 19:49:39 +0200 | [diff] [blame] | 1852 | struct hlist_node *node) |
Thomas Gleixner | 5b7aa87 | 2016-02-26 18:43:33 +0000 | [diff] [blame] | 1853 | { |
| 1854 | int cpu; |
| 1855 | |
Thomas Gleixner | 5b7aa87 | 2016-02-26 18:43:33 +0000 | [diff] [blame] | 1856 | /* Roll back the already executed steps on the other cpus */ |
| 1857 | for_each_present_cpu(cpu) { |
| 1858 | struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu); |
| 1859 | int cpustate = st->state; |
| 1860 | |
| 1861 | if (cpu >= failedcpu) |
| 1862 | break; |
| 1863 | |
| 1864 | /* Did we invoke the startup call on that cpu ? */ |
| 1865 | if (cpustate >= state) |
Thomas Gleixner | cf392d1 | 2016-08-12 19:49:39 +0200 | [diff] [blame] | 1866 | cpuhp_issue_call(cpu, state, false, node); |
Thomas Gleixner | 5b7aa87 | 2016-02-26 18:43:33 +0000 | [diff] [blame] | 1867 | } |
| 1868 | } |
| 1869 | |
Thomas Gleixner | 9805c67 | 2017-05-24 10:15:15 +0200 | [diff] [blame] | 1870 | int __cpuhp_state_add_instance_cpuslocked(enum cpuhp_state state, |
| 1871 | struct hlist_node *node, |
| 1872 | bool invoke) |
Thomas Gleixner | cf392d1 | 2016-08-12 19:49:39 +0200 | [diff] [blame] | 1873 | { |
| 1874 | struct cpuhp_step *sp; |
| 1875 | int cpu; |
| 1876 | int ret; |
| 1877 | |
Thomas Gleixner | 9805c67 | 2017-05-24 10:15:15 +0200 | [diff] [blame] | 1878 | lockdep_assert_cpus_held(); |
| 1879 | |
Thomas Gleixner | cf392d1 | 2016-08-12 19:49:39 +0200 | [diff] [blame] | 1880 | sp = cpuhp_get_step(state); |
| 1881 | if (sp->multi_instance == false) |
| 1882 | return -EINVAL; |
| 1883 | |
Sebastian Andrzej Siewior | dc434e05 | 2017-03-14 16:06:45 +0100 | [diff] [blame] | 1884 | mutex_lock(&cpuhp_state_mutex); |
Thomas Gleixner | cf392d1 | 2016-08-12 19:49:39 +0200 | [diff] [blame] | 1885 | |
Thomas Gleixner | 3c1627e | 2016-09-05 15:28:36 +0200 | [diff] [blame] | 1886 | if (!invoke || !sp->startup.multi) |
Thomas Gleixner | cf392d1 | 2016-08-12 19:49:39 +0200 | [diff] [blame] | 1887 | goto add_node; |
| 1888 | |
| 1889 | /* |
| 1890 | * Try to call the startup callback for each present cpu |
| 1891 | * depending on the hotplug state of the cpu. |
| 1892 | */ |
| 1893 | for_each_present_cpu(cpu) { |
| 1894 | struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu); |
| 1895 | int cpustate = st->state; |
| 1896 | |
| 1897 | if (cpustate < state) |
| 1898 | continue; |
| 1899 | |
| 1900 | ret = cpuhp_issue_call(cpu, state, true, node); |
| 1901 | if (ret) { |
Thomas Gleixner | 3c1627e | 2016-09-05 15:28:36 +0200 | [diff] [blame] | 1902 | if (sp->teardown.multi) |
Thomas Gleixner | cf392d1 | 2016-08-12 19:49:39 +0200 | [diff] [blame] | 1903 | cpuhp_rollback_install(cpu, state, node); |
Sebastian Andrzej Siewior | dc434e05 | 2017-03-14 16:06:45 +0100 | [diff] [blame] | 1904 | goto unlock; |
Thomas Gleixner | cf392d1 | 2016-08-12 19:49:39 +0200 | [diff] [blame] | 1905 | } |
| 1906 | } |
| 1907 | add_node: |
| 1908 | ret = 0; |
Thomas Gleixner | cf392d1 | 2016-08-12 19:49:39 +0200 | [diff] [blame] | 1909 | hlist_add_head(node, &sp->list); |
Sebastian Andrzej Siewior | dc434e05 | 2017-03-14 16:06:45 +0100 | [diff] [blame] | 1910 | unlock: |
Thomas Gleixner | cf392d1 | 2016-08-12 19:49:39 +0200 | [diff] [blame] | 1911 | mutex_unlock(&cpuhp_state_mutex); |
Thomas Gleixner | 9805c67 | 2017-05-24 10:15:15 +0200 | [diff] [blame] | 1912 | return ret; |
| 1913 | } |
| 1914 | |
| 1915 | int __cpuhp_state_add_instance(enum cpuhp_state state, struct hlist_node *node, |
| 1916 | bool invoke) |
| 1917 | { |
| 1918 | int ret; |
| 1919 | |
| 1920 | cpus_read_lock(); |
| 1921 | ret = __cpuhp_state_add_instance_cpuslocked(state, node, invoke); |
Thomas Gleixner | 8f553c4 | 2017-05-24 10:15:12 +0200 | [diff] [blame] | 1922 | cpus_read_unlock(); |
Thomas Gleixner | cf392d1 | 2016-08-12 19:49:39 +0200 | [diff] [blame] | 1923 | return ret; |
| 1924 | } |
| 1925 | EXPORT_SYMBOL_GPL(__cpuhp_state_add_instance); |
| 1926 | |
Thomas Gleixner | 5b7aa87 | 2016-02-26 18:43:33 +0000 | [diff] [blame] | 1927 | /** |
Sebastian Andrzej Siewior | 71def42 | 2017-05-24 10:15:14 +0200 | [diff] [blame] | 1928 | * __cpuhp_setup_state_cpuslocked - Setup the callbacks for an hotplug machine state |
Thomas Gleixner | dc280d93 | 2016-12-21 20:19:49 +0100 | [diff] [blame] | 1929 | * @state: The state to setup |
| 1930 | * @invoke: If true, the startup function is invoked for cpus where |
| 1931 | * cpu state >= @state |
| 1932 | * @startup: startup callback function |
| 1933 | * @teardown: teardown callback function |
| 1934 | * @multi_instance: State is set up for multiple instances which get |
| 1935 | * added afterwards. |
Thomas Gleixner | 5b7aa87 | 2016-02-26 18:43:33 +0000 | [diff] [blame] | 1936 | * |
Sebastian Andrzej Siewior | 71def42 | 2017-05-24 10:15:14 +0200 | [diff] [blame] | 1937 | * The caller needs to hold cpus read locked while calling this function. |
Boris Ostrovsky | 512f098 | 2016-12-15 10:00:57 -0500 | [diff] [blame] | 1938 | * Returns: |
| 1939 | * On success: |
| 1940 | * Positive state number if @state is CPUHP_AP_ONLINE_DYN |
| 1941 | * 0 for all other states |
| 1942 | * On failure: proper (negative) error code |
Thomas Gleixner | 5b7aa87 | 2016-02-26 18:43:33 +0000 | [diff] [blame] | 1943 | */ |
Sebastian Andrzej Siewior | 71def42 | 2017-05-24 10:15:14 +0200 | [diff] [blame] | 1944 | int __cpuhp_setup_state_cpuslocked(enum cpuhp_state state, |
| 1945 | const char *name, bool invoke, |
| 1946 | int (*startup)(unsigned int cpu), |
| 1947 | int (*teardown)(unsigned int cpu), |
| 1948 | bool multi_instance) |
Thomas Gleixner | 5b7aa87 | 2016-02-26 18:43:33 +0000 | [diff] [blame] | 1949 | { |
| 1950 | int cpu, ret = 0; |
Thomas Gleixner | b9d9d69 | 2016-12-26 22:58:19 +0100 | [diff] [blame] | 1951 | bool dynstate; |
Thomas Gleixner | 5b7aa87 | 2016-02-26 18:43:33 +0000 | [diff] [blame] | 1952 | |
Sebastian Andrzej Siewior | 71def42 | 2017-05-24 10:15:14 +0200 | [diff] [blame] | 1953 | lockdep_assert_cpus_held(); |
| 1954 | |
Thomas Gleixner | 5b7aa87 | 2016-02-26 18:43:33 +0000 | [diff] [blame] | 1955 | if (cpuhp_cb_check(state) || !name) |
| 1956 | return -EINVAL; |
| 1957 | |
Sebastian Andrzej Siewior | dc434e05 | 2017-03-14 16:06:45 +0100 | [diff] [blame] | 1958 | mutex_lock(&cpuhp_state_mutex); |
Thomas Gleixner | 5b7aa87 | 2016-02-26 18:43:33 +0000 | [diff] [blame] | 1959 | |
Thomas Gleixner | dc280d93 | 2016-12-21 20:19:49 +0100 | [diff] [blame] | 1960 | ret = cpuhp_store_callbacks(state, name, startup, teardown, |
| 1961 | multi_instance); |
Thomas Gleixner | 5b7aa87 | 2016-02-26 18:43:33 +0000 | [diff] [blame] | 1962 | |
Thomas Gleixner | b9d9d69 | 2016-12-26 22:58:19 +0100 | [diff] [blame] | 1963 | dynstate = state == CPUHP_AP_ONLINE_DYN; |
| 1964 | if (ret > 0 && dynstate) { |
| 1965 | state = ret; |
| 1966 | ret = 0; |
| 1967 | } |
| 1968 | |
Thomas Gleixner | dc280d93 | 2016-12-21 20:19:49 +0100 | [diff] [blame] | 1969 | if (ret || !invoke || !startup) |
Thomas Gleixner | 5b7aa87 | 2016-02-26 18:43:33 +0000 | [diff] [blame] | 1970 | goto out; |
| 1971 | |
| 1972 | /* |
| 1973 | * Try to call the startup callback for each present cpu |
| 1974 | * depending on the hotplug state of the cpu. |
| 1975 | */ |
| 1976 | for_each_present_cpu(cpu) { |
| 1977 | struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu); |
| 1978 | int cpustate = st->state; |
| 1979 | |
| 1980 | if (cpustate < state) |
| 1981 | continue; |
| 1982 | |
Thomas Gleixner | cf392d1 | 2016-08-12 19:49:39 +0200 | [diff] [blame] | 1983 | ret = cpuhp_issue_call(cpu, state, true, NULL); |
Thomas Gleixner | 5b7aa87 | 2016-02-26 18:43:33 +0000 | [diff] [blame] | 1984 | if (ret) { |
Thomas Gleixner | a724632 | 2016-08-12 19:49:38 +0200 | [diff] [blame] | 1985 | if (teardown) |
Thomas Gleixner | cf392d1 | 2016-08-12 19:49:39 +0200 | [diff] [blame] | 1986 | cpuhp_rollback_install(cpu, state, NULL); |
| 1987 | cpuhp_store_callbacks(state, NULL, NULL, NULL, false); |
Thomas Gleixner | 5b7aa87 | 2016-02-26 18:43:33 +0000 | [diff] [blame] | 1988 | goto out; |
| 1989 | } |
| 1990 | } |
| 1991 | out: |
Sebastian Andrzej Siewior | dc434e05 | 2017-03-14 16:06:45 +0100 | [diff] [blame] | 1992 | mutex_unlock(&cpuhp_state_mutex); |
Thomas Gleixner | dc280d93 | 2016-12-21 20:19:49 +0100 | [diff] [blame] | 1993 | /* |
| 1994 | * If the requested state is CPUHP_AP_ONLINE_DYN, return the |
| 1995 | * dynamically allocated state in case of success. |
| 1996 | */ |
Thomas Gleixner | b9d9d69 | 2016-12-26 22:58:19 +0100 | [diff] [blame] | 1997 | if (!ret && dynstate) |
Thomas Gleixner | 5b7aa87 | 2016-02-26 18:43:33 +0000 | [diff] [blame] | 1998 | return state; |
| 1999 | return ret; |
| 2000 | } |
Sebastian Andrzej Siewior | 71def42 | 2017-05-24 10:15:14 +0200 | [diff] [blame] | 2001 | EXPORT_SYMBOL(__cpuhp_setup_state_cpuslocked); |
| 2002 | |
| 2003 | int __cpuhp_setup_state(enum cpuhp_state state, |
| 2004 | const char *name, bool invoke, |
| 2005 | int (*startup)(unsigned int cpu), |
| 2006 | int (*teardown)(unsigned int cpu), |
| 2007 | bool multi_instance) |
| 2008 | { |
| 2009 | int ret; |
| 2010 | |
| 2011 | cpus_read_lock(); |
| 2012 | ret = __cpuhp_setup_state_cpuslocked(state, name, invoke, startup, |
| 2013 | teardown, multi_instance); |
| 2014 | cpus_read_unlock(); |
| 2015 | return ret; |
| 2016 | } |
Thomas Gleixner | 5b7aa87 | 2016-02-26 18:43:33 +0000 | [diff] [blame] | 2017 | EXPORT_SYMBOL(__cpuhp_setup_state); |
| 2018 | |
Thomas Gleixner | cf392d1 | 2016-08-12 19:49:39 +0200 | [diff] [blame] | 2019 | int __cpuhp_state_remove_instance(enum cpuhp_state state, |
| 2020 | struct hlist_node *node, bool invoke) |
| 2021 | { |
| 2022 | struct cpuhp_step *sp = cpuhp_get_step(state); |
| 2023 | int cpu; |
| 2024 | |
| 2025 | BUG_ON(cpuhp_cb_check(state)); |
| 2026 | |
| 2027 | if (!sp->multi_instance) |
| 2028 | return -EINVAL; |
| 2029 | |
Thomas Gleixner | 8f553c4 | 2017-05-24 10:15:12 +0200 | [diff] [blame] | 2030 | cpus_read_lock(); |
Sebastian Andrzej Siewior | dc434e05 | 2017-03-14 16:06:45 +0100 | [diff] [blame] | 2031 | mutex_lock(&cpuhp_state_mutex); |
| 2032 | |
Thomas Gleixner | cf392d1 | 2016-08-12 19:49:39 +0200 | [diff] [blame] | 2033 | if (!invoke || !cpuhp_get_teardown_cb(state)) |
| 2034 | goto remove; |
| 2035 | /* |
| 2036 | * Call the teardown callback for each present cpu depending |
| 2037 | * on the hotplug state of the cpu. This function is not |
| 2038 | * allowed to fail currently! |
| 2039 | */ |
| 2040 | for_each_present_cpu(cpu) { |
| 2041 | struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu); |
| 2042 | int cpustate = st->state; |
| 2043 | |
| 2044 | if (cpustate >= state) |
| 2045 | cpuhp_issue_call(cpu, state, false, node); |
| 2046 | } |
| 2047 | |
| 2048 | remove: |
Thomas Gleixner | cf392d1 | 2016-08-12 19:49:39 +0200 | [diff] [blame] | 2049 | hlist_del(node); |
| 2050 | mutex_unlock(&cpuhp_state_mutex); |
Thomas Gleixner | 8f553c4 | 2017-05-24 10:15:12 +0200 | [diff] [blame] | 2051 | cpus_read_unlock(); |
Thomas Gleixner | cf392d1 | 2016-08-12 19:49:39 +0200 | [diff] [blame] | 2052 | |
| 2053 | return 0; |
| 2054 | } |
| 2055 | EXPORT_SYMBOL_GPL(__cpuhp_state_remove_instance); |
Sebastian Andrzej Siewior | dc434e05 | 2017-03-14 16:06:45 +0100 | [diff] [blame] | 2056 | |
Thomas Gleixner | 5b7aa87 | 2016-02-26 18:43:33 +0000 | [diff] [blame] | 2057 | /** |
Sebastian Andrzej Siewior | 71def42 | 2017-05-24 10:15:14 +0200 | [diff] [blame] | 2058 | * __cpuhp_remove_state_cpuslocked - Remove the callbacks for an hotplug machine state |
Thomas Gleixner | 5b7aa87 | 2016-02-26 18:43:33 +0000 | [diff] [blame] | 2059 | * @state: The state to remove |
| 2060 | * @invoke: If true, the teardown function is invoked for cpus where |
| 2061 | * cpu state >= @state |
| 2062 | * |
Sebastian Andrzej Siewior | 71def42 | 2017-05-24 10:15:14 +0200 | [diff] [blame] | 2063 | * The caller needs to hold cpus read locked while calling this function. |
Thomas Gleixner | 5b7aa87 | 2016-02-26 18:43:33 +0000 | [diff] [blame] | 2064 | * The teardown callback is currently not allowed to fail. Think |
| 2065 | * about module removal! |
| 2066 | */ |
Sebastian Andrzej Siewior | 71def42 | 2017-05-24 10:15:14 +0200 | [diff] [blame] | 2067 | void __cpuhp_remove_state_cpuslocked(enum cpuhp_state state, bool invoke) |
Thomas Gleixner | 5b7aa87 | 2016-02-26 18:43:33 +0000 | [diff] [blame] | 2068 | { |
Thomas Gleixner | cf392d1 | 2016-08-12 19:49:39 +0200 | [diff] [blame] | 2069 | struct cpuhp_step *sp = cpuhp_get_step(state); |
Thomas Gleixner | 5b7aa87 | 2016-02-26 18:43:33 +0000 | [diff] [blame] | 2070 | int cpu; |
| 2071 | |
| 2072 | BUG_ON(cpuhp_cb_check(state)); |
| 2073 | |
Sebastian Andrzej Siewior | 71def42 | 2017-05-24 10:15:14 +0200 | [diff] [blame] | 2074 | lockdep_assert_cpus_held(); |
Thomas Gleixner | 5b7aa87 | 2016-02-26 18:43:33 +0000 | [diff] [blame] | 2075 | |
Sebastian Andrzej Siewior | dc434e05 | 2017-03-14 16:06:45 +0100 | [diff] [blame] | 2076 | mutex_lock(&cpuhp_state_mutex); |
Thomas Gleixner | cf392d1 | 2016-08-12 19:49:39 +0200 | [diff] [blame] | 2077 | if (sp->multi_instance) { |
| 2078 | WARN(!hlist_empty(&sp->list), |
| 2079 | "Error: Removing state %d which has instances left.\n", |
| 2080 | state); |
| 2081 | goto remove; |
| 2082 | } |
| 2083 | |
Thomas Gleixner | a724632 | 2016-08-12 19:49:38 +0200 | [diff] [blame] | 2084 | if (!invoke || !cpuhp_get_teardown_cb(state)) |
Thomas Gleixner | 5b7aa87 | 2016-02-26 18:43:33 +0000 | [diff] [blame] | 2085 | goto remove; |
| 2086 | |
| 2087 | /* |
| 2088 | * Call the teardown callback for each present cpu depending |
| 2089 | * on the hotplug state of the cpu. This function is not |
| 2090 | * allowed to fail currently! |
| 2091 | */ |
| 2092 | for_each_present_cpu(cpu) { |
| 2093 | struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu); |
| 2094 | int cpustate = st->state; |
| 2095 | |
| 2096 | if (cpustate >= state) |
Thomas Gleixner | cf392d1 | 2016-08-12 19:49:39 +0200 | [diff] [blame] | 2097 | cpuhp_issue_call(cpu, state, false, NULL); |
Thomas Gleixner | 5b7aa87 | 2016-02-26 18:43:33 +0000 | [diff] [blame] | 2098 | } |
| 2099 | remove: |
Thomas Gleixner | cf392d1 | 2016-08-12 19:49:39 +0200 | [diff] [blame] | 2100 | cpuhp_store_callbacks(state, NULL, NULL, NULL, false); |
Sebastian Andrzej Siewior | dc434e05 | 2017-03-14 16:06:45 +0100 | [diff] [blame] | 2101 | mutex_unlock(&cpuhp_state_mutex); |
Sebastian Andrzej Siewior | 71def42 | 2017-05-24 10:15:14 +0200 | [diff] [blame] | 2102 | } |
| 2103 | EXPORT_SYMBOL(__cpuhp_remove_state_cpuslocked); |
| 2104 | |
| 2105 | void __cpuhp_remove_state(enum cpuhp_state state, bool invoke) |
| 2106 | { |
| 2107 | cpus_read_lock(); |
| 2108 | __cpuhp_remove_state_cpuslocked(state, invoke); |
Thomas Gleixner | 8f553c4 | 2017-05-24 10:15:12 +0200 | [diff] [blame] | 2109 | cpus_read_unlock(); |
Thomas Gleixner | 5b7aa87 | 2016-02-26 18:43:33 +0000 | [diff] [blame] | 2110 | } |
| 2111 | EXPORT_SYMBOL(__cpuhp_remove_state); |
| 2112 | |
Arnd Bergmann | dc8d37e | 2019-12-10 20:56:04 +0100 | [diff] [blame] | 2113 | #ifdef CONFIG_HOTPLUG_SMT |
| 2114 | static void cpuhp_offline_cpu_device(unsigned int cpu) |
| 2115 | { |
| 2116 | struct device *dev = get_cpu_device(cpu); |
| 2117 | |
| 2118 | dev->offline = true; |
| 2119 | /* Tell user space about the state change */ |
| 2120 | kobject_uevent(&dev->kobj, KOBJ_OFFLINE); |
| 2121 | } |
| 2122 | |
| 2123 | static void cpuhp_online_cpu_device(unsigned int cpu) |
| 2124 | { |
| 2125 | struct device *dev = get_cpu_device(cpu); |
| 2126 | |
| 2127 | dev->offline = false; |
| 2128 | /* Tell user space about the state change */ |
| 2129 | kobject_uevent(&dev->kobj, KOBJ_ONLINE); |
| 2130 | } |
| 2131 | |
| 2132 | int cpuhp_smt_disable(enum cpuhp_smt_control ctrlval) |
| 2133 | { |
| 2134 | int cpu, ret = 0; |
| 2135 | |
| 2136 | cpu_maps_update_begin(); |
| 2137 | for_each_online_cpu(cpu) { |
| 2138 | if (topology_is_primary_thread(cpu)) |
| 2139 | continue; |
| 2140 | ret = cpu_down_maps_locked(cpu, CPUHP_OFFLINE); |
| 2141 | if (ret) |
| 2142 | break; |
| 2143 | /* |
| 2144 | * As this needs to hold the cpu maps lock it's impossible |
| 2145 | * to call device_offline() because that ends up calling |
| 2146 | * cpu_down() which takes cpu maps lock. cpu maps lock |
| 2147 | * needs to be held as this might race against in kernel |
| 2148 | * abusers of the hotplug machinery (thermal management). |
| 2149 | * |
| 2150 | * So nothing would update device:offline state. That would |
| 2151 | * leave the sysfs entry stale and prevent onlining after |
| 2152 | * smt control has been changed to 'off' again. This is |
| 2153 | * called under the sysfs hotplug lock, so it is properly |
| 2154 | * serialized against the regular offline usage. |
| 2155 | */ |
| 2156 | cpuhp_offline_cpu_device(cpu); |
| 2157 | } |
| 2158 | if (!ret) |
| 2159 | cpu_smt_control = ctrlval; |
| 2160 | cpu_maps_update_done(); |
| 2161 | return ret; |
| 2162 | } |
| 2163 | |
| 2164 | int cpuhp_smt_enable(void) |
| 2165 | { |
| 2166 | int cpu, ret = 0; |
| 2167 | |
| 2168 | cpu_maps_update_begin(); |
| 2169 | cpu_smt_control = CPU_SMT_ENABLED; |
| 2170 | for_each_present_cpu(cpu) { |
| 2171 | /* Skip online CPUs and CPUs on offline nodes */ |
| 2172 | if (cpu_online(cpu) || !node_online(cpu_to_node(cpu))) |
| 2173 | continue; |
| 2174 | ret = _cpu_up(cpu, 0, CPUHP_ONLINE); |
| 2175 | if (ret) |
| 2176 | break; |
| 2177 | /* See comment in cpuhp_smt_disable() */ |
| 2178 | cpuhp_online_cpu_device(cpu); |
| 2179 | } |
| 2180 | cpu_maps_update_done(); |
| 2181 | return ret; |
| 2182 | } |
| 2183 | #endif |
| 2184 | |
Thomas Gleixner | 98f8cdc | 2016-02-26 18:43:31 +0000 | [diff] [blame] | 2185 | #if defined(CONFIG_SYSFS) && defined(CONFIG_HOTPLUG_CPU) |
| 2186 | static ssize_t show_cpuhp_state(struct device *dev, |
| 2187 | struct device_attribute *attr, char *buf) |
| 2188 | { |
| 2189 | struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, dev->id); |
| 2190 | |
| 2191 | return sprintf(buf, "%d\n", st->state); |
| 2192 | } |
| 2193 | static DEVICE_ATTR(state, 0444, show_cpuhp_state, NULL); |
| 2194 | |
Thomas Gleixner | 757c989 | 2016-02-26 18:43:32 +0000 | [diff] [blame] | 2195 | static ssize_t write_cpuhp_target(struct device *dev, |
| 2196 | struct device_attribute *attr, |
| 2197 | const char *buf, size_t count) |
| 2198 | { |
| 2199 | struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, dev->id); |
| 2200 | struct cpuhp_step *sp; |
| 2201 | int target, ret; |
| 2202 | |
| 2203 | ret = kstrtoint(buf, 10, &target); |
| 2204 | if (ret) |
| 2205 | return ret; |
| 2206 | |
| 2207 | #ifdef CONFIG_CPU_HOTPLUG_STATE_CONTROL |
| 2208 | if (target < CPUHP_OFFLINE || target > CPUHP_ONLINE) |
| 2209 | return -EINVAL; |
| 2210 | #else |
| 2211 | if (target != CPUHP_OFFLINE && target != CPUHP_ONLINE) |
| 2212 | return -EINVAL; |
| 2213 | #endif |
| 2214 | |
| 2215 | ret = lock_device_hotplug_sysfs(); |
| 2216 | if (ret) |
| 2217 | return ret; |
| 2218 | |
| 2219 | mutex_lock(&cpuhp_state_mutex); |
| 2220 | sp = cpuhp_get_step(target); |
| 2221 | ret = !sp->name || sp->cant_stop ? -EINVAL : 0; |
| 2222 | mutex_unlock(&cpuhp_state_mutex); |
| 2223 | if (ret) |
Sebastian Andrzej Siewior | 40da1b1 | 2017-06-02 16:27:14 +0200 | [diff] [blame] | 2224 | goto out; |
Thomas Gleixner | 757c989 | 2016-02-26 18:43:32 +0000 | [diff] [blame] | 2225 | |
| 2226 | if (st->state < target) |
Qais Yousef | 33c3736 | 2020-03-23 13:51:10 +0000 | [diff] [blame] | 2227 | ret = cpu_up(dev->id, target); |
Thomas Gleixner | 757c989 | 2016-02-26 18:43:32 +0000 | [diff] [blame] | 2228 | else |
Qais Yousef | 33c3736 | 2020-03-23 13:51:10 +0000 | [diff] [blame] | 2229 | ret = cpu_down(dev->id, target); |
Sebastian Andrzej Siewior | 40da1b1 | 2017-06-02 16:27:14 +0200 | [diff] [blame] | 2230 | out: |
Thomas Gleixner | 757c989 | 2016-02-26 18:43:32 +0000 | [diff] [blame] | 2231 | unlock_device_hotplug(); |
| 2232 | return ret ? ret : count; |
| 2233 | } |
| 2234 | |
Thomas Gleixner | 98f8cdc | 2016-02-26 18:43:31 +0000 | [diff] [blame] | 2235 | static ssize_t show_cpuhp_target(struct device *dev, |
| 2236 | struct device_attribute *attr, char *buf) |
| 2237 | { |
| 2238 | struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, dev->id); |
| 2239 | |
| 2240 | return sprintf(buf, "%d\n", st->target); |
| 2241 | } |
Thomas Gleixner | 757c989 | 2016-02-26 18:43:32 +0000 | [diff] [blame] | 2242 | static DEVICE_ATTR(target, 0644, show_cpuhp_target, write_cpuhp_target); |
Thomas Gleixner | 98f8cdc | 2016-02-26 18:43:31 +0000 | [diff] [blame] | 2243 | |
Peter Zijlstra | 1db4948 | 2017-09-20 19:00:21 +0200 | [diff] [blame] | 2244 | |
| 2245 | static ssize_t write_cpuhp_fail(struct device *dev, |
| 2246 | struct device_attribute *attr, |
| 2247 | const char *buf, size_t count) |
| 2248 | { |
| 2249 | struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, dev->id); |
| 2250 | struct cpuhp_step *sp; |
| 2251 | int fail, ret; |
| 2252 | |
| 2253 | ret = kstrtoint(buf, 10, &fail); |
| 2254 | if (ret) |
| 2255 | return ret; |
| 2256 | |
Vincent Donnefort | 3ae70c2 | 2021-02-16 10:35:04 +0000 | [diff] [blame] | 2257 | if (fail == CPUHP_INVALID) { |
| 2258 | st->fail = fail; |
| 2259 | return count; |
| 2260 | } |
| 2261 | |
Eiichi Tsukata | 33d4a5a | 2019-06-27 11:47:32 +0900 | [diff] [blame] | 2262 | if (fail < CPUHP_OFFLINE || fail > CPUHP_ONLINE) |
| 2263 | return -EINVAL; |
| 2264 | |
Peter Zijlstra | 1db4948 | 2017-09-20 19:00:21 +0200 | [diff] [blame] | 2265 | /* |
| 2266 | * Cannot fail STARTING/DYING callbacks. |
| 2267 | */ |
| 2268 | if (cpuhp_is_atomic_state(fail)) |
| 2269 | return -EINVAL; |
| 2270 | |
| 2271 | /* |
Vincent Donnefort | 62f2506 | 2021-02-16 10:35:05 +0000 | [diff] [blame] | 2272 | * DEAD callbacks cannot fail... |
| 2273 | * ... neither can CPUHP_BRINGUP_CPU during hotunplug. The latter |
| 2274 | * triggering STARTING callbacks, a failure in this state would |
| 2275 | * hinder rollback. |
| 2276 | */ |
| 2277 | if (fail <= CPUHP_BRINGUP_CPU && st->state > CPUHP_BRINGUP_CPU) |
| 2278 | return -EINVAL; |
| 2279 | |
| 2280 | /* |
Peter Zijlstra | 1db4948 | 2017-09-20 19:00:21 +0200 | [diff] [blame] | 2281 | * Cannot fail anything that doesn't have callbacks. |
| 2282 | */ |
| 2283 | mutex_lock(&cpuhp_state_mutex); |
| 2284 | sp = cpuhp_get_step(fail); |
| 2285 | if (!sp->startup.single && !sp->teardown.single) |
| 2286 | ret = -EINVAL; |
| 2287 | mutex_unlock(&cpuhp_state_mutex); |
| 2288 | if (ret) |
| 2289 | return ret; |
| 2290 | |
| 2291 | st->fail = fail; |
| 2292 | |
| 2293 | return count; |
| 2294 | } |
| 2295 | |
| 2296 | static ssize_t show_cpuhp_fail(struct device *dev, |
| 2297 | struct device_attribute *attr, char *buf) |
| 2298 | { |
| 2299 | struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, dev->id); |
| 2300 | |
| 2301 | return sprintf(buf, "%d\n", st->fail); |
| 2302 | } |
| 2303 | |
| 2304 | static DEVICE_ATTR(fail, 0644, show_cpuhp_fail, write_cpuhp_fail); |
| 2305 | |
Thomas Gleixner | 98f8cdc | 2016-02-26 18:43:31 +0000 | [diff] [blame] | 2306 | static struct attribute *cpuhp_cpu_attrs[] = { |
| 2307 | &dev_attr_state.attr, |
| 2308 | &dev_attr_target.attr, |
Peter Zijlstra | 1db4948 | 2017-09-20 19:00:21 +0200 | [diff] [blame] | 2309 | &dev_attr_fail.attr, |
Thomas Gleixner | 98f8cdc | 2016-02-26 18:43:31 +0000 | [diff] [blame] | 2310 | NULL |
| 2311 | }; |
| 2312 | |
Arvind Yadav | 993647a | 2017-06-29 17:40:47 +0530 | [diff] [blame] | 2313 | static const struct attribute_group cpuhp_cpu_attr_group = { |
Thomas Gleixner | 98f8cdc | 2016-02-26 18:43:31 +0000 | [diff] [blame] | 2314 | .attrs = cpuhp_cpu_attrs, |
| 2315 | .name = "hotplug", |
| 2316 | NULL |
| 2317 | }; |
| 2318 | |
| 2319 | static ssize_t show_cpuhp_states(struct device *dev, |
| 2320 | struct device_attribute *attr, char *buf) |
| 2321 | { |
| 2322 | ssize_t cur, res = 0; |
| 2323 | int i; |
| 2324 | |
| 2325 | mutex_lock(&cpuhp_state_mutex); |
Thomas Gleixner | 757c989 | 2016-02-26 18:43:32 +0000 | [diff] [blame] | 2326 | for (i = CPUHP_OFFLINE; i <= CPUHP_ONLINE; i++) { |
Thomas Gleixner | 98f8cdc | 2016-02-26 18:43:31 +0000 | [diff] [blame] | 2327 | struct cpuhp_step *sp = cpuhp_get_step(i); |
| 2328 | |
| 2329 | if (sp->name) { |
| 2330 | cur = sprintf(buf, "%3d: %s\n", i, sp->name); |
| 2331 | buf += cur; |
| 2332 | res += cur; |
| 2333 | } |
| 2334 | } |
| 2335 | mutex_unlock(&cpuhp_state_mutex); |
| 2336 | return res; |
| 2337 | } |
| 2338 | static DEVICE_ATTR(states, 0444, show_cpuhp_states, NULL); |
| 2339 | |
| 2340 | static struct attribute *cpuhp_cpu_root_attrs[] = { |
| 2341 | &dev_attr_states.attr, |
| 2342 | NULL |
| 2343 | }; |
| 2344 | |
Arvind Yadav | 993647a | 2017-06-29 17:40:47 +0530 | [diff] [blame] | 2345 | static const struct attribute_group cpuhp_cpu_root_attr_group = { |
Thomas Gleixner | 98f8cdc | 2016-02-26 18:43:31 +0000 | [diff] [blame] | 2346 | .attrs = cpuhp_cpu_root_attrs, |
| 2347 | .name = "hotplug", |
| 2348 | NULL |
| 2349 | }; |
| 2350 | |
Thomas Gleixner | 05736e4 | 2018-05-29 17:48:27 +0200 | [diff] [blame] | 2351 | #ifdef CONFIG_HOTPLUG_SMT |
| 2352 | |
Thomas Gleixner | 05736e4 | 2018-05-29 17:48:27 +0200 | [diff] [blame] | 2353 | static ssize_t |
Josh Poimboeuf | de7b77e | 2019-03-27 07:00:29 -0500 | [diff] [blame] | 2354 | __store_smt_control(struct device *dev, struct device_attribute *attr, |
| 2355 | const char *buf, size_t count) |
Thomas Gleixner | 05736e4 | 2018-05-29 17:48:27 +0200 | [diff] [blame] | 2356 | { |
| 2357 | int ctrlval, ret; |
| 2358 | |
| 2359 | if (sysfs_streq(buf, "on")) |
| 2360 | ctrlval = CPU_SMT_ENABLED; |
| 2361 | else if (sysfs_streq(buf, "off")) |
| 2362 | ctrlval = CPU_SMT_DISABLED; |
| 2363 | else if (sysfs_streq(buf, "forceoff")) |
| 2364 | ctrlval = CPU_SMT_FORCE_DISABLED; |
| 2365 | else |
| 2366 | return -EINVAL; |
| 2367 | |
| 2368 | if (cpu_smt_control == CPU_SMT_FORCE_DISABLED) |
| 2369 | return -EPERM; |
| 2370 | |
| 2371 | if (cpu_smt_control == CPU_SMT_NOT_SUPPORTED) |
| 2372 | return -ENODEV; |
| 2373 | |
| 2374 | ret = lock_device_hotplug_sysfs(); |
| 2375 | if (ret) |
| 2376 | return ret; |
| 2377 | |
| 2378 | if (ctrlval != cpu_smt_control) { |
| 2379 | switch (ctrlval) { |
| 2380 | case CPU_SMT_ENABLED: |
Thomas Gleixner | 215af54 | 2018-07-07 11:40:18 +0200 | [diff] [blame] | 2381 | ret = cpuhp_smt_enable(); |
Thomas Gleixner | 05736e4 | 2018-05-29 17:48:27 +0200 | [diff] [blame] | 2382 | break; |
| 2383 | case CPU_SMT_DISABLED: |
| 2384 | case CPU_SMT_FORCE_DISABLED: |
| 2385 | ret = cpuhp_smt_disable(ctrlval); |
| 2386 | break; |
| 2387 | } |
| 2388 | } |
| 2389 | |
| 2390 | unlock_device_hotplug(); |
| 2391 | return ret ? ret : count; |
| 2392 | } |
Josh Poimboeuf | de7b77e | 2019-03-27 07:00:29 -0500 | [diff] [blame] | 2393 | |
| 2394 | #else /* !CONFIG_HOTPLUG_SMT */ |
| 2395 | static ssize_t |
| 2396 | __store_smt_control(struct device *dev, struct device_attribute *attr, |
| 2397 | const char *buf, size_t count) |
| 2398 | { |
| 2399 | return -ENODEV; |
| 2400 | } |
| 2401 | #endif /* CONFIG_HOTPLUG_SMT */ |
| 2402 | |
| 2403 | static const char *smt_states[] = { |
| 2404 | [CPU_SMT_ENABLED] = "on", |
| 2405 | [CPU_SMT_DISABLED] = "off", |
| 2406 | [CPU_SMT_FORCE_DISABLED] = "forceoff", |
| 2407 | [CPU_SMT_NOT_SUPPORTED] = "notsupported", |
| 2408 | [CPU_SMT_NOT_IMPLEMENTED] = "notimplemented", |
| 2409 | }; |
| 2410 | |
| 2411 | static ssize_t |
| 2412 | show_smt_control(struct device *dev, struct device_attribute *attr, char *buf) |
| 2413 | { |
| 2414 | const char *state = smt_states[cpu_smt_control]; |
| 2415 | |
| 2416 | return snprintf(buf, PAGE_SIZE - 2, "%s\n", state); |
| 2417 | } |
| 2418 | |
| 2419 | static ssize_t |
| 2420 | store_smt_control(struct device *dev, struct device_attribute *attr, |
| 2421 | const char *buf, size_t count) |
| 2422 | { |
| 2423 | return __store_smt_control(dev, attr, buf, count); |
| 2424 | } |
Thomas Gleixner | 05736e4 | 2018-05-29 17:48:27 +0200 | [diff] [blame] | 2425 | static DEVICE_ATTR(control, 0644, show_smt_control, store_smt_control); |
| 2426 | |
| 2427 | static ssize_t |
| 2428 | show_smt_active(struct device *dev, struct device_attribute *attr, char *buf) |
| 2429 | { |
Josh Poimboeuf | de7b77e | 2019-03-27 07:00:29 -0500 | [diff] [blame] | 2430 | return snprintf(buf, PAGE_SIZE - 2, "%d\n", sched_smt_active()); |
Thomas Gleixner | 05736e4 | 2018-05-29 17:48:27 +0200 | [diff] [blame] | 2431 | } |
| 2432 | static DEVICE_ATTR(active, 0444, show_smt_active, NULL); |
| 2433 | |
| 2434 | static struct attribute *cpuhp_smt_attrs[] = { |
| 2435 | &dev_attr_control.attr, |
| 2436 | &dev_attr_active.attr, |
| 2437 | NULL |
| 2438 | }; |
| 2439 | |
| 2440 | static const struct attribute_group cpuhp_smt_attr_group = { |
| 2441 | .attrs = cpuhp_smt_attrs, |
| 2442 | .name = "smt", |
| 2443 | NULL |
| 2444 | }; |
| 2445 | |
Josh Poimboeuf | de7b77e | 2019-03-27 07:00:29 -0500 | [diff] [blame] | 2446 | static int __init cpu_smt_sysfs_init(void) |
Thomas Gleixner | 05736e4 | 2018-05-29 17:48:27 +0200 | [diff] [blame] | 2447 | { |
Thomas Gleixner | 05736e4 | 2018-05-29 17:48:27 +0200 | [diff] [blame] | 2448 | return sysfs_create_group(&cpu_subsys.dev_root->kobj, |
| 2449 | &cpuhp_smt_attr_group); |
| 2450 | } |
| 2451 | |
Thomas Gleixner | 98f8cdc | 2016-02-26 18:43:31 +0000 | [diff] [blame] | 2452 | static int __init cpuhp_sysfs_init(void) |
| 2453 | { |
| 2454 | int cpu, ret; |
| 2455 | |
Josh Poimboeuf | de7b77e | 2019-03-27 07:00:29 -0500 | [diff] [blame] | 2456 | ret = cpu_smt_sysfs_init(); |
Thomas Gleixner | 05736e4 | 2018-05-29 17:48:27 +0200 | [diff] [blame] | 2457 | if (ret) |
| 2458 | return ret; |
| 2459 | |
Thomas Gleixner | 98f8cdc | 2016-02-26 18:43:31 +0000 | [diff] [blame] | 2460 | ret = sysfs_create_group(&cpu_subsys.dev_root->kobj, |
| 2461 | &cpuhp_cpu_root_attr_group); |
| 2462 | if (ret) |
| 2463 | return ret; |
| 2464 | |
| 2465 | for_each_possible_cpu(cpu) { |
| 2466 | struct device *dev = get_cpu_device(cpu); |
| 2467 | |
| 2468 | if (!dev) |
| 2469 | continue; |
| 2470 | ret = sysfs_create_group(&dev->kobj, &cpuhp_cpu_attr_group); |
| 2471 | if (ret) |
| 2472 | return ret; |
| 2473 | } |
| 2474 | return 0; |
| 2475 | } |
| 2476 | device_initcall(cpuhp_sysfs_init); |
Josh Poimboeuf | de7b77e | 2019-03-27 07:00:29 -0500 | [diff] [blame] | 2477 | #endif /* CONFIG_SYSFS && CONFIG_HOTPLUG_CPU */ |
Thomas Gleixner | 98f8cdc | 2016-02-26 18:43:31 +0000 | [diff] [blame] | 2478 | |
Linus Torvalds | e56b3bc | 2008-07-28 11:32:33 -0700 | [diff] [blame] | 2479 | /* |
| 2480 | * cpu_bit_bitmap[] is a special, "compressed" data structure that |
| 2481 | * represents all NR_CPUS bits binary values of 1<<nr. |
| 2482 | * |
Rusty Russell | e0b582e | 2009-01-01 10:12:28 +1030 | [diff] [blame] | 2483 | * It is used by cpumask_of() to get a constant address to a CPU |
Linus Torvalds | e56b3bc | 2008-07-28 11:32:33 -0700 | [diff] [blame] | 2484 | * mask value that has a single bit set only. |
| 2485 | */ |
Mike Travis | b8d317d | 2008-07-24 18:21:29 -0700 | [diff] [blame] | 2486 | |
Linus Torvalds | e56b3bc | 2008-07-28 11:32:33 -0700 | [diff] [blame] | 2487 | /* cpu_bit_bitmap[0] is empty - so we can back into it */ |
Michael Rodriguez | 4d51985 | 2011-03-22 16:34:07 -0700 | [diff] [blame] | 2488 | #define MASK_DECLARE_1(x) [x+1][0] = (1UL << (x)) |
Linus Torvalds | e56b3bc | 2008-07-28 11:32:33 -0700 | [diff] [blame] | 2489 | #define MASK_DECLARE_2(x) MASK_DECLARE_1(x), MASK_DECLARE_1(x+1) |
| 2490 | #define MASK_DECLARE_4(x) MASK_DECLARE_2(x), MASK_DECLARE_2(x+2) |
| 2491 | #define MASK_DECLARE_8(x) MASK_DECLARE_4(x), MASK_DECLARE_4(x+4) |
Mike Travis | b8d317d | 2008-07-24 18:21:29 -0700 | [diff] [blame] | 2492 | |
Linus Torvalds | e56b3bc | 2008-07-28 11:32:33 -0700 | [diff] [blame] | 2493 | const unsigned long cpu_bit_bitmap[BITS_PER_LONG+1][BITS_TO_LONGS(NR_CPUS)] = { |
Mike Travis | b8d317d | 2008-07-24 18:21:29 -0700 | [diff] [blame] | 2494 | |
Linus Torvalds | e56b3bc | 2008-07-28 11:32:33 -0700 | [diff] [blame] | 2495 | MASK_DECLARE_8(0), MASK_DECLARE_8(8), |
| 2496 | MASK_DECLARE_8(16), MASK_DECLARE_8(24), |
| 2497 | #if BITS_PER_LONG > 32 |
| 2498 | MASK_DECLARE_8(32), MASK_DECLARE_8(40), |
| 2499 | MASK_DECLARE_8(48), MASK_DECLARE_8(56), |
Mike Travis | b8d317d | 2008-07-24 18:21:29 -0700 | [diff] [blame] | 2500 | #endif |
| 2501 | }; |
Linus Torvalds | e56b3bc | 2008-07-28 11:32:33 -0700 | [diff] [blame] | 2502 | EXPORT_SYMBOL_GPL(cpu_bit_bitmap); |
Rusty Russell | 2d3854a | 2008-11-05 13:39:10 +1100 | [diff] [blame] | 2503 | |
| 2504 | const DECLARE_BITMAP(cpu_all_bits, NR_CPUS) = CPU_BITS_ALL; |
| 2505 | EXPORT_SYMBOL(cpu_all_bits); |
Rusty Russell | b3199c0 | 2008-12-30 09:05:14 +1030 | [diff] [blame] | 2506 | |
| 2507 | #ifdef CONFIG_INIT_ALL_POSSIBLE |
Rasmus Villemoes | 4b804c8 | 2016-01-20 15:00:19 -0800 | [diff] [blame] | 2508 | struct cpumask __cpu_possible_mask __read_mostly |
Rasmus Villemoes | c4c54dd | 2016-01-20 15:00:16 -0800 | [diff] [blame] | 2509 | = {CPU_BITS_ALL}; |
Rusty Russell | b3199c0 | 2008-12-30 09:05:14 +1030 | [diff] [blame] | 2510 | #else |
Rasmus Villemoes | 4b804c8 | 2016-01-20 15:00:19 -0800 | [diff] [blame] | 2511 | struct cpumask __cpu_possible_mask __read_mostly; |
Rusty Russell | b3199c0 | 2008-12-30 09:05:14 +1030 | [diff] [blame] | 2512 | #endif |
Rasmus Villemoes | 4b804c8 | 2016-01-20 15:00:19 -0800 | [diff] [blame] | 2513 | EXPORT_SYMBOL(__cpu_possible_mask); |
Rusty Russell | b3199c0 | 2008-12-30 09:05:14 +1030 | [diff] [blame] | 2514 | |
Rasmus Villemoes | 4b804c8 | 2016-01-20 15:00:19 -0800 | [diff] [blame] | 2515 | struct cpumask __cpu_online_mask __read_mostly; |
| 2516 | EXPORT_SYMBOL(__cpu_online_mask); |
Rusty Russell | b3199c0 | 2008-12-30 09:05:14 +1030 | [diff] [blame] | 2517 | |
Rasmus Villemoes | 4b804c8 | 2016-01-20 15:00:19 -0800 | [diff] [blame] | 2518 | struct cpumask __cpu_present_mask __read_mostly; |
| 2519 | EXPORT_SYMBOL(__cpu_present_mask); |
Rusty Russell | b3199c0 | 2008-12-30 09:05:14 +1030 | [diff] [blame] | 2520 | |
Rasmus Villemoes | 4b804c8 | 2016-01-20 15:00:19 -0800 | [diff] [blame] | 2521 | struct cpumask __cpu_active_mask __read_mostly; |
| 2522 | EXPORT_SYMBOL(__cpu_active_mask); |
Rusty Russell | 3fa4152 | 2008-12-30 09:05:16 +1030 | [diff] [blame] | 2523 | |
Peter Zijlstra | e40f74c | 2021-01-19 18:43:45 +0100 | [diff] [blame] | 2524 | struct cpumask __cpu_dying_mask __read_mostly; |
| 2525 | EXPORT_SYMBOL(__cpu_dying_mask); |
| 2526 | |
Thomas Gleixner | 0c09ab9 | 2019-07-09 16:23:40 +0200 | [diff] [blame] | 2527 | atomic_t __num_online_cpus __read_mostly; |
| 2528 | EXPORT_SYMBOL(__num_online_cpus); |
| 2529 | |
Rusty Russell | 3fa4152 | 2008-12-30 09:05:16 +1030 | [diff] [blame] | 2530 | void init_cpu_present(const struct cpumask *src) |
| 2531 | { |
Rasmus Villemoes | c4c54dd | 2016-01-20 15:00:16 -0800 | [diff] [blame] | 2532 | cpumask_copy(&__cpu_present_mask, src); |
Rusty Russell | 3fa4152 | 2008-12-30 09:05:16 +1030 | [diff] [blame] | 2533 | } |
| 2534 | |
| 2535 | void init_cpu_possible(const struct cpumask *src) |
| 2536 | { |
Rasmus Villemoes | c4c54dd | 2016-01-20 15:00:16 -0800 | [diff] [blame] | 2537 | cpumask_copy(&__cpu_possible_mask, src); |
Rusty Russell | 3fa4152 | 2008-12-30 09:05:16 +1030 | [diff] [blame] | 2538 | } |
| 2539 | |
| 2540 | void init_cpu_online(const struct cpumask *src) |
| 2541 | { |
Rasmus Villemoes | c4c54dd | 2016-01-20 15:00:16 -0800 | [diff] [blame] | 2542 | cpumask_copy(&__cpu_online_mask, src); |
Rusty Russell | 3fa4152 | 2008-12-30 09:05:16 +1030 | [diff] [blame] | 2543 | } |
Thomas Gleixner | cff7d37 | 2016-02-26 18:43:28 +0000 | [diff] [blame] | 2544 | |
Thomas Gleixner | 0c09ab9 | 2019-07-09 16:23:40 +0200 | [diff] [blame] | 2545 | void set_cpu_online(unsigned int cpu, bool online) |
| 2546 | { |
| 2547 | /* |
| 2548 | * atomic_inc/dec() is required to handle the horrid abuse of this |
| 2549 | * function by the reboot and kexec code which invoke it from |
| 2550 | * IPI/NMI broadcasts when shutting down CPUs. Invocation from |
| 2551 | * regular CPU hotplug is properly serialized. |
| 2552 | * |
| 2553 | * Note, that the fact that __num_online_cpus is of type atomic_t |
| 2554 | * does not protect readers which are not serialized against |
| 2555 | * concurrent hotplug operations. |
| 2556 | */ |
| 2557 | if (online) { |
| 2558 | if (!cpumask_test_and_set_cpu(cpu, &__cpu_online_mask)) |
| 2559 | atomic_inc(&__num_online_cpus); |
| 2560 | } else { |
| 2561 | if (cpumask_test_and_clear_cpu(cpu, &__cpu_online_mask)) |
| 2562 | atomic_dec(&__num_online_cpus); |
| 2563 | } |
| 2564 | } |
| 2565 | |
Thomas Gleixner | cff7d37 | 2016-02-26 18:43:28 +0000 | [diff] [blame] | 2566 | /* |
| 2567 | * Activate the first processor. |
| 2568 | */ |
| 2569 | void __init boot_cpu_init(void) |
| 2570 | { |
| 2571 | int cpu = smp_processor_id(); |
| 2572 | |
| 2573 | /* Mark the boot cpu "present", "online" etc for SMP and UP case */ |
| 2574 | set_cpu_online(cpu, true); |
| 2575 | set_cpu_active(cpu, true); |
| 2576 | set_cpu_present(cpu, true); |
| 2577 | set_cpu_possible(cpu, true); |
Peter Zijlstra | 8ce371f | 2017-03-20 12:26:55 +0100 | [diff] [blame] | 2578 | |
| 2579 | #ifdef CONFIG_SMP |
| 2580 | __boot_cpu_id = cpu; |
| 2581 | #endif |
Thomas Gleixner | cff7d37 | 2016-02-26 18:43:28 +0000 | [diff] [blame] | 2582 | } |
| 2583 | |
| 2584 | /* |
| 2585 | * Must be called _AFTER_ setting up the per_cpu areas |
| 2586 | */ |
Linus Torvalds | b5b1404 | 2018-08-12 12:19:42 -0700 | [diff] [blame] | 2587 | void __init boot_cpu_hotplug_init(void) |
Thomas Gleixner | cff7d37 | 2016-02-26 18:43:28 +0000 | [diff] [blame] | 2588 | { |
Abel Vesa | 269777a | 2018-08-15 00:26:00 +0300 | [diff] [blame] | 2589 | #ifdef CONFIG_SMP |
Thomas Gleixner | e797bda | 2019-07-22 20:47:16 +0200 | [diff] [blame] | 2590 | cpumask_set_cpu(smp_processor_id(), &cpus_booted_once_mask); |
Abel Vesa | 269777a | 2018-08-15 00:26:00 +0300 | [diff] [blame] | 2591 | #endif |
Thomas Gleixner | 0cc3cd2 | 2018-06-29 16:05:48 +0200 | [diff] [blame] | 2592 | this_cpu_write(cpuhp_state.state, CPUHP_ONLINE); |
Thomas Gleixner | cff7d37 | 2016-02-26 18:43:28 +0000 | [diff] [blame] | 2593 | } |
Josh Poimboeuf | 98af845 | 2019-04-12 15:39:28 -0500 | [diff] [blame] | 2594 | |
Tyler Hicks | 731dc9d | 2019-11-04 12:22:02 +0100 | [diff] [blame] | 2595 | /* |
| 2596 | * These are used for a global "mitigations=" cmdline option for toggling |
| 2597 | * optional CPU mitigations. |
| 2598 | */ |
| 2599 | enum cpu_mitigations { |
| 2600 | CPU_MITIGATIONS_OFF, |
| 2601 | CPU_MITIGATIONS_AUTO, |
| 2602 | CPU_MITIGATIONS_AUTO_NOSMT, |
| 2603 | }; |
| 2604 | |
| 2605 | static enum cpu_mitigations cpu_mitigations __ro_after_init = |
| 2606 | CPU_MITIGATIONS_AUTO; |
Josh Poimboeuf | 98af845 | 2019-04-12 15:39:28 -0500 | [diff] [blame] | 2607 | |
| 2608 | static int __init mitigations_parse_cmdline(char *arg) |
| 2609 | { |
| 2610 | if (!strcmp(arg, "off")) |
| 2611 | cpu_mitigations = CPU_MITIGATIONS_OFF; |
| 2612 | else if (!strcmp(arg, "auto")) |
| 2613 | cpu_mitigations = CPU_MITIGATIONS_AUTO; |
| 2614 | else if (!strcmp(arg, "auto,nosmt")) |
| 2615 | cpu_mitigations = CPU_MITIGATIONS_AUTO_NOSMT; |
Geert Uytterhoeven | 1bf7272 | 2019-05-16 09:09:35 +0200 | [diff] [blame] | 2616 | else |
| 2617 | pr_crit("Unsupported mitigations=%s, system may still be vulnerable\n", |
| 2618 | arg); |
Josh Poimboeuf | 98af845 | 2019-04-12 15:39:28 -0500 | [diff] [blame] | 2619 | |
| 2620 | return 0; |
| 2621 | } |
| 2622 | early_param("mitigations", mitigations_parse_cmdline); |
Tyler Hicks | 731dc9d | 2019-11-04 12:22:02 +0100 | [diff] [blame] | 2623 | |
| 2624 | /* mitigations=off */ |
| 2625 | bool cpu_mitigations_off(void) |
| 2626 | { |
| 2627 | return cpu_mitigations == CPU_MITIGATIONS_OFF; |
| 2628 | } |
| 2629 | EXPORT_SYMBOL_GPL(cpu_mitigations_off); |
| 2630 | |
| 2631 | /* mitigations=auto,nosmt */ |
| 2632 | bool cpu_mitigations_auto_nosmt(void) |
| 2633 | { |
| 2634 | return cpu_mitigations == CPU_MITIGATIONS_AUTO_NOSMT; |
| 2635 | } |
| 2636 | EXPORT_SYMBOL_GPL(cpu_mitigations_auto_nosmt); |