fedora core 6 1.2949 + vserver 2.2.0
[linux-2.6.git] / arch / x86_64 / kernel / smp-xen.c
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>
15 #include <linux/delay.h>
16 #include <linux/spinlock.h>
17 #include <linux/smp_lock.h>
18 #include <linux/smp.h>
19 #include <linux/kernel_stat.h>
20 #include <linux/mc146818rtc.h>
21 #include <linux/interrupt.h>
22
23 #include <asm/mtrr.h>
24 #include <asm/pgalloc.h>
25 #include <asm/tlbflush.h>
26 #include <asm/mach_apic.h>
27 #include <asm/mmu_context.h>
28 #include <asm/proto.h>
29 #include <asm/apicdef.h>
30 #include <asm/idle.h>
31 #ifdef CONFIG_XEN
32 #include <xen/evtchn.h>
33 #endif
34
35 #ifndef CONFIG_XEN
36 /*
37  *      Smarter SMP flushing macros. 
38  *              c/o Linus Torvalds.
39  *
40  *      These mean you can really definitely utterly forget about
41  *      writing to user space from interrupts. (Its not allowed anyway).
42  *
43  *      Optimizations Manfred Spraul <manfred@colorfullife.com>
44  *
45  *      More scalable flush, from Andi Kleen
46  *
47  *      To avoid global state use 8 different call vectors.
48  *      Each CPU uses a specific vector to trigger flushes on other
49  *      CPUs. Depending on the received vector the target CPUs look into
50  *      the right per cpu variable for the flush data.
51  *
52  *      With more than 8 CPUs they are hashed to the 8 available
53  *      vectors. The limited global vector space forces us to this right now.
54  *      In future when interrupts are split into per CPU domains this could be
55  *      fixed, at the cost of triggering multiple IPIs in some cases.
56  */
57
58 union smp_flush_state {
59         struct {
60                 cpumask_t flush_cpumask;
61                 struct mm_struct *flush_mm;
62                 unsigned long flush_va;
63 #define FLUSH_ALL       -1ULL
64                 spinlock_t tlbstate_lock;
65         };
66         char pad[SMP_CACHE_BYTES];
67 } ____cacheline_aligned;
68
69 /* State is put into the per CPU data section, but padded
70    to a full cache line because other CPUs can access it and we don't
71    want false sharing in the per cpu data segment. */
72 static DEFINE_PER_CPU(union smp_flush_state, flush_state);
73 #endif
74
75 /*
76  * We cannot call mmdrop() because we are in interrupt context, 
77  * instead update mm->cpu_vm_mask.
78  */
79 static inline void leave_mm(int cpu)
80 {
81         if (read_pda(mmu_state) == TLBSTATE_OK)
82                 BUG();
83         cpu_clear(cpu, read_pda(active_mm)->cpu_vm_mask);
84         load_cr3(swapper_pg_dir);
85 }
86
87 #ifndef CONFIG_XEN
88 /*
89  *
90  * The flush IPI assumes that a thread switch happens in this order:
91  * [cpu0: the cpu that switches]
92  * 1) switch_mm() either 1a) or 1b)
93  * 1a) thread switch to a different mm
94  * 1a1) cpu_clear(cpu, old_mm->cpu_vm_mask);
95  *      Stop ipi delivery for the old mm. This is not synchronized with
96  *      the other cpus, but smp_invalidate_interrupt ignore flush ipis
97  *      for the wrong mm, and in the worst case we perform a superfluous
98  *      tlb flush.
99  * 1a2) set cpu mmu_state to TLBSTATE_OK
100  *      Now the smp_invalidate_interrupt won't call leave_mm if cpu0
101  *      was in lazy tlb mode.
102  * 1a3) update cpu active_mm
103  *      Now cpu0 accepts tlb flushes for the new mm.
104  * 1a4) cpu_set(cpu, new_mm->cpu_vm_mask);
105  *      Now the other cpus will send tlb flush ipis.
106  * 1a4) change cr3.
107  * 1b) thread switch without mm change
108  *      cpu active_mm is correct, cpu0 already handles
109  *      flush ipis.
110  * 1b1) set cpu mmu_state to TLBSTATE_OK
111  * 1b2) test_and_set the cpu bit in cpu_vm_mask.
112  *      Atomically set the bit [other cpus will start sending flush ipis],
113  *      and test the bit.
114  * 1b3) if the bit was 0: leave_mm was called, flush the tlb.
115  * 2) switch %%esp, ie current
116  *
117  * The interrupt must handle 2 special cases:
118  * - cr3 is changed before %%esp, ie. it cannot use current->{active_,}mm.
119  * - the cpu performs speculative tlb reads, i.e. even if the cpu only
120  *   runs in kernel space, the cpu could load tlb entries for user space
121  *   pages.
122  *
123  * The good news is that cpu mmu_state is local to each cpu, no
124  * write/read ordering problems.
125  */
126
127 /*
128  * TLB flush IPI:
129  *
130  * 1) Flush the tlb entries if the cpu uses the mm that's being flushed.
131  * 2) Leave the mm if we are in the lazy tlb mode.
132  *
133  * Interrupts are disabled.
134  */
135
136 asmlinkage void smp_invalidate_interrupt(struct pt_regs *regs)
137 {
138         int cpu;
139         int sender;
140         union smp_flush_state *f;
141
142         cpu = smp_processor_id();
143         /*
144          * orig_rax contains the interrupt vector - 256.
145          * Use that to determine where the sender put the data.
146          */
147         sender = regs->orig_rax + 256 - INVALIDATE_TLB_VECTOR_START;
148         f = &per_cpu(flush_state, sender);
149
150         if (!cpu_isset(cpu, f->flush_cpumask))
151                 goto out;
152                 /* 
153                  * This was a BUG() but until someone can quote me the
154                  * line from the intel manual that guarantees an IPI to
155                  * multiple CPUs is retried _only_ on the erroring CPUs
156                  * its staying as a return
157                  *
158                  * BUG();
159                  */
160                  
161         if (f->flush_mm == read_pda(active_mm)) {
162                 if (read_pda(mmu_state) == TLBSTATE_OK) {
163                         if (f->flush_va == FLUSH_ALL)
164                                 local_flush_tlb();
165                         else
166                                 __flush_tlb_one(f->flush_va);
167                 } else
168                         leave_mm(cpu);
169         }
170 out:
171         ack_APIC_irq();
172         cpu_clear(cpu, f->flush_cpumask);
173 }
174
175 static void flush_tlb_others(cpumask_t cpumask, struct mm_struct *mm,
176                                                 unsigned long va)
177 {
178         int sender;
179         union smp_flush_state *f;
180
181         /* Caller has disabled preemption */
182         sender = smp_processor_id() % NUM_INVALIDATE_TLB_VECTORS;
183         f = &per_cpu(flush_state, sender);
184
185         /* Could avoid this lock when
186            num_online_cpus() <= NUM_INVALIDATE_TLB_VECTORS, but it is
187            probably not worth checking this for a cache-hot lock. */
188         spin_lock(&f->tlbstate_lock);
189
190         f->flush_mm = mm;
191         f->flush_va = va;
192         cpus_or(f->flush_cpumask, cpumask, f->flush_cpumask);
193
194         /*
195          * We have to send the IPI only to
196          * CPUs affected.
197          */
198         send_IPI_mask(cpumask, INVALIDATE_TLB_VECTOR_START + sender);
199
200         while (!cpus_empty(f->flush_cpumask))
201                 cpu_relax();
202
203         f->flush_mm = NULL;
204         f->flush_va = 0;
205         spin_unlock(&f->tlbstate_lock);
206 }
207
208 int __cpuinit init_smp_flush(void)
209 {
210         int i;
211         for_each_cpu_mask(i, cpu_possible_map) {
212                 spin_lock_init(&per_cpu(flush_state, i).tlbstate_lock);
213         }
214         return 0;
215 }
216
217 core_initcall(init_smp_flush);
218         
219 void flush_tlb_current_task(void)
220 {
221         struct mm_struct *mm = current->mm;
222         cpumask_t cpu_mask;
223
224         preempt_disable();
225         cpu_mask = mm->cpu_vm_mask;
226         cpu_clear(smp_processor_id(), cpu_mask);
227
228         local_flush_tlb();
229         if (!cpus_empty(cpu_mask))
230                 flush_tlb_others(cpu_mask, mm, FLUSH_ALL);
231         preempt_enable();
232 }
233 EXPORT_SYMBOL(flush_tlb_current_task);
234
235 void flush_tlb_mm (struct mm_struct * mm)
236 {
237         cpumask_t cpu_mask;
238
239         preempt_disable();
240         cpu_mask = mm->cpu_vm_mask;
241         cpu_clear(smp_processor_id(), cpu_mask);
242
243         if (current->active_mm == mm) {
244                 if (current->mm)
245                         local_flush_tlb();
246                 else
247                         leave_mm(smp_processor_id());
248         }
249         if (!cpus_empty(cpu_mask))
250                 flush_tlb_others(cpu_mask, mm, FLUSH_ALL);
251
252         preempt_enable();
253 }
254 EXPORT_SYMBOL(flush_tlb_mm);
255
256 void flush_tlb_page(struct vm_area_struct * vma, unsigned long va)
257 {
258         struct mm_struct *mm = vma->vm_mm;
259         cpumask_t cpu_mask;
260
261         preempt_disable();
262         cpu_mask = mm->cpu_vm_mask;
263         cpu_clear(smp_processor_id(), cpu_mask);
264
265         if (current->active_mm == mm) {
266                 if(current->mm)
267                         __flush_tlb_one(va);
268                  else
269                         leave_mm(smp_processor_id());
270         }
271
272         if (!cpus_empty(cpu_mask))
273                 flush_tlb_others(cpu_mask, mm, va);
274
275         preempt_enable();
276 }
277 EXPORT_SYMBOL(flush_tlb_page);
278
279 static void do_flush_tlb_all(void* info)
280 {
281         unsigned long cpu = smp_processor_id();
282
283         __flush_tlb_all();
284         if (read_pda(mmu_state) == TLBSTATE_LAZY)
285                 leave_mm(cpu);
286 }
287
288 void flush_tlb_all(void)
289 {
290         on_each_cpu(do_flush_tlb_all, NULL, 1, 1);
291 }
292 #else
293 asmlinkage void smp_invalidate_interrupt (void)
294 { return; }
295 void flush_tlb_current_task(void)
296 { xen_tlb_flush_mask(&current->mm->cpu_vm_mask); }
297 void flush_tlb_mm (struct mm_struct * mm)
298 { xen_tlb_flush_mask(&mm->cpu_vm_mask); }
299 void flush_tlb_page(struct vm_area_struct * vma, unsigned long va)
300 { xen_invlpg_mask(&vma->vm_mm->cpu_vm_mask, va); }
301 void flush_tlb_all(void)
302 { xen_tlb_flush_all(); }
303 #endif /* Xen */
304
305 /*
306  * this function sends a 'reschedule' IPI to another CPU.
307  * it goes straight through and wastes no time serializing
308  * anything. Worst case is that we lose a reschedule ...
309  */
310
311 void smp_send_reschedule(int cpu)
312 {
313         send_IPI_mask(cpumask_of_cpu(cpu), RESCHEDULE_VECTOR);
314 }
315
316 /*
317  * Structure and data for smp_call_function(). This is designed to minimise
318  * static memory requirements. It also looks cleaner.
319  */
320 static DEFINE_SPINLOCK(call_lock);
321
322 struct call_data_struct {
323         void (*func) (void *info);
324         void *info;
325         atomic_t started;
326         atomic_t finished;
327         int wait;
328 };
329
330 static struct call_data_struct * call_data;
331
332 void lock_ipi_call_lock(void)
333 {
334         spin_lock_irq(&call_lock);
335 }
336
337 void unlock_ipi_call_lock(void)
338 {
339         spin_unlock_irq(&call_lock);
340 }
341
342 /*
343  * this function sends a 'generic call function' IPI to one other CPU
344  * in the system.
345  *
346  * cpu is a standard Linux logical CPU number.
347  */
348 static void
349 __smp_call_function_single(int cpu, void (*func) (void *info), void *info,
350                                 int nonatomic, int wait)
351 {
352         struct call_data_struct data;
353         int cpus = 1;
354
355         data.func = func;
356         data.info = info;
357         atomic_set(&data.started, 0);
358         data.wait = wait;
359         if (wait)
360                 atomic_set(&data.finished, 0);
361
362         call_data = &data;
363         wmb();
364         /* Send a message to all other CPUs and wait for them to respond */
365         send_IPI_mask(cpumask_of_cpu(cpu), CALL_FUNCTION_VECTOR);
366
367         /* Wait for response */
368         while (atomic_read(&data.started) != cpus)
369                 cpu_relax();
370
371         if (!wait)
372                 return;
373
374         while (atomic_read(&data.finished) != cpus)
375                 cpu_relax();
376 }
377
378 /*
379  * smp_call_function_single - Run a function on another CPU
380  * @func: The function to run. This must be fast and non-blocking.
381  * @info: An arbitrary pointer to pass to the function.
382  * @nonatomic: Currently unused.
383  * @wait: If true, wait until function has completed on other CPUs.
384  *
385  * Retrurns 0 on success, else a negative status code.
386  *
387  * Does not return until the remote CPU is nearly ready to execute <func>
388  * or is or has executed.
389  */
390
391 int smp_call_function_single (int cpu, void (*func) (void *info), void *info,
392         int nonatomic, int wait)
393 {
394         /* prevent preemption and reschedule on another processor */
395         int me = get_cpu();
396         if (cpu == me) {
397                 put_cpu();
398                 return 0;
399         }
400
401         /* Can deadlock when called with interrupts disabled */
402         WARN_ON(irqs_disabled());
403
404         spin_lock_bh(&call_lock);
405         __smp_call_function_single(cpu, func, info, nonatomic, wait);
406         spin_unlock_bh(&call_lock);
407         put_cpu();
408         return 0;
409 }
410 EXPORT_SYMBOL(smp_call_function_single);
411
412 /*
413  * this function sends a 'generic call function' IPI to all other CPUs
414  * in the system.
415  */
416 static void __smp_call_function (void (*func) (void *info), void *info,
417                                 int nonatomic, int wait)
418 {
419         struct call_data_struct data;
420         int cpus = num_online_cpus()-1;
421
422         if (!cpus)
423                 return;
424
425         data.func = func;
426         data.info = info;
427         atomic_set(&data.started, 0);
428         data.wait = wait;
429         if (wait)
430                 atomic_set(&data.finished, 0);
431
432         call_data = &data;
433         wmb();
434         /* Send a message to all other CPUs and wait for them to respond */
435         send_IPI_allbutself(CALL_FUNCTION_VECTOR);
436
437         /* Wait for response */
438         while (atomic_read(&data.started) != cpus)
439 #ifndef CONFIG_XEN
440                 cpu_relax();
441 #else
442                 barrier();
443 #endif
444
445         if (!wait)
446                 return;
447
448         while (atomic_read(&data.finished) != cpus)
449 #ifndef CONFIG_XEN
450                 cpu_relax();
451 #else
452                 barrier();
453 #endif
454 }
455
456 /*
457  * smp_call_function - run a function on all other CPUs.
458  * @func: The function to run. This must be fast and non-blocking.
459  * @info: An arbitrary pointer to pass to the function.
460  * @nonatomic: currently unused.
461  * @wait: If true, wait (atomically) until function has completed on other
462  *        CPUs.
463  *
464  * Returns 0 on success, else a negative status code. Does not return until
465  * remote CPUs are nearly ready to execute func or are or have executed.
466  *
467  * You must not call this function with disabled interrupts or from a
468  * hardware interrupt handler or from a bottom half handler.
469  * Actually there are a few legal cases, like panic.
470  */
471 int smp_call_function (void (*func) (void *info), void *info, int nonatomic,
472                         int wait)
473 {
474         spin_lock(&call_lock);
475         __smp_call_function(func,info,nonatomic,wait);
476         spin_unlock(&call_lock);
477         return 0;
478 }
479 EXPORT_SYMBOL(smp_call_function);
480
481 void smp_stop_cpu(void)
482 {
483         unsigned long flags;
484         /*
485          * Remove this CPU:
486          */
487         cpu_clear(smp_processor_id(), cpu_online_map);
488         local_irq_save(flags);
489 #ifndef CONFIG_XEN
490         disable_local_APIC();
491 #endif
492         local_irq_restore(flags);
493 }
494
495 static void smp_really_stop_cpu(void *dummy)
496 {
497         smp_stop_cpu(); 
498         for (;;) 
499                 halt();
500
501
502 void smp_send_stop(void)
503 {
504         int nolock = 0;
505 #ifndef CONFIG_XEN
506         if (reboot_force)
507                 return;
508 #endif
509         /* Don't deadlock on the call lock in panic */
510         if (!spin_trylock(&call_lock)) {
511                 /* ignore locking because we have panicked anyways */
512                 nolock = 1;
513         }
514         __smp_call_function(smp_really_stop_cpu, NULL, 0, 0);
515         if (!nolock)
516                 spin_unlock(&call_lock);
517
518         local_irq_disable();
519 #ifndef CONFIG_XEN
520         disable_local_APIC();
521 #endif
522         local_irq_enable();
523 }
524
525 /*
526  * Reschedule call back. Nothing to do,
527  * all the work is done automatically when
528  * we return from the interrupt.
529  */
530 #ifndef CONFIG_XEN
531 asmlinkage void smp_reschedule_interrupt(void)
532 #else
533 asmlinkage irqreturn_t smp_reschedule_interrupt(void)
534 #endif
535 {
536 #ifndef CONFIG_XEN
537         ack_APIC_irq();
538 #else
539         return IRQ_HANDLED;
540 #endif
541 }
542
543 #ifndef CONFIG_XEN
544 asmlinkage void smp_call_function_interrupt(void)
545 #else
546 asmlinkage irqreturn_t smp_call_function_interrupt(void)
547 #endif
548 {
549         void (*func) (void *info) = call_data->func;
550         void *info = call_data->info;
551         int wait = call_data->wait;
552
553 #ifndef CONFIG_XEN
554         ack_APIC_irq();
555 #endif
556         /*
557          * Notify initiating CPU that I've grabbed the data and am
558          * about to execute the function
559          */
560         mb();
561         atomic_inc(&call_data->started);
562         /*
563          * At this point the info structure may be out of scope unless wait==1
564          */
565         exit_idle();
566         irq_enter();
567         (*func)(info);
568         irq_exit();
569         if (wait) {
570                 mb();
571                 atomic_inc(&call_data->finished);
572         }
573 #ifdef CONFIG_XEN
574         return IRQ_HANDLED;
575 #endif
576 }