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