blob: 62b0f2a1b1e84b846c87856fb4b4ae97094b3a18 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Intel SMP support routines.
3 *
4 * (c) 1995 Alan Cox, Building #3 <alan@redhat.com>
5 * (c) 1998-99, 2000 Ingo Molnar <mingo@redhat.com>
6 * (c) 2002,2003 Andi Kleen, SuSE Labs.
7 *
8 * This code is released under the GNU General Public License version 2 or
9 * later.
10 */
11
12#include <linux/init.h>
13
14#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/delay.h>
16#include <linux/spinlock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/smp.h>
18#include <linux/kernel_stat.h>
19#include <linux/mc146818rtc.h>
20#include <linux/interrupt.h>
21
22#include <asm/mtrr.h>
23#include <asm/pgalloc.h>
24#include <asm/tlbflush.h>
25#include <asm/mach_apic.h>
26#include <asm/mmu_context.h>
27#include <asm/proto.h>
Andi Kleena8ab26f2005-04-16 15:25:19 -070028#include <asm/apicdef.h>
Andi Kleen95833c82006-01-11 22:44:36 +010029#include <asm/idle.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31/*
Thomas Gleixner16da2f92008-01-30 13:30:27 +010032 * Smarter SMP flushing macros.
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 * c/o Linus Torvalds.
34 *
35 * These mean you can really definitely utterly forget about
36 * writing to user space from interrupts. (Its not allowed anyway).
37 *
38 * Optimizations Manfred Spraul <manfred@colorfullife.com>
Andi Kleene5bc8b62005-09-12 18:49:24 +020039 *
Thomas Gleixner16da2f92008-01-30 13:30:27 +010040 * More scalable flush, from Andi Kleen
Andi Kleene5bc8b62005-09-12 18:49:24 +020041 *
Thomas Gleixner16da2f92008-01-30 13:30:27 +010042 * To avoid global state use 8 different call vectors.
43 * Each CPU uses a specific vector to trigger flushes on other
44 * CPUs. Depending on the received vector the target CPUs look into
Andi Kleene5bc8b62005-09-12 18:49:24 +020045 * the right per cpu variable for the flush data.
46 *
Thomas Gleixner16da2f92008-01-30 13:30:27 +010047 * With more than 8 CPUs they are hashed to the 8 available
48 * vectors. The limited global vector space forces us to this right now.
Andi Kleene5bc8b62005-09-12 18:49:24 +020049 * In future when interrupts are split into per CPU domains this could be
50 * fixed, at the cost of triggering multiple IPIs in some cases.
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 */
52
Andi Kleene5bc8b62005-09-12 18:49:24 +020053union smp_flush_state {
54 struct {
55 cpumask_t flush_cpumask;
56 struct mm_struct *flush_mm;
57 unsigned long flush_va;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#define FLUSH_ALL -1ULL
Andi Kleene5bc8b62005-09-12 18:49:24 +020059 spinlock_t tlbstate_lock;
60 };
61 char pad[SMP_CACHE_BYTES];
62} ____cacheline_aligned;
63
64/* State is put into the per CPU data section, but padded
65 to a full cache line because other CPUs can access it and we don't
66 want false sharing in the per cpu data segment. */
67static DEFINE_PER_CPU(union smp_flush_state, flush_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69/*
Thomas Gleixner16da2f92008-01-30 13:30:27 +010070 * We cannot call mmdrop() because we are in interrupt context,
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 * instead update mm->cpu_vm_mask.
72 */
Andi Kleene5bc8b62005-09-12 18:49:24 +020073static inline void leave_mm(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -070074{
75 if (read_pda(mmu_state) == TLBSTATE_OK)
76 BUG();
Brian Gerstb1fc5132006-03-25 16:31:13 +010077 cpu_clear(cpu, read_pda(active_mm)->cpu_vm_mask);
Linus Torvaldse3ebadd2007-05-07 08:44:24 -070078 load_cr3(swapper_pg_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079}
80
81/*
82 *
83 * The flush IPI assumes that a thread switch happens in this order:
84 * [cpu0: the cpu that switches]
85 * 1) switch_mm() either 1a) or 1b)
86 * 1a) thread switch to a different mm
Brian Gerstb1fc5132006-03-25 16:31:13 +010087 * 1a1) cpu_clear(cpu, old_mm->cpu_vm_mask);
Thomas Gleixner16da2f92008-01-30 13:30:27 +010088 * Stop ipi delivery for the old mm. This is not synchronized with
89 * the other cpus, but smp_invalidate_interrupt ignore flush ipis
90 * for the wrong mm, and in the worst case we perform a superfluous
91 * tlb flush.
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 * 1a2) set cpu mmu_state to TLBSTATE_OK
Thomas Gleixner16da2f92008-01-30 13:30:27 +010093 * Now the smp_invalidate_interrupt won't call leave_mm if cpu0
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 * was in lazy tlb mode.
95 * 1a3) update cpu active_mm
Thomas Gleixner16da2f92008-01-30 13:30:27 +010096 * Now cpu0 accepts tlb flushes for the new mm.
Brian Gerstb1fc5132006-03-25 16:31:13 +010097 * 1a4) cpu_set(cpu, new_mm->cpu_vm_mask);
Thomas Gleixner16da2f92008-01-30 13:30:27 +010098 * Now the other cpus will send tlb flush ipis.
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 * 1a4) change cr3.
100 * 1b) thread switch without mm change
101 * cpu active_mm is correct, cpu0 already handles
102 * flush ipis.
103 * 1b1) set cpu mmu_state to TLBSTATE_OK
104 * 1b2) test_and_set the cpu bit in cpu_vm_mask.
Thomas Gleixner16da2f92008-01-30 13:30:27 +0100105 * Atomically set the bit [other cpus will start sending flush ipis],
106 * and test the bit.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 * 1b3) if the bit was 0: leave_mm was called, flush the tlb.
108 * 2) switch %%esp, ie current
109 *
110 * The interrupt must handle 2 special cases:
111 * - cr3 is changed before %%esp, ie. it cannot use current->{active_,}mm.
112 * - the cpu performs speculative tlb reads, i.e. even if the cpu only
113 * runs in kernel space, the cpu could load tlb entries for user space
114 * pages.
115 *
116 * The good news is that cpu mmu_state is local to each cpu, no
117 * write/read ordering problems.
118 */
119
120/*
121 * TLB flush IPI:
122 *
123 * 1) Flush the tlb entries if the cpu uses the mm that's being flushed.
124 * 2) Leave the mm if we are in the lazy tlb mode.
Andi Kleene5bc8b62005-09-12 18:49:24 +0200125 *
126 * Interrupts are disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 */
128
Andi Kleene5bc8b62005-09-12 18:49:24 +0200129asmlinkage void smp_invalidate_interrupt(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130{
Andi Kleene5bc8b62005-09-12 18:49:24 +0200131 int cpu;
132 int sender;
133 union smp_flush_state *f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
Andi Kleene5bc8b62005-09-12 18:49:24 +0200135 cpu = smp_processor_id();
136 /*
Rusty Russell19eadf92006-06-27 02:53:44 -0700137 * orig_rax contains the negated interrupt vector.
Andi Kleene5bc8b62005-09-12 18:49:24 +0200138 * Use that to determine where the sender put the data.
139 */
Rusty Russell19eadf92006-06-27 02:53:44 -0700140 sender = ~regs->orig_rax - INVALIDATE_TLB_VECTOR_START;
Andi Kleene5bc8b62005-09-12 18:49:24 +0200141 f = &per_cpu(flush_state, sender);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Andi Kleene5bc8b62005-09-12 18:49:24 +0200143 if (!cpu_isset(cpu, f->flush_cpumask))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 goto out;
Thomas Gleixner16da2f92008-01-30 13:30:27 +0100145 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 * This was a BUG() but until someone can quote me the
147 * line from the intel manual that guarantees an IPI to
148 * multiple CPUs is retried _only_ on the erroring CPUs
149 * its staying as a return
150 *
151 * BUG();
152 */
Thomas Gleixner16da2f92008-01-30 13:30:27 +0100153
Andi Kleene5bc8b62005-09-12 18:49:24 +0200154 if (f->flush_mm == read_pda(active_mm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 if (read_pda(mmu_state) == TLBSTATE_OK) {
Andi Kleene5bc8b62005-09-12 18:49:24 +0200156 if (f->flush_va == FLUSH_ALL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 local_flush_tlb();
158 else
Andi Kleene5bc8b62005-09-12 18:49:24 +0200159 __flush_tlb_one(f->flush_va);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 } else
161 leave_mm(cpu);
162 }
Andi Kleen5df35742005-07-28 21:15:22 -0700163out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 ack_APIC_irq();
Andi Kleene5bc8b62005-09-12 18:49:24 +0200165 cpu_clear(cpu, f->flush_cpumask);
Joe Korty38e760a2007-10-17 18:04:40 +0200166 add_pda(irq_tlb_count, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167}
168
169static void flush_tlb_others(cpumask_t cpumask, struct mm_struct *mm,
170 unsigned long va)
171{
Andi Kleene5bc8b62005-09-12 18:49:24 +0200172 int sender;
173 union smp_flush_state *f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Andi Kleene5bc8b62005-09-12 18:49:24 +0200175 /* Caller has disabled preemption */
176 sender = smp_processor_id() % NUM_INVALIDATE_TLB_VECTORS;
177 f = &per_cpu(flush_state, sender);
178
Thomas Gleixner16da2f92008-01-30 13:30:27 +0100179 /*
180 * Could avoid this lock when
181 * num_online_cpus() <= NUM_INVALIDATE_TLB_VECTORS, but it is
182 * probably not worth checking this for a cache-hot lock.
183 */
Andi Kleene5bc8b62005-09-12 18:49:24 +0200184 spin_lock(&f->tlbstate_lock);
185
186 f->flush_mm = mm;
187 f->flush_va = va;
188 cpus_or(f->flush_cpumask, cpumask, f->flush_cpumask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
190 /*
191 * We have to send the IPI only to
192 * CPUs affected.
193 */
Andi Kleene5bc8b62005-09-12 18:49:24 +0200194 send_IPI_mask(cpumask, INVALIDATE_TLB_VECTOR_START + sender);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Andi Kleene5bc8b62005-09-12 18:49:24 +0200196 while (!cpus_empty(f->flush_cpumask))
197 cpu_relax();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Andi Kleene5bc8b62005-09-12 18:49:24 +0200199 f->flush_mm = NULL;
200 f->flush_va = 0;
201 spin_unlock(&f->tlbstate_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202}
Andi Kleene5bc8b62005-09-12 18:49:24 +0200203
204int __cpuinit init_smp_flush(void)
205{
206 int i;
Thomas Gleixner16da2f92008-01-30 13:30:27 +0100207
Andi Kleene5bc8b62005-09-12 18:49:24 +0200208 for_each_cpu_mask(i, cpu_possible_map) {
Alexey Dobriyan825e0372006-08-05 12:14:34 -0700209 spin_lock_init(&per_cpu(flush_state, i).tlbstate_lock);
Andi Kleene5bc8b62005-09-12 18:49:24 +0200210 }
211 return 0;
212}
Andi Kleene5bc8b62005-09-12 18:49:24 +0200213core_initcall(init_smp_flush);
Thomas Gleixner16da2f92008-01-30 13:30:27 +0100214
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215void flush_tlb_current_task(void)
216{
217 struct mm_struct *mm = current->mm;
218 cpumask_t cpu_mask;
219
220 preempt_disable();
221 cpu_mask = mm->cpu_vm_mask;
222 cpu_clear(smp_processor_id(), cpu_mask);
223
224 local_flush_tlb();
225 if (!cpus_empty(cpu_mask))
226 flush_tlb_others(cpu_mask, mm, FLUSH_ALL);
227 preempt_enable();
228}
229
230void flush_tlb_mm (struct mm_struct * mm)
231{
232 cpumask_t cpu_mask;
233
234 preempt_disable();
235 cpu_mask = mm->cpu_vm_mask;
236 cpu_clear(smp_processor_id(), cpu_mask);
237
238 if (current->active_mm == mm) {
239 if (current->mm)
240 local_flush_tlb();
241 else
242 leave_mm(smp_processor_id());
243 }
244 if (!cpus_empty(cpu_mask))
245 flush_tlb_others(cpu_mask, mm, FLUSH_ALL);
Linus Torvaldsda8f1532007-09-21 12:09:41 -0700246
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 preempt_enable();
248}
249
250void flush_tlb_page(struct vm_area_struct * vma, unsigned long va)
251{
252 struct mm_struct *mm = vma->vm_mm;
253 cpumask_t cpu_mask;
254
255 preempt_disable();
256 cpu_mask = mm->cpu_vm_mask;
257 cpu_clear(smp_processor_id(), cpu_mask);
258
259 if (current->active_mm == mm) {
260 if(current->mm)
261 __flush_tlb_one(va);
Thomas Gleixner16da2f92008-01-30 13:30:27 +0100262 else
263 leave_mm(smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 }
265
266 if (!cpus_empty(cpu_mask))
267 flush_tlb_others(cpu_mask, mm, va);
268
269 preempt_enable();
270}
271
272static void do_flush_tlb_all(void* info)
273{
274 unsigned long cpu = smp_processor_id();
275
276 __flush_tlb_all();
277 if (read_pda(mmu_state) == TLBSTATE_LAZY)
278 leave_mm(cpu);
279}
280
281void flush_tlb_all(void)
282{
283 on_each_cpu(do_flush_tlb_all, NULL, 1, 1);
284}
285
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286/*
287 * this function sends a 'reschedule' IPI to another CPU.
288 * it goes straight through and wastes no time serializing
289 * anything. Worst case is that we lose a reschedule ...
290 */
291
292void smp_send_reschedule(int cpu)
293{
294 send_IPI_mask(cpumask_of_cpu(cpu), RESCHEDULE_VECTOR);
295}
296
297/*
298 * Structure and data for smp_call_function(). This is designed to minimise
299 * static memory requirements. It also looks cleaner.
300 */
301static DEFINE_SPINLOCK(call_lock);
302
303struct call_data_struct {
304 void (*func) (void *info);
305 void *info;
306 atomic_t started;
307 atomic_t finished;
308 int wait;
309};
310
311static struct call_data_struct * call_data;
312
Ashok Raj884d9e42005-06-25 14:55:02 -0700313void lock_ipi_call_lock(void)
314{
315 spin_lock_irq(&call_lock);
316}
317
318void unlock_ipi_call_lock(void)
319{
320 spin_unlock_irq(&call_lock);
321}
322
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323/*
Laurent Vivier66d16ed2007-10-19 20:35:03 +0200324 * this function sends a 'generic call function' IPI to all other CPU
325 * of the system defined in the mask.
Eric W. Biederman3d483f42005-07-29 14:03:29 -0700326 */
Thomas Gleixner16da2f92008-01-30 13:30:27 +0100327static int __smp_call_function_mask(cpumask_t mask,
328 void (*func)(void *), void *info,
329 int wait)
Eric W. Biederman3d483f42005-07-29 14:03:29 -0700330{
331 struct call_data_struct data;
Laurent Vivier66d16ed2007-10-19 20:35:03 +0200332 cpumask_t allbutself;
333 int cpus;
334
335 allbutself = cpu_online_map;
336 cpu_clear(smp_processor_id(), allbutself);
337
338 cpus_and(mask, mask, allbutself);
339 cpus = cpus_weight(mask);
340
341 if (!cpus)
342 return 0;
Eric W. Biederman3d483f42005-07-29 14:03:29 -0700343
344 data.func = func;
345 data.info = info;
346 atomic_set(&data.started, 0);
347 data.wait = wait;
348 if (wait)
349 atomic_set(&data.finished, 0);
350
351 call_data = &data;
352 wmb();
Laurent Vivier66d16ed2007-10-19 20:35:03 +0200353
354 /* Send a message to other CPUs */
355 if (cpus_equal(mask, allbutself))
356 send_IPI_allbutself(CALL_FUNCTION_VECTOR);
357 else
358 send_IPI_mask(mask, CALL_FUNCTION_VECTOR);
Eric W. Biederman3d483f42005-07-29 14:03:29 -0700359
360 /* Wait for response */
361 while (atomic_read(&data.started) != cpus)
362 cpu_relax();
363
364 if (!wait)
Laurent Vivier66d16ed2007-10-19 20:35:03 +0200365 return 0;
Eric W. Biederman3d483f42005-07-29 14:03:29 -0700366
367 while (atomic_read(&data.finished) != cpus)
368 cpu_relax();
Laurent Vivier66d16ed2007-10-19 20:35:03 +0200369
370 return 0;
Eric W. Biederman3d483f42005-07-29 14:03:29 -0700371}
Laurent Vivier66d16ed2007-10-19 20:35:03 +0200372/**
373 * smp_call_function_mask(): Run a function on a set of other CPUs.
374 * @mask: The set of cpus to run on. Must not include the current cpu.
375 * @func: The function to run. This must be fast and non-blocking.
376 * @info: An arbitrary pointer to pass to the function.
377 * @wait: If true, wait (atomically) until function has completed on other CPUs.
378 *
379 * Returns 0 on success, else a negative status code.
380 *
381 * If @wait is true, then returns once @func has returned; otherwise
382 * it returns just before the target cpu calls @func.
383 *
384 * You must not call this function with disabled interrupts or from a
385 * hardware interrupt handler or from a bottom half handler.
386 */
387int smp_call_function_mask(cpumask_t mask,
388 void (*func)(void *), void *info,
389 int wait)
390{
391 int ret;
392
393 /* Can deadlock when called with interrupts disabled */
394 WARN_ON(irqs_disabled());
395
396 spin_lock(&call_lock);
397 ret = __smp_call_function_mask(mask, func, info, wait);
398 spin_unlock(&call_lock);
399 return ret;
400}
401EXPORT_SYMBOL(smp_call_function_mask);
Eric W. Biederman3d483f42005-07-29 14:03:29 -0700402
403/*
Avi Kivity40555512007-07-09 17:11:49 +0300404 * smp_call_function_single - Run a function on a specific CPU
Eric W. Biederman3d483f42005-07-29 14:03:29 -0700405 * @func: The function to run. This must be fast and non-blocking.
406 * @info: An arbitrary pointer to pass to the function.
407 * @nonatomic: Currently unused.
408 * @wait: If true, wait until function has completed on other CPUs.
409 *
410 * Retrurns 0 on success, else a negative status code.
411 *
412 * Does not return until the remote CPU is nearly ready to execute <func>
413 * or is or has executed.
414 */
415
416int smp_call_function_single (int cpu, void (*func) (void *info), void *info,
Thomas Gleixner16da2f92008-01-30 13:30:27 +0100417 int nonatomic, int wait)
Eric W. Biederman3d483f42005-07-29 14:03:29 -0700418{
419 /* prevent preemption and reschedule on another processor */
Thomas Gleixner16da2f92008-01-30 13:30:27 +0100420 int ret, me = get_cpu();
Andrew Mortona38a44c2006-12-06 20:38:16 -0800421
422 /* Can deadlock when called with interrupts disabled */
423 WARN_ON(irqs_disabled());
424
Avi Kivity40555512007-07-09 17:11:49 +0300425 if (cpu == me) {
426 local_irq_disable();
427 func(info);
428 local_irq_enable();
429 put_cpu();
430 return 0;
431 }
432
Laurent Vivier66d16ed2007-10-19 20:35:03 +0200433 ret = smp_call_function_mask(cpumask_of_cpu(cpu), func, info, wait);
434
Eric W. Biederman3d483f42005-07-29 14:03:29 -0700435 put_cpu();
Laurent Vivier66d16ed2007-10-19 20:35:03 +0200436 return ret;
Eric W. Biederman3d483f42005-07-29 14:03:29 -0700437}
Andi Kleen64a26a732006-12-07 02:14:19 +0100438EXPORT_SYMBOL(smp_call_function_single);
Eric W. Biederman3d483f42005-07-29 14:03:29 -0700439
440/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 * smp_call_function - run a function on all other CPUs.
442 * @func: The function to run. This must be fast and non-blocking.
443 * @info: An arbitrary pointer to pass to the function.
444 * @nonatomic: currently unused.
445 * @wait: If true, wait (atomically) until function has completed on other
446 * CPUs.
447 *
448 * Returns 0 on success, else a negative status code. Does not return until
449 * remote CPUs are nearly ready to execute func or are or have executed.
450 *
451 * You must not call this function with disabled interrupts or from a
452 * hardware interrupt handler or from a bottom half handler.
453 * Actually there are a few legal cases, like panic.
454 */
455int smp_call_function (void (*func) (void *info), void *info, int nonatomic,
456 int wait)
457{
Laurent Vivier66d16ed2007-10-19 20:35:03 +0200458 return smp_call_function_mask(cpu_online_map, func, info, wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459}
Andi Kleen2ee60e172006-06-26 13:59:44 +0200460EXPORT_SYMBOL(smp_call_function);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
Jan Beulich9964cf72007-05-02 19:27:05 +0200462static void stop_this_cpu(void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463{
Jan Beulich9964cf72007-05-02 19:27:05 +0200464 local_irq_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 /*
466 * Remove this CPU:
467 */
468 cpu_clear(smp_processor_id(), cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 disable_local_APIC();
Thomas Gleixner16da2f92008-01-30 13:30:27 +0100470 for (;;)
Jan Beulich46d13a32006-06-26 13:57:59 +0200471 halt();
Thomas Gleixner16da2f92008-01-30 13:30:27 +0100472}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
474void smp_send_stop(void)
475{
Jan Beulich9964cf72007-05-02 19:27:05 +0200476 int nolock;
477 unsigned long flags;
478
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 if (reboot_force)
480 return;
Jan Beulich9964cf72007-05-02 19:27:05 +0200481
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 /* Don't deadlock on the call lock in panic */
Jan Beulich9964cf72007-05-02 19:27:05 +0200483 nolock = !spin_trylock(&call_lock);
484 local_irq_save(flags);
Laurent Vivier66d16ed2007-10-19 20:35:03 +0200485 __smp_call_function_mask(cpu_online_map, stop_this_cpu, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 if (!nolock)
487 spin_unlock(&call_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 disable_local_APIC();
Jan Beulich9964cf72007-05-02 19:27:05 +0200489 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490}
491
492/*
493 * Reschedule call back. Nothing to do,
494 * all the work is done automatically when
495 * we return from the interrupt.
496 */
497asmlinkage void smp_reschedule_interrupt(void)
498{
499 ack_APIC_irq();
Joe Korty38e760a2007-10-17 18:04:40 +0200500 add_pda(irq_resched_count, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501}
502
503asmlinkage void smp_call_function_interrupt(void)
504{
505 void (*func) (void *info) = call_data->func;
506 void *info = call_data->info;
507 int wait = call_data->wait;
508
509 ack_APIC_irq();
510 /*
511 * Notify initiating CPU that I've grabbed the data and am
512 * about to execute the function
513 */
514 mb();
515 atomic_inc(&call_data->started);
516 /*
517 * At this point the info structure may be out of scope unless wait==1
518 */
Andi Kleen95833c82006-01-11 22:44:36 +0100519 exit_idle();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 irq_enter();
521 (*func)(info);
Joe Korty38e760a2007-10-17 18:04:40 +0200522 add_pda(irq_call_count, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 irq_exit();
524 if (wait) {
525 mb();
526 atomic_inc(&call_data->finished);
527 }
528}
Andi Kleena8ab26f2005-04-16 15:25:19 -0700529