]> git.proxmox.com Git - mirror_ubuntu-disco-kernel.git/blame - kernel/cpu.c
x86/speculation/mds: Print SMT vulnerable on MSBDS with mitigations off
[mirror_ubuntu-disco-kernel.git] / kernel / cpu.c
CommitLineData
1da177e4
LT
1/* 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>
3f07c014 10#include <linux/sched/signal.h>
ef8bd77f 11#include <linux/sched/hotplug.h>
29930025 12#include <linux/sched/task.h>
a74cfffb 13#include <linux/sched/smt.h>
1da177e4
LT
14#include <linux/unistd.h>
15#include <linux/cpu.h>
cb79295e
AV
16#include <linux/oom.h>
17#include <linux/rcupdate.h>
9984de1a 18#include <linux/export.h>
e4cc2f87 19#include <linux/bug.h>
1da177e4
LT
20#include <linux/kthread.h>
21#include <linux/stop_machine.h>
81615b62 22#include <linux/mutex.h>
5a0e3ad6 23#include <linux/gfp.h>
79cfbdfa 24#include <linux/suspend.h>
a19423b9 25#include <linux/lockdep.h>
345527b1 26#include <linux/tick.h>
a8994181 27#include <linux/irq.h>
941154bd 28#include <linux/nmi.h>
4cb28ced 29#include <linux/smpboot.h>
e6d4989a 30#include <linux/relay.h>
6731d4f1 31#include <linux/slab.h>
fc8dffd3 32#include <linux/percpu-rwsem.h>
cff7d378 33
bb3632c6 34#include <trace/events/power.h>
cff7d378
TG
35#define CREATE_TRACE_POINTS
36#include <trace/events/cpuhp.h>
1da177e4 37
38498a67
TG
38#include "smpboot.h"
39
cff7d378
TG
40/**
41 * cpuhp_cpu_state - Per cpu hotplug state storage
42 * @state: The current cpu state
43 * @target: The target state
4cb28ced
TG
44 * @thread: Pointer to the hotplug thread
45 * @should_run: Thread should execute
3b9d6da6 46 * @rollback: Perform a rollback
a724632c
TG
47 * @single: Single callback invocation
48 * @bringup: Single callback bringup or teardown selector
49 * @cb_state: The state for a single callback (install/uninstall)
4cb28ced 50 * @result: Result of the operation
5ebe7742
PZ
51 * @done_up: Signal completion to the issuer of the task for cpu-up
52 * @done_down: Signal completion to the issuer of the task for cpu-down
cff7d378
TG
53 */
54struct cpuhp_cpu_state {
55 enum cpuhp_state state;
56 enum cpuhp_state target;
1db49484 57 enum cpuhp_state fail;
4cb28ced
TG
58#ifdef CONFIG_SMP
59 struct task_struct *thread;
60 bool should_run;
3b9d6da6 61 bool rollback;
a724632c
TG
62 bool single;
63 bool bringup;
0cc3cd21 64 bool booted_once;
cf392d10 65 struct hlist_node *node;
4dddfb5f 66 struct hlist_node *last;
4cb28ced 67 enum cpuhp_state cb_state;
4cb28ced 68 int result;
5ebe7742
PZ
69 struct completion done_up;
70 struct completion done_down;
4cb28ced 71#endif
cff7d378
TG
72};
73
1db49484
PZ
74static DEFINE_PER_CPU(struct cpuhp_cpu_state, cpuhp_state) = {
75 .fail = CPUHP_INVALID,
76};
cff7d378 77
49dfe2a6 78#if defined(CONFIG_LOCKDEP) && defined(CONFIG_SMP)
5f4b55e1
PZ
79static struct lockdep_map cpuhp_state_up_map =
80 STATIC_LOCKDEP_MAP_INIT("cpuhp_state-up", &cpuhp_state_up_map);
81static struct lockdep_map cpuhp_state_down_map =
82 STATIC_LOCKDEP_MAP_INIT("cpuhp_state-down", &cpuhp_state_down_map);
83
84
76dc6c09 85static inline void cpuhp_lock_acquire(bool bringup)
5f4b55e1
PZ
86{
87 lock_map_acquire(bringup ? &cpuhp_state_up_map : &cpuhp_state_down_map);
88}
89
76dc6c09 90static inline void cpuhp_lock_release(bool bringup)
5f4b55e1
PZ
91{
92 lock_map_release(bringup ? &cpuhp_state_up_map : &cpuhp_state_down_map);
93}
94#else
95
76dc6c09
MM
96static inline void cpuhp_lock_acquire(bool bringup) { }
97static inline void cpuhp_lock_release(bool bringup) { }
5f4b55e1 98
49dfe2a6
TG
99#endif
100
cff7d378
TG
101/**
102 * cpuhp_step - Hotplug state machine step
103 * @name: Name of the step
104 * @startup: Startup function of the step
105 * @teardown: Teardown function of the step
757c989b 106 * @cant_stop: Bringup/teardown can't be stopped at this step
cff7d378
TG
107 */
108struct cpuhp_step {
cf392d10
TG
109 const char *name;
110 union {
3c1627e9
TG
111 int (*single)(unsigned int cpu);
112 int (*multi)(unsigned int cpu,
113 struct hlist_node *node);
114 } startup;
cf392d10 115 union {
3c1627e9
TG
116 int (*single)(unsigned int cpu);
117 int (*multi)(unsigned int cpu,
118 struct hlist_node *node);
119 } teardown;
cf392d10 120 struct hlist_head list;
cf392d10
TG
121 bool cant_stop;
122 bool multi_instance;
cff7d378
TG
123};
124
98f8cdce 125static DEFINE_MUTEX(cpuhp_state_mutex);
17a2f1ce 126static struct cpuhp_step cpuhp_hp_states[];
cff7d378 127
a724632c
TG
128static struct cpuhp_step *cpuhp_get_step(enum cpuhp_state state)
129{
17a2f1ce 130 return cpuhp_hp_states + state;
a724632c
TG
131}
132
cff7d378
TG
133/**
134 * cpuhp_invoke_callback _ Invoke the callbacks for a given state
135 * @cpu: The cpu for which the callback should be invoked
96abb968 136 * @state: The state to do callbacks for
a724632c 137 * @bringup: True if the bringup callback should be invoked
96abb968
PZ
138 * @node: For multi-instance, do a single entry callback for install/remove
139 * @lastp: For multi-instance rollback, remember how far we got
cff7d378 140 *
cf392d10 141 * Called from cpu hotplug and from the state register machinery.
cff7d378 142 */
a724632c 143static int cpuhp_invoke_callback(unsigned int cpu, enum cpuhp_state state,
96abb968
PZ
144 bool bringup, struct hlist_node *node,
145 struct hlist_node **lastp)
cff7d378
TG
146{
147 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
a724632c 148 struct cpuhp_step *step = cpuhp_get_step(state);
cf392d10
TG
149 int (*cbm)(unsigned int cpu, struct hlist_node *node);
150 int (*cb)(unsigned int cpu);
151 int ret, cnt;
152
1db49484
PZ
153 if (st->fail == state) {
154 st->fail = CPUHP_INVALID;
155
156 if (!(bringup ? step->startup.single : step->teardown.single))
157 return 0;
158
159 return -EAGAIN;
160 }
161
cf392d10 162 if (!step->multi_instance) {
96abb968 163 WARN_ON_ONCE(lastp && *lastp);
3c1627e9 164 cb = bringup ? step->startup.single : step->teardown.single;
cf392d10
TG
165 if (!cb)
166 return 0;
a724632c 167 trace_cpuhp_enter(cpu, st->target, state, cb);
cff7d378 168 ret = cb(cpu);
a724632c 169 trace_cpuhp_exit(cpu, st->state, state, ret);
cf392d10
TG
170 return ret;
171 }
3c1627e9 172 cbm = bringup ? step->startup.multi : step->teardown.multi;
cf392d10
TG
173 if (!cbm)
174 return 0;
175
176 /* Single invocation for instance add/remove */
177 if (node) {
96abb968 178 WARN_ON_ONCE(lastp && *lastp);
cf392d10
TG
179 trace_cpuhp_multi_enter(cpu, st->target, state, cbm, node);
180 ret = cbm(cpu, node);
181 trace_cpuhp_exit(cpu, st->state, state, ret);
182 return ret;
183 }
184
185 /* State transition. Invoke on all instances */
186 cnt = 0;
187 hlist_for_each(node, &step->list) {
96abb968
PZ
188 if (lastp && node == *lastp)
189 break;
190
cf392d10
TG
191 trace_cpuhp_multi_enter(cpu, st->target, state, cbm, node);
192 ret = cbm(cpu, node);
193 trace_cpuhp_exit(cpu, st->state, state, ret);
96abb968
PZ
194 if (ret) {
195 if (!lastp)
196 goto err;
197
198 *lastp = node;
199 return ret;
200 }
cf392d10
TG
201 cnt++;
202 }
96abb968
PZ
203 if (lastp)
204 *lastp = NULL;
cf392d10
TG
205 return 0;
206err:
207 /* Rollback the instances if one failed */
3c1627e9 208 cbm = !bringup ? step->startup.multi : step->teardown.multi;
cf392d10
TG
209 if (!cbm)
210 return ret;
211
212 hlist_for_each(node, &step->list) {
213 if (!cnt--)
214 break;
724a8688
PZ
215
216 trace_cpuhp_multi_enter(cpu, st->target, state, cbm, node);
217 ret = cbm(cpu, node);
218 trace_cpuhp_exit(cpu, st->state, state, ret);
219 /*
220 * Rollback must not fail,
221 */
222 WARN_ON_ONCE(ret);
cff7d378
TG
223 }
224 return ret;
225}
226
98a79d6a 227#ifdef CONFIG_SMP
fcb3029a
AB
228static bool cpuhp_is_ap_state(enum cpuhp_state state)
229{
230 /*
231 * The extra check for CPUHP_TEARDOWN_CPU is only for documentation
232 * purposes as that state is handled explicitly in cpu_down.
233 */
234 return state > CPUHP_BRINGUP_CPU && state != CPUHP_TEARDOWN_CPU;
235}
236
5ebe7742
PZ
237static inline void wait_for_ap_thread(struct cpuhp_cpu_state *st, bool bringup)
238{
239 struct completion *done = bringup ? &st->done_up : &st->done_down;
240 wait_for_completion(done);
241}
242
243static inline void complete_ap_thread(struct cpuhp_cpu_state *st, bool bringup)
244{
245 struct completion *done = bringup ? &st->done_up : &st->done_down;
246 complete(done);
247}
248
249/*
250 * The former STARTING/DYING states, ran with IRQs disabled and must not fail.
251 */
252static bool cpuhp_is_atomic_state(enum cpuhp_state state)
253{
254 return CPUHP_AP_IDLE_DEAD <= state && state < CPUHP_AP_ONLINE;
255}
256
b3199c02 257/* Serializes the updates to cpu_online_mask, cpu_present_mask */
aa953877 258static DEFINE_MUTEX(cpu_add_remove_lock);
090e77c3
TG
259bool cpuhp_tasks_frozen;
260EXPORT_SYMBOL_GPL(cpuhp_tasks_frozen);
1da177e4 261
79a6cdeb 262/*
93ae4f97
SB
263 * The following two APIs (cpu_maps_update_begin/done) must be used when
264 * attempting to serialize the updates to cpu_online_mask & cpu_present_mask.
79a6cdeb
LJ
265 */
266void cpu_maps_update_begin(void)
267{
268 mutex_lock(&cpu_add_remove_lock);
269}
270
271void cpu_maps_update_done(void)
272{
273 mutex_unlock(&cpu_add_remove_lock);
274}
1da177e4 275
fc8dffd3
TG
276/*
277 * If set, cpu_up and cpu_down will return -EBUSY and do nothing.
e3920fb4
RW
278 * Should always be manipulated under cpu_add_remove_lock
279 */
280static int cpu_hotplug_disabled;
281
79a6cdeb
LJ
282#ifdef CONFIG_HOTPLUG_CPU
283
fc8dffd3 284DEFINE_STATIC_PERCPU_RWSEM(cpu_hotplug_lock);
a19423b9 285
8f553c49 286void cpus_read_lock(void)
a9d9baa1 287{
fc8dffd3 288 percpu_down_read(&cpu_hotplug_lock);
a9d9baa1 289}
8f553c49 290EXPORT_SYMBOL_GPL(cpus_read_lock);
90d45d17 291
6f4ceee9
WL
292int cpus_read_trylock(void)
293{
294 return percpu_down_read_trylock(&cpu_hotplug_lock);
295}
296EXPORT_SYMBOL_GPL(cpus_read_trylock);
297
8f553c49 298void cpus_read_unlock(void)
a9d9baa1 299{
fc8dffd3 300 percpu_up_read(&cpu_hotplug_lock);
a9d9baa1 301}
8f553c49 302EXPORT_SYMBOL_GPL(cpus_read_unlock);
a9d9baa1 303
8f553c49 304void cpus_write_lock(void)
d221938c 305{
fc8dffd3 306 percpu_down_write(&cpu_hotplug_lock);
d221938c 307}
87af9e7f 308
8f553c49 309void cpus_write_unlock(void)
d221938c 310{
fc8dffd3 311 percpu_up_write(&cpu_hotplug_lock);
d221938c
GS
312}
313
fc8dffd3 314void lockdep_assert_cpus_held(void)
d221938c 315{
fc8dffd3 316 percpu_rwsem_assert_held(&cpu_hotplug_lock);
d221938c 317}
79a6cdeb 318
cb92173d
PZ
319static void lockdep_acquire_cpus_lock(void)
320{
321 rwsem_acquire(&cpu_hotplug_lock.rw_sem.dep_map, 0, 0, _THIS_IP_);
322}
323
324static void lockdep_release_cpus_lock(void)
325{
326 rwsem_release(&cpu_hotplug_lock.rw_sem.dep_map, 1, _THIS_IP_);
327}
328
16e53dbf
SB
329/*
330 * Wait for currently running CPU hotplug operations to complete (if any) and
331 * disable future CPU hotplug (from sysfs). The 'cpu_add_remove_lock' protects
332 * the 'cpu_hotplug_disabled' flag. The same lock is also acquired by the
333 * hotplug path before performing hotplug operations. So acquiring that lock
334 * guarantees mutual exclusion from any currently running hotplug operations.
335 */
336void cpu_hotplug_disable(void)
337{
338 cpu_maps_update_begin();
89af7ba5 339 cpu_hotplug_disabled++;
16e53dbf
SB
340 cpu_maps_update_done();
341}
32145c46 342EXPORT_SYMBOL_GPL(cpu_hotplug_disable);
16e53dbf 343
01b41159
LW
344static void __cpu_hotplug_enable(void)
345{
346 if (WARN_ONCE(!cpu_hotplug_disabled, "Unbalanced cpu hotplug enable\n"))
347 return;
348 cpu_hotplug_disabled--;
349}
350
16e53dbf
SB
351void cpu_hotplug_enable(void)
352{
353 cpu_maps_update_begin();
01b41159 354 __cpu_hotplug_enable();
16e53dbf
SB
355 cpu_maps_update_done();
356}
32145c46 357EXPORT_SYMBOL_GPL(cpu_hotplug_enable);
cb92173d
PZ
358
359#else
360
361static void lockdep_acquire_cpus_lock(void)
362{
363}
364
365static void lockdep_release_cpus_lock(void)
366{
367}
368
b9d10be7 369#endif /* CONFIG_HOTPLUG_CPU */
79a6cdeb 370
a74cfffb
TG
371/*
372 * Architectures that need SMT-specific errata handling during SMT hotplug
373 * should override this.
374 */
375void __weak arch_smt_update(void) { }
376
0cc3cd21
TG
377#ifdef CONFIG_HOTPLUG_SMT
378enum cpuhp_smt_control cpu_smt_control __read_mostly = CPU_SMT_ENABLED;
bc2d8d26 379
8e1b706b 380void __init cpu_smt_disable(bool force)
0cc3cd21 381{
8e1b706b
JK
382 if (cpu_smt_control == CPU_SMT_FORCE_DISABLED ||
383 cpu_smt_control == CPU_SMT_NOT_SUPPORTED)
384 return;
385
386 if (force) {
0cc3cd21
TG
387 pr_info("SMT: Force disabled\n");
388 cpu_smt_control = CPU_SMT_FORCE_DISABLED;
8e1b706b 389 } else {
d0e7d144 390 pr_info("SMT: disabled\n");
8e1b706b 391 cpu_smt_control = CPU_SMT_DISABLED;
0cc3cd21 392 }
8e1b706b
JK
393}
394
fee0aede
TG
395/*
396 * The decision whether SMT is supported can only be done after the full
b284909a 397 * CPU identification. Called from architecture code.
bc2d8d26
TG
398 */
399void __init cpu_smt_check_topology(void)
400{
b284909a 401 if (!topology_smt_supported())
bc2d8d26
TG
402 cpu_smt_control = CPU_SMT_NOT_SUPPORTED;
403}
404
8e1b706b
JK
405static int __init smt_cmdline_disable(char *str)
406{
407 cpu_smt_disable(str && !strcmp(str, "force"));
0cc3cd21
TG
408 return 0;
409}
410early_param("nosmt", smt_cmdline_disable);
411
412static inline bool cpu_smt_allowed(unsigned int cpu)
413{
b284909a 414 if (cpu_smt_control == CPU_SMT_ENABLED)
0cc3cd21
TG
415 return true;
416
b284909a 417 if (topology_is_primary_thread(cpu))
0cc3cd21
TG
418 return true;
419
420 /*
421 * On x86 it's required to boot all logical CPUs at least once so
422 * that the init code can get a chance to set CR4.MCE on each
423 * CPU. Otherwise, a broadacasted MCE observing CR4.MCE=0b on any
424 * core will shutdown the machine.
425 */
426 return !per_cpu(cpuhp_state, cpu).booted_once;
427}
428#else
429static inline bool cpu_smt_allowed(unsigned int cpu) { return true; }
430#endif
431
4dddfb5f
PZ
432static inline enum cpuhp_state
433cpuhp_set_state(struct cpuhp_cpu_state *st, enum cpuhp_state target)
434{
435 enum cpuhp_state prev_state = st->state;
436
437 st->rollback = false;
438 st->last = NULL;
439
440 st->target = target;
441 st->single = false;
442 st->bringup = st->state < target;
443
444 return prev_state;
445}
446
447static inline void
448cpuhp_reset_state(struct cpuhp_cpu_state *st, enum cpuhp_state prev_state)
449{
450 st->rollback = true;
451
452 /*
453 * If we have st->last we need to undo partial multi_instance of this
454 * state first. Otherwise start undo at the previous state.
455 */
456 if (!st->last) {
457 if (st->bringup)
458 st->state--;
459 else
460 st->state++;
461 }
462
463 st->target = prev_state;
464 st->bringup = !st->bringup;
465}
466
467/* Regular hotplug invocation of the AP hotplug thread */
468static void __cpuhp_kick_ap(struct cpuhp_cpu_state *st)
469{
470 if (!st->single && st->state == st->target)
471 return;
472
473 st->result = 0;
474 /*
475 * Make sure the above stores are visible before should_run becomes
476 * true. Paired with the mb() above in cpuhp_thread_fun()
477 */
478 smp_mb();
479 st->should_run = true;
480 wake_up_process(st->thread);
5ebe7742 481 wait_for_ap_thread(st, st->bringup);
4dddfb5f
PZ
482}
483
484static int cpuhp_kick_ap(struct cpuhp_cpu_state *st, enum cpuhp_state target)
485{
486 enum cpuhp_state prev_state;
487 int ret;
488
489 prev_state = cpuhp_set_state(st, target);
490 __cpuhp_kick_ap(st);
491 if ((ret = st->result)) {
492 cpuhp_reset_state(st, prev_state);
493 __cpuhp_kick_ap(st);
494 }
495
496 return ret;
497}
9cd4f1a4 498
8df3e07e
TG
499static int bringup_wait_for_ap(unsigned int cpu)
500{
501 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
502
9cd4f1a4 503 /* Wait for the CPU to reach CPUHP_AP_ONLINE_IDLE */
5ebe7742 504 wait_for_ap_thread(st, true);
dea1d0f5
TG
505 if (WARN_ON_ONCE((!cpu_online(cpu))))
506 return -ECANCELED;
9cd4f1a4
TG
507
508 /* Unpark the stopper thread and the hotplug thread of the target cpu */
509 stop_machine_unpark(cpu);
510 kthread_unpark(st->thread);
511
0cc3cd21
TG
512 /*
513 * SMT soft disabling on X86 requires to bring the CPU out of the
514 * BIOS 'wait for SIPI' state in order to set the CR4.MCE bit. The
515 * CPU marked itself as booted_once in cpu_notify_starting() so the
516 * cpu_smt_allowed() check will now return false if this is not the
517 * primary sibling.
518 */
519 if (!cpu_smt_allowed(cpu))
520 return -ECANCELED;
521
4dddfb5f
PZ
522 if (st->target <= CPUHP_AP_ONLINE_IDLE)
523 return 0;
524
525 return cpuhp_kick_ap(st, st->target);
8df3e07e
TG
526}
527
ba997462
TG
528static int bringup_cpu(unsigned int cpu)
529{
530 struct task_struct *idle = idle_thread_get(cpu);
531 int ret;
532
aa877175
BO
533 /*
534 * Some architectures have to walk the irq descriptors to
535 * setup the vector space for the cpu which comes online.
536 * Prevent irq alloc/free across the bringup.
537 */
538 irq_lock_sparse();
539
ba997462
TG
540 /* Arch-specific enabling code. */
541 ret = __cpu_up(cpu, idle);
aa877175 542 irq_unlock_sparse();
530e9b76 543 if (ret)
ba997462 544 return ret;
9cd4f1a4 545 return bringup_wait_for_ap(cpu);
ba997462
TG
546}
547
2e1a3483
TG
548/*
549 * Hotplug state machine related functions
550 */
2e1a3483 551
a724632c 552static void undo_cpu_up(unsigned int cpu, struct cpuhp_cpu_state *st)
2e1a3483 553{
6fb86d97
MO
554 for (st->state--; st->state > st->target; st->state--)
555 cpuhp_invoke_callback(cpu, st->state, false, NULL, NULL);
2e1a3483
TG
556}
557
bd748a0e
TG
558static inline bool can_rollback_cpu(struct cpuhp_cpu_state *st)
559{
560 if (IS_ENABLED(CONFIG_HOTPLUG_CPU))
561 return true;
562 /*
563 * When CPU hotplug is disabled, then taking the CPU down is not
564 * possible because takedown_cpu() and the architecture and
565 * subsystem specific mechanisms are not available. So the CPU
566 * which would be completely unplugged again needs to stay around
567 * in the current state.
568 */
569 return st->state <= CPUHP_BRINGUP_CPU;
570}
571
2e1a3483 572static int cpuhp_up_callbacks(unsigned int cpu, struct cpuhp_cpu_state *st,
a724632c 573 enum cpuhp_state target)
2e1a3483
TG
574{
575 enum cpuhp_state prev_state = st->state;
576 int ret = 0;
577
578 while (st->state < target) {
2e1a3483 579 st->state++;
96abb968 580 ret = cpuhp_invoke_callback(cpu, st->state, true, NULL, NULL);
2e1a3483 581 if (ret) {
bd748a0e
TG
582 if (can_rollback_cpu(st)) {
583 st->target = prev_state;
584 undo_cpu_up(cpu, st);
585 }
2e1a3483
TG
586 break;
587 }
588 }
589 return ret;
590}
591
4cb28ced
TG
592/*
593 * The cpu hotplug threads manage the bringup and teardown of the cpus
594 */
595static void cpuhp_create(unsigned int cpu)
596{
597 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
598
5ebe7742
PZ
599 init_completion(&st->done_up);
600 init_completion(&st->done_down);
4cb28ced
TG
601}
602
603static int cpuhp_should_run(unsigned int cpu)
604{
605 struct cpuhp_cpu_state *st = this_cpu_ptr(&cpuhp_state);
606
607 return st->should_run;
608}
609
4cb28ced
TG
610/*
611 * Execute teardown/startup callbacks on the plugged cpu. Also used to invoke
612 * callbacks when a state gets [un]installed at runtime.
4dddfb5f
PZ
613 *
614 * Each invocation of this function by the smpboot thread does a single AP
615 * state callback.
616 *
617 * It has 3 modes of operation:
618 * - single: runs st->cb_state
619 * - up: runs ++st->state, while st->state < st->target
620 * - down: runs st->state--, while st->state > st->target
621 *
622 * When complete or on error, should_run is cleared and the completion is fired.
4cb28ced
TG
623 */
624static void cpuhp_thread_fun(unsigned int cpu)
625{
626 struct cpuhp_cpu_state *st = this_cpu_ptr(&cpuhp_state);
4dddfb5f
PZ
627 bool bringup = st->bringup;
628 enum cpuhp_state state;
4cb28ced 629
f8b7530a
NU
630 if (WARN_ON_ONCE(!st->should_run))
631 return;
632
4cb28ced 633 /*
4dddfb5f
PZ
634 * ACQUIRE for the cpuhp_should_run() load of ->should_run. Ensures
635 * that if we see ->should_run we also see the rest of the state.
4cb28ced
TG
636 */
637 smp_mb();
4cb28ced 638
cb92173d
PZ
639 /*
640 * The BP holds the hotplug lock, but we're now running on the AP,
641 * ensure that anybody asserting the lock is held, will actually find
642 * it so.
643 */
644 lockdep_acquire_cpus_lock();
5f4b55e1 645 cpuhp_lock_acquire(bringup);
4dddfb5f 646
a724632c 647 if (st->single) {
4dddfb5f
PZ
648 state = st->cb_state;
649 st->should_run = false;
650 } else {
651 if (bringup) {
652 st->state++;
653 state = st->state;
654 st->should_run = (st->state < st->target);
655 WARN_ON_ONCE(st->state > st->target);
4cb28ced 656 } else {
4dddfb5f
PZ
657 state = st->state;
658 st->state--;
659 st->should_run = (st->state > st->target);
660 WARN_ON_ONCE(st->state < st->target);
4cb28ced 661 }
4dddfb5f
PZ
662 }
663
664 WARN_ON_ONCE(!cpuhp_is_ap_state(state));
665
4dddfb5f
PZ
666 if (cpuhp_is_atomic_state(state)) {
667 local_irq_disable();
668 st->result = cpuhp_invoke_callback(cpu, state, bringup, st->node, &st->last);
669 local_irq_enable();
3b9d6da6 670
4dddfb5f
PZ
671 /*
672 * STARTING/DYING must not fail!
673 */
674 WARN_ON_ONCE(st->result);
4cb28ced 675 } else {
4dddfb5f
PZ
676 st->result = cpuhp_invoke_callback(cpu, state, bringup, st->node, &st->last);
677 }
678
679 if (st->result) {
680 /*
681 * If we fail on a rollback, we're up a creek without no
682 * paddle, no way forward, no way back. We loose, thanks for
683 * playing.
684 */
685 WARN_ON_ONCE(st->rollback);
686 st->should_run = false;
4cb28ced 687 }
4dddfb5f 688
5f4b55e1 689 cpuhp_lock_release(bringup);
cb92173d 690 lockdep_release_cpus_lock();
4dddfb5f
PZ
691
692 if (!st->should_run)
5ebe7742 693 complete_ap_thread(st, bringup);
4cb28ced
TG
694}
695
696/* Invoke a single callback on a remote cpu */
a724632c 697static int
cf392d10
TG
698cpuhp_invoke_ap_callback(int cpu, enum cpuhp_state state, bool bringup,
699 struct hlist_node *node)
4cb28ced
TG
700{
701 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
4dddfb5f 702 int ret;
4cb28ced
TG
703
704 if (!cpu_online(cpu))
705 return 0;
706
5f4b55e1
PZ
707 cpuhp_lock_acquire(false);
708 cpuhp_lock_release(false);
709
710 cpuhp_lock_acquire(true);
711 cpuhp_lock_release(true);
49dfe2a6 712
6a4e2451
TG
713 /*
714 * If we are up and running, use the hotplug thread. For early calls
715 * we invoke the thread function directly.
716 */
717 if (!st->thread)
96abb968 718 return cpuhp_invoke_callback(cpu, state, bringup, node, NULL);
6a4e2451 719
4dddfb5f
PZ
720 st->rollback = false;
721 st->last = NULL;
722
723 st->node = node;
724 st->bringup = bringup;
4cb28ced 725 st->cb_state = state;
a724632c 726 st->single = true;
a724632c 727
4dddfb5f 728 __cpuhp_kick_ap(st);
4cb28ced 729
4cb28ced 730 /*
4dddfb5f 731 * If we failed and did a partial, do a rollback.
4cb28ced 732 */
4dddfb5f
PZ
733 if ((ret = st->result) && st->last) {
734 st->rollback = true;
735 st->bringup = !bringup;
736
737 __cpuhp_kick_ap(st);
738 }
739
1f7c70d6
TG
740 /*
741 * Clean up the leftovers so the next hotplug operation wont use stale
742 * data.
743 */
744 st->node = st->last = NULL;
4dddfb5f 745 return ret;
1cf4f629
TG
746}
747
748static int cpuhp_kick_ap_work(unsigned int cpu)
749{
750 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
4dddfb5f
PZ
751 enum cpuhp_state prev_state = st->state;
752 int ret;
1cf4f629 753
5f4b55e1
PZ
754 cpuhp_lock_acquire(false);
755 cpuhp_lock_release(false);
756
757 cpuhp_lock_acquire(true);
758 cpuhp_lock_release(true);
4dddfb5f
PZ
759
760 trace_cpuhp_enter(cpu, st->target, prev_state, cpuhp_kick_ap_work);
761 ret = cpuhp_kick_ap(st, st->target);
762 trace_cpuhp_exit(cpu, st->state, prev_state, ret);
763
764 return ret;
4cb28ced
TG
765}
766
767static struct smp_hotplug_thread cpuhp_threads = {
768 .store = &cpuhp_state.thread,
769 .create = &cpuhp_create,
770 .thread_should_run = cpuhp_should_run,
771 .thread_fn = cpuhp_thread_fun,
772 .thread_comm = "cpuhp/%u",
773 .selfparking = true,
774};
775
776void __init cpuhp_threads_init(void)
777{
778 BUG_ON(smpboot_register_percpu_thread(&cpuhp_threads));
779 kthread_unpark(this_cpu_read(cpuhp_state.thread));
780}
781
777c6e0d 782#ifdef CONFIG_HOTPLUG_CPU
e4cc2f87
AV
783/**
784 * clear_tasks_mm_cpumask - Safely clear tasks' mm_cpumask for a CPU
785 * @cpu: a CPU id
786 *
787 * This function walks all processes, finds a valid mm struct for each one and
788 * then clears a corresponding bit in mm's cpumask. While this all sounds
789 * trivial, there are various non-obvious corner cases, which this function
790 * tries to solve in a safe manner.
791 *
792 * Also note that the function uses a somewhat relaxed locking scheme, so it may
793 * be called only for an already offlined CPU.
794 */
cb79295e
AV
795void clear_tasks_mm_cpumask(int cpu)
796{
797 struct task_struct *p;
798
799 /*
800 * This function is called after the cpu is taken down and marked
801 * offline, so its not like new tasks will ever get this cpu set in
802 * their mm mask. -- Peter Zijlstra
803 * Thus, we may use rcu_read_lock() here, instead of grabbing
804 * full-fledged tasklist_lock.
805 */
e4cc2f87 806 WARN_ON(cpu_online(cpu));
cb79295e
AV
807 rcu_read_lock();
808 for_each_process(p) {
809 struct task_struct *t;
810
e4cc2f87
AV
811 /*
812 * Main thread might exit, but other threads may still have
813 * a valid mm. Find one.
814 */
cb79295e
AV
815 t = find_lock_task_mm(p);
816 if (!t)
817 continue;
818 cpumask_clear_cpu(cpu, mm_cpumask(t->mm));
819 task_unlock(t);
820 }
821 rcu_read_unlock();
822}
823
1da177e4 824/* Take this CPU down. */
71cf5aee 825static int take_cpu_down(void *_param)
1da177e4 826{
4baa0afc
TG
827 struct cpuhp_cpu_state *st = this_cpu_ptr(&cpuhp_state);
828 enum cpuhp_state target = max((int)st->target, CPUHP_AP_OFFLINE);
090e77c3 829 int err, cpu = smp_processor_id();
724a8688 830 int ret;
1da177e4 831
1da177e4
LT
832 /* Ensure this CPU doesn't handle any more interrupts. */
833 err = __cpu_disable();
834 if (err < 0)
f3705136 835 return err;
1da177e4 836
a724632c
TG
837 /*
838 * We get here while we are in CPUHP_TEARDOWN_CPU state and we must not
839 * do this step again.
840 */
841 WARN_ON(st->state != CPUHP_TEARDOWN_CPU);
842 st->state--;
4baa0afc 843 /* Invoke the former CPU_DYING callbacks */
724a8688
PZ
844 for (; st->state > target; st->state--) {
845 ret = cpuhp_invoke_callback(cpu, st->state, false, NULL, NULL);
846 /*
847 * DYING must not fail!
848 */
849 WARN_ON_ONCE(ret);
850 }
4baa0afc 851
52c063d1
TG
852 /* Give up timekeeping duties */
853 tick_handover_do_timer();
14e568e7 854 /* Park the stopper thread */
090e77c3 855 stop_machine_park(cpu);
f3705136 856 return 0;
1da177e4
LT
857}
858
98458172 859static int takedown_cpu(unsigned int cpu)
1da177e4 860{
e69aab13 861 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
98458172 862 int err;
1da177e4 863
2a58c527 864 /* Park the smpboot threads */
1cf4f629
TG
865 kthread_park(per_cpu_ptr(&cpuhp_state, cpu)->thread);
866
6acce3ef 867 /*
a8994181
TG
868 * Prevent irq alloc/free while the dying cpu reorganizes the
869 * interrupt affinities.
6acce3ef 870 */
a8994181 871 irq_lock_sparse();
6acce3ef 872
a8994181
TG
873 /*
874 * So now all preempt/rcu users must observe !cpu_active().
875 */
210e2133 876 err = stop_machine_cpuslocked(take_cpu_down, NULL, cpumask_of(cpu));
04321587 877 if (err) {
3b9d6da6 878 /* CPU refused to die */
a8994181 879 irq_unlock_sparse();
3b9d6da6
SAS
880 /* Unpark the hotplug thread so we can rollback there */
881 kthread_unpark(per_cpu_ptr(&cpuhp_state, cpu)->thread);
98458172 882 return err;
8fa1d7d3 883 }
04321587 884 BUG_ON(cpu_online(cpu));
1da177e4 885
48c5ccae 886 /*
5b1ead68
BJ
887 * The teardown callback for CPUHP_AP_SCHED_STARTING will have removed
888 * all runnable tasks from the CPU, there's only the idle task left now
48c5ccae 889 * that the migration thread is done doing the stop_machine thing.
51a96c77
PZ
890 *
891 * Wait for the stop thread to go away.
48c5ccae 892 */
5ebe7742 893 wait_for_ap_thread(st, false);
e69aab13 894 BUG_ON(st->state != CPUHP_AP_IDLE_DEAD);
1da177e4 895
a8994181
TG
896 /* Interrupts are moved away from the dying cpu, reenable alloc/free */
897 irq_unlock_sparse();
898
345527b1 899 hotplug_cpu__broadcast_tick_pull(cpu);
1da177e4
LT
900 /* This actually kills the CPU. */
901 __cpu_die(cpu);
902
a49b116d 903 tick_cleanup_dead_cpu(cpu);
a58163d8 904 rcutree_migrate_callbacks(cpu);
98458172
TG
905 return 0;
906}
1da177e4 907
71f87b2f
TG
908static void cpuhp_complete_idle_dead(void *arg)
909{
910 struct cpuhp_cpu_state *st = arg;
911
5ebe7742 912 complete_ap_thread(st, false);
71f87b2f
TG
913}
914
e69aab13
TG
915void cpuhp_report_idle_dead(void)
916{
917 struct cpuhp_cpu_state *st = this_cpu_ptr(&cpuhp_state);
918
919 BUG_ON(st->state != CPUHP_AP_OFFLINE);
27d50c7e 920 rcu_report_dead(smp_processor_id());
71f87b2f
TG
921 st->state = CPUHP_AP_IDLE_DEAD;
922 /*
923 * We cannot call complete after rcu_report_dead() so we delegate it
924 * to an online cpu.
925 */
926 smp_call_function_single(cpumask_first(cpu_online_mask),
927 cpuhp_complete_idle_dead, st, 0);
e69aab13
TG
928}
929
4dddfb5f
PZ
930static void undo_cpu_down(unsigned int cpu, struct cpuhp_cpu_state *st)
931{
6fb86d97
MO
932 for (st->state++; st->state < st->target; st->state++)
933 cpuhp_invoke_callback(cpu, st->state, true, NULL, NULL);
4dddfb5f
PZ
934}
935
936static int cpuhp_down_callbacks(unsigned int cpu, struct cpuhp_cpu_state *st,
937 enum cpuhp_state target)
938{
939 enum cpuhp_state prev_state = st->state;
940 int ret = 0;
941
942 for (; st->state > target; st->state--) {
943 ret = cpuhp_invoke_callback(cpu, st->state, false, NULL, NULL);
944 if (ret) {
945 st->target = prev_state;
69fa6eb7
TG
946 if (st->state < prev_state)
947 undo_cpu_down(cpu, st);
4dddfb5f
PZ
948 break;
949 }
950 }
951 return ret;
952}
cff7d378 953
98458172 954/* Requires cpu_add_remove_lock to be held */
af1f4045
TG
955static int __ref _cpu_down(unsigned int cpu, int tasks_frozen,
956 enum cpuhp_state target)
98458172 957{
cff7d378
TG
958 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
959 int prev_state, ret = 0;
98458172
TG
960
961 if (num_online_cpus() == 1)
962 return -EBUSY;
963
757c989b 964 if (!cpu_present(cpu))
98458172
TG
965 return -EINVAL;
966
8f553c49 967 cpus_write_lock();
98458172
TG
968
969 cpuhp_tasks_frozen = tasks_frozen;
970
4dddfb5f 971 prev_state = cpuhp_set_state(st, target);
1cf4f629
TG
972 /*
973 * If the current CPU state is in the range of the AP hotplug thread,
974 * then we need to kick the thread.
975 */
8df3e07e 976 if (st->state > CPUHP_TEARDOWN_CPU) {
4dddfb5f 977 st->target = max((int)target, CPUHP_TEARDOWN_CPU);
1cf4f629
TG
978 ret = cpuhp_kick_ap_work(cpu);
979 /*
980 * The AP side has done the error rollback already. Just
981 * return the error code..
982 */
983 if (ret)
984 goto out;
985
986 /*
987 * We might have stopped still in the range of the AP hotplug
988 * thread. Nothing to do anymore.
989 */
8df3e07e 990 if (st->state > CPUHP_TEARDOWN_CPU)
1cf4f629 991 goto out;
4dddfb5f
PZ
992
993 st->target = target;
1cf4f629
TG
994 }
995 /*
8df3e07e 996 * The AP brought itself down to CPUHP_TEARDOWN_CPU. So we need
1cf4f629
TG
997 * to do the further cleanups.
998 */
a724632c 999 ret = cpuhp_down_callbacks(cpu, st, target);
69fa6eb7 1000 if (ret && st->state == CPUHP_TEARDOWN_CPU && st->state < prev_state) {
4dddfb5f
PZ
1001 cpuhp_reset_state(st, prev_state);
1002 __cpuhp_kick_ap(st);
3b9d6da6 1003 }
98458172 1004
1cf4f629 1005out:
8f553c49 1006 cpus_write_unlock();
941154bd
TG
1007 /*
1008 * Do post unplug cleanup. This is still protected against
1009 * concurrent CPU hotplug via cpu_add_remove_lock.
1010 */
1011 lockup_detector_cleanup();
a74cfffb 1012 arch_smt_update();
cff7d378 1013 return ret;
e3920fb4
RW
1014}
1015
cc1fe215
TG
1016static int cpu_down_maps_locked(unsigned int cpu, enum cpuhp_state target)
1017{
1018 if (cpu_hotplug_disabled)
1019 return -EBUSY;
1020 return _cpu_down(cpu, 0, target);
1021}
1022
af1f4045 1023static int do_cpu_down(unsigned int cpu, enum cpuhp_state target)
e3920fb4 1024{
9ea09af3 1025 int err;
e3920fb4 1026
d221938c 1027 cpu_maps_update_begin();
cc1fe215 1028 err = cpu_down_maps_locked(cpu, target);
d221938c 1029 cpu_maps_update_done();
1da177e4
LT
1030 return err;
1031}
4dddfb5f 1032
af1f4045
TG
1033int cpu_down(unsigned int cpu)
1034{
1035 return do_cpu_down(cpu, CPUHP_OFFLINE);
1036}
b62b8ef9 1037EXPORT_SYMBOL(cpu_down);
4dddfb5f
PZ
1038
1039#else
1040#define takedown_cpu NULL
1da177e4
LT
1041#endif /*CONFIG_HOTPLUG_CPU*/
1042
4baa0afc 1043/**
ee1e714b 1044 * notify_cpu_starting(cpu) - Invoke the callbacks on the starting CPU
4baa0afc
TG
1045 * @cpu: cpu that just started
1046 *
4baa0afc
TG
1047 * It must be called by the arch code on the new cpu, before the new cpu
1048 * enables interrupts and before the "boot" cpu returns from __cpu_up().
1049 */
1050void notify_cpu_starting(unsigned int cpu)
1051{
1052 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
1053 enum cpuhp_state target = min((int)st->target, CPUHP_AP_ONLINE);
724a8688 1054 int ret;
4baa0afc 1055
0c6d4576 1056 rcu_cpu_starting(cpu); /* Enables RCU usage on this CPU. */
0cc3cd21 1057 st->booted_once = true;
4baa0afc 1058 while (st->state < target) {
4baa0afc 1059 st->state++;
724a8688
PZ
1060 ret = cpuhp_invoke_callback(cpu, st->state, true, NULL, NULL);
1061 /*
1062 * STARTING must not fail!
1063 */
1064 WARN_ON_ONCE(ret);
4baa0afc
TG
1065 }
1066}
1067
949338e3 1068/*
9cd4f1a4
TG
1069 * Called from the idle task. Wake up the controlling task which brings the
1070 * stopper and the hotplug thread of the upcoming CPU up and then delegates
1071 * the rest of the online bringup to the hotplug thread.
949338e3 1072 */
8df3e07e 1073void cpuhp_online_idle(enum cpuhp_state state)
949338e3 1074{
8df3e07e 1075 struct cpuhp_cpu_state *st = this_cpu_ptr(&cpuhp_state);
8df3e07e
TG
1076
1077 /* Happens for the boot cpu */
1078 if (state != CPUHP_AP_ONLINE_IDLE)
1079 return;
1080
1081 st->state = CPUHP_AP_ONLINE_IDLE;
5ebe7742 1082 complete_ap_thread(st, true);
949338e3
TG
1083}
1084
e3920fb4 1085/* Requires cpu_add_remove_lock to be held */
af1f4045 1086static int _cpu_up(unsigned int cpu, int tasks_frozen, enum cpuhp_state target)
1da177e4 1087{
cff7d378 1088 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
3bb5d2ee 1089 struct task_struct *idle;
2e1a3483 1090 int ret = 0;
1da177e4 1091
8f553c49 1092 cpus_write_lock();
38498a67 1093
757c989b 1094 if (!cpu_present(cpu)) {
5e5041f3
YI
1095 ret = -EINVAL;
1096 goto out;
1097 }
1098
757c989b
TG
1099 /*
1100 * The caller of do_cpu_up might have raced with another
1101 * caller. Ignore it for now.
1102 */
1103 if (st->state >= target)
38498a67 1104 goto out;
757c989b
TG
1105
1106 if (st->state == CPUHP_OFFLINE) {
1107 /* Let it fail before we try to bring the cpu up */
1108 idle = idle_thread_get(cpu);
1109 if (IS_ERR(idle)) {
1110 ret = PTR_ERR(idle);
1111 goto out;
1112 }
3bb5d2ee 1113 }
38498a67 1114
ba997462
TG
1115 cpuhp_tasks_frozen = tasks_frozen;
1116
4dddfb5f 1117 cpuhp_set_state(st, target);
1cf4f629
TG
1118 /*
1119 * If the current CPU state is in the range of the AP hotplug thread,
1120 * then we need to kick the thread once more.
1121 */
8df3e07e 1122 if (st->state > CPUHP_BRINGUP_CPU) {
1cf4f629
TG
1123 ret = cpuhp_kick_ap_work(cpu);
1124 /*
1125 * The AP side has done the error rollback already. Just
1126 * return the error code..
1127 */
1128 if (ret)
1129 goto out;
1130 }
1131
1132 /*
1133 * Try to reach the target state. We max out on the BP at
8df3e07e 1134 * CPUHP_BRINGUP_CPU. After that the AP hotplug thread is
1cf4f629
TG
1135 * responsible for bringing it up to the target state.
1136 */
8df3e07e 1137 target = min((int)target, CPUHP_BRINGUP_CPU);
a724632c 1138 ret = cpuhp_up_callbacks(cpu, st, target);
38498a67 1139out:
8f553c49 1140 cpus_write_unlock();
a74cfffb 1141 arch_smt_update();
e3920fb4
RW
1142 return ret;
1143}
1144
af1f4045 1145static int do_cpu_up(unsigned int cpu, enum cpuhp_state target)
e3920fb4
RW
1146{
1147 int err = 0;
cf23422b 1148
e0b582ec 1149 if (!cpu_possible(cpu)) {
84117da5
FF
1150 pr_err("can't online cpu %d because it is not configured as may-hotadd at boot time\n",
1151 cpu);
87d5e023 1152#if defined(CONFIG_IA64)
84117da5 1153 pr_err("please check additional_cpus= boot parameter\n");
73e753a5
KH
1154#endif
1155 return -EINVAL;
1156 }
e3920fb4 1157
01b0f197
TK
1158 err = try_online_node(cpu_to_node(cpu));
1159 if (err)
1160 return err;
cf23422b 1161
d221938c 1162 cpu_maps_update_begin();
e761b772
MK
1163
1164 if (cpu_hotplug_disabled) {
e3920fb4 1165 err = -EBUSY;
e761b772
MK
1166 goto out;
1167 }
05736e4a
TG
1168 if (!cpu_smt_allowed(cpu)) {
1169 err = -EPERM;
1170 goto out;
1171 }
e761b772 1172
af1f4045 1173 err = _cpu_up(cpu, 0, target);
e761b772 1174out:
d221938c 1175 cpu_maps_update_done();
e3920fb4
RW
1176 return err;
1177}
af1f4045
TG
1178
1179int cpu_up(unsigned int cpu)
1180{
1181 return do_cpu_up(cpu, CPUHP_ONLINE);
1182}
a513f6ba 1183EXPORT_SYMBOL_GPL(cpu_up);
e3920fb4 1184
f3de4be9 1185#ifdef CONFIG_PM_SLEEP_SMP
e0b582ec 1186static cpumask_var_t frozen_cpus;
e3920fb4 1187
d391e552 1188int freeze_secondary_cpus(int primary)
e3920fb4 1189{
d391e552 1190 int cpu, error = 0;
e3920fb4 1191
d221938c 1192 cpu_maps_update_begin();
d391e552
JM
1193 if (!cpu_online(primary))
1194 primary = cpumask_first(cpu_online_mask);
9ee349ad
XF
1195 /*
1196 * We take down all of the non-boot CPUs in one shot to avoid races
e3920fb4
RW
1197 * with the userspace trying to use the CPU hotplug at the same time
1198 */
e0b582ec 1199 cpumask_clear(frozen_cpus);
6ad4c188 1200
84117da5 1201 pr_info("Disabling non-boot CPUs ...\n");
e3920fb4 1202 for_each_online_cpu(cpu) {
d391e552 1203 if (cpu == primary)
e3920fb4 1204 continue;
bb3632c6 1205 trace_suspend_resume(TPS("CPU_OFF"), cpu, true);
af1f4045 1206 error = _cpu_down(cpu, 1, CPUHP_OFFLINE);
bb3632c6 1207 trace_suspend_resume(TPS("CPU_OFF"), cpu, false);
feae3203 1208 if (!error)
e0b582ec 1209 cpumask_set_cpu(cpu, frozen_cpus);
feae3203 1210 else {
84117da5 1211 pr_err("Error taking CPU%d down: %d\n", cpu, error);
e3920fb4
RW
1212 break;
1213 }
1214 }
86886e55 1215
89af7ba5 1216 if (!error)
e3920fb4 1217 BUG_ON(num_online_cpus() > 1);
89af7ba5 1218 else
84117da5 1219 pr_err("Non-boot CPUs are not disabled\n");
89af7ba5
VK
1220
1221 /*
1222 * Make sure the CPUs won't be enabled by someone else. We need to do
1223 * this even in case of failure as all disable_nonboot_cpus() users are
1224 * supposed to do enable_nonboot_cpus() on the failure path.
1225 */
1226 cpu_hotplug_disabled++;
1227
d221938c 1228 cpu_maps_update_done();
e3920fb4
RW
1229 return error;
1230}
1231
d0af9eed
SS
1232void __weak arch_enable_nonboot_cpus_begin(void)
1233{
1234}
1235
1236void __weak arch_enable_nonboot_cpus_end(void)
1237{
1238}
1239
71cf5aee 1240void enable_nonboot_cpus(void)
e3920fb4
RW
1241{
1242 int cpu, error;
1243
1244 /* Allow everyone to use the CPU hotplug again */
d221938c 1245 cpu_maps_update_begin();
01b41159 1246 __cpu_hotplug_enable();
e0b582ec 1247 if (cpumask_empty(frozen_cpus))
1d64b9cb 1248 goto out;
e3920fb4 1249
84117da5 1250 pr_info("Enabling non-boot CPUs ...\n");
d0af9eed
SS
1251
1252 arch_enable_nonboot_cpus_begin();
1253
e0b582ec 1254 for_each_cpu(cpu, frozen_cpus) {
bb3632c6 1255 trace_suspend_resume(TPS("CPU_ON"), cpu, true);
af1f4045 1256 error = _cpu_up(cpu, 1, CPUHP_ONLINE);
bb3632c6 1257 trace_suspend_resume(TPS("CPU_ON"), cpu, false);
e3920fb4 1258 if (!error) {
84117da5 1259 pr_info("CPU%d is up\n", cpu);
e3920fb4
RW
1260 continue;
1261 }
84117da5 1262 pr_warn("Error taking CPU%d up: %d\n", cpu, error);
e3920fb4 1263 }
d0af9eed
SS
1264
1265 arch_enable_nonboot_cpus_end();
1266
e0b582ec 1267 cpumask_clear(frozen_cpus);
1d64b9cb 1268out:
d221938c 1269 cpu_maps_update_done();
1da177e4 1270}
e0b582ec 1271
d7268a31 1272static int __init alloc_frozen_cpus(void)
e0b582ec
RR
1273{
1274 if (!alloc_cpumask_var(&frozen_cpus, GFP_KERNEL|__GFP_ZERO))
1275 return -ENOMEM;
1276 return 0;
1277}
1278core_initcall(alloc_frozen_cpus);
79cfbdfa 1279
79cfbdfa
SB
1280/*
1281 * When callbacks for CPU hotplug notifications are being executed, we must
1282 * ensure that the state of the system with respect to the tasks being frozen
1283 * or not, as reported by the notification, remains unchanged *throughout the
1284 * duration* of the execution of the callbacks.
1285 * Hence we need to prevent the freezer from racing with regular CPU hotplug.
1286 *
1287 * This synchronization is implemented by mutually excluding regular CPU
1288 * hotplug and Suspend/Hibernate call paths by hooking onto the Suspend/
1289 * Hibernate notifications.
1290 */
1291static int
1292cpu_hotplug_pm_callback(struct notifier_block *nb,
1293 unsigned long action, void *ptr)
1294{
1295 switch (action) {
1296
1297 case PM_SUSPEND_PREPARE:
1298 case PM_HIBERNATION_PREPARE:
16e53dbf 1299 cpu_hotplug_disable();
79cfbdfa
SB
1300 break;
1301
1302 case PM_POST_SUSPEND:
1303 case PM_POST_HIBERNATION:
16e53dbf 1304 cpu_hotplug_enable();
79cfbdfa
SB
1305 break;
1306
1307 default:
1308 return NOTIFY_DONE;
1309 }
1310
1311 return NOTIFY_OK;
1312}
1313
1314
d7268a31 1315static int __init cpu_hotplug_pm_sync_init(void)
79cfbdfa 1316{
6e32d479
FY
1317 /*
1318 * cpu_hotplug_pm_callback has higher priority than x86
1319 * bsp_pm_callback which depends on cpu_hotplug_pm_callback
1320 * to disable cpu hotplug to avoid cpu hotplug race.
1321 */
79cfbdfa
SB
1322 pm_notifier(cpu_hotplug_pm_callback, 0);
1323 return 0;
1324}
1325core_initcall(cpu_hotplug_pm_sync_init);
1326
f3de4be9 1327#endif /* CONFIG_PM_SLEEP_SMP */
68f4f1ec 1328
8ce371f9
PZ
1329int __boot_cpu_id;
1330
68f4f1ec 1331#endif /* CONFIG_SMP */
b8d317d1 1332
cff7d378 1333/* Boot processor state steps */
17a2f1ce 1334static struct cpuhp_step cpuhp_hp_states[] = {
cff7d378
TG
1335 [CPUHP_OFFLINE] = {
1336 .name = "offline",
3c1627e9
TG
1337 .startup.single = NULL,
1338 .teardown.single = NULL,
cff7d378
TG
1339 },
1340#ifdef CONFIG_SMP
1341 [CPUHP_CREATE_THREADS]= {
677f6646 1342 .name = "threads:prepare",
3c1627e9
TG
1343 .startup.single = smpboot_create_threads,
1344 .teardown.single = NULL,
757c989b 1345 .cant_stop = true,
cff7d378 1346 },
00e16c3d 1347 [CPUHP_PERF_PREPARE] = {
3c1627e9
TG
1348 .name = "perf:prepare",
1349 .startup.single = perf_event_init_cpu,
1350 .teardown.single = perf_event_exit_cpu,
00e16c3d 1351 },
7ee681b2 1352 [CPUHP_WORKQUEUE_PREP] = {
3c1627e9
TG
1353 .name = "workqueue:prepare",
1354 .startup.single = workqueue_prepare_cpu,
1355 .teardown.single = NULL,
7ee681b2 1356 },
27590dc1 1357 [CPUHP_HRTIMERS_PREPARE] = {
3c1627e9
TG
1358 .name = "hrtimers:prepare",
1359 .startup.single = hrtimers_prepare_cpu,
1360 .teardown.single = hrtimers_dead_cpu,
27590dc1 1361 },
31487f83 1362 [CPUHP_SMPCFD_PREPARE] = {
677f6646 1363 .name = "smpcfd:prepare",
3c1627e9
TG
1364 .startup.single = smpcfd_prepare_cpu,
1365 .teardown.single = smpcfd_dead_cpu,
31487f83 1366 },
e6d4989a
RW
1367 [CPUHP_RELAY_PREPARE] = {
1368 .name = "relay:prepare",
1369 .startup.single = relay_prepare_cpu,
1370 .teardown.single = NULL,
1371 },
6731d4f1
SAS
1372 [CPUHP_SLAB_PREPARE] = {
1373 .name = "slab:prepare",
1374 .startup.single = slab_prepare_cpu,
1375 .teardown.single = slab_dead_cpu,
31487f83 1376 },
4df83742 1377 [CPUHP_RCUTREE_PREP] = {
677f6646 1378 .name = "RCU/tree:prepare",
3c1627e9
TG
1379 .startup.single = rcutree_prepare_cpu,
1380 .teardown.single = rcutree_dead_cpu,
4df83742 1381 },
4fae16df
RC
1382 /*
1383 * On the tear-down path, timers_dead_cpu() must be invoked
1384 * before blk_mq_queue_reinit_notify() from notify_dead(),
1385 * otherwise a RCU stall occurs.
1386 */
26456f87 1387 [CPUHP_TIMERS_PREPARE] = {
d018031f 1388 .name = "timers:prepare",
26456f87 1389 .startup.single = timers_prepare_cpu,
3c1627e9 1390 .teardown.single = timers_dead_cpu,
4fae16df 1391 },
d10ef6f9 1392 /* Kicks the plugged cpu into life */
cff7d378
TG
1393 [CPUHP_BRINGUP_CPU] = {
1394 .name = "cpu:bringup",
3c1627e9
TG
1395 .startup.single = bringup_cpu,
1396 .teardown.single = NULL,
757c989b 1397 .cant_stop = true,
4baa0afc 1398 },
d10ef6f9
TG
1399 /* Final state before CPU kills itself */
1400 [CPUHP_AP_IDLE_DEAD] = {
1401 .name = "idle:dead",
1402 },
1403 /*
1404 * Last state before CPU enters the idle loop to die. Transient state
1405 * for synchronization.
1406 */
1407 [CPUHP_AP_OFFLINE] = {
1408 .name = "ap:offline",
1409 .cant_stop = true,
1410 },
9cf7243d
TG
1411 /* First state is scheduler control. Interrupts are disabled */
1412 [CPUHP_AP_SCHED_STARTING] = {
1413 .name = "sched:starting",
3c1627e9
TG
1414 .startup.single = sched_cpu_starting,
1415 .teardown.single = sched_cpu_dying,
9cf7243d 1416 },
4df83742 1417 [CPUHP_AP_RCUTREE_DYING] = {
677f6646 1418 .name = "RCU/tree:dying",
3c1627e9
TG
1419 .startup.single = NULL,
1420 .teardown.single = rcutree_dying_cpu,
4baa0afc 1421 },
46febd37
LJ
1422 [CPUHP_AP_SMPCFD_DYING] = {
1423 .name = "smpcfd:dying",
1424 .startup.single = NULL,
1425 .teardown.single = smpcfd_dying_cpu,
1426 },
d10ef6f9
TG
1427 /* Entry state on starting. Interrupts enabled from here on. Transient
1428 * state for synchronsization */
1429 [CPUHP_AP_ONLINE] = {
1430 .name = "ap:online",
1431 },
17a2f1ce
LJ
1432 /*
1433 * Handled on controll processor until the plugged processor manages
1434 * this itself.
1435 */
1436 [CPUHP_TEARDOWN_CPU] = {
1437 .name = "cpu:teardown",
1438 .startup.single = NULL,
1439 .teardown.single = takedown_cpu,
1440 .cant_stop = true,
1441 },
d10ef6f9 1442 /* Handle smpboot threads park/unpark */
1cf4f629 1443 [CPUHP_AP_SMPBOOT_THREADS] = {
677f6646 1444 .name = "smpboot/threads:online",
3c1627e9 1445 .startup.single = smpboot_unpark_threads,
c4de6569 1446 .teardown.single = smpboot_park_threads,
1cf4f629 1447 },
c5cb83bb
TG
1448 [CPUHP_AP_IRQ_AFFINITY_ONLINE] = {
1449 .name = "irq/affinity:online",
1450 .startup.single = irq_affinity_online_cpu,
1451 .teardown.single = NULL,
1452 },
00e16c3d 1453 [CPUHP_AP_PERF_ONLINE] = {
3c1627e9
TG
1454 .name = "perf:online",
1455 .startup.single = perf_event_init_cpu,
1456 .teardown.single = perf_event_exit_cpu,
00e16c3d 1457 },
9cf57731
PZ
1458 [CPUHP_AP_WATCHDOG_ONLINE] = {
1459 .name = "lockup_detector:online",
1460 .startup.single = lockup_detector_online_cpu,
1461 .teardown.single = lockup_detector_offline_cpu,
1462 },
7ee681b2 1463 [CPUHP_AP_WORKQUEUE_ONLINE] = {
3c1627e9
TG
1464 .name = "workqueue:online",
1465 .startup.single = workqueue_online_cpu,
1466 .teardown.single = workqueue_offline_cpu,
7ee681b2 1467 },
4df83742 1468 [CPUHP_AP_RCUTREE_ONLINE] = {
677f6646 1469 .name = "RCU/tree:online",
3c1627e9
TG
1470 .startup.single = rcutree_online_cpu,
1471 .teardown.single = rcutree_offline_cpu,
4df83742 1472 },
4baa0afc 1473#endif
d10ef6f9
TG
1474 /*
1475 * The dynamically registered state space is here
1476 */
1477
aaddd7d1
TG
1478#ifdef CONFIG_SMP
1479 /* Last state is scheduler control setting the cpu active */
1480 [CPUHP_AP_ACTIVE] = {
1481 .name = "sched:active",
3c1627e9
TG
1482 .startup.single = sched_cpu_activate,
1483 .teardown.single = sched_cpu_deactivate,
aaddd7d1
TG
1484 },
1485#endif
1486
d10ef6f9 1487 /* CPU is fully up and running. */
4baa0afc
TG
1488 [CPUHP_ONLINE] = {
1489 .name = "online",
3c1627e9
TG
1490 .startup.single = NULL,
1491 .teardown.single = NULL,
4baa0afc
TG
1492 },
1493};
1494
5b7aa87e
TG
1495/* Sanity check for callbacks */
1496static int cpuhp_cb_check(enum cpuhp_state state)
1497{
1498 if (state <= CPUHP_OFFLINE || state >= CPUHP_ONLINE)
1499 return -EINVAL;
1500 return 0;
1501}
1502
dc280d93
TG
1503/*
1504 * Returns a free for dynamic slot assignment of the Online state. The states
1505 * are protected by the cpuhp_slot_states mutex and an empty slot is identified
1506 * by having no name assigned.
1507 */
1508static int cpuhp_reserve_state(enum cpuhp_state state)
1509{
4205e478
TG
1510 enum cpuhp_state i, end;
1511 struct cpuhp_step *step;
dc280d93 1512
4205e478
TG
1513 switch (state) {
1514 case CPUHP_AP_ONLINE_DYN:
17a2f1ce 1515 step = cpuhp_hp_states + CPUHP_AP_ONLINE_DYN;
4205e478
TG
1516 end = CPUHP_AP_ONLINE_DYN_END;
1517 break;
1518 case CPUHP_BP_PREPARE_DYN:
17a2f1ce 1519 step = cpuhp_hp_states + CPUHP_BP_PREPARE_DYN;
4205e478
TG
1520 end = CPUHP_BP_PREPARE_DYN_END;
1521 break;
1522 default:
1523 return -EINVAL;
1524 }
1525
1526 for (i = state; i <= end; i++, step++) {
1527 if (!step->name)
dc280d93
TG
1528 return i;
1529 }
1530 WARN(1, "No more dynamic states available for CPU hotplug\n");
1531 return -ENOSPC;
1532}
1533
1534static int cpuhp_store_callbacks(enum cpuhp_state state, const char *name,
1535 int (*startup)(unsigned int cpu),
1536 int (*teardown)(unsigned int cpu),
1537 bool multi_instance)
5b7aa87e
TG
1538{
1539 /* (Un)Install the callbacks for further cpu hotplug operations */
1540 struct cpuhp_step *sp;
dc280d93 1541 int ret = 0;
5b7aa87e 1542
0c96b273
EB
1543 /*
1544 * If name is NULL, then the state gets removed.
1545 *
1546 * CPUHP_AP_ONLINE_DYN and CPUHP_BP_PREPARE_DYN are handed out on
1547 * the first allocation from these dynamic ranges, so the removal
1548 * would trigger a new allocation and clear the wrong (already
1549 * empty) state, leaving the callbacks of the to be cleared state
1550 * dangling, which causes wreckage on the next hotplug operation.
1551 */
1552 if (name && (state == CPUHP_AP_ONLINE_DYN ||
1553 state == CPUHP_BP_PREPARE_DYN)) {
dc280d93
TG
1554 ret = cpuhp_reserve_state(state);
1555 if (ret < 0)
dc434e05 1556 return ret;
dc280d93
TG
1557 state = ret;
1558 }
5b7aa87e 1559 sp = cpuhp_get_step(state);
dc434e05
SAS
1560 if (name && sp->name)
1561 return -EBUSY;
1562
3c1627e9
TG
1563 sp->startup.single = startup;
1564 sp->teardown.single = teardown;
5b7aa87e 1565 sp->name = name;
cf392d10
TG
1566 sp->multi_instance = multi_instance;
1567 INIT_HLIST_HEAD(&sp->list);
dc280d93 1568 return ret;
5b7aa87e
TG
1569}
1570
1571static void *cpuhp_get_teardown_cb(enum cpuhp_state state)
1572{
3c1627e9 1573 return cpuhp_get_step(state)->teardown.single;
5b7aa87e
TG
1574}
1575
5b7aa87e
TG
1576/*
1577 * Call the startup/teardown function for a step either on the AP or
1578 * on the current CPU.
1579 */
cf392d10
TG
1580static int cpuhp_issue_call(int cpu, enum cpuhp_state state, bool bringup,
1581 struct hlist_node *node)
5b7aa87e 1582{
a724632c 1583 struct cpuhp_step *sp = cpuhp_get_step(state);
5b7aa87e
TG
1584 int ret;
1585
4dddfb5f
PZ
1586 /*
1587 * If there's nothing to do, we done.
1588 * Relies on the union for multi_instance.
1589 */
3c1627e9
TG
1590 if ((bringup && !sp->startup.single) ||
1591 (!bringup && !sp->teardown.single))
5b7aa87e 1592 return 0;
5b7aa87e
TG
1593 /*
1594 * The non AP bound callbacks can fail on bringup. On teardown
1595 * e.g. module removal we crash for now.
1596 */
1cf4f629
TG
1597#ifdef CONFIG_SMP
1598 if (cpuhp_is_ap_state(state))
cf392d10 1599 ret = cpuhp_invoke_ap_callback(cpu, state, bringup, node);
1cf4f629 1600 else
96abb968 1601 ret = cpuhp_invoke_callback(cpu, state, bringup, node, NULL);
1cf4f629 1602#else
96abb968 1603 ret = cpuhp_invoke_callback(cpu, state, bringup, node, NULL);
1cf4f629 1604#endif
5b7aa87e
TG
1605 BUG_ON(ret && !bringup);
1606 return ret;
1607}
1608
1609/*
1610 * Called from __cpuhp_setup_state on a recoverable failure.
1611 *
1612 * Note: The teardown callbacks for rollback are not allowed to fail!
1613 */
1614static void cpuhp_rollback_install(int failedcpu, enum cpuhp_state state,
cf392d10 1615 struct hlist_node *node)
5b7aa87e
TG
1616{
1617 int cpu;
1618
5b7aa87e
TG
1619 /* Roll back the already executed steps on the other cpus */
1620 for_each_present_cpu(cpu) {
1621 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
1622 int cpustate = st->state;
1623
1624 if (cpu >= failedcpu)
1625 break;
1626
1627 /* Did we invoke the startup call on that cpu ? */
1628 if (cpustate >= state)
cf392d10 1629 cpuhp_issue_call(cpu, state, false, node);
5b7aa87e
TG
1630 }
1631}
1632
9805c673
TG
1633int __cpuhp_state_add_instance_cpuslocked(enum cpuhp_state state,
1634 struct hlist_node *node,
1635 bool invoke)
cf392d10
TG
1636{
1637 struct cpuhp_step *sp;
1638 int cpu;
1639 int ret;
1640
9805c673
TG
1641 lockdep_assert_cpus_held();
1642
cf392d10
TG
1643 sp = cpuhp_get_step(state);
1644 if (sp->multi_instance == false)
1645 return -EINVAL;
1646
dc434e05 1647 mutex_lock(&cpuhp_state_mutex);
cf392d10 1648
3c1627e9 1649 if (!invoke || !sp->startup.multi)
cf392d10
TG
1650 goto add_node;
1651
1652 /*
1653 * Try to call the startup callback for each present cpu
1654 * depending on the hotplug state of the cpu.
1655 */
1656 for_each_present_cpu(cpu) {
1657 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
1658 int cpustate = st->state;
1659
1660 if (cpustate < state)
1661 continue;
1662
1663 ret = cpuhp_issue_call(cpu, state, true, node);
1664 if (ret) {
3c1627e9 1665 if (sp->teardown.multi)
cf392d10 1666 cpuhp_rollback_install(cpu, state, node);
dc434e05 1667 goto unlock;
cf392d10
TG
1668 }
1669 }
1670add_node:
1671 ret = 0;
cf392d10 1672 hlist_add_head(node, &sp->list);
dc434e05 1673unlock:
cf392d10 1674 mutex_unlock(&cpuhp_state_mutex);
9805c673
TG
1675 return ret;
1676}
1677
1678int __cpuhp_state_add_instance(enum cpuhp_state state, struct hlist_node *node,
1679 bool invoke)
1680{
1681 int ret;
1682
1683 cpus_read_lock();
1684 ret = __cpuhp_state_add_instance_cpuslocked(state, node, invoke);
8f553c49 1685 cpus_read_unlock();
cf392d10
TG
1686 return ret;
1687}
1688EXPORT_SYMBOL_GPL(__cpuhp_state_add_instance);
1689
5b7aa87e 1690/**
71def423 1691 * __cpuhp_setup_state_cpuslocked - Setup the callbacks for an hotplug machine state
dc280d93
TG
1692 * @state: The state to setup
1693 * @invoke: If true, the startup function is invoked for cpus where
1694 * cpu state >= @state
1695 * @startup: startup callback function
1696 * @teardown: teardown callback function
1697 * @multi_instance: State is set up for multiple instances which get
1698 * added afterwards.
5b7aa87e 1699 *
71def423 1700 * The caller needs to hold cpus read locked while calling this function.
512f0980
BO
1701 * Returns:
1702 * On success:
1703 * Positive state number if @state is CPUHP_AP_ONLINE_DYN
1704 * 0 for all other states
1705 * On failure: proper (negative) error code
5b7aa87e 1706 */
71def423
SAS
1707int __cpuhp_setup_state_cpuslocked(enum cpuhp_state state,
1708 const char *name, bool invoke,
1709 int (*startup)(unsigned int cpu),
1710 int (*teardown)(unsigned int cpu),
1711 bool multi_instance)
5b7aa87e
TG
1712{
1713 int cpu, ret = 0;
b9d9d691 1714 bool dynstate;
5b7aa87e 1715
71def423
SAS
1716 lockdep_assert_cpus_held();
1717
5b7aa87e
TG
1718 if (cpuhp_cb_check(state) || !name)
1719 return -EINVAL;
1720
dc434e05 1721 mutex_lock(&cpuhp_state_mutex);
5b7aa87e 1722
dc280d93
TG
1723 ret = cpuhp_store_callbacks(state, name, startup, teardown,
1724 multi_instance);
5b7aa87e 1725
b9d9d691
TG
1726 dynstate = state == CPUHP_AP_ONLINE_DYN;
1727 if (ret > 0 && dynstate) {
1728 state = ret;
1729 ret = 0;
1730 }
1731
dc280d93 1732 if (ret || !invoke || !startup)
5b7aa87e
TG
1733 goto out;
1734
1735 /*
1736 * Try to call the startup callback for each present cpu
1737 * depending on the hotplug state of the cpu.
1738 */
1739 for_each_present_cpu(cpu) {
1740 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
1741 int cpustate = st->state;
1742
1743 if (cpustate < state)
1744 continue;
1745
cf392d10 1746 ret = cpuhp_issue_call(cpu, state, true, NULL);
5b7aa87e 1747 if (ret) {
a724632c 1748 if (teardown)
cf392d10
TG
1749 cpuhp_rollback_install(cpu, state, NULL);
1750 cpuhp_store_callbacks(state, NULL, NULL, NULL, false);
5b7aa87e
TG
1751 goto out;
1752 }
1753 }
1754out:
dc434e05 1755 mutex_unlock(&cpuhp_state_mutex);
dc280d93
TG
1756 /*
1757 * If the requested state is CPUHP_AP_ONLINE_DYN, return the
1758 * dynamically allocated state in case of success.
1759 */
b9d9d691 1760 if (!ret && dynstate)
5b7aa87e
TG
1761 return state;
1762 return ret;
1763}
71def423
SAS
1764EXPORT_SYMBOL(__cpuhp_setup_state_cpuslocked);
1765
1766int __cpuhp_setup_state(enum cpuhp_state state,
1767 const char *name, bool invoke,
1768 int (*startup)(unsigned int cpu),
1769 int (*teardown)(unsigned int cpu),
1770 bool multi_instance)
1771{
1772 int ret;
1773
1774 cpus_read_lock();
1775 ret = __cpuhp_setup_state_cpuslocked(state, name, invoke, startup,
1776 teardown, multi_instance);
1777 cpus_read_unlock();
1778 return ret;
1779}
5b7aa87e
TG
1780EXPORT_SYMBOL(__cpuhp_setup_state);
1781
cf392d10
TG
1782int __cpuhp_state_remove_instance(enum cpuhp_state state,
1783 struct hlist_node *node, bool invoke)
1784{
1785 struct cpuhp_step *sp = cpuhp_get_step(state);
1786 int cpu;
1787
1788 BUG_ON(cpuhp_cb_check(state));
1789
1790 if (!sp->multi_instance)
1791 return -EINVAL;
1792
8f553c49 1793 cpus_read_lock();
dc434e05
SAS
1794 mutex_lock(&cpuhp_state_mutex);
1795
cf392d10
TG
1796 if (!invoke || !cpuhp_get_teardown_cb(state))
1797 goto remove;
1798 /*
1799 * Call the teardown callback for each present cpu depending
1800 * on the hotplug state of the cpu. This function is not
1801 * allowed to fail currently!
1802 */
1803 for_each_present_cpu(cpu) {
1804 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
1805 int cpustate = st->state;
1806
1807 if (cpustate >= state)
1808 cpuhp_issue_call(cpu, state, false, node);
1809 }
1810
1811remove:
cf392d10
TG
1812 hlist_del(node);
1813 mutex_unlock(&cpuhp_state_mutex);
8f553c49 1814 cpus_read_unlock();
cf392d10
TG
1815
1816 return 0;
1817}
1818EXPORT_SYMBOL_GPL(__cpuhp_state_remove_instance);
dc434e05 1819
5b7aa87e 1820/**
71def423 1821 * __cpuhp_remove_state_cpuslocked - Remove the callbacks for an hotplug machine state
5b7aa87e
TG
1822 * @state: The state to remove
1823 * @invoke: If true, the teardown function is invoked for cpus where
1824 * cpu state >= @state
1825 *
71def423 1826 * The caller needs to hold cpus read locked while calling this function.
5b7aa87e
TG
1827 * The teardown callback is currently not allowed to fail. Think
1828 * about module removal!
1829 */
71def423 1830void __cpuhp_remove_state_cpuslocked(enum cpuhp_state state, bool invoke)
5b7aa87e 1831{
cf392d10 1832 struct cpuhp_step *sp = cpuhp_get_step(state);
5b7aa87e
TG
1833 int cpu;
1834
1835 BUG_ON(cpuhp_cb_check(state));
1836
71def423 1837 lockdep_assert_cpus_held();
5b7aa87e 1838
dc434e05 1839 mutex_lock(&cpuhp_state_mutex);
cf392d10
TG
1840 if (sp->multi_instance) {
1841 WARN(!hlist_empty(&sp->list),
1842 "Error: Removing state %d which has instances left.\n",
1843 state);
1844 goto remove;
1845 }
1846
a724632c 1847 if (!invoke || !cpuhp_get_teardown_cb(state))
5b7aa87e
TG
1848 goto remove;
1849
1850 /*
1851 * Call the teardown callback for each present cpu depending
1852 * on the hotplug state of the cpu. This function is not
1853 * allowed to fail currently!
1854 */
1855 for_each_present_cpu(cpu) {
1856 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
1857 int cpustate = st->state;
1858
1859 if (cpustate >= state)
cf392d10 1860 cpuhp_issue_call(cpu, state, false, NULL);
5b7aa87e
TG
1861 }
1862remove:
cf392d10 1863 cpuhp_store_callbacks(state, NULL, NULL, NULL, false);
dc434e05 1864 mutex_unlock(&cpuhp_state_mutex);
71def423
SAS
1865}
1866EXPORT_SYMBOL(__cpuhp_remove_state_cpuslocked);
1867
1868void __cpuhp_remove_state(enum cpuhp_state state, bool invoke)
1869{
1870 cpus_read_lock();
1871 __cpuhp_remove_state_cpuslocked(state, invoke);
8f553c49 1872 cpus_read_unlock();
5b7aa87e
TG
1873}
1874EXPORT_SYMBOL(__cpuhp_remove_state);
1875
98f8cdce
TG
1876#if defined(CONFIG_SYSFS) && defined(CONFIG_HOTPLUG_CPU)
1877static ssize_t show_cpuhp_state(struct device *dev,
1878 struct device_attribute *attr, char *buf)
1879{
1880 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, dev->id);
1881
1882 return sprintf(buf, "%d\n", st->state);
1883}
1884static DEVICE_ATTR(state, 0444, show_cpuhp_state, NULL);
1885
757c989b
TG
1886static ssize_t write_cpuhp_target(struct device *dev,
1887 struct device_attribute *attr,
1888 const char *buf, size_t count)
1889{
1890 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, dev->id);
1891 struct cpuhp_step *sp;
1892 int target, ret;
1893
1894 ret = kstrtoint(buf, 10, &target);
1895 if (ret)
1896 return ret;
1897
1898#ifdef CONFIG_CPU_HOTPLUG_STATE_CONTROL
1899 if (target < CPUHP_OFFLINE || target > CPUHP_ONLINE)
1900 return -EINVAL;
1901#else
1902 if (target != CPUHP_OFFLINE && target != CPUHP_ONLINE)
1903 return -EINVAL;
1904#endif
1905
1906 ret = lock_device_hotplug_sysfs();
1907 if (ret)
1908 return ret;
1909
1910 mutex_lock(&cpuhp_state_mutex);
1911 sp = cpuhp_get_step(target);
1912 ret = !sp->name || sp->cant_stop ? -EINVAL : 0;
1913 mutex_unlock(&cpuhp_state_mutex);
1914 if (ret)
40da1b11 1915 goto out;
757c989b
TG
1916
1917 if (st->state < target)
1918 ret = do_cpu_up(dev->id, target);
1919 else
1920 ret = do_cpu_down(dev->id, target);
40da1b11 1921out:
757c989b
TG
1922 unlock_device_hotplug();
1923 return ret ? ret : count;
1924}
1925
98f8cdce
TG
1926static ssize_t show_cpuhp_target(struct device *dev,
1927 struct device_attribute *attr, char *buf)
1928{
1929 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, dev->id);
1930
1931 return sprintf(buf, "%d\n", st->target);
1932}
757c989b 1933static DEVICE_ATTR(target, 0644, show_cpuhp_target, write_cpuhp_target);
98f8cdce 1934
1db49484
PZ
1935
1936static ssize_t write_cpuhp_fail(struct device *dev,
1937 struct device_attribute *attr,
1938 const char *buf, size_t count)
1939{
1940 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, dev->id);
1941 struct cpuhp_step *sp;
1942 int fail, ret;
1943
1944 ret = kstrtoint(buf, 10, &fail);
1945 if (ret)
1946 return ret;
1947
1948 /*
1949 * Cannot fail STARTING/DYING callbacks.
1950 */
1951 if (cpuhp_is_atomic_state(fail))
1952 return -EINVAL;
1953
1954 /*
1955 * Cannot fail anything that doesn't have callbacks.
1956 */
1957 mutex_lock(&cpuhp_state_mutex);
1958 sp = cpuhp_get_step(fail);
1959 if (!sp->startup.single && !sp->teardown.single)
1960 ret = -EINVAL;
1961 mutex_unlock(&cpuhp_state_mutex);
1962 if (ret)
1963 return ret;
1964
1965 st->fail = fail;
1966
1967 return count;
1968}
1969
1970static ssize_t show_cpuhp_fail(struct device *dev,
1971 struct device_attribute *attr, char *buf)
1972{
1973 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, dev->id);
1974
1975 return sprintf(buf, "%d\n", st->fail);
1976}
1977
1978static DEVICE_ATTR(fail, 0644, show_cpuhp_fail, write_cpuhp_fail);
1979
98f8cdce
TG
1980static struct attribute *cpuhp_cpu_attrs[] = {
1981 &dev_attr_state.attr,
1982 &dev_attr_target.attr,
1db49484 1983 &dev_attr_fail.attr,
98f8cdce
TG
1984 NULL
1985};
1986
993647a2 1987static const struct attribute_group cpuhp_cpu_attr_group = {
98f8cdce
TG
1988 .attrs = cpuhp_cpu_attrs,
1989 .name = "hotplug",
1990 NULL
1991};
1992
1993static ssize_t show_cpuhp_states(struct device *dev,
1994 struct device_attribute *attr, char *buf)
1995{
1996 ssize_t cur, res = 0;
1997 int i;
1998
1999 mutex_lock(&cpuhp_state_mutex);
757c989b 2000 for (i = CPUHP_OFFLINE; i <= CPUHP_ONLINE; i++) {
98f8cdce
TG
2001 struct cpuhp_step *sp = cpuhp_get_step(i);
2002
2003 if (sp->name) {
2004 cur = sprintf(buf, "%3d: %s\n", i, sp->name);
2005 buf += cur;
2006 res += cur;
2007 }
2008 }
2009 mutex_unlock(&cpuhp_state_mutex);
2010 return res;
2011}
2012static DEVICE_ATTR(states, 0444, show_cpuhp_states, NULL);
2013
2014static struct attribute *cpuhp_cpu_root_attrs[] = {
2015 &dev_attr_states.attr,
2016 NULL
2017};
2018
993647a2 2019static const struct attribute_group cpuhp_cpu_root_attr_group = {
98f8cdce
TG
2020 .attrs = cpuhp_cpu_root_attrs,
2021 .name = "hotplug",
2022 NULL
2023};
2024
05736e4a
TG
2025#ifdef CONFIG_HOTPLUG_SMT
2026
2027static const char *smt_states[] = {
2028 [CPU_SMT_ENABLED] = "on",
2029 [CPU_SMT_DISABLED] = "off",
2030 [CPU_SMT_FORCE_DISABLED] = "forceoff",
2031 [CPU_SMT_NOT_SUPPORTED] = "notsupported",
2032};
2033
2034static ssize_t
2035show_smt_control(struct device *dev, struct device_attribute *attr, char *buf)
2036{
2037 return snprintf(buf, PAGE_SIZE - 2, "%s\n", smt_states[cpu_smt_control]);
2038}
2039
2040static void cpuhp_offline_cpu_device(unsigned int cpu)
2041{
2042 struct device *dev = get_cpu_device(cpu);
2043
2044 dev->offline = true;
2045 /* Tell user space about the state change */
2046 kobject_uevent(&dev->kobj, KOBJ_OFFLINE);
2047}
2048
215af549
TG
2049static void cpuhp_online_cpu_device(unsigned int cpu)
2050{
2051 struct device *dev = get_cpu_device(cpu);
2052
2053 dev->offline = false;
2054 /* Tell user space about the state change */
2055 kobject_uevent(&dev->kobj, KOBJ_ONLINE);
2056}
2057
05736e4a
TG
2058static int cpuhp_smt_disable(enum cpuhp_smt_control ctrlval)
2059{
2060 int cpu, ret = 0;
2061
2062 cpu_maps_update_begin();
2063 for_each_online_cpu(cpu) {
2064 if (topology_is_primary_thread(cpu))
2065 continue;
2066 ret = cpu_down_maps_locked(cpu, CPUHP_OFFLINE);
2067 if (ret)
2068 break;
2069 /*
2070 * As this needs to hold the cpu maps lock it's impossible
2071 * to call device_offline() because that ends up calling
2072 * cpu_down() which takes cpu maps lock. cpu maps lock
2073 * needs to be held as this might race against in kernel
2074 * abusers of the hotplug machinery (thermal management).
2075 *
2076 * So nothing would update device:offline state. That would
2077 * leave the sysfs entry stale and prevent onlining after
2078 * smt control has been changed to 'off' again. This is
2079 * called under the sysfs hotplug lock, so it is properly
2080 * serialized against the regular offline usage.
2081 */
2082 cpuhp_offline_cpu_device(cpu);
2083 }
34d66caf 2084 if (!ret)
05736e4a
TG
2085 cpu_smt_control = ctrlval;
2086 cpu_maps_update_done();
2087 return ret;
2088}
2089
215af549 2090static int cpuhp_smt_enable(void)
05736e4a 2091{
215af549
TG
2092 int cpu, ret = 0;
2093
05736e4a
TG
2094 cpu_maps_update_begin();
2095 cpu_smt_control = CPU_SMT_ENABLED;
215af549
TG
2096 for_each_present_cpu(cpu) {
2097 /* Skip online CPUs and CPUs on offline nodes */
2098 if (cpu_online(cpu) || !node_online(cpu_to_node(cpu)))
2099 continue;
2100 ret = _cpu_up(cpu, 0, CPUHP_ONLINE);
2101 if (ret)
2102 break;
2103 /* See comment in cpuhp_smt_disable() */
2104 cpuhp_online_cpu_device(cpu);
2105 }
05736e4a 2106 cpu_maps_update_done();
215af549 2107 return ret;
05736e4a
TG
2108}
2109
2110static ssize_t
2111store_smt_control(struct device *dev, struct device_attribute *attr,
2112 const char *buf, size_t count)
2113{
2114 int ctrlval, ret;
2115
2116 if (sysfs_streq(buf, "on"))
2117 ctrlval = CPU_SMT_ENABLED;
2118 else if (sysfs_streq(buf, "off"))
2119 ctrlval = CPU_SMT_DISABLED;
2120 else if (sysfs_streq(buf, "forceoff"))
2121 ctrlval = CPU_SMT_FORCE_DISABLED;
2122 else
2123 return -EINVAL;
2124
2125 if (cpu_smt_control == CPU_SMT_FORCE_DISABLED)
2126 return -EPERM;
2127
2128 if (cpu_smt_control == CPU_SMT_NOT_SUPPORTED)
2129 return -ENODEV;
2130
2131 ret = lock_device_hotplug_sysfs();
2132 if (ret)
2133 return ret;
2134
2135 if (ctrlval != cpu_smt_control) {
2136 switch (ctrlval) {
2137 case CPU_SMT_ENABLED:
215af549 2138 ret = cpuhp_smt_enable();
05736e4a
TG
2139 break;
2140 case CPU_SMT_DISABLED:
2141 case CPU_SMT_FORCE_DISABLED:
2142 ret = cpuhp_smt_disable(ctrlval);
2143 break;
2144 }
2145 }
2146
2147 unlock_device_hotplug();
2148 return ret ? ret : count;
2149}
2150static DEVICE_ATTR(control, 0644, show_smt_control, store_smt_control);
2151
2152static ssize_t
2153show_smt_active(struct device *dev, struct device_attribute *attr, char *buf)
2154{
2155 bool active = topology_max_smt_threads() > 1;
2156
2157 return snprintf(buf, PAGE_SIZE - 2, "%d\n", active);
2158}
2159static DEVICE_ATTR(active, 0444, show_smt_active, NULL);
2160
2161static struct attribute *cpuhp_smt_attrs[] = {
2162 &dev_attr_control.attr,
2163 &dev_attr_active.attr,
2164 NULL
2165};
2166
2167static const struct attribute_group cpuhp_smt_attr_group = {
2168 .attrs = cpuhp_smt_attrs,
2169 .name = "smt",
2170 NULL
2171};
2172
2173static int __init cpu_smt_state_init(void)
2174{
05736e4a
TG
2175 return sysfs_create_group(&cpu_subsys.dev_root->kobj,
2176 &cpuhp_smt_attr_group);
2177}
2178
2179#else
2180static inline int cpu_smt_state_init(void) { return 0; }
2181#endif
2182
98f8cdce
TG
2183static int __init cpuhp_sysfs_init(void)
2184{
2185 int cpu, ret;
2186
05736e4a
TG
2187 ret = cpu_smt_state_init();
2188 if (ret)
2189 return ret;
2190
98f8cdce
TG
2191 ret = sysfs_create_group(&cpu_subsys.dev_root->kobj,
2192 &cpuhp_cpu_root_attr_group);
2193 if (ret)
2194 return ret;
2195
2196 for_each_possible_cpu(cpu) {
2197 struct device *dev = get_cpu_device(cpu);
2198
2199 if (!dev)
2200 continue;
2201 ret = sysfs_create_group(&dev->kobj, &cpuhp_cpu_attr_group);
2202 if (ret)
2203 return ret;
2204 }
2205 return 0;
2206}
2207device_initcall(cpuhp_sysfs_init);
2208#endif
2209
e56b3bc7
LT
2210/*
2211 * cpu_bit_bitmap[] is a special, "compressed" data structure that
2212 * represents all NR_CPUS bits binary values of 1<<nr.
2213 *
e0b582ec 2214 * It is used by cpumask_of() to get a constant address to a CPU
e56b3bc7
LT
2215 * mask value that has a single bit set only.
2216 */
b8d317d1 2217
e56b3bc7 2218/* cpu_bit_bitmap[0] is empty - so we can back into it */
4d51985e 2219#define MASK_DECLARE_1(x) [x+1][0] = (1UL << (x))
e56b3bc7
LT
2220#define MASK_DECLARE_2(x) MASK_DECLARE_1(x), MASK_DECLARE_1(x+1)
2221#define MASK_DECLARE_4(x) MASK_DECLARE_2(x), MASK_DECLARE_2(x+2)
2222#define MASK_DECLARE_8(x) MASK_DECLARE_4(x), MASK_DECLARE_4(x+4)
b8d317d1 2223
e56b3bc7
LT
2224const unsigned long cpu_bit_bitmap[BITS_PER_LONG+1][BITS_TO_LONGS(NR_CPUS)] = {
2225
2226 MASK_DECLARE_8(0), MASK_DECLARE_8(8),
2227 MASK_DECLARE_8(16), MASK_DECLARE_8(24),
2228#if BITS_PER_LONG > 32
2229 MASK_DECLARE_8(32), MASK_DECLARE_8(40),
2230 MASK_DECLARE_8(48), MASK_DECLARE_8(56),
b8d317d1
MT
2231#endif
2232};
e56b3bc7 2233EXPORT_SYMBOL_GPL(cpu_bit_bitmap);
2d3854a3
RR
2234
2235const DECLARE_BITMAP(cpu_all_bits, NR_CPUS) = CPU_BITS_ALL;
2236EXPORT_SYMBOL(cpu_all_bits);
b3199c02
RR
2237
2238#ifdef CONFIG_INIT_ALL_POSSIBLE
4b804c85 2239struct cpumask __cpu_possible_mask __read_mostly
c4c54dd1 2240 = {CPU_BITS_ALL};
b3199c02 2241#else
4b804c85 2242struct cpumask __cpu_possible_mask __read_mostly;
b3199c02 2243#endif
4b804c85 2244EXPORT_SYMBOL(__cpu_possible_mask);
b3199c02 2245
4b804c85
RV
2246struct cpumask __cpu_online_mask __read_mostly;
2247EXPORT_SYMBOL(__cpu_online_mask);
b3199c02 2248
4b804c85
RV
2249struct cpumask __cpu_present_mask __read_mostly;
2250EXPORT_SYMBOL(__cpu_present_mask);
b3199c02 2251
4b804c85
RV
2252struct cpumask __cpu_active_mask __read_mostly;
2253EXPORT_SYMBOL(__cpu_active_mask);
3fa41520 2254
3fa41520
RR
2255void init_cpu_present(const struct cpumask *src)
2256{
c4c54dd1 2257 cpumask_copy(&__cpu_present_mask, src);
3fa41520
RR
2258}
2259
2260void init_cpu_possible(const struct cpumask *src)
2261{
c4c54dd1 2262 cpumask_copy(&__cpu_possible_mask, src);
3fa41520
RR
2263}
2264
2265void init_cpu_online(const struct cpumask *src)
2266{
c4c54dd1 2267 cpumask_copy(&__cpu_online_mask, src);
3fa41520 2268}
cff7d378
TG
2269
2270/*
2271 * Activate the first processor.
2272 */
2273void __init boot_cpu_init(void)
2274{
2275 int cpu = smp_processor_id();
2276
2277 /* Mark the boot cpu "present", "online" etc for SMP and UP case */
2278 set_cpu_online(cpu, true);
2279 set_cpu_active(cpu, true);
2280 set_cpu_present(cpu, true);
2281 set_cpu_possible(cpu, true);
8ce371f9
PZ
2282
2283#ifdef CONFIG_SMP
2284 __boot_cpu_id = cpu;
2285#endif
cff7d378
TG
2286}
2287
2288/*
2289 * Must be called _AFTER_ setting up the per_cpu areas
2290 */
b5b1404d 2291void __init boot_cpu_hotplug_init(void)
cff7d378 2292{
269777aa 2293#ifdef CONFIG_SMP
0cc3cd21 2294 this_cpu_write(cpuhp_state.booted_once, true);
269777aa 2295#endif
0cc3cd21 2296 this_cpu_write(cpuhp_state.state, CPUHP_ONLINE);
cff7d378 2297}