blob: 62fb67e5c59cad7c5a53dc7fd90778193abfa6f5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* CPU control.
2 * (C) 2001, 2002, 2003, 2004 Rusty Russell
3 *
4 * This code is licenced under the GPL.
5 */
Peter Zijlstrabf2c59f2020-04-01 17:40:33 -04006#include <linux/sched/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include <linux/proc_fs.h>
8#include <linux/smp.h>
9#include <linux/init.h>
10#include <linux/notifier.h>
Ingo Molnar3f07c012017-02-08 18:51:30 +010011#include <linux/sched/signal.h>
Ingo Molnaref8bd772017-02-08 18:51:36 +010012#include <linux/sched/hotplug.h>
Nicholas Piggin9ca12ac2019-04-11 13:34:46 +100013#include <linux/sched/isolation.h>
Ingo Molnar29930022017-02-08 18:51:36 +010014#include <linux/sched/task.h>
Thomas Gleixnera74cfff2018-11-25 19:33:39 +010015#include <linux/sched/smt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/unistd.h>
17#include <linux/cpu.h>
Anton Vorontsovcb792952012-05-31 16:26:22 -070018#include <linux/oom.h>
19#include <linux/rcupdate.h>
Paul Gortmaker9984de12011-05-23 14:51:41 -040020#include <linux/export.h>
Anton Vorontsove4cc2f82012-05-31 16:26:26 -070021#include <linux/bug.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/kthread.h>
23#include <linux/stop_machine.h>
Ingo Molnar81615b622006-06-26 00:24:32 -070024#include <linux/mutex.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090025#include <linux/gfp.h>
Srivatsa S. Bhat79cfbdf2011-11-03 00:59:25 +010026#include <linux/suspend.h>
Gautham R. Shenoya19423b2014-03-11 02:04:03 +053027#include <linux/lockdep.h>
Preeti U Murthy345527b2015-03-30 14:59:19 +053028#include <linux/tick.h>
Thomas Gleixnera8994182015-07-05 17:12:30 +000029#include <linux/irq.h>
Thomas Gleixner941154b2017-09-12 21:37:04 +020030#include <linux/nmi.h>
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +000031#include <linux/smpboot.h>
Richard Weinbergere6d49892016-08-18 14:57:17 +020032#include <linux/relay.h>
Sebastian Andrzej Siewior6731d4f2016-08-23 14:53:19 +020033#include <linux/slab.h>
Thomas Gleixnerfc8dffd2017-05-24 10:15:40 +020034#include <linux/percpu-rwsem.h>
Thomas Gleixnerb22afcd2021-03-27 22:01:36 +010035#include <linux/cpuset.h>
Thomas Gleixnercff7d372016-02-26 18:43:28 +000036
Todd E Brandtbb3632c2014-06-06 05:40:17 -070037#include <trace/events/power.h>
Thomas Gleixnercff7d372016-02-26 18:43:28 +000038#define CREATE_TRACE_POINTS
39#include <trace/events/cpuhp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Thomas Gleixner38498a62012-04-20 13:05:44 +000041#include "smpboot.h"
42
Thomas Gleixnercff7d372016-02-26 18:43:28 +000043/**
Randy Dunlap11bc0212021-08-09 15:38:25 -070044 * struct cpuhp_cpu_state - Per cpu hotplug state storage
Thomas Gleixnercff7d372016-02-26 18:43:28 +000045 * @state: The current cpu state
46 * @target: The target state
Randy Dunlap11bc0212021-08-09 15:38:25 -070047 * @fail: Current CPU hotplug callback state
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +000048 * @thread: Pointer to the hotplug thread
49 * @should_run: Thread should execute
Sebastian Andrzej Siewior3b9d6da2016-04-08 14:40:15 +020050 * @rollback: Perform a rollback
Thomas Gleixnera7246322016-08-12 19:49:38 +020051 * @single: Single callback invocation
52 * @bringup: Single callback bringup or teardown selector
Randy Dunlap11bc0212021-08-09 15:38:25 -070053 * @cpu: CPU number
54 * @node: Remote CPU node; for multi-instance, do a
55 * single entry callback for install/remove
56 * @last: For multi-instance rollback, remember how far we got
Thomas Gleixnera7246322016-08-12 19:49:38 +020057 * @cb_state: The state for a single callback (install/uninstall)
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +000058 * @result: Result of the operation
Peter Zijlstra5ebe7742017-09-20 19:00:19 +020059 * @done_up: Signal completion to the issuer of the task for cpu-up
60 * @done_down: Signal completion to the issuer of the task for cpu-down
Thomas Gleixnercff7d372016-02-26 18:43:28 +000061 */
62struct cpuhp_cpu_state {
63 enum cpuhp_state state;
64 enum cpuhp_state target;
Peter Zijlstra1db49482017-09-20 19:00:21 +020065 enum cpuhp_state fail;
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +000066#ifdef CONFIG_SMP
67 struct task_struct *thread;
68 bool should_run;
Sebastian Andrzej Siewior3b9d6da2016-04-08 14:40:15 +020069 bool rollback;
Thomas Gleixnera7246322016-08-12 19:49:38 +020070 bool single;
71 bool bringup;
Peter Zijlstra2ea46c62021-04-20 20:04:19 +020072 int cpu;
Thomas Gleixnercf392d12016-08-12 19:49:39 +020073 struct hlist_node *node;
Peter Zijlstra4dddfb52017-09-20 19:00:17 +020074 struct hlist_node *last;
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +000075 enum cpuhp_state cb_state;
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +000076 int result;
Peter Zijlstra5ebe7742017-09-20 19:00:19 +020077 struct completion done_up;
78 struct completion done_down;
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +000079#endif
Thomas Gleixnercff7d372016-02-26 18:43:28 +000080};
81
Peter Zijlstra1db49482017-09-20 19:00:21 +020082static DEFINE_PER_CPU(struct cpuhp_cpu_state, cpuhp_state) = {
83 .fail = CPUHP_INVALID,
84};
Thomas Gleixnercff7d372016-02-26 18:43:28 +000085
Thomas Gleixnere797bda2019-07-22 20:47:16 +020086#ifdef CONFIG_SMP
87cpumask_t cpus_booted_once_mask;
88#endif
89
Thomas Gleixner49dfe2a2017-05-24 10:15:43 +020090#if defined(CONFIG_LOCKDEP) && defined(CONFIG_SMP)
Peter Zijlstra5f4b55e2017-09-20 19:00:20 +020091static struct lockdep_map cpuhp_state_up_map =
92 STATIC_LOCKDEP_MAP_INIT("cpuhp_state-up", &cpuhp_state_up_map);
93static struct lockdep_map cpuhp_state_down_map =
94 STATIC_LOCKDEP_MAP_INIT("cpuhp_state-down", &cpuhp_state_down_map);
95
96
Mathieu Malaterre76dc6c02017-12-26 15:08:53 +010097static inline void cpuhp_lock_acquire(bool bringup)
Peter Zijlstra5f4b55e2017-09-20 19:00:20 +020098{
99 lock_map_acquire(bringup ? &cpuhp_state_up_map : &cpuhp_state_down_map);
100}
101
Mathieu Malaterre76dc6c02017-12-26 15:08:53 +0100102static inline void cpuhp_lock_release(bool bringup)
Peter Zijlstra5f4b55e2017-09-20 19:00:20 +0200103{
104 lock_map_release(bringup ? &cpuhp_state_up_map : &cpuhp_state_down_map);
105}
106#else
107
Mathieu Malaterre76dc6c02017-12-26 15:08:53 +0100108static inline void cpuhp_lock_acquire(bool bringup) { }
109static inline void cpuhp_lock_release(bool bringup) { }
Peter Zijlstra5f4b55e2017-09-20 19:00:20 +0200110
Thomas Gleixner49dfe2a2017-05-24 10:15:43 +0200111#endif
112
Thomas Gleixnercff7d372016-02-26 18:43:28 +0000113/**
Randy Dunlap11bc0212021-08-09 15:38:25 -0700114 * struct cpuhp_step - Hotplug state machine step
Thomas Gleixnercff7d372016-02-26 18:43:28 +0000115 * @name: Name of the step
116 * @startup: Startup function of the step
117 * @teardown: Teardown function of the step
Thomas Gleixner757c9892016-02-26 18:43:32 +0000118 * @cant_stop: Bringup/teardown can't be stopped at this step
Randy Dunlap11bc0212021-08-09 15:38:25 -0700119 * @multi_instance: State has multiple instances which get added afterwards
Thomas Gleixnercff7d372016-02-26 18:43:28 +0000120 */
121struct cpuhp_step {
Thomas Gleixnercf392d12016-08-12 19:49:39 +0200122 const char *name;
123 union {
Thomas Gleixner3c1627e2016-09-05 15:28:36 +0200124 int (*single)(unsigned int cpu);
125 int (*multi)(unsigned int cpu,
126 struct hlist_node *node);
127 } startup;
Thomas Gleixnercf392d12016-08-12 19:49:39 +0200128 union {
Thomas Gleixner3c1627e2016-09-05 15:28:36 +0200129 int (*single)(unsigned int cpu);
130 int (*multi)(unsigned int cpu,
131 struct hlist_node *node);
132 } teardown;
Randy Dunlap11bc0212021-08-09 15:38:25 -0700133 /* private: */
Thomas Gleixnercf392d12016-08-12 19:49:39 +0200134 struct hlist_head list;
Randy Dunlap11bc0212021-08-09 15:38:25 -0700135 /* public: */
Thomas Gleixnercf392d12016-08-12 19:49:39 +0200136 bool cant_stop;
137 bool multi_instance;
Thomas Gleixnercff7d372016-02-26 18:43:28 +0000138};
139
Thomas Gleixner98f8cdc2016-02-26 18:43:31 +0000140static DEFINE_MUTEX(cpuhp_state_mutex);
Lai Jiangshan17a2f1c2017-12-01 21:50:05 +0800141static struct cpuhp_step cpuhp_hp_states[];
Thomas Gleixnercff7d372016-02-26 18:43:28 +0000142
Thomas Gleixnera7246322016-08-12 19:49:38 +0200143static struct cpuhp_step *cpuhp_get_step(enum cpuhp_state state)
144{
Lai Jiangshan17a2f1c2017-12-01 21:50:05 +0800145 return cpuhp_hp_states + state;
Thomas Gleixnera7246322016-08-12 19:49:38 +0200146}
147
Vincent Donnefort453e4102021-02-16 10:35:06 +0000148static bool cpuhp_step_empty(bool bringup, struct cpuhp_step *step)
149{
150 return bringup ? !step->startup.single : !step->teardown.single;
151}
152
Thomas Gleixnercff7d372016-02-26 18:43:28 +0000153/**
Randy Dunlap11bc0212021-08-09 15:38:25 -0700154 * cpuhp_invoke_callback - Invoke the callbacks for a given state
Thomas Gleixnercff7d372016-02-26 18:43:28 +0000155 * @cpu: The cpu for which the callback should be invoked
Peter Zijlstra96abb962017-09-20 19:00:16 +0200156 * @state: The state to do callbacks for
Thomas Gleixnera7246322016-08-12 19:49:38 +0200157 * @bringup: True if the bringup callback should be invoked
Peter Zijlstra96abb962017-09-20 19:00:16 +0200158 * @node: For multi-instance, do a single entry callback for install/remove
159 * @lastp: For multi-instance rollback, remember how far we got
Thomas Gleixnercff7d372016-02-26 18:43:28 +0000160 *
Thomas Gleixnercf392d12016-08-12 19:49:39 +0200161 * Called from cpu hotplug and from the state register machinery.
Randy Dunlap11bc0212021-08-09 15:38:25 -0700162 *
163 * Return: %0 on success or a negative errno code
Thomas Gleixnercff7d372016-02-26 18:43:28 +0000164 */
Thomas Gleixnera7246322016-08-12 19:49:38 +0200165static int cpuhp_invoke_callback(unsigned int cpu, enum cpuhp_state state,
Peter Zijlstra96abb962017-09-20 19:00:16 +0200166 bool bringup, struct hlist_node *node,
167 struct hlist_node **lastp)
Thomas Gleixnercff7d372016-02-26 18:43:28 +0000168{
169 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
Thomas Gleixnera7246322016-08-12 19:49:38 +0200170 struct cpuhp_step *step = cpuhp_get_step(state);
Thomas Gleixnercf392d12016-08-12 19:49:39 +0200171 int (*cbm)(unsigned int cpu, struct hlist_node *node);
172 int (*cb)(unsigned int cpu);
173 int ret, cnt;
Thomas Gleixnercff7d372016-02-26 18:43:28 +0000174
Peter Zijlstra1db49482017-09-20 19:00:21 +0200175 if (st->fail == state) {
176 st->fail = CPUHP_INVALID;
Peter Zijlstra1db49482017-09-20 19:00:21 +0200177 return -EAGAIN;
178 }
179
Vincent Donnefort453e4102021-02-16 10:35:06 +0000180 if (cpuhp_step_empty(bringup, step)) {
181 WARN_ON_ONCE(1);
182 return 0;
183 }
184
Thomas Gleixnercf392d12016-08-12 19:49:39 +0200185 if (!step->multi_instance) {
Peter Zijlstra96abb962017-09-20 19:00:16 +0200186 WARN_ON_ONCE(lastp && *lastp);
Thomas Gleixner3c1627e2016-09-05 15:28:36 +0200187 cb = bringup ? step->startup.single : step->teardown.single;
Vincent Donnefort453e4102021-02-16 10:35:06 +0000188
Thomas Gleixnera7246322016-08-12 19:49:38 +0200189 trace_cpuhp_enter(cpu, st->target, state, cb);
Thomas Gleixnercff7d372016-02-26 18:43:28 +0000190 ret = cb(cpu);
Thomas Gleixnera7246322016-08-12 19:49:38 +0200191 trace_cpuhp_exit(cpu, st->state, state, ret);
Thomas Gleixnercf392d12016-08-12 19:49:39 +0200192 return ret;
193 }
Thomas Gleixner3c1627e2016-09-05 15:28:36 +0200194 cbm = bringup ? step->startup.multi : step->teardown.multi;
Thomas Gleixnercf392d12016-08-12 19:49:39 +0200195
196 /* Single invocation for instance add/remove */
197 if (node) {
Peter Zijlstra96abb962017-09-20 19:00:16 +0200198 WARN_ON_ONCE(lastp && *lastp);
Thomas Gleixnercf392d12016-08-12 19:49:39 +0200199 trace_cpuhp_multi_enter(cpu, st->target, state, cbm, node);
200 ret = cbm(cpu, node);
201 trace_cpuhp_exit(cpu, st->state, state, ret);
202 return ret;
203 }
204
205 /* State transition. Invoke on all instances */
206 cnt = 0;
207 hlist_for_each(node, &step->list) {
Peter Zijlstra96abb962017-09-20 19:00:16 +0200208 if (lastp && node == *lastp)
209 break;
210
Thomas Gleixnercf392d12016-08-12 19:49:39 +0200211 trace_cpuhp_multi_enter(cpu, st->target, state, cbm, node);
212 ret = cbm(cpu, node);
213 trace_cpuhp_exit(cpu, st->state, state, ret);
Peter Zijlstra96abb962017-09-20 19:00:16 +0200214 if (ret) {
215 if (!lastp)
216 goto err;
217
218 *lastp = node;
219 return ret;
220 }
Thomas Gleixnercf392d12016-08-12 19:49:39 +0200221 cnt++;
222 }
Peter Zijlstra96abb962017-09-20 19:00:16 +0200223 if (lastp)
224 *lastp = NULL;
Thomas Gleixnercf392d12016-08-12 19:49:39 +0200225 return 0;
226err:
227 /* Rollback the instances if one failed */
Thomas Gleixner3c1627e2016-09-05 15:28:36 +0200228 cbm = !bringup ? step->startup.multi : step->teardown.multi;
Thomas Gleixnercf392d12016-08-12 19:49:39 +0200229 if (!cbm)
230 return ret;
231
232 hlist_for_each(node, &step->list) {
233 if (!cnt--)
234 break;
Peter Zijlstra724a8682017-09-20 19:00:18 +0200235
236 trace_cpuhp_multi_enter(cpu, st->target, state, cbm, node);
237 ret = cbm(cpu, node);
238 trace_cpuhp_exit(cpu, st->state, state, ret);
239 /*
240 * Rollback must not fail,
241 */
242 WARN_ON_ONCE(ret);
Thomas Gleixnercff7d372016-02-26 18:43:28 +0000243 }
244 return ret;
245}
246
Rusty Russell98a79d62008-12-13 21:19:41 +1030247#ifdef CONFIG_SMP
Arnd Bergmannfcb30292018-03-15 16:38:04 +0100248static bool cpuhp_is_ap_state(enum cpuhp_state state)
249{
250 /*
251 * The extra check for CPUHP_TEARDOWN_CPU is only for documentation
252 * purposes as that state is handled explicitly in cpu_down.
253 */
254 return state > CPUHP_BRINGUP_CPU && state != CPUHP_TEARDOWN_CPU;
255}
256
Peter Zijlstra5ebe7742017-09-20 19:00:19 +0200257static inline void wait_for_ap_thread(struct cpuhp_cpu_state *st, bool bringup)
258{
259 struct completion *done = bringup ? &st->done_up : &st->done_down;
260 wait_for_completion(done);
261}
262
263static inline void complete_ap_thread(struct cpuhp_cpu_state *st, bool bringup)
264{
265 struct completion *done = bringup ? &st->done_up : &st->done_down;
266 complete(done);
267}
268
269/*
270 * The former STARTING/DYING states, ran with IRQs disabled and must not fail.
271 */
272static bool cpuhp_is_atomic_state(enum cpuhp_state state)
273{
274 return CPUHP_AP_IDLE_DEAD <= state && state < CPUHP_AP_ONLINE;
275}
276
Rusty Russellb3199c02008-12-30 09:05:14 +1030277/* Serializes the updates to cpu_online_mask, cpu_present_mask */
Linus Torvaldsaa953872006-07-23 12:12:16 -0700278static DEFINE_MUTEX(cpu_add_remove_lock);
Thomas Gleixner090e77c2016-02-26 18:43:23 +0000279bool cpuhp_tasks_frozen;
280EXPORT_SYMBOL_GPL(cpuhp_tasks_frozen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Lai Jiangshan79a6cde2010-05-26 14:43:36 -0700282/*
Srivatsa S. Bhat93ae4f92014-03-11 02:04:14 +0530283 * The following two APIs (cpu_maps_update_begin/done) must be used when
284 * attempting to serialize the updates to cpu_online_mask & cpu_present_mask.
Lai Jiangshan79a6cde2010-05-26 14:43:36 -0700285 */
286void cpu_maps_update_begin(void)
287{
288 mutex_lock(&cpu_add_remove_lock);
289}
290
291void cpu_maps_update_done(void)
292{
293 mutex_unlock(&cpu_add_remove_lock);
294}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
Thomas Gleixnerfc8dffd2017-05-24 10:15:40 +0200296/*
297 * If set, cpu_up and cpu_down will return -EBUSY and do nothing.
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700298 * Should always be manipulated under cpu_add_remove_lock
299 */
300static int cpu_hotplug_disabled;
301
Lai Jiangshan79a6cde2010-05-26 14:43:36 -0700302#ifdef CONFIG_HOTPLUG_CPU
303
Thomas Gleixnerfc8dffd2017-05-24 10:15:40 +0200304DEFINE_STATIC_PERCPU_RWSEM(cpu_hotplug_lock);
Gautham R. Shenoya19423b2014-03-11 02:04:03 +0530305
Thomas Gleixner8f553c42017-05-24 10:15:12 +0200306void cpus_read_lock(void)
Ashok Raja9d9baa2005-11-28 13:43:46 -0800307{
Thomas Gleixnerfc8dffd2017-05-24 10:15:40 +0200308 percpu_down_read(&cpu_hotplug_lock);
Ashok Raja9d9baa2005-11-28 13:43:46 -0800309}
Thomas Gleixner8f553c42017-05-24 10:15:12 +0200310EXPORT_SYMBOL_GPL(cpus_read_lock);
Ashok Raj90d45d12005-11-08 21:34:24 -0800311
Waiman Long6f4ceee2018-07-24 14:26:04 -0400312int cpus_read_trylock(void)
313{
314 return percpu_down_read_trylock(&cpu_hotplug_lock);
315}
316EXPORT_SYMBOL_GPL(cpus_read_trylock);
317
Thomas Gleixner8f553c42017-05-24 10:15:12 +0200318void cpus_read_unlock(void)
Ashok Raja9d9baa2005-11-28 13:43:46 -0800319{
Thomas Gleixnerfc8dffd2017-05-24 10:15:40 +0200320 percpu_up_read(&cpu_hotplug_lock);
Ashok Raja9d9baa2005-11-28 13:43:46 -0800321}
Thomas Gleixner8f553c42017-05-24 10:15:12 +0200322EXPORT_SYMBOL_GPL(cpus_read_unlock);
Ashok Raja9d9baa2005-11-28 13:43:46 -0800323
Thomas Gleixner8f553c42017-05-24 10:15:12 +0200324void cpus_write_lock(void)
Gautham R Shenoyd2219382008-01-25 21:08:01 +0100325{
Thomas Gleixnerfc8dffd2017-05-24 10:15:40 +0200326 percpu_down_write(&cpu_hotplug_lock);
Gautham R Shenoyd2219382008-01-25 21:08:01 +0100327}
328
Thomas Gleixner8f553c42017-05-24 10:15:12 +0200329void cpus_write_unlock(void)
Gautham R Shenoyd2219382008-01-25 21:08:01 +0100330{
Thomas Gleixnerfc8dffd2017-05-24 10:15:40 +0200331 percpu_up_write(&cpu_hotplug_lock);
332}
333
334void lockdep_assert_cpus_held(void)
335{
Valentin Schneiderce48c4572018-12-19 18:23:15 +0000336 /*
337 * We can't have hotplug operations before userspace starts running,
338 * and some init codepaths will knowingly not take the hotplug lock.
339 * This is all valid, so mute lockdep until it makes sense to report
340 * unheld locks.
341 */
342 if (system_state < SYSTEM_RUNNING)
343 return;
344
Thomas Gleixnerfc8dffd2017-05-24 10:15:40 +0200345 percpu_rwsem_assert_held(&cpu_hotplug_lock);
Gautham R Shenoyd2219382008-01-25 21:08:01 +0100346}
Lai Jiangshan79a6cde2010-05-26 14:43:36 -0700347
Frederic Weisbecker43759fe2020-11-11 23:53:13 +0100348#ifdef CONFIG_LOCKDEP
349int lockdep_is_cpus_held(void)
350{
351 return percpu_rwsem_is_held(&cpu_hotplug_lock);
352}
353#endif
354
Peter Zijlstracb921732018-09-11 11:51:27 +0200355static void lockdep_acquire_cpus_lock(void)
356{
Peter Zijlstra17510602019-10-30 20:01:26 +0100357 rwsem_acquire(&cpu_hotplug_lock.dep_map, 0, 0, _THIS_IP_);
Peter Zijlstracb921732018-09-11 11:51:27 +0200358}
359
360static void lockdep_release_cpus_lock(void)
361{
Peter Zijlstra17510602019-10-30 20:01:26 +0100362 rwsem_release(&cpu_hotplug_lock.dep_map, _THIS_IP_);
Peter Zijlstracb921732018-09-11 11:51:27 +0200363}
364
Srivatsa S. Bhat16e53db2013-06-12 14:04:36 -0700365/*
366 * Wait for currently running CPU hotplug operations to complete (if any) and
367 * disable future CPU hotplug (from sysfs). The 'cpu_add_remove_lock' protects
368 * the 'cpu_hotplug_disabled' flag. The same lock is also acquired by the
369 * hotplug path before performing hotplug operations. So acquiring that lock
370 * guarantees mutual exclusion from any currently running hotplug operations.
371 */
372void cpu_hotplug_disable(void)
373{
374 cpu_maps_update_begin();
Vitaly Kuznetsov89af7ba2015-08-05 00:52:46 -0700375 cpu_hotplug_disabled++;
Srivatsa S. Bhat16e53db2013-06-12 14:04:36 -0700376 cpu_maps_update_done();
377}
Vitaly Kuznetsov32145c42015-08-05 00:52:47 -0700378EXPORT_SYMBOL_GPL(cpu_hotplug_disable);
Srivatsa S. Bhat16e53db2013-06-12 14:04:36 -0700379
Lianwei Wang01b41152016-06-09 23:43:28 -0700380static void __cpu_hotplug_enable(void)
381{
382 if (WARN_ONCE(!cpu_hotplug_disabled, "Unbalanced cpu hotplug enable\n"))
383 return;
384 cpu_hotplug_disabled--;
385}
386
Srivatsa S. Bhat16e53db2013-06-12 14:04:36 -0700387void cpu_hotplug_enable(void)
388{
389 cpu_maps_update_begin();
Lianwei Wang01b41152016-06-09 23:43:28 -0700390 __cpu_hotplug_enable();
Srivatsa S. Bhat16e53db2013-06-12 14:04:36 -0700391 cpu_maps_update_done();
392}
Vitaly Kuznetsov32145c42015-08-05 00:52:47 -0700393EXPORT_SYMBOL_GPL(cpu_hotplug_enable);
Peter Zijlstracb921732018-09-11 11:51:27 +0200394
395#else
396
397static void lockdep_acquire_cpus_lock(void)
398{
399}
400
401static void lockdep_release_cpus_lock(void)
402{
403}
404
Toshi Kanib9d10be2013-08-12 09:45:53 -0600405#endif /* CONFIG_HOTPLUG_CPU */
Lai Jiangshan79a6cde2010-05-26 14:43:36 -0700406
Thomas Gleixnera74cfff2018-11-25 19:33:39 +0100407/*
408 * Architectures that need SMT-specific errata handling during SMT hotplug
409 * should override this.
410 */
411void __weak arch_smt_update(void) { }
412
Thomas Gleixner0cc3cd22018-06-29 16:05:48 +0200413#ifdef CONFIG_HOTPLUG_SMT
414enum cpuhp_smt_control cpu_smt_control __read_mostly = CPU_SMT_ENABLED;
Thomas Gleixnerbc2d8d262018-08-07 08:19:57 +0200415
Jiri Kosina8e1b7062018-07-13 16:23:23 +0200416void __init cpu_smt_disable(bool force)
Thomas Gleixner0cc3cd22018-06-29 16:05:48 +0200417{
Vitaly Kuznetsove1572f12019-09-16 18:22:56 +0200418 if (!cpu_smt_possible())
Jiri Kosina8e1b7062018-07-13 16:23:23 +0200419 return;
420
421 if (force) {
Thomas Gleixner0cc3cd22018-06-29 16:05:48 +0200422 pr_info("SMT: Force disabled\n");
423 cpu_smt_control = CPU_SMT_FORCE_DISABLED;
Jiri Kosina8e1b7062018-07-13 16:23:23 +0200424 } else {
Borislav Petkovd0e7d142018-10-04 19:22:27 +0200425 pr_info("SMT: disabled\n");
Jiri Kosina8e1b7062018-07-13 16:23:23 +0200426 cpu_smt_control = CPU_SMT_DISABLED;
Thomas Gleixner0cc3cd22018-06-29 16:05:48 +0200427 }
Jiri Kosina8e1b7062018-07-13 16:23:23 +0200428}
429
Thomas Gleixnerfee0aed2018-07-13 16:23:24 +0200430/*
431 * The decision whether SMT is supported can only be done after the full
Josh Poimboeufb2849092019-01-30 07:13:58 -0600432 * CPU identification. Called from architecture code.
Thomas Gleixnerfee0aed2018-07-13 16:23:24 +0200433 */
434void __init cpu_smt_check_topology(void)
435{
Josh Poimboeufb2849092019-01-30 07:13:58 -0600436 if (!topology_smt_supported())
Thomas Gleixnerfee0aed2018-07-13 16:23:24 +0200437 cpu_smt_control = CPU_SMT_NOT_SUPPORTED;
438}
439
Jiri Kosina8e1b7062018-07-13 16:23:23 +0200440static int __init smt_cmdline_disable(char *str)
441{
442 cpu_smt_disable(str && !strcmp(str, "force"));
Thomas Gleixner0cc3cd22018-06-29 16:05:48 +0200443 return 0;
444}
445early_param("nosmt", smt_cmdline_disable);
446
447static inline bool cpu_smt_allowed(unsigned int cpu)
448{
Josh Poimboeufb2849092019-01-30 07:13:58 -0600449 if (cpu_smt_control == CPU_SMT_ENABLED)
Thomas Gleixner0cc3cd22018-06-29 16:05:48 +0200450 return true;
451
Josh Poimboeufb2849092019-01-30 07:13:58 -0600452 if (topology_is_primary_thread(cpu))
Thomas Gleixner0cc3cd22018-06-29 16:05:48 +0200453 return true;
454
455 /*
456 * On x86 it's required to boot all logical CPUs at least once so
457 * that the init code can get a chance to set CR4.MCE on each
Ethon Paul182e0732020-04-18 00:40:04 +0800458 * CPU. Otherwise, a broadcasted MCE observing CR4.MCE=0b on any
Thomas Gleixner0cc3cd22018-06-29 16:05:48 +0200459 * core will shutdown the machine.
460 */
Thomas Gleixnere797bda2019-07-22 20:47:16 +0200461 return !cpumask_test_cpu(cpu, &cpus_booted_once_mask);
Thomas Gleixner0cc3cd22018-06-29 16:05:48 +0200462}
Vitaly Kuznetsove1572f12019-09-16 18:22:56 +0200463
464/* Returns true if SMT is not supported of forcefully (irreversibly) disabled */
465bool cpu_smt_possible(void)
466{
467 return cpu_smt_control != CPU_SMT_FORCE_DISABLED &&
468 cpu_smt_control != CPU_SMT_NOT_SUPPORTED;
469}
470EXPORT_SYMBOL_GPL(cpu_smt_possible);
Thomas Gleixner0cc3cd22018-06-29 16:05:48 +0200471#else
472static inline bool cpu_smt_allowed(unsigned int cpu) { return true; }
473#endif
474
Peter Zijlstra4dddfb52017-09-20 19:00:17 +0200475static inline enum cpuhp_state
476cpuhp_set_state(struct cpuhp_cpu_state *st, enum cpuhp_state target)
477{
478 enum cpuhp_state prev_state = st->state;
Peter Zijlstra2ea46c62021-04-20 20:04:19 +0200479 bool bringup = st->state < target;
Peter Zijlstra4dddfb52017-09-20 19:00:17 +0200480
481 st->rollback = false;
482 st->last = NULL;
483
484 st->target = target;
485 st->single = false;
Peter Zijlstra2ea46c62021-04-20 20:04:19 +0200486 st->bringup = bringup;
487 if (cpu_dying(st->cpu) != !bringup)
488 set_cpu_dying(st->cpu, !bringup);
Peter Zijlstra4dddfb52017-09-20 19:00:17 +0200489
490 return prev_state;
491}
492
493static inline void
494cpuhp_reset_state(struct cpuhp_cpu_state *st, enum cpuhp_state prev_state)
495{
Peter Zijlstra2ea46c62021-04-20 20:04:19 +0200496 bool bringup = !st->bringup;
497
Vincent Donnefort453e4102021-02-16 10:35:06 +0000498 st->target = prev_state;
499
500 /*
501 * Already rolling back. No need invert the bringup value or to change
502 * the current state.
503 */
504 if (st->rollback)
505 return;
506
Peter Zijlstra4dddfb52017-09-20 19:00:17 +0200507 st->rollback = true;
508
509 /*
510 * If we have st->last we need to undo partial multi_instance of this
511 * state first. Otherwise start undo at the previous state.
512 */
513 if (!st->last) {
514 if (st->bringup)
515 st->state--;
516 else
517 st->state++;
518 }
519
Peter Zijlstra2ea46c62021-04-20 20:04:19 +0200520 st->bringup = bringup;
521 if (cpu_dying(st->cpu) != !bringup)
522 set_cpu_dying(st->cpu, !bringup);
Peter Zijlstra4dddfb52017-09-20 19:00:17 +0200523}
524
525/* Regular hotplug invocation of the AP hotplug thread */
526static void __cpuhp_kick_ap(struct cpuhp_cpu_state *st)
527{
528 if (!st->single && st->state == st->target)
529 return;
530
531 st->result = 0;
532 /*
533 * Make sure the above stores are visible before should_run becomes
534 * true. Paired with the mb() above in cpuhp_thread_fun()
535 */
536 smp_mb();
537 st->should_run = true;
538 wake_up_process(st->thread);
Peter Zijlstra5ebe7742017-09-20 19:00:19 +0200539 wait_for_ap_thread(st, st->bringup);
Peter Zijlstra4dddfb52017-09-20 19:00:17 +0200540}
541
542static int cpuhp_kick_ap(struct cpuhp_cpu_state *st, enum cpuhp_state target)
543{
544 enum cpuhp_state prev_state;
545 int ret;
546
547 prev_state = cpuhp_set_state(st, target);
548 __cpuhp_kick_ap(st);
549 if ((ret = st->result)) {
550 cpuhp_reset_state(st, prev_state);
551 __cpuhp_kick_ap(st);
552 }
553
554 return ret;
555}
Thomas Gleixner9cd4f1a2017-07-04 22:20:23 +0200556
Thomas Gleixner8df3e072016-02-26 18:43:41 +0000557static int bringup_wait_for_ap(unsigned int cpu)
558{
559 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
560
Thomas Gleixner9cd4f1a2017-07-04 22:20:23 +0200561 /* Wait for the CPU to reach CPUHP_AP_ONLINE_IDLE */
Peter Zijlstra5ebe7742017-09-20 19:00:19 +0200562 wait_for_ap_thread(st, true);
Thomas Gleixnerdea1d0f2017-07-11 22:06:24 +0200563 if (WARN_ON_ONCE((!cpu_online(cpu))))
564 return -ECANCELED;
Thomas Gleixner9cd4f1a2017-07-04 22:20:23 +0200565
Peter Zijlstra45178ac2019-12-10 09:34:54 +0100566 /* Unpark the hotplug thread of the target cpu */
Thomas Gleixner9cd4f1a2017-07-04 22:20:23 +0200567 kthread_unpark(st->thread);
568
Thomas Gleixner0cc3cd22018-06-29 16:05:48 +0200569 /*
570 * SMT soft disabling on X86 requires to bring the CPU out of the
571 * BIOS 'wait for SIPI' state in order to set the CR4.MCE bit. The
Jiri Kosinaf5602012019-05-28 21:31:49 +0200572 * CPU marked itself as booted_once in notify_cpu_starting() so the
Thomas Gleixner0cc3cd22018-06-29 16:05:48 +0200573 * cpu_smt_allowed() check will now return false if this is not the
574 * primary sibling.
575 */
576 if (!cpu_smt_allowed(cpu))
577 return -ECANCELED;
578
Peter Zijlstra4dddfb52017-09-20 19:00:17 +0200579 if (st->target <= CPUHP_AP_ONLINE_IDLE)
580 return 0;
581
582 return cpuhp_kick_ap(st, st->target);
Thomas Gleixner8df3e072016-02-26 18:43:41 +0000583}
584
Thomas Gleixnerba997462016-02-26 18:43:24 +0000585static int bringup_cpu(unsigned int cpu)
586{
587 struct task_struct *idle = idle_thread_get(cpu);
588 int ret;
589
Boris Ostrovskyaa877172016-08-03 13:22:28 -0400590 /*
591 * Some architectures have to walk the irq descriptors to
592 * setup the vector space for the cpu which comes online.
593 * Prevent irq alloc/free across the bringup.
594 */
595 irq_lock_sparse();
596
Thomas Gleixnerba997462016-02-26 18:43:24 +0000597 /* Arch-specific enabling code. */
598 ret = __cpu_up(cpu, idle);
Boris Ostrovskyaa877172016-08-03 13:22:28 -0400599 irq_unlock_sparse();
Thomas Gleixner530e9b72016-12-21 20:19:53 +0100600 if (ret)
Thomas Gleixnerba997462016-02-26 18:43:24 +0000601 return ret;
Thomas Gleixner9cd4f1a2017-07-04 22:20:23 +0200602 return bringup_wait_for_ap(cpu);
Thomas Gleixnerba997462016-02-26 18:43:24 +0000603}
604
Peter Zijlstrabf2c59f2020-04-01 17:40:33 -0400605static int finish_cpu(unsigned int cpu)
606{
607 struct task_struct *idle = idle_thread_get(cpu);
608 struct mm_struct *mm = idle->active_mm;
609
610 /*
611 * idle_task_exit() will have switched to &init_mm, now
612 * clean up any remaining active_mm state.
613 */
614 if (mm != &init_mm)
615 idle->active_mm = &init_mm;
616 mmdrop(mm);
617 return 0;
618}
619
Thomas Gleixner2e1a3482016-02-26 18:43:37 +0000620/*
621 * Hotplug state machine related functions
622 */
Thomas Gleixner2e1a3482016-02-26 18:43:37 +0000623
Vincent Donnefort453e4102021-02-16 10:35:06 +0000624/*
625 * Get the next state to run. Empty ones will be skipped. Returns true if a
626 * state must be run.
627 *
628 * st->state will be modified ahead of time, to match state_to_run, as if it
629 * has already ran.
630 */
631static bool cpuhp_next_state(bool bringup,
632 enum cpuhp_state *state_to_run,
633 struct cpuhp_cpu_state *st,
634 enum cpuhp_state target)
Thomas Gleixner2e1a3482016-02-26 18:43:37 +0000635{
Vincent Donnefort453e4102021-02-16 10:35:06 +0000636 do {
637 if (bringup) {
638 if (st->state >= target)
639 return false;
640
641 *state_to_run = ++st->state;
642 } else {
643 if (st->state <= target)
644 return false;
645
646 *state_to_run = st->state--;
647 }
648
649 if (!cpuhp_step_empty(bringup, cpuhp_get_step(*state_to_run)))
650 break;
651 } while (true);
652
653 return true;
654}
655
656static int cpuhp_invoke_callback_range(bool bringup,
657 unsigned int cpu,
658 struct cpuhp_cpu_state *st,
659 enum cpuhp_state target)
660{
661 enum cpuhp_state state;
662 int err = 0;
663
664 while (cpuhp_next_state(bringup, &state, st, target)) {
665 err = cpuhp_invoke_callback(cpu, state, bringup, NULL, NULL);
666 if (err)
667 break;
668 }
669
670 return err;
Thomas Gleixner2e1a3482016-02-26 18:43:37 +0000671}
672
Thomas Gleixner206b9232019-03-26 17:36:05 +0100673static inline bool can_rollback_cpu(struct cpuhp_cpu_state *st)
674{
675 if (IS_ENABLED(CONFIG_HOTPLUG_CPU))
676 return true;
677 /*
678 * When CPU hotplug is disabled, then taking the CPU down is not
679 * possible because takedown_cpu() and the architecture and
680 * subsystem specific mechanisms are not available. So the CPU
681 * which would be completely unplugged again needs to stay around
682 * in the current state.
683 */
684 return st->state <= CPUHP_BRINGUP_CPU;
685}
686
Thomas Gleixner2e1a3482016-02-26 18:43:37 +0000687static int cpuhp_up_callbacks(unsigned int cpu, struct cpuhp_cpu_state *st,
Thomas Gleixnera7246322016-08-12 19:49:38 +0200688 enum cpuhp_state target)
Thomas Gleixner2e1a3482016-02-26 18:43:37 +0000689{
690 enum cpuhp_state prev_state = st->state;
691 int ret = 0;
692
Vincent Donnefort453e4102021-02-16 10:35:06 +0000693 ret = cpuhp_invoke_callback_range(true, cpu, st, target);
694 if (ret) {
695 cpuhp_reset_state(st, prev_state);
696 if (can_rollback_cpu(st))
697 WARN_ON(cpuhp_invoke_callback_range(false, cpu, st,
698 prev_state));
Thomas Gleixner2e1a3482016-02-26 18:43:37 +0000699 }
700 return ret;
701}
702
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000703/*
704 * The cpu hotplug threads manage the bringup and teardown of the cpus
705 */
706static void cpuhp_create(unsigned int cpu)
707{
708 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
709
Peter Zijlstra5ebe7742017-09-20 19:00:19 +0200710 init_completion(&st->done_up);
711 init_completion(&st->done_down);
Peter Zijlstra2ea46c62021-04-20 20:04:19 +0200712 st->cpu = cpu;
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000713}
714
715static int cpuhp_should_run(unsigned int cpu)
716{
717 struct cpuhp_cpu_state *st = this_cpu_ptr(&cpuhp_state);
718
719 return st->should_run;
720}
721
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000722/*
723 * Execute teardown/startup callbacks on the plugged cpu. Also used to invoke
724 * callbacks when a state gets [un]installed at runtime.
Peter Zijlstra4dddfb52017-09-20 19:00:17 +0200725 *
726 * Each invocation of this function by the smpboot thread does a single AP
727 * state callback.
728 *
729 * It has 3 modes of operation:
730 * - single: runs st->cb_state
731 * - up: runs ++st->state, while st->state < st->target
732 * - down: runs st->state--, while st->state > st->target
733 *
734 * When complete or on error, should_run is cleared and the completion is fired.
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000735 */
736static void cpuhp_thread_fun(unsigned int cpu)
737{
738 struct cpuhp_cpu_state *st = this_cpu_ptr(&cpuhp_state);
Peter Zijlstra4dddfb52017-09-20 19:00:17 +0200739 bool bringup = st->bringup;
740 enum cpuhp_state state;
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000741
Neeraj Upadhyayf8b75302018-09-05 11:22:07 +0530742 if (WARN_ON_ONCE(!st->should_run))
743 return;
744
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000745 /*
Peter Zijlstra4dddfb52017-09-20 19:00:17 +0200746 * ACQUIRE for the cpuhp_should_run() load of ->should_run. Ensures
747 * that if we see ->should_run we also see the rest of the state.
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000748 */
749 smp_mb();
Peter Zijlstra4dddfb52017-09-20 19:00:17 +0200750
Peter Zijlstracb921732018-09-11 11:51:27 +0200751 /*
752 * The BP holds the hotplug lock, but we're now running on the AP,
753 * ensure that anybody asserting the lock is held, will actually find
754 * it so.
755 */
756 lockdep_acquire_cpus_lock();
Peter Zijlstra5f4b55e2017-09-20 19:00:20 +0200757 cpuhp_lock_acquire(bringup);
Peter Zijlstra4dddfb52017-09-20 19:00:17 +0200758
Thomas Gleixnera7246322016-08-12 19:49:38 +0200759 if (st->single) {
Peter Zijlstra4dddfb52017-09-20 19:00:17 +0200760 state = st->cb_state;
761 st->should_run = false;
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000762 } else {
Vincent Donnefort453e4102021-02-16 10:35:06 +0000763 st->should_run = cpuhp_next_state(bringup, &state, st, st->target);
764 if (!st->should_run)
765 goto end;
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000766 }
Peter Zijlstra4dddfb52017-09-20 19:00:17 +0200767
768 WARN_ON_ONCE(!cpuhp_is_ap_state(state));
769
Peter Zijlstra4dddfb52017-09-20 19:00:17 +0200770 if (cpuhp_is_atomic_state(state)) {
771 local_irq_disable();
772 st->result = cpuhp_invoke_callback(cpu, state, bringup, st->node, &st->last);
773 local_irq_enable();
774
775 /*
776 * STARTING/DYING must not fail!
777 */
778 WARN_ON_ONCE(st->result);
779 } else {
780 st->result = cpuhp_invoke_callback(cpu, state, bringup, st->node, &st->last);
781 }
782
783 if (st->result) {
784 /*
785 * If we fail on a rollback, we're up a creek without no
786 * paddle, no way forward, no way back. We loose, thanks for
787 * playing.
788 */
789 WARN_ON_ONCE(st->rollback);
790 st->should_run = false;
791 }
792
Vincent Donnefort453e4102021-02-16 10:35:06 +0000793end:
Peter Zijlstra5f4b55e2017-09-20 19:00:20 +0200794 cpuhp_lock_release(bringup);
Peter Zijlstracb921732018-09-11 11:51:27 +0200795 lockdep_release_cpus_lock();
Peter Zijlstra4dddfb52017-09-20 19:00:17 +0200796
797 if (!st->should_run)
Peter Zijlstra5ebe7742017-09-20 19:00:19 +0200798 complete_ap_thread(st, bringup);
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000799}
800
801/* Invoke a single callback on a remote cpu */
Thomas Gleixnera7246322016-08-12 19:49:38 +0200802static int
Thomas Gleixnercf392d12016-08-12 19:49:39 +0200803cpuhp_invoke_ap_callback(int cpu, enum cpuhp_state state, bool bringup,
804 struct hlist_node *node)
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000805{
806 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
Peter Zijlstra4dddfb52017-09-20 19:00:17 +0200807 int ret;
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000808
809 if (!cpu_online(cpu))
810 return 0;
811
Peter Zijlstra5f4b55e2017-09-20 19:00:20 +0200812 cpuhp_lock_acquire(false);
813 cpuhp_lock_release(false);
814
815 cpuhp_lock_acquire(true);
816 cpuhp_lock_release(true);
Thomas Gleixner49dfe2a2017-05-24 10:15:43 +0200817
Thomas Gleixner6a4e2452016-07-13 17:16:03 +0000818 /*
819 * If we are up and running, use the hotplug thread. For early calls
820 * we invoke the thread function directly.
821 */
822 if (!st->thread)
Peter Zijlstra96abb962017-09-20 19:00:16 +0200823 return cpuhp_invoke_callback(cpu, state, bringup, node, NULL);
Thomas Gleixner6a4e2452016-07-13 17:16:03 +0000824
Peter Zijlstra4dddfb52017-09-20 19:00:17 +0200825 st->rollback = false;
826 st->last = NULL;
827
828 st->node = node;
829 st->bringup = bringup;
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000830 st->cb_state = state;
Thomas Gleixnera7246322016-08-12 19:49:38 +0200831 st->single = true;
Peter Zijlstra4dddfb52017-09-20 19:00:17 +0200832
833 __cpuhp_kick_ap(st);
Thomas Gleixnera7246322016-08-12 19:49:38 +0200834
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000835 /*
Peter Zijlstra4dddfb52017-09-20 19:00:17 +0200836 * If we failed and did a partial, do a rollback.
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000837 */
Peter Zijlstra4dddfb52017-09-20 19:00:17 +0200838 if ((ret = st->result) && st->last) {
839 st->rollback = true;
840 st->bringup = !bringup;
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000841
Peter Zijlstra4dddfb52017-09-20 19:00:17 +0200842 __cpuhp_kick_ap(st);
843 }
844
Thomas Gleixner1f7c70d2017-10-21 16:06:52 +0200845 /*
846 * Clean up the leftovers so the next hotplug operation wont use stale
847 * data.
848 */
849 st->node = st->last = NULL;
Peter Zijlstra4dddfb52017-09-20 19:00:17 +0200850 return ret;
Thomas Gleixner1cf4f622016-02-26 18:43:39 +0000851}
852
853static int cpuhp_kick_ap_work(unsigned int cpu)
854{
855 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
Peter Zijlstra4dddfb52017-09-20 19:00:17 +0200856 enum cpuhp_state prev_state = st->state;
857 int ret;
Thomas Gleixner1cf4f622016-02-26 18:43:39 +0000858
Peter Zijlstra5f4b55e2017-09-20 19:00:20 +0200859 cpuhp_lock_acquire(false);
860 cpuhp_lock_release(false);
861
862 cpuhp_lock_acquire(true);
863 cpuhp_lock_release(true);
Peter Zijlstra4dddfb52017-09-20 19:00:17 +0200864
865 trace_cpuhp_enter(cpu, st->target, prev_state, cpuhp_kick_ap_work);
866 ret = cpuhp_kick_ap(st, st->target);
867 trace_cpuhp_exit(cpu, st->state, prev_state, ret);
868
869 return ret;
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000870}
871
872static struct smp_hotplug_thread cpuhp_threads = {
873 .store = &cpuhp_state.thread,
874 .create = &cpuhp_create,
875 .thread_should_run = cpuhp_should_run,
876 .thread_fn = cpuhp_thread_fun,
877 .thread_comm = "cpuhp/%u",
878 .selfparking = true,
879};
880
881void __init cpuhp_threads_init(void)
882{
883 BUG_ON(smpboot_register_percpu_thread(&cpuhp_threads));
884 kthread_unpark(this_cpu_read(cpuhp_state.thread));
885}
886
Thomas Gleixnerb22afcd2021-03-27 22:01:36 +0100887/*
888 *
889 * Serialize hotplug trainwrecks outside of the cpu_hotplug_lock
890 * protected region.
891 *
892 * The operation is still serialized against concurrent CPU hotplug via
893 * cpu_add_remove_lock, i.e. CPU map protection. But it is _not_
894 * serialized against other hotplug related activity like adding or
895 * removing of state callbacks and state instances, which invoke either the
896 * startup or the teardown callback of the affected state.
897 *
898 * This is required for subsystems which are unfixable vs. CPU hotplug and
899 * evade lock inversion problems by scheduling work which has to be
900 * completed _before_ cpu_up()/_cpu_down() returns.
901 *
902 * Don't even think about adding anything to this for any new code or even
903 * drivers. It's only purpose is to keep existing lock order trainwrecks
904 * working.
905 *
906 * For cpu_down() there might be valid reasons to finish cleanups which are
907 * not required to be done under cpu_hotplug_lock, but that's a different
908 * story and would be not invoked via this.
909 */
910static void cpu_up_down_serialize_trainwrecks(bool tasks_frozen)
911{
912 /*
913 * cpusets delegate hotplug operations to a worker to "solve" the
914 * lock order problems. Wait for the worker, but only if tasks are
915 * _not_ frozen (suspend, hibernate) as that would wait forever.
916 *
917 * The wait is required because otherwise the hotplug operation
918 * returns with inconsistent state, which could even be observed in
919 * user space when a new CPU is brought up. The CPU plug uevent
920 * would be delivered and user space reacting on it would fail to
921 * move tasks to the newly plugged CPU up to the point where the
922 * work has finished because up to that point the newly plugged CPU
923 * is not assignable in cpusets/cgroups. On unplug that's not
924 * necessarily a visible issue, but it is still inconsistent state,
925 * which is the real problem which needs to be "fixed". This can't
926 * prevent the transient state between scheduling the work and
927 * returning from waiting for it.
928 */
929 if (!tasks_frozen)
930 cpuset_wait_for_hotplug();
931}
932
Michal Hocko777c6e02016-12-07 14:54:38 +0100933#ifdef CONFIG_HOTPLUG_CPU
Nicholas Piggin8ff00392020-11-26 20:25:29 +1000934#ifndef arch_clear_mm_cpumask_cpu
935#define arch_clear_mm_cpumask_cpu(cpu, mm) cpumask_clear_cpu(cpu, mm_cpumask(mm))
936#endif
937
Anton Vorontsove4cc2f82012-05-31 16:26:26 -0700938/**
939 * clear_tasks_mm_cpumask - Safely clear tasks' mm_cpumask for a CPU
940 * @cpu: a CPU id
941 *
942 * This function walks all processes, finds a valid mm struct for each one and
943 * then clears a corresponding bit in mm's cpumask. While this all sounds
944 * trivial, there are various non-obvious corner cases, which this function
945 * tries to solve in a safe manner.
946 *
947 * Also note that the function uses a somewhat relaxed locking scheme, so it may
948 * be called only for an already offlined CPU.
949 */
Anton Vorontsovcb792952012-05-31 16:26:22 -0700950void clear_tasks_mm_cpumask(int cpu)
951{
952 struct task_struct *p;
953
954 /*
955 * This function is called after the cpu is taken down and marked
956 * offline, so its not like new tasks will ever get this cpu set in
957 * their mm mask. -- Peter Zijlstra
958 * Thus, we may use rcu_read_lock() here, instead of grabbing
959 * full-fledged tasklist_lock.
960 */
Anton Vorontsove4cc2f82012-05-31 16:26:26 -0700961 WARN_ON(cpu_online(cpu));
Anton Vorontsovcb792952012-05-31 16:26:22 -0700962 rcu_read_lock();
963 for_each_process(p) {
964 struct task_struct *t;
965
Anton Vorontsove4cc2f82012-05-31 16:26:26 -0700966 /*
967 * Main thread might exit, but other threads may still have
968 * a valid mm. Find one.
969 */
Anton Vorontsovcb792952012-05-31 16:26:22 -0700970 t = find_lock_task_mm(p);
971 if (!t)
972 continue;
Nicholas Piggin8ff00392020-11-26 20:25:29 +1000973 arch_clear_mm_cpumask_cpu(cpu, t->mm);
Anton Vorontsovcb792952012-05-31 16:26:22 -0700974 task_unlock(t);
975 }
976 rcu_read_unlock();
977}
978
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979/* Take this CPU down. */
Mathias Krause71cf5ae2015-07-19 20:06:22 +0200980static int take_cpu_down(void *_param)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981{
Thomas Gleixner4baa0af2016-02-26 18:43:29 +0000982 struct cpuhp_cpu_state *st = this_cpu_ptr(&cpuhp_state);
983 enum cpuhp_state target = max((int)st->target, CPUHP_AP_OFFLINE);
Thomas Gleixner090e77c2016-02-26 18:43:23 +0000984 int err, cpu = smp_processor_id();
Peter Zijlstra724a8682017-09-20 19:00:18 +0200985 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 /* Ensure this CPU doesn't handle any more interrupts. */
988 err = __cpu_disable();
989 if (err < 0)
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700990 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
Thomas Gleixnera7246322016-08-12 19:49:38 +0200992 /*
Vincent Donnefort453e4102021-02-16 10:35:06 +0000993 * Must be called from CPUHP_TEARDOWN_CPU, which means, as we are going
994 * down, that the current state is CPUHP_TEARDOWN_CPU - 1.
Thomas Gleixnera7246322016-08-12 19:49:38 +0200995 */
Vincent Donnefort453e4102021-02-16 10:35:06 +0000996 WARN_ON(st->state != (CPUHP_TEARDOWN_CPU - 1));
997
Thomas Gleixner4baa0af2016-02-26 18:43:29 +0000998 /* Invoke the former CPU_DYING callbacks */
Vincent Donnefort453e4102021-02-16 10:35:06 +0000999 ret = cpuhp_invoke_callback_range(false, cpu, st, target);
1000
1001 /*
1002 * DYING must not fail!
1003 */
1004 WARN_ON_ONCE(ret);
Thomas Gleixner4baa0af2016-02-26 18:43:29 +00001005
Thomas Gleixner52c063d2015-04-03 02:37:24 +02001006 /* Give up timekeeping duties */
1007 tick_handover_do_timer();
Thomas Gleixner1b72d432019-03-21 16:39:20 +01001008 /* Remove CPU from timer broadcasting */
1009 tick_offline_cpu(cpu);
Thomas Gleixner14e568e2013-01-31 12:11:14 +00001010 /* Park the stopper thread */
Thomas Gleixner090e77c2016-02-26 18:43:23 +00001011 stop_machine_park(cpu);
Zwane Mwaikambof3705132005-06-25 14:54:50 -07001012 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013}
1014
Thomas Gleixner98458172016-02-26 18:43:25 +00001015static int takedown_cpu(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016{
Thomas Gleixnere69aab12016-02-26 18:43:43 +00001017 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
Thomas Gleixner98458172016-02-26 18:43:25 +00001018 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019
Thomas Gleixner2a58c522016-03-10 20:42:08 +01001020 /* Park the smpboot threads */
Yuan ZhaoXiong13070832021-05-23 21:31:30 +08001021 kthread_park(st->thread);
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001022
Peter Zijlstra6acce3e2013-10-11 14:38:20 +02001023 /*
Thomas Gleixnera8994182015-07-05 17:12:30 +00001024 * Prevent irq alloc/free while the dying cpu reorganizes the
1025 * interrupt affinities.
1026 */
1027 irq_lock_sparse();
1028
1029 /*
Peter Zijlstra6acce3e2013-10-11 14:38:20 +02001030 * So now all preempt/rcu users must observe !cpu_active().
1031 */
Sebastian Andrzej Siewior210e2132017-05-24 10:15:28 +02001032 err = stop_machine_cpuslocked(take_cpu_down, NULL, cpumask_of(cpu));
Rusty Russell04321582008-07-28 12:16:29 -05001033 if (err) {
Sebastian Andrzej Siewior3b9d6da2016-04-08 14:40:15 +02001034 /* CPU refused to die */
Thomas Gleixnera8994182015-07-05 17:12:30 +00001035 irq_unlock_sparse();
Sebastian Andrzej Siewior3b9d6da2016-04-08 14:40:15 +02001036 /* Unpark the hotplug thread so we can rollback there */
Yuan ZhaoXiong13070832021-05-23 21:31:30 +08001037 kthread_unpark(st->thread);
Thomas Gleixner98458172016-02-26 18:43:25 +00001038 return err;
Satoru Takeuchi8fa1d7d2006-10-28 10:38:57 -07001039 }
Rusty Russell04321582008-07-28 12:16:29 -05001040 BUG_ON(cpu_online(cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041
Peter Zijlstra48c5ccae2010-11-13 19:32:29 +01001042 /*
Brendan Jackman5b1ead62017-12-06 10:59:11 +00001043 * The teardown callback for CPUHP_AP_SCHED_STARTING will have removed
1044 * all runnable tasks from the CPU, there's only the idle task left now
Peter Zijlstra48c5ccae2010-11-13 19:32:29 +01001045 * that the migration thread is done doing the stop_machine thing.
Peter Zijlstra51a96c72010-11-19 20:37:53 +01001046 *
1047 * Wait for the stop thread to go away.
Peter Zijlstra48c5ccae2010-11-13 19:32:29 +01001048 */
Peter Zijlstra5ebe7742017-09-20 19:00:19 +02001049 wait_for_ap_thread(st, false);
Thomas Gleixnere69aab12016-02-26 18:43:43 +00001050 BUG_ON(st->state != CPUHP_AP_IDLE_DEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051
Thomas Gleixnera8994182015-07-05 17:12:30 +00001052 /* Interrupts are moved away from the dying cpu, reenable alloc/free */
1053 irq_unlock_sparse();
1054
Preeti U Murthy345527b2015-03-30 14:59:19 +05301055 hotplug_cpu__broadcast_tick_pull(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 /* This actually kills the CPU. */
1057 __cpu_die(cpu);
1058
Thomas Gleixnera49b1162015-04-03 02:38:05 +02001059 tick_cleanup_dead_cpu(cpu);
Paul E. McKenneya58163d2017-06-20 12:11:34 -07001060 rcutree_migrate_callbacks(cpu);
Thomas Gleixner98458172016-02-26 18:43:25 +00001061 return 0;
1062}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063
Thomas Gleixner71f87b22016-03-03 10:52:10 +01001064static void cpuhp_complete_idle_dead(void *arg)
1065{
1066 struct cpuhp_cpu_state *st = arg;
1067
Peter Zijlstra5ebe7742017-09-20 19:00:19 +02001068 complete_ap_thread(st, false);
Thomas Gleixner71f87b22016-03-03 10:52:10 +01001069}
1070
Thomas Gleixnere69aab12016-02-26 18:43:43 +00001071void cpuhp_report_idle_dead(void)
1072{
1073 struct cpuhp_cpu_state *st = this_cpu_ptr(&cpuhp_state);
1074
1075 BUG_ON(st->state != CPUHP_AP_OFFLINE);
Thomas Gleixner27d50c72016-02-26 18:43:44 +00001076 rcu_report_dead(smp_processor_id());
Thomas Gleixner71f87b22016-03-03 10:52:10 +01001077 st->state = CPUHP_AP_IDLE_DEAD;
1078 /*
1079 * We cannot call complete after rcu_report_dead() so we delegate it
1080 * to an online cpu.
1081 */
1082 smp_call_function_single(cpumask_first(cpu_online_mask),
1083 cpuhp_complete_idle_dead, st, 0);
Thomas Gleixnere69aab12016-02-26 18:43:43 +00001084}
1085
Peter Zijlstra4dddfb52017-09-20 19:00:17 +02001086static int cpuhp_down_callbacks(unsigned int cpu, struct cpuhp_cpu_state *st,
1087 enum cpuhp_state target)
1088{
1089 enum cpuhp_state prev_state = st->state;
1090 int ret = 0;
1091
Vincent Donnefort453e4102021-02-16 10:35:06 +00001092 ret = cpuhp_invoke_callback_range(false, cpu, st, target);
1093 if (ret) {
1094
1095 cpuhp_reset_state(st, prev_state);
1096
1097 if (st->state < prev_state)
1098 WARN_ON(cpuhp_invoke_callback_range(true, cpu, st,
1099 prev_state));
Peter Zijlstra4dddfb52017-09-20 19:00:17 +02001100 }
Vincent Donnefort453e4102021-02-16 10:35:06 +00001101
Peter Zijlstra4dddfb52017-09-20 19:00:17 +02001102 return ret;
1103}
Thomas Gleixnercff7d372016-02-26 18:43:28 +00001104
Thomas Gleixner98458172016-02-26 18:43:25 +00001105/* Requires cpu_add_remove_lock to be held */
Thomas Gleixneraf1f4042016-02-26 18:43:30 +00001106static int __ref _cpu_down(unsigned int cpu, int tasks_frozen,
1107 enum cpuhp_state target)
Thomas Gleixner98458172016-02-26 18:43:25 +00001108{
Thomas Gleixnercff7d372016-02-26 18:43:28 +00001109 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
1110 int prev_state, ret = 0;
Thomas Gleixner98458172016-02-26 18:43:25 +00001111
1112 if (num_online_cpus() == 1)
1113 return -EBUSY;
1114
Thomas Gleixner757c9892016-02-26 18:43:32 +00001115 if (!cpu_present(cpu))
Thomas Gleixner98458172016-02-26 18:43:25 +00001116 return -EINVAL;
1117
Thomas Gleixner8f553c42017-05-24 10:15:12 +02001118 cpus_write_lock();
Thomas Gleixner98458172016-02-26 18:43:25 +00001119
1120 cpuhp_tasks_frozen = tasks_frozen;
1121
Peter Zijlstra4dddfb52017-09-20 19:00:17 +02001122 prev_state = cpuhp_set_state(st, target);
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001123 /*
1124 * If the current CPU state is in the range of the AP hotplug thread,
1125 * then we need to kick the thread.
1126 */
Thomas Gleixner8df3e072016-02-26 18:43:41 +00001127 if (st->state > CPUHP_TEARDOWN_CPU) {
Peter Zijlstra4dddfb52017-09-20 19:00:17 +02001128 st->target = max((int)target, CPUHP_TEARDOWN_CPU);
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001129 ret = cpuhp_kick_ap_work(cpu);
1130 /*
1131 * The AP side has done the error rollback already. Just
1132 * return the error code..
1133 */
1134 if (ret)
1135 goto out;
1136
1137 /*
1138 * We might have stopped still in the range of the AP hotplug
1139 * thread. Nothing to do anymore.
1140 */
Thomas Gleixner8df3e072016-02-26 18:43:41 +00001141 if (st->state > CPUHP_TEARDOWN_CPU)
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001142 goto out;
Peter Zijlstra4dddfb52017-09-20 19:00:17 +02001143
1144 st->target = target;
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001145 }
1146 /*
Thomas Gleixner8df3e072016-02-26 18:43:41 +00001147 * The AP brought itself down to CPUHP_TEARDOWN_CPU. So we need
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001148 * to do the further cleanups.
1149 */
Thomas Gleixnera7246322016-08-12 19:49:38 +02001150 ret = cpuhp_down_callbacks(cpu, st, target);
Vincent Donnefort62f25062021-02-16 10:35:05 +00001151 if (ret && st->state < prev_state) {
1152 if (st->state == CPUHP_TEARDOWN_CPU) {
1153 cpuhp_reset_state(st, prev_state);
1154 __cpuhp_kick_ap(st);
1155 } else {
1156 WARN(1, "DEAD callback error for CPU%d", cpu);
1157 }
Sebastian Andrzej Siewior3b9d6da2016-04-08 14:40:15 +02001158 }
Thomas Gleixner98458172016-02-26 18:43:25 +00001159
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001160out:
Thomas Gleixner8f553c42017-05-24 10:15:12 +02001161 cpus_write_unlock();
Thomas Gleixner941154b2017-09-12 21:37:04 +02001162 /*
1163 * Do post unplug cleanup. This is still protected against
1164 * concurrent CPU hotplug via cpu_add_remove_lock.
1165 */
1166 lockup_detector_cleanup();
Thomas Gleixnera74cfff2018-11-25 19:33:39 +01001167 arch_smt_update();
Thomas Gleixnerb22afcd2021-03-27 22:01:36 +01001168 cpu_up_down_serialize_trainwrecks(tasks_frozen);
Thomas Gleixnercff7d372016-02-26 18:43:28 +00001169 return ret;
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001170}
1171
Thomas Gleixnercc1fe212018-05-29 17:49:05 +02001172static int cpu_down_maps_locked(unsigned int cpu, enum cpuhp_state target)
1173{
1174 if (cpu_hotplug_disabled)
1175 return -EBUSY;
1176 return _cpu_down(cpu, 0, target);
1177}
1178
Qais Yousef33c37362020-03-23 13:51:10 +00001179static int cpu_down(unsigned int cpu, enum cpuhp_state target)
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001180{
Heiko Carstens9ea09af2008-12-22 12:36:30 +01001181 int err;
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001182
Gautham R Shenoyd2219382008-01-25 21:08:01 +01001183 cpu_maps_update_begin();
Thomas Gleixnercc1fe212018-05-29 17:49:05 +02001184 err = cpu_down_maps_locked(cpu, target);
Gautham R Shenoyd2219382008-01-25 21:08:01 +01001185 cpu_maps_update_done();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 return err;
1187}
Peter Zijlstra4dddfb52017-09-20 19:00:17 +02001188
Qais Yousef33c37362020-03-23 13:51:10 +00001189/**
1190 * cpu_device_down - Bring down a cpu device
1191 * @dev: Pointer to the cpu device to offline
1192 *
1193 * This function is meant to be used by device core cpu subsystem only.
1194 *
1195 * Other subsystems should use remove_cpu() instead.
Randy Dunlap11bc0212021-08-09 15:38:25 -07001196 *
1197 * Return: %0 on success or a negative errno code
Qais Yousef33c37362020-03-23 13:51:10 +00001198 */
1199int cpu_device_down(struct device *dev)
Thomas Gleixneraf1f4042016-02-26 18:43:30 +00001200{
Qais Yousef33c37362020-03-23 13:51:10 +00001201 return cpu_down(dev->id, CPUHP_OFFLINE);
Thomas Gleixneraf1f4042016-02-26 18:43:30 +00001202}
Peter Zijlstra4dddfb52017-09-20 19:00:17 +02001203
Qais Yousef93ef1422020-03-23 13:50:54 +00001204int remove_cpu(unsigned int cpu)
1205{
1206 int ret;
1207
1208 lock_device_hotplug();
1209 ret = device_offline(get_cpu_device(cpu));
1210 unlock_device_hotplug();
1211
1212 return ret;
1213}
1214EXPORT_SYMBOL_GPL(remove_cpu);
1215
Qais Yousef0441a552020-03-23 13:50:55 +00001216void smp_shutdown_nonboot_cpus(unsigned int primary_cpu)
1217{
1218 unsigned int cpu;
1219 int error;
1220
1221 cpu_maps_update_begin();
1222
1223 /*
1224 * Make certain the cpu I'm about to reboot on is online.
1225 *
1226 * This is inline to what migrate_to_reboot_cpu() already do.
1227 */
1228 if (!cpu_online(primary_cpu))
1229 primary_cpu = cpumask_first(cpu_online_mask);
1230
1231 for_each_online_cpu(cpu) {
1232 if (cpu == primary_cpu)
1233 continue;
1234
1235 error = cpu_down_maps_locked(cpu, CPUHP_OFFLINE);
1236 if (error) {
1237 pr_err("Failed to offline CPU%d - error=%d",
1238 cpu, error);
1239 break;
1240 }
1241 }
1242
1243 /*
1244 * Ensure all but the reboot CPU are offline.
1245 */
1246 BUG_ON(num_online_cpus() > 1);
1247
1248 /*
1249 * Make sure the CPUs won't be enabled by someone else after this
1250 * point. Kexec will reboot to a new kernel shortly resetting
1251 * everything along the way.
1252 */
1253 cpu_hotplug_disabled++;
1254
1255 cpu_maps_update_done();
1256}
Peter Zijlstra4dddfb52017-09-20 19:00:17 +02001257
1258#else
1259#define takedown_cpu NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260#endif /*CONFIG_HOTPLUG_CPU*/
1261
Thomas Gleixner4baa0af2016-02-26 18:43:29 +00001262/**
Thomas Gleixneree1e7142016-08-18 14:57:16 +02001263 * notify_cpu_starting(cpu) - Invoke the callbacks on the starting CPU
Thomas Gleixner4baa0af2016-02-26 18:43:29 +00001264 * @cpu: cpu that just started
1265 *
Thomas Gleixner4baa0af2016-02-26 18:43:29 +00001266 * It must be called by the arch code on the new cpu, before the new cpu
1267 * enables interrupts and before the "boot" cpu returns from __cpu_up().
1268 */
1269void notify_cpu_starting(unsigned int cpu)
1270{
1271 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
1272 enum cpuhp_state target = min((int)st->target, CPUHP_AP_ONLINE);
Peter Zijlstra724a8682017-09-20 19:00:18 +02001273 int ret;
Thomas Gleixner4baa0af2016-02-26 18:43:29 +00001274
Sebastian Andrzej Siewior0c6d4572016-08-17 14:21:04 +02001275 rcu_cpu_starting(cpu); /* Enables RCU usage on this CPU. */
Thomas Gleixnere797bda2019-07-22 20:47:16 +02001276 cpumask_set_cpu(cpu, &cpus_booted_once_mask);
Vincent Donnefort453e4102021-02-16 10:35:06 +00001277 ret = cpuhp_invoke_callback_range(true, cpu, st, target);
1278
1279 /*
1280 * STARTING must not fail!
1281 */
1282 WARN_ON_ONCE(ret);
Thomas Gleixner4baa0af2016-02-26 18:43:29 +00001283}
1284
Thomas Gleixner949338e2016-02-26 18:43:35 +00001285/*
Thomas Gleixner9cd4f1a2017-07-04 22:20:23 +02001286 * Called from the idle task. Wake up the controlling task which brings the
Peter Zijlstra45178ac2019-12-10 09:34:54 +01001287 * hotplug thread of the upcoming CPU up and then delegates the rest of the
1288 * online bringup to the hotplug thread.
Thomas Gleixner949338e2016-02-26 18:43:35 +00001289 */
Thomas Gleixner8df3e072016-02-26 18:43:41 +00001290void cpuhp_online_idle(enum cpuhp_state state)
Thomas Gleixner949338e2016-02-26 18:43:35 +00001291{
Thomas Gleixner8df3e072016-02-26 18:43:41 +00001292 struct cpuhp_cpu_state *st = this_cpu_ptr(&cpuhp_state);
Thomas Gleixner8df3e072016-02-26 18:43:41 +00001293
1294 /* Happens for the boot cpu */
1295 if (state != CPUHP_AP_ONLINE_IDLE)
1296 return;
1297
Peter Zijlstra45178ac2019-12-10 09:34:54 +01001298 /*
1299 * Unpart the stopper thread before we start the idle loop (and start
1300 * scheduling); this ensures the stopper task is always available.
1301 */
1302 stop_machine_unpark(smp_processor_id());
1303
Thomas Gleixner8df3e072016-02-26 18:43:41 +00001304 st->state = CPUHP_AP_ONLINE_IDLE;
Peter Zijlstra5ebe7742017-09-20 19:00:19 +02001305 complete_ap_thread(st, true);
Thomas Gleixner949338e2016-02-26 18:43:35 +00001306}
1307
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001308/* Requires cpu_add_remove_lock to be held */
Thomas Gleixneraf1f4042016-02-26 18:43:30 +00001309static int _cpu_up(unsigned int cpu, int tasks_frozen, enum cpuhp_state target)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310{
Thomas Gleixnercff7d372016-02-26 18:43:28 +00001311 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
Suresh Siddha3bb5d2e2012-04-20 17:08:50 -07001312 struct task_struct *idle;
Thomas Gleixner2e1a3482016-02-26 18:43:37 +00001313 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
Thomas Gleixner8f553c42017-05-24 10:15:12 +02001315 cpus_write_lock();
Thomas Gleixner38498a62012-04-20 13:05:44 +00001316
Thomas Gleixner757c9892016-02-26 18:43:32 +00001317 if (!cpu_present(cpu)) {
Yasuaki Ishimatsu5e5041f2012-10-23 01:30:54 +02001318 ret = -EINVAL;
1319 goto out;
1320 }
1321
Thomas Gleixner757c9892016-02-26 18:43:32 +00001322 /*
Qais Yousef33c37362020-03-23 13:51:10 +00001323 * The caller of cpu_up() might have raced with another
1324 * caller. Nothing to do.
Thomas Gleixner757c9892016-02-26 18:43:32 +00001325 */
1326 if (st->state >= target)
Thomas Gleixner38498a62012-04-20 13:05:44 +00001327 goto out;
Thomas Gleixner757c9892016-02-26 18:43:32 +00001328
1329 if (st->state == CPUHP_OFFLINE) {
1330 /* Let it fail before we try to bring the cpu up */
1331 idle = idle_thread_get(cpu);
1332 if (IS_ERR(idle)) {
1333 ret = PTR_ERR(idle);
1334 goto out;
1335 }
Suresh Siddha3bb5d2e2012-04-20 17:08:50 -07001336 }
Thomas Gleixner38498a62012-04-20 13:05:44 +00001337
Thomas Gleixnerba997462016-02-26 18:43:24 +00001338 cpuhp_tasks_frozen = tasks_frozen;
1339
Peter Zijlstra4dddfb52017-09-20 19:00:17 +02001340 cpuhp_set_state(st, target);
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001341 /*
1342 * If the current CPU state is in the range of the AP hotplug thread,
1343 * then we need to kick the thread once more.
1344 */
Thomas Gleixner8df3e072016-02-26 18:43:41 +00001345 if (st->state > CPUHP_BRINGUP_CPU) {
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001346 ret = cpuhp_kick_ap_work(cpu);
1347 /*
1348 * The AP side has done the error rollback already. Just
1349 * return the error code..
1350 */
1351 if (ret)
1352 goto out;
1353 }
1354
1355 /*
1356 * Try to reach the target state. We max out on the BP at
Thomas Gleixner8df3e072016-02-26 18:43:41 +00001357 * CPUHP_BRINGUP_CPU. After that the AP hotplug thread is
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001358 * responsible for bringing it up to the target state.
1359 */
Thomas Gleixner8df3e072016-02-26 18:43:41 +00001360 target = min((int)target, CPUHP_BRINGUP_CPU);
Thomas Gleixnera7246322016-08-12 19:49:38 +02001361 ret = cpuhp_up_callbacks(cpu, st, target);
Thomas Gleixner38498a62012-04-20 13:05:44 +00001362out:
Thomas Gleixner8f553c42017-05-24 10:15:12 +02001363 cpus_write_unlock();
Thomas Gleixnera74cfff2018-11-25 19:33:39 +01001364 arch_smt_update();
Thomas Gleixnerb22afcd2021-03-27 22:01:36 +01001365 cpu_up_down_serialize_trainwrecks(tasks_frozen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 return ret;
1367}
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001368
Qais Yousef33c37362020-03-23 13:51:10 +00001369static int cpu_up(unsigned int cpu, enum cpuhp_state target)
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001370{
1371 int err = 0;
minskey guocf234222010-05-24 14:32:41 -07001372
Rusty Russelle0b582e2009-01-01 10:12:28 +10301373 if (!cpu_possible(cpu)) {
Fabian Frederick84117da2014-06-04 16:11:17 -07001374 pr_err("can't online cpu %d because it is not configured as may-hotadd at boot time\n",
1375 cpu);
Chen Gong87d5e0232010-03-05 13:42:38 -08001376#if defined(CONFIG_IA64)
Fabian Frederick84117da2014-06-04 16:11:17 -07001377 pr_err("please check additional_cpus= boot parameter\n");
KAMEZAWA Hiroyuki73e753a2007-10-18 23:40:47 -07001378#endif
1379 return -EINVAL;
1380 }
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001381
Toshi Kani01b0f192013-11-12 15:07:25 -08001382 err = try_online_node(cpu_to_node(cpu));
1383 if (err)
1384 return err;
minskey guocf234222010-05-24 14:32:41 -07001385
Gautham R Shenoyd2219382008-01-25 21:08:01 +01001386 cpu_maps_update_begin();
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001387
Max Krasnyanskye761b772008-07-15 04:43:49 -07001388 if (cpu_hotplug_disabled) {
1389 err = -EBUSY;
1390 goto out;
1391 }
Thomas Gleixner05736e42018-05-29 17:48:27 +02001392 if (!cpu_smt_allowed(cpu)) {
1393 err = -EPERM;
1394 goto out;
1395 }
Max Krasnyanskye761b772008-07-15 04:43:49 -07001396
Thomas Gleixneraf1f4042016-02-26 18:43:30 +00001397 err = _cpu_up(cpu, 0, target);
Max Krasnyanskye761b772008-07-15 04:43:49 -07001398out:
Gautham R Shenoyd2219382008-01-25 21:08:01 +01001399 cpu_maps_update_done();
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001400 return err;
1401}
Thomas Gleixneraf1f4042016-02-26 18:43:30 +00001402
Qais Yousef33c37362020-03-23 13:51:10 +00001403/**
1404 * cpu_device_up - Bring up a cpu device
1405 * @dev: Pointer to the cpu device to online
1406 *
1407 * This function is meant to be used by device core cpu subsystem only.
1408 *
1409 * Other subsystems should use add_cpu() instead.
Randy Dunlap11bc0212021-08-09 15:38:25 -07001410 *
1411 * Return: %0 on success or a negative errno code
Qais Yousef33c37362020-03-23 13:51:10 +00001412 */
1413int cpu_device_up(struct device *dev)
Thomas Gleixneraf1f4042016-02-26 18:43:30 +00001414{
Qais Yousef33c37362020-03-23 13:51:10 +00001415 return cpu_up(dev->id, CPUHP_ONLINE);
Thomas Gleixneraf1f4042016-02-26 18:43:30 +00001416}
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001417
Qais Yousef93ef1422020-03-23 13:50:54 +00001418int add_cpu(unsigned int cpu)
1419{
1420 int ret;
1421
1422 lock_device_hotplug();
1423 ret = device_online(get_cpu_device(cpu));
1424 unlock_device_hotplug();
1425
1426 return ret;
1427}
1428EXPORT_SYMBOL_GPL(add_cpu);
1429
Qais Yousefd720f982020-03-23 13:51:01 +00001430/**
1431 * bringup_hibernate_cpu - Bring up the CPU that we hibernated on
1432 * @sleep_cpu: The cpu we hibernated on and should be brought up.
1433 *
1434 * On some architectures like arm64, we can hibernate on any CPU, but on
1435 * wake up the CPU we hibernated on might be offline as a side effect of
1436 * using maxcpus= for example.
Randy Dunlap11bc0212021-08-09 15:38:25 -07001437 *
1438 * Return: %0 on success or a negative errno code
Qais Yousefd720f982020-03-23 13:51:01 +00001439 */
1440int bringup_hibernate_cpu(unsigned int sleep_cpu)
1441{
1442 int ret;
1443
1444 if (!cpu_online(sleep_cpu)) {
1445 pr_info("Hibernated on a CPU that is offline! Bringing CPU up.\n");
Qais Yousef33c37362020-03-23 13:51:10 +00001446 ret = cpu_up(sleep_cpu, CPUHP_ONLINE);
Qais Yousefd720f982020-03-23 13:51:01 +00001447 if (ret) {
1448 pr_err("Failed to bring hibernate-CPU up!\n");
1449 return ret;
1450 }
1451 }
1452 return 0;
1453}
1454
Qais Yousefb99a2652020-03-23 13:51:09 +00001455void bringup_nonboot_cpus(unsigned int setup_max_cpus)
1456{
1457 unsigned int cpu;
1458
1459 for_each_present_cpu(cpu) {
1460 if (num_online_cpus() >= setup_max_cpus)
1461 break;
1462 if (!cpu_online(cpu))
Qais Yousef33c37362020-03-23 13:51:10 +00001463 cpu_up(cpu, CPUHP_ONLINE);
Qais Yousefb99a2652020-03-23 13:51:09 +00001464 }
1465}
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001466
Rafael J. Wysockif3de4be2007-08-30 23:56:29 -07001467#ifdef CONFIG_PM_SLEEP_SMP
Rusty Russelle0b582e2009-01-01 10:12:28 +10301468static cpumask_var_t frozen_cpus;
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001469
Qais Youseffb7fb842020-04-30 12:40:04 +01001470int freeze_secondary_cpus(int primary)
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001471{
James Morsed391e552016-08-17 13:50:25 +01001472 int cpu, error = 0;
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001473
Gautham R Shenoyd2219382008-01-25 21:08:01 +01001474 cpu_maps_update_begin();
Nicholas Piggin9ca12ac2019-04-11 13:34:46 +10001475 if (primary == -1) {
James Morsed391e552016-08-17 13:50:25 +01001476 primary = cpumask_first(cpu_online_mask);
Nicholas Piggin9ca12ac2019-04-11 13:34:46 +10001477 if (!housekeeping_cpu(primary, HK_FLAG_TIMER))
1478 primary = housekeeping_any_cpu(HK_FLAG_TIMER);
1479 } else {
1480 if (!cpu_online(primary))
1481 primary = cpumask_first(cpu_online_mask);
1482 }
1483
Xiaotian Feng9ee349a2009-12-16 18:04:32 +01001484 /*
1485 * We take down all of the non-boot CPUs in one shot to avoid races
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001486 * with the userspace trying to use the CPU hotplug at the same time
1487 */
Rusty Russelle0b582e2009-01-01 10:12:28 +10301488 cpumask_clear(frozen_cpus);
Peter Zijlstra6ad4c182009-11-25 13:31:39 +01001489
Fabian Frederick84117da2014-06-04 16:11:17 -07001490 pr_info("Disabling non-boot CPUs ...\n");
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001491 for_each_online_cpu(cpu) {
James Morsed391e552016-08-17 13:50:25 +01001492 if (cpu == primary)
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001493 continue;
Pavankumar Kondetia66d9552019-06-03 10:01:03 +05301494
Qais Youseffb7fb842020-04-30 12:40:04 +01001495 if (pm_wakeup_pending()) {
Pavankumar Kondetia66d9552019-06-03 10:01:03 +05301496 pr_info("Wakeup pending. Abort CPU freeze\n");
1497 error = -EBUSY;
1498 break;
1499 }
1500
Todd E Brandtbb3632c2014-06-06 05:40:17 -07001501 trace_suspend_resume(TPS("CPU_OFF"), cpu, true);
Thomas Gleixneraf1f4042016-02-26 18:43:30 +00001502 error = _cpu_down(cpu, 1, CPUHP_OFFLINE);
Todd E Brandtbb3632c2014-06-06 05:40:17 -07001503 trace_suspend_resume(TPS("CPU_OFF"), cpu, false);
Mike Travisfeae3202009-11-17 18:22:13 -06001504 if (!error)
Rusty Russelle0b582e2009-01-01 10:12:28 +10301505 cpumask_set_cpu(cpu, frozen_cpus);
Mike Travisfeae3202009-11-17 18:22:13 -06001506 else {
Fabian Frederick84117da2014-06-04 16:11:17 -07001507 pr_err("Error taking CPU%d down: %d\n", cpu, error);
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001508 break;
1509 }
1510 }
Joseph Cihula86886e52009-06-30 19:31:07 -07001511
Vitaly Kuznetsov89af7ba2015-08-05 00:52:46 -07001512 if (!error)
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001513 BUG_ON(num_online_cpus() > 1);
Vitaly Kuznetsov89af7ba2015-08-05 00:52:46 -07001514 else
Fabian Frederick84117da2014-06-04 16:11:17 -07001515 pr_err("Non-boot CPUs are not disabled\n");
Vitaly Kuznetsov89af7ba2015-08-05 00:52:46 -07001516
1517 /*
1518 * Make sure the CPUs won't be enabled by someone else. We need to do
Qais Yousef56555852020-04-30 12:40:03 +01001519 * this even in case of failure as all freeze_secondary_cpus() users are
1520 * supposed to do thaw_secondary_cpus() on the failure path.
Vitaly Kuznetsov89af7ba2015-08-05 00:52:46 -07001521 */
1522 cpu_hotplug_disabled++;
1523
Gautham R Shenoyd2219382008-01-25 21:08:01 +01001524 cpu_maps_update_done();
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001525 return error;
1526}
1527
Qais Yousef56555852020-04-30 12:40:03 +01001528void __weak arch_thaw_secondary_cpus_begin(void)
Suresh Siddhad0af9ee2009-08-19 18:05:36 -07001529{
1530}
1531
Qais Yousef56555852020-04-30 12:40:03 +01001532void __weak arch_thaw_secondary_cpus_end(void)
Suresh Siddhad0af9ee2009-08-19 18:05:36 -07001533{
1534}
1535
Qais Yousef56555852020-04-30 12:40:03 +01001536void thaw_secondary_cpus(void)
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001537{
1538 int cpu, error;
1539
1540 /* Allow everyone to use the CPU hotplug again */
Gautham R Shenoyd2219382008-01-25 21:08:01 +01001541 cpu_maps_update_begin();
Lianwei Wang01b41152016-06-09 23:43:28 -07001542 __cpu_hotplug_enable();
Rusty Russelle0b582e2009-01-01 10:12:28 +10301543 if (cpumask_empty(frozen_cpus))
Rafael J. Wysocki1d64b9c2007-04-01 23:49:49 -07001544 goto out;
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001545
Fabian Frederick84117da2014-06-04 16:11:17 -07001546 pr_info("Enabling non-boot CPUs ...\n");
Suresh Siddhad0af9ee2009-08-19 18:05:36 -07001547
Qais Yousef56555852020-04-30 12:40:03 +01001548 arch_thaw_secondary_cpus_begin();
Suresh Siddhad0af9ee2009-08-19 18:05:36 -07001549
Rusty Russelle0b582e2009-01-01 10:12:28 +10301550 for_each_cpu(cpu, frozen_cpus) {
Todd E Brandtbb3632c2014-06-06 05:40:17 -07001551 trace_suspend_resume(TPS("CPU_ON"), cpu, true);
Thomas Gleixneraf1f4042016-02-26 18:43:30 +00001552 error = _cpu_up(cpu, 1, CPUHP_ONLINE);
Todd E Brandtbb3632c2014-06-06 05:40:17 -07001553 trace_suspend_resume(TPS("CPU_ON"), cpu, false);
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001554 if (!error) {
Fabian Frederick84117da2014-06-04 16:11:17 -07001555 pr_info("CPU%d is up\n", cpu);
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001556 continue;
1557 }
Fabian Frederick84117da2014-06-04 16:11:17 -07001558 pr_warn("Error taking CPU%d up: %d\n", cpu, error);
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001559 }
Suresh Siddhad0af9ee2009-08-19 18:05:36 -07001560
Qais Yousef56555852020-04-30 12:40:03 +01001561 arch_thaw_secondary_cpus_end();
Suresh Siddhad0af9ee2009-08-19 18:05:36 -07001562
Rusty Russelle0b582e2009-01-01 10:12:28 +10301563 cpumask_clear(frozen_cpus);
Rafael J. Wysocki1d64b9c2007-04-01 23:49:49 -07001564out:
Gautham R Shenoyd2219382008-01-25 21:08:01 +01001565 cpu_maps_update_done();
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001566}
Rusty Russelle0b582e2009-01-01 10:12:28 +10301567
Fenghua Yud7268a32011-11-15 21:59:31 +01001568static int __init alloc_frozen_cpus(void)
Rusty Russelle0b582e2009-01-01 10:12:28 +10301569{
1570 if (!alloc_cpumask_var(&frozen_cpus, GFP_KERNEL|__GFP_ZERO))
1571 return -ENOMEM;
1572 return 0;
1573}
1574core_initcall(alloc_frozen_cpus);
Srivatsa S. Bhat79cfbdf2011-11-03 00:59:25 +01001575
1576/*
Srivatsa S. Bhat79cfbdf2011-11-03 00:59:25 +01001577 * When callbacks for CPU hotplug notifications are being executed, we must
1578 * ensure that the state of the system with respect to the tasks being frozen
1579 * or not, as reported by the notification, remains unchanged *throughout the
1580 * duration* of the execution of the callbacks.
1581 * Hence we need to prevent the freezer from racing with regular CPU hotplug.
1582 *
1583 * This synchronization is implemented by mutually excluding regular CPU
1584 * hotplug and Suspend/Hibernate call paths by hooking onto the Suspend/
1585 * Hibernate notifications.
1586 */
1587static int
1588cpu_hotplug_pm_callback(struct notifier_block *nb,
1589 unsigned long action, void *ptr)
1590{
1591 switch (action) {
1592
1593 case PM_SUSPEND_PREPARE:
1594 case PM_HIBERNATION_PREPARE:
Srivatsa S. Bhat16e53db2013-06-12 14:04:36 -07001595 cpu_hotplug_disable();
Srivatsa S. Bhat79cfbdf2011-11-03 00:59:25 +01001596 break;
1597
1598 case PM_POST_SUSPEND:
1599 case PM_POST_HIBERNATION:
Srivatsa S. Bhat16e53db2013-06-12 14:04:36 -07001600 cpu_hotplug_enable();
Srivatsa S. Bhat79cfbdf2011-11-03 00:59:25 +01001601 break;
1602
1603 default:
1604 return NOTIFY_DONE;
1605 }
1606
1607 return NOTIFY_OK;
1608}
1609
1610
Fenghua Yud7268a32011-11-15 21:59:31 +01001611static int __init cpu_hotplug_pm_sync_init(void)
Srivatsa S. Bhat79cfbdf2011-11-03 00:59:25 +01001612{
Fenghua Yu6e32d472012-11-13 11:32:43 -08001613 /*
1614 * cpu_hotplug_pm_callback has higher priority than x86
1615 * bsp_pm_callback which depends on cpu_hotplug_pm_callback
1616 * to disable cpu hotplug to avoid cpu hotplug race.
1617 */
Srivatsa S. Bhat79cfbdf2011-11-03 00:59:25 +01001618 pm_notifier(cpu_hotplug_pm_callback, 0);
1619 return 0;
1620}
1621core_initcall(cpu_hotplug_pm_sync_init);
1622
Rafael J. Wysockif3de4be2007-08-30 23:56:29 -07001623#endif /* CONFIG_PM_SLEEP_SMP */
Max Krasnyansky68f4f1e2008-05-29 11:17:02 -07001624
Peter Zijlstra8ce371f2017-03-20 12:26:55 +01001625int __boot_cpu_id;
1626
Max Krasnyansky68f4f1e2008-05-29 11:17:02 -07001627#endif /* CONFIG_SMP */
Mike Travisb8d317d2008-07-24 18:21:29 -07001628
Thomas Gleixnercff7d372016-02-26 18:43:28 +00001629/* Boot processor state steps */
Lai Jiangshan17a2f1c2017-12-01 21:50:05 +08001630static struct cpuhp_step cpuhp_hp_states[] = {
Thomas Gleixnercff7d372016-02-26 18:43:28 +00001631 [CPUHP_OFFLINE] = {
1632 .name = "offline",
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001633 .startup.single = NULL,
1634 .teardown.single = NULL,
Thomas Gleixnercff7d372016-02-26 18:43:28 +00001635 },
1636#ifdef CONFIG_SMP
1637 [CPUHP_CREATE_THREADS]= {
Thomas Gleixner677f6642016-09-06 16:13:48 +02001638 .name = "threads:prepare",
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001639 .startup.single = smpboot_create_threads,
1640 .teardown.single = NULL,
Thomas Gleixner757c9892016-02-26 18:43:32 +00001641 .cant_stop = true,
Thomas Gleixnercff7d372016-02-26 18:43:28 +00001642 },
Thomas Gleixner00e16c32016-07-13 17:16:09 +00001643 [CPUHP_PERF_PREPARE] = {
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001644 .name = "perf:prepare",
1645 .startup.single = perf_event_init_cpu,
1646 .teardown.single = perf_event_exit_cpu,
Thomas Gleixner00e16c32016-07-13 17:16:09 +00001647 },
Thomas Gleixner7ee681b2016-07-13 17:16:29 +00001648 [CPUHP_WORKQUEUE_PREP] = {
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001649 .name = "workqueue:prepare",
1650 .startup.single = workqueue_prepare_cpu,
1651 .teardown.single = NULL,
Thomas Gleixner7ee681b2016-07-13 17:16:29 +00001652 },
Thomas Gleixner27590dc2016-07-15 10:41:04 +02001653 [CPUHP_HRTIMERS_PREPARE] = {
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001654 .name = "hrtimers:prepare",
1655 .startup.single = hrtimers_prepare_cpu,
1656 .teardown.single = hrtimers_dead_cpu,
Thomas Gleixner27590dc2016-07-15 10:41:04 +02001657 },
Richard Weinberger31487f82016-07-13 17:17:01 +00001658 [CPUHP_SMPCFD_PREPARE] = {
Thomas Gleixner677f6642016-09-06 16:13:48 +02001659 .name = "smpcfd:prepare",
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001660 .startup.single = smpcfd_prepare_cpu,
1661 .teardown.single = smpcfd_dead_cpu,
Richard Weinberger31487f82016-07-13 17:17:01 +00001662 },
Richard Weinbergere6d49892016-08-18 14:57:17 +02001663 [CPUHP_RELAY_PREPARE] = {
1664 .name = "relay:prepare",
1665 .startup.single = relay_prepare_cpu,
1666 .teardown.single = NULL,
1667 },
Sebastian Andrzej Siewior6731d4f2016-08-23 14:53:19 +02001668 [CPUHP_SLAB_PREPARE] = {
1669 .name = "slab:prepare",
1670 .startup.single = slab_prepare_cpu,
1671 .teardown.single = slab_dead_cpu,
Thomas Gleixnercff7d372016-02-26 18:43:28 +00001672 },
Thomas Gleixner4df83742016-07-13 17:17:03 +00001673 [CPUHP_RCUTREE_PREP] = {
Thomas Gleixner677f6642016-09-06 16:13:48 +02001674 .name = "RCU/tree:prepare",
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001675 .startup.single = rcutree_prepare_cpu,
1676 .teardown.single = rcutree_dead_cpu,
Thomas Gleixner4df83742016-07-13 17:17:03 +00001677 },
Thomas Gleixnercff7d372016-02-26 18:43:28 +00001678 /*
Richard Cochran4fae16d2016-07-27 11:08:18 +02001679 * On the tear-down path, timers_dead_cpu() must be invoked
1680 * before blk_mq_queue_reinit_notify() from notify_dead(),
1681 * otherwise a RCU stall occurs.
1682 */
Thomas Gleixner26456f82017-12-27 21:37:25 +01001683 [CPUHP_TIMERS_PREPARE] = {
Mukesh Ojhad0180312018-07-24 20:17:48 +05301684 .name = "timers:prepare",
Thomas Gleixner26456f82017-12-27 21:37:25 +01001685 .startup.single = timers_prepare_cpu,
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001686 .teardown.single = timers_dead_cpu,
Richard Cochran4fae16d2016-07-27 11:08:18 +02001687 },
Thomas Gleixnerd10ef6f2016-03-08 10:36:13 +01001688 /* Kicks the plugged cpu into life */
Thomas Gleixnercff7d372016-02-26 18:43:28 +00001689 [CPUHP_BRINGUP_CPU] = {
1690 .name = "cpu:bringup",
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001691 .startup.single = bringup_cpu,
Peter Zijlstrabf2c59f2020-04-01 17:40:33 -04001692 .teardown.single = finish_cpu,
Thomas Gleixner757c9892016-02-26 18:43:32 +00001693 .cant_stop = true,
Thomas Gleixner4baa0af2016-02-26 18:43:29 +00001694 },
Thomas Gleixnerd10ef6f2016-03-08 10:36:13 +01001695 /* Final state before CPU kills itself */
1696 [CPUHP_AP_IDLE_DEAD] = {
1697 .name = "idle:dead",
1698 },
1699 /*
1700 * Last state before CPU enters the idle loop to die. Transient state
1701 * for synchronization.
1702 */
1703 [CPUHP_AP_OFFLINE] = {
1704 .name = "ap:offline",
1705 .cant_stop = true,
1706 },
Thomas Gleixner9cf72432016-03-10 12:54:09 +01001707 /* First state is scheduler control. Interrupts are disabled */
1708 [CPUHP_AP_SCHED_STARTING] = {
1709 .name = "sched:starting",
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001710 .startup.single = sched_cpu_starting,
1711 .teardown.single = sched_cpu_dying,
Thomas Gleixner9cf72432016-03-10 12:54:09 +01001712 },
Thomas Gleixner4df83742016-07-13 17:17:03 +00001713 [CPUHP_AP_RCUTREE_DYING] = {
Thomas Gleixner677f6642016-09-06 16:13:48 +02001714 .name = "RCU/tree:dying",
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001715 .startup.single = NULL,
1716 .teardown.single = rcutree_dying_cpu,
Thomas Gleixner4baa0af2016-02-26 18:43:29 +00001717 },
Lai Jiangshan46febd32017-11-28 21:19:53 +08001718 [CPUHP_AP_SMPCFD_DYING] = {
1719 .name = "smpcfd:dying",
1720 .startup.single = NULL,
1721 .teardown.single = smpcfd_dying_cpu,
1722 },
Thomas Gleixnerd10ef6f2016-03-08 10:36:13 +01001723 /* Entry state on starting. Interrupts enabled from here on. Transient
1724 * state for synchronsization */
1725 [CPUHP_AP_ONLINE] = {
1726 .name = "ap:online",
1727 },
Lai Jiangshan17a2f1c2017-12-01 21:50:05 +08001728 /*
Thomas Gleixner1cf12e02020-09-16 09:27:18 +02001729 * Handled on control processor until the plugged processor manages
Lai Jiangshan17a2f1c2017-12-01 21:50:05 +08001730 * this itself.
1731 */
1732 [CPUHP_TEARDOWN_CPU] = {
1733 .name = "cpu:teardown",
1734 .startup.single = NULL,
1735 .teardown.single = takedown_cpu,
1736 .cant_stop = true,
1737 },
Thomas Gleixner1cf12e02020-09-16 09:27:18 +02001738
1739 [CPUHP_AP_SCHED_WAIT_EMPTY] = {
1740 .name = "sched:waitempty",
1741 .startup.single = NULL,
1742 .teardown.single = sched_cpu_wait_empty,
1743 },
1744
Thomas Gleixnerd10ef6f2016-03-08 10:36:13 +01001745 /* Handle smpboot threads park/unpark */
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001746 [CPUHP_AP_SMPBOOT_THREADS] = {
Thomas Gleixner677f6642016-09-06 16:13:48 +02001747 .name = "smpboot/threads:online",
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001748 .startup.single = smpboot_unpark_threads,
Thomas Gleixnerc4de6562018-05-29 19:05:25 +02001749 .teardown.single = smpboot_park_threads,
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001750 },
Thomas Gleixnerc5cb83b2017-06-20 01:37:51 +02001751 [CPUHP_AP_IRQ_AFFINITY_ONLINE] = {
1752 .name = "irq/affinity:online",
1753 .startup.single = irq_affinity_online_cpu,
1754 .teardown.single = NULL,
1755 },
Thomas Gleixner00e16c32016-07-13 17:16:09 +00001756 [CPUHP_AP_PERF_ONLINE] = {
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001757 .name = "perf:online",
1758 .startup.single = perf_event_init_cpu,
1759 .teardown.single = perf_event_exit_cpu,
Thomas Gleixner00e16c32016-07-13 17:16:09 +00001760 },
Peter Zijlstra9cf57732018-06-07 10:52:03 +02001761 [CPUHP_AP_WATCHDOG_ONLINE] = {
1762 .name = "lockup_detector:online",
1763 .startup.single = lockup_detector_online_cpu,
1764 .teardown.single = lockup_detector_offline_cpu,
1765 },
Thomas Gleixner7ee681b2016-07-13 17:16:29 +00001766 [CPUHP_AP_WORKQUEUE_ONLINE] = {
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001767 .name = "workqueue:online",
1768 .startup.single = workqueue_online_cpu,
1769 .teardown.single = workqueue_offline_cpu,
Thomas Gleixner7ee681b2016-07-13 17:16:29 +00001770 },
Thomas Gleixner4df83742016-07-13 17:17:03 +00001771 [CPUHP_AP_RCUTREE_ONLINE] = {
Thomas Gleixner677f6642016-09-06 16:13:48 +02001772 .name = "RCU/tree:online",
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001773 .startup.single = rcutree_online_cpu,
1774 .teardown.single = rcutree_offline_cpu,
Thomas Gleixner4df83742016-07-13 17:17:03 +00001775 },
Thomas Gleixner4baa0af2016-02-26 18:43:29 +00001776#endif
Thomas Gleixnerd10ef6f2016-03-08 10:36:13 +01001777 /*
1778 * The dynamically registered state space is here
1779 */
1780
Thomas Gleixneraaddd7d2016-03-10 12:54:19 +01001781#ifdef CONFIG_SMP
1782 /* Last state is scheduler control setting the cpu active */
1783 [CPUHP_AP_ACTIVE] = {
1784 .name = "sched:active",
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001785 .startup.single = sched_cpu_activate,
1786 .teardown.single = sched_cpu_deactivate,
Thomas Gleixneraaddd7d2016-03-10 12:54:19 +01001787 },
1788#endif
1789
Thomas Gleixnerd10ef6f2016-03-08 10:36:13 +01001790 /* CPU is fully up and running. */
Thomas Gleixner4baa0af2016-02-26 18:43:29 +00001791 [CPUHP_ONLINE] = {
1792 .name = "online",
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001793 .startup.single = NULL,
1794 .teardown.single = NULL,
Thomas Gleixner4baa0af2016-02-26 18:43:29 +00001795 },
1796};
1797
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001798/* Sanity check for callbacks */
1799static int cpuhp_cb_check(enum cpuhp_state state)
1800{
1801 if (state <= CPUHP_OFFLINE || state >= CPUHP_ONLINE)
1802 return -EINVAL;
1803 return 0;
1804}
1805
Thomas Gleixnerdc280d932016-12-21 20:19:49 +01001806/*
1807 * Returns a free for dynamic slot assignment of the Online state. The states
1808 * are protected by the cpuhp_slot_states mutex and an empty slot is identified
1809 * by having no name assigned.
1810 */
1811static int cpuhp_reserve_state(enum cpuhp_state state)
1812{
Thomas Gleixner4205e472017-01-10 14:01:05 +01001813 enum cpuhp_state i, end;
1814 struct cpuhp_step *step;
Thomas Gleixnerdc280d932016-12-21 20:19:49 +01001815
Thomas Gleixner4205e472017-01-10 14:01:05 +01001816 switch (state) {
1817 case CPUHP_AP_ONLINE_DYN:
Lai Jiangshan17a2f1c2017-12-01 21:50:05 +08001818 step = cpuhp_hp_states + CPUHP_AP_ONLINE_DYN;
Thomas Gleixner4205e472017-01-10 14:01:05 +01001819 end = CPUHP_AP_ONLINE_DYN_END;
1820 break;
1821 case CPUHP_BP_PREPARE_DYN:
Lai Jiangshan17a2f1c2017-12-01 21:50:05 +08001822 step = cpuhp_hp_states + CPUHP_BP_PREPARE_DYN;
Thomas Gleixner4205e472017-01-10 14:01:05 +01001823 end = CPUHP_BP_PREPARE_DYN_END;
1824 break;
1825 default:
1826 return -EINVAL;
1827 }
1828
1829 for (i = state; i <= end; i++, step++) {
1830 if (!step->name)
Thomas Gleixnerdc280d932016-12-21 20:19:49 +01001831 return i;
1832 }
1833 WARN(1, "No more dynamic states available for CPU hotplug\n");
1834 return -ENOSPC;
1835}
1836
1837static int cpuhp_store_callbacks(enum cpuhp_state state, const char *name,
1838 int (*startup)(unsigned int cpu),
1839 int (*teardown)(unsigned int cpu),
1840 bool multi_instance)
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001841{
1842 /* (Un)Install the callbacks for further cpu hotplug operations */
1843 struct cpuhp_step *sp;
Thomas Gleixnerdc280d932016-12-21 20:19:49 +01001844 int ret = 0;
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001845
Ethan Barnes0c96b272017-07-19 22:36:00 +00001846 /*
1847 * If name is NULL, then the state gets removed.
1848 *
1849 * CPUHP_AP_ONLINE_DYN and CPUHP_BP_PREPARE_DYN are handed out on
1850 * the first allocation from these dynamic ranges, so the removal
1851 * would trigger a new allocation and clear the wrong (already
1852 * empty) state, leaving the callbacks of the to be cleared state
1853 * dangling, which causes wreckage on the next hotplug operation.
1854 */
1855 if (name && (state == CPUHP_AP_ONLINE_DYN ||
1856 state == CPUHP_BP_PREPARE_DYN)) {
Thomas Gleixnerdc280d932016-12-21 20:19:49 +01001857 ret = cpuhp_reserve_state(state);
1858 if (ret < 0)
Sebastian Andrzej Siewiordc434e052017-03-14 16:06:45 +01001859 return ret;
Thomas Gleixnerdc280d932016-12-21 20:19:49 +01001860 state = ret;
1861 }
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001862 sp = cpuhp_get_step(state);
Sebastian Andrzej Siewiordc434e052017-03-14 16:06:45 +01001863 if (name && sp->name)
1864 return -EBUSY;
1865
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001866 sp->startup.single = startup;
1867 sp->teardown.single = teardown;
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001868 sp->name = name;
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001869 sp->multi_instance = multi_instance;
1870 INIT_HLIST_HEAD(&sp->list);
Thomas Gleixnerdc280d932016-12-21 20:19:49 +01001871 return ret;
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001872}
1873
1874static void *cpuhp_get_teardown_cb(enum cpuhp_state state)
1875{
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001876 return cpuhp_get_step(state)->teardown.single;
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001877}
1878
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001879/*
1880 * Call the startup/teardown function for a step either on the AP or
1881 * on the current CPU.
1882 */
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001883static int cpuhp_issue_call(int cpu, enum cpuhp_state state, bool bringup,
1884 struct hlist_node *node)
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001885{
Thomas Gleixnera7246322016-08-12 19:49:38 +02001886 struct cpuhp_step *sp = cpuhp_get_step(state);
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001887 int ret;
1888
Peter Zijlstra4dddfb52017-09-20 19:00:17 +02001889 /*
1890 * If there's nothing to do, we done.
1891 * Relies on the union for multi_instance.
1892 */
Vincent Donnefort453e4102021-02-16 10:35:06 +00001893 if (cpuhp_step_empty(bringup, sp))
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001894 return 0;
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001895 /*
1896 * The non AP bound callbacks can fail on bringup. On teardown
1897 * e.g. module removal we crash for now.
1898 */
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001899#ifdef CONFIG_SMP
1900 if (cpuhp_is_ap_state(state))
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001901 ret = cpuhp_invoke_ap_callback(cpu, state, bringup, node);
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001902 else
Peter Zijlstra96abb962017-09-20 19:00:16 +02001903 ret = cpuhp_invoke_callback(cpu, state, bringup, node, NULL);
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001904#else
Peter Zijlstra96abb962017-09-20 19:00:16 +02001905 ret = cpuhp_invoke_callback(cpu, state, bringup, node, NULL);
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001906#endif
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001907 BUG_ON(ret && !bringup);
1908 return ret;
1909}
1910
1911/*
1912 * Called from __cpuhp_setup_state on a recoverable failure.
1913 *
1914 * Note: The teardown callbacks for rollback are not allowed to fail!
1915 */
1916static void cpuhp_rollback_install(int failedcpu, enum cpuhp_state state,
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001917 struct hlist_node *node)
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001918{
1919 int cpu;
1920
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001921 /* Roll back the already executed steps on the other cpus */
1922 for_each_present_cpu(cpu) {
1923 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
1924 int cpustate = st->state;
1925
1926 if (cpu >= failedcpu)
1927 break;
1928
1929 /* Did we invoke the startup call on that cpu ? */
1930 if (cpustate >= state)
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001931 cpuhp_issue_call(cpu, state, false, node);
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001932 }
1933}
1934
Thomas Gleixner9805c672017-05-24 10:15:15 +02001935int __cpuhp_state_add_instance_cpuslocked(enum cpuhp_state state,
1936 struct hlist_node *node,
1937 bool invoke)
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001938{
1939 struct cpuhp_step *sp;
1940 int cpu;
1941 int ret;
1942
Thomas Gleixner9805c672017-05-24 10:15:15 +02001943 lockdep_assert_cpus_held();
1944
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001945 sp = cpuhp_get_step(state);
1946 if (sp->multi_instance == false)
1947 return -EINVAL;
1948
Sebastian Andrzej Siewiordc434e052017-03-14 16:06:45 +01001949 mutex_lock(&cpuhp_state_mutex);
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001950
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001951 if (!invoke || !sp->startup.multi)
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001952 goto add_node;
1953
1954 /*
1955 * Try to call the startup callback for each present cpu
1956 * depending on the hotplug state of the cpu.
1957 */
1958 for_each_present_cpu(cpu) {
1959 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
1960 int cpustate = st->state;
1961
1962 if (cpustate < state)
1963 continue;
1964
1965 ret = cpuhp_issue_call(cpu, state, true, node);
1966 if (ret) {
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001967 if (sp->teardown.multi)
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001968 cpuhp_rollback_install(cpu, state, node);
Sebastian Andrzej Siewiordc434e052017-03-14 16:06:45 +01001969 goto unlock;
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001970 }
1971 }
1972add_node:
1973 ret = 0;
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001974 hlist_add_head(node, &sp->list);
Sebastian Andrzej Siewiordc434e052017-03-14 16:06:45 +01001975unlock:
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001976 mutex_unlock(&cpuhp_state_mutex);
Thomas Gleixner9805c672017-05-24 10:15:15 +02001977 return ret;
1978}
1979
1980int __cpuhp_state_add_instance(enum cpuhp_state state, struct hlist_node *node,
1981 bool invoke)
1982{
1983 int ret;
1984
1985 cpus_read_lock();
1986 ret = __cpuhp_state_add_instance_cpuslocked(state, node, invoke);
Thomas Gleixner8f553c42017-05-24 10:15:12 +02001987 cpus_read_unlock();
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001988 return ret;
1989}
1990EXPORT_SYMBOL_GPL(__cpuhp_state_add_instance);
1991
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001992/**
Sebastian Andrzej Siewior71def422017-05-24 10:15:14 +02001993 * __cpuhp_setup_state_cpuslocked - Setup the callbacks for an hotplug machine state
Thomas Gleixnerdc280d932016-12-21 20:19:49 +01001994 * @state: The state to setup
Baokun Lied3cd1d2021-06-05 14:30:03 +08001995 * @name: Name of the step
Thomas Gleixnerdc280d932016-12-21 20:19:49 +01001996 * @invoke: If true, the startup function is invoked for cpus where
1997 * cpu state >= @state
1998 * @startup: startup callback function
1999 * @teardown: teardown callback function
2000 * @multi_instance: State is set up for multiple instances which get
2001 * added afterwards.
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00002002 *
Sebastian Andrzej Siewior71def422017-05-24 10:15:14 +02002003 * The caller needs to hold cpus read locked while calling this function.
Randy Dunlap11bc0212021-08-09 15:38:25 -07002004 * Return:
Boris Ostrovsky512f0982016-12-15 10:00:57 -05002005 * On success:
Randy Dunlap11bc0212021-08-09 15:38:25 -07002006 * Positive state number if @state is CPUHP_AP_ONLINE_DYN;
Boris Ostrovsky512f0982016-12-15 10:00:57 -05002007 * 0 for all other states
2008 * On failure: proper (negative) error code
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00002009 */
Sebastian Andrzej Siewior71def422017-05-24 10:15:14 +02002010int __cpuhp_setup_state_cpuslocked(enum cpuhp_state state,
2011 const char *name, bool invoke,
2012 int (*startup)(unsigned int cpu),
2013 int (*teardown)(unsigned int cpu),
2014 bool multi_instance)
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00002015{
2016 int cpu, ret = 0;
Thomas Gleixnerb9d9d692016-12-26 22:58:19 +01002017 bool dynstate;
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00002018
Sebastian Andrzej Siewior71def422017-05-24 10:15:14 +02002019 lockdep_assert_cpus_held();
2020
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00002021 if (cpuhp_cb_check(state) || !name)
2022 return -EINVAL;
2023
Sebastian Andrzej Siewiordc434e052017-03-14 16:06:45 +01002024 mutex_lock(&cpuhp_state_mutex);
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00002025
Thomas Gleixnerdc280d932016-12-21 20:19:49 +01002026 ret = cpuhp_store_callbacks(state, name, startup, teardown,
2027 multi_instance);
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00002028
Thomas Gleixnerb9d9d692016-12-26 22:58:19 +01002029 dynstate = state == CPUHP_AP_ONLINE_DYN;
2030 if (ret > 0 && dynstate) {
2031 state = ret;
2032 ret = 0;
2033 }
2034
Thomas Gleixnerdc280d932016-12-21 20:19:49 +01002035 if (ret || !invoke || !startup)
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00002036 goto out;
2037
2038 /*
2039 * Try to call the startup callback for each present cpu
2040 * depending on the hotplug state of the cpu.
2041 */
2042 for_each_present_cpu(cpu) {
2043 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
2044 int cpustate = st->state;
2045
2046 if (cpustate < state)
2047 continue;
2048
Thomas Gleixnercf392d12016-08-12 19:49:39 +02002049 ret = cpuhp_issue_call(cpu, state, true, NULL);
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00002050 if (ret) {
Thomas Gleixnera7246322016-08-12 19:49:38 +02002051 if (teardown)
Thomas Gleixnercf392d12016-08-12 19:49:39 +02002052 cpuhp_rollback_install(cpu, state, NULL);
2053 cpuhp_store_callbacks(state, NULL, NULL, NULL, false);
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00002054 goto out;
2055 }
2056 }
2057out:
Sebastian Andrzej Siewiordc434e052017-03-14 16:06:45 +01002058 mutex_unlock(&cpuhp_state_mutex);
Thomas Gleixnerdc280d932016-12-21 20:19:49 +01002059 /*
2060 * If the requested state is CPUHP_AP_ONLINE_DYN, return the
2061 * dynamically allocated state in case of success.
2062 */
Thomas Gleixnerb9d9d692016-12-26 22:58:19 +01002063 if (!ret && dynstate)
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00002064 return state;
2065 return ret;
2066}
Sebastian Andrzej Siewior71def422017-05-24 10:15:14 +02002067EXPORT_SYMBOL(__cpuhp_setup_state_cpuslocked);
2068
2069int __cpuhp_setup_state(enum cpuhp_state state,
2070 const char *name, bool invoke,
2071 int (*startup)(unsigned int cpu),
2072 int (*teardown)(unsigned int cpu),
2073 bool multi_instance)
2074{
2075 int ret;
2076
2077 cpus_read_lock();
2078 ret = __cpuhp_setup_state_cpuslocked(state, name, invoke, startup,
2079 teardown, multi_instance);
2080 cpus_read_unlock();
2081 return ret;
2082}
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00002083EXPORT_SYMBOL(__cpuhp_setup_state);
2084
Thomas Gleixnercf392d12016-08-12 19:49:39 +02002085int __cpuhp_state_remove_instance(enum cpuhp_state state,
2086 struct hlist_node *node, bool invoke)
2087{
2088 struct cpuhp_step *sp = cpuhp_get_step(state);
2089 int cpu;
2090
2091 BUG_ON(cpuhp_cb_check(state));
2092
2093 if (!sp->multi_instance)
2094 return -EINVAL;
2095
Thomas Gleixner8f553c42017-05-24 10:15:12 +02002096 cpus_read_lock();
Sebastian Andrzej Siewiordc434e052017-03-14 16:06:45 +01002097 mutex_lock(&cpuhp_state_mutex);
2098
Thomas Gleixnercf392d12016-08-12 19:49:39 +02002099 if (!invoke || !cpuhp_get_teardown_cb(state))
2100 goto remove;
2101 /*
2102 * Call the teardown callback for each present cpu depending
2103 * on the hotplug state of the cpu. This function is not
2104 * allowed to fail currently!
2105 */
2106 for_each_present_cpu(cpu) {
2107 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
2108 int cpustate = st->state;
2109
2110 if (cpustate >= state)
2111 cpuhp_issue_call(cpu, state, false, node);
2112 }
2113
2114remove:
Thomas Gleixnercf392d12016-08-12 19:49:39 +02002115 hlist_del(node);
2116 mutex_unlock(&cpuhp_state_mutex);
Thomas Gleixner8f553c42017-05-24 10:15:12 +02002117 cpus_read_unlock();
Thomas Gleixnercf392d12016-08-12 19:49:39 +02002118
2119 return 0;
2120}
2121EXPORT_SYMBOL_GPL(__cpuhp_state_remove_instance);
Sebastian Andrzej Siewiordc434e052017-03-14 16:06:45 +01002122
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00002123/**
Sebastian Andrzej Siewior71def422017-05-24 10:15:14 +02002124 * __cpuhp_remove_state_cpuslocked - Remove the callbacks for an hotplug machine state
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00002125 * @state: The state to remove
2126 * @invoke: If true, the teardown function is invoked for cpus where
2127 * cpu state >= @state
2128 *
Sebastian Andrzej Siewior71def422017-05-24 10:15:14 +02002129 * The caller needs to hold cpus read locked while calling this function.
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00002130 * The teardown callback is currently not allowed to fail. Think
2131 * about module removal!
2132 */
Sebastian Andrzej Siewior71def422017-05-24 10:15:14 +02002133void __cpuhp_remove_state_cpuslocked(enum cpuhp_state state, bool invoke)
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00002134{
Thomas Gleixnercf392d12016-08-12 19:49:39 +02002135 struct cpuhp_step *sp = cpuhp_get_step(state);
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00002136 int cpu;
2137
2138 BUG_ON(cpuhp_cb_check(state));
2139
Sebastian Andrzej Siewior71def422017-05-24 10:15:14 +02002140 lockdep_assert_cpus_held();
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00002141
Sebastian Andrzej Siewiordc434e052017-03-14 16:06:45 +01002142 mutex_lock(&cpuhp_state_mutex);
Thomas Gleixnercf392d12016-08-12 19:49:39 +02002143 if (sp->multi_instance) {
2144 WARN(!hlist_empty(&sp->list),
2145 "Error: Removing state %d which has instances left.\n",
2146 state);
2147 goto remove;
2148 }
2149
Thomas Gleixnera7246322016-08-12 19:49:38 +02002150 if (!invoke || !cpuhp_get_teardown_cb(state))
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00002151 goto remove;
2152
2153 /*
2154 * Call the teardown callback for each present cpu depending
2155 * on the hotplug state of the cpu. This function is not
2156 * allowed to fail currently!
2157 */
2158 for_each_present_cpu(cpu) {
2159 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
2160 int cpustate = st->state;
2161
2162 if (cpustate >= state)
Thomas Gleixnercf392d12016-08-12 19:49:39 +02002163 cpuhp_issue_call(cpu, state, false, NULL);
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00002164 }
2165remove:
Thomas Gleixnercf392d12016-08-12 19:49:39 +02002166 cpuhp_store_callbacks(state, NULL, NULL, NULL, false);
Sebastian Andrzej Siewiordc434e052017-03-14 16:06:45 +01002167 mutex_unlock(&cpuhp_state_mutex);
Sebastian Andrzej Siewior71def422017-05-24 10:15:14 +02002168}
2169EXPORT_SYMBOL(__cpuhp_remove_state_cpuslocked);
2170
2171void __cpuhp_remove_state(enum cpuhp_state state, bool invoke)
2172{
2173 cpus_read_lock();
2174 __cpuhp_remove_state_cpuslocked(state, invoke);
Thomas Gleixner8f553c42017-05-24 10:15:12 +02002175 cpus_read_unlock();
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00002176}
2177EXPORT_SYMBOL(__cpuhp_remove_state);
2178
Arnd Bergmanndc8d37e2019-12-10 20:56:04 +01002179#ifdef CONFIG_HOTPLUG_SMT
2180static void cpuhp_offline_cpu_device(unsigned int cpu)
2181{
2182 struct device *dev = get_cpu_device(cpu);
2183
2184 dev->offline = true;
2185 /* Tell user space about the state change */
2186 kobject_uevent(&dev->kobj, KOBJ_OFFLINE);
2187}
2188
2189static void cpuhp_online_cpu_device(unsigned int cpu)
2190{
2191 struct device *dev = get_cpu_device(cpu);
2192
2193 dev->offline = false;
2194 /* Tell user space about the state change */
2195 kobject_uevent(&dev->kobj, KOBJ_ONLINE);
2196}
2197
2198int cpuhp_smt_disable(enum cpuhp_smt_control ctrlval)
2199{
2200 int cpu, ret = 0;
2201
2202 cpu_maps_update_begin();
2203 for_each_online_cpu(cpu) {
2204 if (topology_is_primary_thread(cpu))
2205 continue;
2206 ret = cpu_down_maps_locked(cpu, CPUHP_OFFLINE);
2207 if (ret)
2208 break;
2209 /*
2210 * As this needs to hold the cpu maps lock it's impossible
2211 * to call device_offline() because that ends up calling
2212 * cpu_down() which takes cpu maps lock. cpu maps lock
2213 * needs to be held as this might race against in kernel
2214 * abusers of the hotplug machinery (thermal management).
2215 *
2216 * So nothing would update device:offline state. That would
2217 * leave the sysfs entry stale and prevent onlining after
2218 * smt control has been changed to 'off' again. This is
2219 * called under the sysfs hotplug lock, so it is properly
2220 * serialized against the regular offline usage.
2221 */
2222 cpuhp_offline_cpu_device(cpu);
2223 }
2224 if (!ret)
2225 cpu_smt_control = ctrlval;
2226 cpu_maps_update_done();
2227 return ret;
2228}
2229
2230int cpuhp_smt_enable(void)
2231{
2232 int cpu, ret = 0;
2233
2234 cpu_maps_update_begin();
2235 cpu_smt_control = CPU_SMT_ENABLED;
2236 for_each_present_cpu(cpu) {
2237 /* Skip online CPUs and CPUs on offline nodes */
2238 if (cpu_online(cpu) || !node_online(cpu_to_node(cpu)))
2239 continue;
2240 ret = _cpu_up(cpu, 0, CPUHP_ONLINE);
2241 if (ret)
2242 break;
2243 /* See comment in cpuhp_smt_disable() */
2244 cpuhp_online_cpu_device(cpu);
2245 }
2246 cpu_maps_update_done();
2247 return ret;
2248}
2249#endif
2250
Thomas Gleixner98f8cdc2016-02-26 18:43:31 +00002251#if defined(CONFIG_SYSFS) && defined(CONFIG_HOTPLUG_CPU)
2252static ssize_t show_cpuhp_state(struct device *dev,
2253 struct device_attribute *attr, char *buf)
2254{
2255 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, dev->id);
2256
2257 return sprintf(buf, "%d\n", st->state);
2258}
2259static DEVICE_ATTR(state, 0444, show_cpuhp_state, NULL);
2260
Thomas Gleixner757c9892016-02-26 18:43:32 +00002261static ssize_t write_cpuhp_target(struct device *dev,
2262 struct device_attribute *attr,
2263 const char *buf, size_t count)
2264{
2265 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, dev->id);
2266 struct cpuhp_step *sp;
2267 int target, ret;
2268
2269 ret = kstrtoint(buf, 10, &target);
2270 if (ret)
2271 return ret;
2272
2273#ifdef CONFIG_CPU_HOTPLUG_STATE_CONTROL
2274 if (target < CPUHP_OFFLINE || target > CPUHP_ONLINE)
2275 return -EINVAL;
2276#else
2277 if (target != CPUHP_OFFLINE && target != CPUHP_ONLINE)
2278 return -EINVAL;
2279#endif
2280
2281 ret = lock_device_hotplug_sysfs();
2282 if (ret)
2283 return ret;
2284
2285 mutex_lock(&cpuhp_state_mutex);
2286 sp = cpuhp_get_step(target);
2287 ret = !sp->name || sp->cant_stop ? -EINVAL : 0;
2288 mutex_unlock(&cpuhp_state_mutex);
2289 if (ret)
Sebastian Andrzej Siewior40da1b12017-06-02 16:27:14 +02002290 goto out;
Thomas Gleixner757c9892016-02-26 18:43:32 +00002291
2292 if (st->state < target)
Qais Yousef33c37362020-03-23 13:51:10 +00002293 ret = cpu_up(dev->id, target);
Thomas Gleixner757c9892016-02-26 18:43:32 +00002294 else
Qais Yousef33c37362020-03-23 13:51:10 +00002295 ret = cpu_down(dev->id, target);
Sebastian Andrzej Siewior40da1b12017-06-02 16:27:14 +02002296out:
Thomas Gleixner757c9892016-02-26 18:43:32 +00002297 unlock_device_hotplug();
2298 return ret ? ret : count;
2299}
2300
Thomas Gleixner98f8cdc2016-02-26 18:43:31 +00002301static ssize_t show_cpuhp_target(struct device *dev,
2302 struct device_attribute *attr, char *buf)
2303{
2304 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, dev->id);
2305
2306 return sprintf(buf, "%d\n", st->target);
2307}
Thomas Gleixner757c9892016-02-26 18:43:32 +00002308static DEVICE_ATTR(target, 0644, show_cpuhp_target, write_cpuhp_target);
Thomas Gleixner98f8cdc2016-02-26 18:43:31 +00002309
Peter Zijlstra1db49482017-09-20 19:00:21 +02002310
2311static ssize_t write_cpuhp_fail(struct device *dev,
2312 struct device_attribute *attr,
2313 const char *buf, size_t count)
2314{
2315 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, dev->id);
2316 struct cpuhp_step *sp;
2317 int fail, ret;
2318
2319 ret = kstrtoint(buf, 10, &fail);
2320 if (ret)
2321 return ret;
2322
Vincent Donnefort3ae70c22021-02-16 10:35:04 +00002323 if (fail == CPUHP_INVALID) {
2324 st->fail = fail;
2325 return count;
2326 }
2327
Eiichi Tsukata33d4a5a2019-06-27 11:47:32 +09002328 if (fail < CPUHP_OFFLINE || fail > CPUHP_ONLINE)
2329 return -EINVAL;
2330
Peter Zijlstra1db49482017-09-20 19:00:21 +02002331 /*
2332 * Cannot fail STARTING/DYING callbacks.
2333 */
2334 if (cpuhp_is_atomic_state(fail))
2335 return -EINVAL;
2336
2337 /*
Vincent Donnefort62f25062021-02-16 10:35:05 +00002338 * DEAD callbacks cannot fail...
2339 * ... neither can CPUHP_BRINGUP_CPU during hotunplug. The latter
2340 * triggering STARTING callbacks, a failure in this state would
2341 * hinder rollback.
2342 */
2343 if (fail <= CPUHP_BRINGUP_CPU && st->state > CPUHP_BRINGUP_CPU)
2344 return -EINVAL;
2345
2346 /*
Peter Zijlstra1db49482017-09-20 19:00:21 +02002347 * Cannot fail anything that doesn't have callbacks.
2348 */
2349 mutex_lock(&cpuhp_state_mutex);
2350 sp = cpuhp_get_step(fail);
2351 if (!sp->startup.single && !sp->teardown.single)
2352 ret = -EINVAL;
2353 mutex_unlock(&cpuhp_state_mutex);
2354 if (ret)
2355 return ret;
2356
2357 st->fail = fail;
2358
2359 return count;
2360}
2361
2362static ssize_t show_cpuhp_fail(struct device *dev,
2363 struct device_attribute *attr, char *buf)
2364{
2365 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, dev->id);
2366
2367 return sprintf(buf, "%d\n", st->fail);
2368}
2369
2370static DEVICE_ATTR(fail, 0644, show_cpuhp_fail, write_cpuhp_fail);
2371
Thomas Gleixner98f8cdc2016-02-26 18:43:31 +00002372static struct attribute *cpuhp_cpu_attrs[] = {
2373 &dev_attr_state.attr,
2374 &dev_attr_target.attr,
Peter Zijlstra1db49482017-09-20 19:00:21 +02002375 &dev_attr_fail.attr,
Thomas Gleixner98f8cdc2016-02-26 18:43:31 +00002376 NULL
2377};
2378
Arvind Yadav993647a2017-06-29 17:40:47 +05302379static const struct attribute_group cpuhp_cpu_attr_group = {
Thomas Gleixner98f8cdc2016-02-26 18:43:31 +00002380 .attrs = cpuhp_cpu_attrs,
2381 .name = "hotplug",
2382 NULL
2383};
2384
2385static ssize_t show_cpuhp_states(struct device *dev,
2386 struct device_attribute *attr, char *buf)
2387{
2388 ssize_t cur, res = 0;
2389 int i;
2390
2391 mutex_lock(&cpuhp_state_mutex);
Thomas Gleixner757c9892016-02-26 18:43:32 +00002392 for (i = CPUHP_OFFLINE; i <= CPUHP_ONLINE; i++) {
Thomas Gleixner98f8cdc2016-02-26 18:43:31 +00002393 struct cpuhp_step *sp = cpuhp_get_step(i);
2394
2395 if (sp->name) {
2396 cur = sprintf(buf, "%3d: %s\n", i, sp->name);
2397 buf += cur;
2398 res += cur;
2399 }
2400 }
2401 mutex_unlock(&cpuhp_state_mutex);
2402 return res;
2403}
2404static DEVICE_ATTR(states, 0444, show_cpuhp_states, NULL);
2405
2406static struct attribute *cpuhp_cpu_root_attrs[] = {
2407 &dev_attr_states.attr,
2408 NULL
2409};
2410
Arvind Yadav993647a2017-06-29 17:40:47 +05302411static const struct attribute_group cpuhp_cpu_root_attr_group = {
Thomas Gleixner98f8cdc2016-02-26 18:43:31 +00002412 .attrs = cpuhp_cpu_root_attrs,
2413 .name = "hotplug",
2414 NULL
2415};
2416
Thomas Gleixner05736e42018-05-29 17:48:27 +02002417#ifdef CONFIG_HOTPLUG_SMT
2418
Thomas Gleixner05736e42018-05-29 17:48:27 +02002419static ssize_t
Josh Poimboeufde7b77e2019-03-27 07:00:29 -05002420__store_smt_control(struct device *dev, struct device_attribute *attr,
2421 const char *buf, size_t count)
Thomas Gleixner05736e42018-05-29 17:48:27 +02002422{
2423 int ctrlval, ret;
2424
2425 if (sysfs_streq(buf, "on"))
2426 ctrlval = CPU_SMT_ENABLED;
2427 else if (sysfs_streq(buf, "off"))
2428 ctrlval = CPU_SMT_DISABLED;
2429 else if (sysfs_streq(buf, "forceoff"))
2430 ctrlval = CPU_SMT_FORCE_DISABLED;
2431 else
2432 return -EINVAL;
2433
2434 if (cpu_smt_control == CPU_SMT_FORCE_DISABLED)
2435 return -EPERM;
2436
2437 if (cpu_smt_control == CPU_SMT_NOT_SUPPORTED)
2438 return -ENODEV;
2439
2440 ret = lock_device_hotplug_sysfs();
2441 if (ret)
2442 return ret;
2443
2444 if (ctrlval != cpu_smt_control) {
2445 switch (ctrlval) {
2446 case CPU_SMT_ENABLED:
Thomas Gleixner215af542018-07-07 11:40:18 +02002447 ret = cpuhp_smt_enable();
Thomas Gleixner05736e42018-05-29 17:48:27 +02002448 break;
2449 case CPU_SMT_DISABLED:
2450 case CPU_SMT_FORCE_DISABLED:
2451 ret = cpuhp_smt_disable(ctrlval);
2452 break;
2453 }
2454 }
2455
2456 unlock_device_hotplug();
2457 return ret ? ret : count;
2458}
Josh Poimboeufde7b77e2019-03-27 07:00:29 -05002459
2460#else /* !CONFIG_HOTPLUG_SMT */
2461static ssize_t
2462__store_smt_control(struct device *dev, struct device_attribute *attr,
2463 const char *buf, size_t count)
2464{
2465 return -ENODEV;
2466}
2467#endif /* CONFIG_HOTPLUG_SMT */
2468
2469static const char *smt_states[] = {
2470 [CPU_SMT_ENABLED] = "on",
2471 [CPU_SMT_DISABLED] = "off",
2472 [CPU_SMT_FORCE_DISABLED] = "forceoff",
2473 [CPU_SMT_NOT_SUPPORTED] = "notsupported",
2474 [CPU_SMT_NOT_IMPLEMENTED] = "notimplemented",
2475};
2476
2477static ssize_t
2478show_smt_control(struct device *dev, struct device_attribute *attr, char *buf)
2479{
2480 const char *state = smt_states[cpu_smt_control];
2481
2482 return snprintf(buf, PAGE_SIZE - 2, "%s\n", state);
2483}
2484
2485static ssize_t
2486store_smt_control(struct device *dev, struct device_attribute *attr,
2487 const char *buf, size_t count)
2488{
2489 return __store_smt_control(dev, attr, buf, count);
2490}
Thomas Gleixner05736e42018-05-29 17:48:27 +02002491static DEVICE_ATTR(control, 0644, show_smt_control, store_smt_control);
2492
2493static ssize_t
2494show_smt_active(struct device *dev, struct device_attribute *attr, char *buf)
2495{
Josh Poimboeufde7b77e2019-03-27 07:00:29 -05002496 return snprintf(buf, PAGE_SIZE - 2, "%d\n", sched_smt_active());
Thomas Gleixner05736e42018-05-29 17:48:27 +02002497}
2498static DEVICE_ATTR(active, 0444, show_smt_active, NULL);
2499
2500static struct attribute *cpuhp_smt_attrs[] = {
2501 &dev_attr_control.attr,
2502 &dev_attr_active.attr,
2503 NULL
2504};
2505
2506static const struct attribute_group cpuhp_smt_attr_group = {
2507 .attrs = cpuhp_smt_attrs,
2508 .name = "smt",
2509 NULL
2510};
2511
Josh Poimboeufde7b77e2019-03-27 07:00:29 -05002512static int __init cpu_smt_sysfs_init(void)
Thomas Gleixner05736e42018-05-29 17:48:27 +02002513{
Thomas Gleixner05736e42018-05-29 17:48:27 +02002514 return sysfs_create_group(&cpu_subsys.dev_root->kobj,
2515 &cpuhp_smt_attr_group);
2516}
2517
Thomas Gleixner98f8cdc2016-02-26 18:43:31 +00002518static int __init cpuhp_sysfs_init(void)
2519{
2520 int cpu, ret;
2521
Josh Poimboeufde7b77e2019-03-27 07:00:29 -05002522 ret = cpu_smt_sysfs_init();
Thomas Gleixner05736e42018-05-29 17:48:27 +02002523 if (ret)
2524 return ret;
2525
Thomas Gleixner98f8cdc2016-02-26 18:43:31 +00002526 ret = sysfs_create_group(&cpu_subsys.dev_root->kobj,
2527 &cpuhp_cpu_root_attr_group);
2528 if (ret)
2529 return ret;
2530
2531 for_each_possible_cpu(cpu) {
2532 struct device *dev = get_cpu_device(cpu);
2533
2534 if (!dev)
2535 continue;
2536 ret = sysfs_create_group(&dev->kobj, &cpuhp_cpu_attr_group);
2537 if (ret)
2538 return ret;
2539 }
2540 return 0;
2541}
2542device_initcall(cpuhp_sysfs_init);
Josh Poimboeufde7b77e2019-03-27 07:00:29 -05002543#endif /* CONFIG_SYSFS && CONFIG_HOTPLUG_CPU */
Thomas Gleixner98f8cdc2016-02-26 18:43:31 +00002544
Linus Torvaldse56b3bc2008-07-28 11:32:33 -07002545/*
2546 * cpu_bit_bitmap[] is a special, "compressed" data structure that
2547 * represents all NR_CPUS bits binary values of 1<<nr.
2548 *
Rusty Russelle0b582e2009-01-01 10:12:28 +10302549 * It is used by cpumask_of() to get a constant address to a CPU
Linus Torvaldse56b3bc2008-07-28 11:32:33 -07002550 * mask value that has a single bit set only.
2551 */
Mike Travisb8d317d2008-07-24 18:21:29 -07002552
Linus Torvaldse56b3bc2008-07-28 11:32:33 -07002553/* cpu_bit_bitmap[0] is empty - so we can back into it */
Michael Rodriguez4d519852011-03-22 16:34:07 -07002554#define MASK_DECLARE_1(x) [x+1][0] = (1UL << (x))
Linus Torvaldse56b3bc2008-07-28 11:32:33 -07002555#define MASK_DECLARE_2(x) MASK_DECLARE_1(x), MASK_DECLARE_1(x+1)
2556#define MASK_DECLARE_4(x) MASK_DECLARE_2(x), MASK_DECLARE_2(x+2)
2557#define MASK_DECLARE_8(x) MASK_DECLARE_4(x), MASK_DECLARE_4(x+4)
Mike Travisb8d317d2008-07-24 18:21:29 -07002558
Linus Torvaldse56b3bc2008-07-28 11:32:33 -07002559const unsigned long cpu_bit_bitmap[BITS_PER_LONG+1][BITS_TO_LONGS(NR_CPUS)] = {
Mike Travisb8d317d2008-07-24 18:21:29 -07002560
Linus Torvaldse56b3bc2008-07-28 11:32:33 -07002561 MASK_DECLARE_8(0), MASK_DECLARE_8(8),
2562 MASK_DECLARE_8(16), MASK_DECLARE_8(24),
2563#if BITS_PER_LONG > 32
2564 MASK_DECLARE_8(32), MASK_DECLARE_8(40),
2565 MASK_DECLARE_8(48), MASK_DECLARE_8(56),
Mike Travisb8d317d2008-07-24 18:21:29 -07002566#endif
2567};
Linus Torvaldse56b3bc2008-07-28 11:32:33 -07002568EXPORT_SYMBOL_GPL(cpu_bit_bitmap);
Rusty Russell2d3854a2008-11-05 13:39:10 +11002569
2570const DECLARE_BITMAP(cpu_all_bits, NR_CPUS) = CPU_BITS_ALL;
2571EXPORT_SYMBOL(cpu_all_bits);
Rusty Russellb3199c02008-12-30 09:05:14 +10302572
2573#ifdef CONFIG_INIT_ALL_POSSIBLE
Rasmus Villemoes4b804c82016-01-20 15:00:19 -08002574struct cpumask __cpu_possible_mask __read_mostly
Rasmus Villemoesc4c54dd2016-01-20 15:00:16 -08002575 = {CPU_BITS_ALL};
Rusty Russellb3199c02008-12-30 09:05:14 +10302576#else
Rasmus Villemoes4b804c82016-01-20 15:00:19 -08002577struct cpumask __cpu_possible_mask __read_mostly;
Rusty Russellb3199c02008-12-30 09:05:14 +10302578#endif
Rasmus Villemoes4b804c82016-01-20 15:00:19 -08002579EXPORT_SYMBOL(__cpu_possible_mask);
Rusty Russellb3199c02008-12-30 09:05:14 +10302580
Rasmus Villemoes4b804c82016-01-20 15:00:19 -08002581struct cpumask __cpu_online_mask __read_mostly;
2582EXPORT_SYMBOL(__cpu_online_mask);
Rusty Russellb3199c02008-12-30 09:05:14 +10302583
Rasmus Villemoes4b804c82016-01-20 15:00:19 -08002584struct cpumask __cpu_present_mask __read_mostly;
2585EXPORT_SYMBOL(__cpu_present_mask);
Rusty Russellb3199c02008-12-30 09:05:14 +10302586
Rasmus Villemoes4b804c82016-01-20 15:00:19 -08002587struct cpumask __cpu_active_mask __read_mostly;
2588EXPORT_SYMBOL(__cpu_active_mask);
Rusty Russell3fa41522008-12-30 09:05:16 +10302589
Peter Zijlstrae40f74c2021-01-19 18:43:45 +01002590struct cpumask __cpu_dying_mask __read_mostly;
2591EXPORT_SYMBOL(__cpu_dying_mask);
2592
Thomas Gleixner0c09ab92019-07-09 16:23:40 +02002593atomic_t __num_online_cpus __read_mostly;
2594EXPORT_SYMBOL(__num_online_cpus);
2595
Rusty Russell3fa41522008-12-30 09:05:16 +10302596void init_cpu_present(const struct cpumask *src)
2597{
Rasmus Villemoesc4c54dd2016-01-20 15:00:16 -08002598 cpumask_copy(&__cpu_present_mask, src);
Rusty Russell3fa41522008-12-30 09:05:16 +10302599}
2600
2601void init_cpu_possible(const struct cpumask *src)
2602{
Rasmus Villemoesc4c54dd2016-01-20 15:00:16 -08002603 cpumask_copy(&__cpu_possible_mask, src);
Rusty Russell3fa41522008-12-30 09:05:16 +10302604}
2605
2606void init_cpu_online(const struct cpumask *src)
2607{
Rasmus Villemoesc4c54dd2016-01-20 15:00:16 -08002608 cpumask_copy(&__cpu_online_mask, src);
Rusty Russell3fa41522008-12-30 09:05:16 +10302609}
Thomas Gleixnercff7d372016-02-26 18:43:28 +00002610
Thomas Gleixner0c09ab92019-07-09 16:23:40 +02002611void set_cpu_online(unsigned int cpu, bool online)
2612{
2613 /*
2614 * atomic_inc/dec() is required to handle the horrid abuse of this
2615 * function by the reboot and kexec code which invoke it from
2616 * IPI/NMI broadcasts when shutting down CPUs. Invocation from
2617 * regular CPU hotplug is properly serialized.
2618 *
2619 * Note, that the fact that __num_online_cpus is of type atomic_t
2620 * does not protect readers which are not serialized against
2621 * concurrent hotplug operations.
2622 */
2623 if (online) {
2624 if (!cpumask_test_and_set_cpu(cpu, &__cpu_online_mask))
2625 atomic_inc(&__num_online_cpus);
2626 } else {
2627 if (cpumask_test_and_clear_cpu(cpu, &__cpu_online_mask))
2628 atomic_dec(&__num_online_cpus);
2629 }
2630}
2631
Thomas Gleixnercff7d372016-02-26 18:43:28 +00002632/*
2633 * Activate the first processor.
2634 */
2635void __init boot_cpu_init(void)
2636{
2637 int cpu = smp_processor_id();
2638
2639 /* Mark the boot cpu "present", "online" etc for SMP and UP case */
2640 set_cpu_online(cpu, true);
2641 set_cpu_active(cpu, true);
2642 set_cpu_present(cpu, true);
2643 set_cpu_possible(cpu, true);
Peter Zijlstra8ce371f2017-03-20 12:26:55 +01002644
2645#ifdef CONFIG_SMP
2646 __boot_cpu_id = cpu;
2647#endif
Thomas Gleixnercff7d372016-02-26 18:43:28 +00002648}
2649
2650/*
2651 * Must be called _AFTER_ setting up the per_cpu areas
2652 */
Linus Torvaldsb5b14042018-08-12 12:19:42 -07002653void __init boot_cpu_hotplug_init(void)
Thomas Gleixnercff7d372016-02-26 18:43:28 +00002654{
Abel Vesa269777a2018-08-15 00:26:00 +03002655#ifdef CONFIG_SMP
Thomas Gleixnere797bda2019-07-22 20:47:16 +02002656 cpumask_set_cpu(smp_processor_id(), &cpus_booted_once_mask);
Abel Vesa269777a2018-08-15 00:26:00 +03002657#endif
Thomas Gleixner0cc3cd22018-06-29 16:05:48 +02002658 this_cpu_write(cpuhp_state.state, CPUHP_ONLINE);
Thomas Gleixnercff7d372016-02-26 18:43:28 +00002659}
Josh Poimboeuf98af8452019-04-12 15:39:28 -05002660
Tyler Hicks731dc9d2019-11-04 12:22:02 +01002661/*
2662 * These are used for a global "mitigations=" cmdline option for toggling
2663 * optional CPU mitigations.
2664 */
2665enum cpu_mitigations {
2666 CPU_MITIGATIONS_OFF,
2667 CPU_MITIGATIONS_AUTO,
2668 CPU_MITIGATIONS_AUTO_NOSMT,
2669};
2670
2671static enum cpu_mitigations cpu_mitigations __ro_after_init =
2672 CPU_MITIGATIONS_AUTO;
Josh Poimboeuf98af8452019-04-12 15:39:28 -05002673
2674static int __init mitigations_parse_cmdline(char *arg)
2675{
2676 if (!strcmp(arg, "off"))
2677 cpu_mitigations = CPU_MITIGATIONS_OFF;
2678 else if (!strcmp(arg, "auto"))
2679 cpu_mitigations = CPU_MITIGATIONS_AUTO;
2680 else if (!strcmp(arg, "auto,nosmt"))
2681 cpu_mitigations = CPU_MITIGATIONS_AUTO_NOSMT;
Geert Uytterhoeven1bf72722019-05-16 09:09:35 +02002682 else
2683 pr_crit("Unsupported mitigations=%s, system may still be vulnerable\n",
2684 arg);
Josh Poimboeuf98af8452019-04-12 15:39:28 -05002685
2686 return 0;
2687}
2688early_param("mitigations", mitigations_parse_cmdline);
Tyler Hicks731dc9d2019-11-04 12:22:02 +01002689
2690/* mitigations=off */
2691bool cpu_mitigations_off(void)
2692{
2693 return cpu_mitigations == CPU_MITIGATIONS_OFF;
2694}
2695EXPORT_SYMBOL_GPL(cpu_mitigations_off);
2696
2697/* mitigations=auto,nosmt */
2698bool cpu_mitigations_auto_nosmt(void)
2699{
2700 return cpu_mitigations == CPU_MITIGATIONS_AUTO_NOSMT;
2701}
2702EXPORT_SYMBOL_GPL(cpu_mitigations_auto_nosmt);