blob: 81a78c22bbc9d0d1d21ebbe16dcaa2349d6ba83c [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
525 /* Unpark the stopper thread and the hotplug thread of the target cpu */
526 stop_machine_unpark(cpu);
527 kthread_unpark(st->thread);
528
Thomas Gleixner8438e492018-06-29 16:05:48 +0200529 /*
530 * SMT soft disabling on X86 requires to bring the CPU out of the
531 * BIOS 'wait for SIPI' state in order to set the CR4.MCE bit. The
532 * CPU marked itself as booted_once in cpu_notify_starting() so the
533 * cpu_smt_allowed() check will now return false if this is not the
534 * primary sibling.
535 */
536 if (!cpu_smt_allowed(cpu))
537 return -ECANCELED;
538
Thomas Gleixnerceb354b2017-07-04 22:20:23 +0200539 /* Should we go further up ? */
540 if (st->target > CPUHP_AP_ONLINE_IDLE) {
541 __cpuhp_kick_ap_work(st);
542 wait_for_completion(&st->done);
543 }
Thomas Gleixner8df3e072016-02-26 18:43:41 +0000544 return st->result;
545}
546
Thomas Gleixnerba997462016-02-26 18:43:24 +0000547static int bringup_cpu(unsigned int cpu)
548{
549 struct task_struct *idle = idle_thread_get(cpu);
550 int ret;
551
Boris Ostrovskyaa877172016-08-03 13:22:28 -0400552 /*
553 * Some architectures have to walk the irq descriptors to
554 * setup the vector space for the cpu which comes online.
555 * Prevent irq alloc/free across the bringup.
556 */
557 irq_lock_sparse();
558
Thomas Gleixnerba997462016-02-26 18:43:24 +0000559 /* Arch-specific enabling code. */
560 ret = __cpu_up(cpu, idle);
Boris Ostrovskyaa877172016-08-03 13:22:28 -0400561 irq_unlock_sparse();
Thomas Gleixnerba997462016-02-26 18:43:24 +0000562 if (ret) {
563 cpu_notify(CPU_UP_CANCELED, cpu);
564 return ret;
565 }
Thomas Gleixnerceb354b2017-07-04 22:20:23 +0200566 return bringup_wait_for_ap(cpu);
Thomas Gleixnerba997462016-02-26 18:43:24 +0000567}
568
Thomas Gleixner2e1a3482016-02-26 18:43:37 +0000569/*
570 * Hotplug state machine related functions
571 */
Thomas Gleixnera7246322016-08-12 19:49:38 +0200572static void undo_cpu_down(unsigned int cpu, struct cpuhp_cpu_state *st)
Thomas Gleixner2e1a3482016-02-26 18:43:37 +0000573{
574 for (st->state++; st->state < st->target; st->state++) {
Thomas Gleixnera7246322016-08-12 19:49:38 +0200575 struct cpuhp_step *step = cpuhp_get_step(st->state);
Thomas Gleixner2e1a3482016-02-26 18:43:37 +0000576
577 if (!step->skip_onerr)
Thomas Gleixnercf392d12016-08-12 19:49:39 +0200578 cpuhp_invoke_callback(cpu, st->state, true, NULL);
Thomas Gleixner2e1a3482016-02-26 18:43:37 +0000579 }
580}
581
582static int cpuhp_down_callbacks(unsigned int cpu, struct cpuhp_cpu_state *st,
Thomas Gleixnera7246322016-08-12 19:49:38 +0200583 enum cpuhp_state target)
Thomas Gleixner2e1a3482016-02-26 18:43:37 +0000584{
585 enum cpuhp_state prev_state = st->state;
586 int ret = 0;
587
588 for (; st->state > target; st->state--) {
Thomas Gleixnercf392d12016-08-12 19:49:39 +0200589 ret = cpuhp_invoke_callback(cpu, st->state, false, NULL);
Channagoud Kadabibd019ce2017-06-19 17:14:52 -0700590 BUG_ON(ret && st->state < CPUHP_AP_IDLE_DEAD);
Thomas Gleixner2e1a3482016-02-26 18:43:37 +0000591 if (ret) {
592 st->target = prev_state;
Thomas Gleixnera7246322016-08-12 19:49:38 +0200593 undo_cpu_down(cpu, st);
Thomas Gleixner2e1a3482016-02-26 18:43:37 +0000594 break;
595 }
596 }
597 return ret;
598}
599
Thomas Gleixnera7246322016-08-12 19:49:38 +0200600static void undo_cpu_up(unsigned int cpu, struct cpuhp_cpu_state *st)
Thomas Gleixner2e1a3482016-02-26 18:43:37 +0000601{
602 for (st->state--; st->state > st->target; st->state--) {
Thomas Gleixnera7246322016-08-12 19:49:38 +0200603 struct cpuhp_step *step = cpuhp_get_step(st->state);
Thomas Gleixner2e1a3482016-02-26 18:43:37 +0000604
605 if (!step->skip_onerr)
Thomas Gleixnercf392d12016-08-12 19:49:39 +0200606 cpuhp_invoke_callback(cpu, st->state, false, NULL);
Thomas Gleixner2e1a3482016-02-26 18:43:37 +0000607 }
608}
609
Thomas Gleixnerce4fbb92019-03-26 17:36:05 +0100610static inline bool can_rollback_cpu(struct cpuhp_cpu_state *st)
611{
612 if (IS_ENABLED(CONFIG_HOTPLUG_CPU))
613 return true;
614 /*
615 * When CPU hotplug is disabled, then taking the CPU down is not
616 * possible because takedown_cpu() and the architecture and
617 * subsystem specific mechanisms are not available. So the CPU
618 * which would be completely unplugged again needs to stay around
619 * in the current state.
620 */
621 return st->state <= CPUHP_BRINGUP_CPU;
622}
623
Thomas Gleixner2e1a3482016-02-26 18:43:37 +0000624static int cpuhp_up_callbacks(unsigned int cpu, struct cpuhp_cpu_state *st,
Thomas Gleixnera7246322016-08-12 19:49:38 +0200625 enum cpuhp_state target)
Thomas Gleixner2e1a3482016-02-26 18:43:37 +0000626{
627 enum cpuhp_state prev_state = st->state;
628 int ret = 0;
629
630 while (st->state < target) {
Thomas Gleixner2e1a3482016-02-26 18:43:37 +0000631 st->state++;
Thomas Gleixnercf392d12016-08-12 19:49:39 +0200632 ret = cpuhp_invoke_callback(cpu, st->state, true, NULL);
Thomas Gleixner2e1a3482016-02-26 18:43:37 +0000633 if (ret) {
Thomas Gleixnerce4fbb92019-03-26 17:36:05 +0100634 if (can_rollback_cpu(st)) {
635 st->target = prev_state;
636 undo_cpu_up(cpu, st);
637 }
Thomas Gleixner2e1a3482016-02-26 18:43:37 +0000638 break;
639 }
640 }
641 return ret;
642}
643
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000644/*
645 * The cpu hotplug threads manage the bringup and teardown of the cpus
646 */
647static void cpuhp_create(unsigned int cpu)
648{
649 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
650
651 init_completion(&st->done);
652}
653
654static int cpuhp_should_run(unsigned int cpu)
655{
656 struct cpuhp_cpu_state *st = this_cpu_ptr(&cpuhp_state);
657
658 return st->should_run;
659}
660
661/* Execute the teardown callbacks. Used to be CPU_DOWN_PREPARE */
662static int cpuhp_ap_offline(unsigned int cpu, struct cpuhp_cpu_state *st)
663{
Thomas Gleixner1cf4f622016-02-26 18:43:39 +0000664 enum cpuhp_state target = max((int)st->target, CPUHP_TEARDOWN_CPU);
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000665
Thomas Gleixnera7246322016-08-12 19:49:38 +0200666 return cpuhp_down_callbacks(cpu, st, target);
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000667}
668
669/* Execute the online startup callbacks. Used to be CPU_ONLINE */
670static int cpuhp_ap_online(unsigned int cpu, struct cpuhp_cpu_state *st)
671{
Thomas Gleixnera7246322016-08-12 19:49:38 +0200672 return cpuhp_up_callbacks(cpu, st, st->target);
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000673}
674
675/*
676 * Execute teardown/startup callbacks on the plugged cpu. Also used to invoke
677 * callbacks when a state gets [un]installed at runtime.
678 */
679static void cpuhp_thread_fun(unsigned int cpu)
680{
681 struct cpuhp_cpu_state *st = this_cpu_ptr(&cpuhp_state);
682 int ret = 0;
683
684 /*
685 * Paired with the mb() in cpuhp_kick_ap_work and
686 * cpuhp_invoke_ap_callback, so the work set is consistent visible.
687 */
688 smp_mb();
689 if (!st->should_run)
690 return;
691
692 st->should_run = false;
693
Thomas Gleixnerc198e222017-05-24 10:15:43 +0200694 lock_map_acquire(&cpuhp_state_lock_map);
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000695 /* Single callback invocation for [un]install ? */
Thomas Gleixnera7246322016-08-12 19:49:38 +0200696 if (st->single) {
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000697 if (st->cb_state < CPUHP_AP_ONLINE) {
698 local_irq_disable();
Thomas Gleixnera7246322016-08-12 19:49:38 +0200699 ret = cpuhp_invoke_callback(cpu, st->cb_state,
Thomas Gleixnercf392d12016-08-12 19:49:39 +0200700 st->bringup, st->node);
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000701 local_irq_enable();
702 } else {
Thomas Gleixnera7246322016-08-12 19:49:38 +0200703 ret = cpuhp_invoke_callback(cpu, st->cb_state,
Thomas Gleixnercf392d12016-08-12 19:49:39 +0200704 st->bringup, st->node);
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000705 }
Sebastian Andrzej Siewior3b9d6da2016-04-08 14:40:15 +0200706 } else if (st->rollback) {
707 BUG_ON(st->state < CPUHP_AP_ONLINE_IDLE);
708
Thomas Gleixnera7246322016-08-12 19:49:38 +0200709 undo_cpu_down(cpu, st);
Sebastian Andrzej Siewior3b9d6da2016-04-08 14:40:15 +0200710 /*
711 * This is a momentary workaround to keep the notifier users
712 * happy. Will go away once we got rid of the notifiers.
713 */
714 cpu_notify_nofail(CPU_DOWN_FAILED, cpu);
715 st->rollback = false;
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000716 } else {
Thomas Gleixner1cf4f622016-02-26 18:43:39 +0000717 /* Cannot happen .... */
Thomas Gleixner8df3e072016-02-26 18:43:41 +0000718 BUG_ON(st->state < CPUHP_AP_ONLINE_IDLE);
Thomas Gleixner1cf4f622016-02-26 18:43:39 +0000719
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000720 /* Regular hotplug work */
721 if (st->state < st->target)
722 ret = cpuhp_ap_online(cpu, st);
723 else if (st->state > st->target)
724 ret = cpuhp_ap_offline(cpu, st);
725 }
Thomas Gleixnerc198e222017-05-24 10:15:43 +0200726 lock_map_release(&cpuhp_state_lock_map);
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000727 st->result = ret;
728 complete(&st->done);
729}
730
731/* Invoke a single callback on a remote cpu */
Thomas Gleixnera7246322016-08-12 19:49:38 +0200732static int
Thomas Gleixnercf392d12016-08-12 19:49:39 +0200733cpuhp_invoke_ap_callback(int cpu, enum cpuhp_state state, bool bringup,
734 struct hlist_node *node)
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000735{
736 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
737
738 if (!cpu_online(cpu))
739 return 0;
740
Thomas Gleixnerc198e222017-05-24 10:15:43 +0200741 lock_map_acquire(&cpuhp_state_lock_map);
742 lock_map_release(&cpuhp_state_lock_map);
743
Thomas Gleixner6a4e2452016-07-13 17:16:03 +0000744 /*
745 * If we are up and running, use the hotplug thread. For early calls
746 * we invoke the thread function directly.
747 */
748 if (!st->thread)
Thomas Gleixnercf392d12016-08-12 19:49:39 +0200749 return cpuhp_invoke_callback(cpu, state, bringup, node);
Thomas Gleixner6a4e2452016-07-13 17:16:03 +0000750
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000751 st->cb_state = state;
Thomas Gleixnera7246322016-08-12 19:49:38 +0200752 st->single = true;
753 st->bringup = bringup;
Thomas Gleixnercf392d12016-08-12 19:49:39 +0200754 st->node = node;
Thomas Gleixnera7246322016-08-12 19:49:38 +0200755
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000756 /*
757 * Make sure the above stores are visible before should_run becomes
758 * true. Paired with the mb() above in cpuhp_thread_fun()
759 */
760 smp_mb();
761 st->should_run = true;
762 wake_up_process(st->thread);
763 wait_for_completion(&st->done);
764 return st->result;
765}
766
767/* Regular hotplug invocation of the AP hotplug thread */
Thomas Gleixner1cf4f622016-02-26 18:43:39 +0000768static void __cpuhp_kick_ap_work(struct cpuhp_cpu_state *st)
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000769{
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000770 st->result = 0;
Thomas Gleixnera7246322016-08-12 19:49:38 +0200771 st->single = false;
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000772 /*
773 * Make sure the above stores are visible before should_run becomes
774 * true. Paired with the mb() above in cpuhp_thread_fun()
775 */
776 smp_mb();
777 st->should_run = true;
778 wake_up_process(st->thread);
Thomas Gleixner1cf4f622016-02-26 18:43:39 +0000779}
780
781static int cpuhp_kick_ap_work(unsigned int cpu)
782{
783 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
784 enum cpuhp_state state = st->state;
785
786 trace_cpuhp_enter(cpu, st->target, state, cpuhp_kick_ap_work);
Thomas Gleixnerc198e222017-05-24 10:15:43 +0200787 lock_map_acquire(&cpuhp_state_lock_map);
788 lock_map_release(&cpuhp_state_lock_map);
Thomas Gleixner1cf4f622016-02-26 18:43:39 +0000789 __cpuhp_kick_ap_work(st);
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000790 wait_for_completion(&st->done);
791 trace_cpuhp_exit(cpu, st->state, state, st->result);
792 return st->result;
793}
794
795static struct smp_hotplug_thread cpuhp_threads = {
796 .store = &cpuhp_state.thread,
797 .create = &cpuhp_create,
798 .thread_should_run = cpuhp_should_run,
799 .thread_fn = cpuhp_thread_fun,
800 .thread_comm = "cpuhp/%u",
801 .selfparking = true,
802};
803
804void __init cpuhp_threads_init(void)
805{
806 BUG_ON(smpboot_register_percpu_thread(&cpuhp_threads));
807 kthread_unpark(this_cpu_read(cpuhp_state.thread));
808}
809
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810EXPORT_SYMBOL(register_cpu_notifier);
Srivatsa S. Bhat93ae4f92014-03-11 02:04:14 +0530811EXPORT_SYMBOL(__register_cpu_notifier);
Mathias Krause71cf5ae2015-07-19 20:06:22 +0200812void unregister_cpu_notifier(struct notifier_block *nb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813{
Gautham R Shenoyd2219382008-01-25 21:08:01 +0100814 cpu_maps_update_begin();
Neil Brownbd5349c2006-10-17 00:10:35 -0700815 raw_notifier_chain_unregister(&cpu_chain, nb);
Gautham R Shenoyd2219382008-01-25 21:08:01 +0100816 cpu_maps_update_done();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817}
818EXPORT_SYMBOL(unregister_cpu_notifier);
819
Mathias Krause71cf5ae2015-07-19 20:06:22 +0200820void __unregister_cpu_notifier(struct notifier_block *nb)
Srivatsa S. Bhat93ae4f92014-03-11 02:04:14 +0530821{
822 raw_notifier_chain_unregister(&cpu_chain, nb);
823}
824EXPORT_SYMBOL(__unregister_cpu_notifier);
825
Michal Hocko56eaecc2016-12-07 14:54:38 +0100826#ifdef CONFIG_HOTPLUG_CPU
Anton Vorontsove4cc2f82012-05-31 16:26:26 -0700827/**
828 * clear_tasks_mm_cpumask - Safely clear tasks' mm_cpumask for a CPU
829 * @cpu: a CPU id
830 *
831 * This function walks all processes, finds a valid mm struct for each one and
832 * then clears a corresponding bit in mm's cpumask. While this all sounds
833 * trivial, there are various non-obvious corner cases, which this function
834 * tries to solve in a safe manner.
835 *
836 * Also note that the function uses a somewhat relaxed locking scheme, so it may
837 * be called only for an already offlined CPU.
838 */
Anton Vorontsovcb792952012-05-31 16:26:22 -0700839void clear_tasks_mm_cpumask(int cpu)
840{
841 struct task_struct *p;
842
843 /*
844 * This function is called after the cpu is taken down and marked
845 * offline, so its not like new tasks will ever get this cpu set in
846 * their mm mask. -- Peter Zijlstra
847 * Thus, we may use rcu_read_lock() here, instead of grabbing
848 * full-fledged tasklist_lock.
849 */
Anton Vorontsove4cc2f82012-05-31 16:26:26 -0700850 WARN_ON(cpu_online(cpu));
Anton Vorontsovcb792952012-05-31 16:26:22 -0700851 rcu_read_lock();
852 for_each_process(p) {
853 struct task_struct *t;
854
Anton Vorontsove4cc2f82012-05-31 16:26:26 -0700855 /*
856 * Main thread might exit, but other threads may still have
857 * a valid mm. Find one.
858 */
Anton Vorontsovcb792952012-05-31 16:26:22 -0700859 t = find_lock_task_mm(p);
860 if (!t)
861 continue;
862 cpumask_clear_cpu(cpu, mm_cpumask(t->mm));
863 task_unlock(t);
864 }
865 rcu_read_unlock();
866}
867
Kirill Tkhaib728ca02014-06-25 12:19:55 +0400868static inline void check_for_tasks(int dead_cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869{
Kirill Tkhaib728ca02014-06-25 12:19:55 +0400870 struct task_struct *g, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
Oleg Nesterova75a6062015-09-10 15:07:50 +0200872 read_lock(&tasklist_lock);
873 for_each_process_thread(g, p) {
Kirill Tkhaib728ca02014-06-25 12:19:55 +0400874 if (!p->on_rq)
875 continue;
876 /*
877 * We do the check with unlocked task_rq(p)->lock.
878 * Order the reading to do not warn about a task,
879 * which was running on this cpu in the past, and
880 * it's just been woken on another cpu.
881 */
882 rmb();
883 if (task_cpu(p) != dead_cpu)
884 continue;
885
886 pr_warn("Task %s (pid=%d) is on cpu %d (state=%ld, flags=%x)\n",
887 p->comm, task_pid_nr(p), dead_cpu, p->state, p->flags);
Oleg Nesterova75a6062015-09-10 15:07:50 +0200888 }
889 read_unlock(&tasklist_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890}
891
Thomas Gleixner98458172016-02-26 18:43:25 +0000892static int notify_down_prepare(unsigned int cpu)
893{
894 int err, nr_calls = 0;
895
896 err = __cpu_notify(CPU_DOWN_PREPARE, cpu, -1, &nr_calls);
897 if (err) {
898 nr_calls--;
899 __cpu_notify(CPU_DOWN_FAILED, cpu, nr_calls, NULL);
900 pr_warn("%s: attempt to take down CPU %u failed\n",
901 __func__, cpu);
902 }
903 return err;
904}
905
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906/* Take this CPU down. */
Mathias Krause71cf5ae2015-07-19 20:06:22 +0200907static int take_cpu_down(void *_param)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908{
Thomas Gleixner4baa0af2016-02-26 18:43:29 +0000909 struct cpuhp_cpu_state *st = this_cpu_ptr(&cpuhp_state);
910 enum cpuhp_state target = max((int)st->target, CPUHP_AP_OFFLINE);
Thomas Gleixner090e77c2016-02-26 18:43:23 +0000911 int err, cpu = smp_processor_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 /* Ensure this CPU doesn't handle any more interrupts. */
914 err = __cpu_disable();
915 if (err < 0)
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700916 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917
Thomas Gleixnera7246322016-08-12 19:49:38 +0200918 /*
919 * We get here while we are in CPUHP_TEARDOWN_CPU state and we must not
920 * do this step again.
921 */
922 WARN_ON(st->state != CPUHP_TEARDOWN_CPU);
923 st->state--;
Thomas Gleixner4baa0af2016-02-26 18:43:29 +0000924 /* Invoke the former CPU_DYING callbacks */
Thomas Gleixnera7246322016-08-12 19:49:38 +0200925 for (; st->state > target; st->state--)
Thomas Gleixnercf392d12016-08-12 19:49:39 +0200926 cpuhp_invoke_callback(cpu, st->state, false, NULL);
Thomas Gleixner4baa0af2016-02-26 18:43:29 +0000927
Thomas Gleixner52c063d2015-04-03 02:37:24 +0200928 /* Give up timekeeping duties */
929 tick_handover_do_timer();
Thomas Gleixner14e568e2013-01-31 12:11:14 +0000930 /* Park the stopper thread */
Thomas Gleixner090e77c2016-02-26 18:43:23 +0000931 stop_machine_park(cpu);
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700932 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933}
934
Thomas Gleixner98458172016-02-26 18:43:25 +0000935static int takedown_cpu(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936{
Thomas Gleixnere69aab12016-02-26 18:43:43 +0000937 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
Thomas Gleixner98458172016-02-26 18:43:25 +0000938 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
Thomas Gleixner2a58c522016-03-10 20:42:08 +0100940 /* Park the smpboot threads */
Thomas Gleixner1cf4f622016-02-26 18:43:39 +0000941 kthread_park(per_cpu_ptr(&cpuhp_state, cpu)->thread);
942
Peter Zijlstra6acce3e2013-10-11 14:38:20 +0200943 /*
Thomas Gleixnera8994182015-07-05 17:12:30 +0000944 * Prevent irq alloc/free while the dying cpu reorganizes the
945 * interrupt affinities.
946 */
947 irq_lock_sparse();
948
949 /*
Peter Zijlstra6acce3e2013-10-11 14:38:20 +0200950 * So now all preempt/rcu users must observe !cpu_active().
951 */
Thomas Gleixner090e77c2016-02-26 18:43:23 +0000952 err = stop_machine(take_cpu_down, NULL, cpumask_of(cpu));
Rusty Russell04321582008-07-28 12:16:29 -0500953 if (err) {
Sebastian Andrzej Siewior3b9d6da2016-04-08 14:40:15 +0200954 /* CPU refused to die */
Thomas Gleixnera8994182015-07-05 17:12:30 +0000955 irq_unlock_sparse();
Sebastian Andrzej Siewior3b9d6da2016-04-08 14:40:15 +0200956 /* Unpark the hotplug thread so we can rollback there */
957 kthread_unpark(per_cpu_ptr(&cpuhp_state, cpu)->thread);
Thomas Gleixner98458172016-02-26 18:43:25 +0000958 return err;
Satoru Takeuchi8fa1d7d2006-10-28 10:38:57 -0700959 }
Rusty Russell04321582008-07-28 12:16:29 -0500960 BUG_ON(cpu_online(cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961
Peter Zijlstra48c5cca2010-11-13 19:32:29 +0100962 /*
Thomas Gleixneree1e7142016-08-18 14:57:16 +0200963 * The CPUHP_AP_SCHED_MIGRATE_DYING callback will have removed all
Peter Zijlstra48c5cca2010-11-13 19:32:29 +0100964 * runnable tasks from the cpu, there's only the idle task left now
965 * that the migration thread is done doing the stop_machine thing.
Peter Zijlstra51a96c72010-11-19 20:37:53 +0100966 *
967 * Wait for the stop thread to go away.
Peter Zijlstra48c5cca2010-11-13 19:32:29 +0100968 */
Thomas Gleixnere69aab12016-02-26 18:43:43 +0000969 wait_for_completion(&st->done);
970 BUG_ON(st->state != CPUHP_AP_IDLE_DEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971
Thomas Gleixnera8994182015-07-05 17:12:30 +0000972 /* Interrupts are moved away from the dying cpu, reenable alloc/free */
973 irq_unlock_sparse();
974
Preeti U Murthy345527b2015-03-30 14:59:19 +0530975 hotplug_cpu__broadcast_tick_pull(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 /* This actually kills the CPU. */
977 __cpu_die(cpu);
978
Thomas Gleixnera49b1162015-04-03 02:38:05 +0200979 tick_cleanup_dead_cpu(cpu);
Thomas Gleixner98458172016-02-26 18:43:25 +0000980 return 0;
981}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982
Thomas Gleixner98458172016-02-26 18:43:25 +0000983static int notify_dead(unsigned int cpu)
984{
985 cpu_notify_nofail(CPU_DEAD, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 check_for_tasks(cpu);
Thomas Gleixner98458172016-02-26 18:43:25 +0000987 return 0;
988}
989
Thomas Gleixner71f87b22016-03-03 10:52:10 +0100990static void cpuhp_complete_idle_dead(void *arg)
991{
992 struct cpuhp_cpu_state *st = arg;
993
994 complete(&st->done);
995}
996
Thomas Gleixnere69aab12016-02-26 18:43:43 +0000997void cpuhp_report_idle_dead(void)
998{
999 struct cpuhp_cpu_state *st = this_cpu_ptr(&cpuhp_state);
1000
1001 BUG_ON(st->state != CPUHP_AP_OFFLINE);
Thomas Gleixner27d50c72016-02-26 18:43:44 +00001002 rcu_report_dead(smp_processor_id());
Thomas Gleixner71f87b22016-03-03 10:52:10 +01001003 st->state = CPUHP_AP_IDLE_DEAD;
1004 /*
1005 * We cannot call complete after rcu_report_dead() so we delegate it
1006 * to an online cpu.
1007 */
1008 smp_call_function_single(cpumask_first(cpu_online_mask),
1009 cpuhp_complete_idle_dead, st, 0);
Thomas Gleixnere69aab12016-02-26 18:43:43 +00001010}
1011
Thomas Gleixnercff7d372016-02-26 18:43:28 +00001012#else
1013#define notify_down_prepare NULL
1014#define takedown_cpu NULL
1015#define notify_dead NULL
1016#endif
1017
1018#ifdef CONFIG_HOTPLUG_CPU
Thomas Gleixnercff7d372016-02-26 18:43:28 +00001019
Thomas Gleixner98458172016-02-26 18:43:25 +00001020/* Requires cpu_add_remove_lock to be held */
Thomas Gleixneraf1f4042016-02-26 18:43:30 +00001021static int __ref _cpu_down(unsigned int cpu, int tasks_frozen,
1022 enum cpuhp_state target)
Thomas Gleixner98458172016-02-26 18:43:25 +00001023{
Thomas Gleixnercff7d372016-02-26 18:43:28 +00001024 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
1025 int prev_state, ret = 0;
1026 bool hasdied = false;
Prasad Sodagudi0a293432017-10-13 15:28:58 -07001027 u64 start_time = 0;
Thomas Gleixner98458172016-02-26 18:43:25 +00001028
1029 if (num_online_cpus() == 1)
1030 return -EBUSY;
1031
Thomas Gleixner757c9892016-02-26 18:43:32 +00001032 if (!cpu_present(cpu))
Thomas Gleixner98458172016-02-26 18:43:25 +00001033 return -EINVAL;
1034
Pavankumar Kondeti68435b02017-06-29 16:17:55 +05301035 if (!tasks_frozen && !cpu_isolated(cpu) && num_online_uniso_cpus() == 1)
1036 return -EBUSY;
1037
Thomas Gleixner98458172016-02-26 18:43:25 +00001038 cpu_hotplug_begin();
Prasad Sodagudi0a293432017-10-13 15:28:58 -07001039 if (trace_cpuhp_latency_enabled())
1040 start_time = sched_clock();
Thomas Gleixner98458172016-02-26 18:43:25 +00001041
1042 cpuhp_tasks_frozen = tasks_frozen;
1043
Thomas Gleixnercff7d372016-02-26 18:43:28 +00001044 prev_state = st->state;
Thomas Gleixneraf1f4042016-02-26 18:43:30 +00001045 st->target = target;
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001046 /*
1047 * If the current CPU state is in the range of the AP hotplug thread,
1048 * then we need to kick the thread.
1049 */
Thomas Gleixner8df3e072016-02-26 18:43:41 +00001050 if (st->state > CPUHP_TEARDOWN_CPU) {
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001051 ret = cpuhp_kick_ap_work(cpu);
1052 /*
1053 * The AP side has done the error rollback already. Just
1054 * return the error code..
1055 */
1056 if (ret)
1057 goto out;
1058
1059 /*
1060 * We might have stopped still in the range of the AP hotplug
1061 * thread. Nothing to do anymore.
1062 */
Thomas Gleixner8df3e072016-02-26 18:43:41 +00001063 if (st->state > CPUHP_TEARDOWN_CPU)
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001064 goto out;
1065 }
1066 /*
Thomas Gleixner8df3e072016-02-26 18:43:41 +00001067 * The AP brought itself down to CPUHP_TEARDOWN_CPU. So we need
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001068 * to do the further cleanups.
1069 */
Thomas Gleixnera7246322016-08-12 19:49:38 +02001070 ret = cpuhp_down_callbacks(cpu, st, target);
Sebastian Andrzej Siewior3b9d6da2016-04-08 14:40:15 +02001071 if (ret && st->state > CPUHP_TEARDOWN_CPU && st->state < prev_state) {
1072 st->target = prev_state;
1073 st->rollback = true;
1074 cpuhp_kick_ap_work(cpu);
1075 }
Thomas Gleixner98458172016-02-26 18:43:25 +00001076
Thomas Gleixnercff7d372016-02-26 18:43:28 +00001077 hasdied = prev_state != st->state && st->state == CPUHP_OFFLINE;
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001078out:
Prasad Sodagudi0a293432017-10-13 15:28:58 -07001079 trace_cpuhp_latency(cpu, 0, start_time, ret);
Gautham R Shenoyd2219382008-01-25 21:08:01 +01001080 cpu_hotplug_done();
Thomas Gleixnercff7d372016-02-26 18:43:28 +00001081 /* This post dead nonsense must die */
1082 if (!ret && hasdied)
Thomas Gleixner090e77c2016-02-26 18:43:23 +00001083 cpu_notify_nofail(CPU_POST_DEAD, cpu);
Thomas Gleixnera3c901b2018-11-25 19:33:39 +01001084 arch_smt_update();
Thomas Gleixnercff7d372016-02-26 18:43:28 +00001085 return ret;
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001086}
1087
Thomas Gleixner373b8de2018-05-29 17:49:05 +02001088static int cpu_down_maps_locked(unsigned int cpu, enum cpuhp_state target)
1089{
1090 if (cpu_hotplug_disabled)
1091 return -EBUSY;
1092 return _cpu_down(cpu, 0, target);
1093}
1094
Thomas Gleixneraf1f4042016-02-26 18:43:30 +00001095static int do_cpu_down(unsigned int cpu, enum cpuhp_state target)
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001096{
Heiko Carstens9ea09af2008-12-22 12:36:30 +01001097 int err;
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001098
Gautham R Shenoyd2219382008-01-25 21:08:01 +01001099 cpu_maps_update_begin();
Thomas Gleixner373b8de2018-05-29 17:49:05 +02001100 err = cpu_down_maps_locked(cpu, target);
Gautham R Shenoyd2219382008-01-25 21:08:01 +01001101 cpu_maps_update_done();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 return err;
1103}
Thomas Gleixneraf1f4042016-02-26 18:43:30 +00001104int cpu_down(unsigned int cpu)
1105{
1106 return do_cpu_down(cpu, CPUHP_OFFLINE);
1107}
Zhang Ruib62b8ef2008-04-29 02:35:56 -04001108EXPORT_SYMBOL(cpu_down);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109#endif /*CONFIG_HOTPLUG_CPU*/
1110
Thomas Gleixner4baa0af2016-02-26 18:43:29 +00001111/**
Thomas Gleixneree1e7142016-08-18 14:57:16 +02001112 * notify_cpu_starting(cpu) - Invoke the callbacks on the starting CPU
Thomas Gleixner4baa0af2016-02-26 18:43:29 +00001113 * @cpu: cpu that just started
1114 *
Thomas Gleixner4baa0af2016-02-26 18:43:29 +00001115 * It must be called by the arch code on the new cpu, before the new cpu
1116 * enables interrupts and before the "boot" cpu returns from __cpu_up().
1117 */
1118void notify_cpu_starting(unsigned int cpu)
1119{
1120 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
1121 enum cpuhp_state target = min((int)st->target, CPUHP_AP_ONLINE);
1122
Sebastian Andrzej Siewior0c6d4572016-08-17 14:21:04 +02001123 rcu_cpu_starting(cpu); /* Enables RCU usage on this CPU. */
Thomas Gleixner8438e492018-06-29 16:05:48 +02001124 st->booted_once = true;
Thomas Gleixner4baa0af2016-02-26 18:43:29 +00001125 while (st->state < target) {
Thomas Gleixner4baa0af2016-02-26 18:43:29 +00001126 st->state++;
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001127 cpuhp_invoke_callback(cpu, st->state, true, NULL);
Thomas Gleixner4baa0af2016-02-26 18:43:29 +00001128 }
1129}
1130
Thomas Gleixner949338e2016-02-26 18:43:35 +00001131/*
Thomas Gleixnerceb354b2017-07-04 22:20:23 +02001132 * Called from the idle task. Wake up the controlling task which brings the
1133 * stopper and the hotplug thread of the upcoming CPU up and then delegates
1134 * the rest of the online bringup to the hotplug thread.
Thomas Gleixner949338e2016-02-26 18:43:35 +00001135 */
Thomas Gleixner8df3e072016-02-26 18:43:41 +00001136void cpuhp_online_idle(enum cpuhp_state state)
Thomas Gleixner949338e2016-02-26 18:43:35 +00001137{
Thomas Gleixner8df3e072016-02-26 18:43:41 +00001138 struct cpuhp_cpu_state *st = this_cpu_ptr(&cpuhp_state);
Thomas Gleixner8df3e072016-02-26 18:43:41 +00001139
1140 /* Happens for the boot cpu */
1141 if (state != CPUHP_AP_ONLINE_IDLE)
1142 return;
1143
1144 st->state = CPUHP_AP_ONLINE_IDLE;
Thomas Gleixnerceb354b2017-07-04 22:20:23 +02001145 complete(&st->done);
Thomas Gleixner949338e2016-02-26 18:43:35 +00001146}
1147
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001148/* Requires cpu_add_remove_lock to be held */
Thomas Gleixneraf1f4042016-02-26 18:43:30 +00001149static int _cpu_up(unsigned int cpu, int tasks_frozen, enum cpuhp_state target)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150{
Thomas Gleixnercff7d372016-02-26 18:43:28 +00001151 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
Suresh Siddha3bb5d2e2012-04-20 17:08:50 -07001152 struct task_struct *idle;
Thomas Gleixner2e1a3482016-02-26 18:43:37 +00001153 int ret = 0;
Prasad Sodagudi0a293432017-10-13 15:28:58 -07001154 u64 start_time = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155
Gautham R Shenoyd2219382008-01-25 21:08:01 +01001156 cpu_hotplug_begin();
Prasad Sodagudi0a293432017-10-13 15:28:58 -07001157 if (trace_cpuhp_latency_enabled())
1158 start_time = sched_clock();
Thomas Gleixner38498a62012-04-20 13:05:44 +00001159
Thomas Gleixner757c9892016-02-26 18:43:32 +00001160 if (!cpu_present(cpu)) {
Yasuaki Ishimatsu5e5041f2012-10-23 01:30:54 +02001161 ret = -EINVAL;
1162 goto out;
1163 }
1164
Thomas Gleixner757c9892016-02-26 18:43:32 +00001165 /*
1166 * The caller of do_cpu_up might have raced with another
1167 * caller. Ignore it for now.
1168 */
1169 if (st->state >= target)
Thomas Gleixner38498a62012-04-20 13:05:44 +00001170 goto out;
Thomas Gleixner757c9892016-02-26 18:43:32 +00001171
1172 if (st->state == CPUHP_OFFLINE) {
1173 /* Let it fail before we try to bring the cpu up */
1174 idle = idle_thread_get(cpu);
1175 if (IS_ERR(idle)) {
1176 ret = PTR_ERR(idle);
1177 goto out;
1178 }
Suresh Siddha3bb5d2e2012-04-20 17:08:50 -07001179 }
Thomas Gleixner38498a62012-04-20 13:05:44 +00001180
Thomas Gleixnerba997462016-02-26 18:43:24 +00001181 cpuhp_tasks_frozen = tasks_frozen;
1182
Thomas Gleixneraf1f4042016-02-26 18:43:30 +00001183 st->target = target;
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001184 /*
1185 * If the current CPU state is in the range of the AP hotplug thread,
1186 * then we need to kick the thread once more.
1187 */
Thomas Gleixner8df3e072016-02-26 18:43:41 +00001188 if (st->state > CPUHP_BRINGUP_CPU) {
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001189 ret = cpuhp_kick_ap_work(cpu);
1190 /*
1191 * The AP side has done the error rollback already. Just
1192 * return the error code..
1193 */
1194 if (ret)
1195 goto out;
1196 }
1197
1198 /*
1199 * Try to reach the target state. We max out on the BP at
Thomas Gleixner8df3e072016-02-26 18:43:41 +00001200 * CPUHP_BRINGUP_CPU. After that the AP hotplug thread is
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001201 * responsible for bringing it up to the target state.
1202 */
Thomas Gleixner8df3e072016-02-26 18:43:41 +00001203 target = min((int)target, CPUHP_BRINGUP_CPU);
Thomas Gleixnera7246322016-08-12 19:49:38 +02001204 ret = cpuhp_up_callbacks(cpu, st, target);
Thomas Gleixner38498a62012-04-20 13:05:44 +00001205out:
Prasad Sodagudi0a293432017-10-13 15:28:58 -07001206 trace_cpuhp_latency(cpu, 1, start_time, ret);
Gautham R Shenoyd2219382008-01-25 21:08:01 +01001207 cpu_hotplug_done();
Thomas Gleixnera3c901b2018-11-25 19:33:39 +01001208 arch_smt_update();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 return ret;
1210}
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001211
Syed Rameez Mustafab3058802016-12-16 11:59:05 -08001212static int switch_to_rt_policy(void)
1213{
1214 struct sched_param param = { .sched_priority = MAX_RT_PRIO - 1 };
1215 unsigned int policy = current->policy;
1216 int err;
1217
1218 /* Nobody should be attempting hotplug from these policy contexts. */
1219 if (policy == SCHED_BATCH || policy == SCHED_IDLE ||
1220 policy == SCHED_DEADLINE)
1221 return -EPERM;
1222
1223 if (policy == SCHED_FIFO || policy == SCHED_RR)
1224 return 1;
1225
1226 /* Only SCHED_NORMAL left. */
1227 err = sched_setscheduler_nocheck(current, SCHED_FIFO, &param);
1228 return err;
1229
1230}
1231
1232static int switch_to_fair_policy(void)
1233{
1234 struct sched_param param = { .sched_priority = 0 };
1235
1236 return sched_setscheduler_nocheck(current, SCHED_NORMAL, &param);
1237}
1238
Thomas Gleixneraf1f4042016-02-26 18:43:30 +00001239static int do_cpu_up(unsigned int cpu, enum cpuhp_state target)
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001240{
1241 int err = 0;
Syed Rameez Mustafab3058802016-12-16 11:59:05 -08001242 int switch_err = 0;
minskey guocf234222010-05-24 14:32:41 -07001243
Rusty Russelle0b582e2009-01-01 10:12:28 +10301244 if (!cpu_possible(cpu)) {
Fabian Frederick84117da2014-06-04 16:11:17 -07001245 pr_err("can't online cpu %d because it is not configured as may-hotadd at boot time\n",
1246 cpu);
Chen Gong87d5e022010-03-05 13:42:38 -08001247#if defined(CONFIG_IA64)
Fabian Frederick84117da2014-06-04 16:11:17 -07001248 pr_err("please check additional_cpus= boot parameter\n");
KAMEZAWA Hiroyuki73e753a2007-10-18 23:40:47 -07001249#endif
1250 return -EINVAL;
1251 }
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001252
Syed Rameez Mustafab3058802016-12-16 11:59:05 -08001253 switch_err = switch_to_rt_policy();
1254 if (switch_err < 0)
1255 return switch_err;
1256
Toshi Kani01b0f192013-11-12 15:07:25 -08001257 err = try_online_node(cpu_to_node(cpu));
1258 if (err)
1259 return err;
minskey guocf234222010-05-24 14:32:41 -07001260
Gautham R Shenoyd2219382008-01-25 21:08:01 +01001261 cpu_maps_update_begin();
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001262
Max Krasnyanskye761b772008-07-15 04:43:49 -07001263 if (cpu_hotplug_disabled) {
1264 err = -EBUSY;
1265 goto out;
1266 }
Thomas Gleixnerf37486c2018-05-29 17:48:27 +02001267 if (!cpu_smt_allowed(cpu)) {
1268 err = -EPERM;
1269 goto out;
1270 }
Max Krasnyanskye761b772008-07-15 04:43:49 -07001271
Thomas Gleixneraf1f4042016-02-26 18:43:30 +00001272 err = _cpu_up(cpu, 0, target);
Max Krasnyanskye761b772008-07-15 04:43:49 -07001273out:
Gautham R Shenoyd2219382008-01-25 21:08:01 +01001274 cpu_maps_update_done();
Syed Rameez Mustafab3058802016-12-16 11:59:05 -08001275
1276 if (!switch_err) {
1277 switch_err = switch_to_fair_policy();
Pavankumar Kondeti657ad052017-04-14 14:59:40 +05301278 if (switch_err)
1279 pr_err("Hotplug policy switch err=%d Task %s pid=%d\n",
1280 switch_err, current->comm, current->pid);
Syed Rameez Mustafab3058802016-12-16 11:59:05 -08001281 }
1282
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001283 return err;
1284}
Thomas Gleixneraf1f4042016-02-26 18:43:30 +00001285
1286int cpu_up(unsigned int cpu)
1287{
1288 return do_cpu_up(cpu, CPUHP_ONLINE);
1289}
Paul E. McKenneya513f6b2011-12-11 21:54:45 -08001290EXPORT_SYMBOL_GPL(cpu_up);
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001291
Rafael J. Wysockif3de4be2007-08-30 23:56:29 -07001292#ifdef CONFIG_PM_SLEEP_SMP
Rusty Russelle0b582e2009-01-01 10:12:28 +10301293static cpumask_var_t frozen_cpus;
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001294
James Morsed391e552016-08-17 13:50:25 +01001295int freeze_secondary_cpus(int primary)
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001296{
James Morsed391e552016-08-17 13:50:25 +01001297 int cpu, error = 0;
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001298
Gautham R Shenoyd2219382008-01-25 21:08:01 +01001299 cpu_maps_update_begin();
James Morsed391e552016-08-17 13:50:25 +01001300 if (!cpu_online(primary))
1301 primary = cpumask_first(cpu_online_mask);
Xiaotian Feng9ee349a2009-12-16 18:04:32 +01001302 /*
1303 * We take down all of the non-boot CPUs in one shot to avoid races
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001304 * with the userspace trying to use the CPU hotplug at the same time
1305 */
Rusty Russelle0b582e2009-01-01 10:12:28 +10301306 cpumask_clear(frozen_cpus);
Peter Zijlstra6ad4c182009-11-25 13:31:39 +01001307
Fabian Frederick84117da2014-06-04 16:11:17 -07001308 pr_info("Disabling non-boot CPUs ...\n");
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001309 for_each_online_cpu(cpu) {
James Morsed391e552016-08-17 13:50:25 +01001310 if (cpu == primary)
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001311 continue;
Todd E Brandtbb3632c2014-06-06 05:40:17 -07001312 trace_suspend_resume(TPS("CPU_OFF"), cpu, true);
Thomas Gleixneraf1f4042016-02-26 18:43:30 +00001313 error = _cpu_down(cpu, 1, CPUHP_OFFLINE);
Todd E Brandtbb3632c2014-06-06 05:40:17 -07001314 trace_suspend_resume(TPS("CPU_OFF"), cpu, false);
Mike Travisfeae3202009-11-17 18:22:13 -06001315 if (!error)
Rusty Russelle0b582e2009-01-01 10:12:28 +10301316 cpumask_set_cpu(cpu, frozen_cpus);
Mike Travisfeae3202009-11-17 18:22:13 -06001317 else {
Fabian Frederick84117da2014-06-04 16:11:17 -07001318 pr_err("Error taking CPU%d down: %d\n", cpu, error);
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001319 break;
1320 }
1321 }
Joseph Cihula86886e52009-06-30 19:31:07 -07001322
Vitaly Kuznetsov89af7ba2015-08-05 00:52:46 -07001323 if (!error)
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001324 BUG_ON(num_online_cpus() > 1);
Vitaly Kuznetsov89af7ba2015-08-05 00:52:46 -07001325 else
Fabian Frederick84117da2014-06-04 16:11:17 -07001326 pr_err("Non-boot CPUs are not disabled\n");
Vitaly Kuznetsov89af7ba2015-08-05 00:52:46 -07001327
1328 /*
1329 * Make sure the CPUs won't be enabled by someone else. We need to do
1330 * this even in case of failure as all disable_nonboot_cpus() users are
1331 * supposed to do enable_nonboot_cpus() on the failure path.
1332 */
1333 cpu_hotplug_disabled++;
1334
Gautham R Shenoyd2219382008-01-25 21:08:01 +01001335 cpu_maps_update_done();
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001336 return error;
1337}
1338
Suresh Siddhad0af9ee2009-08-19 18:05:36 -07001339void __weak arch_enable_nonboot_cpus_begin(void)
1340{
1341}
1342
1343void __weak arch_enable_nonboot_cpus_end(void)
1344{
1345}
1346
Mathias Krause71cf5ae2015-07-19 20:06:22 +02001347void enable_nonboot_cpus(void)
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001348{
1349 int cpu, error;
Thierry Strudel0c3610e2016-06-14 17:46:44 -07001350 struct device *cpu_device;
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001351
1352 /* Allow everyone to use the CPU hotplug again */
Gautham R Shenoyd2219382008-01-25 21:08:01 +01001353 cpu_maps_update_begin();
Lianwei Wang01b41152016-06-09 23:43:28 -07001354 __cpu_hotplug_enable();
Rusty Russelle0b582e2009-01-01 10:12:28 +10301355 if (cpumask_empty(frozen_cpus))
Rafael J. Wysocki1d64b9c2007-04-01 23:49:49 -07001356 goto out;
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001357
Fabian Frederick84117da2014-06-04 16:11:17 -07001358 pr_info("Enabling non-boot CPUs ...\n");
Suresh Siddhad0af9ee2009-08-19 18:05:36 -07001359
1360 arch_enable_nonboot_cpus_begin();
1361
Rusty Russelle0b582e2009-01-01 10:12:28 +10301362 for_each_cpu(cpu, frozen_cpus) {
Todd E Brandtbb3632c2014-06-06 05:40:17 -07001363 trace_suspend_resume(TPS("CPU_ON"), cpu, true);
Thomas Gleixneraf1f4042016-02-26 18:43:30 +00001364 error = _cpu_up(cpu, 1, CPUHP_ONLINE);
Todd E Brandtbb3632c2014-06-06 05:40:17 -07001365 trace_suspend_resume(TPS("CPU_ON"), cpu, false);
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001366 if (!error) {
Fabian Frederick84117da2014-06-04 16:11:17 -07001367 pr_info("CPU%d is up\n", cpu);
Thierry Strudel0c3610e2016-06-14 17:46:44 -07001368 cpu_device = get_cpu_device(cpu);
1369 if (!cpu_device)
1370 pr_err("%s: failed to get cpu%d device\n",
1371 __func__, cpu);
1372 else
1373 kobject_uevent(&cpu_device->kobj, KOBJ_ONLINE);
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001374 continue;
1375 }
Fabian Frederick84117da2014-06-04 16:11:17 -07001376 pr_warn("Error taking CPU%d up: %d\n", cpu, error);
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001377 }
Suresh Siddhad0af9ee2009-08-19 18:05:36 -07001378
1379 arch_enable_nonboot_cpus_end();
1380
Rusty Russelle0b582e2009-01-01 10:12:28 +10301381 cpumask_clear(frozen_cpus);
Rafael J. Wysocki1d64b9c2007-04-01 23:49:49 -07001382out:
Gautham R Shenoyd2219382008-01-25 21:08:01 +01001383 cpu_maps_update_done();
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -07001384}
Rusty Russelle0b582e2009-01-01 10:12:28 +10301385
Fenghua Yud7268a32011-11-15 21:59:31 +01001386static int __init alloc_frozen_cpus(void)
Rusty Russelle0b582e2009-01-01 10:12:28 +10301387{
1388 if (!alloc_cpumask_var(&frozen_cpus, GFP_KERNEL|__GFP_ZERO))
1389 return -ENOMEM;
1390 return 0;
1391}
1392core_initcall(alloc_frozen_cpus);
Srivatsa S. Bhat79cfbdf2011-11-03 00:59:25 +01001393
1394/*
Srivatsa S. Bhat79cfbdf2011-11-03 00:59:25 +01001395 * When callbacks for CPU hotplug notifications are being executed, we must
1396 * ensure that the state of the system with respect to the tasks being frozen
1397 * or not, as reported by the notification, remains unchanged *throughout the
1398 * duration* of the execution of the callbacks.
1399 * Hence we need to prevent the freezer from racing with regular CPU hotplug.
1400 *
1401 * This synchronization is implemented by mutually excluding regular CPU
1402 * hotplug and Suspend/Hibernate call paths by hooking onto the Suspend/
1403 * Hibernate notifications.
1404 */
1405static int
1406cpu_hotplug_pm_callback(struct notifier_block *nb,
1407 unsigned long action, void *ptr)
1408{
1409 switch (action) {
1410
1411 case PM_SUSPEND_PREPARE:
1412 case PM_HIBERNATION_PREPARE:
Srivatsa S. Bhat16e53db2013-06-12 14:04:36 -07001413 cpu_hotplug_disable();
Srivatsa S. Bhat79cfbdf2011-11-03 00:59:25 +01001414 break;
1415
1416 case PM_POST_SUSPEND:
1417 case PM_POST_HIBERNATION:
Srivatsa S. Bhat16e53db2013-06-12 14:04:36 -07001418 cpu_hotplug_enable();
Srivatsa S. Bhat79cfbdf2011-11-03 00:59:25 +01001419 break;
1420
1421 default:
1422 return NOTIFY_DONE;
1423 }
1424
1425 return NOTIFY_OK;
1426}
1427
1428
Fenghua Yud7268a32011-11-15 21:59:31 +01001429static int __init cpu_hotplug_pm_sync_init(void)
Srivatsa S. Bhat79cfbdf2011-11-03 00:59:25 +01001430{
Fenghua Yu6e32d472012-11-13 11:32:43 -08001431 /*
1432 * cpu_hotplug_pm_callback has higher priority than x86
1433 * bsp_pm_callback which depends on cpu_hotplug_pm_callback
1434 * to disable cpu hotplug to avoid cpu hotplug race.
1435 */
Srivatsa S. Bhat79cfbdf2011-11-03 00:59:25 +01001436 pm_notifier(cpu_hotplug_pm_callback, 0);
1437 return 0;
1438}
1439core_initcall(cpu_hotplug_pm_sync_init);
1440
Rafael J. Wysockif3de4be2007-08-30 23:56:29 -07001441#endif /* CONFIG_PM_SLEEP_SMP */
Max Krasnyansky68f4f1e2008-05-29 11:17:02 -07001442
1443#endif /* CONFIG_SMP */
Mike Travisb8d317d2008-07-24 18:21:29 -07001444
Thomas Gleixnercff7d372016-02-26 18:43:28 +00001445/* Boot processor state steps */
1446static struct cpuhp_step cpuhp_bp_states[] = {
1447 [CPUHP_OFFLINE] = {
1448 .name = "offline",
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001449 .startup.single = NULL,
1450 .teardown.single = NULL,
Thomas Gleixnercff7d372016-02-26 18:43:28 +00001451 },
1452#ifdef CONFIG_SMP
1453 [CPUHP_CREATE_THREADS]= {
Thomas Gleixner677f6642016-09-06 16:13:48 +02001454 .name = "threads:prepare",
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001455 .startup.single = smpboot_create_threads,
1456 .teardown.single = NULL,
Thomas Gleixner757c9892016-02-26 18:43:32 +00001457 .cant_stop = true,
Thomas Gleixnercff7d372016-02-26 18:43:28 +00001458 },
Thomas Gleixner00e16c32016-07-13 17:16:09 +00001459 [CPUHP_PERF_PREPARE] = {
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001460 .name = "perf:prepare",
1461 .startup.single = perf_event_init_cpu,
1462 .teardown.single = perf_event_exit_cpu,
Thomas Gleixner00e16c32016-07-13 17:16:09 +00001463 },
Thomas Gleixner7ee681b2016-07-13 17:16:29 +00001464 [CPUHP_WORKQUEUE_PREP] = {
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001465 .name = "workqueue:prepare",
1466 .startup.single = workqueue_prepare_cpu,
1467 .teardown.single = NULL,
Thomas Gleixner7ee681b2016-07-13 17:16:29 +00001468 },
Thomas Gleixner27590dc2016-07-15 10:41:04 +02001469 [CPUHP_HRTIMERS_PREPARE] = {
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001470 .name = "hrtimers:prepare",
1471 .startup.single = hrtimers_prepare_cpu,
1472 .teardown.single = hrtimers_dead_cpu,
Thomas Gleixner27590dc2016-07-15 10:41:04 +02001473 },
Richard Weinberger31487f82016-07-13 17:17:01 +00001474 [CPUHP_SMPCFD_PREPARE] = {
Thomas Gleixner677f6642016-09-06 16:13:48 +02001475 .name = "smpcfd:prepare",
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001476 .startup.single = smpcfd_prepare_cpu,
1477 .teardown.single = smpcfd_dead_cpu,
Richard Weinberger31487f82016-07-13 17:17:01 +00001478 },
Richard Weinbergere6d49892016-08-18 14:57:17 +02001479 [CPUHP_RELAY_PREPARE] = {
1480 .name = "relay:prepare",
1481 .startup.single = relay_prepare_cpu,
1482 .teardown.single = NULL,
1483 },
Sebastian Andrzej Siewior6731d4f2016-08-23 14:53:19 +02001484 [CPUHP_SLAB_PREPARE] = {
1485 .name = "slab:prepare",
1486 .startup.single = slab_prepare_cpu,
1487 .teardown.single = slab_dead_cpu,
Thomas Gleixnercff7d372016-02-26 18:43:28 +00001488 },
Thomas Gleixner4df83742016-07-13 17:17:03 +00001489 [CPUHP_RCUTREE_PREP] = {
Thomas Gleixner677f6642016-09-06 16:13:48 +02001490 .name = "RCU/tree:prepare",
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001491 .startup.single = rcutree_prepare_cpu,
1492 .teardown.single = rcutree_dead_cpu,
Thomas Gleixner4df83742016-07-13 17:17:03 +00001493 },
Thomas Gleixnercff7d372016-02-26 18:43:28 +00001494 /*
1495 * Preparatory and dead notifiers. Will be replaced once the notifiers
1496 * are converted to states.
1497 */
1498 [CPUHP_NOTIFY_PREPARE] = {
1499 .name = "notify:prepare",
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001500 .startup.single = notify_prepare,
1501 .teardown.single = notify_dead,
Thomas Gleixner757c9892016-02-26 18:43:32 +00001502 .cant_stop = true,
Thomas Gleixnercff7d372016-02-26 18:43:28 +00001503 },
Richard Cochran4fae16d2016-07-27 11:08:18 +02001504 /*
1505 * On the tear-down path, timers_dead_cpu() must be invoked
1506 * before blk_mq_queue_reinit_notify() from notify_dead(),
1507 * otherwise a RCU stall occurs.
1508 */
Thomas Gleixner249d4a92017-12-27 21:37:25 +01001509 [CPUHP_TIMERS_PREPARE] = {
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001510 .name = "timers:dead",
Thomas Gleixner249d4a92017-12-27 21:37:25 +01001511 .startup.single = timers_prepare_cpu,
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001512 .teardown.single = timers_dead_cpu,
Richard Cochran4fae16d2016-07-27 11:08:18 +02001513 },
Thomas Gleixnerd10ef6f2016-03-08 10:36:13 +01001514 /* Kicks the plugged cpu into life */
Thomas Gleixnercff7d372016-02-26 18:43:28 +00001515 [CPUHP_BRINGUP_CPU] = {
1516 .name = "cpu:bringup",
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001517 .startup.single = bringup_cpu,
1518 .teardown.single = NULL,
Thomas Gleixner757c9892016-02-26 18:43:32 +00001519 .cant_stop = true,
Thomas Gleixner4baa0af2016-02-26 18:43:29 +00001520 },
Thomas Gleixnerd10ef6f2016-03-08 10:36:13 +01001521 /*
1522 * Handled on controll processor until the plugged processor manages
1523 * this itself.
1524 */
Thomas Gleixner4baa0af2016-02-26 18:43:29 +00001525 [CPUHP_TEARDOWN_CPU] = {
1526 .name = "cpu:teardown",
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001527 .startup.single = NULL,
1528 .teardown.single = takedown_cpu,
Thomas Gleixner757c9892016-02-26 18:43:32 +00001529 .cant_stop = true,
Thomas Gleixnercff7d372016-02-26 18:43:28 +00001530 },
Thomas Gleixnera7c734142016-07-12 21:59:23 +02001531#else
1532 [CPUHP_BRINGUP_CPU] = { },
Thomas Gleixnercff7d372016-02-26 18:43:28 +00001533#endif
Thomas Gleixnercff7d372016-02-26 18:43:28 +00001534};
1535
Thomas Gleixner4baa0af2016-02-26 18:43:29 +00001536/* Application processor state steps */
1537static struct cpuhp_step cpuhp_ap_states[] = {
1538#ifdef CONFIG_SMP
Thomas Gleixnerd10ef6f2016-03-08 10:36:13 +01001539 /* Final state before CPU kills itself */
1540 [CPUHP_AP_IDLE_DEAD] = {
1541 .name = "idle:dead",
1542 },
1543 /*
1544 * Last state before CPU enters the idle loop to die. Transient state
1545 * for synchronization.
1546 */
1547 [CPUHP_AP_OFFLINE] = {
1548 .name = "ap:offline",
1549 .cant_stop = true,
1550 },
Thomas Gleixner9cf72432016-03-10 12:54:09 +01001551 /* First state is scheduler control. Interrupts are disabled */
1552 [CPUHP_AP_SCHED_STARTING] = {
1553 .name = "sched:starting",
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001554 .startup.single = sched_cpu_starting,
1555 .teardown.single = sched_cpu_dying,
Thomas Gleixner9cf72432016-03-10 12:54:09 +01001556 },
Thomas Gleixner4df83742016-07-13 17:17:03 +00001557 [CPUHP_AP_RCUTREE_DYING] = {
Thomas Gleixner677f6642016-09-06 16:13:48 +02001558 .name = "RCU/tree:dying",
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001559 .startup.single = NULL,
1560 .teardown.single = rcutree_dying_cpu,
Thomas Gleixner4baa0af2016-02-26 18:43:29 +00001561 },
Maria Yue90f8e12017-09-21 11:30:53 +08001562 [CPUHP_AP_KMAP_DYING] = {
1563 .name = "KMAP:dying",
1564 .startup.single = NULL,
1565 .teardown.single = kmap_remove_unused_cpu,
1566 },
Lai Jiangshanff3d4fd2017-11-28 21:19:53 +08001567 [CPUHP_AP_SMPCFD_DYING] = {
1568 .name = "smpcfd:dying",
1569 .startup.single = NULL,
1570 .teardown.single = smpcfd_dying_cpu,
1571 },
Thomas Gleixnerd10ef6f2016-03-08 10:36:13 +01001572 /* Entry state on starting. Interrupts enabled from here on. Transient
1573 * state for synchronsization */
1574 [CPUHP_AP_ONLINE] = {
1575 .name = "ap:online",
1576 },
1577 /* Handle smpboot threads park/unpark */
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001578 [CPUHP_AP_SMPBOOT_THREADS] = {
Thomas Gleixner677f6642016-09-06 16:13:48 +02001579 .name = "smpboot/threads:online",
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001580 .startup.single = smpboot_unpark_threads,
Thomas Gleixner93335752018-05-29 19:05:25 +02001581 .teardown.single = smpboot_park_threads,
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001582 },
Thomas Gleixner00e16c32016-07-13 17:16:09 +00001583 [CPUHP_AP_PERF_ONLINE] = {
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001584 .name = "perf:online",
Raghavendra Rao Ananta595428c2018-10-16 12:13:22 -07001585 .startup.single = perf_event_restart_events,
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001586 .teardown.single = perf_event_exit_cpu,
Thomas Gleixner00e16c32016-07-13 17:16:09 +00001587 },
Thomas Gleixner7ee681b2016-07-13 17:16:29 +00001588 [CPUHP_AP_WORKQUEUE_ONLINE] = {
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001589 .name = "workqueue:online",
1590 .startup.single = workqueue_online_cpu,
1591 .teardown.single = workqueue_offline_cpu,
Thomas Gleixner7ee681b2016-07-13 17:16:29 +00001592 },
Thomas Gleixner4df83742016-07-13 17:17:03 +00001593 [CPUHP_AP_RCUTREE_ONLINE] = {
Thomas Gleixner677f6642016-09-06 16:13:48 +02001594 .name = "RCU/tree:online",
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001595 .startup.single = rcutree_online_cpu,
1596 .teardown.single = rcutree_offline_cpu,
Thomas Gleixner4df83742016-07-13 17:17:03 +00001597 },
Thomas Gleixner00e16c32016-07-13 17:16:09 +00001598
Thomas Gleixnerd10ef6f2016-03-08 10:36:13 +01001599 /*
1600 * Online/down_prepare notifiers. Will be removed once the notifiers
1601 * are converted to states.
1602 */
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001603 [CPUHP_AP_NOTIFY_ONLINE] = {
1604 .name = "notify:online",
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001605 .startup.single = notify_online,
1606 .teardown.single = notify_down_prepare,
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001607 },
Thomas Gleixner4baa0af2016-02-26 18:43:29 +00001608#endif
Thomas Gleixnerd10ef6f2016-03-08 10:36:13 +01001609 /*
1610 * The dynamically registered state space is here
1611 */
1612
Thomas Gleixneraaddd7d2016-03-10 12:54:19 +01001613#ifdef CONFIG_SMP
1614 /* Last state is scheduler control setting the cpu active */
1615 [CPUHP_AP_ACTIVE] = {
1616 .name = "sched:active",
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001617 .startup.single = sched_cpu_activate,
1618 .teardown.single = sched_cpu_deactivate,
Thomas Gleixneraaddd7d2016-03-10 12:54:19 +01001619 },
1620#endif
1621
Thomas Gleixnerd10ef6f2016-03-08 10:36:13 +01001622 /* CPU is fully up and running. */
Thomas Gleixner4baa0af2016-02-26 18:43:29 +00001623 [CPUHP_ONLINE] = {
1624 .name = "online",
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001625 .startup.single = NULL,
1626 .teardown.single = NULL,
Thomas Gleixner4baa0af2016-02-26 18:43:29 +00001627 },
1628};
1629
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001630/* Sanity check for callbacks */
1631static int cpuhp_cb_check(enum cpuhp_state state)
1632{
1633 if (state <= CPUHP_OFFLINE || state >= CPUHP_ONLINE)
1634 return -EINVAL;
1635 return 0;
1636}
1637
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001638static void cpuhp_store_callbacks(enum cpuhp_state state,
1639 const char *name,
1640 int (*startup)(unsigned int cpu),
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001641 int (*teardown)(unsigned int cpu),
1642 bool multi_instance)
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001643{
1644 /* (Un)Install the callbacks for further cpu hotplug operations */
1645 struct cpuhp_step *sp;
1646
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001647 sp = cpuhp_get_step(state);
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001648 sp->startup.single = startup;
1649 sp->teardown.single = teardown;
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001650 sp->name = name;
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001651 sp->multi_instance = multi_instance;
1652 INIT_HLIST_HEAD(&sp->list);
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001653}
1654
1655static void *cpuhp_get_teardown_cb(enum cpuhp_state state)
1656{
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001657 return cpuhp_get_step(state)->teardown.single;
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001658}
1659
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001660/*
1661 * Call the startup/teardown function for a step either on the AP or
1662 * on the current CPU.
1663 */
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001664static int cpuhp_issue_call(int cpu, enum cpuhp_state state, bool bringup,
1665 struct hlist_node *node)
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001666{
Thomas Gleixnera7246322016-08-12 19:49:38 +02001667 struct cpuhp_step *sp = cpuhp_get_step(state);
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001668 int ret;
1669
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001670 if ((bringup && !sp->startup.single) ||
1671 (!bringup && !sp->teardown.single))
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001672 return 0;
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001673 /*
1674 * The non AP bound callbacks can fail on bringup. On teardown
1675 * e.g. module removal we crash for now.
1676 */
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001677#ifdef CONFIG_SMP
1678 if (cpuhp_is_ap_state(state))
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001679 ret = cpuhp_invoke_ap_callback(cpu, state, bringup, node);
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001680 else
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001681 ret = cpuhp_invoke_callback(cpu, state, bringup, node);
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001682#else
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001683 ret = cpuhp_invoke_callback(cpu, state, bringup, node);
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001684#endif
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001685 BUG_ON(ret && !bringup);
1686 return ret;
1687}
1688
1689/*
1690 * Called from __cpuhp_setup_state on a recoverable failure.
1691 *
1692 * Note: The teardown callbacks for rollback are not allowed to fail!
1693 */
1694static void cpuhp_rollback_install(int failedcpu, enum cpuhp_state state,
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001695 struct hlist_node *node)
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001696{
1697 int cpu;
1698
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001699 /* Roll back the already executed steps on the other cpus */
1700 for_each_present_cpu(cpu) {
1701 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
1702 int cpustate = st->state;
1703
1704 if (cpu >= failedcpu)
1705 break;
1706
1707 /* Did we invoke the startup call on that cpu ? */
1708 if (cpustate >= state)
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001709 cpuhp_issue_call(cpu, state, false, node);
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001710 }
1711}
1712
1713/*
1714 * Returns a free for dynamic slot assignment of the Online state. The states
1715 * are protected by the cpuhp_slot_states mutex and an empty slot is identified
1716 * by having no name assigned.
1717 */
1718static int cpuhp_reserve_state(enum cpuhp_state state)
1719{
1720 enum cpuhp_state i;
1721
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001722 for (i = CPUHP_AP_ONLINE_DYN; i <= CPUHP_AP_ONLINE_DYN_END; i++) {
1723 if (cpuhp_ap_states[i].name)
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001724 continue;
1725
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001726 cpuhp_ap_states[i].name = "Reserved";
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001727 return i;
1728 }
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001729 WARN(1, "No more dynamic states available for CPU hotplug\n");
1730 return -ENOSPC;
1731}
1732
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001733int __cpuhp_state_add_instance(enum cpuhp_state state, struct hlist_node *node,
1734 bool invoke)
1735{
1736 struct cpuhp_step *sp;
1737 int cpu;
1738 int ret;
1739
1740 sp = cpuhp_get_step(state);
1741 if (sp->multi_instance == false)
1742 return -EINVAL;
1743
1744 get_online_cpus();
Sebastian Andrzej Siewior7ad6de42017-03-14 16:06:45 +01001745 mutex_lock(&cpuhp_state_mutex);
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001746
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001747 if (!invoke || !sp->startup.multi)
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001748 goto add_node;
1749
1750 /*
1751 * Try to call the startup callback for each present cpu
1752 * depending on the hotplug state of the cpu.
1753 */
1754 for_each_present_cpu(cpu) {
1755 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
1756 int cpustate = st->state;
1757
1758 if (cpustate < state)
1759 continue;
1760
1761 ret = cpuhp_issue_call(cpu, state, true, node);
1762 if (ret) {
Thomas Gleixner3c1627e2016-09-05 15:28:36 +02001763 if (sp->teardown.multi)
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001764 cpuhp_rollback_install(cpu, state, node);
1765 goto err;
1766 }
1767 }
1768add_node:
1769 ret = 0;
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001770 hlist_add_head(node, &sp->list);
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001771
1772err:
Sebastian Andrzej Siewior7ad6de42017-03-14 16:06:45 +01001773 mutex_unlock(&cpuhp_state_mutex);
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001774 put_online_cpus();
1775 return ret;
1776}
1777EXPORT_SYMBOL_GPL(__cpuhp_state_add_instance);
1778
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001779/**
1780 * __cpuhp_setup_state - Setup the callbacks for an hotplug machine state
1781 * @state: The state to setup
1782 * @invoke: If true, the startup function is invoked for cpus where
1783 * cpu state >= @state
1784 * @startup: startup callback function
1785 * @teardown: teardown callback function
1786 *
1787 * Returns 0 if successful, otherwise a proper error code
1788 */
1789int __cpuhp_setup_state(enum cpuhp_state state,
1790 const char *name, bool invoke,
1791 int (*startup)(unsigned int cpu),
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001792 int (*teardown)(unsigned int cpu),
1793 bool multi_instance)
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001794{
1795 int cpu, ret = 0;
1796 int dyn_state = 0;
1797
1798 if (cpuhp_cb_check(state) || !name)
1799 return -EINVAL;
1800
1801 get_online_cpus();
Sebastian Andrzej Siewior7ad6de42017-03-14 16:06:45 +01001802 mutex_lock(&cpuhp_state_mutex);
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001803
1804 /* currently assignments for the ONLINE state are possible */
Thomas Gleixner1cf4f622016-02-26 18:43:39 +00001805 if (state == CPUHP_AP_ONLINE_DYN) {
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001806 dyn_state = 1;
1807 ret = cpuhp_reserve_state(state);
1808 if (ret < 0)
1809 goto out;
1810 state = ret;
1811 }
1812
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001813 cpuhp_store_callbacks(state, name, startup, teardown, multi_instance);
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001814
1815 if (!invoke || !startup)
1816 goto out;
1817
1818 /*
1819 * Try to call the startup callback for each present cpu
1820 * depending on the hotplug state of the cpu.
1821 */
1822 for_each_present_cpu(cpu) {
1823 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
1824 int cpustate = st->state;
1825
1826 if (cpustate < state)
1827 continue;
1828
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001829 ret = cpuhp_issue_call(cpu, state, true, NULL);
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001830 if (ret) {
Thomas Gleixnera7246322016-08-12 19:49:38 +02001831 if (teardown)
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001832 cpuhp_rollback_install(cpu, state, NULL);
1833 cpuhp_store_callbacks(state, NULL, NULL, NULL, false);
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001834 goto out;
1835 }
1836 }
1837out:
Sebastian Andrzej Siewior7ad6de42017-03-14 16:06:45 +01001838 mutex_unlock(&cpuhp_state_mutex);
1839
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001840 put_online_cpus();
1841 if (!ret && dyn_state)
1842 return state;
1843 return ret;
1844}
1845EXPORT_SYMBOL(__cpuhp_setup_state);
1846
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001847int __cpuhp_state_remove_instance(enum cpuhp_state state,
1848 struct hlist_node *node, bool invoke)
1849{
1850 struct cpuhp_step *sp = cpuhp_get_step(state);
1851 int cpu;
1852
1853 BUG_ON(cpuhp_cb_check(state));
1854
1855 if (!sp->multi_instance)
1856 return -EINVAL;
1857
1858 get_online_cpus();
Sebastian Andrzej Siewior7ad6de42017-03-14 16:06:45 +01001859 mutex_lock(&cpuhp_state_mutex);
1860
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001861 if (!invoke || !cpuhp_get_teardown_cb(state))
1862 goto remove;
1863 /*
1864 * Call the teardown callback for each present cpu depending
1865 * on the hotplug state of the cpu. This function is not
1866 * allowed to fail currently!
1867 */
1868 for_each_present_cpu(cpu) {
1869 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
1870 int cpustate = st->state;
1871
1872 if (cpustate >= state)
1873 cpuhp_issue_call(cpu, state, false, node);
1874 }
1875
1876remove:
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001877 hlist_del(node);
1878 mutex_unlock(&cpuhp_state_mutex);
1879 put_online_cpus();
1880
1881 return 0;
1882}
1883EXPORT_SYMBOL_GPL(__cpuhp_state_remove_instance);
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001884/**
1885 * __cpuhp_remove_state - Remove the callbacks for an hotplug machine state
1886 * @state: The state to remove
1887 * @invoke: If true, the teardown function is invoked for cpus where
1888 * cpu state >= @state
1889 *
1890 * The teardown callback is currently not allowed to fail. Think
1891 * about module removal!
1892 */
1893void __cpuhp_remove_state(enum cpuhp_state state, bool invoke)
1894{
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001895 struct cpuhp_step *sp = cpuhp_get_step(state);
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001896 int cpu;
1897
1898 BUG_ON(cpuhp_cb_check(state));
1899
1900 get_online_cpus();
Sebastian Andrzej Siewior7ad6de42017-03-14 16:06:45 +01001901 mutex_lock(&cpuhp_state_mutex);
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001902
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001903 if (sp->multi_instance) {
1904 WARN(!hlist_empty(&sp->list),
1905 "Error: Removing state %d which has instances left.\n",
1906 state);
1907 goto remove;
1908 }
1909
Thomas Gleixnera7246322016-08-12 19:49:38 +02001910 if (!invoke || !cpuhp_get_teardown_cb(state))
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001911 goto remove;
1912
1913 /*
1914 * Call the teardown callback for each present cpu depending
1915 * on the hotplug state of the cpu. This function is not
1916 * allowed to fail currently!
1917 */
1918 for_each_present_cpu(cpu) {
1919 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
1920 int cpustate = st->state;
1921
1922 if (cpustate >= state)
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001923 cpuhp_issue_call(cpu, state, false, NULL);
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001924 }
1925remove:
Thomas Gleixnercf392d12016-08-12 19:49:39 +02001926 cpuhp_store_callbacks(state, NULL, NULL, NULL, false);
Sebastian Andrzej Siewior7ad6de42017-03-14 16:06:45 +01001927 mutex_unlock(&cpuhp_state_mutex);
Thomas Gleixner5b7aa872016-02-26 18:43:33 +00001928 put_online_cpus();
1929}
1930EXPORT_SYMBOL(__cpuhp_remove_state);
1931
Thomas Gleixner98f8cdc2016-02-26 18:43:31 +00001932#if defined(CONFIG_SYSFS) && defined(CONFIG_HOTPLUG_CPU)
1933static ssize_t show_cpuhp_state(struct device *dev,
1934 struct device_attribute *attr, char *buf)
1935{
1936 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, dev->id);
1937
1938 return sprintf(buf, "%d\n", st->state);
1939}
1940static DEVICE_ATTR(state, 0444, show_cpuhp_state, NULL);
1941
Thomas Gleixner757c9892016-02-26 18:43:32 +00001942static ssize_t write_cpuhp_target(struct device *dev,
1943 struct device_attribute *attr,
1944 const char *buf, size_t count)
1945{
1946 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, dev->id);
1947 struct cpuhp_step *sp;
1948 int target, ret;
1949
1950 ret = kstrtoint(buf, 10, &target);
1951 if (ret)
1952 return ret;
1953
1954#ifdef CONFIG_CPU_HOTPLUG_STATE_CONTROL
1955 if (target < CPUHP_OFFLINE || target > CPUHP_ONLINE)
1956 return -EINVAL;
1957#else
1958 if (target != CPUHP_OFFLINE && target != CPUHP_ONLINE)
1959 return -EINVAL;
1960#endif
1961
1962 ret = lock_device_hotplug_sysfs();
1963 if (ret)
1964 return ret;
1965
1966 mutex_lock(&cpuhp_state_mutex);
1967 sp = cpuhp_get_step(target);
1968 ret = !sp->name || sp->cant_stop ? -EINVAL : 0;
1969 mutex_unlock(&cpuhp_state_mutex);
1970 if (ret)
Sebastian Andrzej Siewior106c77e2017-06-02 16:27:14 +02001971 goto out;
Thomas Gleixner757c9892016-02-26 18:43:32 +00001972
1973 if (st->state < target)
1974 ret = do_cpu_up(dev->id, target);
1975 else
1976 ret = do_cpu_down(dev->id, target);
Sebastian Andrzej Siewior106c77e2017-06-02 16:27:14 +02001977out:
Thomas Gleixner757c9892016-02-26 18:43:32 +00001978 unlock_device_hotplug();
1979 return ret ? ret : count;
1980}
1981
Thomas Gleixner98f8cdc2016-02-26 18:43:31 +00001982static ssize_t show_cpuhp_target(struct device *dev,
1983 struct device_attribute *attr, char *buf)
1984{
1985 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, dev->id);
1986
1987 return sprintf(buf, "%d\n", st->target);
1988}
Thomas Gleixner757c9892016-02-26 18:43:32 +00001989static DEVICE_ATTR(target, 0644, show_cpuhp_target, write_cpuhp_target);
Thomas Gleixner98f8cdc2016-02-26 18:43:31 +00001990
1991static struct attribute *cpuhp_cpu_attrs[] = {
1992 &dev_attr_state.attr,
1993 &dev_attr_target.attr,
1994 NULL
1995};
1996
1997static struct attribute_group cpuhp_cpu_attr_group = {
1998 .attrs = cpuhp_cpu_attrs,
1999 .name = "hotplug",
2000 NULL
2001};
2002
2003static ssize_t show_cpuhp_states(struct device *dev,
2004 struct device_attribute *attr, char *buf)
2005{
2006 ssize_t cur, res = 0;
2007 int i;
2008
2009 mutex_lock(&cpuhp_state_mutex);
Thomas Gleixner757c9892016-02-26 18:43:32 +00002010 for (i = CPUHP_OFFLINE; i <= CPUHP_ONLINE; i++) {
Thomas Gleixner98f8cdc2016-02-26 18:43:31 +00002011 struct cpuhp_step *sp = cpuhp_get_step(i);
2012
2013 if (sp->name) {
2014 cur = sprintf(buf, "%3d: %s\n", i, sp->name);
2015 buf += cur;
2016 res += cur;
2017 }
2018 }
2019 mutex_unlock(&cpuhp_state_mutex);
2020 return res;
2021}
2022static DEVICE_ATTR(states, 0444, show_cpuhp_states, NULL);
2023
2024static struct attribute *cpuhp_cpu_root_attrs[] = {
2025 &dev_attr_states.attr,
2026 NULL
2027};
2028
2029static struct attribute_group cpuhp_cpu_root_attr_group = {
2030 .attrs = cpuhp_cpu_root_attrs,
2031 .name = "hotplug",
2032 NULL
2033};
2034
Thomas Gleixnerf37486c2018-05-29 17:48:27 +02002035#ifdef CONFIG_HOTPLUG_SMT
2036
2037static const char *smt_states[] = {
2038 [CPU_SMT_ENABLED] = "on",
2039 [CPU_SMT_DISABLED] = "off",
2040 [CPU_SMT_FORCE_DISABLED] = "forceoff",
2041 [CPU_SMT_NOT_SUPPORTED] = "notsupported",
2042};
2043
2044static ssize_t
2045show_smt_control(struct device *dev, struct device_attribute *attr, char *buf)
2046{
2047 return snprintf(buf, PAGE_SIZE - 2, "%s\n", smt_states[cpu_smt_control]);
2048}
2049
2050static void cpuhp_offline_cpu_device(unsigned int cpu)
2051{
2052 struct device *dev = get_cpu_device(cpu);
2053
2054 dev->offline = true;
2055 /* Tell user space about the state change */
2056 kobject_uevent(&dev->kobj, KOBJ_OFFLINE);
2057}
2058
Thomas Gleixnere7cda2f2018-07-07 11:40:18 +02002059static void cpuhp_online_cpu_device(unsigned int cpu)
2060{
2061 struct device *dev = get_cpu_device(cpu);
2062
2063 dev->offline = false;
2064 /* Tell user space about the state change */
2065 kobject_uevent(&dev->kobj, KOBJ_ONLINE);
2066}
2067
Jiri Kosina5bdc5362019-05-30 00:09:39 +02002068int cpuhp_smt_disable(enum cpuhp_smt_control ctrlval)
Thomas Gleixnerf37486c2018-05-29 17:48:27 +02002069{
2070 int cpu, ret = 0;
2071
2072 cpu_maps_update_begin();
2073 for_each_online_cpu(cpu) {
2074 if (topology_is_primary_thread(cpu))
2075 continue;
2076 ret = cpu_down_maps_locked(cpu, CPUHP_OFFLINE);
2077 if (ret)
2078 break;
2079 /*
2080 * As this needs to hold the cpu maps lock it's impossible
2081 * to call device_offline() because that ends up calling
2082 * cpu_down() which takes cpu maps lock. cpu maps lock
2083 * needs to be held as this might race against in kernel
2084 * abusers of the hotplug machinery (thermal management).
2085 *
2086 * So nothing would update device:offline state. That would
2087 * leave the sysfs entry stale and prevent onlining after
2088 * smt control has been changed to 'off' again. This is
2089 * called under the sysfs hotplug lock, so it is properly
2090 * serialized against the regular offline usage.
2091 */
2092 cpuhp_offline_cpu_device(cpu);
2093 }
Jiri Kosinab410c572018-09-25 14:38:55 +02002094 if (!ret) {
Thomas Gleixnerf37486c2018-05-29 17:48:27 +02002095 cpu_smt_control = ctrlval;
Jiri Kosinab410c572018-09-25 14:38:55 +02002096 arch_smt_update();
2097 }
Thomas Gleixnerf37486c2018-05-29 17:48:27 +02002098 cpu_maps_update_done();
2099 return ret;
2100}
2101
Jiri Kosina5bdc5362019-05-30 00:09:39 +02002102int cpuhp_smt_enable(void)
Thomas Gleixnerf37486c2018-05-29 17:48:27 +02002103{
Thomas Gleixnere7cda2f2018-07-07 11:40:18 +02002104 int cpu, ret = 0;
2105
Thomas Gleixnerf37486c2018-05-29 17:48:27 +02002106 cpu_maps_update_begin();
2107 cpu_smt_control = CPU_SMT_ENABLED;
Jiri Kosinab410c572018-09-25 14:38:55 +02002108 arch_smt_update();
Thomas Gleixnere7cda2f2018-07-07 11:40:18 +02002109 for_each_present_cpu(cpu) {
2110 /* Skip online CPUs and CPUs on offline nodes */
2111 if (cpu_online(cpu) || !node_online(cpu_to_node(cpu)))
2112 continue;
2113 ret = _cpu_up(cpu, 0, CPUHP_ONLINE);
2114 if (ret)
2115 break;
2116 /* See comment in cpuhp_smt_disable() */
2117 cpuhp_online_cpu_device(cpu);
2118 }
Thomas Gleixnerf37486c2018-05-29 17:48:27 +02002119 cpu_maps_update_done();
Thomas Gleixnere7cda2f2018-07-07 11:40:18 +02002120 return ret;
Thomas Gleixnerf37486c2018-05-29 17:48:27 +02002121}
2122
2123static ssize_t
2124store_smt_control(struct device *dev, struct device_attribute *attr,
2125 const char *buf, size_t count)
2126{
2127 int ctrlval, ret;
2128
2129 if (sysfs_streq(buf, "on"))
2130 ctrlval = CPU_SMT_ENABLED;
2131 else if (sysfs_streq(buf, "off"))
2132 ctrlval = CPU_SMT_DISABLED;
2133 else if (sysfs_streq(buf, "forceoff"))
2134 ctrlval = CPU_SMT_FORCE_DISABLED;
2135 else
2136 return -EINVAL;
2137
2138 if (cpu_smt_control == CPU_SMT_FORCE_DISABLED)
2139 return -EPERM;
2140
2141 if (cpu_smt_control == CPU_SMT_NOT_SUPPORTED)
2142 return -ENODEV;
2143
2144 ret = lock_device_hotplug_sysfs();
2145 if (ret)
2146 return ret;
2147
2148 if (ctrlval != cpu_smt_control) {
2149 switch (ctrlval) {
2150 case CPU_SMT_ENABLED:
Thomas Gleixnere7cda2f2018-07-07 11:40:18 +02002151 ret = cpuhp_smt_enable();
Thomas Gleixnerf37486c2018-05-29 17:48:27 +02002152 break;
2153 case CPU_SMT_DISABLED:
2154 case CPU_SMT_FORCE_DISABLED:
2155 ret = cpuhp_smt_disable(ctrlval);
2156 break;
2157 }
2158 }
2159
2160 unlock_device_hotplug();
2161 return ret ? ret : count;
2162}
2163static DEVICE_ATTR(control, 0644, show_smt_control, store_smt_control);
2164
2165static ssize_t
2166show_smt_active(struct device *dev, struct device_attribute *attr, char *buf)
2167{
2168 bool active = topology_max_smt_threads() > 1;
2169
2170 return snprintf(buf, PAGE_SIZE - 2, "%d\n", active);
2171}
2172static DEVICE_ATTR(active, 0444, show_smt_active, NULL);
2173
2174static struct attribute *cpuhp_smt_attrs[] = {
2175 &dev_attr_control.attr,
2176 &dev_attr_active.attr,
2177 NULL
2178};
2179
2180static const struct attribute_group cpuhp_smt_attr_group = {
2181 .attrs = cpuhp_smt_attrs,
2182 .name = "smt",
2183 NULL
2184};
2185
2186static int __init cpu_smt_state_init(void)
2187{
Thomas Gleixnerf37486c2018-05-29 17:48:27 +02002188 return sysfs_create_group(&cpu_subsys.dev_root->kobj,
2189 &cpuhp_smt_attr_group);
2190}
2191
2192#else
2193static inline int cpu_smt_state_init(void) { return 0; }
2194#endif
2195
Thomas Gleixner98f8cdc2016-02-26 18:43:31 +00002196static int __init cpuhp_sysfs_init(void)
2197{
2198 int cpu, ret;
2199
Thomas Gleixnerf37486c2018-05-29 17:48:27 +02002200 ret = cpu_smt_state_init();
2201 if (ret)
2202 return ret;
2203
Thomas Gleixner98f8cdc2016-02-26 18:43:31 +00002204 ret = sysfs_create_group(&cpu_subsys.dev_root->kobj,
2205 &cpuhp_cpu_root_attr_group);
2206 if (ret)
2207 return ret;
2208
2209 for_each_possible_cpu(cpu) {
2210 struct device *dev = get_cpu_device(cpu);
2211
2212 if (!dev)
2213 continue;
2214 ret = sysfs_create_group(&dev->kobj, &cpuhp_cpu_attr_group);
2215 if (ret)
2216 return ret;
2217 }
2218 return 0;
2219}
2220device_initcall(cpuhp_sysfs_init);
2221#endif
2222
Linus Torvaldse56b3bc2008-07-28 11:32:33 -07002223/*
2224 * cpu_bit_bitmap[] is a special, "compressed" data structure that
2225 * represents all NR_CPUS bits binary values of 1<<nr.
2226 *
Rusty Russelle0b582e2009-01-01 10:12:28 +10302227 * It is used by cpumask_of() to get a constant address to a CPU
Linus Torvaldse56b3bc2008-07-28 11:32:33 -07002228 * mask value that has a single bit set only.
2229 */
Mike Travisb8d317d2008-07-24 18:21:29 -07002230
Linus Torvaldse56b3bc2008-07-28 11:32:33 -07002231/* cpu_bit_bitmap[0] is empty - so we can back into it */
Michael Rodriguez4d519852011-03-22 16:34:07 -07002232#define MASK_DECLARE_1(x) [x+1][0] = (1UL << (x))
Linus Torvaldse56b3bc2008-07-28 11:32:33 -07002233#define MASK_DECLARE_2(x) MASK_DECLARE_1(x), MASK_DECLARE_1(x+1)
2234#define MASK_DECLARE_4(x) MASK_DECLARE_2(x), MASK_DECLARE_2(x+2)
2235#define MASK_DECLARE_8(x) MASK_DECLARE_4(x), MASK_DECLARE_4(x+4)
Mike Travisb8d317d2008-07-24 18:21:29 -07002236
Linus Torvaldse56b3bc2008-07-28 11:32:33 -07002237const unsigned long cpu_bit_bitmap[BITS_PER_LONG+1][BITS_TO_LONGS(NR_CPUS)] = {
Mike Travisb8d317d2008-07-24 18:21:29 -07002238
Linus Torvaldse56b3bc2008-07-28 11:32:33 -07002239 MASK_DECLARE_8(0), MASK_DECLARE_8(8),
2240 MASK_DECLARE_8(16), MASK_DECLARE_8(24),
2241#if BITS_PER_LONG > 32
2242 MASK_DECLARE_8(32), MASK_DECLARE_8(40),
2243 MASK_DECLARE_8(48), MASK_DECLARE_8(56),
Mike Travisb8d317d2008-07-24 18:21:29 -07002244#endif
2245};
Linus Torvaldse56b3bc2008-07-28 11:32:33 -07002246EXPORT_SYMBOL_GPL(cpu_bit_bitmap);
Rusty Russell2d3854a2008-11-05 13:39:10 +11002247
2248const DECLARE_BITMAP(cpu_all_bits, NR_CPUS) = CPU_BITS_ALL;
2249EXPORT_SYMBOL(cpu_all_bits);
Rusty Russellb3199c02008-12-30 09:05:14 +10302250
2251#ifdef CONFIG_INIT_ALL_POSSIBLE
Rasmus Villemoes4b804c82016-01-20 15:00:19 -08002252struct cpumask __cpu_possible_mask __read_mostly
Rasmus Villemoesc4c54dd2016-01-20 15:00:16 -08002253 = {CPU_BITS_ALL};
Rusty Russellb3199c02008-12-30 09:05:14 +10302254#else
Rasmus Villemoes4b804c82016-01-20 15:00:19 -08002255struct cpumask __cpu_possible_mask __read_mostly;
Rusty Russellb3199c02008-12-30 09:05:14 +10302256#endif
Rasmus Villemoes4b804c82016-01-20 15:00:19 -08002257EXPORT_SYMBOL(__cpu_possible_mask);
Rusty Russellb3199c02008-12-30 09:05:14 +10302258
Rasmus Villemoes4b804c82016-01-20 15:00:19 -08002259struct cpumask __cpu_online_mask __read_mostly;
2260EXPORT_SYMBOL(__cpu_online_mask);
Rusty Russellb3199c02008-12-30 09:05:14 +10302261
Rasmus Villemoes4b804c82016-01-20 15:00:19 -08002262struct cpumask __cpu_present_mask __read_mostly;
2263EXPORT_SYMBOL(__cpu_present_mask);
Rusty Russellb3199c02008-12-30 09:05:14 +10302264
Rasmus Villemoes4b804c82016-01-20 15:00:19 -08002265struct cpumask __cpu_active_mask __read_mostly;
2266EXPORT_SYMBOL(__cpu_active_mask);
Rusty Russell3fa41522008-12-30 09:05:16 +10302267
Olav Haugan99cd46a2016-05-29 19:56:37 -07002268struct cpumask __cpu_isolated_mask __read_mostly;
2269EXPORT_SYMBOL(__cpu_isolated_mask);
2270
Rusty Russell3fa41522008-12-30 09:05:16 +10302271void init_cpu_present(const struct cpumask *src)
2272{
Rasmus Villemoesc4c54dd2016-01-20 15:00:16 -08002273 cpumask_copy(&__cpu_present_mask, src);
Rusty Russell3fa41522008-12-30 09:05:16 +10302274}
2275
2276void init_cpu_possible(const struct cpumask *src)
2277{
Rasmus Villemoesc4c54dd2016-01-20 15:00:16 -08002278 cpumask_copy(&__cpu_possible_mask, src);
Rusty Russell3fa41522008-12-30 09:05:16 +10302279}
2280
2281void init_cpu_online(const struct cpumask *src)
2282{
Rasmus Villemoesc4c54dd2016-01-20 15:00:16 -08002283 cpumask_copy(&__cpu_online_mask, src);
Rusty Russell3fa41522008-12-30 09:05:16 +10302284}
Thomas Gleixnercff7d372016-02-26 18:43:28 +00002285
Olav Haugan99cd46a2016-05-29 19:56:37 -07002286void init_cpu_isolated(const struct cpumask *src)
2287{
2288 cpumask_copy(&__cpu_isolated_mask, src);
2289}
2290
Thomas Gleixnercff7d372016-02-26 18:43:28 +00002291/*
2292 * Activate the first processor.
2293 */
2294void __init boot_cpu_init(void)
2295{
2296 int cpu = smp_processor_id();
2297
2298 /* Mark the boot cpu "present", "online" etc for SMP and UP case */
2299 set_cpu_online(cpu, true);
2300 set_cpu_active(cpu, true);
2301 set_cpu_present(cpu, true);
2302 set_cpu_possible(cpu, true);
2303}
2304
2305/*
2306 * Must be called _AFTER_ setting up the per_cpu areas
2307 */
Linus Torvalds6bb53ee2018-08-12 12:19:42 -07002308void __init boot_cpu_hotplug_init(void)
Thomas Gleixnercff7d372016-02-26 18:43:28 +00002309{
Abel Vesaaee08612018-08-15 00:26:00 +03002310#ifdef CONFIG_SMP
Thomas Gleixner8438e492018-06-29 16:05:48 +02002311 this_cpu_write(cpuhp_state.booted_once, true);
Abel Vesaaee08612018-08-15 00:26:00 +03002312#endif
Thomas Gleixner8438e492018-06-29 16:05:48 +02002313 this_cpu_write(cpuhp_state.state, CPUHP_ONLINE);
Thomas Gleixnercff7d372016-02-26 18:43:28 +00002314}
Todd Poynoref07e9e42011-06-15 17:21:57 -07002315
Tyler Hickse2bd0772019-11-04 12:22:02 +01002316/*
2317 * These are used for a global "mitigations=" cmdline option for toggling
2318 * optional CPU mitigations.
2319 */
2320enum cpu_mitigations {
2321 CPU_MITIGATIONS_OFF,
2322 CPU_MITIGATIONS_AUTO,
2323 CPU_MITIGATIONS_AUTO_NOSMT,
2324};
2325
2326static enum cpu_mitigations cpu_mitigations __ro_after_init =
2327 CPU_MITIGATIONS_AUTO;
Josh Poimboeufedda9c32019-04-12 15:39:28 -05002328
2329static int __init mitigations_parse_cmdline(char *arg)
2330{
2331 if (!strcmp(arg, "off"))
2332 cpu_mitigations = CPU_MITIGATIONS_OFF;
2333 else if (!strcmp(arg, "auto"))
2334 cpu_mitigations = CPU_MITIGATIONS_AUTO;
2335 else if (!strcmp(arg, "auto,nosmt"))
2336 cpu_mitigations = CPU_MITIGATIONS_AUTO_NOSMT;
Geert Uytterhoeven0cbb0ae2019-05-16 09:09:35 +02002337 else
2338 pr_crit("Unsupported mitigations=%s, system may still be vulnerable\n",
2339 arg);
Josh Poimboeufedda9c32019-04-12 15:39:28 -05002340
2341 return 0;
2342}
2343early_param("mitigations", mitigations_parse_cmdline);
Greg Kroah-Hartmane0625b32019-05-14 20:43:04 +02002344
Tyler Hickse2bd0772019-11-04 12:22:02 +01002345/* mitigations=off */
2346bool cpu_mitigations_off(void)
2347{
2348 return cpu_mitigations == CPU_MITIGATIONS_OFF;
2349}
2350EXPORT_SYMBOL_GPL(cpu_mitigations_off);
2351
2352/* mitigations=auto,nosmt */
2353bool cpu_mitigations_auto_nosmt(void)
2354{
2355 return cpu_mitigations == CPU_MITIGATIONS_AUTO_NOSMT;
2356}
2357EXPORT_SYMBOL_GPL(cpu_mitigations_auto_nosmt);
Greg Kroah-Hartman258971b2019-11-16 11:05:12 +01002358
Todd Poynoref07e9e42011-06-15 17:21:57 -07002359static ATOMIC_NOTIFIER_HEAD(idle_notifier);
2360
2361void idle_notifier_register(struct notifier_block *n)
2362{
2363 atomic_notifier_chain_register(&idle_notifier, n);
2364}
2365EXPORT_SYMBOL_GPL(idle_notifier_register);
2366
2367void idle_notifier_unregister(struct notifier_block *n)
2368{
2369 atomic_notifier_chain_unregister(&idle_notifier, n);
2370}
2371EXPORT_SYMBOL_GPL(idle_notifier_unregister);
2372
2373void idle_notifier_call_chain(unsigned long val)
2374{
2375 atomic_notifier_call_chain(&idle_notifier, val, NULL);
2376}
2377EXPORT_SYMBOL_GPL(idle_notifier_call_chain);