blob: 9f4c88f9b1b3f4951649f5330e4a6ceefcb573f7 [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 */
6#include <linux/proc_fs.h>
7#include <linux/smp.h>
8#include <linux/init.h>
9#include <linux/notifier.h>
10#include <linux/sched.h>
Thomas Gleixnera3c901b2018-11-25 19:33:39 +010011#include <linux/sched/smt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/unistd.h>
13#include <linux/cpu.h>
Anton Vorontsovcb792952012-05-31 16:26:22 -070014#include <linux/oom.h>
15#include <linux/rcupdate.h>
Paul Gortmaker9984de12011-05-23 14:51:41 -040016#include <linux/export.h>
Anton Vorontsove4cc2f82012-05-31 16:26:26 -070017#include <linux/bug.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/kthread.h>
19#include <linux/stop_machine.h>
Ingo Molnar81615b62006-06-26 00:24:32 -070020#include <linux/mutex.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090021#include <linux/gfp.h>
Srivatsa S. Bhat79cfbdf2011-11-03 00:59:25 +010022#include <linux/suspend.h>
Gautham R. Shenoya19423b2014-03-11 02:04:03 +053023#include <linux/lockdep.h>
Preeti U Murthy345527b2015-03-30 14:59:19 +053024#include <linux/tick.h>
Thomas Gleixnera8994182015-07-05 17:12:30 +000025#include <linux/irq.h>
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +000026#include <linux/smpboot.h>
Richard Weinbergere6d49892016-08-18 14:57:17 +020027#include <linux/relay.h>
Sebastian Andrzej Siewior6731d4f2016-08-23 14:53:19 +020028#include <linux/slab.h>
Maria Yue90f8e12017-09-21 11:30:53 +080029#include <linux/highmem.h>
Thomas Gleixnercff7d372016-02-26 18:43:28 +000030
Todd E Brandtbb3632c2014-06-06 05:40:17 -070031#include <trace/events/power.h>
Thomas Gleixnercff7d372016-02-26 18:43:28 +000032#define CREATE_TRACE_POINTS
33#include <trace/events/cpuhp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Thomas Gleixner38498a62012-04-20 13:05:44 +000035#include "smpboot.h"
36
Thomas Gleixnercff7d372016-02-26 18:43:28 +000037/**
38 * cpuhp_cpu_state - Per cpu hotplug state storage
39 * @state: The current cpu state
40 * @target: The target state
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +000041 * @thread: Pointer to the hotplug thread
42 * @should_run: Thread should execute
Sebastian Andrzej Siewior3b9d6da2016-04-08 14:40:15 +020043 * @rollback: Perform a rollback
Thomas Gleixnera7246322016-08-12 19:49:38 +020044 * @single: Single callback invocation
45 * @bringup: Single callback bringup or teardown selector
46 * @cb_state: The state for a single callback (install/uninstall)
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +000047 * @result: Result of the operation
48 * @done: Signal completion to the issuer of the task
Thomas Gleixnercff7d372016-02-26 18:43:28 +000049 */
50struct cpuhp_cpu_state {
51 enum cpuhp_state state;
52 enum cpuhp_state target;
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +000053#ifdef CONFIG_SMP
54 struct task_struct *thread;
55 bool should_run;
Sebastian Andrzej Siewior3b9d6da2016-04-08 14:40:15 +020056 bool rollback;
Thomas Gleixnera7246322016-08-12 19:49:38 +020057 bool single;
58 bool bringup;
Thomas Gleixner8438e492018-06-29 16:05:48 +020059 bool booted_once;
Thomas Gleixnercf392d12016-08-12 19:49:39 +020060 struct hlist_node *node;
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +000061 enum cpuhp_state cb_state;
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +000062 int result;
63 struct completion done;
64#endif
Thomas Gleixnercff7d372016-02-26 18:43:28 +000065};
66
67static DEFINE_PER_CPU(struct cpuhp_cpu_state, cpuhp_state);
68
Thomas Gleixnerc198e222017-05-24 10:15:43 +020069#if defined(CONFIG_LOCKDEP) && defined(CONFIG_SMP)
70static struct lock_class_key cpuhp_state_key;
71static struct lockdep_map cpuhp_state_lock_map =
72 STATIC_LOCKDEP_MAP_INIT("cpuhp_state", &cpuhp_state_key);
73#endif
74
Thomas Gleixnercff7d372016-02-26 18:43:28 +000075/**
76 * cpuhp_step - Hotplug state machine step
77 * @name: Name of the step
78 * @startup: Startup function of the step
79 * @teardown: Teardown function of the step
80 * @skip_onerr: Do not invoke the functions on error rollback
81 * Will go away once the notifiers are gone
Thomas Gleixner757c9892016-02-26 18:43:32 +000082 * @cant_stop: Bringup/teardown can't be stopped at this step
Thomas Gleixnercff7d372016-02-26 18:43:28 +000083 */
84struct cpuhp_step {
Thomas Gleixnercf392d12016-08-12 19:49:39 +020085 const char *name;
86 union {
Thomas Gleixner3c1627e2016-09-05 15:28:36 +020087 int (*single)(unsigned int cpu);
88 int (*multi)(unsigned int cpu,
89 struct hlist_node *node);
90 } startup;
Thomas Gleixnercf392d12016-08-12 19:49:39 +020091 union {
Thomas Gleixner3c1627e2016-09-05 15:28:36 +020092 int (*single)(unsigned int cpu);
93 int (*multi)(unsigned int cpu,
94 struct hlist_node *node);
95 } teardown;
Thomas Gleixnercf392d12016-08-12 19:49:39 +020096 struct hlist_head list;
97 bool skip_onerr;
98 bool cant_stop;
99 bool multi_instance;
Thomas Gleixnercff7d372016-02-26 18:43:28 +0000100};
101
Thomas Gleixner98f8cdc2016-02-26 18:43:31 +0000102static DEFINE_MUTEX(cpuhp_state_mutex);
Thomas Gleixnercff7d372016-02-26 18:43:28 +0000103static struct cpuhp_step cpuhp_bp_states[];
Thomas Gleixner4baa0af2016-02-26 18:43:29 +0000104static struct cpuhp_step cpuhp_ap_states[];
Thomas Gleixnercff7d372016-02-26 18:43:28 +0000105
Thomas Gleixnera7246322016-08-12 19:49:38 +0200106static bool cpuhp_is_ap_state(enum cpuhp_state state)
107{
108 /*
109 * The extra check for CPUHP_TEARDOWN_CPU is only for documentation
110 * purposes as that state is handled explicitly in cpu_down.
111 */
112 return state > CPUHP_BRINGUP_CPU && state != CPUHP_TEARDOWN_CPU;
113}
114
115static struct cpuhp_step *cpuhp_get_step(enum cpuhp_state state)
116{
117 struct cpuhp_step *sp;
118
119 sp = cpuhp_is_ap_state(state) ? cpuhp_ap_states : cpuhp_bp_states;
120 return sp + state;
121}
122
Thomas Gleixnercff7d372016-02-26 18:43:28 +0000123/**
124 * cpuhp_invoke_callback _ Invoke the callbacks for a given state
125 * @cpu: The cpu for which the callback should be invoked
126 * @step: The step in the state machine
Thomas Gleixnera7246322016-08-12 19:49:38 +0200127 * @bringup: True if the bringup callback should be invoked
Thomas Gleixnercff7d372016-02-26 18:43:28 +0000128 *
Thomas Gleixnercf392d12016-08-12 19:49:39 +0200129 * Called from cpu hotplug and from the state register machinery.
Thomas Gleixnercff7d372016-02-26 18:43:28 +0000130 */
Thomas Gleixnera7246322016-08-12 19:49:38 +0200131static int cpuhp_invoke_callback(unsigned int cpu, enum cpuhp_state state,
Thomas Gleixnercf392d12016-08-12 19:49:39 +0200132 bool bringup, struct hlist_node *node)
Thomas Gleixnercff7d372016-02-26 18:43:28 +0000133{
134 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
Thomas Gleixnera7246322016-08-12 19:49:38 +0200135 struct cpuhp_step *step = cpuhp_get_step(state);
Thomas Gleixnercf392d12016-08-12 19:49:39 +0200136 int (*cbm)(unsigned int cpu, struct hlist_node *node);
137 int (*cb)(unsigned int cpu);
138 int ret, cnt;
Thomas Gleixnercff7d372016-02-26 18:43:28 +0000139
Thomas Gleixnercf392d12016-08-12 19:49:39 +0200140 if (!step->multi_instance) {
Thomas Gleixner3c1627e2016-09-05 15:28:36 +0200141 cb = bringup ? step->startup.single : step->teardown.single;
Thomas Gleixnercf392d12016-08-12 19:49:39 +0200142 if (!cb)
143 return 0;
Thomas Gleixnera7246322016-08-12 19:49:38 +0200144 trace_cpuhp_enter(cpu, st->target, state, cb);
Thomas Gleixnercff7d372016-02-26 18:43:28 +0000145 ret = cb(cpu);
Thomas Gleixnera7246322016-08-12 19:49:38 +0200146 trace_cpuhp_exit(cpu, st->state, state, ret);
Thomas Gleixnercf392d12016-08-12 19:49:39 +0200147 return ret;
148 }
Thomas Gleixner3c1627e2016-09-05 15:28:36 +0200149 cbm = bringup ? step->startup.multi : step->teardown.multi;
Thomas Gleixnercf392d12016-08-12 19:49:39 +0200150 if (!cbm)
151 return 0;
152
153 /* Single invocation for instance add/remove */
154 if (node) {
155 trace_cpuhp_multi_enter(cpu, st->target, state, cbm, node);
156 ret = cbm(cpu, node);
157 trace_cpuhp_exit(cpu, st->state, state, ret);
158 return ret;
159 }
160
161 /* State transition. Invoke on all instances */
162 cnt = 0;
163 hlist_for_each(node, &step->list) {
164 trace_cpuhp_multi_enter(cpu, st->target, state, cbm, node);
165 ret = cbm(cpu, node);
166 trace_cpuhp_exit(cpu, st->state, state, ret);
167 if (ret)
168 goto err;
169 cnt++;
170 }
171 return 0;
172err:
173 /* Rollback the instances if one failed */
Thomas Gleixner3c1627e2016-09-05 15:28:36 +0200174 cbm = !bringup ? step->startup.multi : step->teardown.multi;
Thomas Gleixnercf392d12016-08-12 19:49:39 +0200175 if (!cbm)
176 return ret;
177
178 hlist_for_each(node, &step->list) {
179 if (!cnt--)
180 break;
181 cbm(cpu, node);
Thomas Gleixnercff7d372016-02-26 18:43:28 +0000182 }
183 return ret;
184}
185
Rusty Russell98a79d62008-12-13 21:19:41 +1030186#ifdef CONFIG_SMP
Rusty Russellb3199c02008-12-30 09:05:14 +1030187/* Serializes the updates to cpu_online_mask, cpu_present_mask */
Linus Torvaldsaa953872006-07-23 12:12:16 -0700188static DEFINE_MUTEX(cpu_add_remove_lock);
Thomas Gleixner090e77c2016-02-26 18:43:23 +0000189bool cpuhp_tasks_frozen;
190EXPORT_SYMBOL_GPL(cpuhp_tasks_frozen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Lai Jiangshan79a6cde2010-05-26 14:43:36 -0700192/*
Srivatsa S. Bhat93ae4f92014-03-11 02:04:14 +0530193 * The following two APIs (cpu_maps_update_begin/done) must be used when
194 * attempting to serialize the updates to cpu_online_mask & cpu_present_mask.
195 * The APIs cpu_notifier_register_begin/done() must be used to protect CPU
196 * hotplug callback (un)registration performed using __register_cpu_notifier()
197 * or __unregister_cpu_notifier().
Lai Jiangshan79a6cde2010-05-26 14:43:36 -0700198 */
199void cpu_maps_update_begin(void)
200{
201 mutex_lock(&cpu_add_remove_lock);
202}
Srivatsa S. Bhat93ae4f92014-03-11 02:04:14 +0530203EXPORT_SYMBOL(cpu_notifier_register_begin);
Lai Jiangshan79a6cde2010-05-26 14:43:36 -0700204
205void cpu_maps_update_done(void)
206{
207 mutex_unlock(&cpu_add_remove_lock);
208}
Srivatsa S. Bhat93ae4f92014-03-11 02:04:14 +0530209EXPORT_SYMBOL(cpu_notifier_register_done);
Lai Jiangshan79a6cde2010-05-26 14:43:36 -0700210
Daniel J Blueman5c113fb2010-06-01 12:15:11 +0100211static RAW_NOTIFIER_HEAD(cpu_chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700213/* If set, cpu_up and cpu_down will return -EBUSY and do nothing.
214 * Should always be manipulated under cpu_add_remove_lock
215 */
216static int cpu_hotplug_disabled;
217
Lai Jiangshan79a6cde2010-05-26 14:43:36 -0700218#ifdef CONFIG_HOTPLUG_CPU
219
Gautham R Shenoyd2219382008-01-25 21:08:01 +0100220static struct {
221 struct task_struct *active_writer;
David Hildenbrand87af9e72014-12-12 10:11:44 +0100222 /* wait queue to wake up the active_writer */
223 wait_queue_head_t wq;
224 /* verifies that no writer will get active while readers are active */
225 struct mutex lock;
Gautham R Shenoyd2219382008-01-25 21:08:01 +0100226 /*
227 * Also blocks the new readers during
228 * an ongoing cpu hotplug operation.
229 */
David Hildenbrand87af9e72014-12-12 10:11:44 +0100230 atomic_t refcount;
Gautham R. Shenoya19423b2014-03-11 02:04:03 +0530231
232#ifdef CONFIG_DEBUG_LOCK_ALLOC
233 struct lockdep_map dep_map;
234#endif
Linus Torvalds31950eb2009-06-22 21:18:12 -0700235} cpu_hotplug = {
236 .active_writer = NULL,
David Hildenbrand87af9e72014-12-12 10:11:44 +0100237 .wq = __WAIT_QUEUE_HEAD_INITIALIZER(cpu_hotplug.wq),
Linus Torvalds31950eb2009-06-22 21:18:12 -0700238 .lock = __MUTEX_INITIALIZER(cpu_hotplug.lock),
Gautham R. Shenoya19423b2014-03-11 02:04:03 +0530239#ifdef CONFIG_DEBUG_LOCK_ALLOC
Joonas Lahtinena705e072016-10-12 13:18:56 +0300240 .dep_map = STATIC_LOCKDEP_MAP_INIT("cpu_hotplug.dep_map", &cpu_hotplug.dep_map),
Gautham R. Shenoya19423b2014-03-11 02:04:03 +0530241#endif
Linus Torvalds31950eb2009-06-22 21:18:12 -0700242};
Gautham R Shenoyd2219382008-01-25 21:08:01 +0100243
Gautham R. Shenoya19423b2014-03-11 02:04:03 +0530244/* Lockdep annotations for get/put_online_cpus() and cpu_hotplug_begin/end() */
245#define cpuhp_lock_acquire_read() lock_map_acquire_read(&cpu_hotplug.dep_map)
Paul E. McKenneydd56af42014-08-25 20:25:06 -0700246#define cpuhp_lock_acquire_tryread() \
247 lock_map_acquire_tryread(&cpu_hotplug.dep_map)
Gautham R. Shenoya19423b2014-03-11 02:04:03 +0530248#define cpuhp_lock_acquire() lock_map_acquire(&cpu_hotplug.dep_map)
249#define cpuhp_lock_release() lock_map_release(&cpu_hotplug.dep_map)
250
Prateek Soode9e7b752017-09-08 13:10:55 +0530251void cpu_hotplug_mutex_held(void)
252{
253 lockdep_assert_held(&cpu_hotplug.lock);
254}
255EXPORT_SYMBOL(cpu_hotplug_mutex_held);
Paul E. McKenney62db99f2014-10-22 14:51:49 -0700256
Gautham R Shenoy86ef5c92008-01-25 21:08:02 +0100257void get_online_cpus(void)
Ashok Raja9d9baa2005-11-28 13:43:46 -0800258{
Gautham R Shenoyd2219382008-01-25 21:08:01 +0100259 might_sleep();
260 if (cpu_hotplug.active_writer == current)
Linus Torvaldsaa953872006-07-23 12:12:16 -0700261 return;
Gautham R. Shenoya19423b2014-03-11 02:04:03 +0530262 cpuhp_lock_acquire_read();
Gautham R Shenoyd2219382008-01-25 21:08:01 +0100263 mutex_lock(&cpu_hotplug.lock);
David Hildenbrand87af9e72014-12-12 10:11:44 +0100264 atomic_inc(&cpu_hotplug.refcount);
Gautham R Shenoyd2219382008-01-25 21:08:01 +0100265 mutex_unlock(&cpu_hotplug.lock);
Ashok Raja9d9baa2005-11-28 13:43:46 -0800266}
Gautham R Shenoy86ef5c92008-01-25 21:08:02 +0100267EXPORT_SYMBOL_GPL(get_online_cpus);
Ashok Raj90d45d12005-11-08 21:34:24 -0800268
Gautham R Shenoy86ef5c92008-01-25 21:08:02 +0100269void put_online_cpus(void)
Ashok Raja9d9baa2005-11-28 13:43:46 -0800270{
David Hildenbrand87af9e72014-12-12 10:11:44 +0100271 int refcount;
272
Gautham R Shenoyd2219382008-01-25 21:08:01 +0100273 if (cpu_hotplug.active_writer == current)
Linus Torvaldsaa953872006-07-23 12:12:16 -0700274 return;
Srivatsa S. Bhat075663d2012-10-08 16:28:20 -0700275
David Hildenbrand87af9e72014-12-12 10:11:44 +0100276 refcount = atomic_dec_return(&cpu_hotplug.refcount);
277 if (WARN_ON(refcount < 0)) /* try to fix things up */
278 atomic_inc(&cpu_hotplug.refcount);
Srivatsa S. Bhat075663d2012-10-08 16:28:20 -0700279
David Hildenbrand87af9e72014-12-12 10:11:44 +0100280 if (refcount <= 0 && waitqueue_active(&cpu_hotplug.wq))
281 wake_up(&cpu_hotplug.wq);
282
Gautham R. Shenoya19423b2014-03-11 02:04:03 +0530283 cpuhp_lock_release();
Gautham R Shenoyd2219382008-01-25 21:08:01 +0100284
Ashok Raja9d9baa2005-11-28 13:43:46 -0800285}
Gautham R Shenoy86ef5c92008-01-25 21:08:02 +0100286EXPORT_SYMBOL_GPL(put_online_cpus);
Ashok Raja9d9baa2005-11-28 13:43:46 -0800287
Gautham R Shenoyd2219382008-01-25 21:08:01 +0100288/*
289 * This ensures that the hotplug operation can begin only when the
290 * refcount goes to zero.
291 *
292 * Note that during a cpu-hotplug operation, the new readers, if any,
293 * will be blocked by the cpu_hotplug.lock
294 *
Oleg Nesterovd2ba7e22008-04-29 01:00:29 -0700295 * Since cpu_hotplug_begin() is always called after invoking
296 * cpu_maps_update_begin(), we can be sure that only one writer is active.
Gautham R Shenoyd2219382008-01-25 21:08:01 +0100297 *
298 * Note that theoretically, there is a possibility of a livelock:
299 * - Refcount goes to zero, last reader wakes up the sleeping
300 * writer.
301 * - Last reader unlocks the cpu_hotplug.lock.
302 * - A new reader arrives at this moment, bumps up the refcount.
303 * - The writer acquires the cpu_hotplug.lock finds the refcount
304 * non zero and goes to sleep again.
305 *
306 * However, this is very difficult to achieve in practice since
Gautham R Shenoy86ef5c92008-01-25 21:08:02 +0100307 * get_online_cpus() not an api which is called all that often.
Gautham R Shenoyd2219382008-01-25 21:08:01 +0100308 *
309 */
Toshi Kanib9d10be2013-08-12 09:45:53 -0600310void cpu_hotplug_begin(void)
Gautham R Shenoyd2219382008-01-25 21:08:01 +0100311{
David Hildenbrand87af9e72014-12-12 10:11:44 +0100312 DEFINE_WAIT(wait);
Oleg Nesterovd2ba7e22008-04-29 01:00:29 -0700313
David Hildenbrand87af9e72014-12-12 10:11:44 +0100314 cpu_hotplug.active_writer = current;
Gautham R. Shenoya19423b2014-03-11 02:04:03 +0530315 cpuhp_lock_acquire();
David Hildenbrand87af9e72014-12-12 10:11:44 +0100316
Oleg Nesterovd2ba7e22008-04-29 01:00:29 -0700317 for (;;) {
318 mutex_lock(&cpu_hotplug.lock);
David Hildenbrand87af9e72014-12-12 10:11:44 +0100319 prepare_to_wait(&cpu_hotplug.wq, &wait, TASK_UNINTERRUPTIBLE);
320 if (likely(!atomic_read(&cpu_hotplug.refcount)))
321 break;
Gautham R Shenoyd2219382008-01-25 21:08:01 +0100322 mutex_unlock(&cpu_hotplug.lock);
323 schedule();
Gautham R Shenoyd2219382008-01-25 21:08:01 +0100324 }
David Hildenbrand87af9e72014-12-12 10:11:44 +0100325 finish_wait(&cpu_hotplug.wq, &wait);
Gautham R Shenoyd2219382008-01-25 21:08:01 +0100326}
327
Toshi Kanib9d10be2013-08-12 09:45:53 -0600328void cpu_hotplug_done(void)
Gautham R Shenoyd2219382008-01-25 21:08:01 +0100329{
330 cpu_hotplug.active_writer = NULL;
331 mutex_unlock(&cpu_hotplug.lock);
Gautham R. Shenoya19423b2014-03-11 02:04:03 +0530332 cpuhp_lock_release();
Gautham R Shenoyd2219382008-01-25 21:08:01 +0100333}
Lai Jiangshan79a6cde2010-05-26 14:43:36 -0700334
Srivatsa S. Bhat16e53db2013-06-12 14:04:36 -0700335/*
336 * Wait for currently running CPU hotplug operations to complete (if any) and
337 * disable future CPU hotplug (from sysfs). The 'cpu_add_remove_lock' protects
338 * the 'cpu_hotplug_disabled' flag. The same lock is also acquired by the
339 * hotplug path before performing hotplug operations. So acquiring that lock
340 * guarantees mutual exclusion from any currently running hotplug operations.
341 */
342void cpu_hotplug_disable(void)
343{
344 cpu_maps_update_begin();
Vitaly Kuznetsov89af7ba2015-08-05 00:52:46 -0700345 cpu_hotplug_disabled++;
Srivatsa S. Bhat16e53db2013-06-12 14:04:36 -0700346 cpu_maps_update_done();
347}
Vitaly Kuznetsov32145c42015-08-05 00:52:47 -0700348EXPORT_SYMBOL_GPL(cpu_hotplug_disable);
Srivatsa S. Bhat16e53db2013-06-12 14:04:36 -0700349
Lianwei Wang01b41152016-06-09 23:43:28 -0700350static void __cpu_hotplug_enable(void)
351{
352 if (WARN_ONCE(!cpu_hotplug_disabled, "Unbalanced cpu hotplug enable\n"))
353 return;
354 cpu_hotplug_disabled--;
355}
356
Srivatsa S. Bhat16e53db2013-06-12 14:04:36 -0700357void cpu_hotplug_enable(void)
358{
359 cpu_maps_update_begin();
Lianwei Wang01b41152016-06-09 23:43:28 -0700360 __cpu_hotplug_enable();
Srivatsa S. Bhat16e53db2013-06-12 14:04:36 -0700361 cpu_maps_update_done();
362}
Vitaly Kuznetsov32145c42015-08-05 00:52:47 -0700363EXPORT_SYMBOL_GPL(cpu_hotplug_enable);
Toshi Kanib9d10be2013-08-12 09:45:53 -0600364#endif /* CONFIG_HOTPLUG_CPU */
Lai Jiangshan79a6cde2010-05-26 14:43:36 -0700365
Thomas Gleixnera3c901b2018-11-25 19:33:39 +0100366/*
367 * Architectures that need SMT-specific errata handling during SMT hotplug
368 * should override this.
369 */
370void __weak arch_smt_update(void) { }
371
Thomas Gleixner8438e492018-06-29 16:05:48 +0200372#ifdef CONFIG_HOTPLUG_SMT
373enum cpuhp_smt_control cpu_smt_control __read_mostly = CPU_SMT_ENABLED;
Konrad Rzeszutek Wilka0695af2018-06-20 11:29:53 -0400374EXPORT_SYMBOL_GPL(cpu_smt_control);
Thomas Gleixner8438e492018-06-29 16:05:48 +0200375
Thomas Gleixnerc504b9f2018-08-07 08:19:57 +0200376static bool cpu_smt_available __read_mostly;
377
Jiri Kosinaa69c5e02018-07-13 16:23:23 +0200378void __init cpu_smt_disable(bool force)
Thomas Gleixner8438e492018-06-29 16:05:48 +0200379{
Jiri Kosinaa69c5e02018-07-13 16:23:23 +0200380 if (cpu_smt_control == CPU_SMT_FORCE_DISABLED ||
381 cpu_smt_control == CPU_SMT_NOT_SUPPORTED)
382 return;
383
384 if (force) {
Thomas Gleixner8438e492018-06-29 16:05:48 +0200385 pr_info("SMT: Force disabled\n");
386 cpu_smt_control = CPU_SMT_FORCE_DISABLED;
Jiri Kosinaa69c5e02018-07-13 16:23:23 +0200387 } else {
Borislav Petkov6270cc32018-10-04 19:22:27 +0200388 pr_info("SMT: disabled\n");
Jiri Kosinaa69c5e02018-07-13 16:23:23 +0200389 cpu_smt_control = CPU_SMT_DISABLED;
Thomas Gleixner8438e492018-06-29 16:05:48 +0200390 }
Jiri Kosinaa69c5e02018-07-13 16:23:23 +0200391}
392
Thomas Gleixner929d3b22018-07-13 16:23:24 +0200393/*
394 * The decision whether SMT is supported can only be done after the full
Thomas Gleixnerc504b9f2018-08-07 08:19:57 +0200395 * CPU identification. Called from architecture code before non boot CPUs
396 * are brought up.
397 */
398void __init cpu_smt_check_topology_early(void)
399{
400 if (!topology_smt_supported())
401 cpu_smt_control = CPU_SMT_NOT_SUPPORTED;
402}
403
404/*
405 * If SMT was disabled by BIOS, detect it here, after the CPUs have been
406 * brought online. This ensures the smt/l1tf sysfs entries are consistent
407 * with reality. cpu_smt_available is set to true during the bringup of non
408 * boot CPUs when a SMT sibling is detected. Note, this may overwrite
409 * cpu_smt_control's previous setting.
Thomas Gleixner929d3b22018-07-13 16:23:24 +0200410 */
411void __init cpu_smt_check_topology(void)
412{
Thomas Gleixnerc504b9f2018-08-07 08:19:57 +0200413 if (!cpu_smt_available)
Thomas Gleixner929d3b22018-07-13 16:23:24 +0200414 cpu_smt_control = CPU_SMT_NOT_SUPPORTED;
415}
416
Jiri Kosinaa69c5e02018-07-13 16:23:23 +0200417static int __init smt_cmdline_disable(char *str)
418{
419 cpu_smt_disable(str && !strcmp(str, "force"));
Thomas Gleixner8438e492018-06-29 16:05:48 +0200420 return 0;
421}
422early_param("nosmt", smt_cmdline_disable);
423
424static inline bool cpu_smt_allowed(unsigned int cpu)
425{
Thomas Gleixnerc504b9f2018-08-07 08:19:57 +0200426 if (topology_is_primary_thread(cpu))
Thomas Gleixner8438e492018-06-29 16:05:48 +0200427 return true;
428
Thomas Gleixnerc504b9f2018-08-07 08:19:57 +0200429 /*
430 * If the CPU is not a 'primary' thread and the booted_once bit is
431 * set then the processor has SMT support. Store this information
432 * for the late check of SMT support in cpu_smt_check_topology().
433 */
434 if (per_cpu(cpuhp_state, cpu).booted_once)
435 cpu_smt_available = true;
436
437 if (cpu_smt_control == CPU_SMT_ENABLED)
Thomas Gleixner8438e492018-06-29 16:05:48 +0200438 return true;
439
440 /*
441 * On x86 it's required to boot all logical CPUs at least once so
442 * that the init code can get a chance to set CR4.MCE on each
443 * CPU. Otherwise, a broadacasted MCE observing CR4.MCE=0b on any
444 * core will shutdown the machine.
445 */
446 return !per_cpu(cpuhp_state, cpu).booted_once;
447}
448#else
449static inline bool cpu_smt_allowed(unsigned int cpu) { return true; }
450#endif
451
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452/* Need to know about CPUs going up/down? */
Mathias Krause71cf5ae2015-07-19 20:06:22 +0200453int register_cpu_notifier(struct notifier_block *nb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454{
Neil Brownbd5349c2006-10-17 00:10:35 -0700455 int ret;
Gautham R Shenoyd2219382008-01-25 21:08:01 +0100456 cpu_maps_update_begin();
Neil Brownbd5349c2006-10-17 00:10:35 -0700457 ret = raw_notifier_chain_register(&cpu_chain, nb);
Gautham R Shenoyd2219382008-01-25 21:08:01 +0100458 cpu_maps_update_done();
Neil Brownbd5349c2006-10-17 00:10:35 -0700459 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460}
Chandra Seetharaman65edc682006-06-27 02:54:08 -0700461
Mathias Krause71cf5ae2015-07-19 20:06:22 +0200462int __register_cpu_notifier(struct notifier_block *nb)
Srivatsa S. Bhat93ae4f92014-03-11 02:04:14 +0530463{
464 return raw_notifier_chain_register(&cpu_chain, nb);
465}
466
Thomas Gleixner090e77c2016-02-26 18:43:23 +0000467static int __cpu_notify(unsigned long val, unsigned int cpu, int nr_to_call,
Akinobu Mitae9fb7632010-05-26 14:43:28 -0700468 int *nr_calls)
469{
Thomas Gleixner090e77c2016-02-26 18:43:23 +0000470 unsigned long mod = cpuhp_tasks_frozen ? CPU_TASKS_FROZEN : 0;
471 void *hcpu = (void *)(long)cpu;
472
Akinobu Mitae6bde732010-05-26 14:43:29 -0700473 int ret;
474
Thomas Gleixner090e77c2016-02-26 18:43:23 +0000475 ret = __raw_notifier_call_chain(&cpu_chain, val | mod, hcpu, nr_to_call,
Akinobu Mitae9fb7632010-05-26 14:43:28 -0700476 nr_calls);
Akinobu Mitae6bde732010-05-26 14:43:29 -0700477
478 return notifier_to_errno(ret);
Akinobu Mitae9fb7632010-05-26 14:43:28 -0700479}
480
Thomas Gleixner090e77c2016-02-26 18:43:23 +0000481static int cpu_notify(unsigned long val, unsigned int cpu)
Akinobu Mitae9fb7632010-05-26 14:43:28 -0700482{
Thomas Gleixner090e77c2016-02-26 18:43:23 +0000483 return __cpu_notify(val, cpu, -1, NULL);
Akinobu Mitae9fb7632010-05-26 14:43:28 -0700484}
485
Sebastian Andrzej Siewior3b9d6da2016-04-08 14:40:15 +0200486static void cpu_notify_nofail(unsigned long val, unsigned int cpu)
487{
488 BUG_ON(cpu_notify(val, cpu));
489}
490
Thomas Gleixnerba997462016-02-26 18:43:24 +0000491/* Notifier wrappers for transitioning to state machine */
492static int notify_prepare(unsigned int cpu)
493{
494 int nr_calls = 0;
495 int ret;
496
497 ret = __cpu_notify(CPU_UP_PREPARE, cpu, -1, &nr_calls);
498 if (ret) {
499 nr_calls--;
500 printk(KERN_WARNING "%s: attempt to bring up CPU %u failed\n",
501 __func__, cpu);
502 __cpu_notify(CPU_UP_CANCELED, cpu, nr_calls, NULL);
503 }
504 return ret;
505}
506
507static int notify_online(unsigned int cpu)
508{
509 cpu_notify(CPU_ONLINE, cpu);
510 return 0;
511}
Thomas Gleixnerceb354b2017-07-04 22:20:23 +0200512static void __cpuhp_kick_ap_work(struct cpuhp_cpu_state *st);
Thomas Gleixnerba997462016-02-26 18:43:24 +0000513
Thomas Gleixner7b4e4b12017-07-04 22:20:23 +0200514static void __cpuhp_kick_ap_work(struct cpuhp_cpu_state *st);
515
Thomas Gleixner8df3e072016-02-26 18:43:41 +0000516static int bringup_wait_for_ap(unsigned int cpu)
517{
518 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
519
Thomas Gleixnerceb354b2017-07-04 22:20:23 +0200520 /* Wait for the CPU to reach CPUHP_AP_ONLINE_IDLE */
Thomas Gleixner8df3e072016-02-26 18:43:41 +0000521 wait_for_completion(&st->done);
Thomas Gleixner6b3d13f2017-07-11 22:06:24 +0200522 if (WARN_ON_ONCE((!cpu_online(cpu))))
523 return -ECANCELED;
Thomas Gleixnerceb354b2017-07-04 22:20:23 +0200524
Peter Zijlstraa594a9e2019-12-10 09:34:54 +0100525 /* Unpark the hotplug thread of the target cpu */
Thomas Gleixnerceb354b2017-07-04 22:20:23 +0200526 kthread_unpark(st->thread);
527
Thomas Gleixner8438e492018-06-29 16:05:48 +0200528 /*
529 * SMT soft disabling on X86 requires to bring the CPU out of the
530 * BIOS 'wait for SIPI' state in order to set the CR4.MCE bit. The
531 * CPU marked itself as booted_once in cpu_notify_starting() so the
532 * cpu_smt_allowed() check will now return false if this is not the
533 * primary sibling.
534 */
535 if (!cpu_smt_allowed(cpu))
536 return -ECANCELED;
537
Thomas Gleixnerceb354b2017-07-04 22:20:23 +0200538 /* Should we go further up ? */
539 if (st->target > CPUHP_AP_ONLINE_IDLE) {
540 __cpuhp_kick_ap_work(st);
541 wait_for_completion(&st->done);
542 }
Thomas Gleixner8df3e072016-02-26 18:43:41 +0000543 return st->result;
544}
545
Thomas Gleixnerba997462016-02-26 18:43:24 +0000546static int bringup_cpu(unsigned int cpu)
547{
548 struct task_struct *idle = idle_thread_get(cpu);
549 int ret;
550
Boris Ostrovskyaa877172016-08-03 13:22:28 -0400551 /*
552 * Some architectures have to walk the irq descriptors to
553 * setup the vector space for the cpu which comes online.
554 * Prevent irq alloc/free across the bringup.
555 */
556 irq_lock_sparse();
557
Thomas Gleixnerba997462016-02-26 18:43:24 +0000558 /* Arch-specific enabling code. */
559 ret = __cpu_up(cpu, idle);
Boris Ostrovskyaa877172016-08-03 13:22:28 -0400560 irq_unlock_sparse();
Thomas Gleixnerba997462016-02-26 18:43:24 +0000561 if (ret) {
562 cpu_notify(CPU_UP_CANCELED, cpu);
563 return ret;
564 }
Thomas Gleixnerceb354b2017-07-04 22:20:23 +0200565 return bringup_wait_for_ap(cpu);
Thomas Gleixnerba997462016-02-26 18:43:24 +0000566}
567
Thomas Gleixner2e1a3482016-02-26 18:43:37 +0000568/*
569 * Hotplug state machine related functions
570 */
Thomas Gleixnera7246322016-08-12 19:49:38 +0200571static void undo_cpu_down(unsigned int cpu, struct cpuhp_cpu_state *st)
Thomas Gleixner2e1a3482016-02-26 18:43:37 +0000572{
573 for (st->state++; st->state < st->target; st->state++) {
Thomas Gleixnera7246322016-08-12 19:49:38 +0200574 struct cpuhp_step *step = cpuhp_get_step(st->state);
Thomas Gleixner2e1a3482016-02-26 18:43:37 +0000575
576 if (!step->skip_onerr)
Thomas Gleixnercf392d12016-08-12 19:49:39 +0200577 cpuhp_invoke_callback(cpu, st->state, true, NULL);
Thomas Gleixner2e1a3482016-02-26 18:43:37 +0000578 }
579}
580
581static int cpuhp_down_callbacks(unsigned int cpu, struct cpuhp_cpu_state *st,
Thomas Gleixnera7246322016-08-12 19:49:38 +0200582 enum cpuhp_state target)
Thomas Gleixner2e1a3482016-02-26 18:43:37 +0000583{
584 enum cpuhp_state prev_state = st->state;
585 int ret = 0;
586
587 for (; st->state > target; st->state--) {
Thomas Gleixnercf392d12016-08-12 19:49:39 +0200588 ret = cpuhp_invoke_callback(cpu, st->state, false, NULL);
Channagoud Kadabibd019ce2017-06-19 17:14:52 -0700589 BUG_ON(ret && st->state < CPUHP_AP_IDLE_DEAD);
Thomas Gleixner2e1a3482016-02-26 18:43:37 +0000590 if (ret) {
591 st->target = prev_state;
Thomas Gleixnera7246322016-08-12 19:49:38 +0200592 undo_cpu_down(cpu, st);
Thomas Gleixner2e1a3482016-02-26 18:43:37 +0000593 break;
594 }
595 }
596 return ret;
597}
598
Thomas Gleixnera7246322016-08-12 19:49:38 +0200599static void undo_cpu_up(unsigned int cpu, struct cpuhp_cpu_state *st)
Thomas Gleixner2e1a3482016-02-26 18:43:37 +0000600{
601 for (st->state--; st->state > st->target; st->state--) {
Thomas Gleixnera7246322016-08-12 19:49:38 +0200602 struct cpuhp_step *step = cpuhp_get_step(st->state);
Thomas Gleixner2e1a3482016-02-26 18:43:37 +0000603
604 if (!step->skip_onerr)
Thomas Gleixnercf392d12016-08-12 19:49:39 +0200605 cpuhp_invoke_callback(cpu, st->state, false, NULL);
Thomas Gleixner2e1a3482016-02-26 18:43:37 +0000606 }
607}
608
Thomas Gleixnerce4fbb92019-03-26 17:36:05 +0100609static inline bool can_rollback_cpu(struct cpuhp_cpu_state *st)
610{
611 if (IS_ENABLED(CONFIG_HOTPLUG_CPU))
612 return true;
613 /*
614 * When CPU hotplug is disabled, then taking the CPU down is not
615 * possible because takedown_cpu() and the architecture and
616 * subsystem specific mechanisms are not available. So the CPU
617 * which would be completely unplugged again needs to stay around
618 * in the current state.
619 */
620 return st->state <= CPUHP_BRINGUP_CPU;
621}
622
Thomas Gleixner2e1a3482016-02-26 18:43:37 +0000623static int cpuhp_up_callbacks(unsigned int cpu, struct cpuhp_cpu_state *st,
Thomas Gleixnera7246322016-08-12 19:49:38 +0200624 enum cpuhp_state target)
Thomas Gleixner2e1a3482016-02-26 18:43:37 +0000625{
626 enum cpuhp_state prev_state = st->state;
627 int ret = 0;
628
629 while (st->state < target) {
Thomas Gleixner2e1a3482016-02-26 18:43:37 +0000630 st->state++;
Thomas Gleixnercf392d12016-08-12 19:49:39 +0200631 ret = cpuhp_invoke_callback(cpu, st->state, true, NULL);
Thomas Gleixner2e1a3482016-02-26 18:43:37 +0000632 if (ret) {
Thomas Gleixnerce4fbb92019-03-26 17:36:05 +0100633 if (can_rollback_cpu(st)) {
634 st->target = prev_state;
635 undo_cpu_up(cpu, st);
636 }
Thomas Gleixner2e1a3482016-02-26 18:43:37 +0000637 break;
638 }
639 }
640 return ret;
641}
642
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000643/*
644 * The cpu hotplug threads manage the bringup and teardown of the cpus
645 */
646static void cpuhp_create(unsigned int cpu)
647{
648 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
649
650 init_completion(&st->done);
651}
652
653static int cpuhp_should_run(unsigned int cpu)
654{
655 struct cpuhp_cpu_state *st = this_cpu_ptr(&cpuhp_state);
656
657 return st->should_run;
658}
659
660/* Execute the teardown callbacks. Used to be CPU_DOWN_PREPARE */
661static int cpuhp_ap_offline(unsigned int cpu, struct cpuhp_cpu_state *st)
662{
Thomas Gleixner1cf4f622016-02-26 18:43:39 +0000663 enum cpuhp_state target = max((int)st->target, CPUHP_TEARDOWN_CPU);
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000664
Thomas Gleixnera7246322016-08-12 19:49:38 +0200665 return cpuhp_down_callbacks(cpu, st, target);
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000666}
667
668/* Execute the online startup callbacks. Used to be CPU_ONLINE */
669static int cpuhp_ap_online(unsigned int cpu, struct cpuhp_cpu_state *st)
670{
Thomas Gleixnera7246322016-08-12 19:49:38 +0200671 return cpuhp_up_callbacks(cpu, st, st->target);
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000672}
673
674/*
675 * Execute teardown/startup callbacks on the plugged cpu. Also used to invoke
676 * callbacks when a state gets [un]installed at runtime.
677 */
678static void cpuhp_thread_fun(unsigned int cpu)
679{
680 struct cpuhp_cpu_state *st = this_cpu_ptr(&cpuhp_state);
681 int ret = 0;
682
683 /*
684 * Paired with the mb() in cpuhp_kick_ap_work and
685 * cpuhp_invoke_ap_callback, so the work set is consistent visible.
686 */
687 smp_mb();
688 if (!st->should_run)
689 return;
690
691 st->should_run = false;
692
Thomas Gleixnerc198e222017-05-24 10:15:43 +0200693 lock_map_acquire(&cpuhp_state_lock_map);
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000694 /* Single callback invocation for [un]install ? */
Thomas Gleixnera7246322016-08-12 19:49:38 +0200695 if (st->single) {
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000696 if (st->cb_state < CPUHP_AP_ONLINE) {
697 local_irq_disable();
Thomas Gleixnera7246322016-08-12 19:49:38 +0200698 ret = cpuhp_invoke_callback(cpu, st->cb_state,
Thomas Gleixnercf392d12016-08-12 19:49:39 +0200699 st->bringup, st->node);
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000700 local_irq_enable();
701 } else {
Thomas Gleixnera7246322016-08-12 19:49:38 +0200702 ret = cpuhp_invoke_callback(cpu, st->cb_state,
Thomas Gleixnercf392d12016-08-12 19:49:39 +0200703 st->bringup, st->node);
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000704 }
Sebastian Andrzej Siewior3b9d6da2016-04-08 14:40:15 +0200705 } else if (st->rollback) {
706 BUG_ON(st->state < CPUHP_AP_ONLINE_IDLE);
707
Thomas Gleixnera7246322016-08-12 19:49:38 +0200708 undo_cpu_down(cpu, st);
Sebastian Andrzej Siewior3b9d6da2016-04-08 14:40:15 +0200709 /*
710 * This is a momentary workaround to keep the notifier users
711 * happy. Will go away once we got rid of the notifiers.
712 */
713 cpu_notify_nofail(CPU_DOWN_FAILED, cpu);
714 st->rollback = false;
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000715 } else {
Thomas Gleixner1cf4f622016-02-26 18:43:39 +0000716 /* Cannot happen .... */
Thomas Gleixner8df3e072016-02-26 18:43:41 +0000717 BUG_ON(st->state < CPUHP_AP_ONLINE_IDLE);
Thomas Gleixner1cf4f622016-02-26 18:43:39 +0000718
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000719 /* Regular hotplug work */
720 if (st->state < st->target)
721 ret = cpuhp_ap_online(cpu, st);
722 else if (st->state > st->target)
723 ret = cpuhp_ap_offline(cpu, st);
724 }
Thomas Gleixnerc198e222017-05-24 10:15:43 +0200725 lock_map_release(&cpuhp_state_lock_map);
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000726 st->result = ret;
727 complete(&st->done);
728}
729
730/* Invoke a single callback on a remote cpu */
Thomas Gleixnera7246322016-08-12 19:49:38 +0200731static int
Thomas Gleixnercf392d12016-08-12 19:49:39 +0200732cpuhp_invoke_ap_callback(int cpu, enum cpuhp_state state, bool bringup,
733 struct hlist_node *node)
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000734{
735 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
736
737 if (!cpu_online(cpu))
738 return 0;
739
Thomas Gleixnerc198e222017-05-24 10:15:43 +0200740 lock_map_acquire(&cpuhp_state_lock_map);
741 lock_map_release(&cpuhp_state_lock_map);
742
Thomas Gleixner6a4e2452016-07-13 17:16:03 +0000743 /*
744 * If we are up and running, use the hotplug thread. For early calls
745 * we invoke the thread function directly.
746 */
747 if (!st->thread)
Thomas Gleixnercf392d12016-08-12 19:49:39 +0200748 return cpuhp_invoke_callback(cpu, state, bringup, node);
Thomas Gleixner6a4e2452016-07-13 17:16:03 +0000749
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000750 st->cb_state = state;
Thomas Gleixnera7246322016-08-12 19:49:38 +0200751 st->single = true;
752 st->bringup = bringup;
Thomas Gleixnercf392d12016-08-12 19:49:39 +0200753 st->node = node;
Thomas Gleixnera7246322016-08-12 19:49:38 +0200754
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000755 /*
756 * Make sure the above stores are visible before should_run becomes
757 * true. Paired with the mb() above in cpuhp_thread_fun()
758 */
759 smp_mb();
760 st->should_run = true;
761 wake_up_process(st->thread);
762 wait_for_completion(&st->done);
763 return st->result;
764}
765
766/* Regular hotplug invocation of the AP hotplug thread */
Thomas Gleixner1cf4f622016-02-26 18:43:39 +0000767static void __cpuhp_kick_ap_work(struct cpuhp_cpu_state *st)
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000768{
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000769 st->result = 0;
Thomas Gleixnera7246322016-08-12 19:49:38 +0200770 st->single = false;
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000771 /*
772 * Make sure the above stores are visible before should_run becomes
773 * true. Paired with the mb() above in cpuhp_thread_fun()
774 */
775 smp_mb();
776 st->should_run = true;
777 wake_up_process(st->thread);
Thomas Gleixner1cf4f622016-02-26 18:43:39 +0000778}
779
780static int cpuhp_kick_ap_work(unsigned int cpu)
781{
782 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
783 enum cpuhp_state state = st->state;
784
785 trace_cpuhp_enter(cpu, st->target, state, cpuhp_kick_ap_work);
Thomas Gleixnerc198e222017-05-24 10:15:43 +0200786 lock_map_acquire(&cpuhp_state_lock_map);
787 lock_map_release(&cpuhp_state_lock_map);
Thomas Gleixner1cf4f622016-02-26 18:43:39 +0000788 __cpuhp_kick_ap_work(st);
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000789 wait_for_completion(&st->done);
790 trace_cpuhp_exit(cpu, st->state, state, st->result);
791 return st->result;
792}
793
794static struct smp_hotplug_thread cpuhp_threads = {
795 .store = &cpuhp_state.thread,
796 .create = &cpuhp_create,
797 .thread_should_run = cpuhp_should_run,
798 .thread_fn = cpuhp_thread_fun,
799 .thread_comm = "cpuhp/%u",
800 .selfparking = true,
801};
802
803void __init cpuhp_threads_init(void)
804{
805 BUG_ON(smpboot_register_percpu_thread(&cpuhp_threads));
806 kthread_unpark(this_cpu_read(cpuhp_state.thread));
807}
808
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809EXPORT_SYMBOL(register_cpu_notifier);
Srivatsa S. Bhat93ae4f92014-03-11 02:04:14 +0530810EXPORT_SYMBOL(__register_cpu_notifier);
Mathias Krause71cf5ae2015-07-19 20:06:22 +0200811void unregister_cpu_notifier(struct notifier_block *nb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812{
Gautham R Shenoyd2219382008-01-25 21:08:01 +0100813 cpu_maps_update_begin();
Neil Brownbd5349c2006-10-17 00:10:35 -0700814 raw_notifier_chain_unregister(&cpu_chain, nb);
Gautham R Shenoyd2219382008-01-25 21:08:01 +0100815 cpu_maps_update_done();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816}
817EXPORT_SYMBOL(unregister_cpu_notifier);
818
Mathias Krause71cf5ae2015-07-19 20:06:22 +0200819void __unregister_cpu_notifier(struct notifier_block *nb)
Srivatsa S. Bhat93ae4f92014-03-11 02:04:14 +0530820{
821 raw_notifier_chain_unregister(&cpu_chain, nb);
822}
823EXPORT_SYMBOL(__unregister_cpu_notifier);
824
Michal Hocko56eaecc2016-12-07 14:54:38 +0100825#ifdef CONFIG_HOTPLUG_CPU
Anton Vorontsove4cc2f82012-05-31 16:26:26 -0700826/**
827 * clear_tasks_mm_cpumask - Safely clear tasks' mm_cpumask for a CPU
828 * @cpu: a CPU id
829 *
830 * This function walks all processes, finds a valid mm struct for each one and
831 * then clears a corresponding bit in mm's cpumask. While this all sounds
832 * trivial, there are various non-obvious corner cases, which this function
833 * tries to solve in a safe manner.
834 *
835 * Also note that the function uses a somewhat relaxed locking scheme, so it may
836 * be called only for an already offlined CPU.
837 */
Anton Vorontsovcb792952012-05-31 16:26:22 -0700838void clear_tasks_mm_cpumask(int cpu)
839{
840 struct task_struct *p;
841
842 /*
843 * This function is called after the cpu is taken down and marked
844 * offline, so its not like new tasks will ever get this cpu set in
845 * their mm mask. -- Peter Zijlstra
846 * Thus, we may use rcu_read_lock() here, instead of grabbing
847 * full-fledged tasklist_lock.
848 */
Anton Vorontsove4cc2f82012-05-31 16:26:26 -0700849 WARN_ON(cpu_online(cpu));
Anton Vorontsovcb792952012-05-31 16:26:22 -0700850 rcu_read_lock();
851 for_each_process(p) {
852 struct task_struct *t;
853
Anton Vorontsove4cc2f82012-05-31 16:26:26 -0700854 /*
855 * Main thread might exit, but other threads may still have
856 * a valid mm. Find one.
857 */
Anton Vorontsovcb792952012-05-31 16:26:22 -0700858 t = find_lock_task_mm(p);
859 if (!t)
860 continue;
861 cpumask_clear_cpu(cpu, mm_cpumask(t->mm));
862 task_unlock(t);
863 }
864 rcu_read_unlock();
865}
866
Kirill Tkhaib728ca02014-06-25 12:19:55 +0400867static inline void check_for_tasks(int dead_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868{
Kirill Tkhaib728ca02014-06-25 12:19:55 +0400869 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
Oleg Nesterova75a6062015-09-10 15:07:50 +0200871 read_lock(&tasklist_lock);
872 for_each_process_thread(g, p) {
Kirill Tkhaib728ca02014-06-25 12:19:55 +0400873 if (!p->on_rq)
874 continue;
875 /*
876 * We do the check with unlocked task_rq(p)->lock.
877 * Order the reading to do not warn about a task,
878 * which was running on this cpu in the past, and
879 * it's just been woken on another cpu.
880 */
881 rmb();
882 if (task_cpu(p) != dead_cpu)
883 continue;
884
885 pr_warn("Task %s (pid=%d) is on cpu %d (state=%ld, flags=%x)\n",
886 p->comm, task_pid_nr(p), dead_cpu, p->state, p->flags);
Oleg Nesterova75a6062015-09-10 15:07:50 +0200887 }
888 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889}
890
Thomas Gleixner98458172016-02-26 18:43:25 +0000891static int notify_down_prepare(unsigned int cpu)
892{
893 int err, nr_calls = 0;
894
895 err = __cpu_notify(CPU_DOWN_PREPARE, cpu, -1, &nr_calls);
896 if (err) {
897 nr_calls--;
898 __cpu_notify(CPU_DOWN_FAILED, cpu, nr_calls, NULL);
899 pr_warn("%s: attempt to take down CPU %u failed\n",
900 __func__, cpu);
901 }
902 return err;
903}
904
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905/* Take this CPU down. */
Mathias Krause71cf5ae2015-07-19 20:06:22 +0200906static int take_cpu_down(void *_param)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907{
Thomas Gleixner4baa0af2016-02-26 18:43:29 +0000908 struct cpuhp_cpu_state *st = this_cpu_ptr(&cpuhp_state);
909 enum cpuhp_state target = max((int)st->target, CPUHP_AP_OFFLINE);
Thomas Gleixner090e77c2016-02-26 18:43:23 +0000910 int err, cpu = smp_processor_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 /* Ensure this CPU doesn't handle any more interrupts. */
913 err = __cpu_disable();
914 if (err < 0)
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700915 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916
Thomas Gleixnera7246322016-08-12 19:49:38 +0200917 /*
918 * We get here while we are in CPUHP_TEARDOWN_CPU state and we must not
919 * do this step again.
920 */
921 WARN_ON(st->state != CPUHP_TEARDOWN_CPU);
922 st->state--;
Thomas Gleixner4baa0af2016-02-26 18:43:29 +0000923 /* Invoke the former CPU_DYING callbacks */
Thomas Gleixnera7246322016-08-12 19:49:38 +0200924 for (; st->state > target; st->state--)
Thomas Gleixnercf392d12016-08-12 19:49:39 +0200925 cpuhp_invoke_callback(cpu, st->state, false, NULL);
Thomas Gleixner4baa0af2016-02-26 18:43:29 +0000926
Thomas Gleixner52c063d2015-04-03 02:37:24 +0200927 /* Give up timekeeping duties */
928 tick_handover_do_timer();
Thomas Gleixner14e568e2013-01-31 12:11:14 +0000929 /* Park the stopper thread */
Thomas Gleixner090e77c2016-02-26 18:43:23 +0000930 stop_machine_park(cpu);
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700931 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932}
933
Thomas Gleixner98458172016-02-26 18:43:25 +0000934static int takedown_cpu(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935{
Thomas Gleixnere69aab12016-02-26 18:43:43 +0000936 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
Thomas Gleixner98458172016-02-26 18:43:25 +0000937 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
Thomas Gleixner2a58c522016-03-10 20:42:08 +0100939 /* Park the smpboot threads */
Thomas Gleixner1cf4f622016-02-26 18:43:39 +0000940 kthread_park(per_cpu_ptr(&cpuhp_state, cpu)->thread);
941
Peter Zijlstra6acce3e2013-10-11 14:38:20 +0200942 /*
Thomas Gleixnera8994182015-07-05 17:12:30 +0000943 * Prevent irq alloc/free while the dying cpu reorganizes the
944 * interrupt affinities.
945 */
946 irq_lock_sparse();
947
948 /*
Peter Zijlstra6acce3e2013-10-11 14:38:20 +0200949 * So now all preempt/rcu users must observe !cpu_active().
950 */
Thomas Gleixner090e77c2016-02-26 18:43:23 +0000951 err = stop_machine(take_cpu_down, NULL, cpumask_of(cpu));
Rusty Russell04321582008-07-28 12:16:29 -0500952 if (err) {
Sebastian Andrzej Siewior3b9d6da2016-04-08 14:40:15 +0200953 /* CPU refused to die */
Thomas Gleixnera8994182015-07-05 17:12:30 +0000954 irq_unlock_sparse();
Sebastian Andrzej Siewior3b9d6da2016-04-08 14:40:15 +0200955 /* Unpark the hotplug thread so we can rollback there */
956 kthread_unpark(per_cpu_ptr(&cpuhp_state, cpu)->thread);
Thomas Gleixner98458172016-02-26 18:43:25 +0000957 return err;
Satoru Takeuchi8fa1d7d2006-10-28 10:38:57 -0700958 }
Rusty Russell04321582008-07-28 12:16:29 -0500959 BUG_ON(cpu_online(cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960
Peter Zijlstra48c5cca2010-11-13 19:32:29 +0100961 /*
Thomas Gleixneree1e7142016-08-18 14:57:16 +0200962 * The CPUHP_AP_SCHED_MIGRATE_DYING callback will have removed all
Peter Zijlstra48c5cca2010-11-13 19:32:29 +0100963 * runnable tasks from the cpu, there's only the idle task left now
964 * that the migration thread is done doing the stop_machine thing.
Peter Zijlstra51a96c72010-11-19 20:37:53 +0100965 *
966 * Wait for the stop thread to go away.
Peter Zijlstra48c5cca2010-11-13 19:32:29 +0100967 */
Thomas Gleixnere69aab12016-02-26 18:43:43 +0000968 wait_for_completion(&st->done);
969 BUG_ON(st->state != CPUHP_AP_IDLE_DEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970
Thomas Gleixnera8994182015-07-05 17:12:30 +0000971 /* Interrupts are moved away from the dying cpu, reenable alloc/free */
972 irq_unlock_sparse();
973
Preeti U Murthy345527b2015-03-30 14:59:19 +0530974 hotplug_cpu__broadcast_tick_pull(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 /* This actually kills the CPU. */
976 __cpu_die(cpu);
977
Thomas Gleixnera49b1162015-04-03 02:38:05 +0200978 tick_cleanup_dead_cpu(cpu);
Thomas Gleixner98458172016-02-26 18:43:25 +0000979 return 0;
980}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
Thomas Gleixner98458172016-02-26 18:43:25 +0000982static int notify_dead(unsigned int cpu)
983{
984 cpu_notify_nofail(CPU_DEAD, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 check_for_tasks(cpu);
Thomas Gleixner98458172016-02-26 18:43:25 +0000986 return 0;
987}
988
Thomas Gleixner71f87b22016-03-03 10:52:10 +0100989static void cpuhp_complete_idle_dead(void *arg)
990{
991 struct cpuhp_cpu_state *st = arg;
992
993 complete(&st->done);
994}
995
Thomas Gleixnere69aab12016-02-26 18:43:43 +0000996void cpuhp_report_idle_dead(void)
997{
998 struct cpuhp_cpu_state *st = this_cpu_ptr(&cpuhp_state);
999
1000 BUG_ON(st->state != CPUHP_AP_OFFLINE);
Thomas Gleixner27d50c72016-02-26 18:43:44 +00001001 rcu_report_dead(smp_processor_id());
Thomas Gleixner71f87b22016-03-03 10:52:10 +01001002 st->state = CPUHP_AP_IDLE_DEAD;
1003 /*
1004 * We cannot call complete after rcu_report_dead() so we delegate it
1005 * to an online cpu.
1006 */
1007 smp_call_function_single(cpumask_first(cpu_online_mask),
1008 cpuhp_complete_idle_dead, st, 0);
Thomas Gleixnere69aab12016-02-26 18:43:43 +00001009}
1010
Thomas Gleixnercff7d372016-02-26 18:43:28 +00001011#else
1012#define notify_down_prepare NULL
1013#define takedown_cpu NULL
1014#define notify_dead NULL
1015#endif
1016
1017#ifdef CONFIG_HOTPLUG_CPU
Thomas Gleixnercff7d372016-02-26 18:43:28 +00001018
Thomas Gleixner98458172016-02-26 18:43:25 +00001019/* Requires cpu_add_remove_lock to be held */
Thomas Gleixneraf1f4042016-02-26 18:43:30 +00001020static int __ref _cpu_down(unsigned int cpu, int tasks_frozen,
1021 enum cpuhp_state target)
Thomas Gleixner98458172016-02-26 18:43:25 +00001022{
Thomas Gleixnercff7d372016-02-26 18:43:28 +00001023 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
1024 int prev_state, ret = 0;
1025 bool hasdied = false;
Prasad Sodagudi0a293432017-10-13 15:28:58 -07001026 u64 start_time = 0;
Thomas Gleixner98458172016-02-26 18:43:25 +00001027
1028 if (num_online_cpus() == 1)
1029 return -EBUSY;
1030
Thomas Gleixner757c9892016-02-26 18:43:32 +00001031 if (!cpu_present(cpu))
Thomas Gleixner98458172016-02-26 18:43:25 +00001032 return -EINVAL;
1033
Pavankumar Kondeti68435b02017-06-29 16:17:55 +05301034 if (!tasks_frozen && !cpu_isolated(cpu) && num_online_uniso_cpus() == 1)
1035 return -EBUSY;
1036
Thomas Gleixner98458172016-02-26 18:43:25 +00001037 cpu_hotplug_begin();
Prasad Sodagudi0a293432017-10-13 15:28:58 -07001038 if (trace_cpuhp_latency_enabled())
1039 start_time = sched_clock();
Thomas Gleixner98458172016-02-26 18:43:25 +00001040
1041 cpuhp_tasks_frozen = tasks_frozen;
1042
Thomas Gleixnercff7d372016-02-26 18:43:28 +00001043 prev_state = st->state;
Thomas Gleixneraf1f4042016-02-26 18:43:30 +00001044 st->target = target;
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001045 /*
1046 * If the current CPU state is in the range of the AP hotplug thread,
1047 * then we need to kick the thread.
1048 */
Thomas Gleixner8df3e072016-02-26 18:43:41 +00001049 if (st->state > CPUHP_TEARDOWN_CPU) {
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001050 ret = cpuhp_kick_ap_work(cpu);
1051 /*
1052 * The AP side has done the error rollback already. Just
1053 * return the error code..
1054 */
1055 if (ret)
1056 goto out;
1057
1058 /*
1059 * We might have stopped still in the range of the AP hotplug
1060 * thread. Nothing to do anymore.
1061 */
Thomas Gleixner8df3e072016-02-26 18:43:41 +00001062 if (st->state > CPUHP_TEARDOWN_CPU)
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001063 goto out;
1064 }
1065 /*
Thomas Gleixner8df3e072016-02-26 18:43:41 +00001066 * The AP brought itself down to CPUHP_TEARDOWN_CPU. So we need
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001067 * to do the further cleanups.
1068 */
Thomas Gleixnera7246322016-08-12 19:49:38 +02001069 ret = cpuhp_down_callbacks(cpu, st, target);
Sebastian Andrzej Siewior3b9d6da2016-04-08 14:40:15 +02001070 if (ret && st->state > CPUHP_TEARDOWN_CPU && st->state < prev_state) {
1071 st->target = prev_state;
1072 st->rollback = true;
1073 cpuhp_kick_ap_work(cpu);
1074 }
Thomas Gleixner98458172016-02-26 18:43:25 +00001075
Thomas Gleixnercff7d372016-02-26 18:43:28 +00001076 hasdied = prev_state != st->state && st->state == CPUHP_OFFLINE;
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001077out:
Prasad Sodagudi0a293432017-10-13 15:28:58 -07001078 trace_cpuhp_latency(cpu, 0, start_time, ret);
Gautham R Shenoyd2219382008-01-25 21:08:01 +01001079 cpu_hotplug_done();
Thomas Gleixnercff7d372016-02-26 18:43:28 +00001080 /* This post dead nonsense must die */
1081 if (!ret && hasdied)
Thomas Gleixner090e77c2016-02-26 18:43:23 +00001082 cpu_notify_nofail(CPU_POST_DEAD, cpu);
Thomas Gleixnera3c901b2018-11-25 19:33:39 +01001083 arch_smt_update();
Thomas Gleixnercff7d372016-02-26 18:43:28 +00001084 return ret;
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001085}
1086
Thomas Gleixner373b8de2018-05-29 17:49:05 +02001087static int cpu_down_maps_locked(unsigned int cpu, enum cpuhp_state target)
1088{
1089 if (cpu_hotplug_disabled)
1090 return -EBUSY;
1091 return _cpu_down(cpu, 0, target);
1092}
1093
Thomas Gleixneraf1f4042016-02-26 18:43:30 +00001094static int do_cpu_down(unsigned int cpu, enum cpuhp_state target)
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001095{
Heiko Carstens9ea09af2008-12-22 12:36:30 +01001096 int err;
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001097
Gautham R Shenoyd2219382008-01-25 21:08:01 +01001098 cpu_maps_update_begin();
Thomas Gleixner373b8de2018-05-29 17:49:05 +02001099 err = cpu_down_maps_locked(cpu, target);
Gautham R Shenoyd2219382008-01-25 21:08:01 +01001100 cpu_maps_update_done();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 return err;
1102}
Thomas Gleixneraf1f4042016-02-26 18:43:30 +00001103int cpu_down(unsigned int cpu)
1104{
1105 return do_cpu_down(cpu, CPUHP_OFFLINE);
1106}
Zhang Ruib62b8ef2008-04-29 02:35:56 -04001107EXPORT_SYMBOL(cpu_down);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108#endif /*CONFIG_HOTPLUG_CPU*/
1109
Thomas Gleixner4baa0af2016-02-26 18:43:29 +00001110/**
Thomas Gleixneree1e7142016-08-18 14:57:16 +02001111 * notify_cpu_starting(cpu) - Invoke the callbacks on the starting CPU
Thomas Gleixner4baa0af2016-02-26 18:43:29 +00001112 * @cpu: cpu that just started
1113 *
Thomas Gleixner4baa0af2016-02-26 18:43:29 +00001114 * It must be called by the arch code on the new cpu, before the new cpu
1115 * enables interrupts and before the "boot" cpu returns from __cpu_up().
1116 */
1117void notify_cpu_starting(unsigned int cpu)
1118{
1119 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
1120 enum cpuhp_state target = min((int)st->target, CPUHP_AP_ONLINE);
1121
Sebastian Andrzej Siewior0c6d4572016-08-17 14:21:04 +02001122 rcu_cpu_starting(cpu); /* Enables RCU usage on this CPU. */
Thomas Gleixner8438e492018-06-29 16:05:48 +02001123 st->booted_once = true;
Thomas Gleixner4baa0af2016-02-26 18:43:29 +00001124 while (st->state < target) {
Thomas Gleixner4baa0af2016-02-26 18:43:29 +00001125 st->state++;
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001126 cpuhp_invoke_callback(cpu, st->state, true, NULL);
Thomas Gleixner4baa0af2016-02-26 18:43:29 +00001127 }
1128}
1129
Thomas Gleixner949338e2016-02-26 18:43:35 +00001130/*
Thomas Gleixnerceb354b2017-07-04 22:20:23 +02001131 * Called from the idle task. Wake up the controlling task which brings the
Peter Zijlstraa594a9e2019-12-10 09:34:54 +01001132 * hotplug thread of the upcoming CPU up and then delegates the rest of the
1133 * online bringup to the hotplug thread.
Thomas Gleixner949338e2016-02-26 18:43:35 +00001134 */
Thomas Gleixner8df3e072016-02-26 18:43:41 +00001135void cpuhp_online_idle(enum cpuhp_state state)
Thomas Gleixner949338e2016-02-26 18:43:35 +00001136{
Thomas Gleixner8df3e072016-02-26 18:43:41 +00001137 struct cpuhp_cpu_state *st = this_cpu_ptr(&cpuhp_state);
Thomas Gleixner8df3e072016-02-26 18:43:41 +00001138
1139 /* Happens for the boot cpu */
1140 if (state != CPUHP_AP_ONLINE_IDLE)
1141 return;
1142
Peter Zijlstraa594a9e2019-12-10 09:34:54 +01001143 /*
1144 * Unpart the stopper thread before we start the idle loop (and start
1145 * scheduling); this ensures the stopper task is always available.
1146 */
1147 stop_machine_unpark(smp_processor_id());
1148
Thomas Gleixner8df3e072016-02-26 18:43:41 +00001149 st->state = CPUHP_AP_ONLINE_IDLE;
Thomas Gleixnerceb354b2017-07-04 22:20:23 +02001150 complete(&st->done);
Thomas Gleixner949338e2016-02-26 18:43:35 +00001151}
1152
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001153/* Requires cpu_add_remove_lock to be held */
Thomas Gleixneraf1f4042016-02-26 18:43:30 +00001154static int _cpu_up(unsigned int cpu, int tasks_frozen, enum cpuhp_state target)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155{
Thomas Gleixnercff7d372016-02-26 18:43:28 +00001156 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
Suresh Siddha3bb5d2e2012-04-20 17:08:50 -07001157 struct task_struct *idle;
Thomas Gleixner2e1a3482016-02-26 18:43:37 +00001158 int ret = 0;
Prasad Sodagudi0a293432017-10-13 15:28:58 -07001159 u64 start_time = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160
Gautham R Shenoyd2219382008-01-25 21:08:01 +01001161 cpu_hotplug_begin();
Prasad Sodagudi0a293432017-10-13 15:28:58 -07001162 if (trace_cpuhp_latency_enabled())
1163 start_time = sched_clock();
Thomas Gleixner38498a62012-04-20 13:05:44 +00001164
Thomas Gleixner757c9892016-02-26 18:43:32 +00001165 if (!cpu_present(cpu)) {
Yasuaki Ishimatsu5e5041f2012-10-23 01:30:54 +02001166 ret = -EINVAL;
1167 goto out;
1168 }
1169
Thomas Gleixner757c9892016-02-26 18:43:32 +00001170 /*
1171 * The caller of do_cpu_up might have raced with another
1172 * caller. Ignore it for now.
1173 */
1174 if (st->state >= target)
Thomas Gleixner38498a62012-04-20 13:05:44 +00001175 goto out;
Thomas Gleixner757c9892016-02-26 18:43:32 +00001176
1177 if (st->state == CPUHP_OFFLINE) {
1178 /* Let it fail before we try to bring the cpu up */
1179 idle = idle_thread_get(cpu);
1180 if (IS_ERR(idle)) {
1181 ret = PTR_ERR(idle);
1182 goto out;
1183 }
Suresh Siddha3bb5d2e2012-04-20 17:08:50 -07001184 }
Thomas Gleixner38498a62012-04-20 13:05:44 +00001185
Thomas Gleixnerba997462016-02-26 18:43:24 +00001186 cpuhp_tasks_frozen = tasks_frozen;
1187
Thomas Gleixneraf1f4042016-02-26 18:43:30 +00001188 st->target = target;
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001189 /*
1190 * If the current CPU state is in the range of the AP hotplug thread,
1191 * then we need to kick the thread once more.
1192 */
Thomas Gleixner8df3e072016-02-26 18:43:41 +00001193 if (st->state > CPUHP_BRINGUP_CPU) {
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001194 ret = cpuhp_kick_ap_work(cpu);
1195 /*
1196 * The AP side has done the error rollback already. Just
1197 * return the error code..
1198 */
1199 if (ret)
1200 goto out;
1201 }
1202
1203 /*
1204 * Try to reach the target state. We max out on the BP at
Thomas Gleixner8df3e072016-02-26 18:43:41 +00001205 * CPUHP_BRINGUP_CPU. After that the AP hotplug thread is
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001206 * responsible for bringing it up to the target state.
1207 */
Thomas Gleixner8df3e072016-02-26 18:43:41 +00001208 target = min((int)target, CPUHP_BRINGUP_CPU);
Thomas Gleixnera7246322016-08-12 19:49:38 +02001209 ret = cpuhp_up_callbacks(cpu, st, target);
Thomas Gleixner38498a62012-04-20 13:05:44 +00001210out:
Prasad Sodagudi0a293432017-10-13 15:28:58 -07001211 trace_cpuhp_latency(cpu, 1, start_time, ret);
Gautham R Shenoyd2219382008-01-25 21:08:01 +01001212 cpu_hotplug_done();
Thomas Gleixnera3c901b2018-11-25 19:33:39 +01001213 arch_smt_update();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 return ret;
1215}
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001216
Syed Rameez Mustafab3058802016-12-16 11:59:05 -08001217static int switch_to_rt_policy(void)
1218{
1219 struct sched_param param = { .sched_priority = MAX_RT_PRIO - 1 };
1220 unsigned int policy = current->policy;
1221 int err;
1222
1223 /* Nobody should be attempting hotplug from these policy contexts. */
1224 if (policy == SCHED_BATCH || policy == SCHED_IDLE ||
1225 policy == SCHED_DEADLINE)
1226 return -EPERM;
1227
1228 if (policy == SCHED_FIFO || policy == SCHED_RR)
1229 return 1;
1230
1231 /* Only SCHED_NORMAL left. */
1232 err = sched_setscheduler_nocheck(current, SCHED_FIFO, &param);
1233 return err;
1234
1235}
1236
1237static int switch_to_fair_policy(void)
1238{
1239 struct sched_param param = { .sched_priority = 0 };
1240
1241 return sched_setscheduler_nocheck(current, SCHED_NORMAL, &param);
1242}
1243
Thomas Gleixneraf1f4042016-02-26 18:43:30 +00001244static int do_cpu_up(unsigned int cpu, enum cpuhp_state target)
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001245{
1246 int err = 0;
Syed Rameez Mustafab3058802016-12-16 11:59:05 -08001247 int switch_err = 0;
minskey guocf234222010-05-24 14:32:41 -07001248
Rusty Russelle0b582e2009-01-01 10:12:28 +10301249 if (!cpu_possible(cpu)) {
Fabian Frederick84117da2014-06-04 16:11:17 -07001250 pr_err("can't online cpu %d because it is not configured as may-hotadd at boot time\n",
1251 cpu);
Chen Gong87d5e022010-03-05 13:42:38 -08001252#if defined(CONFIG_IA64)
Fabian Frederick84117da2014-06-04 16:11:17 -07001253 pr_err("please check additional_cpus= boot parameter\n");
KAMEZAWA Hiroyuki73e753a2007-10-18 23:40:47 -07001254#endif
1255 return -EINVAL;
1256 }
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001257
Syed Rameez Mustafab3058802016-12-16 11:59:05 -08001258 switch_err = switch_to_rt_policy();
1259 if (switch_err < 0)
1260 return switch_err;
1261
Toshi Kani01b0f192013-11-12 15:07:25 -08001262 err = try_online_node(cpu_to_node(cpu));
1263 if (err)
1264 return err;
minskey guocf234222010-05-24 14:32:41 -07001265
Gautham R Shenoyd2219382008-01-25 21:08:01 +01001266 cpu_maps_update_begin();
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001267
Max Krasnyanskye761b772008-07-15 04:43:49 -07001268 if (cpu_hotplug_disabled) {
1269 err = -EBUSY;
1270 goto out;
1271 }
Thomas Gleixnerf37486c2018-05-29 17:48:27 +02001272 if (!cpu_smt_allowed(cpu)) {
1273 err = -EPERM;
1274 goto out;
1275 }
Max Krasnyanskye761b772008-07-15 04:43:49 -07001276
Thomas Gleixneraf1f4042016-02-26 18:43:30 +00001277 err = _cpu_up(cpu, 0, target);
Max Krasnyanskye761b772008-07-15 04:43:49 -07001278out:
Gautham R Shenoyd2219382008-01-25 21:08:01 +01001279 cpu_maps_update_done();
Syed Rameez Mustafab3058802016-12-16 11:59:05 -08001280
1281 if (!switch_err) {
1282 switch_err = switch_to_fair_policy();
Pavankumar Kondeti657ad052017-04-14 14:59:40 +05301283 if (switch_err)
1284 pr_err("Hotplug policy switch err=%d Task %s pid=%d\n",
1285 switch_err, current->comm, current->pid);
Syed Rameez Mustafab3058802016-12-16 11:59:05 -08001286 }
1287
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001288 return err;
1289}
Thomas Gleixneraf1f4042016-02-26 18:43:30 +00001290
1291int cpu_up(unsigned int cpu)
1292{
1293 return do_cpu_up(cpu, CPUHP_ONLINE);
1294}
Paul E. McKenneya513f6b2011-12-11 21:54:45 -08001295EXPORT_SYMBOL_GPL(cpu_up);
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001296
Rafael J. Wysockif3de4be2007-08-30 23:56:29 -07001297#ifdef CONFIG_PM_SLEEP_SMP
Rusty Russelle0b582e2009-01-01 10:12:28 +10301298static cpumask_var_t frozen_cpus;
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001299
James Morsed391e552016-08-17 13:50:25 +01001300int freeze_secondary_cpus(int primary)
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001301{
James Morsed391e552016-08-17 13:50:25 +01001302 int cpu, error = 0;
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001303
Gautham R Shenoyd2219382008-01-25 21:08:01 +01001304 cpu_maps_update_begin();
James Morsed391e552016-08-17 13:50:25 +01001305 if (!cpu_online(primary))
1306 primary = cpumask_first(cpu_online_mask);
Xiaotian Feng9ee349a2009-12-16 18:04:32 +01001307 /*
1308 * We take down all of the non-boot CPUs in one shot to avoid races
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001309 * with the userspace trying to use the CPU hotplug at the same time
1310 */
Rusty Russelle0b582e2009-01-01 10:12:28 +10301311 cpumask_clear(frozen_cpus);
Peter Zijlstra6ad4c182009-11-25 13:31:39 +01001312
Fabian Frederick84117da2014-06-04 16:11:17 -07001313 pr_info("Disabling non-boot CPUs ...\n");
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001314 for_each_online_cpu(cpu) {
James Morsed391e552016-08-17 13:50:25 +01001315 if (cpu == primary)
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001316 continue;
Todd E Brandtbb3632c2014-06-06 05:40:17 -07001317 trace_suspend_resume(TPS("CPU_OFF"), cpu, true);
Thomas Gleixneraf1f4042016-02-26 18:43:30 +00001318 error = _cpu_down(cpu, 1, CPUHP_OFFLINE);
Todd E Brandtbb3632c2014-06-06 05:40:17 -07001319 trace_suspend_resume(TPS("CPU_OFF"), cpu, false);
Mike Travisfeae3202009-11-17 18:22:13 -06001320 if (!error)
Rusty Russelle0b582e2009-01-01 10:12:28 +10301321 cpumask_set_cpu(cpu, frozen_cpus);
Mike Travisfeae3202009-11-17 18:22:13 -06001322 else {
Fabian Frederick84117da2014-06-04 16:11:17 -07001323 pr_err("Error taking CPU%d down: %d\n", cpu, error);
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001324 break;
1325 }
1326 }
Joseph Cihula86886e52009-06-30 19:31:07 -07001327
Vitaly Kuznetsov89af7ba2015-08-05 00:52:46 -07001328 if (!error)
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001329 BUG_ON(num_online_cpus() > 1);
Vitaly Kuznetsov89af7ba2015-08-05 00:52:46 -07001330 else
Fabian Frederick84117da2014-06-04 16:11:17 -07001331 pr_err("Non-boot CPUs are not disabled\n");
Vitaly Kuznetsov89af7ba2015-08-05 00:52:46 -07001332
1333 /*
1334 * Make sure the CPUs won't be enabled by someone else. We need to do
1335 * this even in case of failure as all disable_nonboot_cpus() users are
1336 * supposed to do enable_nonboot_cpus() on the failure path.
1337 */
1338 cpu_hotplug_disabled++;
1339
Gautham R Shenoyd2219382008-01-25 21:08:01 +01001340 cpu_maps_update_done();
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001341 return error;
1342}
1343
Suresh Siddhad0af9ee2009-08-19 18:05:36 -07001344void __weak arch_enable_nonboot_cpus_begin(void)
1345{
1346}
1347
1348void __weak arch_enable_nonboot_cpus_end(void)
1349{
1350}
1351
Mathias Krause71cf5ae2015-07-19 20:06:22 +02001352void enable_nonboot_cpus(void)
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001353{
1354 int cpu, error;
Thierry Strudel0c3610e2016-06-14 17:46:44 -07001355 struct device *cpu_device;
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001356
1357 /* Allow everyone to use the CPU hotplug again */
Gautham R Shenoyd2219382008-01-25 21:08:01 +01001358 cpu_maps_update_begin();
Lianwei Wang01b41152016-06-09 23:43:28 -07001359 __cpu_hotplug_enable();
Rusty Russelle0b582e2009-01-01 10:12:28 +10301360 if (cpumask_empty(frozen_cpus))
Rafael J. Wysocki1d64b9c2007-04-01 23:49:49 -07001361 goto out;
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001362
Fabian Frederick84117da2014-06-04 16:11:17 -07001363 pr_info("Enabling non-boot CPUs ...\n");
Suresh Siddhad0af9ee2009-08-19 18:05:36 -07001364
1365 arch_enable_nonboot_cpus_begin();
1366
Rusty Russelle0b582e2009-01-01 10:12:28 +10301367 for_each_cpu(cpu, frozen_cpus) {
Todd E Brandtbb3632c2014-06-06 05:40:17 -07001368 trace_suspend_resume(TPS("CPU_ON"), cpu, true);
Thomas Gleixneraf1f4042016-02-26 18:43:30 +00001369 error = _cpu_up(cpu, 1, CPUHP_ONLINE);
Todd E Brandtbb3632c2014-06-06 05:40:17 -07001370 trace_suspend_resume(TPS("CPU_ON"), cpu, false);
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001371 if (!error) {
Fabian Frederick84117da2014-06-04 16:11:17 -07001372 pr_info("CPU%d is up\n", cpu);
Thierry Strudel0c3610e2016-06-14 17:46:44 -07001373 cpu_device = get_cpu_device(cpu);
1374 if (!cpu_device)
1375 pr_err("%s: failed to get cpu%d device\n",
1376 __func__, cpu);
1377 else
1378 kobject_uevent(&cpu_device->kobj, KOBJ_ONLINE);
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001379 continue;
1380 }
Fabian Frederick84117da2014-06-04 16:11:17 -07001381 pr_warn("Error taking CPU%d up: %d\n", cpu, error);
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001382 }
Suresh Siddhad0af9ee2009-08-19 18:05:36 -07001383
1384 arch_enable_nonboot_cpus_end();
1385
Rusty Russelle0b582e2009-01-01 10:12:28 +10301386 cpumask_clear(frozen_cpus);
Rafael J. Wysocki1d64b9c2007-04-01 23:49:49 -07001387out:
Gautham R Shenoyd2219382008-01-25 21:08:01 +01001388 cpu_maps_update_done();
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001389}
Rusty Russelle0b582e2009-01-01 10:12:28 +10301390
Fenghua Yud7268a32011-11-15 21:59:31 +01001391static int __init alloc_frozen_cpus(void)
Rusty Russelle0b582e2009-01-01 10:12:28 +10301392{
1393 if (!alloc_cpumask_var(&frozen_cpus, GFP_KERNEL|__GFP_ZERO))
1394 return -ENOMEM;
1395 return 0;
1396}
1397core_initcall(alloc_frozen_cpus);
Srivatsa S. Bhat79cfbdf2011-11-03 00:59:25 +01001398
1399/*
Srivatsa S. Bhat79cfbdf2011-11-03 00:59:25 +01001400 * When callbacks for CPU hotplug notifications are being executed, we must
1401 * ensure that the state of the system with respect to the tasks being frozen
1402 * or not, as reported by the notification, remains unchanged *throughout the
1403 * duration* of the execution of the callbacks.
1404 * Hence we need to prevent the freezer from racing with regular CPU hotplug.
1405 *
1406 * This synchronization is implemented by mutually excluding regular CPU
1407 * hotplug and Suspend/Hibernate call paths by hooking onto the Suspend/
1408 * Hibernate notifications.
1409 */
1410static int
1411cpu_hotplug_pm_callback(struct notifier_block *nb,
1412 unsigned long action, void *ptr)
1413{
1414 switch (action) {
1415
1416 case PM_SUSPEND_PREPARE:
1417 case PM_HIBERNATION_PREPARE:
Srivatsa S. Bhat16e53db2013-06-12 14:04:36 -07001418 cpu_hotplug_disable();
Srivatsa S. Bhat79cfbdf2011-11-03 00:59:25 +01001419 break;
1420
1421 case PM_POST_SUSPEND:
1422 case PM_POST_HIBERNATION:
Srivatsa S. Bhat16e53db2013-06-12 14:04:36 -07001423 cpu_hotplug_enable();
Srivatsa S. Bhat79cfbdf2011-11-03 00:59:25 +01001424 break;
1425
1426 default:
1427 return NOTIFY_DONE;
1428 }
1429
1430 return NOTIFY_OK;
1431}
1432
1433
Fenghua Yud7268a32011-11-15 21:59:31 +01001434static int __init cpu_hotplug_pm_sync_init(void)
Srivatsa S. Bhat79cfbdf2011-11-03 00:59:25 +01001435{
Fenghua Yu6e32d472012-11-13 11:32:43 -08001436 /*
1437 * cpu_hotplug_pm_callback has higher priority than x86
1438 * bsp_pm_callback which depends on cpu_hotplug_pm_callback
1439 * to disable cpu hotplug to avoid cpu hotplug race.
1440 */
Srivatsa S. Bhat79cfbdf2011-11-03 00:59:25 +01001441 pm_notifier(cpu_hotplug_pm_callback, 0);
1442 return 0;
1443}
1444core_initcall(cpu_hotplug_pm_sync_init);
1445
Rafael J. Wysockif3de4be2007-08-30 23:56:29 -07001446#endif /* CONFIG_PM_SLEEP_SMP */
Max Krasnyansky68f4f1e2008-05-29 11:17:02 -07001447
1448#endif /* CONFIG_SMP */
Mike Travisb8d317d2008-07-24 18:21:29 -07001449
Thomas Gleixnercff7d372016-02-26 18:43:28 +00001450/* Boot processor state steps */
1451static struct cpuhp_step cpuhp_bp_states[] = {
1452 [CPUHP_OFFLINE] = {
1453 .name = "offline",
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001454 .startup.single = NULL,
1455 .teardown.single = NULL,
Thomas Gleixnercff7d372016-02-26 18:43:28 +00001456 },
1457#ifdef CONFIG_SMP
1458 [CPUHP_CREATE_THREADS]= {
Thomas Gleixner677f6642016-09-06 16:13:48 +02001459 .name = "threads:prepare",
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001460 .startup.single = smpboot_create_threads,
1461 .teardown.single = NULL,
Thomas Gleixner757c9892016-02-26 18:43:32 +00001462 .cant_stop = true,
Thomas Gleixnercff7d372016-02-26 18:43:28 +00001463 },
Thomas Gleixner00e16c32016-07-13 17:16:09 +00001464 [CPUHP_PERF_PREPARE] = {
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001465 .name = "perf:prepare",
1466 .startup.single = perf_event_init_cpu,
1467 .teardown.single = perf_event_exit_cpu,
Thomas Gleixner00e16c32016-07-13 17:16:09 +00001468 },
Thomas Gleixner7ee681b2016-07-13 17:16:29 +00001469 [CPUHP_WORKQUEUE_PREP] = {
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001470 .name = "workqueue:prepare",
1471 .startup.single = workqueue_prepare_cpu,
1472 .teardown.single = NULL,
Thomas Gleixner7ee681b2016-07-13 17:16:29 +00001473 },
Thomas Gleixner27590dc2016-07-15 10:41:04 +02001474 [CPUHP_HRTIMERS_PREPARE] = {
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001475 .name = "hrtimers:prepare",
1476 .startup.single = hrtimers_prepare_cpu,
1477 .teardown.single = hrtimers_dead_cpu,
Thomas Gleixner27590dc2016-07-15 10:41:04 +02001478 },
Richard Weinberger31487f82016-07-13 17:17:01 +00001479 [CPUHP_SMPCFD_PREPARE] = {
Thomas Gleixner677f6642016-09-06 16:13:48 +02001480 .name = "smpcfd:prepare",
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001481 .startup.single = smpcfd_prepare_cpu,
1482 .teardown.single = smpcfd_dead_cpu,
Richard Weinberger31487f82016-07-13 17:17:01 +00001483 },
Richard Weinbergere6d49892016-08-18 14:57:17 +02001484 [CPUHP_RELAY_PREPARE] = {
1485 .name = "relay:prepare",
1486 .startup.single = relay_prepare_cpu,
1487 .teardown.single = NULL,
1488 },
Sebastian Andrzej Siewior6731d4f2016-08-23 14:53:19 +02001489 [CPUHP_SLAB_PREPARE] = {
1490 .name = "slab:prepare",
1491 .startup.single = slab_prepare_cpu,
1492 .teardown.single = slab_dead_cpu,
Thomas Gleixnercff7d372016-02-26 18:43:28 +00001493 },
Thomas Gleixner4df83742016-07-13 17:17:03 +00001494 [CPUHP_RCUTREE_PREP] = {
Thomas Gleixner677f6642016-09-06 16:13:48 +02001495 .name = "RCU/tree:prepare",
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001496 .startup.single = rcutree_prepare_cpu,
1497 .teardown.single = rcutree_dead_cpu,
Thomas Gleixner4df83742016-07-13 17:17:03 +00001498 },
Thomas Gleixnercff7d372016-02-26 18:43:28 +00001499 /*
1500 * Preparatory and dead notifiers. Will be replaced once the notifiers
1501 * are converted to states.
1502 */
1503 [CPUHP_NOTIFY_PREPARE] = {
1504 .name = "notify:prepare",
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001505 .startup.single = notify_prepare,
1506 .teardown.single = notify_dead,
Thomas Gleixner757c9892016-02-26 18:43:32 +00001507 .cant_stop = true,
Thomas Gleixnercff7d372016-02-26 18:43:28 +00001508 },
Richard Cochran4fae16d2016-07-27 11:08:18 +02001509 /*
1510 * On the tear-down path, timers_dead_cpu() must be invoked
1511 * before blk_mq_queue_reinit_notify() from notify_dead(),
1512 * otherwise a RCU stall occurs.
1513 */
Thomas Gleixner249d4a92017-12-27 21:37:25 +01001514 [CPUHP_TIMERS_PREPARE] = {
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001515 .name = "timers:dead",
Thomas Gleixner249d4a92017-12-27 21:37:25 +01001516 .startup.single = timers_prepare_cpu,
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001517 .teardown.single = timers_dead_cpu,
Richard Cochran4fae16d2016-07-27 11:08:18 +02001518 },
Thomas Gleixnerd10ef6f2016-03-08 10:36:13 +01001519 /* Kicks the plugged cpu into life */
Thomas Gleixnercff7d372016-02-26 18:43:28 +00001520 [CPUHP_BRINGUP_CPU] = {
1521 .name = "cpu:bringup",
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001522 .startup.single = bringup_cpu,
1523 .teardown.single = NULL,
Thomas Gleixner757c9892016-02-26 18:43:32 +00001524 .cant_stop = true,
Thomas Gleixner4baa0af2016-02-26 18:43:29 +00001525 },
Thomas Gleixnerd10ef6f2016-03-08 10:36:13 +01001526 /*
1527 * Handled on controll processor until the plugged processor manages
1528 * this itself.
1529 */
Thomas Gleixner4baa0af2016-02-26 18:43:29 +00001530 [CPUHP_TEARDOWN_CPU] = {
1531 .name = "cpu:teardown",
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001532 .startup.single = NULL,
1533 .teardown.single = takedown_cpu,
Thomas Gleixner757c9892016-02-26 18:43:32 +00001534 .cant_stop = true,
Thomas Gleixnercff7d372016-02-26 18:43:28 +00001535 },
Thomas Gleixnera7c734142016-07-12 21:59:23 +02001536#else
1537 [CPUHP_BRINGUP_CPU] = { },
Thomas Gleixnercff7d372016-02-26 18:43:28 +00001538#endif
Thomas Gleixnercff7d372016-02-26 18:43:28 +00001539};
1540
Thomas Gleixner4baa0af2016-02-26 18:43:29 +00001541/* Application processor state steps */
1542static struct cpuhp_step cpuhp_ap_states[] = {
1543#ifdef CONFIG_SMP
Thomas Gleixnerd10ef6f2016-03-08 10:36:13 +01001544 /* Final state before CPU kills itself */
1545 [CPUHP_AP_IDLE_DEAD] = {
1546 .name = "idle:dead",
1547 },
1548 /*
1549 * Last state before CPU enters the idle loop to die. Transient state
1550 * for synchronization.
1551 */
1552 [CPUHP_AP_OFFLINE] = {
1553 .name = "ap:offline",
1554 .cant_stop = true,
1555 },
Thomas Gleixner9cf72432016-03-10 12:54:09 +01001556 /* First state is scheduler control. Interrupts are disabled */
1557 [CPUHP_AP_SCHED_STARTING] = {
1558 .name = "sched:starting",
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001559 .startup.single = sched_cpu_starting,
1560 .teardown.single = sched_cpu_dying,
Thomas Gleixner9cf72432016-03-10 12:54:09 +01001561 },
Thomas Gleixner4df83742016-07-13 17:17:03 +00001562 [CPUHP_AP_RCUTREE_DYING] = {
Thomas Gleixner677f6642016-09-06 16:13:48 +02001563 .name = "RCU/tree:dying",
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001564 .startup.single = NULL,
1565 .teardown.single = rcutree_dying_cpu,
Thomas Gleixner4baa0af2016-02-26 18:43:29 +00001566 },
Maria Yue90f8e12017-09-21 11:30:53 +08001567 [CPUHP_AP_KMAP_DYING] = {
1568 .name = "KMAP:dying",
1569 .startup.single = NULL,
1570 .teardown.single = kmap_remove_unused_cpu,
1571 },
Lai Jiangshanff3d4fd2017-11-28 21:19:53 +08001572 [CPUHP_AP_SMPCFD_DYING] = {
1573 .name = "smpcfd:dying",
1574 .startup.single = NULL,
1575 .teardown.single = smpcfd_dying_cpu,
1576 },
Thomas Gleixnerd10ef6f2016-03-08 10:36:13 +01001577 /* Entry state on starting. Interrupts enabled from here on. Transient
1578 * state for synchronsization */
1579 [CPUHP_AP_ONLINE] = {
1580 .name = "ap:online",
1581 },
1582 /* Handle smpboot threads park/unpark */
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001583 [CPUHP_AP_SMPBOOT_THREADS] = {
Thomas Gleixner677f6642016-09-06 16:13:48 +02001584 .name = "smpboot/threads:online",
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001585 .startup.single = smpboot_unpark_threads,
Thomas Gleixner93335752018-05-29 19:05:25 +02001586 .teardown.single = smpboot_park_threads,
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001587 },
Thomas Gleixner00e16c32016-07-13 17:16:09 +00001588 [CPUHP_AP_PERF_ONLINE] = {
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001589 .name = "perf:online",
Raghavendra Rao Ananta595428c2018-10-16 12:13:22 -07001590 .startup.single = perf_event_restart_events,
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001591 .teardown.single = perf_event_exit_cpu,
Thomas Gleixner00e16c32016-07-13 17:16:09 +00001592 },
Thomas Gleixner7ee681b2016-07-13 17:16:29 +00001593 [CPUHP_AP_WORKQUEUE_ONLINE] = {
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001594 .name = "workqueue:online",
1595 .startup.single = workqueue_online_cpu,
1596 .teardown.single = workqueue_offline_cpu,
Thomas Gleixner7ee681b2016-07-13 17:16:29 +00001597 },
Thomas Gleixner4df83742016-07-13 17:17:03 +00001598 [CPUHP_AP_RCUTREE_ONLINE] = {
Thomas Gleixner677f6642016-09-06 16:13:48 +02001599 .name = "RCU/tree:online",
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001600 .startup.single = rcutree_online_cpu,
1601 .teardown.single = rcutree_offline_cpu,
Thomas Gleixner4df83742016-07-13 17:17:03 +00001602 },
Thomas Gleixner00e16c32016-07-13 17:16:09 +00001603
Thomas Gleixnerd10ef6f2016-03-08 10:36:13 +01001604 /*
1605 * Online/down_prepare notifiers. Will be removed once the notifiers
1606 * are converted to states.
1607 */
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001608 [CPUHP_AP_NOTIFY_ONLINE] = {
1609 .name = "notify:online",
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001610 .startup.single = notify_online,
1611 .teardown.single = notify_down_prepare,
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001612 },
Thomas Gleixner4baa0af2016-02-26 18:43:29 +00001613#endif
Thomas Gleixnerd10ef6f2016-03-08 10:36:13 +01001614 /*
1615 * The dynamically registered state space is here
1616 */
1617
Thomas Gleixneraaddd7d2016-03-10 12:54:19 +01001618#ifdef CONFIG_SMP
1619 /* Last state is scheduler control setting the cpu active */
1620 [CPUHP_AP_ACTIVE] = {
1621 .name = "sched:active",
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001622 .startup.single = sched_cpu_activate,
1623 .teardown.single = sched_cpu_deactivate,
Thomas Gleixneraaddd7d2016-03-10 12:54:19 +01001624 },
1625#endif
1626
Thomas Gleixnerd10ef6f2016-03-08 10:36:13 +01001627 /* CPU is fully up and running. */
Thomas Gleixner4baa0af2016-02-26 18:43:29 +00001628 [CPUHP_ONLINE] = {
1629 .name = "online",
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001630 .startup.single = NULL,
1631 .teardown.single = NULL,
Thomas Gleixner4baa0af2016-02-26 18:43:29 +00001632 },
1633};
1634
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001635/* Sanity check for callbacks */
1636static int cpuhp_cb_check(enum cpuhp_state state)
1637{
1638 if (state <= CPUHP_OFFLINE || state >= CPUHP_ONLINE)
1639 return -EINVAL;
1640 return 0;
1641}
1642
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001643static void cpuhp_store_callbacks(enum cpuhp_state state,
1644 const char *name,
1645 int (*startup)(unsigned int cpu),
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001646 int (*teardown)(unsigned int cpu),
1647 bool multi_instance)
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001648{
1649 /* (Un)Install the callbacks for further cpu hotplug operations */
1650 struct cpuhp_step *sp;
1651
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001652 sp = cpuhp_get_step(state);
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001653 sp->startup.single = startup;
1654 sp->teardown.single = teardown;
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001655 sp->name = name;
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001656 sp->multi_instance = multi_instance;
1657 INIT_HLIST_HEAD(&sp->list);
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001658}
1659
1660static void *cpuhp_get_teardown_cb(enum cpuhp_state state)
1661{
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001662 return cpuhp_get_step(state)->teardown.single;
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001663}
1664
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001665/*
1666 * Call the startup/teardown function for a step either on the AP or
1667 * on the current CPU.
1668 */
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001669static int cpuhp_issue_call(int cpu, enum cpuhp_state state, bool bringup,
1670 struct hlist_node *node)
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001671{
Thomas Gleixnera7246322016-08-12 19:49:38 +02001672 struct cpuhp_step *sp = cpuhp_get_step(state);
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001673 int ret;
1674
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001675 if ((bringup && !sp->startup.single) ||
1676 (!bringup && !sp->teardown.single))
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001677 return 0;
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001678 /*
1679 * The non AP bound callbacks can fail on bringup. On teardown
1680 * e.g. module removal we crash for now.
1681 */
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001682#ifdef CONFIG_SMP
1683 if (cpuhp_is_ap_state(state))
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001684 ret = cpuhp_invoke_ap_callback(cpu, state, bringup, node);
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001685 else
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001686 ret = cpuhp_invoke_callback(cpu, state, bringup, node);
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001687#else
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001688 ret = cpuhp_invoke_callback(cpu, state, bringup, node);
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001689#endif
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001690 BUG_ON(ret && !bringup);
1691 return ret;
1692}
1693
1694/*
1695 * Called from __cpuhp_setup_state on a recoverable failure.
1696 *
1697 * Note: The teardown callbacks for rollback are not allowed to fail!
1698 */
1699static void cpuhp_rollback_install(int failedcpu, enum cpuhp_state state,
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001700 struct hlist_node *node)
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001701{
1702 int cpu;
1703
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001704 /* Roll back the already executed steps on the other cpus */
1705 for_each_present_cpu(cpu) {
1706 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
1707 int cpustate = st->state;
1708
1709 if (cpu >= failedcpu)
1710 break;
1711
1712 /* Did we invoke the startup call on that cpu ? */
1713 if (cpustate >= state)
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001714 cpuhp_issue_call(cpu, state, false, node);
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001715 }
1716}
1717
1718/*
1719 * Returns a free for dynamic slot assignment of the Online state. The states
1720 * are protected by the cpuhp_slot_states mutex and an empty slot is identified
1721 * by having no name assigned.
1722 */
1723static int cpuhp_reserve_state(enum cpuhp_state state)
1724{
1725 enum cpuhp_state i;
1726
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001727 for (i = CPUHP_AP_ONLINE_DYN; i <= CPUHP_AP_ONLINE_DYN_END; i++) {
1728 if (cpuhp_ap_states[i].name)
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001729 continue;
1730
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001731 cpuhp_ap_states[i].name = "Reserved";
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001732 return i;
1733 }
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001734 WARN(1, "No more dynamic states available for CPU hotplug\n");
1735 return -ENOSPC;
1736}
1737
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001738int __cpuhp_state_add_instance(enum cpuhp_state state, struct hlist_node *node,
1739 bool invoke)
1740{
1741 struct cpuhp_step *sp;
1742 int cpu;
1743 int ret;
1744
1745 sp = cpuhp_get_step(state);
1746 if (sp->multi_instance == false)
1747 return -EINVAL;
1748
1749 get_online_cpus();
Sebastian Andrzej Siewior7ad6de42017-03-14 16:06:45 +01001750 mutex_lock(&cpuhp_state_mutex);
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001751
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001752 if (!invoke || !sp->startup.multi)
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001753 goto add_node;
1754
1755 /*
1756 * Try to call the startup callback for each present cpu
1757 * depending on the hotplug state of the cpu.
1758 */
1759 for_each_present_cpu(cpu) {
1760 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
1761 int cpustate = st->state;
1762
1763 if (cpustate < state)
1764 continue;
1765
1766 ret = cpuhp_issue_call(cpu, state, true, node);
1767 if (ret) {
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001768 if (sp->teardown.multi)
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001769 cpuhp_rollback_install(cpu, state, node);
1770 goto err;
1771 }
1772 }
1773add_node:
1774 ret = 0;
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001775 hlist_add_head(node, &sp->list);
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001776
1777err:
Sebastian Andrzej Siewior7ad6de42017-03-14 16:06:45 +01001778 mutex_unlock(&cpuhp_state_mutex);
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001779 put_online_cpus();
1780 return ret;
1781}
1782EXPORT_SYMBOL_GPL(__cpuhp_state_add_instance);
1783
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001784/**
1785 * __cpuhp_setup_state - Setup the callbacks for an hotplug machine state
1786 * @state: The state to setup
1787 * @invoke: If true, the startup function is invoked for cpus where
1788 * cpu state >= @state
1789 * @startup: startup callback function
1790 * @teardown: teardown callback function
1791 *
1792 * Returns 0 if successful, otherwise a proper error code
1793 */
1794int __cpuhp_setup_state(enum cpuhp_state state,
1795 const char *name, bool invoke,
1796 int (*startup)(unsigned int cpu),
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001797 int (*teardown)(unsigned int cpu),
1798 bool multi_instance)
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001799{
1800 int cpu, ret = 0;
1801 int dyn_state = 0;
1802
1803 if (cpuhp_cb_check(state) || !name)
1804 return -EINVAL;
1805
1806 get_online_cpus();
Sebastian Andrzej Siewior7ad6de42017-03-14 16:06:45 +01001807 mutex_lock(&cpuhp_state_mutex);
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001808
1809 /* currently assignments for the ONLINE state are possible */
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001810 if (state == CPUHP_AP_ONLINE_DYN) {
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001811 dyn_state = 1;
1812 ret = cpuhp_reserve_state(state);
1813 if (ret < 0)
1814 goto out;
1815 state = ret;
1816 }
1817
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001818 cpuhp_store_callbacks(state, name, startup, teardown, multi_instance);
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001819
1820 if (!invoke || !startup)
1821 goto out;
1822
1823 /*
1824 * Try to call the startup callback for each present cpu
1825 * depending on the hotplug state of the cpu.
1826 */
1827 for_each_present_cpu(cpu) {
1828 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
1829 int cpustate = st->state;
1830
1831 if (cpustate < state)
1832 continue;
1833
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001834 ret = cpuhp_issue_call(cpu, state, true, NULL);
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001835 if (ret) {
Thomas Gleixnera7246322016-08-12 19:49:38 +02001836 if (teardown)
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001837 cpuhp_rollback_install(cpu, state, NULL);
1838 cpuhp_store_callbacks(state, NULL, NULL, NULL, false);
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001839 goto out;
1840 }
1841 }
1842out:
Sebastian Andrzej Siewior7ad6de42017-03-14 16:06:45 +01001843 mutex_unlock(&cpuhp_state_mutex);
1844
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001845 put_online_cpus();
1846 if (!ret && dyn_state)
1847 return state;
1848 return ret;
1849}
1850EXPORT_SYMBOL(__cpuhp_setup_state);
1851
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001852int __cpuhp_state_remove_instance(enum cpuhp_state state,
1853 struct hlist_node *node, bool invoke)
1854{
1855 struct cpuhp_step *sp = cpuhp_get_step(state);
1856 int cpu;
1857
1858 BUG_ON(cpuhp_cb_check(state));
1859
1860 if (!sp->multi_instance)
1861 return -EINVAL;
1862
1863 get_online_cpus();
Sebastian Andrzej Siewior7ad6de42017-03-14 16:06:45 +01001864 mutex_lock(&cpuhp_state_mutex);
1865
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001866 if (!invoke || !cpuhp_get_teardown_cb(state))
1867 goto remove;
1868 /*
1869 * Call the teardown callback for each present cpu depending
1870 * on the hotplug state of the cpu. This function is not
1871 * allowed to fail currently!
1872 */
1873 for_each_present_cpu(cpu) {
1874 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
1875 int cpustate = st->state;
1876
1877 if (cpustate >= state)
1878 cpuhp_issue_call(cpu, state, false, node);
1879 }
1880
1881remove:
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001882 hlist_del(node);
1883 mutex_unlock(&cpuhp_state_mutex);
1884 put_online_cpus();
1885
1886 return 0;
1887}
1888EXPORT_SYMBOL_GPL(__cpuhp_state_remove_instance);
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001889/**
1890 * __cpuhp_remove_state - Remove the callbacks for an hotplug machine state
1891 * @state: The state to remove
1892 * @invoke: If true, the teardown function is invoked for cpus where
1893 * cpu state >= @state
1894 *
1895 * The teardown callback is currently not allowed to fail. Think
1896 * about module removal!
1897 */
1898void __cpuhp_remove_state(enum cpuhp_state state, bool invoke)
1899{
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001900 struct cpuhp_step *sp = cpuhp_get_step(state);
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001901 int cpu;
1902
1903 BUG_ON(cpuhp_cb_check(state));
1904
1905 get_online_cpus();
Sebastian Andrzej Siewior7ad6de42017-03-14 16:06:45 +01001906 mutex_lock(&cpuhp_state_mutex);
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001907
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001908 if (sp->multi_instance) {
1909 WARN(!hlist_empty(&sp->list),
1910 "Error: Removing state %d which has instances left.\n",
1911 state);
1912 goto remove;
1913 }
1914
Thomas Gleixnera7246322016-08-12 19:49:38 +02001915 if (!invoke || !cpuhp_get_teardown_cb(state))
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001916 goto remove;
1917
1918 /*
1919 * Call the teardown callback for each present cpu depending
1920 * on the hotplug state of the cpu. This function is not
1921 * allowed to fail currently!
1922 */
1923 for_each_present_cpu(cpu) {
1924 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
1925 int cpustate = st->state;
1926
1927 if (cpustate >= state)
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001928 cpuhp_issue_call(cpu, state, false, NULL);
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001929 }
1930remove:
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001931 cpuhp_store_callbacks(state, NULL, NULL, NULL, false);
Sebastian Andrzej Siewior7ad6de42017-03-14 16:06:45 +01001932 mutex_unlock(&cpuhp_state_mutex);
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001933 put_online_cpus();
1934}
1935EXPORT_SYMBOL(__cpuhp_remove_state);
1936
Thomas Gleixner98f8cdc2016-02-26 18:43:31 +00001937#if defined(CONFIG_SYSFS) && defined(CONFIG_HOTPLUG_CPU)
1938static ssize_t show_cpuhp_state(struct device *dev,
1939 struct device_attribute *attr, char *buf)
1940{
1941 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, dev->id);
1942
1943 return sprintf(buf, "%d\n", st->state);
1944}
1945static DEVICE_ATTR(state, 0444, show_cpuhp_state, NULL);
1946
Thomas Gleixner757c9892016-02-26 18:43:32 +00001947static ssize_t write_cpuhp_target(struct device *dev,
1948 struct device_attribute *attr,
1949 const char *buf, size_t count)
1950{
1951 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, dev->id);
1952 struct cpuhp_step *sp;
1953 int target, ret;
1954
1955 ret = kstrtoint(buf, 10, &target);
1956 if (ret)
1957 return ret;
1958
1959#ifdef CONFIG_CPU_HOTPLUG_STATE_CONTROL
1960 if (target < CPUHP_OFFLINE || target > CPUHP_ONLINE)
1961 return -EINVAL;
1962#else
1963 if (target != CPUHP_OFFLINE && target != CPUHP_ONLINE)
1964 return -EINVAL;
1965#endif
1966
1967 ret = lock_device_hotplug_sysfs();
1968 if (ret)
1969 return ret;
1970
1971 mutex_lock(&cpuhp_state_mutex);
1972 sp = cpuhp_get_step(target);
1973 ret = !sp->name || sp->cant_stop ? -EINVAL : 0;
1974 mutex_unlock(&cpuhp_state_mutex);
1975 if (ret)
Sebastian Andrzej Siewior106c77e2017-06-02 16:27:14 +02001976 goto out;
Thomas Gleixner757c9892016-02-26 18:43:32 +00001977
1978 if (st->state < target)
1979 ret = do_cpu_up(dev->id, target);
1980 else
1981 ret = do_cpu_down(dev->id, target);
Sebastian Andrzej Siewior106c77e2017-06-02 16:27:14 +02001982out:
Thomas Gleixner757c9892016-02-26 18:43:32 +00001983 unlock_device_hotplug();
1984 return ret ? ret : count;
1985}
1986
Thomas Gleixner98f8cdc2016-02-26 18:43:31 +00001987static ssize_t show_cpuhp_target(struct device *dev,
1988 struct device_attribute *attr, char *buf)
1989{
1990 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, dev->id);
1991
1992 return sprintf(buf, "%d\n", st->target);
1993}
Thomas Gleixner757c9892016-02-26 18:43:32 +00001994static DEVICE_ATTR(target, 0644, show_cpuhp_target, write_cpuhp_target);
Thomas Gleixner98f8cdc2016-02-26 18:43:31 +00001995
1996static struct attribute *cpuhp_cpu_attrs[] = {
1997 &dev_attr_state.attr,
1998 &dev_attr_target.attr,
1999 NULL
2000};
2001
2002static struct attribute_group cpuhp_cpu_attr_group = {
2003 .attrs = cpuhp_cpu_attrs,
2004 .name = "hotplug",
2005 NULL
2006};
2007
2008static ssize_t show_cpuhp_states(struct device *dev,
2009 struct device_attribute *attr, char *buf)
2010{
2011 ssize_t cur, res = 0;
2012 int i;
2013
2014 mutex_lock(&cpuhp_state_mutex);
Thomas Gleixner757c9892016-02-26 18:43:32 +00002015 for (i = CPUHP_OFFLINE; i <= CPUHP_ONLINE; i++) {
Thomas Gleixner98f8cdc2016-02-26 18:43:31 +00002016 struct cpuhp_step *sp = cpuhp_get_step(i);
2017
2018 if (sp->name) {
2019 cur = sprintf(buf, "%3d: %s\n", i, sp->name);
2020 buf += cur;
2021 res += cur;
2022 }
2023 }
2024 mutex_unlock(&cpuhp_state_mutex);
2025 return res;
2026}
2027static DEVICE_ATTR(states, 0444, show_cpuhp_states, NULL);
2028
2029static struct attribute *cpuhp_cpu_root_attrs[] = {
2030 &dev_attr_states.attr,
2031 NULL
2032};
2033
2034static struct attribute_group cpuhp_cpu_root_attr_group = {
2035 .attrs = cpuhp_cpu_root_attrs,
2036 .name = "hotplug",
2037 NULL
2038};
2039
Thomas Gleixnerf37486c2018-05-29 17:48:27 +02002040#ifdef CONFIG_HOTPLUG_SMT
2041
2042static const char *smt_states[] = {
2043 [CPU_SMT_ENABLED] = "on",
2044 [CPU_SMT_DISABLED] = "off",
2045 [CPU_SMT_FORCE_DISABLED] = "forceoff",
2046 [CPU_SMT_NOT_SUPPORTED] = "notsupported",
2047};
2048
2049static ssize_t
2050show_smt_control(struct device *dev, struct device_attribute *attr, char *buf)
2051{
2052 return snprintf(buf, PAGE_SIZE - 2, "%s\n", smt_states[cpu_smt_control]);
2053}
2054
2055static void cpuhp_offline_cpu_device(unsigned int cpu)
2056{
2057 struct device *dev = get_cpu_device(cpu);
2058
2059 dev->offline = true;
2060 /* Tell user space about the state change */
2061 kobject_uevent(&dev->kobj, KOBJ_OFFLINE);
2062}
2063
Thomas Gleixnere7cda2f2018-07-07 11:40:18 +02002064static void cpuhp_online_cpu_device(unsigned int cpu)
2065{
2066 struct device *dev = get_cpu_device(cpu);
2067
2068 dev->offline = false;
2069 /* Tell user space about the state change */
2070 kobject_uevent(&dev->kobj, KOBJ_ONLINE);
2071}
2072
Jiri Kosina5bdc5362019-05-30 00:09:39 +02002073int cpuhp_smt_disable(enum cpuhp_smt_control ctrlval)
Thomas Gleixnerf37486c2018-05-29 17:48:27 +02002074{
2075 int cpu, ret = 0;
2076
2077 cpu_maps_update_begin();
2078 for_each_online_cpu(cpu) {
2079 if (topology_is_primary_thread(cpu))
2080 continue;
2081 ret = cpu_down_maps_locked(cpu, CPUHP_OFFLINE);
2082 if (ret)
2083 break;
2084 /*
2085 * As this needs to hold the cpu maps lock it's impossible
2086 * to call device_offline() because that ends up calling
2087 * cpu_down() which takes cpu maps lock. cpu maps lock
2088 * needs to be held as this might race against in kernel
2089 * abusers of the hotplug machinery (thermal management).
2090 *
2091 * So nothing would update device:offline state. That would
2092 * leave the sysfs entry stale and prevent onlining after
2093 * smt control has been changed to 'off' again. This is
2094 * called under the sysfs hotplug lock, so it is properly
2095 * serialized against the regular offline usage.
2096 */
2097 cpuhp_offline_cpu_device(cpu);
2098 }
Jiri Kosinab410c572018-09-25 14:38:55 +02002099 if (!ret) {
Thomas Gleixnerf37486c2018-05-29 17:48:27 +02002100 cpu_smt_control = ctrlval;
Jiri Kosinab410c572018-09-25 14:38:55 +02002101 arch_smt_update();
2102 }
Thomas Gleixnerf37486c2018-05-29 17:48:27 +02002103 cpu_maps_update_done();
2104 return ret;
2105}
2106
Jiri Kosina5bdc5362019-05-30 00:09:39 +02002107int cpuhp_smt_enable(void)
Thomas Gleixnerf37486c2018-05-29 17:48:27 +02002108{
Thomas Gleixnere7cda2f2018-07-07 11:40:18 +02002109 int cpu, ret = 0;
2110
Thomas Gleixnerf37486c2018-05-29 17:48:27 +02002111 cpu_maps_update_begin();
2112 cpu_smt_control = CPU_SMT_ENABLED;
Jiri Kosinab410c572018-09-25 14:38:55 +02002113 arch_smt_update();
Thomas Gleixnere7cda2f2018-07-07 11:40:18 +02002114 for_each_present_cpu(cpu) {
2115 /* Skip online CPUs and CPUs on offline nodes */
2116 if (cpu_online(cpu) || !node_online(cpu_to_node(cpu)))
2117 continue;
2118 ret = _cpu_up(cpu, 0, CPUHP_ONLINE);
2119 if (ret)
2120 break;
2121 /* See comment in cpuhp_smt_disable() */
2122 cpuhp_online_cpu_device(cpu);
2123 }
Thomas Gleixnerf37486c2018-05-29 17:48:27 +02002124 cpu_maps_update_done();
Thomas Gleixnere7cda2f2018-07-07 11:40:18 +02002125 return ret;
Thomas Gleixnerf37486c2018-05-29 17:48:27 +02002126}
2127
2128static ssize_t
2129store_smt_control(struct device *dev, struct device_attribute *attr,
2130 const char *buf, size_t count)
2131{
2132 int ctrlval, ret;
2133
2134 if (sysfs_streq(buf, "on"))
2135 ctrlval = CPU_SMT_ENABLED;
2136 else if (sysfs_streq(buf, "off"))
2137 ctrlval = CPU_SMT_DISABLED;
2138 else if (sysfs_streq(buf, "forceoff"))
2139 ctrlval = CPU_SMT_FORCE_DISABLED;
2140 else
2141 return -EINVAL;
2142
2143 if (cpu_smt_control == CPU_SMT_FORCE_DISABLED)
2144 return -EPERM;
2145
2146 if (cpu_smt_control == CPU_SMT_NOT_SUPPORTED)
2147 return -ENODEV;
2148
2149 ret = lock_device_hotplug_sysfs();
2150 if (ret)
2151 return ret;
2152
2153 if (ctrlval != cpu_smt_control) {
2154 switch (ctrlval) {
2155 case CPU_SMT_ENABLED:
Thomas Gleixnere7cda2f2018-07-07 11:40:18 +02002156 ret = cpuhp_smt_enable();
Thomas Gleixnerf37486c2018-05-29 17:48:27 +02002157 break;
2158 case CPU_SMT_DISABLED:
2159 case CPU_SMT_FORCE_DISABLED:
2160 ret = cpuhp_smt_disable(ctrlval);
2161 break;
2162 }
2163 }
2164
2165 unlock_device_hotplug();
2166 return ret ? ret : count;
2167}
2168static DEVICE_ATTR(control, 0644, show_smt_control, store_smt_control);
2169
2170static ssize_t
2171show_smt_active(struct device *dev, struct device_attribute *attr, char *buf)
2172{
2173 bool active = topology_max_smt_threads() > 1;
2174
2175 return snprintf(buf, PAGE_SIZE - 2, "%d\n", active);
2176}
2177static DEVICE_ATTR(active, 0444, show_smt_active, NULL);
2178
2179static struct attribute *cpuhp_smt_attrs[] = {
2180 &dev_attr_control.attr,
2181 &dev_attr_active.attr,
2182 NULL
2183};
2184
2185static const struct attribute_group cpuhp_smt_attr_group = {
2186 .attrs = cpuhp_smt_attrs,
2187 .name = "smt",
2188 NULL
2189};
2190
2191static int __init cpu_smt_state_init(void)
2192{
Thomas Gleixnerf37486c2018-05-29 17:48:27 +02002193 return sysfs_create_group(&cpu_subsys.dev_root->kobj,
2194 &cpuhp_smt_attr_group);
2195}
2196
2197#else
2198static inline int cpu_smt_state_init(void) { return 0; }
2199#endif
2200
Thomas Gleixner98f8cdc2016-02-26 18:43:31 +00002201static int __init cpuhp_sysfs_init(void)
2202{
2203 int cpu, ret;
2204
Thomas Gleixnerf37486c2018-05-29 17:48:27 +02002205 ret = cpu_smt_state_init();
2206 if (ret)
2207 return ret;
2208
Thomas Gleixner98f8cdc2016-02-26 18:43:31 +00002209 ret = sysfs_create_group(&cpu_subsys.dev_root->kobj,
2210 &cpuhp_cpu_root_attr_group);
2211 if (ret)
2212 return ret;
2213
2214 for_each_possible_cpu(cpu) {
2215 struct device *dev = get_cpu_device(cpu);
2216
2217 if (!dev)
2218 continue;
2219 ret = sysfs_create_group(&dev->kobj, &cpuhp_cpu_attr_group);
2220 if (ret)
2221 return ret;
2222 }
2223 return 0;
2224}
2225device_initcall(cpuhp_sysfs_init);
2226#endif
2227
Linus Torvaldse56b3bc2008-07-28 11:32:33 -07002228/*
2229 * cpu_bit_bitmap[] is a special, "compressed" data structure that
2230 * represents all NR_CPUS bits binary values of 1<<nr.
2231 *
Rusty Russelle0b582e2009-01-01 10:12:28 +10302232 * It is used by cpumask_of() to get a constant address to a CPU
Linus Torvaldse56b3bc2008-07-28 11:32:33 -07002233 * mask value that has a single bit set only.
2234 */
Mike Travisb8d317d2008-07-24 18:21:29 -07002235
Linus Torvaldse56b3bc2008-07-28 11:32:33 -07002236/* cpu_bit_bitmap[0] is empty - so we can back into it */
Michael Rodriguez4d519852011-03-22 16:34:07 -07002237#define MASK_DECLARE_1(x) [x+1][0] = (1UL << (x))
Linus Torvaldse56b3bc2008-07-28 11:32:33 -07002238#define MASK_DECLARE_2(x) MASK_DECLARE_1(x), MASK_DECLARE_1(x+1)
2239#define MASK_DECLARE_4(x) MASK_DECLARE_2(x), MASK_DECLARE_2(x+2)
2240#define MASK_DECLARE_8(x) MASK_DECLARE_4(x), MASK_DECLARE_4(x+4)
Mike Travisb8d317d2008-07-24 18:21:29 -07002241
Linus Torvaldse56b3bc2008-07-28 11:32:33 -07002242const unsigned long cpu_bit_bitmap[BITS_PER_LONG+1][BITS_TO_LONGS(NR_CPUS)] = {
Mike Travisb8d317d2008-07-24 18:21:29 -07002243
Linus Torvaldse56b3bc2008-07-28 11:32:33 -07002244 MASK_DECLARE_8(0), MASK_DECLARE_8(8),
2245 MASK_DECLARE_8(16), MASK_DECLARE_8(24),
2246#if BITS_PER_LONG > 32
2247 MASK_DECLARE_8(32), MASK_DECLARE_8(40),
2248 MASK_DECLARE_8(48), MASK_DECLARE_8(56),
Mike Travisb8d317d2008-07-24 18:21:29 -07002249#endif
2250};
Linus Torvaldse56b3bc2008-07-28 11:32:33 -07002251EXPORT_SYMBOL_GPL(cpu_bit_bitmap);
Rusty Russell2d3854a2008-11-05 13:39:10 +11002252
2253const DECLARE_BITMAP(cpu_all_bits, NR_CPUS) = CPU_BITS_ALL;
2254EXPORT_SYMBOL(cpu_all_bits);
Rusty Russellb3199c02008-12-30 09:05:14 +10302255
2256#ifdef CONFIG_INIT_ALL_POSSIBLE
Rasmus Villemoes4b804c82016-01-20 15:00:19 -08002257struct cpumask __cpu_possible_mask __read_mostly
Rasmus Villemoesc4c54dd2016-01-20 15:00:16 -08002258 = {CPU_BITS_ALL};
Rusty Russellb3199c02008-12-30 09:05:14 +10302259#else
Rasmus Villemoes4b804c82016-01-20 15:00:19 -08002260struct cpumask __cpu_possible_mask __read_mostly;
Rusty Russellb3199c02008-12-30 09:05:14 +10302261#endif
Rasmus Villemoes4b804c82016-01-20 15:00:19 -08002262EXPORT_SYMBOL(__cpu_possible_mask);
Rusty Russellb3199c02008-12-30 09:05:14 +10302263
Rasmus Villemoes4b804c82016-01-20 15:00:19 -08002264struct cpumask __cpu_online_mask __read_mostly;
2265EXPORT_SYMBOL(__cpu_online_mask);
Rusty Russellb3199c02008-12-30 09:05:14 +10302266
Rasmus Villemoes4b804c82016-01-20 15:00:19 -08002267struct cpumask __cpu_present_mask __read_mostly;
2268EXPORT_SYMBOL(__cpu_present_mask);
Rusty Russellb3199c02008-12-30 09:05:14 +10302269
Rasmus Villemoes4b804c82016-01-20 15:00:19 -08002270struct cpumask __cpu_active_mask __read_mostly;
2271EXPORT_SYMBOL(__cpu_active_mask);
Rusty Russell3fa41522008-12-30 09:05:16 +10302272
Olav Haugan99cd46a2016-05-29 19:56:37 -07002273struct cpumask __cpu_isolated_mask __read_mostly;
2274EXPORT_SYMBOL(__cpu_isolated_mask);
2275
Rusty Russell3fa41522008-12-30 09:05:16 +10302276void init_cpu_present(const struct cpumask *src)
2277{
Rasmus Villemoesc4c54dd2016-01-20 15:00:16 -08002278 cpumask_copy(&__cpu_present_mask, src);
Rusty Russell3fa41522008-12-30 09:05:16 +10302279}
2280
2281void init_cpu_possible(const struct cpumask *src)
2282{
Rasmus Villemoesc4c54dd2016-01-20 15:00:16 -08002283 cpumask_copy(&__cpu_possible_mask, src);
Rusty Russell3fa41522008-12-30 09:05:16 +10302284}
2285
2286void init_cpu_online(const struct cpumask *src)
2287{
Rasmus Villemoesc4c54dd2016-01-20 15:00:16 -08002288 cpumask_copy(&__cpu_online_mask, src);
Rusty Russell3fa41522008-12-30 09:05:16 +10302289}
Thomas Gleixnercff7d372016-02-26 18:43:28 +00002290
Olav Haugan99cd46a2016-05-29 19:56:37 -07002291void init_cpu_isolated(const struct cpumask *src)
2292{
2293 cpumask_copy(&__cpu_isolated_mask, src);
2294}
2295
Thomas Gleixnercff7d372016-02-26 18:43:28 +00002296/*
2297 * Activate the first processor.
2298 */
2299void __init boot_cpu_init(void)
2300{
2301 int cpu = smp_processor_id();
2302
2303 /* Mark the boot cpu "present", "online" etc for SMP and UP case */
2304 set_cpu_online(cpu, true);
2305 set_cpu_active(cpu, true);
2306 set_cpu_present(cpu, true);
2307 set_cpu_possible(cpu, true);
2308}
2309
2310/*
2311 * Must be called _AFTER_ setting up the per_cpu areas
2312 */
Linus Torvalds6bb53ee2018-08-12 12:19:42 -07002313void __init boot_cpu_hotplug_init(void)
Thomas Gleixnercff7d372016-02-26 18:43:28 +00002314{
Abel Vesaaee08612018-08-15 00:26:00 +03002315#ifdef CONFIG_SMP
Thomas Gleixner8438e492018-06-29 16:05:48 +02002316 this_cpu_write(cpuhp_state.booted_once, true);
Abel Vesaaee08612018-08-15 00:26:00 +03002317#endif
Thomas Gleixner8438e492018-06-29 16:05:48 +02002318 this_cpu_write(cpuhp_state.state, CPUHP_ONLINE);
Thomas Gleixnercff7d372016-02-26 18:43:28 +00002319}
Todd Poynoref07e9e42011-06-15 17:21:57 -07002320
Tyler Hickse2bd0772019-11-04 12:22:02 +01002321/*
2322 * These are used for a global "mitigations=" cmdline option for toggling
2323 * optional CPU mitigations.
2324 */
2325enum cpu_mitigations {
2326 CPU_MITIGATIONS_OFF,
2327 CPU_MITIGATIONS_AUTO,
2328 CPU_MITIGATIONS_AUTO_NOSMT,
2329};
2330
2331static enum cpu_mitigations cpu_mitigations __ro_after_init =
2332 CPU_MITIGATIONS_AUTO;
Josh Poimboeufedda9c32019-04-12 15:39:28 -05002333
2334static int __init mitigations_parse_cmdline(char *arg)
2335{
2336 if (!strcmp(arg, "off"))
2337 cpu_mitigations = CPU_MITIGATIONS_OFF;
2338 else if (!strcmp(arg, "auto"))
2339 cpu_mitigations = CPU_MITIGATIONS_AUTO;
2340 else if (!strcmp(arg, "auto,nosmt"))
2341 cpu_mitigations = CPU_MITIGATIONS_AUTO_NOSMT;
Geert Uytterhoeven0cbb0ae2019-05-16 09:09:35 +02002342 else
2343 pr_crit("Unsupported mitigations=%s, system may still be vulnerable\n",
2344 arg);
Josh Poimboeufedda9c32019-04-12 15:39:28 -05002345
2346 return 0;
2347}
2348early_param("mitigations", mitigations_parse_cmdline);
Greg Kroah-Hartmane0625b32019-05-14 20:43:04 +02002349
Tyler Hickse2bd0772019-11-04 12:22:02 +01002350/* mitigations=off */
2351bool cpu_mitigations_off(void)
2352{
2353 return cpu_mitigations == CPU_MITIGATIONS_OFF;
2354}
2355EXPORT_SYMBOL_GPL(cpu_mitigations_off);
2356
2357/* mitigations=auto,nosmt */
2358bool cpu_mitigations_auto_nosmt(void)
2359{
2360 return cpu_mitigations == CPU_MITIGATIONS_AUTO_NOSMT;
2361}
2362EXPORT_SYMBOL_GPL(cpu_mitigations_auto_nosmt);
Greg Kroah-Hartman258971b2019-11-16 11:05:12 +01002363
Todd Poynoref07e9e42011-06-15 17:21:57 -07002364static ATOMIC_NOTIFIER_HEAD(idle_notifier);
2365
2366void idle_notifier_register(struct notifier_block *n)
2367{
2368 atomic_notifier_chain_register(&idle_notifier, n);
2369}
2370EXPORT_SYMBOL_GPL(idle_notifier_register);
2371
2372void idle_notifier_unregister(struct notifier_block *n)
2373{
2374 atomic_notifier_chain_unregister(&idle_notifier, n);
2375}
2376EXPORT_SYMBOL_GPL(idle_notifier_unregister);
2377
2378void idle_notifier_call_chain(unsigned long val)
2379{
2380 atomic_notifier_call_chain(&idle_notifier, val, NULL);
2381}
2382EXPORT_SYMBOL_GPL(idle_notifier_call_chain);