]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/blame - kernel/cpu.c
EDAC, i5000: Remove set but not used local variables
[mirror_ubuntu-eoan-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>
1da177e4
LT
13#include <linux/unistd.h>
14#include <linux/cpu.h>
cb79295e
AV
15#include <linux/oom.h>
16#include <linux/rcupdate.h>
9984de1a 17#include <linux/export.h>
e4cc2f87 18#include <linux/bug.h>
1da177e4
LT
19#include <linux/kthread.h>
20#include <linux/stop_machine.h>
81615b62 21#include <linux/mutex.h>
5a0e3ad6 22#include <linux/gfp.h>
79cfbdfa 23#include <linux/suspend.h>
a19423b9 24#include <linux/lockdep.h>
345527b1 25#include <linux/tick.h>
a8994181 26#include <linux/irq.h>
941154bd 27#include <linux/nmi.h>
4cb28ced 28#include <linux/smpboot.h>
e6d4989a 29#include <linux/relay.h>
6731d4f1 30#include <linux/slab.h>
fc8dffd3 31#include <linux/percpu-rwsem.h>
cff7d378 32
bb3632c6 33#include <trace/events/power.h>
cff7d378
TG
34#define CREATE_TRACE_POINTS
35#include <trace/events/cpuhp.h>
1da177e4 36
38498a67
TG
37#include "smpboot.h"
38
cff7d378
TG
39/**
40 * cpuhp_cpu_state - Per cpu hotplug state storage
41 * @state: The current cpu state
42 * @target: The target state
4cb28ced
TG
43 * @thread: Pointer to the hotplug thread
44 * @should_run: Thread should execute
3b9d6da6 45 * @rollback: Perform a rollback
a724632c
TG
46 * @single: Single callback invocation
47 * @bringup: Single callback bringup or teardown selector
48 * @cb_state: The state for a single callback (install/uninstall)
4cb28ced 49 * @result: Result of the operation
5ebe7742
PZ
50 * @done_up: Signal completion to the issuer of the task for cpu-up
51 * @done_down: Signal completion to the issuer of the task for cpu-down
cff7d378
TG
52 */
53struct cpuhp_cpu_state {
54 enum cpuhp_state state;
55 enum cpuhp_state target;
1db49484 56 enum cpuhp_state fail;
4cb28ced
TG
57#ifdef CONFIG_SMP
58 struct task_struct *thread;
59 bool should_run;
3b9d6da6 60 bool rollback;
a724632c
TG
61 bool single;
62 bool bringup;
0cc3cd21 63 bool booted_once;
cf392d10 64 struct hlist_node *node;
4dddfb5f 65 struct hlist_node *last;
4cb28ced 66 enum cpuhp_state cb_state;
4cb28ced 67 int result;
5ebe7742
PZ
68 struct completion done_up;
69 struct completion done_down;
4cb28ced 70#endif
cff7d378
TG
71};
72
1db49484
PZ
73static DEFINE_PER_CPU(struct cpuhp_cpu_state, cpuhp_state) = {
74 .fail = CPUHP_INVALID,
75};
cff7d378 76
49dfe2a6 77#if defined(CONFIG_LOCKDEP) && defined(CONFIG_SMP)
5f4b55e1
PZ
78static struct lockdep_map cpuhp_state_up_map =
79 STATIC_LOCKDEP_MAP_INIT("cpuhp_state-up", &cpuhp_state_up_map);
80static struct lockdep_map cpuhp_state_down_map =
81 STATIC_LOCKDEP_MAP_INIT("cpuhp_state-down", &cpuhp_state_down_map);
82
83
76dc6c09 84static inline void cpuhp_lock_acquire(bool bringup)
5f4b55e1
PZ
85{
86 lock_map_acquire(bringup ? &cpuhp_state_up_map : &cpuhp_state_down_map);
87}
88
76dc6c09 89static inline void cpuhp_lock_release(bool bringup)
5f4b55e1
PZ
90{
91 lock_map_release(bringup ? &cpuhp_state_up_map : &cpuhp_state_down_map);
92}
93#else
94
76dc6c09
MM
95static inline void cpuhp_lock_acquire(bool bringup) { }
96static inline void cpuhp_lock_release(bool bringup) { }
5f4b55e1 97
49dfe2a6
TG
98#endif
99
cff7d378
TG
100/**
101 * cpuhp_step - Hotplug state machine step
102 * @name: Name of the step
103 * @startup: Startup function of the step
104 * @teardown: Teardown function of the step
757c989b 105 * @cant_stop: Bringup/teardown can't be stopped at this step
cff7d378
TG
106 */
107struct cpuhp_step {
cf392d10
TG
108 const char *name;
109 union {
3c1627e9
TG
110 int (*single)(unsigned int cpu);
111 int (*multi)(unsigned int cpu,
112 struct hlist_node *node);
113 } startup;
cf392d10 114 union {
3c1627e9
TG
115 int (*single)(unsigned int cpu);
116 int (*multi)(unsigned int cpu,
117 struct hlist_node *node);
118 } teardown;
cf392d10 119 struct hlist_head list;
cf392d10
TG
120 bool cant_stop;
121 bool multi_instance;
cff7d378
TG
122};
123
98f8cdce 124static DEFINE_MUTEX(cpuhp_state_mutex);
17a2f1ce 125static struct cpuhp_step cpuhp_hp_states[];
cff7d378 126
a724632c
TG
127static struct cpuhp_step *cpuhp_get_step(enum cpuhp_state state)
128{
17a2f1ce 129 return cpuhp_hp_states + state;
a724632c
TG
130}
131
cff7d378
TG
132/**
133 * cpuhp_invoke_callback _ Invoke the callbacks for a given state
134 * @cpu: The cpu for which the callback should be invoked
96abb968 135 * @state: The state to do callbacks for
a724632c 136 * @bringup: True if the bringup callback should be invoked
96abb968
PZ
137 * @node: For multi-instance, do a single entry callback for install/remove
138 * @lastp: For multi-instance rollback, remember how far we got
cff7d378 139 *
cf392d10 140 * Called from cpu hotplug and from the state register machinery.
cff7d378 141 */
a724632c 142static int cpuhp_invoke_callback(unsigned int cpu, enum cpuhp_state state,
96abb968
PZ
143 bool bringup, struct hlist_node *node,
144 struct hlist_node **lastp)
cff7d378
TG
145{
146 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
a724632c 147 struct cpuhp_step *step = cpuhp_get_step(state);
cf392d10
TG
148 int (*cbm)(unsigned int cpu, struct hlist_node *node);
149 int (*cb)(unsigned int cpu);
150 int ret, cnt;
151
1db49484
PZ
152 if (st->fail == state) {
153 st->fail = CPUHP_INVALID;
154
155 if (!(bringup ? step->startup.single : step->teardown.single))
156 return 0;
157
158 return -EAGAIN;
159 }
160
cf392d10 161 if (!step->multi_instance) {
96abb968 162 WARN_ON_ONCE(lastp && *lastp);
3c1627e9 163 cb = bringup ? step->startup.single : step->teardown.single;
cf392d10
TG
164 if (!cb)
165 return 0;
a724632c 166 trace_cpuhp_enter(cpu, st->target, state, cb);
cff7d378 167 ret = cb(cpu);
a724632c 168 trace_cpuhp_exit(cpu, st->state, state, ret);
cf392d10
TG
169 return ret;
170 }
3c1627e9 171 cbm = bringup ? step->startup.multi : step->teardown.multi;
cf392d10
TG
172 if (!cbm)
173 return 0;
174
175 /* Single invocation for instance add/remove */
176 if (node) {
96abb968 177 WARN_ON_ONCE(lastp && *lastp);
cf392d10
TG
178 trace_cpuhp_multi_enter(cpu, st->target, state, cbm, node);
179 ret = cbm(cpu, node);
180 trace_cpuhp_exit(cpu, st->state, state, ret);
181 return ret;
182 }
183
184 /* State transition. Invoke on all instances */
185 cnt = 0;
186 hlist_for_each(node, &step->list) {
96abb968
PZ
187 if (lastp && node == *lastp)
188 break;
189
cf392d10
TG
190 trace_cpuhp_multi_enter(cpu, st->target, state, cbm, node);
191 ret = cbm(cpu, node);
192 trace_cpuhp_exit(cpu, st->state, state, ret);
96abb968
PZ
193 if (ret) {
194 if (!lastp)
195 goto err;
196
197 *lastp = node;
198 return ret;
199 }
cf392d10
TG
200 cnt++;
201 }
96abb968
PZ
202 if (lastp)
203 *lastp = NULL;
cf392d10
TG
204 return 0;
205err:
206 /* Rollback the instances if one failed */
3c1627e9 207 cbm = !bringup ? step->startup.multi : step->teardown.multi;
cf392d10
TG
208 if (!cbm)
209 return ret;
210
211 hlist_for_each(node, &step->list) {
212 if (!cnt--)
213 break;
724a8688
PZ
214
215 trace_cpuhp_multi_enter(cpu, st->target, state, cbm, node);
216 ret = cbm(cpu, node);
217 trace_cpuhp_exit(cpu, st->state, state, ret);
218 /*
219 * Rollback must not fail,
220 */
221 WARN_ON_ONCE(ret);
cff7d378
TG
222 }
223 return ret;
224}
225
98a79d6a 226#ifdef CONFIG_SMP
fcb3029a
AB
227static bool cpuhp_is_ap_state(enum cpuhp_state state)
228{
229 /*
230 * The extra check for CPUHP_TEARDOWN_CPU is only for documentation
231 * purposes as that state is handled explicitly in cpu_down.
232 */
233 return state > CPUHP_BRINGUP_CPU && state != CPUHP_TEARDOWN_CPU;
234}
235
5ebe7742
PZ
236static inline void wait_for_ap_thread(struct cpuhp_cpu_state *st, bool bringup)
237{
238 struct completion *done = bringup ? &st->done_up : &st->done_down;
239 wait_for_completion(done);
240}
241
242static inline void complete_ap_thread(struct cpuhp_cpu_state *st, bool bringup)
243{
244 struct completion *done = bringup ? &st->done_up : &st->done_down;
245 complete(done);
246}
247
248/*
249 * The former STARTING/DYING states, ran with IRQs disabled and must not fail.
250 */
251static bool cpuhp_is_atomic_state(enum cpuhp_state state)
252{
253 return CPUHP_AP_IDLE_DEAD <= state && state < CPUHP_AP_ONLINE;
254}
255
b3199c02 256/* Serializes the updates to cpu_online_mask, cpu_present_mask */
aa953877 257static DEFINE_MUTEX(cpu_add_remove_lock);
090e77c3
TG
258bool cpuhp_tasks_frozen;
259EXPORT_SYMBOL_GPL(cpuhp_tasks_frozen);
1da177e4 260
79a6cdeb 261/*
93ae4f97
SB
262 * The following two APIs (cpu_maps_update_begin/done) must be used when
263 * attempting to serialize the updates to cpu_online_mask & cpu_present_mask.
79a6cdeb
LJ
264 */
265void cpu_maps_update_begin(void)
266{
267 mutex_lock(&cpu_add_remove_lock);
268}
269
270void cpu_maps_update_done(void)
271{
272 mutex_unlock(&cpu_add_remove_lock);
273}
1da177e4 274
fc8dffd3
TG
275/*
276 * If set, cpu_up and cpu_down will return -EBUSY and do nothing.
e3920fb4
RW
277 * Should always be manipulated under cpu_add_remove_lock
278 */
279static int cpu_hotplug_disabled;
280
79a6cdeb
LJ
281#ifdef CONFIG_HOTPLUG_CPU
282
fc8dffd3 283DEFINE_STATIC_PERCPU_RWSEM(cpu_hotplug_lock);
a19423b9 284
8f553c49 285void cpus_read_lock(void)
a9d9baa1 286{
fc8dffd3 287 percpu_down_read(&cpu_hotplug_lock);
a9d9baa1 288}
8f553c49 289EXPORT_SYMBOL_GPL(cpus_read_lock);
90d45d17 290
6f4ceee9
WL
291int cpus_read_trylock(void)
292{
293 return percpu_down_read_trylock(&cpu_hotplug_lock);
294}
295EXPORT_SYMBOL_GPL(cpus_read_trylock);
296
8f553c49 297void cpus_read_unlock(void)
a9d9baa1 298{
fc8dffd3 299 percpu_up_read(&cpu_hotplug_lock);
a9d9baa1 300}
8f553c49 301EXPORT_SYMBOL_GPL(cpus_read_unlock);
a9d9baa1 302
8f553c49 303void cpus_write_lock(void)
d221938c 304{
fc8dffd3 305 percpu_down_write(&cpu_hotplug_lock);
d221938c 306}
87af9e7f 307
8f553c49 308void cpus_write_unlock(void)
d221938c 309{
fc8dffd3 310 percpu_up_write(&cpu_hotplug_lock);
d221938c
GS
311}
312
fc8dffd3 313void lockdep_assert_cpus_held(void)
d221938c 314{
fc8dffd3 315 percpu_rwsem_assert_held(&cpu_hotplug_lock);
d221938c 316}
79a6cdeb 317
cb92173d
PZ
318static void lockdep_acquire_cpus_lock(void)
319{
320 rwsem_acquire(&cpu_hotplug_lock.rw_sem.dep_map, 0, 0, _THIS_IP_);
321}
322
323static void lockdep_release_cpus_lock(void)
324{
325 rwsem_release(&cpu_hotplug_lock.rw_sem.dep_map, 1, _THIS_IP_);
326}
327
16e53dbf
SB
328/*
329 * Wait for currently running CPU hotplug operations to complete (if any) and
330 * disable future CPU hotplug (from sysfs). The 'cpu_add_remove_lock' protects
331 * the 'cpu_hotplug_disabled' flag. The same lock is also acquired by the
332 * hotplug path before performing hotplug operations. So acquiring that lock
333 * guarantees mutual exclusion from any currently running hotplug operations.
334 */
335void cpu_hotplug_disable(void)
336{
337 cpu_maps_update_begin();
89af7ba5 338 cpu_hotplug_disabled++;
16e53dbf
SB
339 cpu_maps_update_done();
340}
32145c46 341EXPORT_SYMBOL_GPL(cpu_hotplug_disable);
16e53dbf 342
01b41159
LW
343static void __cpu_hotplug_enable(void)
344{
345 if (WARN_ONCE(!cpu_hotplug_disabled, "Unbalanced cpu hotplug enable\n"))
346 return;
347 cpu_hotplug_disabled--;
348}
349
16e53dbf
SB
350void cpu_hotplug_enable(void)
351{
352 cpu_maps_update_begin();
01b41159 353 __cpu_hotplug_enable();
16e53dbf
SB
354 cpu_maps_update_done();
355}
32145c46 356EXPORT_SYMBOL_GPL(cpu_hotplug_enable);
cb92173d
PZ
357
358#else
359
360static void lockdep_acquire_cpus_lock(void)
361{
362}
363
364static void lockdep_release_cpus_lock(void)
365{
366}
367
b9d10be7 368#endif /* CONFIG_HOTPLUG_CPU */
79a6cdeb 369
0cc3cd21
TG
370#ifdef CONFIG_HOTPLUG_SMT
371enum cpuhp_smt_control cpu_smt_control __read_mostly = CPU_SMT_ENABLED;
26acfb66 372EXPORT_SYMBOL_GPL(cpu_smt_control);
0cc3cd21 373
bc2d8d26
TG
374static bool cpu_smt_available __read_mostly;
375
8e1b706b 376void __init cpu_smt_disable(bool force)
0cc3cd21 377{
8e1b706b
JK
378 if (cpu_smt_control == CPU_SMT_FORCE_DISABLED ||
379 cpu_smt_control == CPU_SMT_NOT_SUPPORTED)
380 return;
381
382 if (force) {
0cc3cd21
TG
383 pr_info("SMT: Force disabled\n");
384 cpu_smt_control = CPU_SMT_FORCE_DISABLED;
8e1b706b 385 } else {
d0e7d144 386 pr_info("SMT: disabled\n");
8e1b706b 387 cpu_smt_control = CPU_SMT_DISABLED;
0cc3cd21 388 }
8e1b706b
JK
389}
390
fee0aede
TG
391/*
392 * The decision whether SMT is supported can only be done after the full
bc2d8d26
TG
393 * CPU identification. Called from architecture code before non boot CPUs
394 * are brought up.
fee0aede 395 */
bc2d8d26 396void __init cpu_smt_check_topology_early(void)
fee0aede
TG
397{
398 if (!topology_smt_supported())
399 cpu_smt_control = CPU_SMT_NOT_SUPPORTED;
400}
401
bc2d8d26
TG
402/*
403 * If SMT was disabled by BIOS, detect it here, after the CPUs have been
404 * brought online. This ensures the smt/l1tf sysfs entries are consistent
405 * with reality. cpu_smt_available is set to true during the bringup of non
406 * boot CPUs when a SMT sibling is detected. Note, this may overwrite
407 * cpu_smt_control's previous setting.
408 */
409void __init cpu_smt_check_topology(void)
410{
411 if (!cpu_smt_available)
412 cpu_smt_control = CPU_SMT_NOT_SUPPORTED;
413}
414
8e1b706b
JK
415static int __init smt_cmdline_disable(char *str)
416{
417 cpu_smt_disable(str && !strcmp(str, "force"));
0cc3cd21
TG
418 return 0;
419}
420early_param("nosmt", smt_cmdline_disable);
421
422static inline bool cpu_smt_allowed(unsigned int cpu)
423{
bc2d8d26 424 if (topology_is_primary_thread(cpu))
0cc3cd21
TG
425 return true;
426
bc2d8d26
TG
427 /*
428 * If the CPU is not a 'primary' thread and the booted_once bit is
429 * set then the processor has SMT support. Store this information
430 * for the late check of SMT support in cpu_smt_check_topology().
431 */
432 if (per_cpu(cpuhp_state, cpu).booted_once)
433 cpu_smt_available = true;
434
435 if (cpu_smt_control == CPU_SMT_ENABLED)
0cc3cd21
TG
436 return true;
437
438 /*
439 * On x86 it's required to boot all logical CPUs at least once so
440 * that the init code can get a chance to set CR4.MCE on each
441 * CPU. Otherwise, a broadacasted MCE observing CR4.MCE=0b on any
442 * core will shutdown the machine.
443 */
444 return !per_cpu(cpuhp_state, cpu).booted_once;
445}
446#else
447static inline bool cpu_smt_allowed(unsigned int cpu) { return true; }
448#endif
449
4dddfb5f
PZ
450static inline enum cpuhp_state
451cpuhp_set_state(struct cpuhp_cpu_state *st, enum cpuhp_state target)
452{
453 enum cpuhp_state prev_state = st->state;
454
455 st->rollback = false;
456 st->last = NULL;
457
458 st->target = target;
459 st->single = false;
460 st->bringup = st->state < target;
461
462 return prev_state;
463}
464
465static inline void
466cpuhp_reset_state(struct cpuhp_cpu_state *st, enum cpuhp_state prev_state)
467{
468 st->rollback = true;
469
470 /*
471 * If we have st->last we need to undo partial multi_instance of this
472 * state first. Otherwise start undo at the previous state.
473 */
474 if (!st->last) {
475 if (st->bringup)
476 st->state--;
477 else
478 st->state++;
479 }
480
481 st->target = prev_state;
482 st->bringup = !st->bringup;
483}
484
485/* Regular hotplug invocation of the AP hotplug thread */
486static void __cpuhp_kick_ap(struct cpuhp_cpu_state *st)
487{
488 if (!st->single && st->state == st->target)
489 return;
490
491 st->result = 0;
492 /*
493 * Make sure the above stores are visible before should_run becomes
494 * true. Paired with the mb() above in cpuhp_thread_fun()
495 */
496 smp_mb();
497 st->should_run = true;
498 wake_up_process(st->thread);
5ebe7742 499 wait_for_ap_thread(st, st->bringup);
4dddfb5f
PZ
500}
501
502static int cpuhp_kick_ap(struct cpuhp_cpu_state *st, enum cpuhp_state target)
503{
504 enum cpuhp_state prev_state;
505 int ret;
506
507 prev_state = cpuhp_set_state(st, target);
508 __cpuhp_kick_ap(st);
509 if ((ret = st->result)) {
510 cpuhp_reset_state(st, prev_state);
511 __cpuhp_kick_ap(st);
512 }
513
514 return ret;
515}
9cd4f1a4 516
8df3e07e
TG
517static int bringup_wait_for_ap(unsigned int cpu)
518{
519 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
520
9cd4f1a4 521 /* Wait for the CPU to reach CPUHP_AP_ONLINE_IDLE */
5ebe7742 522 wait_for_ap_thread(st, true);
dea1d0f5
TG
523 if (WARN_ON_ONCE((!cpu_online(cpu))))
524 return -ECANCELED;
9cd4f1a4
TG
525
526 /* Unpark the stopper thread and the hotplug thread of the target cpu */
527 stop_machine_unpark(cpu);
528 kthread_unpark(st->thread);
529
0cc3cd21
TG
530 /*
531 * SMT soft disabling on X86 requires to bring the CPU out of the
532 * BIOS 'wait for SIPI' state in order to set the CR4.MCE bit. The
533 * CPU marked itself as booted_once in cpu_notify_starting() so the
534 * cpu_smt_allowed() check will now return false if this is not the
535 * primary sibling.
536 */
537 if (!cpu_smt_allowed(cpu))
538 return -ECANCELED;
539
4dddfb5f
PZ
540 if (st->target <= CPUHP_AP_ONLINE_IDLE)
541 return 0;
542
543 return cpuhp_kick_ap(st, st->target);
8df3e07e
TG
544}
545
ba997462
TG
546static int bringup_cpu(unsigned int cpu)
547{
548 struct task_struct *idle = idle_thread_get(cpu);
549 int ret;
550
aa877175
BO
551 /*
552 * Some architectures have to walk the irq descriptors to
553 * setup the vector space for the cpu which comes online.
554 * Prevent irq alloc/free across the bringup.
555 */
556 irq_lock_sparse();
557
ba997462
TG
558 /* Arch-specific enabling code. */
559 ret = __cpu_up(cpu, idle);
aa877175 560 irq_unlock_sparse();
530e9b76 561 if (ret)
ba997462 562 return ret;
9cd4f1a4 563 return bringup_wait_for_ap(cpu);
ba997462
TG
564}
565
2e1a3483
TG
566/*
567 * Hotplug state machine related functions
568 */
2e1a3483 569
a724632c 570static void undo_cpu_up(unsigned int cpu, struct cpuhp_cpu_state *st)
2e1a3483 571{
6fb86d97
MO
572 for (st->state--; st->state > st->target; st->state--)
573 cpuhp_invoke_callback(cpu, st->state, false, NULL, NULL);
2e1a3483
TG
574}
575
576static int cpuhp_up_callbacks(unsigned int cpu, struct cpuhp_cpu_state *st,
a724632c 577 enum cpuhp_state target)
2e1a3483
TG
578{
579 enum cpuhp_state prev_state = st->state;
580 int ret = 0;
581
582 while (st->state < target) {
2e1a3483 583 st->state++;
96abb968 584 ret = cpuhp_invoke_callback(cpu, st->state, true, NULL, NULL);
2e1a3483
TG
585 if (ret) {
586 st->target = prev_state;
a724632c 587 undo_cpu_up(cpu, st);
2e1a3483
TG
588 break;
589 }
590 }
591 return ret;
592}
593
4cb28ced
TG
594/*
595 * The cpu hotplug threads manage the bringup and teardown of the cpus
596 */
597static void cpuhp_create(unsigned int cpu)
598{
599 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
600
5ebe7742
PZ
601 init_completion(&st->done_up);
602 init_completion(&st->done_down);
4cb28ced
TG
603}
604
605static int cpuhp_should_run(unsigned int cpu)
606{
607 struct cpuhp_cpu_state *st = this_cpu_ptr(&cpuhp_state);
608
609 return st->should_run;
610}
611
4cb28ced
TG
612/*
613 * Execute teardown/startup callbacks on the plugged cpu. Also used to invoke
614 * callbacks when a state gets [un]installed at runtime.
4dddfb5f
PZ
615 *
616 * Each invocation of this function by the smpboot thread does a single AP
617 * state callback.
618 *
619 * It has 3 modes of operation:
620 * - single: runs st->cb_state
621 * - up: runs ++st->state, while st->state < st->target
622 * - down: runs st->state--, while st->state > st->target
623 *
624 * When complete or on error, should_run is cleared and the completion is fired.
4cb28ced
TG
625 */
626static void cpuhp_thread_fun(unsigned int cpu)
627{
628 struct cpuhp_cpu_state *st = this_cpu_ptr(&cpuhp_state);
4dddfb5f
PZ
629 bool bringup = st->bringup;
630 enum cpuhp_state state;
4cb28ced 631
f8b7530a
NU
632 if (WARN_ON_ONCE(!st->should_run))
633 return;
634
4cb28ced 635 /*
4dddfb5f
PZ
636 * ACQUIRE for the cpuhp_should_run() load of ->should_run. Ensures
637 * that if we see ->should_run we also see the rest of the state.
4cb28ced
TG
638 */
639 smp_mb();
4cb28ced 640
cb92173d
PZ
641 /*
642 * The BP holds the hotplug lock, but we're now running on the AP,
643 * ensure that anybody asserting the lock is held, will actually find
644 * it so.
645 */
646 lockdep_acquire_cpus_lock();
5f4b55e1 647 cpuhp_lock_acquire(bringup);
4dddfb5f 648
a724632c 649 if (st->single) {
4dddfb5f
PZ
650 state = st->cb_state;
651 st->should_run = false;
652 } else {
653 if (bringup) {
654 st->state++;
655 state = st->state;
656 st->should_run = (st->state < st->target);
657 WARN_ON_ONCE(st->state > st->target);
4cb28ced 658 } else {
4dddfb5f
PZ
659 state = st->state;
660 st->state--;
661 st->should_run = (st->state > st->target);
662 WARN_ON_ONCE(st->state < st->target);
4cb28ced 663 }
4dddfb5f
PZ
664 }
665
666 WARN_ON_ONCE(!cpuhp_is_ap_state(state));
667
4dddfb5f
PZ
668 if (cpuhp_is_atomic_state(state)) {
669 local_irq_disable();
670 st->result = cpuhp_invoke_callback(cpu, state, bringup, st->node, &st->last);
671 local_irq_enable();
3b9d6da6 672
4dddfb5f
PZ
673 /*
674 * STARTING/DYING must not fail!
675 */
676 WARN_ON_ONCE(st->result);
4cb28ced 677 } else {
4dddfb5f
PZ
678 st->result = cpuhp_invoke_callback(cpu, state, bringup, st->node, &st->last);
679 }
680
681 if (st->result) {
682 /*
683 * If we fail on a rollback, we're up a creek without no
684 * paddle, no way forward, no way back. We loose, thanks for
685 * playing.
686 */
687 WARN_ON_ONCE(st->rollback);
688 st->should_run = false;
4cb28ced 689 }
4dddfb5f 690
5f4b55e1 691 cpuhp_lock_release(bringup);
cb92173d 692 lockdep_release_cpus_lock();
4dddfb5f
PZ
693
694 if (!st->should_run)
5ebe7742 695 complete_ap_thread(st, bringup);
4cb28ced
TG
696}
697
698/* Invoke a single callback on a remote cpu */
a724632c 699static int
cf392d10
TG
700cpuhp_invoke_ap_callback(int cpu, enum cpuhp_state state, bool bringup,
701 struct hlist_node *node)
4cb28ced
TG
702{
703 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
4dddfb5f 704 int ret;
4cb28ced
TG
705
706 if (!cpu_online(cpu))
707 return 0;
708
5f4b55e1
PZ
709 cpuhp_lock_acquire(false);
710 cpuhp_lock_release(false);
711
712 cpuhp_lock_acquire(true);
713 cpuhp_lock_release(true);
49dfe2a6 714
6a4e2451
TG
715 /*
716 * If we are up and running, use the hotplug thread. For early calls
717 * we invoke the thread function directly.
718 */
719 if (!st->thread)
96abb968 720 return cpuhp_invoke_callback(cpu, state, bringup, node, NULL);
6a4e2451 721
4dddfb5f
PZ
722 st->rollback = false;
723 st->last = NULL;
724
725 st->node = node;
726 st->bringup = bringup;
4cb28ced 727 st->cb_state = state;
a724632c 728 st->single = true;
a724632c 729
4dddfb5f 730 __cpuhp_kick_ap(st);
4cb28ced 731
4cb28ced 732 /*
4dddfb5f 733 * If we failed and did a partial, do a rollback.
4cb28ced 734 */
4dddfb5f
PZ
735 if ((ret = st->result) && st->last) {
736 st->rollback = true;
737 st->bringup = !bringup;
738
739 __cpuhp_kick_ap(st);
740 }
741
1f7c70d6
TG
742 /*
743 * Clean up the leftovers so the next hotplug operation wont use stale
744 * data.
745 */
746 st->node = st->last = NULL;
4dddfb5f 747 return ret;
1cf4f629
TG
748}
749
750static int cpuhp_kick_ap_work(unsigned int cpu)
751{
752 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
4dddfb5f
PZ
753 enum cpuhp_state prev_state = st->state;
754 int ret;
1cf4f629 755
5f4b55e1
PZ
756 cpuhp_lock_acquire(false);
757 cpuhp_lock_release(false);
758
759 cpuhp_lock_acquire(true);
760 cpuhp_lock_release(true);
4dddfb5f
PZ
761
762 trace_cpuhp_enter(cpu, st->target, prev_state, cpuhp_kick_ap_work);
763 ret = cpuhp_kick_ap(st, st->target);
764 trace_cpuhp_exit(cpu, st->state, prev_state, ret);
765
766 return ret;
4cb28ced
TG
767}
768
769static struct smp_hotplug_thread cpuhp_threads = {
770 .store = &cpuhp_state.thread,
771 .create = &cpuhp_create,
772 .thread_should_run = cpuhp_should_run,
773 .thread_fn = cpuhp_thread_fun,
774 .thread_comm = "cpuhp/%u",
775 .selfparking = true,
776};
777
778void __init cpuhp_threads_init(void)
779{
780 BUG_ON(smpboot_register_percpu_thread(&cpuhp_threads));
781 kthread_unpark(this_cpu_read(cpuhp_state.thread));
782}
783
777c6e0d 784#ifdef CONFIG_HOTPLUG_CPU
e4cc2f87
AV
785/**
786 * clear_tasks_mm_cpumask - Safely clear tasks' mm_cpumask for a CPU
787 * @cpu: a CPU id
788 *
789 * This function walks all processes, finds a valid mm struct for each one and
790 * then clears a corresponding bit in mm's cpumask. While this all sounds
791 * trivial, there are various non-obvious corner cases, which this function
792 * tries to solve in a safe manner.
793 *
794 * Also note that the function uses a somewhat relaxed locking scheme, so it may
795 * be called only for an already offlined CPU.
796 */
cb79295e
AV
797void clear_tasks_mm_cpumask(int cpu)
798{
799 struct task_struct *p;
800
801 /*
802 * This function is called after the cpu is taken down and marked
803 * offline, so its not like new tasks will ever get this cpu set in
804 * their mm mask. -- Peter Zijlstra
805 * Thus, we may use rcu_read_lock() here, instead of grabbing
806 * full-fledged tasklist_lock.
807 */
e4cc2f87 808 WARN_ON(cpu_online(cpu));
cb79295e
AV
809 rcu_read_lock();
810 for_each_process(p) {
811 struct task_struct *t;
812
e4cc2f87
AV
813 /*
814 * Main thread might exit, but other threads may still have
815 * a valid mm. Find one.
816 */
cb79295e
AV
817 t = find_lock_task_mm(p);
818 if (!t)
819 continue;
820 cpumask_clear_cpu(cpu, mm_cpumask(t->mm));
821 task_unlock(t);
822 }
823 rcu_read_unlock();
824}
825
1da177e4 826/* Take this CPU down. */
71cf5aee 827static int take_cpu_down(void *_param)
1da177e4 828{
4baa0afc
TG
829 struct cpuhp_cpu_state *st = this_cpu_ptr(&cpuhp_state);
830 enum cpuhp_state target = max((int)st->target, CPUHP_AP_OFFLINE);
090e77c3 831 int err, cpu = smp_processor_id();
724a8688 832 int ret;
1da177e4 833
1da177e4
LT
834 /* Ensure this CPU doesn't handle any more interrupts. */
835 err = __cpu_disable();
836 if (err < 0)
f3705136 837 return err;
1da177e4 838
a724632c
TG
839 /*
840 * We get here while we are in CPUHP_TEARDOWN_CPU state and we must not
841 * do this step again.
842 */
843 WARN_ON(st->state != CPUHP_TEARDOWN_CPU);
844 st->state--;
4baa0afc 845 /* Invoke the former CPU_DYING callbacks */
724a8688
PZ
846 for (; st->state > target; st->state--) {
847 ret = cpuhp_invoke_callback(cpu, st->state, false, NULL, NULL);
848 /*
849 * DYING must not fail!
850 */
851 WARN_ON_ONCE(ret);
852 }
4baa0afc 853
52c063d1
TG
854 /* Give up timekeeping duties */
855 tick_handover_do_timer();
14e568e7 856 /* Park the stopper thread */
090e77c3 857 stop_machine_park(cpu);
f3705136 858 return 0;
1da177e4
LT
859}
860
98458172 861static int takedown_cpu(unsigned int cpu)
1da177e4 862{
e69aab13 863 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
98458172 864 int err;
1da177e4 865
2a58c527 866 /* Park the smpboot threads */
1cf4f629
TG
867 kthread_park(per_cpu_ptr(&cpuhp_state, cpu)->thread);
868
6acce3ef 869 /*
a8994181
TG
870 * Prevent irq alloc/free while the dying cpu reorganizes the
871 * interrupt affinities.
6acce3ef 872 */
a8994181 873 irq_lock_sparse();
6acce3ef 874
a8994181
TG
875 /*
876 * So now all preempt/rcu users must observe !cpu_active().
877 */
210e2133 878 err = stop_machine_cpuslocked(take_cpu_down, NULL, cpumask_of(cpu));
04321587 879 if (err) {
3b9d6da6 880 /* CPU refused to die */
a8994181 881 irq_unlock_sparse();
3b9d6da6
SAS
882 /* Unpark the hotplug thread so we can rollback there */
883 kthread_unpark(per_cpu_ptr(&cpuhp_state, cpu)->thread);
98458172 884 return err;
8fa1d7d3 885 }
04321587 886 BUG_ON(cpu_online(cpu));
1da177e4 887
48c5ccae 888 /*
5b1ead68
BJ
889 * The teardown callback for CPUHP_AP_SCHED_STARTING will have removed
890 * all runnable tasks from the CPU, there's only the idle task left now
48c5ccae 891 * that the migration thread is done doing the stop_machine thing.
51a96c77
PZ
892 *
893 * Wait for the stop thread to go away.
48c5ccae 894 */
5ebe7742 895 wait_for_ap_thread(st, false);
e69aab13 896 BUG_ON(st->state != CPUHP_AP_IDLE_DEAD);
1da177e4 897
a8994181
TG
898 /* Interrupts are moved away from the dying cpu, reenable alloc/free */
899 irq_unlock_sparse();
900
345527b1 901 hotplug_cpu__broadcast_tick_pull(cpu);
1da177e4
LT
902 /* This actually kills the CPU. */
903 __cpu_die(cpu);
904
a49b116d 905 tick_cleanup_dead_cpu(cpu);
a58163d8 906 rcutree_migrate_callbacks(cpu);
98458172
TG
907 return 0;
908}
1da177e4 909
71f87b2f
TG
910static void cpuhp_complete_idle_dead(void *arg)
911{
912 struct cpuhp_cpu_state *st = arg;
913
5ebe7742 914 complete_ap_thread(st, false);
71f87b2f
TG
915}
916
e69aab13
TG
917void cpuhp_report_idle_dead(void)
918{
919 struct cpuhp_cpu_state *st = this_cpu_ptr(&cpuhp_state);
920
921 BUG_ON(st->state != CPUHP_AP_OFFLINE);
27d50c7e 922 rcu_report_dead(smp_processor_id());
71f87b2f
TG
923 st->state = CPUHP_AP_IDLE_DEAD;
924 /*
925 * We cannot call complete after rcu_report_dead() so we delegate it
926 * to an online cpu.
927 */
928 smp_call_function_single(cpumask_first(cpu_online_mask),
929 cpuhp_complete_idle_dead, st, 0);
e69aab13
TG
930}
931
4dddfb5f
PZ
932static void undo_cpu_down(unsigned int cpu, struct cpuhp_cpu_state *st)
933{
6fb86d97
MO
934 for (st->state++; st->state < st->target; st->state++)
935 cpuhp_invoke_callback(cpu, st->state, true, NULL, NULL);
4dddfb5f
PZ
936}
937
938static int cpuhp_down_callbacks(unsigned int cpu, struct cpuhp_cpu_state *st,
939 enum cpuhp_state target)
940{
941 enum cpuhp_state prev_state = st->state;
942 int ret = 0;
943
944 for (; st->state > target; st->state--) {
945 ret = cpuhp_invoke_callback(cpu, st->state, false, NULL, NULL);
946 if (ret) {
947 st->target = prev_state;
69fa6eb7
TG
948 if (st->state < prev_state)
949 undo_cpu_down(cpu, st);
4dddfb5f
PZ
950 break;
951 }
952 }
953 return ret;
954}
cff7d378 955
98458172 956/* Requires cpu_add_remove_lock to be held */
af1f4045
TG
957static int __ref _cpu_down(unsigned int cpu, int tasks_frozen,
958 enum cpuhp_state target)
98458172 959{
cff7d378
TG
960 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
961 int prev_state, ret = 0;
98458172
TG
962
963 if (num_online_cpus() == 1)
964 return -EBUSY;
965
757c989b 966 if (!cpu_present(cpu))
98458172
TG
967 return -EINVAL;
968
8f553c49 969 cpus_write_lock();
98458172
TG
970
971 cpuhp_tasks_frozen = tasks_frozen;
972
4dddfb5f 973 prev_state = cpuhp_set_state(st, target);
1cf4f629
TG
974 /*
975 * If the current CPU state is in the range of the AP hotplug thread,
976 * then we need to kick the thread.
977 */
8df3e07e 978 if (st->state > CPUHP_TEARDOWN_CPU) {
4dddfb5f 979 st->target = max((int)target, CPUHP_TEARDOWN_CPU);
1cf4f629
TG
980 ret = cpuhp_kick_ap_work(cpu);
981 /*
982 * The AP side has done the error rollback already. Just
983 * return the error code..
984 */
985 if (ret)
986 goto out;
987
988 /*
989 * We might have stopped still in the range of the AP hotplug
990 * thread. Nothing to do anymore.
991 */
8df3e07e 992 if (st->state > CPUHP_TEARDOWN_CPU)
1cf4f629 993 goto out;
4dddfb5f
PZ
994
995 st->target = target;
1cf4f629
TG
996 }
997 /*
8df3e07e 998 * The AP brought itself down to CPUHP_TEARDOWN_CPU. So we need
1cf4f629
TG
999 * to do the further cleanups.
1000 */
a724632c 1001 ret = cpuhp_down_callbacks(cpu, st, target);
69fa6eb7 1002 if (ret && st->state == CPUHP_TEARDOWN_CPU && st->state < prev_state) {
4dddfb5f
PZ
1003 cpuhp_reset_state(st, prev_state);
1004 __cpuhp_kick_ap(st);
3b9d6da6 1005 }
98458172 1006
1cf4f629 1007out:
8f553c49 1008 cpus_write_unlock();
941154bd
TG
1009 /*
1010 * Do post unplug cleanup. This is still protected against
1011 * concurrent CPU hotplug via cpu_add_remove_lock.
1012 */
1013 lockup_detector_cleanup();
cff7d378 1014 return ret;
e3920fb4
RW
1015}
1016
cc1fe215
TG
1017static int cpu_down_maps_locked(unsigned int cpu, enum cpuhp_state target)
1018{
1019 if (cpu_hotplug_disabled)
1020 return -EBUSY;
1021 return _cpu_down(cpu, 0, target);
1022}
1023
af1f4045 1024static int do_cpu_down(unsigned int cpu, enum cpuhp_state target)
e3920fb4 1025{
9ea09af3 1026 int err;
e3920fb4 1027
d221938c 1028 cpu_maps_update_begin();
cc1fe215 1029 err = cpu_down_maps_locked(cpu, target);
d221938c 1030 cpu_maps_update_done();
1da177e4
LT
1031 return err;
1032}
4dddfb5f 1033
af1f4045
TG
1034int cpu_down(unsigned int cpu)
1035{
1036 return do_cpu_down(cpu, CPUHP_OFFLINE);
1037}
b62b8ef9 1038EXPORT_SYMBOL(cpu_down);
4dddfb5f
PZ
1039
1040#else
1041#define takedown_cpu NULL
1da177e4
LT
1042#endif /*CONFIG_HOTPLUG_CPU*/
1043
4baa0afc 1044/**
ee1e714b 1045 * notify_cpu_starting(cpu) - Invoke the callbacks on the starting CPU
4baa0afc
TG
1046 * @cpu: cpu that just started
1047 *
4baa0afc
TG
1048 * It must be called by the arch code on the new cpu, before the new cpu
1049 * enables interrupts and before the "boot" cpu returns from __cpu_up().
1050 */
1051void notify_cpu_starting(unsigned int cpu)
1052{
1053 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
1054 enum cpuhp_state target = min((int)st->target, CPUHP_AP_ONLINE);
724a8688 1055 int ret;
4baa0afc 1056
0c6d4576 1057 rcu_cpu_starting(cpu); /* Enables RCU usage on this CPU. */
0cc3cd21 1058 st->booted_once = true;
4baa0afc 1059 while (st->state < target) {
4baa0afc 1060 st->state++;
724a8688
PZ
1061 ret = cpuhp_invoke_callback(cpu, st->state, true, NULL, NULL);
1062 /*
1063 * STARTING must not fail!
1064 */
1065 WARN_ON_ONCE(ret);
4baa0afc
TG
1066 }
1067}
1068
949338e3 1069/*
9cd4f1a4
TG
1070 * Called from the idle task. Wake up the controlling task which brings the
1071 * stopper and the hotplug thread of the upcoming CPU up and then delegates
1072 * the rest of the online bringup to the hotplug thread.
949338e3 1073 */
8df3e07e 1074void cpuhp_online_idle(enum cpuhp_state state)
949338e3 1075{
8df3e07e 1076 struct cpuhp_cpu_state *st = this_cpu_ptr(&cpuhp_state);
8df3e07e
TG
1077
1078 /* Happens for the boot cpu */
1079 if (state != CPUHP_AP_ONLINE_IDLE)
1080 return;
1081
1082 st->state = CPUHP_AP_ONLINE_IDLE;
5ebe7742 1083 complete_ap_thread(st, true);
949338e3
TG
1084}
1085
e3920fb4 1086/* Requires cpu_add_remove_lock to be held */
af1f4045 1087static int _cpu_up(unsigned int cpu, int tasks_frozen, enum cpuhp_state target)
1da177e4 1088{
cff7d378 1089 struct cpuhp_cpu_state *st = per_cpu_ptr(&cpuhp_state, cpu);
3bb5d2ee 1090 struct task_struct *idle;
2e1a3483 1091 int ret = 0;
1da177e4 1092
8f553c49 1093 cpus_write_lock();
38498a67 1094
757c989b 1095 if (!cpu_present(cpu)) {
5e5041f3
YI
1096 ret = -EINVAL;
1097 goto out;
1098 }
1099
757c989b
TG
1100 /*
1101 * The caller of do_cpu_up might have raced with another
1102 * caller. Ignore it for now.
1103 */
1104 if (st->state >= target)
38498a67 1105 goto out;
757c989b
TG
1106
1107 if (st->state == CPUHP_OFFLINE) {
1108 /* Let it fail before we try to bring the cpu up */
1109 idle = idle_thread_get(cpu);
1110 if (IS_ERR(idle)) {
1111 ret = PTR_ERR(idle);
1112 goto out;
1113 }
3bb5d2ee 1114 }
38498a67 1115
ba997462
TG
1116 cpuhp_tasks_frozen = tasks_frozen;
1117
4dddfb5f 1118 cpuhp_set_state(st, target);
1cf4f629
TG
1119 /*
1120 * If the current CPU state is in the range of the AP hotplug thread,
1121 * then we need to kick the thread once more.
1122 */
8df3e07e 1123 if (st->state > CPUHP_BRINGUP_CPU) {
1cf4f629
TG
1124 ret = cpuhp_kick_ap_work(cpu);
1125 /*
1126 * The AP side has done the error rollback already. Just
1127 * return the error code..
1128 */
1129 if (ret)
1130 goto out;
1131 }
1132
1133 /*
1134 * Try to reach the target state. We max out on the BP at
8df3e07e 1135 * CPUHP_BRINGUP_CPU. After that the AP hotplug thread is
1cf4f629
TG
1136 * responsible for bringing it up to the target state.
1137 */
8df3e07e 1138 target = min((int)target, CPUHP_BRINGUP_CPU);
a724632c 1139 ret = cpuhp_up_callbacks(cpu, st, target);
38498a67 1140out:
8f553c49 1141 cpus_write_unlock();
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
53c613fe
JK
2058/*
2059 * Architectures that need SMT-specific errata handling during SMT hotplug
2060 * should override this.
2061 */
2062void __weak arch_smt_update(void) { };
2063
05736e4a
TG
2064static int cpuhp_smt_disable(enum cpuhp_smt_control ctrlval)
2065{
2066 int cpu, ret = 0;
2067
2068 cpu_maps_update_begin();
2069 for_each_online_cpu(cpu) {
2070 if (topology_is_primary_thread(cpu))
2071 continue;
2072 ret = cpu_down_maps_locked(cpu, CPUHP_OFFLINE);
2073 if (ret)
2074 break;
2075 /*
2076 * As this needs to hold the cpu maps lock it's impossible
2077 * to call device_offline() because that ends up calling
2078 * cpu_down() which takes cpu maps lock. cpu maps lock
2079 * needs to be held as this might race against in kernel
2080 * abusers of the hotplug machinery (thermal management).
2081 *
2082 * So nothing would update device:offline state. That would
2083 * leave the sysfs entry stale and prevent onlining after
2084 * smt control has been changed to 'off' again. This is
2085 * called under the sysfs hotplug lock, so it is properly
2086 * serialized against the regular offline usage.
2087 */
2088 cpuhp_offline_cpu_device(cpu);
2089 }
53c613fe 2090 if (!ret) {
05736e4a 2091 cpu_smt_control = ctrlval;
53c613fe
JK
2092 arch_smt_update();
2093 }
05736e4a
TG
2094 cpu_maps_update_done();
2095 return ret;
2096}
2097
215af549 2098static int cpuhp_smt_enable(void)
05736e4a 2099{
215af549
TG
2100 int cpu, ret = 0;
2101
05736e4a
TG
2102 cpu_maps_update_begin();
2103 cpu_smt_control = CPU_SMT_ENABLED;
53c613fe 2104 arch_smt_update();
215af549
TG
2105 for_each_present_cpu(cpu) {
2106 /* Skip online CPUs and CPUs on offline nodes */
2107 if (cpu_online(cpu) || !node_online(cpu_to_node(cpu)))
2108 continue;
2109 ret = _cpu_up(cpu, 0, CPUHP_ONLINE);
2110 if (ret)
2111 break;
2112 /* See comment in cpuhp_smt_disable() */
2113 cpuhp_online_cpu_device(cpu);
2114 }
05736e4a 2115 cpu_maps_update_done();
215af549 2116 return ret;
05736e4a
TG
2117}
2118
2119static ssize_t
2120store_smt_control(struct device *dev, struct device_attribute *attr,
2121 const char *buf, size_t count)
2122{
2123 int ctrlval, ret;
2124
2125 if (sysfs_streq(buf, "on"))
2126 ctrlval = CPU_SMT_ENABLED;
2127 else if (sysfs_streq(buf, "off"))
2128 ctrlval = CPU_SMT_DISABLED;
2129 else if (sysfs_streq(buf, "forceoff"))
2130 ctrlval = CPU_SMT_FORCE_DISABLED;
2131 else
2132 return -EINVAL;
2133
2134 if (cpu_smt_control == CPU_SMT_FORCE_DISABLED)
2135 return -EPERM;
2136
2137 if (cpu_smt_control == CPU_SMT_NOT_SUPPORTED)
2138 return -ENODEV;
2139
2140 ret = lock_device_hotplug_sysfs();
2141 if (ret)
2142 return ret;
2143
2144 if (ctrlval != cpu_smt_control) {
2145 switch (ctrlval) {
2146 case CPU_SMT_ENABLED:
215af549 2147 ret = cpuhp_smt_enable();
05736e4a
TG
2148 break;
2149 case CPU_SMT_DISABLED:
2150 case CPU_SMT_FORCE_DISABLED:
2151 ret = cpuhp_smt_disable(ctrlval);
2152 break;
2153 }
2154 }
2155
2156 unlock_device_hotplug();
2157 return ret ? ret : count;
2158}
2159static DEVICE_ATTR(control, 0644, show_smt_control, store_smt_control);
2160
2161static ssize_t
2162show_smt_active(struct device *dev, struct device_attribute *attr, char *buf)
2163{
2164 bool active = topology_max_smt_threads() > 1;
2165
2166 return snprintf(buf, PAGE_SIZE - 2, "%d\n", active);
2167}
2168static DEVICE_ATTR(active, 0444, show_smt_active, NULL);
2169
2170static struct attribute *cpuhp_smt_attrs[] = {
2171 &dev_attr_control.attr,
2172 &dev_attr_active.attr,
2173 NULL
2174};
2175
2176static const struct attribute_group cpuhp_smt_attr_group = {
2177 .attrs = cpuhp_smt_attrs,
2178 .name = "smt",
2179 NULL
2180};
2181
2182static int __init cpu_smt_state_init(void)
2183{
05736e4a
TG
2184 return sysfs_create_group(&cpu_subsys.dev_root->kobj,
2185 &cpuhp_smt_attr_group);
2186}
2187
2188#else
2189static inline int cpu_smt_state_init(void) { return 0; }
2190#endif
2191
98f8cdce
TG
2192static int __init cpuhp_sysfs_init(void)
2193{
2194 int cpu, ret;
2195
05736e4a
TG
2196 ret = cpu_smt_state_init();
2197 if (ret)
2198 return ret;
2199
98f8cdce
TG
2200 ret = sysfs_create_group(&cpu_subsys.dev_root->kobj,
2201 &cpuhp_cpu_root_attr_group);
2202 if (ret)
2203 return ret;
2204
2205 for_each_possible_cpu(cpu) {
2206 struct device *dev = get_cpu_device(cpu);
2207
2208 if (!dev)
2209 continue;
2210 ret = sysfs_create_group(&dev->kobj, &cpuhp_cpu_attr_group);
2211 if (ret)
2212 return ret;
2213 }
2214 return 0;
2215}
2216device_initcall(cpuhp_sysfs_init);
2217#endif
2218
e56b3bc7
LT
2219/*
2220 * cpu_bit_bitmap[] is a special, "compressed" data structure that
2221 * represents all NR_CPUS bits binary values of 1<<nr.
2222 *
e0b582ec 2223 * It is used by cpumask_of() to get a constant address to a CPU
e56b3bc7
LT
2224 * mask value that has a single bit set only.
2225 */
b8d317d1 2226
e56b3bc7 2227/* cpu_bit_bitmap[0] is empty - so we can back into it */
4d51985e 2228#define MASK_DECLARE_1(x) [x+1][0] = (1UL << (x))
e56b3bc7
LT
2229#define MASK_DECLARE_2(x) MASK_DECLARE_1(x), MASK_DECLARE_1(x+1)
2230#define MASK_DECLARE_4(x) MASK_DECLARE_2(x), MASK_DECLARE_2(x+2)
2231#define MASK_DECLARE_8(x) MASK_DECLARE_4(x), MASK_DECLARE_4(x+4)
b8d317d1 2232
e56b3bc7
LT
2233const unsigned long cpu_bit_bitmap[BITS_PER_LONG+1][BITS_TO_LONGS(NR_CPUS)] = {
2234
2235 MASK_DECLARE_8(0), MASK_DECLARE_8(8),
2236 MASK_DECLARE_8(16), MASK_DECLARE_8(24),
2237#if BITS_PER_LONG > 32
2238 MASK_DECLARE_8(32), MASK_DECLARE_8(40),
2239 MASK_DECLARE_8(48), MASK_DECLARE_8(56),
b8d317d1
MT
2240#endif
2241};
e56b3bc7 2242EXPORT_SYMBOL_GPL(cpu_bit_bitmap);
2d3854a3
RR
2243
2244const DECLARE_BITMAP(cpu_all_bits, NR_CPUS) = CPU_BITS_ALL;
2245EXPORT_SYMBOL(cpu_all_bits);
b3199c02
RR
2246
2247#ifdef CONFIG_INIT_ALL_POSSIBLE
4b804c85 2248struct cpumask __cpu_possible_mask __read_mostly
c4c54dd1 2249 = {CPU_BITS_ALL};
b3199c02 2250#else
4b804c85 2251struct cpumask __cpu_possible_mask __read_mostly;
b3199c02 2252#endif
4b804c85 2253EXPORT_SYMBOL(__cpu_possible_mask);
b3199c02 2254
4b804c85
RV
2255struct cpumask __cpu_online_mask __read_mostly;
2256EXPORT_SYMBOL(__cpu_online_mask);
b3199c02 2257
4b804c85
RV
2258struct cpumask __cpu_present_mask __read_mostly;
2259EXPORT_SYMBOL(__cpu_present_mask);
b3199c02 2260
4b804c85
RV
2261struct cpumask __cpu_active_mask __read_mostly;
2262EXPORT_SYMBOL(__cpu_active_mask);
3fa41520 2263
3fa41520
RR
2264void init_cpu_present(const struct cpumask *src)
2265{
c4c54dd1 2266 cpumask_copy(&__cpu_present_mask, src);
3fa41520
RR
2267}
2268
2269void init_cpu_possible(const struct cpumask *src)
2270{
c4c54dd1 2271 cpumask_copy(&__cpu_possible_mask, src);
3fa41520
RR
2272}
2273
2274void init_cpu_online(const struct cpumask *src)
2275{
c4c54dd1 2276 cpumask_copy(&__cpu_online_mask, src);
3fa41520 2277}
cff7d378
TG
2278
2279/*
2280 * Activate the first processor.
2281 */
2282void __init boot_cpu_init(void)
2283{
2284 int cpu = smp_processor_id();
2285
2286 /* Mark the boot cpu "present", "online" etc for SMP and UP case */
2287 set_cpu_online(cpu, true);
2288 set_cpu_active(cpu, true);
2289 set_cpu_present(cpu, true);
2290 set_cpu_possible(cpu, true);
8ce371f9
PZ
2291
2292#ifdef CONFIG_SMP
2293 __boot_cpu_id = cpu;
2294#endif
cff7d378
TG
2295}
2296
2297/*
2298 * Must be called _AFTER_ setting up the per_cpu areas
2299 */
b5b1404d 2300void __init boot_cpu_hotplug_init(void)
cff7d378 2301{
269777aa 2302#ifdef CONFIG_SMP
0cc3cd21 2303 this_cpu_write(cpuhp_state.booted_once, true);
269777aa 2304#endif
0cc3cd21 2305 this_cpu_write(cpuhp_state.state, CPUHP_ONLINE);
cff7d378 2306}