blob: 192e43a874076d80c8bfa30df88ad94654ead5e6 [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) {
Dongli Zhangebca71a2021-04-08 22:53:16 -0700695 pr_debug("CPU UP failed (%d) CPU %u state %s (%d)\n",
696 ret, cpu, cpuhp_get_step(st->state)->name,
697 st->state);
698
Vincent Donnefort453e4102021-02-16 10:35:06 +0000699 cpuhp_reset_state(st, prev_state);
700 if (can_rollback_cpu(st))
701 WARN_ON(cpuhp_invoke_callback_range(false, cpu, st,
702 prev_state));
Thomas Gleixner2e1a3482016-02-26 18:43:37 +0000703 }
704 return ret;
705}
706
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000707/*
708 * The cpu hotplug threads manage the bringup and teardown of the cpus
709 */
710static void cpuhp_create(unsigned int cpu)
711{
712 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
713
Peter Zijlstra5ebe7742017-09-20 19:00:19 +0200714 init_completion(&st->done_up);
715 init_completion(&st->done_down);
Peter Zijlstra2ea46c62021-04-20 20:04:19 +0200716 st->cpu = cpu;
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000717}
718
719static int cpuhp_should_run(unsigned int cpu)
720{
721 struct cpuhp_cpu_state *st = this_cpu_ptr(&cpuhp_state);
722
723 return st->should_run;
724}
725
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000726/*
727 * Execute teardown/startup callbacks on the plugged cpu. Also used to invoke
728 * callbacks when a state gets [un]installed at runtime.
Peter Zijlstra4dddfb52017-09-20 19:00:17 +0200729 *
730 * Each invocation of this function by the smpboot thread does a single AP
731 * state callback.
732 *
733 * It has 3 modes of operation:
734 * - single: runs st->cb_state
735 * - up: runs ++st->state, while st->state < st->target
736 * - down: runs st->state--, while st->state > st->target
737 *
738 * When complete or on error, should_run is cleared and the completion is fired.
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000739 */
740static void cpuhp_thread_fun(unsigned int cpu)
741{
742 struct cpuhp_cpu_state *st = this_cpu_ptr(&cpuhp_state);
Peter Zijlstra4dddfb52017-09-20 19:00:17 +0200743 bool bringup = st->bringup;
744 enum cpuhp_state state;
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000745
Neeraj Upadhyayf8b75302018-09-05 11:22:07 +0530746 if (WARN_ON_ONCE(!st->should_run))
747 return;
748
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000749 /*
Peter Zijlstra4dddfb52017-09-20 19:00:17 +0200750 * ACQUIRE for the cpuhp_should_run() load of ->should_run. Ensures
751 * that if we see ->should_run we also see the rest of the state.
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000752 */
753 smp_mb();
Peter Zijlstra4dddfb52017-09-20 19:00:17 +0200754
Peter Zijlstracb921732018-09-11 11:51:27 +0200755 /*
756 * The BP holds the hotplug lock, but we're now running on the AP,
757 * ensure that anybody asserting the lock is held, will actually find
758 * it so.
759 */
760 lockdep_acquire_cpus_lock();
Peter Zijlstra5f4b55e2017-09-20 19:00:20 +0200761 cpuhp_lock_acquire(bringup);
Peter Zijlstra4dddfb52017-09-20 19:00:17 +0200762
Thomas Gleixnera7246322016-08-12 19:49:38 +0200763 if (st->single) {
Peter Zijlstra4dddfb52017-09-20 19:00:17 +0200764 state = st->cb_state;
765 st->should_run = false;
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000766 } else {
Vincent Donnefort453e4102021-02-16 10:35:06 +0000767 st->should_run = cpuhp_next_state(bringup, &state, st, st->target);
768 if (!st->should_run)
769 goto end;
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000770 }
Peter Zijlstra4dddfb52017-09-20 19:00:17 +0200771
772 WARN_ON_ONCE(!cpuhp_is_ap_state(state));
773
Peter Zijlstra4dddfb52017-09-20 19:00:17 +0200774 if (cpuhp_is_atomic_state(state)) {
775 local_irq_disable();
776 st->result = cpuhp_invoke_callback(cpu, state, bringup, st->node, &st->last);
777 local_irq_enable();
778
779 /*
780 * STARTING/DYING must not fail!
781 */
782 WARN_ON_ONCE(st->result);
783 } else {
784 st->result = cpuhp_invoke_callback(cpu, state, bringup, st->node, &st->last);
785 }
786
787 if (st->result) {
788 /*
789 * If we fail on a rollback, we're up a creek without no
790 * paddle, no way forward, no way back. We loose, thanks for
791 * playing.
792 */
793 WARN_ON_ONCE(st->rollback);
794 st->should_run = false;
795 }
796
Vincent Donnefort453e4102021-02-16 10:35:06 +0000797end:
Peter Zijlstra5f4b55e2017-09-20 19:00:20 +0200798 cpuhp_lock_release(bringup);
Peter Zijlstracb921732018-09-11 11:51:27 +0200799 lockdep_release_cpus_lock();
Peter Zijlstra4dddfb52017-09-20 19:00:17 +0200800
801 if (!st->should_run)
Peter Zijlstra5ebe7742017-09-20 19:00:19 +0200802 complete_ap_thread(st, bringup);
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000803}
804
805/* Invoke a single callback on a remote cpu */
Thomas Gleixnera7246322016-08-12 19:49:38 +0200806static int
Thomas Gleixnercf392d12016-08-12 19:49:39 +0200807cpuhp_invoke_ap_callback(int cpu, enum cpuhp_state state, bool bringup,
808 struct hlist_node *node)
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000809{
810 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
Peter Zijlstra4dddfb52017-09-20 19:00:17 +0200811 int ret;
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000812
813 if (!cpu_online(cpu))
814 return 0;
815
Peter Zijlstra5f4b55e2017-09-20 19:00:20 +0200816 cpuhp_lock_acquire(false);
817 cpuhp_lock_release(false);
818
819 cpuhp_lock_acquire(true);
820 cpuhp_lock_release(true);
Thomas Gleixner49dfe2a2017-05-24 10:15:43 +0200821
Thomas Gleixner6a4e2452016-07-13 17:16:03 +0000822 /*
823 * If we are up and running, use the hotplug thread. For early calls
824 * we invoke the thread function directly.
825 */
826 if (!st->thread)
Peter Zijlstra96abb962017-09-20 19:00:16 +0200827 return cpuhp_invoke_callback(cpu, state, bringup, node, NULL);
Thomas Gleixner6a4e2452016-07-13 17:16:03 +0000828
Peter Zijlstra4dddfb52017-09-20 19:00:17 +0200829 st->rollback = false;
830 st->last = NULL;
831
832 st->node = node;
833 st->bringup = bringup;
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000834 st->cb_state = state;
Thomas Gleixnera7246322016-08-12 19:49:38 +0200835 st->single = true;
Peter Zijlstra4dddfb52017-09-20 19:00:17 +0200836
837 __cpuhp_kick_ap(st);
Thomas Gleixnera7246322016-08-12 19:49:38 +0200838
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000839 /*
Peter Zijlstra4dddfb52017-09-20 19:00:17 +0200840 * If we failed and did a partial, do a rollback.
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000841 */
Peter Zijlstra4dddfb52017-09-20 19:00:17 +0200842 if ((ret = st->result) && st->last) {
843 st->rollback = true;
844 st->bringup = !bringup;
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000845
Peter Zijlstra4dddfb52017-09-20 19:00:17 +0200846 __cpuhp_kick_ap(st);
847 }
848
Thomas Gleixner1f7c70d2017-10-21 16:06:52 +0200849 /*
850 * Clean up the leftovers so the next hotplug operation wont use stale
851 * data.
852 */
853 st->node = st->last = NULL;
Peter Zijlstra4dddfb52017-09-20 19:00:17 +0200854 return ret;
Thomas Gleixner1cf4f622016-02-26 18:43:39 +0000855}
856
857static int cpuhp_kick_ap_work(unsigned int cpu)
858{
859 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
Peter Zijlstra4dddfb52017-09-20 19:00:17 +0200860 enum cpuhp_state prev_state = st->state;
861 int ret;
Thomas Gleixner1cf4f622016-02-26 18:43:39 +0000862
Peter Zijlstra5f4b55e2017-09-20 19:00:20 +0200863 cpuhp_lock_acquire(false);
864 cpuhp_lock_release(false);
865
866 cpuhp_lock_acquire(true);
867 cpuhp_lock_release(true);
Peter Zijlstra4dddfb52017-09-20 19:00:17 +0200868
869 trace_cpuhp_enter(cpu, st->target, prev_state, cpuhp_kick_ap_work);
870 ret = cpuhp_kick_ap(st, st->target);
871 trace_cpuhp_exit(cpu, st->state, prev_state, ret);
872
873 return ret;
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000874}
875
876static struct smp_hotplug_thread cpuhp_threads = {
877 .store = &cpuhp_state.thread,
878 .create = &cpuhp_create,
879 .thread_should_run = cpuhp_should_run,
880 .thread_fn = cpuhp_thread_fun,
881 .thread_comm = "cpuhp/%u",
882 .selfparking = true,
883};
884
885void __init cpuhp_threads_init(void)
886{
887 BUG_ON(smpboot_register_percpu_thread(&cpuhp_threads));
888 kthread_unpark(this_cpu_read(cpuhp_state.thread));
889}
890
Thomas Gleixnerb22afcd2021-03-27 22:01:36 +0100891/*
892 *
893 * Serialize hotplug trainwrecks outside of the cpu_hotplug_lock
894 * protected region.
895 *
896 * The operation is still serialized against concurrent CPU hotplug via
897 * cpu_add_remove_lock, i.e. CPU map protection. But it is _not_
898 * serialized against other hotplug related activity like adding or
899 * removing of state callbacks and state instances, which invoke either the
900 * startup or the teardown callback of the affected state.
901 *
902 * This is required for subsystems which are unfixable vs. CPU hotplug and
903 * evade lock inversion problems by scheduling work which has to be
904 * completed _before_ cpu_up()/_cpu_down() returns.
905 *
906 * Don't even think about adding anything to this for any new code or even
907 * drivers. It's only purpose is to keep existing lock order trainwrecks
908 * working.
909 *
910 * For cpu_down() there might be valid reasons to finish cleanups which are
911 * not required to be done under cpu_hotplug_lock, but that's a different
912 * story and would be not invoked via this.
913 */
914static void cpu_up_down_serialize_trainwrecks(bool tasks_frozen)
915{
916 /*
917 * cpusets delegate hotplug operations to a worker to "solve" the
918 * lock order problems. Wait for the worker, but only if tasks are
919 * _not_ frozen (suspend, hibernate) as that would wait forever.
920 *
921 * The wait is required because otherwise the hotplug operation
922 * returns with inconsistent state, which could even be observed in
923 * user space when a new CPU is brought up. The CPU plug uevent
924 * would be delivered and user space reacting on it would fail to
925 * move tasks to the newly plugged CPU up to the point where the
926 * work has finished because up to that point the newly plugged CPU
927 * is not assignable in cpusets/cgroups. On unplug that's not
928 * necessarily a visible issue, but it is still inconsistent state,
929 * which is the real problem which needs to be "fixed". This can't
930 * prevent the transient state between scheduling the work and
931 * returning from waiting for it.
932 */
933 if (!tasks_frozen)
934 cpuset_wait_for_hotplug();
935}
936
Michal Hocko777c6e02016-12-07 14:54:38 +0100937#ifdef CONFIG_HOTPLUG_CPU
Nicholas Piggin8ff00392020-11-26 20:25:29 +1000938#ifndef arch_clear_mm_cpumask_cpu
939#define arch_clear_mm_cpumask_cpu(cpu, mm) cpumask_clear_cpu(cpu, mm_cpumask(mm))
940#endif
941
Anton Vorontsove4cc2f82012-05-31 16:26:26 -0700942/**
943 * clear_tasks_mm_cpumask - Safely clear tasks' mm_cpumask for a CPU
944 * @cpu: a CPU id
945 *
946 * This function walks all processes, finds a valid mm struct for each one and
947 * then clears a corresponding bit in mm's cpumask. While this all sounds
948 * trivial, there are various non-obvious corner cases, which this function
949 * tries to solve in a safe manner.
950 *
951 * Also note that the function uses a somewhat relaxed locking scheme, so it may
952 * be called only for an already offlined CPU.
953 */
Anton Vorontsovcb792952012-05-31 16:26:22 -0700954void clear_tasks_mm_cpumask(int cpu)
955{
956 struct task_struct *p;
957
958 /*
959 * This function is called after the cpu is taken down and marked
960 * offline, so its not like new tasks will ever get this cpu set in
961 * their mm mask. -- Peter Zijlstra
962 * Thus, we may use rcu_read_lock() here, instead of grabbing
963 * full-fledged tasklist_lock.
964 */
Anton Vorontsove4cc2f82012-05-31 16:26:26 -0700965 WARN_ON(cpu_online(cpu));
Anton Vorontsovcb792952012-05-31 16:26:22 -0700966 rcu_read_lock();
967 for_each_process(p) {
968 struct task_struct *t;
969
Anton Vorontsove4cc2f82012-05-31 16:26:26 -0700970 /*
971 * Main thread might exit, but other threads may still have
972 * a valid mm. Find one.
973 */
Anton Vorontsovcb792952012-05-31 16:26:22 -0700974 t = find_lock_task_mm(p);
975 if (!t)
976 continue;
Nicholas Piggin8ff00392020-11-26 20:25:29 +1000977 arch_clear_mm_cpumask_cpu(cpu, t->mm);
Anton Vorontsovcb792952012-05-31 16:26:22 -0700978 task_unlock(t);
979 }
980 rcu_read_unlock();
981}
982
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983/* Take this CPU down. */
Mathias Krause71cf5ae2015-07-19 20:06:22 +0200984static int take_cpu_down(void *_param)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985{
Thomas Gleixner4baa0af2016-02-26 18:43:29 +0000986 struct cpuhp_cpu_state *st = this_cpu_ptr(&cpuhp_state);
987 enum cpuhp_state target = max((int)st->target, CPUHP_AP_OFFLINE);
Thomas Gleixner090e77c2016-02-26 18:43:23 +0000988 int err, cpu = smp_processor_id();
Peter Zijlstra724a8682017-09-20 19:00:18 +0200989 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 /* Ensure this CPU doesn't handle any more interrupts. */
992 err = __cpu_disable();
993 if (err < 0)
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700994 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
Thomas Gleixnera7246322016-08-12 19:49:38 +0200996 /*
Vincent Donnefort453e4102021-02-16 10:35:06 +0000997 * Must be called from CPUHP_TEARDOWN_CPU, which means, as we are going
998 * down, that the current state is CPUHP_TEARDOWN_CPU - 1.
Thomas Gleixnera7246322016-08-12 19:49:38 +0200999 */
Vincent Donnefort453e4102021-02-16 10:35:06 +00001000 WARN_ON(st->state != (CPUHP_TEARDOWN_CPU - 1));
1001
Thomas Gleixner4baa0af2016-02-26 18:43:29 +00001002 /* Invoke the former CPU_DYING callbacks */
Vincent Donnefort453e4102021-02-16 10:35:06 +00001003 ret = cpuhp_invoke_callback_range(false, cpu, st, target);
1004
1005 /*
1006 * DYING must not fail!
1007 */
1008 WARN_ON_ONCE(ret);
Thomas Gleixner4baa0af2016-02-26 18:43:29 +00001009
Thomas Gleixner52c063d2015-04-03 02:37:24 +02001010 /* Give up timekeeping duties */
1011 tick_handover_do_timer();
Thomas Gleixner1b72d432019-03-21 16:39:20 +01001012 /* Remove CPU from timer broadcasting */
1013 tick_offline_cpu(cpu);
Thomas Gleixner14e568e2013-01-31 12:11:14 +00001014 /* Park the stopper thread */
Thomas Gleixner090e77c2016-02-26 18:43:23 +00001015 stop_machine_park(cpu);
Zwane Mwaikambof3705132005-06-25 14:54:50 -07001016 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017}
1018
Thomas Gleixner98458172016-02-26 18:43:25 +00001019static int takedown_cpu(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020{
Thomas Gleixnere69aab12016-02-26 18:43:43 +00001021 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
Thomas Gleixner98458172016-02-26 18:43:25 +00001022 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
Thomas Gleixner2a58c522016-03-10 20:42:08 +01001024 /* Park the smpboot threads */
Yuan ZhaoXiong13070832021-05-23 21:31:30 +08001025 kthread_park(st->thread);
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001026
Peter Zijlstra6acce3e2013-10-11 14:38:20 +02001027 /*
Thomas Gleixnera8994182015-07-05 17:12:30 +00001028 * Prevent irq alloc/free while the dying cpu reorganizes the
1029 * interrupt affinities.
1030 */
1031 irq_lock_sparse();
1032
1033 /*
Peter Zijlstra6acce3e2013-10-11 14:38:20 +02001034 * So now all preempt/rcu users must observe !cpu_active().
1035 */
Sebastian Andrzej Siewior210e2132017-05-24 10:15:28 +02001036 err = stop_machine_cpuslocked(take_cpu_down, NULL, cpumask_of(cpu));
Rusty Russell04321582008-07-28 12:16:29 -05001037 if (err) {
Sebastian Andrzej Siewior3b9d6da2016-04-08 14:40:15 +02001038 /* CPU refused to die */
Thomas Gleixnera8994182015-07-05 17:12:30 +00001039 irq_unlock_sparse();
Sebastian Andrzej Siewior3b9d6da2016-04-08 14:40:15 +02001040 /* Unpark the hotplug thread so we can rollback there */
Yuan ZhaoXiong13070832021-05-23 21:31:30 +08001041 kthread_unpark(st->thread);
Thomas Gleixner98458172016-02-26 18:43:25 +00001042 return err;
Satoru Takeuchi8fa1d7d2006-10-28 10:38:57 -07001043 }
Rusty Russell04321582008-07-28 12:16:29 -05001044 BUG_ON(cpu_online(cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045
Peter Zijlstra48c5ccae2010-11-13 19:32:29 +01001046 /*
Brendan Jackman5b1ead62017-12-06 10:59:11 +00001047 * The teardown callback for CPUHP_AP_SCHED_STARTING will have removed
1048 * all runnable tasks from the CPU, there's only the idle task left now
Peter Zijlstra48c5ccae2010-11-13 19:32:29 +01001049 * that the migration thread is done doing the stop_machine thing.
Peter Zijlstra51a96c72010-11-19 20:37:53 +01001050 *
1051 * Wait for the stop thread to go away.
Peter Zijlstra48c5ccae2010-11-13 19:32:29 +01001052 */
Peter Zijlstra5ebe7742017-09-20 19:00:19 +02001053 wait_for_ap_thread(st, false);
Thomas Gleixnere69aab12016-02-26 18:43:43 +00001054 BUG_ON(st->state != CPUHP_AP_IDLE_DEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055
Thomas Gleixnera8994182015-07-05 17:12:30 +00001056 /* Interrupts are moved away from the dying cpu, reenable alloc/free */
1057 irq_unlock_sparse();
1058
Preeti U Murthy345527b2015-03-30 14:59:19 +05301059 hotplug_cpu__broadcast_tick_pull(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 /* This actually kills the CPU. */
1061 __cpu_die(cpu);
1062
Thomas Gleixnera49b1162015-04-03 02:38:05 +02001063 tick_cleanup_dead_cpu(cpu);
Paul E. McKenneya58163d2017-06-20 12:11:34 -07001064 rcutree_migrate_callbacks(cpu);
Thomas Gleixner98458172016-02-26 18:43:25 +00001065 return 0;
1066}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067
Thomas Gleixner71f87b22016-03-03 10:52:10 +01001068static void cpuhp_complete_idle_dead(void *arg)
1069{
1070 struct cpuhp_cpu_state *st = arg;
1071
Peter Zijlstra5ebe7742017-09-20 19:00:19 +02001072 complete_ap_thread(st, false);
Thomas Gleixner71f87b22016-03-03 10:52:10 +01001073}
1074
Thomas Gleixnere69aab12016-02-26 18:43:43 +00001075void cpuhp_report_idle_dead(void)
1076{
1077 struct cpuhp_cpu_state *st = this_cpu_ptr(&cpuhp_state);
1078
1079 BUG_ON(st->state != CPUHP_AP_OFFLINE);
Thomas Gleixner27d50c72016-02-26 18:43:44 +00001080 rcu_report_dead(smp_processor_id());
Thomas Gleixner71f87b22016-03-03 10:52:10 +01001081 st->state = CPUHP_AP_IDLE_DEAD;
1082 /*
1083 * We cannot call complete after rcu_report_dead() so we delegate it
1084 * to an online cpu.
1085 */
1086 smp_call_function_single(cpumask_first(cpu_online_mask),
1087 cpuhp_complete_idle_dead, st, 0);
Thomas Gleixnere69aab12016-02-26 18:43:43 +00001088}
1089
Peter Zijlstra4dddfb52017-09-20 19:00:17 +02001090static int cpuhp_down_callbacks(unsigned int cpu, struct cpuhp_cpu_state *st,
1091 enum cpuhp_state target)
1092{
1093 enum cpuhp_state prev_state = st->state;
1094 int ret = 0;
1095
Vincent Donnefort453e4102021-02-16 10:35:06 +00001096 ret = cpuhp_invoke_callback_range(false, cpu, st, target);
1097 if (ret) {
Dongli Zhangebca71a2021-04-08 22:53:16 -07001098 pr_debug("CPU DOWN failed (%d) CPU %u state %s (%d)\n",
1099 ret, cpu, cpuhp_get_step(st->state)->name,
1100 st->state);
Vincent Donnefort453e4102021-02-16 10:35:06 +00001101
1102 cpuhp_reset_state(st, prev_state);
1103
1104 if (st->state < prev_state)
1105 WARN_ON(cpuhp_invoke_callback_range(true, cpu, st,
1106 prev_state));
Peter Zijlstra4dddfb52017-09-20 19:00:17 +02001107 }
Vincent Donnefort453e4102021-02-16 10:35:06 +00001108
Peter Zijlstra4dddfb52017-09-20 19:00:17 +02001109 return ret;
1110}
Thomas Gleixnercff7d372016-02-26 18:43:28 +00001111
Thomas Gleixner98458172016-02-26 18:43:25 +00001112/* Requires cpu_add_remove_lock to be held */
Thomas Gleixneraf1f4042016-02-26 18:43:30 +00001113static int __ref _cpu_down(unsigned int cpu, int tasks_frozen,
1114 enum cpuhp_state target)
Thomas Gleixner98458172016-02-26 18:43:25 +00001115{
Thomas Gleixnercff7d372016-02-26 18:43:28 +00001116 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
1117 int prev_state, ret = 0;
Thomas Gleixner98458172016-02-26 18:43:25 +00001118
1119 if (num_online_cpus() == 1)
1120 return -EBUSY;
1121
Thomas Gleixner757c9892016-02-26 18:43:32 +00001122 if (!cpu_present(cpu))
Thomas Gleixner98458172016-02-26 18:43:25 +00001123 return -EINVAL;
1124
Thomas Gleixner8f553c42017-05-24 10:15:12 +02001125 cpus_write_lock();
Thomas Gleixner98458172016-02-26 18:43:25 +00001126
1127 cpuhp_tasks_frozen = tasks_frozen;
1128
Peter Zijlstra4dddfb52017-09-20 19:00:17 +02001129 prev_state = cpuhp_set_state(st, target);
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001130 /*
1131 * If the current CPU state is in the range of the AP hotplug thread,
1132 * then we need to kick the thread.
1133 */
Thomas Gleixner8df3e072016-02-26 18:43:41 +00001134 if (st->state > CPUHP_TEARDOWN_CPU) {
Peter Zijlstra4dddfb52017-09-20 19:00:17 +02001135 st->target = max((int)target, CPUHP_TEARDOWN_CPU);
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001136 ret = cpuhp_kick_ap_work(cpu);
1137 /*
1138 * The AP side has done the error rollback already. Just
1139 * return the error code..
1140 */
1141 if (ret)
1142 goto out;
1143
1144 /*
1145 * We might have stopped still in the range of the AP hotplug
1146 * thread. Nothing to do anymore.
1147 */
Thomas Gleixner8df3e072016-02-26 18:43:41 +00001148 if (st->state > CPUHP_TEARDOWN_CPU)
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001149 goto out;
Peter Zijlstra4dddfb52017-09-20 19:00:17 +02001150
1151 st->target = target;
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001152 }
1153 /*
Thomas Gleixner8df3e072016-02-26 18:43:41 +00001154 * The AP brought itself down to CPUHP_TEARDOWN_CPU. So we need
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001155 * to do the further cleanups.
1156 */
Thomas Gleixnera7246322016-08-12 19:49:38 +02001157 ret = cpuhp_down_callbacks(cpu, st, target);
Vincent Donnefort62f25062021-02-16 10:35:05 +00001158 if (ret && st->state < prev_state) {
1159 if (st->state == CPUHP_TEARDOWN_CPU) {
1160 cpuhp_reset_state(st, prev_state);
1161 __cpuhp_kick_ap(st);
1162 } else {
1163 WARN(1, "DEAD callback error for CPU%d", cpu);
1164 }
Sebastian Andrzej Siewior3b9d6da2016-04-08 14:40:15 +02001165 }
Thomas Gleixner98458172016-02-26 18:43:25 +00001166
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001167out:
Thomas Gleixner8f553c42017-05-24 10:15:12 +02001168 cpus_write_unlock();
Thomas Gleixner941154b2017-09-12 21:37:04 +02001169 /*
1170 * Do post unplug cleanup. This is still protected against
1171 * concurrent CPU hotplug via cpu_add_remove_lock.
1172 */
1173 lockup_detector_cleanup();
Thomas Gleixnera74cfff2018-11-25 19:33:39 +01001174 arch_smt_update();
Thomas Gleixnerb22afcd2021-03-27 22:01:36 +01001175 cpu_up_down_serialize_trainwrecks(tasks_frozen);
Thomas Gleixnercff7d372016-02-26 18:43:28 +00001176 return ret;
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001177}
1178
Thomas Gleixnercc1fe212018-05-29 17:49:05 +02001179static int cpu_down_maps_locked(unsigned int cpu, enum cpuhp_state target)
1180{
1181 if (cpu_hotplug_disabled)
1182 return -EBUSY;
1183 return _cpu_down(cpu, 0, target);
1184}
1185
Qais Yousef33c37362020-03-23 13:51:10 +00001186static int cpu_down(unsigned int cpu, enum cpuhp_state target)
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001187{
Heiko Carstens9ea09af2008-12-22 12:36:30 +01001188 int err;
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001189
Gautham R Shenoyd2219382008-01-25 21:08:01 +01001190 cpu_maps_update_begin();
Thomas Gleixnercc1fe212018-05-29 17:49:05 +02001191 err = cpu_down_maps_locked(cpu, target);
Gautham R Shenoyd2219382008-01-25 21:08:01 +01001192 cpu_maps_update_done();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 return err;
1194}
Peter Zijlstra4dddfb52017-09-20 19:00:17 +02001195
Qais Yousef33c37362020-03-23 13:51:10 +00001196/**
1197 * cpu_device_down - Bring down a cpu device
1198 * @dev: Pointer to the cpu device to offline
1199 *
1200 * This function is meant to be used by device core cpu subsystem only.
1201 *
1202 * Other subsystems should use remove_cpu() instead.
Randy Dunlap11bc0212021-08-09 15:38:25 -07001203 *
1204 * Return: %0 on success or a negative errno code
Qais Yousef33c37362020-03-23 13:51:10 +00001205 */
1206int cpu_device_down(struct device *dev)
Thomas Gleixneraf1f4042016-02-26 18:43:30 +00001207{
Qais Yousef33c37362020-03-23 13:51:10 +00001208 return cpu_down(dev->id, CPUHP_OFFLINE);
Thomas Gleixneraf1f4042016-02-26 18:43:30 +00001209}
Peter Zijlstra4dddfb52017-09-20 19:00:17 +02001210
Qais Yousef93ef1422020-03-23 13:50:54 +00001211int remove_cpu(unsigned int cpu)
1212{
1213 int ret;
1214
1215 lock_device_hotplug();
1216 ret = device_offline(get_cpu_device(cpu));
1217 unlock_device_hotplug();
1218
1219 return ret;
1220}
1221EXPORT_SYMBOL_GPL(remove_cpu);
1222
Qais Yousef0441a552020-03-23 13:50:55 +00001223void smp_shutdown_nonboot_cpus(unsigned int primary_cpu)
1224{
1225 unsigned int cpu;
1226 int error;
1227
1228 cpu_maps_update_begin();
1229
1230 /*
1231 * Make certain the cpu I'm about to reboot on is online.
1232 *
1233 * This is inline to what migrate_to_reboot_cpu() already do.
1234 */
1235 if (!cpu_online(primary_cpu))
1236 primary_cpu = cpumask_first(cpu_online_mask);
1237
1238 for_each_online_cpu(cpu) {
1239 if (cpu == primary_cpu)
1240 continue;
1241
1242 error = cpu_down_maps_locked(cpu, CPUHP_OFFLINE);
1243 if (error) {
1244 pr_err("Failed to offline CPU%d - error=%d",
1245 cpu, error);
1246 break;
1247 }
1248 }
1249
1250 /*
1251 * Ensure all but the reboot CPU are offline.
1252 */
1253 BUG_ON(num_online_cpus() > 1);
1254
1255 /*
1256 * Make sure the CPUs won't be enabled by someone else after this
1257 * point. Kexec will reboot to a new kernel shortly resetting
1258 * everything along the way.
1259 */
1260 cpu_hotplug_disabled++;
1261
1262 cpu_maps_update_done();
1263}
Peter Zijlstra4dddfb52017-09-20 19:00:17 +02001264
1265#else
1266#define takedown_cpu NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267#endif /*CONFIG_HOTPLUG_CPU*/
1268
Thomas Gleixner4baa0af2016-02-26 18:43:29 +00001269/**
Thomas Gleixneree1e7142016-08-18 14:57:16 +02001270 * notify_cpu_starting(cpu) - Invoke the callbacks on the starting CPU
Thomas Gleixner4baa0af2016-02-26 18:43:29 +00001271 * @cpu: cpu that just started
1272 *
Thomas Gleixner4baa0af2016-02-26 18:43:29 +00001273 * It must be called by the arch code on the new cpu, before the new cpu
1274 * enables interrupts and before the "boot" cpu returns from __cpu_up().
1275 */
1276void notify_cpu_starting(unsigned int cpu)
1277{
1278 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
1279 enum cpuhp_state target = min((int)st->target, CPUHP_AP_ONLINE);
Peter Zijlstra724a8682017-09-20 19:00:18 +02001280 int ret;
Thomas Gleixner4baa0af2016-02-26 18:43:29 +00001281
Sebastian Andrzej Siewior0c6d4572016-08-17 14:21:04 +02001282 rcu_cpu_starting(cpu); /* Enables RCU usage on this CPU. */
Thomas Gleixnere797bda2019-07-22 20:47:16 +02001283 cpumask_set_cpu(cpu, &cpus_booted_once_mask);
Vincent Donnefort453e4102021-02-16 10:35:06 +00001284 ret = cpuhp_invoke_callback_range(true, cpu, st, target);
1285
1286 /*
1287 * STARTING must not fail!
1288 */
1289 WARN_ON_ONCE(ret);
Thomas Gleixner4baa0af2016-02-26 18:43:29 +00001290}
1291
Thomas Gleixner949338e2016-02-26 18:43:35 +00001292/*
Thomas Gleixner9cd4f1a2017-07-04 22:20:23 +02001293 * Called from the idle task. Wake up the controlling task which brings the
Peter Zijlstra45178ac2019-12-10 09:34:54 +01001294 * hotplug thread of the upcoming CPU up and then delegates the rest of the
1295 * online bringup to the hotplug thread.
Thomas Gleixner949338e2016-02-26 18:43:35 +00001296 */
Thomas Gleixner8df3e072016-02-26 18:43:41 +00001297void cpuhp_online_idle(enum cpuhp_state state)
Thomas Gleixner949338e2016-02-26 18:43:35 +00001298{
Thomas Gleixner8df3e072016-02-26 18:43:41 +00001299 struct cpuhp_cpu_state *st = this_cpu_ptr(&cpuhp_state);
Thomas Gleixner8df3e072016-02-26 18:43:41 +00001300
1301 /* Happens for the boot cpu */
1302 if (state != CPUHP_AP_ONLINE_IDLE)
1303 return;
1304
Peter Zijlstra45178ac2019-12-10 09:34:54 +01001305 /*
1306 * Unpart the stopper thread before we start the idle loop (and start
1307 * scheduling); this ensures the stopper task is always available.
1308 */
1309 stop_machine_unpark(smp_processor_id());
1310
Thomas Gleixner8df3e072016-02-26 18:43:41 +00001311 st->state = CPUHP_AP_ONLINE_IDLE;
Peter Zijlstra5ebe7742017-09-20 19:00:19 +02001312 complete_ap_thread(st, true);
Thomas Gleixner949338e2016-02-26 18:43:35 +00001313}
1314
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001315/* Requires cpu_add_remove_lock to be held */
Thomas Gleixneraf1f4042016-02-26 18:43:30 +00001316static int _cpu_up(unsigned int cpu, int tasks_frozen, enum cpuhp_state target)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317{
Thomas Gleixnercff7d372016-02-26 18:43:28 +00001318 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
Suresh Siddha3bb5d2e2012-04-20 17:08:50 -07001319 struct task_struct *idle;
Thomas Gleixner2e1a3482016-02-26 18:43:37 +00001320 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321
Thomas Gleixner8f553c42017-05-24 10:15:12 +02001322 cpus_write_lock();
Thomas Gleixner38498a62012-04-20 13:05:44 +00001323
Thomas Gleixner757c9892016-02-26 18:43:32 +00001324 if (!cpu_present(cpu)) {
Yasuaki Ishimatsu5e5041f2012-10-23 01:30:54 +02001325 ret = -EINVAL;
1326 goto out;
1327 }
1328
Thomas Gleixner757c9892016-02-26 18:43:32 +00001329 /*
Qais Yousef33c37362020-03-23 13:51:10 +00001330 * The caller of cpu_up() might have raced with another
1331 * caller. Nothing to do.
Thomas Gleixner757c9892016-02-26 18:43:32 +00001332 */
1333 if (st->state >= target)
Thomas Gleixner38498a62012-04-20 13:05:44 +00001334 goto out;
Thomas Gleixner757c9892016-02-26 18:43:32 +00001335
1336 if (st->state == CPUHP_OFFLINE) {
1337 /* Let it fail before we try to bring the cpu up */
1338 idle = idle_thread_get(cpu);
1339 if (IS_ERR(idle)) {
1340 ret = PTR_ERR(idle);
1341 goto out;
1342 }
Suresh Siddha3bb5d2e2012-04-20 17:08:50 -07001343 }
Thomas Gleixner38498a62012-04-20 13:05:44 +00001344
Thomas Gleixnerba997462016-02-26 18:43:24 +00001345 cpuhp_tasks_frozen = tasks_frozen;
1346
Peter Zijlstra4dddfb52017-09-20 19:00:17 +02001347 cpuhp_set_state(st, target);
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001348 /*
1349 * If the current CPU state is in the range of the AP hotplug thread,
1350 * then we need to kick the thread once more.
1351 */
Thomas Gleixner8df3e072016-02-26 18:43:41 +00001352 if (st->state > CPUHP_BRINGUP_CPU) {
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001353 ret = cpuhp_kick_ap_work(cpu);
1354 /*
1355 * The AP side has done the error rollback already. Just
1356 * return the error code..
1357 */
1358 if (ret)
1359 goto out;
1360 }
1361
1362 /*
1363 * Try to reach the target state. We max out on the BP at
Thomas Gleixner8df3e072016-02-26 18:43:41 +00001364 * CPUHP_BRINGUP_CPU. After that the AP hotplug thread is
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001365 * responsible for bringing it up to the target state.
1366 */
Thomas Gleixner8df3e072016-02-26 18:43:41 +00001367 target = min((int)target, CPUHP_BRINGUP_CPU);
Thomas Gleixnera7246322016-08-12 19:49:38 +02001368 ret = cpuhp_up_callbacks(cpu, st, target);
Thomas Gleixner38498a62012-04-20 13:05:44 +00001369out:
Thomas Gleixner8f553c42017-05-24 10:15:12 +02001370 cpus_write_unlock();
Thomas Gleixnera74cfff2018-11-25 19:33:39 +01001371 arch_smt_update();
Thomas Gleixnerb22afcd2021-03-27 22:01:36 +01001372 cpu_up_down_serialize_trainwrecks(tasks_frozen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 return ret;
1374}
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001375
Qais Yousef33c37362020-03-23 13:51:10 +00001376static int cpu_up(unsigned int cpu, enum cpuhp_state target)
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001377{
1378 int err = 0;
minskey guocf234222010-05-24 14:32:41 -07001379
Rusty Russelle0b582e2009-01-01 10:12:28 +10301380 if (!cpu_possible(cpu)) {
Fabian Frederick84117da2014-06-04 16:11:17 -07001381 pr_err("can't online cpu %d because it is not configured as may-hotadd at boot time\n",
1382 cpu);
Chen Gong87d5e0232010-03-05 13:42:38 -08001383#if defined(CONFIG_IA64)
Fabian Frederick84117da2014-06-04 16:11:17 -07001384 pr_err("please check additional_cpus= boot parameter\n");
KAMEZAWA Hiroyuki73e753a2007-10-18 23:40:47 -07001385#endif
1386 return -EINVAL;
1387 }
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001388
Toshi Kani01b0f192013-11-12 15:07:25 -08001389 err = try_online_node(cpu_to_node(cpu));
1390 if (err)
1391 return err;
minskey guocf234222010-05-24 14:32:41 -07001392
Gautham R Shenoyd2219382008-01-25 21:08:01 +01001393 cpu_maps_update_begin();
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001394
Max Krasnyanskye761b772008-07-15 04:43:49 -07001395 if (cpu_hotplug_disabled) {
1396 err = -EBUSY;
1397 goto out;
1398 }
Thomas Gleixner05736e42018-05-29 17:48:27 +02001399 if (!cpu_smt_allowed(cpu)) {
1400 err = -EPERM;
1401 goto out;
1402 }
Max Krasnyanskye761b772008-07-15 04:43:49 -07001403
Thomas Gleixneraf1f4042016-02-26 18:43:30 +00001404 err = _cpu_up(cpu, 0, target);
Max Krasnyanskye761b772008-07-15 04:43:49 -07001405out:
Gautham R Shenoyd2219382008-01-25 21:08:01 +01001406 cpu_maps_update_done();
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001407 return err;
1408}
Thomas Gleixneraf1f4042016-02-26 18:43:30 +00001409
Qais Yousef33c37362020-03-23 13:51:10 +00001410/**
1411 * cpu_device_up - Bring up a cpu device
1412 * @dev: Pointer to the cpu device to online
1413 *
1414 * This function is meant to be used by device core cpu subsystem only.
1415 *
1416 * Other subsystems should use add_cpu() instead.
Randy Dunlap11bc0212021-08-09 15:38:25 -07001417 *
1418 * Return: %0 on success or a negative errno code
Qais Yousef33c37362020-03-23 13:51:10 +00001419 */
1420int cpu_device_up(struct device *dev)
Thomas Gleixneraf1f4042016-02-26 18:43:30 +00001421{
Qais Yousef33c37362020-03-23 13:51:10 +00001422 return cpu_up(dev->id, CPUHP_ONLINE);
Thomas Gleixneraf1f4042016-02-26 18:43:30 +00001423}
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001424
Qais Yousef93ef1422020-03-23 13:50:54 +00001425int add_cpu(unsigned int cpu)
1426{
1427 int ret;
1428
1429 lock_device_hotplug();
1430 ret = device_online(get_cpu_device(cpu));
1431 unlock_device_hotplug();
1432
1433 return ret;
1434}
1435EXPORT_SYMBOL_GPL(add_cpu);
1436
Qais Yousefd720f982020-03-23 13:51:01 +00001437/**
1438 * bringup_hibernate_cpu - Bring up the CPU that we hibernated on
1439 * @sleep_cpu: The cpu we hibernated on and should be brought up.
1440 *
1441 * On some architectures like arm64, we can hibernate on any CPU, but on
1442 * wake up the CPU we hibernated on might be offline as a side effect of
1443 * using maxcpus= for example.
Randy Dunlap11bc0212021-08-09 15:38:25 -07001444 *
1445 * Return: %0 on success or a negative errno code
Qais Yousefd720f982020-03-23 13:51:01 +00001446 */
1447int bringup_hibernate_cpu(unsigned int sleep_cpu)
1448{
1449 int ret;
1450
1451 if (!cpu_online(sleep_cpu)) {
1452 pr_info("Hibernated on a CPU that is offline! Bringing CPU up.\n");
Qais Yousef33c37362020-03-23 13:51:10 +00001453 ret = cpu_up(sleep_cpu, CPUHP_ONLINE);
Qais Yousefd720f982020-03-23 13:51:01 +00001454 if (ret) {
1455 pr_err("Failed to bring hibernate-CPU up!\n");
1456 return ret;
1457 }
1458 }
1459 return 0;
1460}
1461
Qais Yousefb99a2652020-03-23 13:51:09 +00001462void bringup_nonboot_cpus(unsigned int setup_max_cpus)
1463{
1464 unsigned int cpu;
1465
1466 for_each_present_cpu(cpu) {
1467 if (num_online_cpus() >= setup_max_cpus)
1468 break;
1469 if (!cpu_online(cpu))
Qais Yousef33c37362020-03-23 13:51:10 +00001470 cpu_up(cpu, CPUHP_ONLINE);
Qais Yousefb99a2652020-03-23 13:51:09 +00001471 }
1472}
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001473
Rafael J. Wysockif3de4be2007-08-30 23:56:29 -07001474#ifdef CONFIG_PM_SLEEP_SMP
Rusty Russelle0b582e2009-01-01 10:12:28 +10301475static cpumask_var_t frozen_cpus;
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001476
Qais Youseffb7fb842020-04-30 12:40:04 +01001477int freeze_secondary_cpus(int primary)
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001478{
James Morsed391e552016-08-17 13:50:25 +01001479 int cpu, error = 0;
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001480
Gautham R Shenoyd2219382008-01-25 21:08:01 +01001481 cpu_maps_update_begin();
Nicholas Piggin9ca12ac2019-04-11 13:34:46 +10001482 if (primary == -1) {
James Morsed391e552016-08-17 13:50:25 +01001483 primary = cpumask_first(cpu_online_mask);
Nicholas Piggin9ca12ac2019-04-11 13:34:46 +10001484 if (!housekeeping_cpu(primary, HK_FLAG_TIMER))
1485 primary = housekeeping_any_cpu(HK_FLAG_TIMER);
1486 } else {
1487 if (!cpu_online(primary))
1488 primary = cpumask_first(cpu_online_mask);
1489 }
1490
Xiaotian Feng9ee349a2009-12-16 18:04:32 +01001491 /*
1492 * We take down all of the non-boot CPUs in one shot to avoid races
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001493 * with the userspace trying to use the CPU hotplug at the same time
1494 */
Rusty Russelle0b582e2009-01-01 10:12:28 +10301495 cpumask_clear(frozen_cpus);
Peter Zijlstra6ad4c182009-11-25 13:31:39 +01001496
Fabian Frederick84117da2014-06-04 16:11:17 -07001497 pr_info("Disabling non-boot CPUs ...\n");
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001498 for_each_online_cpu(cpu) {
James Morsed391e552016-08-17 13:50:25 +01001499 if (cpu == primary)
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001500 continue;
Pavankumar Kondetia66d9552019-06-03 10:01:03 +05301501
Qais Youseffb7fb842020-04-30 12:40:04 +01001502 if (pm_wakeup_pending()) {
Pavankumar Kondetia66d9552019-06-03 10:01:03 +05301503 pr_info("Wakeup pending. Abort CPU freeze\n");
1504 error = -EBUSY;
1505 break;
1506 }
1507
Todd E Brandtbb3632c2014-06-06 05:40:17 -07001508 trace_suspend_resume(TPS("CPU_OFF"), cpu, true);
Thomas Gleixneraf1f4042016-02-26 18:43:30 +00001509 error = _cpu_down(cpu, 1, CPUHP_OFFLINE);
Todd E Brandtbb3632c2014-06-06 05:40:17 -07001510 trace_suspend_resume(TPS("CPU_OFF"), cpu, false);
Mike Travisfeae3202009-11-17 18:22:13 -06001511 if (!error)
Rusty Russelle0b582e2009-01-01 10:12:28 +10301512 cpumask_set_cpu(cpu, frozen_cpus);
Mike Travisfeae3202009-11-17 18:22:13 -06001513 else {
Fabian Frederick84117da2014-06-04 16:11:17 -07001514 pr_err("Error taking CPU%d down: %d\n", cpu, error);
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001515 break;
1516 }
1517 }
Joseph Cihula86886e52009-06-30 19:31:07 -07001518
Vitaly Kuznetsov89af7ba2015-08-05 00:52:46 -07001519 if (!error)
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001520 BUG_ON(num_online_cpus() > 1);
Vitaly Kuznetsov89af7ba2015-08-05 00:52:46 -07001521 else
Fabian Frederick84117da2014-06-04 16:11:17 -07001522 pr_err("Non-boot CPUs are not disabled\n");
Vitaly Kuznetsov89af7ba2015-08-05 00:52:46 -07001523
1524 /*
1525 * Make sure the CPUs won't be enabled by someone else. We need to do
Qais Yousef56555852020-04-30 12:40:03 +01001526 * this even in case of failure as all freeze_secondary_cpus() users are
1527 * supposed to do thaw_secondary_cpus() on the failure path.
Vitaly Kuznetsov89af7ba2015-08-05 00:52:46 -07001528 */
1529 cpu_hotplug_disabled++;
1530
Gautham R Shenoyd2219382008-01-25 21:08:01 +01001531 cpu_maps_update_done();
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001532 return error;
1533}
1534
Qais Yousef56555852020-04-30 12:40:03 +01001535void __weak arch_thaw_secondary_cpus_begin(void)
Suresh Siddhad0af9ee2009-08-19 18:05:36 -07001536{
1537}
1538
Qais Yousef56555852020-04-30 12:40:03 +01001539void __weak arch_thaw_secondary_cpus_end(void)
Suresh Siddhad0af9ee2009-08-19 18:05:36 -07001540{
1541}
1542
Qais Yousef56555852020-04-30 12:40:03 +01001543void thaw_secondary_cpus(void)
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001544{
1545 int cpu, error;
1546
1547 /* Allow everyone to use the CPU hotplug again */
Gautham R Shenoyd2219382008-01-25 21:08:01 +01001548 cpu_maps_update_begin();
Lianwei Wang01b41152016-06-09 23:43:28 -07001549 __cpu_hotplug_enable();
Rusty Russelle0b582e2009-01-01 10:12:28 +10301550 if (cpumask_empty(frozen_cpus))
Rafael J. Wysocki1d64b9c2007-04-01 23:49:49 -07001551 goto out;
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001552
Fabian Frederick84117da2014-06-04 16:11:17 -07001553 pr_info("Enabling non-boot CPUs ...\n");
Suresh Siddhad0af9ee2009-08-19 18:05:36 -07001554
Qais Yousef56555852020-04-30 12:40:03 +01001555 arch_thaw_secondary_cpus_begin();
Suresh Siddhad0af9ee2009-08-19 18:05:36 -07001556
Rusty Russelle0b582e2009-01-01 10:12:28 +10301557 for_each_cpu(cpu, frozen_cpus) {
Todd E Brandtbb3632c2014-06-06 05:40:17 -07001558 trace_suspend_resume(TPS("CPU_ON"), cpu, true);
Thomas Gleixneraf1f4042016-02-26 18:43:30 +00001559 error = _cpu_up(cpu, 1, CPUHP_ONLINE);
Todd E Brandtbb3632c2014-06-06 05:40:17 -07001560 trace_suspend_resume(TPS("CPU_ON"), cpu, false);
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001561 if (!error) {
Fabian Frederick84117da2014-06-04 16:11:17 -07001562 pr_info("CPU%d is up\n", cpu);
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001563 continue;
1564 }
Fabian Frederick84117da2014-06-04 16:11:17 -07001565 pr_warn("Error taking CPU%d up: %d\n", cpu, error);
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001566 }
Suresh Siddhad0af9ee2009-08-19 18:05:36 -07001567
Qais Yousef56555852020-04-30 12:40:03 +01001568 arch_thaw_secondary_cpus_end();
Suresh Siddhad0af9ee2009-08-19 18:05:36 -07001569
Rusty Russelle0b582e2009-01-01 10:12:28 +10301570 cpumask_clear(frozen_cpus);
Rafael J. Wysocki1d64b9c2007-04-01 23:49:49 -07001571out:
Gautham R Shenoyd2219382008-01-25 21:08:01 +01001572 cpu_maps_update_done();
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001573}
Rusty Russelle0b582e2009-01-01 10:12:28 +10301574
Fenghua Yud7268a32011-11-15 21:59:31 +01001575static int __init alloc_frozen_cpus(void)
Rusty Russelle0b582e2009-01-01 10:12:28 +10301576{
1577 if (!alloc_cpumask_var(&frozen_cpus, GFP_KERNEL|__GFP_ZERO))
1578 return -ENOMEM;
1579 return 0;
1580}
1581core_initcall(alloc_frozen_cpus);
Srivatsa S. Bhat79cfbdf2011-11-03 00:59:25 +01001582
1583/*
Srivatsa S. Bhat79cfbdf2011-11-03 00:59:25 +01001584 * When callbacks for CPU hotplug notifications are being executed, we must
1585 * ensure that the state of the system with respect to the tasks being frozen
1586 * or not, as reported by the notification, remains unchanged *throughout the
1587 * duration* of the execution of the callbacks.
1588 * Hence we need to prevent the freezer from racing with regular CPU hotplug.
1589 *
1590 * This synchronization is implemented by mutually excluding regular CPU
1591 * hotplug and Suspend/Hibernate call paths by hooking onto the Suspend/
1592 * Hibernate notifications.
1593 */
1594static int
1595cpu_hotplug_pm_callback(struct notifier_block *nb,
1596 unsigned long action, void *ptr)
1597{
1598 switch (action) {
1599
1600 case PM_SUSPEND_PREPARE:
1601 case PM_HIBERNATION_PREPARE:
Srivatsa S. Bhat16e53db2013-06-12 14:04:36 -07001602 cpu_hotplug_disable();
Srivatsa S. Bhat79cfbdf2011-11-03 00:59:25 +01001603 break;
1604
1605 case PM_POST_SUSPEND:
1606 case PM_POST_HIBERNATION:
Srivatsa S. Bhat16e53db2013-06-12 14:04:36 -07001607 cpu_hotplug_enable();
Srivatsa S. Bhat79cfbdf2011-11-03 00:59:25 +01001608 break;
1609
1610 default:
1611 return NOTIFY_DONE;
1612 }
1613
1614 return NOTIFY_OK;
1615}
1616
1617
Fenghua Yud7268a32011-11-15 21:59:31 +01001618static int __init cpu_hotplug_pm_sync_init(void)
Srivatsa S. Bhat79cfbdf2011-11-03 00:59:25 +01001619{
Fenghua Yu6e32d472012-11-13 11:32:43 -08001620 /*
1621 * cpu_hotplug_pm_callback has higher priority than x86
1622 * bsp_pm_callback which depends on cpu_hotplug_pm_callback
1623 * to disable cpu hotplug to avoid cpu hotplug race.
1624 */
Srivatsa S. Bhat79cfbdf2011-11-03 00:59:25 +01001625 pm_notifier(cpu_hotplug_pm_callback, 0);
1626 return 0;
1627}
1628core_initcall(cpu_hotplug_pm_sync_init);
1629
Rafael J. Wysockif3de4be2007-08-30 23:56:29 -07001630#endif /* CONFIG_PM_SLEEP_SMP */
Max Krasnyansky68f4f1e2008-05-29 11:17:02 -07001631
Peter Zijlstra8ce371f2017-03-20 12:26:55 +01001632int __boot_cpu_id;
1633
Max Krasnyansky68f4f1e2008-05-29 11:17:02 -07001634#endif /* CONFIG_SMP */
Mike Travisb8d317d2008-07-24 18:21:29 -07001635
Thomas Gleixnercff7d372016-02-26 18:43:28 +00001636/* Boot processor state steps */
Lai Jiangshan17a2f1c2017-12-01 21:50:05 +08001637static struct cpuhp_step cpuhp_hp_states[] = {
Thomas Gleixnercff7d372016-02-26 18:43:28 +00001638 [CPUHP_OFFLINE] = {
1639 .name = "offline",
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001640 .startup.single = NULL,
1641 .teardown.single = NULL,
Thomas Gleixnercff7d372016-02-26 18:43:28 +00001642 },
1643#ifdef CONFIG_SMP
1644 [CPUHP_CREATE_THREADS]= {
Thomas Gleixner677f6642016-09-06 16:13:48 +02001645 .name = "threads:prepare",
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001646 .startup.single = smpboot_create_threads,
1647 .teardown.single = NULL,
Thomas Gleixner757c9892016-02-26 18:43:32 +00001648 .cant_stop = true,
Thomas Gleixnercff7d372016-02-26 18:43:28 +00001649 },
Thomas Gleixner00e16c32016-07-13 17:16:09 +00001650 [CPUHP_PERF_PREPARE] = {
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001651 .name = "perf:prepare",
1652 .startup.single = perf_event_init_cpu,
1653 .teardown.single = perf_event_exit_cpu,
Thomas Gleixner00e16c32016-07-13 17:16:09 +00001654 },
Thomas Gleixner7ee681b2016-07-13 17:16:29 +00001655 [CPUHP_WORKQUEUE_PREP] = {
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001656 .name = "workqueue:prepare",
1657 .startup.single = workqueue_prepare_cpu,
1658 .teardown.single = NULL,
Thomas Gleixner7ee681b2016-07-13 17:16:29 +00001659 },
Thomas Gleixner27590dc2016-07-15 10:41:04 +02001660 [CPUHP_HRTIMERS_PREPARE] = {
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001661 .name = "hrtimers:prepare",
1662 .startup.single = hrtimers_prepare_cpu,
1663 .teardown.single = hrtimers_dead_cpu,
Thomas Gleixner27590dc2016-07-15 10:41:04 +02001664 },
Richard Weinberger31487f82016-07-13 17:17:01 +00001665 [CPUHP_SMPCFD_PREPARE] = {
Thomas Gleixner677f6642016-09-06 16:13:48 +02001666 .name = "smpcfd:prepare",
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001667 .startup.single = smpcfd_prepare_cpu,
1668 .teardown.single = smpcfd_dead_cpu,
Richard Weinberger31487f82016-07-13 17:17:01 +00001669 },
Richard Weinbergere6d49892016-08-18 14:57:17 +02001670 [CPUHP_RELAY_PREPARE] = {
1671 .name = "relay:prepare",
1672 .startup.single = relay_prepare_cpu,
1673 .teardown.single = NULL,
1674 },
Sebastian Andrzej Siewior6731d4f2016-08-23 14:53:19 +02001675 [CPUHP_SLAB_PREPARE] = {
1676 .name = "slab:prepare",
1677 .startup.single = slab_prepare_cpu,
1678 .teardown.single = slab_dead_cpu,
Thomas Gleixnercff7d372016-02-26 18:43:28 +00001679 },
Thomas Gleixner4df83742016-07-13 17:17:03 +00001680 [CPUHP_RCUTREE_PREP] = {
Thomas Gleixner677f6642016-09-06 16:13:48 +02001681 .name = "RCU/tree:prepare",
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001682 .startup.single = rcutree_prepare_cpu,
1683 .teardown.single = rcutree_dead_cpu,
Thomas Gleixner4df83742016-07-13 17:17:03 +00001684 },
Thomas Gleixnercff7d372016-02-26 18:43:28 +00001685 /*
Richard Cochran4fae16d2016-07-27 11:08:18 +02001686 * On the tear-down path, timers_dead_cpu() must be invoked
1687 * before blk_mq_queue_reinit_notify() from notify_dead(),
1688 * otherwise a RCU stall occurs.
1689 */
Thomas Gleixner26456f82017-12-27 21:37:25 +01001690 [CPUHP_TIMERS_PREPARE] = {
Mukesh Ojhad0180312018-07-24 20:17:48 +05301691 .name = "timers:prepare",
Thomas Gleixner26456f82017-12-27 21:37:25 +01001692 .startup.single = timers_prepare_cpu,
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001693 .teardown.single = timers_dead_cpu,
Richard Cochran4fae16d2016-07-27 11:08:18 +02001694 },
Thomas Gleixnerd10ef6f2016-03-08 10:36:13 +01001695 /* Kicks the plugged cpu into life */
Thomas Gleixnercff7d372016-02-26 18:43:28 +00001696 [CPUHP_BRINGUP_CPU] = {
1697 .name = "cpu:bringup",
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001698 .startup.single = bringup_cpu,
Peter Zijlstrabf2c59f2020-04-01 17:40:33 -04001699 .teardown.single = finish_cpu,
Thomas Gleixner757c9892016-02-26 18:43:32 +00001700 .cant_stop = true,
Thomas Gleixner4baa0af2016-02-26 18:43:29 +00001701 },
Thomas Gleixnerd10ef6f2016-03-08 10:36:13 +01001702 /* Final state before CPU kills itself */
1703 [CPUHP_AP_IDLE_DEAD] = {
1704 .name = "idle:dead",
1705 },
1706 /*
1707 * Last state before CPU enters the idle loop to die. Transient state
1708 * for synchronization.
1709 */
1710 [CPUHP_AP_OFFLINE] = {
1711 .name = "ap:offline",
1712 .cant_stop = true,
1713 },
Thomas Gleixner9cf72432016-03-10 12:54:09 +01001714 /* First state is scheduler control. Interrupts are disabled */
1715 [CPUHP_AP_SCHED_STARTING] = {
1716 .name = "sched:starting",
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001717 .startup.single = sched_cpu_starting,
1718 .teardown.single = sched_cpu_dying,
Thomas Gleixner9cf72432016-03-10 12:54:09 +01001719 },
Thomas Gleixner4df83742016-07-13 17:17:03 +00001720 [CPUHP_AP_RCUTREE_DYING] = {
Thomas Gleixner677f6642016-09-06 16:13:48 +02001721 .name = "RCU/tree:dying",
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001722 .startup.single = NULL,
1723 .teardown.single = rcutree_dying_cpu,
Thomas Gleixner4baa0af2016-02-26 18:43:29 +00001724 },
Lai Jiangshan46febd32017-11-28 21:19:53 +08001725 [CPUHP_AP_SMPCFD_DYING] = {
1726 .name = "smpcfd:dying",
1727 .startup.single = NULL,
1728 .teardown.single = smpcfd_dying_cpu,
1729 },
Thomas Gleixnerd10ef6f2016-03-08 10:36:13 +01001730 /* Entry state on starting. Interrupts enabled from here on. Transient
1731 * state for synchronsization */
1732 [CPUHP_AP_ONLINE] = {
1733 .name = "ap:online",
1734 },
Lai Jiangshan17a2f1c2017-12-01 21:50:05 +08001735 /*
Thomas Gleixner1cf12e02020-09-16 09:27:18 +02001736 * Handled on control processor until the plugged processor manages
Lai Jiangshan17a2f1c2017-12-01 21:50:05 +08001737 * this itself.
1738 */
1739 [CPUHP_TEARDOWN_CPU] = {
1740 .name = "cpu:teardown",
1741 .startup.single = NULL,
1742 .teardown.single = takedown_cpu,
1743 .cant_stop = true,
1744 },
Thomas Gleixner1cf12e02020-09-16 09:27:18 +02001745
1746 [CPUHP_AP_SCHED_WAIT_EMPTY] = {
1747 .name = "sched:waitempty",
1748 .startup.single = NULL,
1749 .teardown.single = sched_cpu_wait_empty,
1750 },
1751
Thomas Gleixnerd10ef6f2016-03-08 10:36:13 +01001752 /* Handle smpboot threads park/unpark */
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001753 [CPUHP_AP_SMPBOOT_THREADS] = {
Thomas Gleixner677f6642016-09-06 16:13:48 +02001754 .name = "smpboot/threads:online",
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001755 .startup.single = smpboot_unpark_threads,
Thomas Gleixnerc4de6562018-05-29 19:05:25 +02001756 .teardown.single = smpboot_park_threads,
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001757 },
Thomas Gleixnerc5cb83b2017-06-20 01:37:51 +02001758 [CPUHP_AP_IRQ_AFFINITY_ONLINE] = {
1759 .name = "irq/affinity:online",
1760 .startup.single = irq_affinity_online_cpu,
1761 .teardown.single = NULL,
1762 },
Thomas Gleixner00e16c32016-07-13 17:16:09 +00001763 [CPUHP_AP_PERF_ONLINE] = {
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001764 .name = "perf:online",
1765 .startup.single = perf_event_init_cpu,
1766 .teardown.single = perf_event_exit_cpu,
Thomas Gleixner00e16c32016-07-13 17:16:09 +00001767 },
Peter Zijlstra9cf57732018-06-07 10:52:03 +02001768 [CPUHP_AP_WATCHDOG_ONLINE] = {
1769 .name = "lockup_detector:online",
1770 .startup.single = lockup_detector_online_cpu,
1771 .teardown.single = lockup_detector_offline_cpu,
1772 },
Thomas Gleixner7ee681b2016-07-13 17:16:29 +00001773 [CPUHP_AP_WORKQUEUE_ONLINE] = {
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001774 .name = "workqueue:online",
1775 .startup.single = workqueue_online_cpu,
1776 .teardown.single = workqueue_offline_cpu,
Thomas Gleixner7ee681b2016-07-13 17:16:29 +00001777 },
Thomas Gleixner4df83742016-07-13 17:17:03 +00001778 [CPUHP_AP_RCUTREE_ONLINE] = {
Thomas Gleixner677f6642016-09-06 16:13:48 +02001779 .name = "RCU/tree:online",
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001780 .startup.single = rcutree_online_cpu,
1781 .teardown.single = rcutree_offline_cpu,
Thomas Gleixner4df83742016-07-13 17:17:03 +00001782 },
Thomas Gleixner4baa0af2016-02-26 18:43:29 +00001783#endif
Thomas Gleixnerd10ef6f2016-03-08 10:36:13 +01001784 /*
1785 * The dynamically registered state space is here
1786 */
1787
Thomas Gleixneraaddd7d2016-03-10 12:54:19 +01001788#ifdef CONFIG_SMP
1789 /* Last state is scheduler control setting the cpu active */
1790 [CPUHP_AP_ACTIVE] = {
1791 .name = "sched:active",
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001792 .startup.single = sched_cpu_activate,
1793 .teardown.single = sched_cpu_deactivate,
Thomas Gleixneraaddd7d2016-03-10 12:54:19 +01001794 },
1795#endif
1796
Thomas Gleixnerd10ef6f2016-03-08 10:36:13 +01001797 /* CPU is fully up and running. */
Thomas Gleixner4baa0af2016-02-26 18:43:29 +00001798 [CPUHP_ONLINE] = {
1799 .name = "online",
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001800 .startup.single = NULL,
1801 .teardown.single = NULL,
Thomas Gleixner4baa0af2016-02-26 18:43:29 +00001802 },
1803};
1804
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001805/* Sanity check for callbacks */
1806static int cpuhp_cb_check(enum cpuhp_state state)
1807{
1808 if (state <= CPUHP_OFFLINE || state >= CPUHP_ONLINE)
1809 return -EINVAL;
1810 return 0;
1811}
1812
Thomas Gleixnerdc280d932016-12-21 20:19:49 +01001813/*
1814 * Returns a free for dynamic slot assignment of the Online state. The states
1815 * are protected by the cpuhp_slot_states mutex and an empty slot is identified
1816 * by having no name assigned.
1817 */
1818static int cpuhp_reserve_state(enum cpuhp_state state)
1819{
Thomas Gleixner4205e472017-01-10 14:01:05 +01001820 enum cpuhp_state i, end;
1821 struct cpuhp_step *step;
Thomas Gleixnerdc280d932016-12-21 20:19:49 +01001822
Thomas Gleixner4205e472017-01-10 14:01:05 +01001823 switch (state) {
1824 case CPUHP_AP_ONLINE_DYN:
Lai Jiangshan17a2f1c2017-12-01 21:50:05 +08001825 step = cpuhp_hp_states + CPUHP_AP_ONLINE_DYN;
Thomas Gleixner4205e472017-01-10 14:01:05 +01001826 end = CPUHP_AP_ONLINE_DYN_END;
1827 break;
1828 case CPUHP_BP_PREPARE_DYN:
Lai Jiangshan17a2f1c2017-12-01 21:50:05 +08001829 step = cpuhp_hp_states + CPUHP_BP_PREPARE_DYN;
Thomas Gleixner4205e472017-01-10 14:01:05 +01001830 end = CPUHP_BP_PREPARE_DYN_END;
1831 break;
1832 default:
1833 return -EINVAL;
1834 }
1835
1836 for (i = state; i <= end; i++, step++) {
1837 if (!step->name)
Thomas Gleixnerdc280d932016-12-21 20:19:49 +01001838 return i;
1839 }
1840 WARN(1, "No more dynamic states available for CPU hotplug\n");
1841 return -ENOSPC;
1842}
1843
1844static int cpuhp_store_callbacks(enum cpuhp_state state, const char *name,
1845 int (*startup)(unsigned int cpu),
1846 int (*teardown)(unsigned int cpu),
1847 bool multi_instance)
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001848{
1849 /* (Un)Install the callbacks for further cpu hotplug operations */
1850 struct cpuhp_step *sp;
Thomas Gleixnerdc280d932016-12-21 20:19:49 +01001851 int ret = 0;
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001852
Ethan Barnes0c96b272017-07-19 22:36:00 +00001853 /*
1854 * If name is NULL, then the state gets removed.
1855 *
1856 * CPUHP_AP_ONLINE_DYN and CPUHP_BP_PREPARE_DYN are handed out on
1857 * the first allocation from these dynamic ranges, so the removal
1858 * would trigger a new allocation and clear the wrong (already
1859 * empty) state, leaving the callbacks of the to be cleared state
1860 * dangling, which causes wreckage on the next hotplug operation.
1861 */
1862 if (name && (state == CPUHP_AP_ONLINE_DYN ||
1863 state == CPUHP_BP_PREPARE_DYN)) {
Thomas Gleixnerdc280d932016-12-21 20:19:49 +01001864 ret = cpuhp_reserve_state(state);
1865 if (ret < 0)
Sebastian Andrzej Siewiordc434e052017-03-14 16:06:45 +01001866 return ret;
Thomas Gleixnerdc280d932016-12-21 20:19:49 +01001867 state = ret;
1868 }
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001869 sp = cpuhp_get_step(state);
Sebastian Andrzej Siewiordc434e052017-03-14 16:06:45 +01001870 if (name && sp->name)
1871 return -EBUSY;
1872
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001873 sp->startup.single = startup;
1874 sp->teardown.single = teardown;
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001875 sp->name = name;
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001876 sp->multi_instance = multi_instance;
1877 INIT_HLIST_HEAD(&sp->list);
Thomas Gleixnerdc280d932016-12-21 20:19:49 +01001878 return ret;
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001879}
1880
1881static void *cpuhp_get_teardown_cb(enum cpuhp_state state)
1882{
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001883 return cpuhp_get_step(state)->teardown.single;
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001884}
1885
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001886/*
1887 * Call the startup/teardown function for a step either on the AP or
1888 * on the current CPU.
1889 */
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001890static int cpuhp_issue_call(int cpu, enum cpuhp_state state, bool bringup,
1891 struct hlist_node *node)
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001892{
Thomas Gleixnera7246322016-08-12 19:49:38 +02001893 struct cpuhp_step *sp = cpuhp_get_step(state);
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001894 int ret;
1895
Peter Zijlstra4dddfb52017-09-20 19:00:17 +02001896 /*
1897 * If there's nothing to do, we done.
1898 * Relies on the union for multi_instance.
1899 */
Vincent Donnefort453e4102021-02-16 10:35:06 +00001900 if (cpuhp_step_empty(bringup, sp))
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001901 return 0;
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001902 /*
1903 * The non AP bound callbacks can fail on bringup. On teardown
1904 * e.g. module removal we crash for now.
1905 */
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001906#ifdef CONFIG_SMP
1907 if (cpuhp_is_ap_state(state))
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001908 ret = cpuhp_invoke_ap_callback(cpu, state, bringup, node);
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001909 else
Peter Zijlstra96abb962017-09-20 19:00:16 +02001910 ret = cpuhp_invoke_callback(cpu, state, bringup, node, NULL);
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001911#else
Peter Zijlstra96abb962017-09-20 19:00:16 +02001912 ret = cpuhp_invoke_callback(cpu, state, bringup, node, NULL);
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001913#endif
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001914 BUG_ON(ret && !bringup);
1915 return ret;
1916}
1917
1918/*
1919 * Called from __cpuhp_setup_state on a recoverable failure.
1920 *
1921 * Note: The teardown callbacks for rollback are not allowed to fail!
1922 */
1923static void cpuhp_rollback_install(int failedcpu, enum cpuhp_state state,
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001924 struct hlist_node *node)
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001925{
1926 int cpu;
1927
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001928 /* Roll back the already executed steps on the other cpus */
1929 for_each_present_cpu(cpu) {
1930 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
1931 int cpustate = st->state;
1932
1933 if (cpu >= failedcpu)
1934 break;
1935
1936 /* Did we invoke the startup call on that cpu ? */
1937 if (cpustate >= state)
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001938 cpuhp_issue_call(cpu, state, false, node);
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001939 }
1940}
1941
Thomas Gleixner9805c672017-05-24 10:15:15 +02001942int __cpuhp_state_add_instance_cpuslocked(enum cpuhp_state state,
1943 struct hlist_node *node,
1944 bool invoke)
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001945{
1946 struct cpuhp_step *sp;
1947 int cpu;
1948 int ret;
1949
Thomas Gleixner9805c672017-05-24 10:15:15 +02001950 lockdep_assert_cpus_held();
1951
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001952 sp = cpuhp_get_step(state);
1953 if (sp->multi_instance == false)
1954 return -EINVAL;
1955
Sebastian Andrzej Siewiordc434e052017-03-14 16:06:45 +01001956 mutex_lock(&cpuhp_state_mutex);
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001957
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001958 if (!invoke || !sp->startup.multi)
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001959 goto add_node;
1960
1961 /*
1962 * Try to call the startup callback for each present cpu
1963 * depending on the hotplug state of the cpu.
1964 */
1965 for_each_present_cpu(cpu) {
1966 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
1967 int cpustate = st->state;
1968
1969 if (cpustate < state)
1970 continue;
1971
1972 ret = cpuhp_issue_call(cpu, state, true, node);
1973 if (ret) {
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001974 if (sp->teardown.multi)
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001975 cpuhp_rollback_install(cpu, state, node);
Sebastian Andrzej Siewiordc434e052017-03-14 16:06:45 +01001976 goto unlock;
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001977 }
1978 }
1979add_node:
1980 ret = 0;
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001981 hlist_add_head(node, &sp->list);
Sebastian Andrzej Siewiordc434e052017-03-14 16:06:45 +01001982unlock:
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001983 mutex_unlock(&cpuhp_state_mutex);
Thomas Gleixner9805c672017-05-24 10:15:15 +02001984 return ret;
1985}
1986
1987int __cpuhp_state_add_instance(enum cpuhp_state state, struct hlist_node *node,
1988 bool invoke)
1989{
1990 int ret;
1991
1992 cpus_read_lock();
1993 ret = __cpuhp_state_add_instance_cpuslocked(state, node, invoke);
Thomas Gleixner8f553c42017-05-24 10:15:12 +02001994 cpus_read_unlock();
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001995 return ret;
1996}
1997EXPORT_SYMBOL_GPL(__cpuhp_state_add_instance);
1998
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001999/**
Sebastian Andrzej Siewior71def422017-05-24 10:15:14 +02002000 * __cpuhp_setup_state_cpuslocked - Setup the callbacks for an hotplug machine state
Thomas Gleixnerdc280d932016-12-21 20:19:49 +01002001 * @state: The state to setup
Baokun Lied3cd1d2021-06-05 14:30:03 +08002002 * @name: Name of the step
Thomas Gleixnerdc280d932016-12-21 20:19:49 +01002003 * @invoke: If true, the startup function is invoked for cpus where
2004 * cpu state >= @state
2005 * @startup: startup callback function
2006 * @teardown: teardown callback function
2007 * @multi_instance: State is set up for multiple instances which get
2008 * added afterwards.
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00002009 *
Sebastian Andrzej Siewior71def422017-05-24 10:15:14 +02002010 * The caller needs to hold cpus read locked while calling this function.
Randy Dunlap11bc0212021-08-09 15:38:25 -07002011 * Return:
Boris Ostrovsky512f0982016-12-15 10:00:57 -05002012 * On success:
Randy Dunlap11bc0212021-08-09 15:38:25 -07002013 * Positive state number if @state is CPUHP_AP_ONLINE_DYN;
Boris Ostrovsky512f0982016-12-15 10:00:57 -05002014 * 0 for all other states
2015 * On failure: proper (negative) error code
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00002016 */
Sebastian Andrzej Siewior71def422017-05-24 10:15:14 +02002017int __cpuhp_setup_state_cpuslocked(enum cpuhp_state state,
2018 const char *name, bool invoke,
2019 int (*startup)(unsigned int cpu),
2020 int (*teardown)(unsigned int cpu),
2021 bool multi_instance)
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00002022{
2023 int cpu, ret = 0;
Thomas Gleixnerb9d9d692016-12-26 22:58:19 +01002024 bool dynstate;
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00002025
Sebastian Andrzej Siewior71def422017-05-24 10:15:14 +02002026 lockdep_assert_cpus_held();
2027
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00002028 if (cpuhp_cb_check(state) || !name)
2029 return -EINVAL;
2030
Sebastian Andrzej Siewiordc434e052017-03-14 16:06:45 +01002031 mutex_lock(&cpuhp_state_mutex);
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00002032
Thomas Gleixnerdc280d932016-12-21 20:19:49 +01002033 ret = cpuhp_store_callbacks(state, name, startup, teardown,
2034 multi_instance);
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00002035
Thomas Gleixnerb9d9d692016-12-26 22:58:19 +01002036 dynstate = state == CPUHP_AP_ONLINE_DYN;
2037 if (ret > 0 && dynstate) {
2038 state = ret;
2039 ret = 0;
2040 }
2041
Thomas Gleixnerdc280d932016-12-21 20:19:49 +01002042 if (ret || !invoke || !startup)
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00002043 goto out;
2044
2045 /*
2046 * Try to call the startup callback for each present cpu
2047 * depending on the hotplug state of the cpu.
2048 */
2049 for_each_present_cpu(cpu) {
2050 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
2051 int cpustate = st->state;
2052
2053 if (cpustate < state)
2054 continue;
2055
Thomas Gleixnercf392d12016-08-12 19:49:39 +02002056 ret = cpuhp_issue_call(cpu, state, true, NULL);
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00002057 if (ret) {
Thomas Gleixnera7246322016-08-12 19:49:38 +02002058 if (teardown)
Thomas Gleixnercf392d12016-08-12 19:49:39 +02002059 cpuhp_rollback_install(cpu, state, NULL);
2060 cpuhp_store_callbacks(state, NULL, NULL, NULL, false);
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00002061 goto out;
2062 }
2063 }
2064out:
Sebastian Andrzej Siewiordc434e052017-03-14 16:06:45 +01002065 mutex_unlock(&cpuhp_state_mutex);
Thomas Gleixnerdc280d932016-12-21 20:19:49 +01002066 /*
2067 * If the requested state is CPUHP_AP_ONLINE_DYN, return the
2068 * dynamically allocated state in case of success.
2069 */
Thomas Gleixnerb9d9d692016-12-26 22:58:19 +01002070 if (!ret && dynstate)
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00002071 return state;
2072 return ret;
2073}
Sebastian Andrzej Siewior71def422017-05-24 10:15:14 +02002074EXPORT_SYMBOL(__cpuhp_setup_state_cpuslocked);
2075
2076int __cpuhp_setup_state(enum cpuhp_state state,
2077 const char *name, bool invoke,
2078 int (*startup)(unsigned int cpu),
2079 int (*teardown)(unsigned int cpu),
2080 bool multi_instance)
2081{
2082 int ret;
2083
2084 cpus_read_lock();
2085 ret = __cpuhp_setup_state_cpuslocked(state, name, invoke, startup,
2086 teardown, multi_instance);
2087 cpus_read_unlock();
2088 return ret;
2089}
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00002090EXPORT_SYMBOL(__cpuhp_setup_state);
2091
Thomas Gleixnercf392d12016-08-12 19:49:39 +02002092int __cpuhp_state_remove_instance(enum cpuhp_state state,
2093 struct hlist_node *node, bool invoke)
2094{
2095 struct cpuhp_step *sp = cpuhp_get_step(state);
2096 int cpu;
2097
2098 BUG_ON(cpuhp_cb_check(state));
2099
2100 if (!sp->multi_instance)
2101 return -EINVAL;
2102
Thomas Gleixner8f553c42017-05-24 10:15:12 +02002103 cpus_read_lock();
Sebastian Andrzej Siewiordc434e052017-03-14 16:06:45 +01002104 mutex_lock(&cpuhp_state_mutex);
2105
Thomas Gleixnercf392d12016-08-12 19:49:39 +02002106 if (!invoke || !cpuhp_get_teardown_cb(state))
2107 goto remove;
2108 /*
2109 * Call the teardown callback for each present cpu depending
2110 * on the hotplug state of the cpu. This function is not
2111 * allowed to fail currently!
2112 */
2113 for_each_present_cpu(cpu) {
2114 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
2115 int cpustate = st->state;
2116
2117 if (cpustate >= state)
2118 cpuhp_issue_call(cpu, state, false, node);
2119 }
2120
2121remove:
Thomas Gleixnercf392d12016-08-12 19:49:39 +02002122 hlist_del(node);
2123 mutex_unlock(&cpuhp_state_mutex);
Thomas Gleixner8f553c42017-05-24 10:15:12 +02002124 cpus_read_unlock();
Thomas Gleixnercf392d12016-08-12 19:49:39 +02002125
2126 return 0;
2127}
2128EXPORT_SYMBOL_GPL(__cpuhp_state_remove_instance);
Sebastian Andrzej Siewiordc434e052017-03-14 16:06:45 +01002129
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00002130/**
Sebastian Andrzej Siewior71def422017-05-24 10:15:14 +02002131 * __cpuhp_remove_state_cpuslocked - Remove the callbacks for an hotplug machine state
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00002132 * @state: The state to remove
2133 * @invoke: If true, the teardown function is invoked for cpus where
2134 * cpu state >= @state
2135 *
Sebastian Andrzej Siewior71def422017-05-24 10:15:14 +02002136 * The caller needs to hold cpus read locked while calling this function.
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00002137 * The teardown callback is currently not allowed to fail. Think
2138 * about module removal!
2139 */
Sebastian Andrzej Siewior71def422017-05-24 10:15:14 +02002140void __cpuhp_remove_state_cpuslocked(enum cpuhp_state state, bool invoke)
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00002141{
Thomas Gleixnercf392d12016-08-12 19:49:39 +02002142 struct cpuhp_step *sp = cpuhp_get_step(state);
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00002143 int cpu;
2144
2145 BUG_ON(cpuhp_cb_check(state));
2146
Sebastian Andrzej Siewior71def422017-05-24 10:15:14 +02002147 lockdep_assert_cpus_held();
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00002148
Sebastian Andrzej Siewiordc434e052017-03-14 16:06:45 +01002149 mutex_lock(&cpuhp_state_mutex);
Thomas Gleixnercf392d12016-08-12 19:49:39 +02002150 if (sp->multi_instance) {
2151 WARN(!hlist_empty(&sp->list),
2152 "Error: Removing state %d which has instances left.\n",
2153 state);
2154 goto remove;
2155 }
2156
Thomas Gleixnera7246322016-08-12 19:49:38 +02002157 if (!invoke || !cpuhp_get_teardown_cb(state))
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00002158 goto remove;
2159
2160 /*
2161 * Call the teardown callback for each present cpu depending
2162 * on the hotplug state of the cpu. This function is not
2163 * allowed to fail currently!
2164 */
2165 for_each_present_cpu(cpu) {
2166 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
2167 int cpustate = st->state;
2168
2169 if (cpustate >= state)
Thomas Gleixnercf392d12016-08-12 19:49:39 +02002170 cpuhp_issue_call(cpu, state, false, NULL);
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00002171 }
2172remove:
Thomas Gleixnercf392d12016-08-12 19:49:39 +02002173 cpuhp_store_callbacks(state, NULL, NULL, NULL, false);
Sebastian Andrzej Siewiordc434e052017-03-14 16:06:45 +01002174 mutex_unlock(&cpuhp_state_mutex);
Sebastian Andrzej Siewior71def422017-05-24 10:15:14 +02002175}
2176EXPORT_SYMBOL(__cpuhp_remove_state_cpuslocked);
2177
2178void __cpuhp_remove_state(enum cpuhp_state state, bool invoke)
2179{
2180 cpus_read_lock();
2181 __cpuhp_remove_state_cpuslocked(state, invoke);
Thomas Gleixner8f553c42017-05-24 10:15:12 +02002182 cpus_read_unlock();
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00002183}
2184EXPORT_SYMBOL(__cpuhp_remove_state);
2185
Arnd Bergmanndc8d37e2019-12-10 20:56:04 +01002186#ifdef CONFIG_HOTPLUG_SMT
2187static void cpuhp_offline_cpu_device(unsigned int cpu)
2188{
2189 struct device *dev = get_cpu_device(cpu);
2190
2191 dev->offline = true;
2192 /* Tell user space about the state change */
2193 kobject_uevent(&dev->kobj, KOBJ_OFFLINE);
2194}
2195
2196static void cpuhp_online_cpu_device(unsigned int cpu)
2197{
2198 struct device *dev = get_cpu_device(cpu);
2199
2200 dev->offline = false;
2201 /* Tell user space about the state change */
2202 kobject_uevent(&dev->kobj, KOBJ_ONLINE);
2203}
2204
2205int cpuhp_smt_disable(enum cpuhp_smt_control ctrlval)
2206{
2207 int cpu, ret = 0;
2208
2209 cpu_maps_update_begin();
2210 for_each_online_cpu(cpu) {
2211 if (topology_is_primary_thread(cpu))
2212 continue;
2213 ret = cpu_down_maps_locked(cpu, CPUHP_OFFLINE);
2214 if (ret)
2215 break;
2216 /*
2217 * As this needs to hold the cpu maps lock it's impossible
2218 * to call device_offline() because that ends up calling
2219 * cpu_down() which takes cpu maps lock. cpu maps lock
2220 * needs to be held as this might race against in kernel
2221 * abusers of the hotplug machinery (thermal management).
2222 *
2223 * So nothing would update device:offline state. That would
2224 * leave the sysfs entry stale and prevent onlining after
2225 * smt control has been changed to 'off' again. This is
2226 * called under the sysfs hotplug lock, so it is properly
2227 * serialized against the regular offline usage.
2228 */
2229 cpuhp_offline_cpu_device(cpu);
2230 }
2231 if (!ret)
2232 cpu_smt_control = ctrlval;
2233 cpu_maps_update_done();
2234 return ret;
2235}
2236
2237int cpuhp_smt_enable(void)
2238{
2239 int cpu, ret = 0;
2240
2241 cpu_maps_update_begin();
2242 cpu_smt_control = CPU_SMT_ENABLED;
2243 for_each_present_cpu(cpu) {
2244 /* Skip online CPUs and CPUs on offline nodes */
2245 if (cpu_online(cpu) || !node_online(cpu_to_node(cpu)))
2246 continue;
2247 ret = _cpu_up(cpu, 0, CPUHP_ONLINE);
2248 if (ret)
2249 break;
2250 /* See comment in cpuhp_smt_disable() */
2251 cpuhp_online_cpu_device(cpu);
2252 }
2253 cpu_maps_update_done();
2254 return ret;
2255}
2256#endif
2257
Thomas Gleixner98f8cdc2016-02-26 18:43:31 +00002258#if defined(CONFIG_SYSFS) && defined(CONFIG_HOTPLUG_CPU)
YueHaibing1782dc82021-05-27 22:11:05 +08002259static ssize_t state_show(struct device *dev,
2260 struct device_attribute *attr, char *buf)
Thomas Gleixner98f8cdc2016-02-26 18:43:31 +00002261{
2262 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, dev->id);
2263
2264 return sprintf(buf, "%d\n", st->state);
2265}
YueHaibing1782dc82021-05-27 22:11:05 +08002266static DEVICE_ATTR_RO(state);
Thomas Gleixner98f8cdc2016-02-26 18:43:31 +00002267
YueHaibing1782dc82021-05-27 22:11:05 +08002268static ssize_t target_store(struct device *dev, struct device_attribute *attr,
2269 const char *buf, size_t count)
Thomas Gleixner757c9892016-02-26 18:43:32 +00002270{
2271 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, dev->id);
2272 struct cpuhp_step *sp;
2273 int target, ret;
2274
2275 ret = kstrtoint(buf, 10, &target);
2276 if (ret)
2277 return ret;
2278
2279#ifdef CONFIG_CPU_HOTPLUG_STATE_CONTROL
2280 if (target < CPUHP_OFFLINE || target > CPUHP_ONLINE)
2281 return -EINVAL;
2282#else
2283 if (target != CPUHP_OFFLINE && target != CPUHP_ONLINE)
2284 return -EINVAL;
2285#endif
2286
2287 ret = lock_device_hotplug_sysfs();
2288 if (ret)
2289 return ret;
2290
2291 mutex_lock(&cpuhp_state_mutex);
2292 sp = cpuhp_get_step(target);
2293 ret = !sp->name || sp->cant_stop ? -EINVAL : 0;
2294 mutex_unlock(&cpuhp_state_mutex);
2295 if (ret)
Sebastian Andrzej Siewior40da1b12017-06-02 16:27:14 +02002296 goto out;
Thomas Gleixner757c9892016-02-26 18:43:32 +00002297
2298 if (st->state < target)
Qais Yousef33c37362020-03-23 13:51:10 +00002299 ret = cpu_up(dev->id, target);
Thomas Gleixner757c9892016-02-26 18:43:32 +00002300 else
Qais Yousef33c37362020-03-23 13:51:10 +00002301 ret = cpu_down(dev->id, target);
Sebastian Andrzej Siewior40da1b12017-06-02 16:27:14 +02002302out:
Thomas Gleixner757c9892016-02-26 18:43:32 +00002303 unlock_device_hotplug();
2304 return ret ? ret : count;
2305}
2306
YueHaibing1782dc82021-05-27 22:11:05 +08002307static ssize_t target_show(struct device *dev,
2308 struct device_attribute *attr, char *buf)
Thomas Gleixner98f8cdc2016-02-26 18:43:31 +00002309{
2310 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, dev->id);
2311
2312 return sprintf(buf, "%d\n", st->target);
2313}
YueHaibing1782dc82021-05-27 22:11:05 +08002314static DEVICE_ATTR_RW(target);
Thomas Gleixner98f8cdc2016-02-26 18:43:31 +00002315
YueHaibing1782dc82021-05-27 22:11:05 +08002316static ssize_t fail_store(struct device *dev, struct device_attribute *attr,
2317 const char *buf, size_t count)
Peter Zijlstra1db49482017-09-20 19:00:21 +02002318{
2319 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, dev->id);
2320 struct cpuhp_step *sp;
2321 int fail, ret;
2322
2323 ret = kstrtoint(buf, 10, &fail);
2324 if (ret)
2325 return ret;
2326
Vincent Donnefort3ae70c22021-02-16 10:35:04 +00002327 if (fail == CPUHP_INVALID) {
2328 st->fail = fail;
2329 return count;
2330 }
2331
Eiichi Tsukata33d4a5a2019-06-27 11:47:32 +09002332 if (fail < CPUHP_OFFLINE || fail > CPUHP_ONLINE)
2333 return -EINVAL;
2334
Peter Zijlstra1db49482017-09-20 19:00:21 +02002335 /*
2336 * Cannot fail STARTING/DYING callbacks.
2337 */
2338 if (cpuhp_is_atomic_state(fail))
2339 return -EINVAL;
2340
2341 /*
Vincent Donnefort62f25062021-02-16 10:35:05 +00002342 * DEAD callbacks cannot fail...
2343 * ... neither can CPUHP_BRINGUP_CPU during hotunplug. The latter
2344 * triggering STARTING callbacks, a failure in this state would
2345 * hinder rollback.
2346 */
2347 if (fail <= CPUHP_BRINGUP_CPU && st->state > CPUHP_BRINGUP_CPU)
2348 return -EINVAL;
2349
2350 /*
Peter Zijlstra1db49482017-09-20 19:00:21 +02002351 * Cannot fail anything that doesn't have callbacks.
2352 */
2353 mutex_lock(&cpuhp_state_mutex);
2354 sp = cpuhp_get_step(fail);
2355 if (!sp->startup.single && !sp->teardown.single)
2356 ret = -EINVAL;
2357 mutex_unlock(&cpuhp_state_mutex);
2358 if (ret)
2359 return ret;
2360
2361 st->fail = fail;
2362
2363 return count;
2364}
2365
YueHaibing1782dc82021-05-27 22:11:05 +08002366static ssize_t fail_show(struct device *dev,
2367 struct device_attribute *attr, char *buf)
Peter Zijlstra1db49482017-09-20 19:00:21 +02002368{
2369 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, dev->id);
2370
2371 return sprintf(buf, "%d\n", st->fail);
2372}
2373
YueHaibing1782dc82021-05-27 22:11:05 +08002374static DEVICE_ATTR_RW(fail);
Peter Zijlstra1db49482017-09-20 19:00:21 +02002375
Thomas Gleixner98f8cdc2016-02-26 18:43:31 +00002376static struct attribute *cpuhp_cpu_attrs[] = {
2377 &dev_attr_state.attr,
2378 &dev_attr_target.attr,
Peter Zijlstra1db49482017-09-20 19:00:21 +02002379 &dev_attr_fail.attr,
Thomas Gleixner98f8cdc2016-02-26 18:43:31 +00002380 NULL
2381};
2382
Arvind Yadav993647a2017-06-29 17:40:47 +05302383static const struct attribute_group cpuhp_cpu_attr_group = {
Thomas Gleixner98f8cdc2016-02-26 18:43:31 +00002384 .attrs = cpuhp_cpu_attrs,
2385 .name = "hotplug",
2386 NULL
2387};
2388
YueHaibing1782dc82021-05-27 22:11:05 +08002389static ssize_t states_show(struct device *dev,
Thomas Gleixner98f8cdc2016-02-26 18:43:31 +00002390 struct device_attribute *attr, char *buf)
2391{
2392 ssize_t cur, res = 0;
2393 int i;
2394
2395 mutex_lock(&cpuhp_state_mutex);
Thomas Gleixner757c9892016-02-26 18:43:32 +00002396 for (i = CPUHP_OFFLINE; i <= CPUHP_ONLINE; i++) {
Thomas Gleixner98f8cdc2016-02-26 18:43:31 +00002397 struct cpuhp_step *sp = cpuhp_get_step(i);
2398
2399 if (sp->name) {
2400 cur = sprintf(buf, "%3d: %s\n", i, sp->name);
2401 buf += cur;
2402 res += cur;
2403 }
2404 }
2405 mutex_unlock(&cpuhp_state_mutex);
2406 return res;
2407}
YueHaibing1782dc82021-05-27 22:11:05 +08002408static DEVICE_ATTR_RO(states);
Thomas Gleixner98f8cdc2016-02-26 18:43:31 +00002409
2410static struct attribute *cpuhp_cpu_root_attrs[] = {
2411 &dev_attr_states.attr,
2412 NULL
2413};
2414
Arvind Yadav993647a2017-06-29 17:40:47 +05302415static const struct attribute_group cpuhp_cpu_root_attr_group = {
Thomas Gleixner98f8cdc2016-02-26 18:43:31 +00002416 .attrs = cpuhp_cpu_root_attrs,
2417 .name = "hotplug",
2418 NULL
2419};
2420
Thomas Gleixner05736e42018-05-29 17:48:27 +02002421#ifdef CONFIG_HOTPLUG_SMT
2422
Thomas Gleixner05736e42018-05-29 17:48:27 +02002423static ssize_t
Josh Poimboeufde7b77e2019-03-27 07:00:29 -05002424__store_smt_control(struct device *dev, struct device_attribute *attr,
2425 const char *buf, size_t count)
Thomas Gleixner05736e42018-05-29 17:48:27 +02002426{
2427 int ctrlval, ret;
2428
2429 if (sysfs_streq(buf, "on"))
2430 ctrlval = CPU_SMT_ENABLED;
2431 else if (sysfs_streq(buf, "off"))
2432 ctrlval = CPU_SMT_DISABLED;
2433 else if (sysfs_streq(buf, "forceoff"))
2434 ctrlval = CPU_SMT_FORCE_DISABLED;
2435 else
2436 return -EINVAL;
2437
2438 if (cpu_smt_control == CPU_SMT_FORCE_DISABLED)
2439 return -EPERM;
2440
2441 if (cpu_smt_control == CPU_SMT_NOT_SUPPORTED)
2442 return -ENODEV;
2443
2444 ret = lock_device_hotplug_sysfs();
2445 if (ret)
2446 return ret;
2447
2448 if (ctrlval != cpu_smt_control) {
2449 switch (ctrlval) {
2450 case CPU_SMT_ENABLED:
Thomas Gleixner215af542018-07-07 11:40:18 +02002451 ret = cpuhp_smt_enable();
Thomas Gleixner05736e42018-05-29 17:48:27 +02002452 break;
2453 case CPU_SMT_DISABLED:
2454 case CPU_SMT_FORCE_DISABLED:
2455 ret = cpuhp_smt_disable(ctrlval);
2456 break;
2457 }
2458 }
2459
2460 unlock_device_hotplug();
2461 return ret ? ret : count;
2462}
Josh Poimboeufde7b77e2019-03-27 07:00:29 -05002463
2464#else /* !CONFIG_HOTPLUG_SMT */
2465static ssize_t
2466__store_smt_control(struct device *dev, struct device_attribute *attr,
2467 const char *buf, size_t count)
2468{
2469 return -ENODEV;
2470}
2471#endif /* CONFIG_HOTPLUG_SMT */
2472
2473static const char *smt_states[] = {
2474 [CPU_SMT_ENABLED] = "on",
2475 [CPU_SMT_DISABLED] = "off",
2476 [CPU_SMT_FORCE_DISABLED] = "forceoff",
2477 [CPU_SMT_NOT_SUPPORTED] = "notsupported",
2478 [CPU_SMT_NOT_IMPLEMENTED] = "notimplemented",
2479};
2480
YueHaibing1782dc82021-05-27 22:11:05 +08002481static ssize_t control_show(struct device *dev,
2482 struct device_attribute *attr, char *buf)
Josh Poimboeufde7b77e2019-03-27 07:00:29 -05002483{
2484 const char *state = smt_states[cpu_smt_control];
2485
2486 return snprintf(buf, PAGE_SIZE - 2, "%s\n", state);
2487}
2488
YueHaibing1782dc82021-05-27 22:11:05 +08002489static ssize_t control_store(struct device *dev, struct device_attribute *attr,
2490 const char *buf, size_t count)
Josh Poimboeufde7b77e2019-03-27 07:00:29 -05002491{
2492 return __store_smt_control(dev, attr, buf, count);
2493}
YueHaibing1782dc82021-05-27 22:11:05 +08002494static DEVICE_ATTR_RW(control);
Thomas Gleixner05736e42018-05-29 17:48:27 +02002495
YueHaibing1782dc82021-05-27 22:11:05 +08002496static ssize_t active_show(struct device *dev,
2497 struct device_attribute *attr, char *buf)
Thomas Gleixner05736e42018-05-29 17:48:27 +02002498{
Josh Poimboeufde7b77e2019-03-27 07:00:29 -05002499 return snprintf(buf, PAGE_SIZE - 2, "%d\n", sched_smt_active());
Thomas Gleixner05736e42018-05-29 17:48:27 +02002500}
YueHaibing1782dc82021-05-27 22:11:05 +08002501static DEVICE_ATTR_RO(active);
Thomas Gleixner05736e42018-05-29 17:48:27 +02002502
2503static struct attribute *cpuhp_smt_attrs[] = {
2504 &dev_attr_control.attr,
2505 &dev_attr_active.attr,
2506 NULL
2507};
2508
2509static const struct attribute_group cpuhp_smt_attr_group = {
2510 .attrs = cpuhp_smt_attrs,
2511 .name = "smt",
2512 NULL
2513};
2514
Josh Poimboeufde7b77e2019-03-27 07:00:29 -05002515static int __init cpu_smt_sysfs_init(void)
Thomas Gleixner05736e42018-05-29 17:48:27 +02002516{
Thomas Gleixner05736e42018-05-29 17:48:27 +02002517 return sysfs_create_group(&cpu_subsys.dev_root->kobj,
2518 &cpuhp_smt_attr_group);
2519}
2520
Thomas Gleixner98f8cdc2016-02-26 18:43:31 +00002521static int __init cpuhp_sysfs_init(void)
2522{
2523 int cpu, ret;
2524
Josh Poimboeufde7b77e2019-03-27 07:00:29 -05002525 ret = cpu_smt_sysfs_init();
Thomas Gleixner05736e42018-05-29 17:48:27 +02002526 if (ret)
2527 return ret;
2528
Thomas Gleixner98f8cdc2016-02-26 18:43:31 +00002529 ret = sysfs_create_group(&cpu_subsys.dev_root->kobj,
2530 &cpuhp_cpu_root_attr_group);
2531 if (ret)
2532 return ret;
2533
2534 for_each_possible_cpu(cpu) {
2535 struct device *dev = get_cpu_device(cpu);
2536
2537 if (!dev)
2538 continue;
2539 ret = sysfs_create_group(&dev->kobj, &cpuhp_cpu_attr_group);
2540 if (ret)
2541 return ret;
2542 }
2543 return 0;
2544}
2545device_initcall(cpuhp_sysfs_init);
Josh Poimboeufde7b77e2019-03-27 07:00:29 -05002546#endif /* CONFIG_SYSFS && CONFIG_HOTPLUG_CPU */
Thomas Gleixner98f8cdc2016-02-26 18:43:31 +00002547
Linus Torvaldse56b3bc2008-07-28 11:32:33 -07002548/*
2549 * cpu_bit_bitmap[] is a special, "compressed" data structure that
2550 * represents all NR_CPUS bits binary values of 1<<nr.
2551 *
Rusty Russelle0b582e2009-01-01 10:12:28 +10302552 * It is used by cpumask_of() to get a constant address to a CPU
Linus Torvaldse56b3bc2008-07-28 11:32:33 -07002553 * mask value that has a single bit set only.
2554 */
Mike Travisb8d317d2008-07-24 18:21:29 -07002555
Linus Torvaldse56b3bc2008-07-28 11:32:33 -07002556/* cpu_bit_bitmap[0] is empty - so we can back into it */
Michael Rodriguez4d519852011-03-22 16:34:07 -07002557#define MASK_DECLARE_1(x) [x+1][0] = (1UL << (x))
Linus Torvaldse56b3bc2008-07-28 11:32:33 -07002558#define MASK_DECLARE_2(x) MASK_DECLARE_1(x), MASK_DECLARE_1(x+1)
2559#define MASK_DECLARE_4(x) MASK_DECLARE_2(x), MASK_DECLARE_2(x+2)
2560#define MASK_DECLARE_8(x) MASK_DECLARE_4(x), MASK_DECLARE_4(x+4)
Mike Travisb8d317d2008-07-24 18:21:29 -07002561
Linus Torvaldse56b3bc2008-07-28 11:32:33 -07002562const unsigned long cpu_bit_bitmap[BITS_PER_LONG+1][BITS_TO_LONGS(NR_CPUS)] = {
Mike Travisb8d317d2008-07-24 18:21:29 -07002563
Linus Torvaldse56b3bc2008-07-28 11:32:33 -07002564 MASK_DECLARE_8(0), MASK_DECLARE_8(8),
2565 MASK_DECLARE_8(16), MASK_DECLARE_8(24),
2566#if BITS_PER_LONG > 32
2567 MASK_DECLARE_8(32), MASK_DECLARE_8(40),
2568 MASK_DECLARE_8(48), MASK_DECLARE_8(56),
Mike Travisb8d317d2008-07-24 18:21:29 -07002569#endif
2570};
Linus Torvaldse56b3bc2008-07-28 11:32:33 -07002571EXPORT_SYMBOL_GPL(cpu_bit_bitmap);
Rusty Russell2d3854a2008-11-05 13:39:10 +11002572
2573const DECLARE_BITMAP(cpu_all_bits, NR_CPUS) = CPU_BITS_ALL;
2574EXPORT_SYMBOL(cpu_all_bits);
Rusty Russellb3199c02008-12-30 09:05:14 +10302575
2576#ifdef CONFIG_INIT_ALL_POSSIBLE
Rasmus Villemoes4b804c82016-01-20 15:00:19 -08002577struct cpumask __cpu_possible_mask __read_mostly
Rasmus Villemoesc4c54dd2016-01-20 15:00:16 -08002578 = {CPU_BITS_ALL};
Rusty Russellb3199c02008-12-30 09:05:14 +10302579#else
Rasmus Villemoes4b804c82016-01-20 15:00:19 -08002580struct cpumask __cpu_possible_mask __read_mostly;
Rusty Russellb3199c02008-12-30 09:05:14 +10302581#endif
Rasmus Villemoes4b804c82016-01-20 15:00:19 -08002582EXPORT_SYMBOL(__cpu_possible_mask);
Rusty Russellb3199c02008-12-30 09:05:14 +10302583
Rasmus Villemoes4b804c82016-01-20 15:00:19 -08002584struct cpumask __cpu_online_mask __read_mostly;
2585EXPORT_SYMBOL(__cpu_online_mask);
Rusty Russellb3199c02008-12-30 09:05:14 +10302586
Rasmus Villemoes4b804c82016-01-20 15:00:19 -08002587struct cpumask __cpu_present_mask __read_mostly;
2588EXPORT_SYMBOL(__cpu_present_mask);
Rusty Russellb3199c02008-12-30 09:05:14 +10302589
Rasmus Villemoes4b804c82016-01-20 15:00:19 -08002590struct cpumask __cpu_active_mask __read_mostly;
2591EXPORT_SYMBOL(__cpu_active_mask);
Rusty Russell3fa41522008-12-30 09:05:16 +10302592
Peter Zijlstrae40f74c2021-01-19 18:43:45 +01002593struct cpumask __cpu_dying_mask __read_mostly;
2594EXPORT_SYMBOL(__cpu_dying_mask);
2595
Thomas Gleixner0c09ab92019-07-09 16:23:40 +02002596atomic_t __num_online_cpus __read_mostly;
2597EXPORT_SYMBOL(__num_online_cpus);
2598
Rusty Russell3fa41522008-12-30 09:05:16 +10302599void init_cpu_present(const struct cpumask *src)
2600{
Rasmus Villemoesc4c54dd2016-01-20 15:00:16 -08002601 cpumask_copy(&__cpu_present_mask, src);
Rusty Russell3fa41522008-12-30 09:05:16 +10302602}
2603
2604void init_cpu_possible(const struct cpumask *src)
2605{
Rasmus Villemoesc4c54dd2016-01-20 15:00:16 -08002606 cpumask_copy(&__cpu_possible_mask, src);
Rusty Russell3fa41522008-12-30 09:05:16 +10302607}
2608
2609void init_cpu_online(const struct cpumask *src)
2610{
Rasmus Villemoesc4c54dd2016-01-20 15:00:16 -08002611 cpumask_copy(&__cpu_online_mask, src);
Rusty Russell3fa41522008-12-30 09:05:16 +10302612}
Thomas Gleixnercff7d372016-02-26 18:43:28 +00002613
Thomas Gleixner0c09ab92019-07-09 16:23:40 +02002614void set_cpu_online(unsigned int cpu, bool online)
2615{
2616 /*
2617 * atomic_inc/dec() is required to handle the horrid abuse of this
2618 * function by the reboot and kexec code which invoke it from
2619 * IPI/NMI broadcasts when shutting down CPUs. Invocation from
2620 * regular CPU hotplug is properly serialized.
2621 *
2622 * Note, that the fact that __num_online_cpus is of type atomic_t
2623 * does not protect readers which are not serialized against
2624 * concurrent hotplug operations.
2625 */
2626 if (online) {
2627 if (!cpumask_test_and_set_cpu(cpu, &__cpu_online_mask))
2628 atomic_inc(&__num_online_cpus);
2629 } else {
2630 if (cpumask_test_and_clear_cpu(cpu, &__cpu_online_mask))
2631 atomic_dec(&__num_online_cpus);
2632 }
2633}
2634
Thomas Gleixnercff7d372016-02-26 18:43:28 +00002635/*
2636 * Activate the first processor.
2637 */
2638void __init boot_cpu_init(void)
2639{
2640 int cpu = smp_processor_id();
2641
2642 /* Mark the boot cpu "present", "online" etc for SMP and UP case */
2643 set_cpu_online(cpu, true);
2644 set_cpu_active(cpu, true);
2645 set_cpu_present(cpu, true);
2646 set_cpu_possible(cpu, true);
Peter Zijlstra8ce371f2017-03-20 12:26:55 +01002647
2648#ifdef CONFIG_SMP
2649 __boot_cpu_id = cpu;
2650#endif
Thomas Gleixnercff7d372016-02-26 18:43:28 +00002651}
2652
2653/*
2654 * Must be called _AFTER_ setting up the per_cpu areas
2655 */
Linus Torvaldsb5b14042018-08-12 12:19:42 -07002656void __init boot_cpu_hotplug_init(void)
Thomas Gleixnercff7d372016-02-26 18:43:28 +00002657{
Abel Vesa269777a2018-08-15 00:26:00 +03002658#ifdef CONFIG_SMP
Thomas Gleixnere797bda2019-07-22 20:47:16 +02002659 cpumask_set_cpu(smp_processor_id(), &cpus_booted_once_mask);
Abel Vesa269777a2018-08-15 00:26:00 +03002660#endif
Thomas Gleixner0cc3cd22018-06-29 16:05:48 +02002661 this_cpu_write(cpuhp_state.state, CPUHP_ONLINE);
Thomas Gleixnercff7d372016-02-26 18:43:28 +00002662}
Josh Poimboeuf98af8452019-04-12 15:39:28 -05002663
Tyler Hicks731dc9d2019-11-04 12:22:02 +01002664/*
2665 * These are used for a global "mitigations=" cmdline option for toggling
2666 * optional CPU mitigations.
2667 */
2668enum cpu_mitigations {
2669 CPU_MITIGATIONS_OFF,
2670 CPU_MITIGATIONS_AUTO,
2671 CPU_MITIGATIONS_AUTO_NOSMT,
2672};
2673
2674static enum cpu_mitigations cpu_mitigations __ro_after_init =
2675 CPU_MITIGATIONS_AUTO;
Josh Poimboeuf98af8452019-04-12 15:39:28 -05002676
2677static int __init mitigations_parse_cmdline(char *arg)
2678{
2679 if (!strcmp(arg, "off"))
2680 cpu_mitigations = CPU_MITIGATIONS_OFF;
2681 else if (!strcmp(arg, "auto"))
2682 cpu_mitigations = CPU_MITIGATIONS_AUTO;
2683 else if (!strcmp(arg, "auto,nosmt"))
2684 cpu_mitigations = CPU_MITIGATIONS_AUTO_NOSMT;
Geert Uytterhoeven1bf72722019-05-16 09:09:35 +02002685 else
2686 pr_crit("Unsupported mitigations=%s, system may still be vulnerable\n",
2687 arg);
Josh Poimboeuf98af8452019-04-12 15:39:28 -05002688
2689 return 0;
2690}
2691early_param("mitigations", mitigations_parse_cmdline);
Tyler Hicks731dc9d2019-11-04 12:22:02 +01002692
2693/* mitigations=off */
2694bool cpu_mitigations_off(void)
2695{
2696 return cpu_mitigations == CPU_MITIGATIONS_OFF;
2697}
2698EXPORT_SYMBOL_GPL(cpu_mitigations_off);
2699
2700/* mitigations=auto,nosmt */
2701bool cpu_mitigations_auto_nosmt(void)
2702{
2703 return cpu_mitigations == CPU_MITIGATIONS_AUTO_NOSMT;
2704}
2705EXPORT_SYMBOL_GPL(cpu_mitigations_auto_nosmt);