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