1 // SPDX-License-Identifier: GPL-2.0-only
3 * Common SMP CPU bringup/teardown functions
8 #include <linux/delay.h>
9 #include <linux/init.h>
10 #include <linux/list.h>
11 #include <linux/slab.h>
12 #include <linux/sched.h>
13 #include <linux/sched/task.h>
14 #include <linux/export.h>
15 #include <linux/percpu.h>
16 #include <linux/kthread.h>
17 #include <linux/smpboot.h>
23 #ifdef CONFIG_GENERIC_SMP_IDLE_THREAD
25 * For the hotplug case we keep the task structs around and reuse
28 static DEFINE_PER_CPU(struct task_struct *, idle_threads);
30 struct task_struct *idle_thread_get(unsigned int cpu)
32 struct task_struct *tsk = per_cpu(idle_threads, cpu);
35 return ERR_PTR(-ENOMEM);
40 void __init idle_thread_set_boot_cpu(void)
42 per_cpu(idle_threads, smp_processor_id()) = current;
46 * idle_init - Initialize the idle thread for a cpu
47 * @cpu: The cpu for which the idle thread should be initialized
49 * Creates the thread if it does not exist.
51 static inline void idle_init(unsigned int cpu)
53 struct task_struct *tsk = per_cpu(idle_threads, cpu);
58 pr_err("SMP: fork_idle() failed for CPU %u\n", cpu);
60 per_cpu(idle_threads, cpu) = tsk;
65 * idle_threads_init - Initialize idle threads for all cpus
67 void __init idle_threads_init(void)
69 unsigned int cpu, boot_cpu;
71 boot_cpu = smp_processor_id();
73 for_each_possible_cpu(cpu) {
80 #endif /* #ifdef CONFIG_SMP */
82 static LIST_HEAD(hotplug_threads);
83 static DEFINE_MUTEX(smpboot_threads_lock);
85 struct smpboot_thread_data {
88 struct smp_hotplug_thread *ht;
98 * smpboot_thread_fn - percpu hotplug thread loop function
99 * @data: thread data pointer
101 * Checks for thread stop and park conditions. Calls the necessary
102 * setup, cleanup, park and unpark functions for the registered
105 * Returns 1 when the thread should exit, 0 otherwise.
107 static int smpboot_thread_fn(void *data)
109 struct smpboot_thread_data *td = data;
110 struct smp_hotplug_thread *ht = td->ht;
113 set_current_state(TASK_INTERRUPTIBLE);
115 if (kthread_should_stop()) {
116 __set_current_state(TASK_RUNNING);
118 /* cleanup must mirror setup */
119 if (ht->cleanup && td->status != HP_THREAD_NONE)
120 ht->cleanup(td->cpu, cpu_online(td->cpu));
125 if (kthread_should_park()) {
126 __set_current_state(TASK_RUNNING);
128 if (ht->park && td->status == HP_THREAD_ACTIVE) {
129 BUG_ON(td->cpu != smp_processor_id());
131 td->status = HP_THREAD_PARKED;
134 /* We might have been woken for stop */
138 BUG_ON(td->cpu != smp_processor_id());
140 /* Check for state change setup */
141 switch (td->status) {
143 __set_current_state(TASK_RUNNING);
147 td->status = HP_THREAD_ACTIVE;
150 case HP_THREAD_PARKED:
151 __set_current_state(TASK_RUNNING);
155 td->status = HP_THREAD_ACTIVE;
159 if (!ht->thread_should_run(td->cpu)) {
160 preempt_enable_no_resched();
163 __set_current_state(TASK_RUNNING);
165 ht->thread_fn(td->cpu);
171 __smpboot_create_thread(struct smp_hotplug_thread *ht, unsigned int cpu)
173 struct task_struct *tsk = *per_cpu_ptr(ht->store, cpu);
174 struct smpboot_thread_data *td;
179 td = kzalloc_node(sizeof(*td), GFP_KERNEL, cpu_to_node(cpu));
185 tsk = kthread_create_on_cpu(smpboot_thread_fn, td, cpu,
191 kthread_set_per_cpu(tsk, cpu);
193 * Park the thread so that it could start right on the CPU
194 * when it is available.
197 get_task_struct(tsk);
198 *per_cpu_ptr(ht->store, cpu) = tsk;
201 * Make sure that the task has actually scheduled out
202 * into park position, before calling the create
203 * callback. At least the migration thread callback
204 * requires that the task is off the runqueue.
206 if (!wait_task_inactive(tsk, TASK_PARKED))
214 int smpboot_create_threads(unsigned int cpu)
216 struct smp_hotplug_thread *cur;
219 mutex_lock(&smpboot_threads_lock);
220 list_for_each_entry(cur, &hotplug_threads, list) {
221 ret = __smpboot_create_thread(cur, cpu);
225 mutex_unlock(&smpboot_threads_lock);
229 static void smpboot_unpark_thread(struct smp_hotplug_thread *ht, unsigned int cpu)
231 struct task_struct *tsk = *per_cpu_ptr(ht->store, cpu);
233 if (!ht->selfparking)
237 int smpboot_unpark_threads(unsigned int cpu)
239 struct smp_hotplug_thread *cur;
241 mutex_lock(&smpboot_threads_lock);
242 list_for_each_entry(cur, &hotplug_threads, list)
243 smpboot_unpark_thread(cur, cpu);
244 mutex_unlock(&smpboot_threads_lock);
248 static void smpboot_park_thread(struct smp_hotplug_thread *ht, unsigned int cpu)
250 struct task_struct *tsk = *per_cpu_ptr(ht->store, cpu);
252 if (tsk && !ht->selfparking)
256 int smpboot_park_threads(unsigned int cpu)
258 struct smp_hotplug_thread *cur;
260 mutex_lock(&smpboot_threads_lock);
261 list_for_each_entry_reverse(cur, &hotplug_threads, list)
262 smpboot_park_thread(cur, cpu);
263 mutex_unlock(&smpboot_threads_lock);
267 static void smpboot_destroy_threads(struct smp_hotplug_thread *ht)
271 /* We need to destroy also the parked threads of offline cpus */
272 for_each_possible_cpu(cpu) {
273 struct task_struct *tsk = *per_cpu_ptr(ht->store, cpu);
277 put_task_struct(tsk);
278 *per_cpu_ptr(ht->store, cpu) = NULL;
284 * smpboot_register_percpu_thread - Register a per_cpu thread related
286 * @plug_thread: Hotplug thread descriptor
288 * Creates and starts the threads on all online cpus.
290 int smpboot_register_percpu_thread(struct smp_hotplug_thread *plug_thread)
296 mutex_lock(&smpboot_threads_lock);
297 for_each_online_cpu(cpu) {
298 ret = __smpboot_create_thread(plug_thread, cpu);
300 smpboot_destroy_threads(plug_thread);
303 smpboot_unpark_thread(plug_thread, cpu);
305 list_add(&plug_thread->list, &hotplug_threads);
307 mutex_unlock(&smpboot_threads_lock);
311 EXPORT_SYMBOL_GPL(smpboot_register_percpu_thread);
314 * smpboot_unregister_percpu_thread - Unregister a per_cpu thread related to hotplug
315 * @plug_thread: Hotplug thread descriptor
317 * Stops all threads on all possible cpus.
319 void smpboot_unregister_percpu_thread(struct smp_hotplug_thread *plug_thread)
322 mutex_lock(&smpboot_threads_lock);
323 list_del(&plug_thread->list);
324 smpboot_destroy_threads(plug_thread);
325 mutex_unlock(&smpboot_threads_lock);
328 EXPORT_SYMBOL_GPL(smpboot_unregister_percpu_thread);
330 static DEFINE_PER_CPU(atomic_t, cpu_hotplug_state) = ATOMIC_INIT(CPU_POST_DEAD);
333 * Called to poll specified CPU's state, for example, when waiting for
334 * a CPU to come online.
336 int cpu_report_state(int cpu)
338 return atomic_read(&per_cpu(cpu_hotplug_state, cpu));
342 * If CPU has died properly, set its state to CPU_UP_PREPARE and
343 * return success. Otherwise, return -EBUSY if the CPU died after
344 * cpu_wait_death() timed out. And yet otherwise again, return -EAGAIN
345 * if cpu_wait_death() timed out and the CPU still hasn't gotten around
346 * to dying. In the latter two cases, the CPU might not be set up
347 * properly, but it is up to the arch-specific code to decide.
348 * Finally, -EIO indicates an unanticipated problem.
350 * Note that it is permissible to omit this call entirely, as is
351 * done in architectures that do no CPU-hotplug error checking.
353 int cpu_check_up_prepare(int cpu)
355 if (!IS_ENABLED(CONFIG_HOTPLUG_CPU)) {
356 atomic_set(&per_cpu(cpu_hotplug_state, cpu), CPU_UP_PREPARE);
360 switch (atomic_read(&per_cpu(cpu_hotplug_state, cpu))) {
364 /* The CPU died properly, so just start it up again. */
365 atomic_set(&per_cpu(cpu_hotplug_state, cpu), CPU_UP_PREPARE);
368 case CPU_DEAD_FROZEN:
371 * Timeout during CPU death, so let caller know.
372 * The outgoing CPU completed its processing, but after
373 * cpu_wait_death() timed out and reported the error. The
374 * caller is free to proceed, in which case the state
375 * will be reset properly by cpu_set_state_online().
376 * Proceeding despite this -EBUSY return makes sense
377 * for systems where the outgoing CPUs take themselves
378 * offline, with no post-death manipulation required from
386 * The most likely reason we got here is that there was
387 * a timeout during CPU death, and the outgoing CPU never
388 * did complete its processing. This could happen on
389 * a virtualized system if the outgoing VCPU gets preempted
390 * for more than five seconds, and the user attempts to
391 * immediately online that same CPU. Trying again later
392 * might return -EBUSY above, hence -EAGAIN.
398 /* Should not happen. Famous last words. */
404 * Mark the specified CPU online.
406 * Note that it is permissible to omit this call entirely, as is
407 * done in architectures that do no CPU-hotplug error checking.
409 void cpu_set_state_online(int cpu)
411 (void)atomic_xchg(&per_cpu(cpu_hotplug_state, cpu), CPU_ONLINE);
414 #ifdef CONFIG_HOTPLUG_CPU
417 * Wait for the specified CPU to exit the idle loop and die.
419 bool cpu_wait_death(unsigned int cpu, int seconds)
421 int jf_left = seconds * HZ;
428 /* The outgoing CPU will normally get done quite quickly. */
429 if (atomic_read(&per_cpu(cpu_hotplug_state, cpu)) == CPU_DEAD)
433 /* But if the outgoing CPU dawdles, wait increasingly long times. */
434 while (atomic_read(&per_cpu(cpu_hotplug_state, cpu)) != CPU_DEAD) {
435 schedule_timeout_uninterruptible(sleep_jf);
439 sleep_jf = DIV_ROUND_UP(sleep_jf * 11, 10);
442 oldstate = atomic_read(&per_cpu(cpu_hotplug_state, cpu));
443 if (oldstate == CPU_DEAD) {
444 /* Outgoing CPU died normally, update state. */
445 smp_mb(); /* atomic_read() before update. */
446 atomic_set(&per_cpu(cpu_hotplug_state, cpu), CPU_POST_DEAD);
448 /* Outgoing CPU still hasn't died, set state accordingly. */
449 if (atomic_cmpxchg(&per_cpu(cpu_hotplug_state, cpu),
450 oldstate, CPU_BROKEN) != oldstate)
458 * Called by the outgoing CPU to report its successful death. Return
459 * false if this report follows the surviving CPU's timing out.
461 * A separate "CPU_DEAD_FROZEN" is used when the surviving CPU
462 * timed out. This approach allows architectures to omit calls to
463 * cpu_check_up_prepare() and cpu_set_state_online() without defeating
464 * the next cpu_wait_death()'s polling loop.
466 bool cpu_report_death(void)
470 int cpu = smp_processor_id();
473 oldstate = atomic_read(&per_cpu(cpu_hotplug_state, cpu));
474 if (oldstate != CPU_BROKEN)
477 newstate = CPU_DEAD_FROZEN;
478 } while (atomic_cmpxchg(&per_cpu(cpu_hotplug_state, cpu),
479 oldstate, newstate) != oldstate);
480 return newstate == CPU_DEAD;
483 #endif /* #ifdef CONFIG_HOTPLUG_CPU */