blob: d49e5df9c77a526ce6df20e5bebd2954c77737b4 [file] [log] [blame]
Jens Axboe3d442232008-06-26 11:21:34 +02001/*
2 * Generic helpers for smp ipi calls
3 *
4 * (C) Jens Axboe <jens.axboe@oracle.com> 2008
Jens Axboe3d442232008-06-26 11:21:34 +02005 */
Frederic Weisbecker47885012014-05-08 01:37:48 +02006#include <linux/irq_work.h>
Jens Axboe3d442232008-06-26 11:21:34 +02007#include <linux/rcupdate.h>
Linus Torvalds59190f42008-07-15 14:02:33 -07008#include <linux/rculist.h>
Ingo Molnar641cd4c2009-03-13 10:47:34 +01009#include <linux/kernel.h>
Paul Gortmaker9984de12011-05-23 14:51:41 -040010#include <linux/export.h>
Ingo Molnar0b13fda2009-02-25 16:52:11 +010011#include <linux/percpu.h>
12#include <linux/init.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090013#include <linux/gfp.h>
Jens Axboe3d442232008-06-26 11:21:34 +020014#include <linux/smp.h>
Peter Zijlstra8969a5e2009-02-25 13:59:47 +010015#include <linux/cpu.h>
Chuansheng Liuc6f44592014-09-04 15:17:54 +080016#include <linux/sched.h>
Juergen Gross47ae4b02016-08-29 08:48:43 +020017#include <linux/hypervisor.h>
Stephen Boyd4aa10d12017-09-07 11:42:30 -070018#include <linux/suspend.h>
Jens Axboe3d442232008-06-26 11:21:34 +020019
Suresh Siddha3bb5d2e2012-04-20 17:08:50 -070020#include "smpboot.h"
21
Jens Axboe3d442232008-06-26 11:21:34 +020022enum {
Peter Zijlstra6e275632009-02-25 13:59:48 +010023 CSD_FLAG_LOCK = 0x01,
Linus Torvalds80538712015-02-11 12:42:10 -080024 CSD_FLAG_SYNCHRONOUS = 0x02,
Jens Axboe3d442232008-06-26 11:21:34 +020025};
26
27struct call_function_data {
Shaohua Li9a46ad62013-02-21 16:43:03 -080028 struct call_single_data __percpu *csd;
Ingo Molnar0b13fda2009-02-25 16:52:11 +010029 cpumask_var_t cpumask;
Jens Axboe3d442232008-06-26 11:21:34 +020030};
31
Milton Millere03bcb62010-01-18 13:00:51 +110032static DEFINE_PER_CPU_SHARED_ALIGNED(struct call_function_data, cfd_data);
33
Christoph Hellwig6897fc22014-01-30 15:45:47 -080034static DEFINE_PER_CPU_SHARED_ALIGNED(struct llist_head, call_single_queue);
Peter Zijlstra8969a5e2009-02-25 13:59:47 +010035
Srivatsa S. Bhat8d056c42014-06-23 13:22:02 -070036static void flush_smp_call_function_queue(bool warn_cpu_offline);
Channagoud Kadabi85b8fdf2016-08-30 15:08:28 -070037/* CPU mask indicating which CPUs to bring online during smp_init() */
38static bool have_boot_cpu_mask;
39static cpumask_var_t boot_cpu_mask;
Srivatsa S. Bhat8d056c42014-06-23 13:22:02 -070040
Richard Weinberger31487f82016-07-13 17:17:01 +000041int smpcfd_prepare_cpu(unsigned int cpu)
Peter Zijlstra8969a5e2009-02-25 13:59:47 +010042{
Peter Zijlstra8969a5e2009-02-25 13:59:47 +010043 struct call_function_data *cfd = &per_cpu(cfd_data, cpu);
44
Richard Weinberger31487f82016-07-13 17:17:01 +000045 if (!zalloc_cpumask_var_node(&cfd->cpumask, GFP_KERNEL,
46 cpu_to_node(cpu)))
47 return -ENOMEM;
48 cfd->csd = alloc_percpu(struct call_single_data);
49 if (!cfd->csd) {
Peter Zijlstra8969a5e2009-02-25 13:59:47 +010050 free_cpumask_var(cfd->cpumask);
Richard Weinberger31487f82016-07-13 17:17:01 +000051 return -ENOMEM;
52 }
Srivatsa S. Bhat8d056c42014-06-23 13:22:02 -070053
Richard Weinberger31487f82016-07-13 17:17:01 +000054 return 0;
Peter Zijlstra8969a5e2009-02-25 13:59:47 +010055}
56
Richard Weinberger31487f82016-07-13 17:17:01 +000057int smpcfd_dead_cpu(unsigned int cpu)
58{
59 struct call_function_data *cfd = &per_cpu(cfd_data, cpu);
60
61 free_cpumask_var(cfd->cpumask);
62 free_percpu(cfd->csd);
63 return 0;
64}
65
66int smpcfd_dying_cpu(unsigned int cpu)
67{
68 /*
69 * The IPIs for the smp-call-function callbacks queued by other
70 * CPUs might arrive late, either due to hardware latencies or
71 * because this CPU disabled interrupts (inside stop-machine)
72 * before the IPIs were sent. So flush out any pending callbacks
73 * explicitly (without waiting for the IPIs to arrive), to
74 * ensure that the outgoing CPU doesn't go offline with work
75 * still pending.
76 */
77 flush_smp_call_function_queue(false);
78 return 0;
79}
Peter Zijlstra8969a5e2009-02-25 13:59:47 +010080
Takao Indohd8ad7d12011-03-29 12:35:04 -040081void __init call_function_init(void)
Jens Axboe3d442232008-06-26 11:21:34 +020082{
83 int i;
84
Christoph Hellwig6897fc22014-01-30 15:45:47 -080085 for_each_possible_cpu(i)
86 init_llist_head(&per_cpu(call_single_queue, i));
Peter Zijlstra8969a5e2009-02-25 13:59:47 +010087
Richard Weinberger31487f82016-07-13 17:17:01 +000088 smpcfd_prepare_cpu(smp_processor_id());
Jens Axboe3d442232008-06-26 11:21:34 +020089}
90
Peter Zijlstra8969a5e2009-02-25 13:59:47 +010091/*
Peter Zijlstra8969a5e2009-02-25 13:59:47 +010092 * csd_lock/csd_unlock used to serialize access to per-cpu csd resources
93 *
Ingo Molnar0b13fda2009-02-25 16:52:11 +010094 * For non-synchronous ipi calls the csd can still be in use by the
95 * previous function call. For multi-cpu calls its even more interesting
96 * as we'll have to ensure no other cpu is observing our csd.
Peter Zijlstra8969a5e2009-02-25 13:59:47 +010097 */
Davidlohr Bueso90d10982016-03-09 17:55:35 -080098static __always_inline void csd_lock_wait(struct call_single_data *csd)
Peter Zijlstra8969a5e2009-02-25 13:59:47 +010099{
Peter Zijlstra1f03e8d2016-04-04 10:57:12 +0200100 smp_cond_load_acquire(&csd->flags, !(VAL & CSD_FLAG_LOCK));
Peter Zijlstra6e275632009-02-25 13:59:48 +0100101}
102
Davidlohr Bueso90d10982016-03-09 17:55:35 -0800103static __always_inline void csd_lock(struct call_single_data *csd)
Peter Zijlstra6e275632009-02-25 13:59:48 +0100104{
Andrew Mortone1d12f32013-04-30 15:27:28 -0700105 csd_lock_wait(csd);
106 csd->flags |= CSD_FLAG_LOCK;
Peter Zijlstra8969a5e2009-02-25 13:59:47 +0100107
108 /*
Ingo Molnar0b13fda2009-02-25 16:52:11 +0100109 * prevent CPU from reordering the above assignment
110 * to ->flags with any subsequent assignments to other
111 * fields of the specified call_single_data structure:
Peter Zijlstra8969a5e2009-02-25 13:59:47 +0100112 */
Linus Torvalds80538712015-02-11 12:42:10 -0800113 smp_wmb();
Peter Zijlstra8969a5e2009-02-25 13:59:47 +0100114}
115
Davidlohr Bueso90d10982016-03-09 17:55:35 -0800116static __always_inline void csd_unlock(struct call_single_data *csd)
Peter Zijlstra8969a5e2009-02-25 13:59:47 +0100117{
Linus Torvalds80538712015-02-11 12:42:10 -0800118 WARN_ON(!(csd->flags & CSD_FLAG_LOCK));
Ingo Molnar0b13fda2009-02-25 16:52:11 +0100119
Peter Zijlstra8969a5e2009-02-25 13:59:47 +0100120 /*
Ingo Molnar0b13fda2009-02-25 16:52:11 +0100121 * ensure we're all done before releasing data:
Peter Zijlstra8969a5e2009-02-25 13:59:47 +0100122 */
Linus Torvalds80538712015-02-11 12:42:10 -0800123 smp_store_release(&csd->flags, 0);
Jens Axboe3d442232008-06-26 11:21:34 +0200124}
125
Frederic Weisbecker8b284992014-02-24 16:39:58 +0100126static DEFINE_PER_CPU_SHARED_ALIGNED(struct call_single_data, csd_data);
127
Jens Axboe3d442232008-06-26 11:21:34 +0200128/*
Ingo Molnar0b13fda2009-02-25 16:52:11 +0100129 * Insert a previously allocated call_single_data element
130 * for execution on the given CPU. data must already have
131 * ->func, ->info, and ->flags set.
Jens Axboe3d442232008-06-26 11:21:34 +0200132 */
Frederic Weisbecker8b284992014-02-24 16:39:58 +0100133static int generic_exec_single(int cpu, struct call_single_data *csd,
Linus Torvalds80538712015-02-11 12:42:10 -0800134 smp_call_func_t func, void *info)
Jens Axboe3d442232008-06-26 11:21:34 +0200135{
Frederic Weisbecker8b284992014-02-24 16:39:58 +0100136 if (cpu == smp_processor_id()) {
Linus Torvalds80538712015-02-11 12:42:10 -0800137 unsigned long flags;
138
139 /*
140 * We can unlock early even for the synchronous on-stack case,
141 * since we're doing this from the same CPU..
142 */
143 csd_unlock(csd);
Frederic Weisbecker8b284992014-02-24 16:39:58 +0100144 local_irq_save(flags);
145 func(info);
146 local_irq_restore(flags);
147 return 0;
148 }
149
150
Linus Torvalds5224b962015-04-19 04:56:03 -0400151 if ((unsigned)cpu >= nr_cpu_ids || !cpu_online(cpu)) {
152 csd_unlock(csd);
Frederic Weisbecker8b284992014-02-24 16:39:58 +0100153 return -ENXIO;
Linus Torvalds5224b962015-04-19 04:56:03 -0400154 }
Frederic Weisbecker8b284992014-02-24 16:39:58 +0100155
Frederic Weisbecker8b284992014-02-24 16:39:58 +0100156 csd->func = func;
157 csd->info = info;
158
Suresh Siddha561920a02008-10-30 18:28:41 +0100159 /*
Nick Piggin15d0d3b2009-02-25 06:22:45 +0100160 * The list addition should be visible before sending the IPI
161 * handler locks the list to pull the entry off it because of
162 * normal cache coherency rules implied by spinlocks.
163 *
164 * If IPIs can go out of order to the cache coherency protocol
165 * in an architecture, sufficient synchronisation should be added
166 * to arch code to make it appear to obey cache coherency WRT
Ingo Molnar0b13fda2009-02-25 16:52:11 +0100167 * locking and barrier primitives. Generic code isn't really
168 * equipped to do the right thing...
Suresh Siddha561920a02008-10-30 18:28:41 +0100169 */
Christoph Hellwig6897fc22014-01-30 15:45:47 -0800170 if (llist_add(&csd->llist, &per_cpu(call_single_queue, cpu)))
Jens Axboe3d442232008-06-26 11:21:34 +0200171 arch_send_call_function_single_ipi(cpu);
172
Frederic Weisbecker8b284992014-02-24 16:39:58 +0100173 return 0;
Jens Axboe3d442232008-06-26 11:21:34 +0200174}
175
Srivatsa S. Bhat8d056c42014-06-23 13:22:02 -0700176/**
177 * generic_smp_call_function_single_interrupt - Execute SMP IPI callbacks
178 *
179 * Invoked by arch to handle an IPI for call function single.
180 * Must be called with interrupts disabled.
Jens Axboe3d442232008-06-26 11:21:34 +0200181 */
182void generic_smp_call_function_single_interrupt(void)
183{
Srivatsa S. Bhat8d056c42014-06-23 13:22:02 -0700184 flush_smp_call_function_queue(true);
185}
186
187/**
188 * flush_smp_call_function_queue - Flush pending smp-call-function callbacks
189 *
190 * @warn_cpu_offline: If set to 'true', warn if callbacks were queued on an
191 * offline CPU. Skip this check if set to 'false'.
192 *
193 * Flush any pending smp-call-function callbacks queued on this CPU. This is
194 * invoked by the generic IPI handler, as well as by a CPU about to go offline,
195 * to ensure that all pending IPI callbacks are run before it goes completely
196 * offline.
197 *
198 * Loop through the call_single_queue and run all the queued callbacks.
199 * Must be called with interrupts disabled.
200 */
201static void flush_smp_call_function_queue(bool warn_cpu_offline)
202{
203 struct llist_head *head;
Jan Kara5fd77592014-02-24 16:39:55 +0100204 struct llist_node *entry;
205 struct call_single_data *csd, *csd_next;
Srivatsa S. Bhata219ccf2014-06-06 14:37:05 -0700206 static bool warned;
207
Srivatsa S. Bhat8d056c42014-06-23 13:22:02 -0700208 WARN_ON(!irqs_disabled());
209
Christoph Lameterbb964a92014-08-17 12:30:24 -0500210 head = this_cpu_ptr(&call_single_queue);
Srivatsa S. Bhat8d056c42014-06-23 13:22:02 -0700211 entry = llist_del_all(head);
Srivatsa S. Bhata219ccf2014-06-06 14:37:05 -0700212 entry = llist_reverse_order(entry);
Jens Axboe3d442232008-06-26 11:21:34 +0200213
Srivatsa S. Bhat8d056c42014-06-23 13:22:02 -0700214 /* There shouldn't be any pending callbacks on an offline CPU. */
215 if (unlikely(warn_cpu_offline && !cpu_online(smp_processor_id()) &&
216 !warned && !llist_empty(head))) {
Srivatsa S. Bhata219ccf2014-06-06 14:37:05 -0700217 warned = true;
218 WARN(1, "IPI on offline CPU %d\n", smp_processor_id());
Suresh Siddha269c8612009-08-19 18:05:35 -0700219
Srivatsa S. Bhata219ccf2014-06-06 14:37:05 -0700220 /*
221 * We don't have to use the _safe() variant here
222 * because we are not invoking the IPI handlers yet.
223 */
224 llist_for_each_entry(csd, entry, llist)
225 pr_warn("IPI callback %pS sent to offline CPU\n",
226 csd->func);
227 }
Jens Axboe3d442232008-06-26 11:21:34 +0200228
Jan Kara5fd77592014-02-24 16:39:55 +0100229 llist_for_each_entry_safe(csd, csd_next, entry, llist) {
Linus Torvalds80538712015-02-11 12:42:10 -0800230 smp_call_func_t func = csd->func;
231 void *info = csd->info;
232
233 /* Do we wait until *after* callback? */
234 if (csd->flags & CSD_FLAG_SYNCHRONOUS) {
235 func(info);
236 csd_unlock(csd);
237 } else {
238 csd_unlock(csd);
239 func(info);
240 }
Jens Axboe3d442232008-06-26 11:21:34 +0200241 }
Frederic Weisbecker47885012014-05-08 01:37:48 +0200242
243 /*
244 * Handle irq works queued remotely by irq_work_queue_on().
245 * Smp functions above are typically synchronous so they
246 * better run first since some other CPUs may be busy waiting
247 * for them.
248 */
249 irq_work_run();
Jens Axboe3d442232008-06-26 11:21:34 +0200250}
251
252/*
253 * smp_call_function_single - Run a function on a specific CPU
254 * @func: The function to run. This must be fast and non-blocking.
255 * @info: An arbitrary pointer to pass to the function.
Jens Axboe3d442232008-06-26 11:21:34 +0200256 * @wait: If true, wait until function has completed on other CPUs.
257 *
Sheng Yang72f279b2009-10-22 19:19:34 +0800258 * Returns 0 on success, else a negative status code.
Jens Axboe3d442232008-06-26 11:21:34 +0200259 */
David Howells3a5f65d2010-10-27 17:28:36 +0100260int smp_call_function_single(int cpu, smp_call_func_t func, void *info,
Jens Axboe8691e5a2008-06-06 11:18:06 +0200261 int wait)
Jens Axboe3d442232008-06-26 11:21:34 +0200262{
Linus Torvalds80538712015-02-11 12:42:10 -0800263 struct call_single_data *csd;
264 struct call_single_data csd_stack = { .flags = CSD_FLAG_LOCK | CSD_FLAG_SYNCHRONOUS };
Ingo Molnar0b13fda2009-02-25 16:52:11 +0100265 int this_cpu;
Frederic Weisbecker8b284992014-02-24 16:39:58 +0100266 int err;
Jens Axboe3d442232008-06-26 11:21:34 +0200267
Ingo Molnar0b13fda2009-02-25 16:52:11 +0100268 /*
269 * prevent preemption and reschedule on another processor,
270 * as well as CPU removal
271 */
272 this_cpu = get_cpu();
273
Suresh Siddha269c8612009-08-19 18:05:35 -0700274 /*
275 * Can deadlock when called with interrupts disabled.
276 * We allow cpu's that are not yet online though, as no one else can
277 * send smp call function interrupt to this cpu and as such deadlocks
278 * can't happen.
279 */
280 WARN_ON_ONCE(cpu_online(this_cpu) && irqs_disabled()
281 && !oops_in_progress);
Jens Axboe3d442232008-06-26 11:21:34 +0200282
Linus Torvalds80538712015-02-11 12:42:10 -0800283 csd = &csd_stack;
284 if (!wait) {
285 csd = this_cpu_ptr(&csd_data);
286 csd_lock(csd);
287 }
288
289 err = generic_exec_single(cpu, csd, func, info);
290
291 if (wait)
292 csd_lock_wait(csd);
Jens Axboe3d442232008-06-26 11:21:34 +0200293
294 put_cpu();
Ingo Molnar0b13fda2009-02-25 16:52:11 +0100295
H. Peter Anvinf73be6d2008-08-25 17:07:14 -0700296 return err;
Jens Axboe3d442232008-06-26 11:21:34 +0200297}
298EXPORT_SYMBOL(smp_call_function_single);
299
Frederic Weisbeckerd7877c02014-02-24 16:39:59 +0100300/**
Frederic Weisbeckerc46fff22014-02-24 16:40:02 +0100301 * smp_call_function_single_async(): Run an asynchronous function on a
302 * specific CPU.
Frederic Weisbeckerd7877c02014-02-24 16:39:59 +0100303 * @cpu: The CPU to run on.
304 * @csd: Pre-allocated and setup data structure
Frederic Weisbeckerd7877c02014-02-24 16:39:59 +0100305 *
Frederic Weisbeckerc46fff22014-02-24 16:40:02 +0100306 * Like smp_call_function_single(), but the call is asynchonous and
307 * can thus be done from contexts with disabled interrupts.
308 *
309 * The caller passes his own pre-allocated data structure
310 * (ie: embedded in an object) and is responsible for synchronizing it
311 * such that the IPIs performed on the @csd are strictly serialized.
312 *
313 * NOTE: Be careful, there is unfortunately no current debugging facility to
314 * validate the correctness of this serialization.
Frederic Weisbeckerd7877c02014-02-24 16:39:59 +0100315 */
Frederic Weisbeckerc46fff22014-02-24 16:40:02 +0100316int smp_call_function_single_async(int cpu, struct call_single_data *csd)
Frederic Weisbeckerd7877c02014-02-24 16:39:59 +0100317{
318 int err = 0;
Frederic Weisbeckerd7877c02014-02-24 16:39:59 +0100319
Frederic Weisbeckerfce8ad12014-02-24 16:40:01 +0100320 preempt_disable();
Linus Torvalds80538712015-02-11 12:42:10 -0800321
322 /* We could deadlock if we have to wait here with interrupts disabled! */
323 if (WARN_ON_ONCE(csd->flags & CSD_FLAG_LOCK))
324 csd_lock_wait(csd);
325
326 csd->flags = CSD_FLAG_LOCK;
327 smp_wmb();
328
329 err = generic_exec_single(cpu, csd, csd->func, csd->info);
Frederic Weisbeckerfce8ad12014-02-24 16:40:01 +0100330 preempt_enable();
Frederic Weisbeckerd7877c02014-02-24 16:39:59 +0100331
332 return err;
333}
Frederic Weisbeckerc46fff22014-02-24 16:40:02 +0100334EXPORT_SYMBOL_GPL(smp_call_function_single_async);
Frederic Weisbeckerd7877c02014-02-24 16:39:59 +0100335
Rusty Russell2ea6dec2009-11-17 14:27:27 -0800336/*
337 * smp_call_function_any - Run a function on any of the given cpus
338 * @mask: The mask of cpus it can run on.
339 * @func: The function to run. This must be fast and non-blocking.
340 * @info: An arbitrary pointer to pass to the function.
341 * @wait: If true, wait until function has completed.
342 *
343 * Returns 0 on success, else a negative status code (if no cpus were online).
Rusty Russell2ea6dec2009-11-17 14:27:27 -0800344 *
345 * Selection preference:
346 * 1) current cpu if in @mask
347 * 2) any cpu of current node if in @mask
348 * 3) any other online cpu in @mask
349 */
350int smp_call_function_any(const struct cpumask *mask,
David Howells3a5f65d2010-10-27 17:28:36 +0100351 smp_call_func_t func, void *info, int wait)
Rusty Russell2ea6dec2009-11-17 14:27:27 -0800352{
353 unsigned int cpu;
354 const struct cpumask *nodemask;
355 int ret;
356
357 /* Try for same CPU (cheapest) */
358 cpu = get_cpu();
359 if (cpumask_test_cpu(cpu, mask))
360 goto call;
361
362 /* Try for same node. */
David Johnaf2422c2010-01-15 17:01:23 -0800363 nodemask = cpumask_of_node(cpu_to_node(cpu));
Rusty Russell2ea6dec2009-11-17 14:27:27 -0800364 for (cpu = cpumask_first_and(nodemask, mask); cpu < nr_cpu_ids;
365 cpu = cpumask_next_and(cpu, nodemask, mask)) {
366 if (cpu_online(cpu))
367 goto call;
368 }
369
370 /* Any online will do: smp_call_function_single handles nr_cpu_ids. */
371 cpu = cpumask_any_and(mask, cpu_online_mask);
372call:
373 ret = smp_call_function_single(cpu, func, info, wait);
374 put_cpu();
375 return ret;
376}
377EXPORT_SYMBOL_GPL(smp_call_function_any);
378
Jens Axboe3d442232008-06-26 11:21:34 +0200379/**
Rusty Russell54b11e62008-12-30 09:05:16 +1030380 * smp_call_function_many(): Run a function on a set of other CPUs.
381 * @mask: The set of cpus to run on (only runs on online subset).
Jens Axboe3d442232008-06-26 11:21:34 +0200382 * @func: The function to run. This must be fast and non-blocking.
383 * @info: An arbitrary pointer to pass to the function.
Ingo Molnar0b13fda2009-02-25 16:52:11 +0100384 * @wait: If true, wait (atomically) until function has completed
385 * on other CPUs.
Jens Axboe3d442232008-06-26 11:21:34 +0200386 *
Sheng Yang72f279b2009-10-22 19:19:34 +0800387 * If @wait is true, then returns once @func has returned.
Jens Axboe3d442232008-06-26 11:21:34 +0200388 *
389 * You must not call this function with disabled interrupts or from a
390 * hardware interrupt handler or from a bottom half handler. Preemption
391 * must be disabled when calling this function.
392 */
Rusty Russell54b11e62008-12-30 09:05:16 +1030393void smp_call_function_many(const struct cpumask *mask,
David Howells3a5f65d2010-10-27 17:28:36 +0100394 smp_call_func_t func, void *info, bool wait)
Jens Axboe3d442232008-06-26 11:21:34 +0200395{
Andrew Mortone1d12f32013-04-30 15:27:28 -0700396 struct call_function_data *cfd;
Shaohua Li9a46ad62013-02-21 16:43:03 -0800397 int cpu, next_cpu, this_cpu = smp_processor_id();
Jens Axboe3d442232008-06-26 11:21:34 +0200398
Suresh Siddha269c8612009-08-19 18:05:35 -0700399 /*
400 * Can deadlock when called with interrupts disabled.
401 * We allow cpu's that are not yet online though, as no one else can
402 * send smp call function interrupt to this cpu and as such deadlocks
403 * can't happen.
404 */
405 WARN_ON_ONCE(cpu_online(this_cpu) && irqs_disabled()
Tejun Heobd924e82011-01-20 12:07:13 +0100406 && !oops_in_progress && !early_boot_irqs_disabled);
Jens Axboe3d442232008-06-26 11:21:34 +0200407
Milton Miller723aae22011-03-15 13:27:17 -0600408 /* Try to fastpath. So, what's a CPU they want? Ignoring this one. */
Rusty Russell54b11e62008-12-30 09:05:16 +1030409 cpu = cpumask_first_and(mask, cpu_online_mask);
Ingo Molnar0b13fda2009-02-25 16:52:11 +0100410 if (cpu == this_cpu)
Rusty Russell54b11e62008-12-30 09:05:16 +1030411 cpu = cpumask_next_and(cpu, mask, cpu_online_mask);
Ingo Molnar0b13fda2009-02-25 16:52:11 +0100412
Rusty Russell54b11e62008-12-30 09:05:16 +1030413 /* No online cpus? We're done. */
414 if (cpu >= nr_cpu_ids)
415 return;
Jens Axboe3d442232008-06-26 11:21:34 +0200416
Rusty Russell54b11e62008-12-30 09:05:16 +1030417 /* Do we have another CPU which isn't us? */
418 next_cpu = cpumask_next_and(cpu, mask, cpu_online_mask);
Ingo Molnar0b13fda2009-02-25 16:52:11 +0100419 if (next_cpu == this_cpu)
Rusty Russell54b11e62008-12-30 09:05:16 +1030420 next_cpu = cpumask_next_and(next_cpu, mask, cpu_online_mask);
421
422 /* Fastpath: do that cpu by itself. */
423 if (next_cpu >= nr_cpu_ids) {
424 smp_call_function_single(cpu, func, info, wait);
425 return;
Jens Axboe3d442232008-06-26 11:21:34 +0200426 }
427
Christoph Lameterbb964a92014-08-17 12:30:24 -0500428 cfd = this_cpu_ptr(&cfd_data);
Milton Miller45a57912011-03-15 13:27:16 -0600429
Andrew Mortone1d12f32013-04-30 15:27:28 -0700430 cpumask_and(cfd->cpumask, mask, cpu_online_mask);
431 cpumask_clear_cpu(this_cpu, cfd->cpumask);
Milton Miller723aae22011-03-15 13:27:17 -0600432
433 /* Some callers race with other cpus changing the passed mask */
Andrew Mortone1d12f32013-04-30 15:27:28 -0700434 if (unlikely(!cpumask_weight(cfd->cpumask)))
Milton Miller723aae22011-03-15 13:27:17 -0600435 return;
Anton Blanchard6dc19892011-01-20 14:44:33 -0800436
Andrew Mortone1d12f32013-04-30 15:27:28 -0700437 for_each_cpu(cpu, cfd->cpumask) {
438 struct call_single_data *csd = per_cpu_ptr(cfd->csd, cpu);
Shaohua Li9a46ad62013-02-21 16:43:03 -0800439
440 csd_lock(csd);
Linus Torvalds80538712015-02-11 12:42:10 -0800441 if (wait)
442 csd->flags |= CSD_FLAG_SYNCHRONOUS;
Shaohua Li9a46ad62013-02-21 16:43:03 -0800443 csd->func = func;
444 csd->info = info;
Christoph Hellwig6897fc22014-01-30 15:45:47 -0800445 llist_add(&csd->llist, &per_cpu(call_single_queue, cpu));
Shaohua Li9a46ad62013-02-21 16:43:03 -0800446 }
Suresh Siddha561920a02008-10-30 18:28:41 +0100447
Jens Axboe3d442232008-06-26 11:21:34 +0200448 /* Send a message to all CPUs in the map */
Roman Gushchin73f94552014-01-30 15:45:48 -0800449 arch_send_call_function_ipi_mask(cfd->cpumask);
Jens Axboe3d442232008-06-26 11:21:34 +0200450
Shaohua Li9a46ad62013-02-21 16:43:03 -0800451 if (wait) {
Andrew Mortone1d12f32013-04-30 15:27:28 -0700452 for_each_cpu(cpu, cfd->cpumask) {
453 struct call_single_data *csd;
454
455 csd = per_cpu_ptr(cfd->csd, cpu);
Shaohua Li9a46ad62013-02-21 16:43:03 -0800456 csd_lock_wait(csd);
457 }
458 }
Jens Axboe3d442232008-06-26 11:21:34 +0200459}
Rusty Russell54b11e62008-12-30 09:05:16 +1030460EXPORT_SYMBOL(smp_call_function_many);
Jens Axboe3d442232008-06-26 11:21:34 +0200461
462/**
463 * smp_call_function(): Run a function on all other CPUs.
464 * @func: The function to run. This must be fast and non-blocking.
465 * @info: An arbitrary pointer to pass to the function.
Ingo Molnar0b13fda2009-02-25 16:52:11 +0100466 * @wait: If true, wait (atomically) until function has completed
467 * on other CPUs.
Jens Axboe3d442232008-06-26 11:21:34 +0200468 *
Rusty Russell54b11e62008-12-30 09:05:16 +1030469 * Returns 0.
Jens Axboe3d442232008-06-26 11:21:34 +0200470 *
471 * If @wait is true, then returns once @func has returned; otherwise
Sheng Yang72f279b2009-10-22 19:19:34 +0800472 * it returns just before the target cpu calls @func.
Jens Axboe3d442232008-06-26 11:21:34 +0200473 *
474 * You must not call this function with disabled interrupts or from a
475 * hardware interrupt handler or from a bottom half handler.
476 */
David Howells3a5f65d2010-10-27 17:28:36 +0100477int smp_call_function(smp_call_func_t func, void *info, int wait)
Jens Axboe3d442232008-06-26 11:21:34 +0200478{
Jens Axboe3d442232008-06-26 11:21:34 +0200479 preempt_disable();
Rusty Russell54b11e62008-12-30 09:05:16 +1030480 smp_call_function_many(cpu_online_mask, func, info, wait);
Jens Axboe3d442232008-06-26 11:21:34 +0200481 preempt_enable();
Ingo Molnar0b13fda2009-02-25 16:52:11 +0100482
Rusty Russell54b11e62008-12-30 09:05:16 +1030483 return 0;
Jens Axboe3d442232008-06-26 11:21:34 +0200484}
485EXPORT_SYMBOL(smp_call_function);
Amerigo Wang351f8f82011-01-12 16:59:39 -0800486
Amerigo Wang34db18a02011-03-22 16:34:06 -0700487/* Setup configured maximum number of CPUs to activate */
488unsigned int setup_max_cpus = NR_CPUS;
489EXPORT_SYMBOL(setup_max_cpus);
490
491
492/*
493 * Setup routine for controlling SMP activation
494 *
495 * Command-line option of "nosmp" or "maxcpus=0" will disable SMP
496 * activation entirely (the MPS table probe still happens, though).
497 *
498 * Command-line option of "maxcpus=<NUM>", where <NUM> is an integer
499 * greater than 0, limits the maximum number of CPUs activated in
500 * SMP mode to <NUM>.
501 */
502
503void __weak arch_disable_smp_support(void) { }
504
505static int __init nosmp(char *str)
506{
507 setup_max_cpus = 0;
508 arch_disable_smp_support();
509
510 return 0;
511}
512
513early_param("nosmp", nosmp);
514
515/* this is hard limit */
516static int __init nrcpus(char *str)
517{
518 int nr_cpus;
519
520 get_option(&str, &nr_cpus);
521 if (nr_cpus > 0 && nr_cpus < nr_cpu_ids)
522 nr_cpu_ids = nr_cpus;
523
524 return 0;
525}
526
527early_param("nr_cpus", nrcpus);
528
529static int __init maxcpus(char *str)
530{
531 get_option(&str, &setup_max_cpus);
532 if (setup_max_cpus == 0)
533 arch_disable_smp_support();
534
535 return 0;
536}
537
538early_param("maxcpus", maxcpus);
539
Channagoud Kadabi85b8fdf2016-08-30 15:08:28 -0700540static int __init boot_cpus(char *str)
541{
542 alloc_bootmem_cpumask_var(&boot_cpu_mask);
543 if (cpulist_parse(str, boot_cpu_mask) < 0) {
544 pr_warn("SMP: Incorrect boot_cpus cpumask\n");
545 return -EINVAL;
546 }
547 have_boot_cpu_mask = true;
548 return 0;
549}
550
551early_param("boot_cpus", boot_cpus);
552
Amerigo Wang34db18a02011-03-22 16:34:06 -0700553/* Setup number of possible processor ids */
554int nr_cpu_ids __read_mostly = NR_CPUS;
555EXPORT_SYMBOL(nr_cpu_ids);
556
557/* An arch may set nr_cpu_ids earlier if needed, so this would be redundant */
558void __init setup_nr_cpu_ids(void)
559{
560 nr_cpu_ids = find_last_bit(cpumask_bits(cpu_possible_mask),NR_CPUS) + 1;
561}
562
Borislav Petkova17bce42013-09-30 11:56:24 +0200563void __weak smp_announce(void)
564{
565 printk(KERN_INFO "Brought up %d CPUs\n", num_online_cpus());
566}
567
Channagoud Kadabi85b8fdf2016-08-30 15:08:28 -0700568static inline bool boot_cpu(int cpu)
569{
570 if (!have_boot_cpu_mask)
571 return true;
572
573 return cpumask_test_cpu(cpu, boot_cpu_mask);
574}
575
576static inline void free_boot_cpu_mask(void)
577{
578 if (have_boot_cpu_mask) /* Allocated from boot_cpus() */
579 free_bootmem_cpumask_var(boot_cpu_mask);
580}
581
Amerigo Wang34db18a02011-03-22 16:34:06 -0700582/* Called by boot processor to activate the rest. */
583void __init smp_init(void)
584{
585 unsigned int cpu;
586
Suresh Siddha3bb5d2e2012-04-20 17:08:50 -0700587 idle_threads_init();
Thomas Gleixner4cb28ce2016-02-26 18:43:38 +0000588 cpuhp_threads_init();
Suresh Siddha3bb5d2e2012-04-20 17:08:50 -0700589
Amerigo Wang34db18a02011-03-22 16:34:06 -0700590 /* FIXME: This should be done in userspace --RR */
591 for_each_present_cpu(cpu) {
592 if (num_online_cpus() >= setup_max_cpus)
593 break;
Channagoud Kadabi85b8fdf2016-08-30 15:08:28 -0700594 if (!cpu_online(cpu) && boot_cpu(cpu))
Amerigo Wang34db18a02011-03-22 16:34:06 -0700595 cpu_up(cpu);
596 }
597
Channagoud Kadabi85b8fdf2016-08-30 15:08:28 -0700598 free_boot_cpu_mask();
599
Thomas Gleixnerc504b9f2018-08-07 08:19:57 +0200600 /* Final decision about SMT support */
601 cpu_smt_check_topology();
Amerigo Wang34db18a02011-03-22 16:34:06 -0700602 /* Any cleanup work */
Borislav Petkova17bce42013-09-30 11:56:24 +0200603 smp_announce();
Amerigo Wang34db18a02011-03-22 16:34:06 -0700604 smp_cpus_done(setup_max_cpus);
605}
606
Amerigo Wang351f8f82011-01-12 16:59:39 -0800607/*
Tejun Heobd924e82011-01-20 12:07:13 +0100608 * Call a function on all processors. May be used during early boot while
609 * early_boot_irqs_disabled is set. Use local_irq_save/restore() instead
610 * of local_irq_disable/enable().
Amerigo Wang351f8f82011-01-12 16:59:39 -0800611 */
612int on_each_cpu(void (*func) (void *info), void *info, int wait)
613{
Tejun Heobd924e82011-01-20 12:07:13 +0100614 unsigned long flags;
Amerigo Wang351f8f82011-01-12 16:59:39 -0800615 int ret = 0;
616
617 preempt_disable();
618 ret = smp_call_function(func, info, wait);
Tejun Heobd924e82011-01-20 12:07:13 +0100619 local_irq_save(flags);
Amerigo Wang351f8f82011-01-12 16:59:39 -0800620 func(info);
Tejun Heobd924e82011-01-20 12:07:13 +0100621 local_irq_restore(flags);
Amerigo Wang351f8f82011-01-12 16:59:39 -0800622 preempt_enable();
623 return ret;
624}
625EXPORT_SYMBOL(on_each_cpu);
Gilad Ben-Yossef3fc498f2012-03-28 14:42:43 -0700626
627/**
628 * on_each_cpu_mask(): Run a function on processors specified by
629 * cpumask, which may include the local processor.
630 * @mask: The set of cpus to run on (only runs on online subset).
631 * @func: The function to run. This must be fast and non-blocking.
632 * @info: An arbitrary pointer to pass to the function.
633 * @wait: If true, wait (atomically) until function has completed
634 * on other CPUs.
635 *
636 * If @wait is true, then returns once @func has returned.
637 *
David Daney202da402013-09-11 14:23:29 -0700638 * You must not call this function with disabled interrupts or from a
639 * hardware interrupt handler or from a bottom half handler. The
640 * exception is that it may be used during early boot while
641 * early_boot_irqs_disabled is set.
Gilad Ben-Yossef3fc498f2012-03-28 14:42:43 -0700642 */
643void on_each_cpu_mask(const struct cpumask *mask, smp_call_func_t func,
644 void *info, bool wait)
645{
646 int cpu = get_cpu();
647
648 smp_call_function_many(mask, func, info, wait);
649 if (cpumask_test_cpu(cpu, mask)) {
David Daney202da402013-09-11 14:23:29 -0700650 unsigned long flags;
651 local_irq_save(flags);
Gilad Ben-Yossef3fc498f2012-03-28 14:42:43 -0700652 func(info);
David Daney202da402013-09-11 14:23:29 -0700653 local_irq_restore(flags);
Gilad Ben-Yossef3fc498f2012-03-28 14:42:43 -0700654 }
655 put_cpu();
656}
657EXPORT_SYMBOL(on_each_cpu_mask);
Gilad Ben-Yossefb3a7e982012-03-28 14:42:43 -0700658
659/*
660 * on_each_cpu_cond(): Call a function on each processor for which
661 * the supplied function cond_func returns true, optionally waiting
662 * for all the required CPUs to finish. This may include the local
663 * processor.
664 * @cond_func: A callback function that is passed a cpu id and
665 * the the info parameter. The function is called
666 * with preemption disabled. The function should
667 * return a blooean value indicating whether to IPI
668 * the specified CPU.
669 * @func: The function to run on all applicable CPUs.
670 * This must be fast and non-blocking.
671 * @info: An arbitrary pointer to pass to both functions.
672 * @wait: If true, wait (atomically) until function has
673 * completed on other CPUs.
674 * @gfp_flags: GFP flags to use when allocating the cpumask
675 * used internally by the function.
676 *
677 * The function might sleep if the GFP flags indicates a non
678 * atomic allocation is allowed.
679 *
680 * Preemption is disabled to protect against CPUs going offline but not online.
681 * CPUs going online during the call will not be seen or sent an IPI.
682 *
683 * You must not call this function with disabled interrupts or
684 * from a hardware interrupt handler or from a bottom half handler.
685 */
686void on_each_cpu_cond(bool (*cond_func)(int cpu, void *info),
687 smp_call_func_t func, void *info, bool wait,
688 gfp_t gfp_flags)
689{
690 cpumask_var_t cpus;
691 int cpu, ret;
692
Mel Gormand0164ad2015-11-06 16:28:21 -0800693 might_sleep_if(gfpflags_allow_blocking(gfp_flags));
Gilad Ben-Yossefb3a7e982012-03-28 14:42:43 -0700694
695 if (likely(zalloc_cpumask_var(&cpus, (gfp_flags|__GFP_NOWARN)))) {
696 preempt_disable();
697 for_each_online_cpu(cpu)
698 if (cond_func(cpu, info))
699 cpumask_set_cpu(cpu, cpus);
700 on_each_cpu_mask(cpus, func, info, wait);
701 preempt_enable();
702 free_cpumask_var(cpus);
703 } else {
704 /*
705 * No free cpumask, bother. No matter, we'll
706 * just have to IPI them one by one.
707 */
708 preempt_disable();
709 for_each_online_cpu(cpu)
710 if (cond_func(cpu, info)) {
711 ret = smp_call_function_single(cpu, func,
712 info, wait);
Sasha Levin618fde872014-08-06 16:08:14 -0700713 WARN_ON_ONCE(ret);
Gilad Ben-Yossefb3a7e982012-03-28 14:42:43 -0700714 }
715 preempt_enable();
716 }
717}
718EXPORT_SYMBOL(on_each_cpu_cond);
Thomas Gleixnerf37f4352012-05-07 17:59:48 +0000719
720static void do_nothing(void *unused)
721{
722}
723
724/**
725 * kick_all_cpus_sync - Force all cpus out of idle
726 *
727 * Used to synchronize the update of pm_idle function pointer. It's
728 * called after the pointer is updated and returns after the dummy
729 * callback function has been executed on all cpus. The execution of
730 * the function can only happen on the remote cpus after they have
731 * left the idle function which had been called via pm_idle function
732 * pointer. So it's guaranteed that nothing uses the previous pointer
733 * anymore.
734 */
735void kick_all_cpus_sync(void)
736{
737 /* Make sure the change is visible before we kick the cpus */
738 smp_mb();
739 smp_call_function(do_nothing, NULL, 1);
740}
741EXPORT_SYMBOL_GPL(kick_all_cpus_sync);
Chuansheng Liuc6f44592014-09-04 15:17:54 +0800742
743/**
744 * wake_up_all_idle_cpus - break all cpus out of idle
745 * wake_up_all_idle_cpus try to break all cpus which is in idle state even
746 * including idle polling cpus, for non-idle cpus, we will do nothing
747 * for them.
748 */
749void wake_up_all_idle_cpus(void)
750{
751 int cpu;
752
753 preempt_disable();
754 for_each_online_cpu(cpu) {
755 if (cpu == smp_processor_id())
756 continue;
Stephen Boyd4aa10d12017-09-07 11:42:30 -0700757 if (suspend_freeze_state == FREEZE_STATE_ENTER ||
758 !cpu_isolated(cpu))
Olav Haugand8600952016-05-29 19:53:00 -0700759 wake_up_if_idle(cpu);
Chuansheng Liuc6f44592014-09-04 15:17:54 +0800760 }
761 preempt_enable();
762}
763EXPORT_SYMBOL_GPL(wake_up_all_idle_cpus);
Juergen Grossdf8ce9d2016-08-29 08:48:44 +0200764
765/**
766 * smp_call_on_cpu - Call a function on a specific cpu
767 *
768 * Used to call a function on a specific cpu and wait for it to return.
769 * Optionally make sure the call is done on a specified physical cpu via vcpu
770 * pinning in order to support virtualized environments.
771 */
772struct smp_call_on_cpu_struct {
773 struct work_struct work;
774 struct completion done;
775 int (*func)(void *);
776 void *data;
777 int ret;
778 int cpu;
779};
780
781static void smp_call_on_cpu_callback(struct work_struct *work)
782{
783 struct smp_call_on_cpu_struct *sscs;
784
785 sscs = container_of(work, struct smp_call_on_cpu_struct, work);
786 if (sscs->cpu >= 0)
787 hypervisor_pin_vcpu(sscs->cpu);
788 sscs->ret = sscs->func(sscs->data);
789 if (sscs->cpu >= 0)
790 hypervisor_pin_vcpu(-1);
791
792 complete(&sscs->done);
793}
794
795int smp_call_on_cpu(unsigned int cpu, int (*func)(void *), void *par, bool phys)
796{
797 struct smp_call_on_cpu_struct sscs = {
Juergen Grossdf8ce9d2016-08-29 08:48:44 +0200798 .done = COMPLETION_INITIALIZER_ONSTACK(sscs.done),
799 .func = func,
800 .data = par,
801 .cpu = phys ? cpu : -1,
802 };
803
Peter Zijlstra8db54942016-09-11 10:36:26 +0200804 INIT_WORK_ONSTACK(&sscs.work, smp_call_on_cpu_callback);
805
Juergen Grossdf8ce9d2016-08-29 08:48:44 +0200806 if (cpu >= nr_cpu_ids || !cpu_online(cpu))
807 return -ENXIO;
808
809 queue_work_on(cpu, system_wq, &sscs.work);
810 wait_for_completion(&sscs.done);
811
812 return sscs.ret;
813}
814EXPORT_SYMBOL_GPL(smp_call_on_cpu);