Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/delay.h> |
| 16 | #include <linux/spinlock.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #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 Kleen | a8ab26f | 2005-04-16 15:25:19 -0700 | [diff] [blame] | 28 | #include <asm/apicdef.h> |
Andi Kleen | 95833c8 | 2006-01-11 22:44:36 +0100 | [diff] [blame] | 29 | #include <asm/idle.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | |
| 31 | /* |
Thomas Gleixner | 16da2f9 | 2008-01-30 13:30:27 +0100 | [diff] [blame] | 32 | * Smarter SMP flushing macros. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | * 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 Kleen | e5bc8b6 | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 39 | * |
Thomas Gleixner | 16da2f9 | 2008-01-30 13:30:27 +0100 | [diff] [blame] | 40 | * More scalable flush, from Andi Kleen |
Andi Kleen | e5bc8b6 | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 41 | * |
Thomas Gleixner | 16da2f9 | 2008-01-30 13:30:27 +0100 | [diff] [blame] | 42 | * 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 Kleen | e5bc8b6 | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 45 | * the right per cpu variable for the flush data. |
| 46 | * |
Thomas Gleixner | 16da2f9 | 2008-01-30 13:30:27 +0100 | [diff] [blame] | 47 | * 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 Kleen | e5bc8b6 | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 49 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | */ |
| 52 | |
Andi Kleen | e5bc8b6 | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 53 | union smp_flush_state { |
| 54 | struct { |
| 55 | cpumask_t flush_cpumask; |
| 56 | struct mm_struct *flush_mm; |
| 57 | unsigned long flush_va; |
Andi Kleen | e5bc8b6 | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 58 | spinlock_t tlbstate_lock; |
| 59 | }; |
| 60 | char pad[SMP_CACHE_BYTES]; |
| 61 | } ____cacheline_aligned; |
| 62 | |
| 63 | /* State is put into the per CPU data section, but padded |
| 64 | to a full cache line because other CPUs can access it and we don't |
| 65 | want false sharing in the per cpu data segment. */ |
| 66 | static DEFINE_PER_CPU(union smp_flush_state, flush_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | |
| 68 | /* |
Thomas Gleixner | 16da2f9 | 2008-01-30 13:30:27 +0100 | [diff] [blame] | 69 | * We cannot call mmdrop() because we are in interrupt context, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | * instead update mm->cpu_vm_mask. |
| 71 | */ |
Venki Pallipadi | bde6f5f | 2008-01-30 13:32:01 +0100 | [diff] [blame] | 72 | void leave_mm(int cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | { |
| 74 | if (read_pda(mmu_state) == TLBSTATE_OK) |
| 75 | BUG(); |
Brian Gerst | b1fc513 | 2006-03-25 16:31:13 +0100 | [diff] [blame] | 76 | cpu_clear(cpu, read_pda(active_mm)->cpu_vm_mask); |
Linus Torvalds | e3ebadd | 2007-05-07 08:44:24 -0700 | [diff] [blame] | 77 | load_cr3(swapper_pg_dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | } |
Venki Pallipadi | bde6f5f | 2008-01-30 13:32:01 +0100 | [diff] [blame] | 79 | EXPORT_SYMBOL_GPL(leave_mm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 Gerst | b1fc513 | 2006-03-25 16:31:13 +0100 | [diff] [blame] | 87 | * 1a1) cpu_clear(cpu, old_mm->cpu_vm_mask); |
Thomas Gleixner | 16da2f9 | 2008-01-30 13:30:27 +0100 | [diff] [blame] | 88 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | * 1a2) set cpu mmu_state to TLBSTATE_OK |
Thomas Gleixner | 16da2f9 | 2008-01-30 13:30:27 +0100 | [diff] [blame] | 93 | * Now the smp_invalidate_interrupt won't call leave_mm if cpu0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | * was in lazy tlb mode. |
| 95 | * 1a3) update cpu active_mm |
Thomas Gleixner | 16da2f9 | 2008-01-30 13:30:27 +0100 | [diff] [blame] | 96 | * Now cpu0 accepts tlb flushes for the new mm. |
Brian Gerst | b1fc513 | 2006-03-25 16:31:13 +0100 | [diff] [blame] | 97 | * 1a4) cpu_set(cpu, new_mm->cpu_vm_mask); |
Thomas Gleixner | 16da2f9 | 2008-01-30 13:30:27 +0100 | [diff] [blame] | 98 | * Now the other cpus will send tlb flush ipis. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | * 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 Gleixner | 16da2f9 | 2008-01-30 13:30:27 +0100 | [diff] [blame] | 105 | * Atomically set the bit [other cpus will start sending flush ipis], |
| 106 | * and test the bit. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | * 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 Kleen | e5bc8b6 | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 125 | * |
| 126 | * Interrupts are disabled. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | */ |
| 128 | |
Andi Kleen | e5bc8b6 | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 129 | asmlinkage void smp_invalidate_interrupt(struct pt_regs *regs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | { |
Andi Kleen | e5bc8b6 | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 131 | int cpu; |
| 132 | int sender; |
| 133 | union smp_flush_state *f; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | |
Andi Kleen | e5bc8b6 | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 135 | cpu = smp_processor_id(); |
| 136 | /* |
Rusty Russell | 19eadf9 | 2006-06-27 02:53:44 -0700 | [diff] [blame] | 137 | * orig_rax contains the negated interrupt vector. |
Andi Kleen | e5bc8b6 | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 138 | * Use that to determine where the sender put the data. |
| 139 | */ |
H. Peter Anvin | 65ea5b0 | 2008-01-30 13:30:56 +0100 | [diff] [blame] | 140 | sender = ~regs->orig_ax - INVALIDATE_TLB_VECTOR_START; |
Andi Kleen | e5bc8b6 | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 141 | f = &per_cpu(flush_state, sender); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | |
Andi Kleen | e5bc8b6 | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 143 | if (!cpu_isset(cpu, f->flush_cpumask)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | goto out; |
Thomas Gleixner | 16da2f9 | 2008-01-30 13:30:27 +0100 | [diff] [blame] | 145 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | * 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 Gleixner | 16da2f9 | 2008-01-30 13:30:27 +0100 | [diff] [blame] | 153 | |
Andi Kleen | e5bc8b6 | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 154 | if (f->flush_mm == read_pda(active_mm)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | if (read_pda(mmu_state) == TLBSTATE_OK) { |
Thomas Gleixner | 0b9c99b | 2008-01-30 13:30:35 +0100 | [diff] [blame] | 156 | if (f->flush_va == TLB_FLUSH_ALL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | local_flush_tlb(); |
| 158 | else |
Andi Kleen | e5bc8b6 | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 159 | __flush_tlb_one(f->flush_va); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | } else |
| 161 | leave_mm(cpu); |
| 162 | } |
Andi Kleen | 5df3574 | 2005-07-28 21:15:22 -0700 | [diff] [blame] | 163 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | ack_APIC_irq(); |
Andi Kleen | e5bc8b6 | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 165 | cpu_clear(cpu, f->flush_cpumask); |
Joe Korty | 38e760a | 2007-10-17 18:04:40 +0200 | [diff] [blame] | 166 | add_pda(irq_tlb_count, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | } |
| 168 | |
Thomas Gleixner | 0b9c99b | 2008-01-30 13:30:35 +0100 | [diff] [blame] | 169 | void native_flush_tlb_others(const cpumask_t *cpumaskp, struct mm_struct *mm, |
| 170 | unsigned long va) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | { |
Andi Kleen | e5bc8b6 | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 172 | int sender; |
| 173 | union smp_flush_state *f; |
Thomas Gleixner | 0b9c99b | 2008-01-30 13:30:35 +0100 | [diff] [blame] | 174 | cpumask_t cpumask = *cpumaskp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | |
Andi Kleen | e5bc8b6 | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 176 | /* Caller has disabled preemption */ |
| 177 | sender = smp_processor_id() % NUM_INVALIDATE_TLB_VECTORS; |
| 178 | f = &per_cpu(flush_state, sender); |
| 179 | |
Thomas Gleixner | 16da2f9 | 2008-01-30 13:30:27 +0100 | [diff] [blame] | 180 | /* |
| 181 | * Could avoid this lock when |
| 182 | * num_online_cpus() <= NUM_INVALIDATE_TLB_VECTORS, but it is |
| 183 | * probably not worth checking this for a cache-hot lock. |
| 184 | */ |
Andi Kleen | e5bc8b6 | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 185 | spin_lock(&f->tlbstate_lock); |
| 186 | |
| 187 | f->flush_mm = mm; |
| 188 | f->flush_va = va; |
| 189 | cpus_or(f->flush_cpumask, cpumask, f->flush_cpumask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | |
| 191 | /* |
| 192 | * We have to send the IPI only to |
| 193 | * CPUs affected. |
| 194 | */ |
Andi Kleen | e5bc8b6 | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 195 | send_IPI_mask(cpumask, INVALIDATE_TLB_VECTOR_START + sender); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | |
Andi Kleen | e5bc8b6 | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 197 | while (!cpus_empty(f->flush_cpumask)) |
| 198 | cpu_relax(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | |
Andi Kleen | e5bc8b6 | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 200 | f->flush_mm = NULL; |
| 201 | f->flush_va = 0; |
| 202 | spin_unlock(&f->tlbstate_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | } |
Andi Kleen | e5bc8b6 | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 204 | |
| 205 | int __cpuinit init_smp_flush(void) |
| 206 | { |
| 207 | int i; |
Thomas Gleixner | 16da2f9 | 2008-01-30 13:30:27 +0100 | [diff] [blame] | 208 | |
Andi Kleen | e5bc8b6 | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 209 | for_each_cpu_mask(i, cpu_possible_map) { |
Alexey Dobriyan | 825e037 | 2006-08-05 12:14:34 -0700 | [diff] [blame] | 210 | spin_lock_init(&per_cpu(flush_state, i).tlbstate_lock); |
Andi Kleen | e5bc8b6 | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 211 | } |
| 212 | return 0; |
| 213 | } |
Andi Kleen | e5bc8b6 | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 214 | core_initcall(init_smp_flush); |
Thomas Gleixner | 16da2f9 | 2008-01-30 13:30:27 +0100 | [diff] [blame] | 215 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | void flush_tlb_current_task(void) |
| 217 | { |
| 218 | struct mm_struct *mm = current->mm; |
| 219 | cpumask_t cpu_mask; |
| 220 | |
| 221 | preempt_disable(); |
| 222 | cpu_mask = mm->cpu_vm_mask; |
| 223 | cpu_clear(smp_processor_id(), cpu_mask); |
| 224 | |
| 225 | local_flush_tlb(); |
| 226 | if (!cpus_empty(cpu_mask)) |
Thomas Gleixner | 0b9c99b | 2008-01-30 13:30:35 +0100 | [diff] [blame] | 227 | flush_tlb_others(cpu_mask, mm, TLB_FLUSH_ALL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | preempt_enable(); |
| 229 | } |
| 230 | |
| 231 | void flush_tlb_mm (struct mm_struct * mm) |
| 232 | { |
| 233 | cpumask_t cpu_mask; |
| 234 | |
| 235 | preempt_disable(); |
| 236 | cpu_mask = mm->cpu_vm_mask; |
| 237 | cpu_clear(smp_processor_id(), cpu_mask); |
| 238 | |
| 239 | if (current->active_mm == mm) { |
| 240 | if (current->mm) |
| 241 | local_flush_tlb(); |
| 242 | else |
| 243 | leave_mm(smp_processor_id()); |
| 244 | } |
| 245 | if (!cpus_empty(cpu_mask)) |
Thomas Gleixner | 0b9c99b | 2008-01-30 13:30:35 +0100 | [diff] [blame] | 246 | flush_tlb_others(cpu_mask, mm, TLB_FLUSH_ALL); |
Linus Torvalds | da8f153 | 2007-09-21 12:09:41 -0700 | [diff] [blame] | 247 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | preempt_enable(); |
| 249 | } |
| 250 | |
| 251 | void flush_tlb_page(struct vm_area_struct * vma, unsigned long va) |
| 252 | { |
| 253 | struct mm_struct *mm = vma->vm_mm; |
| 254 | cpumask_t cpu_mask; |
| 255 | |
| 256 | preempt_disable(); |
| 257 | cpu_mask = mm->cpu_vm_mask; |
| 258 | cpu_clear(smp_processor_id(), cpu_mask); |
| 259 | |
| 260 | if (current->active_mm == mm) { |
| 261 | if(current->mm) |
| 262 | __flush_tlb_one(va); |
Thomas Gleixner | 16da2f9 | 2008-01-30 13:30:27 +0100 | [diff] [blame] | 263 | else |
| 264 | leave_mm(smp_processor_id()); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | } |
| 266 | |
| 267 | if (!cpus_empty(cpu_mask)) |
| 268 | flush_tlb_others(cpu_mask, mm, va); |
| 269 | |
| 270 | preempt_enable(); |
| 271 | } |
| 272 | |
| 273 | static void do_flush_tlb_all(void* info) |
| 274 | { |
| 275 | unsigned long cpu = smp_processor_id(); |
| 276 | |
| 277 | __flush_tlb_all(); |
| 278 | if (read_pda(mmu_state) == TLBSTATE_LAZY) |
| 279 | leave_mm(cpu); |
| 280 | } |
| 281 | |
| 282 | void flush_tlb_all(void) |
| 283 | { |
| 284 | on_each_cpu(do_flush_tlb_all, NULL, 1, 1); |
| 285 | } |
| 286 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | /* |
| 288 | * this function sends a 'reschedule' IPI to another CPU. |
| 289 | * it goes straight through and wastes no time serializing |
| 290 | * anything. Worst case is that we lose a reschedule ... |
| 291 | */ |
| 292 | |
| 293 | void smp_send_reschedule(int cpu) |
| 294 | { |
| 295 | send_IPI_mask(cpumask_of_cpu(cpu), RESCHEDULE_VECTOR); |
| 296 | } |
| 297 | |
| 298 | /* |
| 299 | * Structure and data for smp_call_function(). This is designed to minimise |
| 300 | * static memory requirements. It also looks cleaner. |
| 301 | */ |
| 302 | static DEFINE_SPINLOCK(call_lock); |
| 303 | |
| 304 | struct call_data_struct { |
| 305 | void (*func) (void *info); |
| 306 | void *info; |
| 307 | atomic_t started; |
| 308 | atomic_t finished; |
| 309 | int wait; |
| 310 | }; |
| 311 | |
| 312 | static struct call_data_struct * call_data; |
| 313 | |
Ashok Raj | 884d9e4 | 2005-06-25 14:55:02 -0700 | [diff] [blame] | 314 | void lock_ipi_call_lock(void) |
| 315 | { |
| 316 | spin_lock_irq(&call_lock); |
| 317 | } |
| 318 | |
| 319 | void unlock_ipi_call_lock(void) |
| 320 | { |
| 321 | spin_unlock_irq(&call_lock); |
| 322 | } |
| 323 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | /* |
Laurent Vivier | 66d16ed | 2007-10-19 20:35:03 +0200 | [diff] [blame] | 325 | * this function sends a 'generic call function' IPI to all other CPU |
| 326 | * of the system defined in the mask. |
Eric W. Biederman | 3d483f4 | 2005-07-29 14:03:29 -0700 | [diff] [blame] | 327 | */ |
Thomas Gleixner | 16da2f9 | 2008-01-30 13:30:27 +0100 | [diff] [blame] | 328 | static int __smp_call_function_mask(cpumask_t mask, |
| 329 | void (*func)(void *), void *info, |
| 330 | int wait) |
Eric W. Biederman | 3d483f4 | 2005-07-29 14:03:29 -0700 | [diff] [blame] | 331 | { |
| 332 | struct call_data_struct data; |
Laurent Vivier | 66d16ed | 2007-10-19 20:35:03 +0200 | [diff] [blame] | 333 | cpumask_t allbutself; |
| 334 | int cpus; |
| 335 | |
| 336 | allbutself = cpu_online_map; |
| 337 | cpu_clear(smp_processor_id(), allbutself); |
| 338 | |
| 339 | cpus_and(mask, mask, allbutself); |
| 340 | cpus = cpus_weight(mask); |
| 341 | |
| 342 | if (!cpus) |
| 343 | return 0; |
Eric W. Biederman | 3d483f4 | 2005-07-29 14:03:29 -0700 | [diff] [blame] | 344 | |
| 345 | data.func = func; |
| 346 | data.info = info; |
| 347 | atomic_set(&data.started, 0); |
| 348 | data.wait = wait; |
| 349 | if (wait) |
| 350 | atomic_set(&data.finished, 0); |
| 351 | |
| 352 | call_data = &data; |
| 353 | wmb(); |
Laurent Vivier | 66d16ed | 2007-10-19 20:35:03 +0200 | [diff] [blame] | 354 | |
| 355 | /* Send a message to other CPUs */ |
| 356 | if (cpus_equal(mask, allbutself)) |
| 357 | send_IPI_allbutself(CALL_FUNCTION_VECTOR); |
| 358 | else |
| 359 | send_IPI_mask(mask, CALL_FUNCTION_VECTOR); |
Eric W. Biederman | 3d483f4 | 2005-07-29 14:03:29 -0700 | [diff] [blame] | 360 | |
| 361 | /* Wait for response */ |
| 362 | while (atomic_read(&data.started) != cpus) |
| 363 | cpu_relax(); |
| 364 | |
| 365 | if (!wait) |
Laurent Vivier | 66d16ed | 2007-10-19 20:35:03 +0200 | [diff] [blame] | 366 | return 0; |
Eric W. Biederman | 3d483f4 | 2005-07-29 14:03:29 -0700 | [diff] [blame] | 367 | |
| 368 | while (atomic_read(&data.finished) != cpus) |
| 369 | cpu_relax(); |
Laurent Vivier | 66d16ed | 2007-10-19 20:35:03 +0200 | [diff] [blame] | 370 | |
| 371 | return 0; |
Eric W. Biederman | 3d483f4 | 2005-07-29 14:03:29 -0700 | [diff] [blame] | 372 | } |
Laurent Vivier | 66d16ed | 2007-10-19 20:35:03 +0200 | [diff] [blame] | 373 | /** |
| 374 | * smp_call_function_mask(): Run a function on a set of other CPUs. |
| 375 | * @mask: The set of cpus to run on. Must not include the current cpu. |
| 376 | * @func: The function to run. This must be fast and non-blocking. |
| 377 | * @info: An arbitrary pointer to pass to the function. |
| 378 | * @wait: If true, wait (atomically) until function has completed on other CPUs. |
| 379 | * |
| 380 | * Returns 0 on success, else a negative status code. |
| 381 | * |
| 382 | * If @wait is true, then returns once @func has returned; otherwise |
| 383 | * it returns just before the target cpu calls @func. |
| 384 | * |
| 385 | * You must not call this function with disabled interrupts or from a |
| 386 | * hardware interrupt handler or from a bottom half handler. |
| 387 | */ |
| 388 | int smp_call_function_mask(cpumask_t mask, |
| 389 | void (*func)(void *), void *info, |
| 390 | int wait) |
| 391 | { |
| 392 | int ret; |
| 393 | |
| 394 | /* Can deadlock when called with interrupts disabled */ |
| 395 | WARN_ON(irqs_disabled()); |
| 396 | |
| 397 | spin_lock(&call_lock); |
| 398 | ret = __smp_call_function_mask(mask, func, info, wait); |
| 399 | spin_unlock(&call_lock); |
| 400 | return ret; |
| 401 | } |
| 402 | EXPORT_SYMBOL(smp_call_function_mask); |
Eric W. Biederman | 3d483f4 | 2005-07-29 14:03:29 -0700 | [diff] [blame] | 403 | |
| 404 | /* |
Avi Kivity | 4055551 | 2007-07-09 17:11:49 +0300 | [diff] [blame] | 405 | * smp_call_function_single - Run a function on a specific CPU |
Eric W. Biederman | 3d483f4 | 2005-07-29 14:03:29 -0700 | [diff] [blame] | 406 | * @func: The function to run. This must be fast and non-blocking. |
| 407 | * @info: An arbitrary pointer to pass to the function. |
| 408 | * @nonatomic: Currently unused. |
| 409 | * @wait: If true, wait until function has completed on other CPUs. |
| 410 | * |
| 411 | * Retrurns 0 on success, else a negative status code. |
| 412 | * |
| 413 | * Does not return until the remote CPU is nearly ready to execute <func> |
| 414 | * or is or has executed. |
| 415 | */ |
| 416 | |
| 417 | int smp_call_function_single (int cpu, void (*func) (void *info), void *info, |
Thomas Gleixner | 16da2f9 | 2008-01-30 13:30:27 +0100 | [diff] [blame] | 418 | int nonatomic, int wait) |
Eric W. Biederman | 3d483f4 | 2005-07-29 14:03:29 -0700 | [diff] [blame] | 419 | { |
| 420 | /* prevent preemption and reschedule on another processor */ |
Thomas Gleixner | 16da2f9 | 2008-01-30 13:30:27 +0100 | [diff] [blame] | 421 | int ret, me = get_cpu(); |
Andrew Morton | a38a44c | 2006-12-06 20:38:16 -0800 | [diff] [blame] | 422 | |
| 423 | /* Can deadlock when called with interrupts disabled */ |
| 424 | WARN_ON(irqs_disabled()); |
| 425 | |
Avi Kivity | 4055551 | 2007-07-09 17:11:49 +0300 | [diff] [blame] | 426 | if (cpu == me) { |
| 427 | local_irq_disable(); |
| 428 | func(info); |
| 429 | local_irq_enable(); |
| 430 | put_cpu(); |
| 431 | return 0; |
| 432 | } |
| 433 | |
Laurent Vivier | 66d16ed | 2007-10-19 20:35:03 +0200 | [diff] [blame] | 434 | ret = smp_call_function_mask(cpumask_of_cpu(cpu), func, info, wait); |
| 435 | |
Eric W. Biederman | 3d483f4 | 2005-07-29 14:03:29 -0700 | [diff] [blame] | 436 | put_cpu(); |
Laurent Vivier | 66d16ed | 2007-10-19 20:35:03 +0200 | [diff] [blame] | 437 | return ret; |
Eric W. Biederman | 3d483f4 | 2005-07-29 14:03:29 -0700 | [diff] [blame] | 438 | } |
Andi Kleen | 64a26a73 | 2006-12-07 02:14:19 +0100 | [diff] [blame] | 439 | EXPORT_SYMBOL(smp_call_function_single); |
Eric W. Biederman | 3d483f4 | 2005-07-29 14:03:29 -0700 | [diff] [blame] | 440 | |
| 441 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | * smp_call_function - run a function on all other CPUs. |
| 443 | * @func: The function to run. This must be fast and non-blocking. |
| 444 | * @info: An arbitrary pointer to pass to the function. |
| 445 | * @nonatomic: currently unused. |
| 446 | * @wait: If true, wait (atomically) until function has completed on other |
| 447 | * CPUs. |
| 448 | * |
| 449 | * Returns 0 on success, else a negative status code. Does not return until |
| 450 | * remote CPUs are nearly ready to execute func or are or have executed. |
| 451 | * |
| 452 | * You must not call this function with disabled interrupts or from a |
| 453 | * hardware interrupt handler or from a bottom half handler. |
| 454 | * Actually there are a few legal cases, like panic. |
| 455 | */ |
| 456 | int smp_call_function (void (*func) (void *info), void *info, int nonatomic, |
| 457 | int wait) |
| 458 | { |
Laurent Vivier | 66d16ed | 2007-10-19 20:35:03 +0200 | [diff] [blame] | 459 | return smp_call_function_mask(cpu_online_map, func, info, wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | } |
Andi Kleen | 2ee60e17 | 2006-06-26 13:59:44 +0200 | [diff] [blame] | 461 | EXPORT_SYMBOL(smp_call_function); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | |
Jan Beulich | 9964cf7 | 2007-05-02 19:27:05 +0200 | [diff] [blame] | 463 | static void stop_this_cpu(void *dummy) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | { |
Jan Beulich | 9964cf7 | 2007-05-02 19:27:05 +0200 | [diff] [blame] | 465 | local_irq_disable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 466 | /* |
| 467 | * Remove this CPU: |
| 468 | */ |
| 469 | cpu_clear(smp_processor_id(), cpu_online_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | disable_local_APIC(); |
Thomas Gleixner | 16da2f9 | 2008-01-30 13:30:27 +0100 | [diff] [blame] | 471 | for (;;) |
Jan Beulich | 46d13a3 | 2006-06-26 13:57:59 +0200 | [diff] [blame] | 472 | halt(); |
Thomas Gleixner | 16da2f9 | 2008-01-30 13:30:27 +0100 | [diff] [blame] | 473 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | |
| 475 | void smp_send_stop(void) |
| 476 | { |
Jan Beulich | 9964cf7 | 2007-05-02 19:27:05 +0200 | [diff] [blame] | 477 | int nolock; |
| 478 | unsigned long flags; |
| 479 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 | if (reboot_force) |
| 481 | return; |
Jan Beulich | 9964cf7 | 2007-05-02 19:27:05 +0200 | [diff] [blame] | 482 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 483 | /* Don't deadlock on the call lock in panic */ |
Jan Beulich | 9964cf7 | 2007-05-02 19:27:05 +0200 | [diff] [blame] | 484 | nolock = !spin_trylock(&call_lock); |
| 485 | local_irq_save(flags); |
Laurent Vivier | 66d16ed | 2007-10-19 20:35:03 +0200 | [diff] [blame] | 486 | __smp_call_function_mask(cpu_online_map, stop_this_cpu, NULL, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 487 | if (!nolock) |
| 488 | spin_unlock(&call_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | disable_local_APIC(); |
Jan Beulich | 9964cf7 | 2007-05-02 19:27:05 +0200 | [diff] [blame] | 490 | local_irq_restore(flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 491 | } |
| 492 | |
| 493 | /* |
| 494 | * Reschedule call back. Nothing to do, |
| 495 | * all the work is done automatically when |
| 496 | * we return from the interrupt. |
| 497 | */ |
| 498 | asmlinkage void smp_reschedule_interrupt(void) |
| 499 | { |
| 500 | ack_APIC_irq(); |
Joe Korty | 38e760a | 2007-10-17 18:04:40 +0200 | [diff] [blame] | 501 | add_pda(irq_resched_count, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 502 | } |
| 503 | |
| 504 | asmlinkage void smp_call_function_interrupt(void) |
| 505 | { |
| 506 | void (*func) (void *info) = call_data->func; |
| 507 | void *info = call_data->info; |
| 508 | int wait = call_data->wait; |
| 509 | |
| 510 | ack_APIC_irq(); |
| 511 | /* |
| 512 | * Notify initiating CPU that I've grabbed the data and am |
| 513 | * about to execute the function |
| 514 | */ |
| 515 | mb(); |
| 516 | atomic_inc(&call_data->started); |
| 517 | /* |
| 518 | * At this point the info structure may be out of scope unless wait==1 |
| 519 | */ |
Andi Kleen | 95833c8 | 2006-01-11 22:44:36 +0100 | [diff] [blame] | 520 | exit_idle(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 521 | irq_enter(); |
| 522 | (*func)(info); |
Joe Korty | 38e760a | 2007-10-17 18:04:40 +0200 | [diff] [blame] | 523 | add_pda(irq_call_count, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | irq_exit(); |
| 525 | if (wait) { |
| 526 | mb(); |
| 527 | atomic_inc(&call_data->finished); |
| 528 | } |
| 529 | } |
Andi Kleen | a8ab26f | 2005-04-16 15:25:19 -0700 | [diff] [blame] | 530 | |