Merge to Fedora kernel-2.6.18-1.2224_FC5 patched with stable patch-2.6.18.1-vs2.0...
[linux-2.6.git] / arch / i386 / 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  *
7  *      This code is released under the GNU General Public License version 2 or
8  *      later.
9  */
10
11 #include <linux/init.h>
12
13 #include <linux/mm.h>
14 #include <linux/delay.h>
15 #include <linux/spinlock.h>
16 #include <linux/smp_lock.h>
17 #include <linux/kernel_stat.h>
18 #include <linux/mc146818rtc.h>
19 #include <linux/cache.h>
20 #include <linux/interrupt.h>
21 #include <linux/cpu.h>
22 #include <linux/module.h>
23
24 #include <asm/mtrr.h>
25 #include <asm/tlbflush.h>
26 #include <asm/desc.h>
27 #if 0
28 #include <mach_apic.h>
29 #endif
30 #include <xen/evtchn.h>
31
32 /*
33  *      Some notes on x86 processor bugs affecting SMP operation:
34  *
35  *      Pentium, Pentium Pro, II, III (and all CPUs) have bugs.
36  *      The Linux implications for SMP are handled as follows:
37  *
38  *      Pentium III / [Xeon]
39  *              None of the E1AP-E3AP errata are visible to the user.
40  *
41  *      E1AP.   see PII A1AP
42  *      E2AP.   see PII A2AP
43  *      E3AP.   see PII A3AP
44  *
45  *      Pentium II / [Xeon]
46  *              None of the A1AP-A3AP errata are visible to the user.
47  *
48  *      A1AP.   see PPro 1AP
49  *      A2AP.   see PPro 2AP
50  *      A3AP.   see PPro 7AP
51  *
52  *      Pentium Pro
53  *              None of 1AP-9AP errata are visible to the normal user,
54  *      except occasional delivery of 'spurious interrupt' as trap #15.
55  *      This is very rare and a non-problem.
56  *
57  *      1AP.    Linux maps APIC as non-cacheable
58  *      2AP.    worked around in hardware
59  *      3AP.    fixed in C0 and above steppings microcode update.
60  *              Linux does not use excessive STARTUP_IPIs.
61  *      4AP.    worked around in hardware
62  *      5AP.    symmetric IO mode (normal Linux operation) not affected.
63  *              'noapic' mode has vector 0xf filled out properly.
64  *      6AP.    'noapic' mode might be affected - fixed in later steppings
65  *      7AP.    We do not assume writes to the LVT deassering IRQs
66  *      8AP.    We do not enable low power mode (deep sleep) during MP bootup
67  *      9AP.    We do not use mixed mode
68  *
69  *      Pentium
70  *              There is a marginal case where REP MOVS on 100MHz SMP
71  *      machines with B stepping processors can fail. XXX should provide
72  *      an L1cache=Writethrough or L1cache=off option.
73  *
74  *              B stepping CPUs may hang. There are hardware work arounds
75  *      for this. We warn about it in case your board doesn't have the work
76  *      arounds. Basically thats so I can tell anyone with a B stepping
77  *      CPU and SMP problems "tough".
78  *
79  *      Specific items [From Pentium Processor Specification Update]
80  *
81  *      1AP.    Linux doesn't use remote read
82  *      2AP.    Linux doesn't trust APIC errors
83  *      3AP.    We work around this
84  *      4AP.    Linux never generated 3 interrupts of the same priority
85  *              to cause a lost local interrupt.
86  *      5AP.    Remote read is never used
87  *      6AP.    not affected - worked around in hardware
88  *      7AP.    not affected - worked around in hardware
89  *      8AP.    worked around in hardware - we get explicit CS errors if not
90  *      9AP.    only 'noapic' mode affected. Might generate spurious
91  *              interrupts, we log only the first one and count the
92  *              rest silently.
93  *      10AP.   not affected - worked around in hardware
94  *      11AP.   Linux reads the APIC between writes to avoid this, as per
95  *              the documentation. Make sure you preserve this as it affects
96  *              the C stepping chips too.
97  *      12AP.   not affected - worked around in hardware
98  *      13AP.   not affected - worked around in hardware
99  *      14AP.   we always deassert INIT during bootup
100  *      15AP.   not affected - worked around in hardware
101  *      16AP.   not affected - worked around in hardware
102  *      17AP.   not affected - worked around in hardware
103  *      18AP.   not affected - worked around in hardware
104  *      19AP.   not affected - worked around in BIOS
105  *
106  *      If this sounds worrying believe me these bugs are either ___RARE___,
107  *      or are signal timing bugs worked around in hardware and there's
108  *      about nothing of note with C stepping upwards.
109  */
110
111 DEFINE_PER_CPU(struct tlb_state, cpu_tlbstate) ____cacheline_aligned = { &init_mm, 0, };
112
113 /*
114  * the following functions deal with sending IPIs between CPUs.
115  *
116  * We use 'broadcast', CPU->CPU IPIs and self-IPIs too.
117  */
118
119 static inline int __prepare_ICR (unsigned int shortcut, int vector)
120 {
121         unsigned int icr = shortcut | APIC_DEST_LOGICAL;
122
123         switch (vector) {
124         default:
125                 icr |= APIC_DM_FIXED | vector;
126                 break;
127         case NMI_VECTOR:
128                 icr |= APIC_DM_NMI;
129                 break;
130         }
131         return icr;
132 }
133
134 static inline int __prepare_ICR2 (unsigned int mask)
135 {
136         return SET_APIC_DEST_FIELD(mask);
137 }
138
139 DECLARE_PER_CPU(int, ipi_to_irq[NR_IPIS]);
140
141 static inline void __send_IPI_one(unsigned int cpu, int vector)
142 {
143         int irq = per_cpu(ipi_to_irq, cpu)[vector];
144         BUG_ON(irq < 0);
145         notify_remote_via_irq(irq);
146 }
147
148 void __send_IPI_shortcut(unsigned int shortcut, int vector)
149 {
150         int cpu;
151
152         switch (shortcut) {
153         case APIC_DEST_SELF:
154                 __send_IPI_one(smp_processor_id(), vector);
155                 break;
156         case APIC_DEST_ALLBUT:
157                 for (cpu = 0; cpu < NR_CPUS; ++cpu) {
158                         if (cpu == smp_processor_id())
159                                 continue;
160                         if (cpu_isset(cpu, cpu_online_map)) {
161                                 __send_IPI_one(cpu, vector);
162                         }
163                 }
164                 break;
165         default:
166                 printk("XXXXXX __send_IPI_shortcut %08x vector %d\n", shortcut,
167                        vector);
168                 break;
169         }
170 }
171
172 void fastcall send_IPI_self(int vector)
173 {
174         __send_IPI_shortcut(APIC_DEST_SELF, vector);
175 }
176
177 /*
178  * This is only used on smaller machines.
179  */
180 void send_IPI_mask_bitmask(cpumask_t mask, int vector)
181 {
182         unsigned long flags;
183         unsigned int cpu;
184
185         local_irq_save(flags);
186         WARN_ON(cpus_addr(mask)[0] & ~cpus_addr(cpu_online_map)[0]);
187
188         for (cpu = 0; cpu < NR_CPUS; ++cpu) {
189                 if (cpu_isset(cpu, mask)) {
190                         __send_IPI_one(cpu, vector);
191                 }
192         }
193
194         local_irq_restore(flags);
195 }
196
197 void send_IPI_mask_sequence(cpumask_t mask, int vector)
198 {
199
200         send_IPI_mask_bitmask(mask, vector);
201 }
202
203 #include <mach_ipi.h> /* must come after the send_IPI functions above for inlining */
204
205 #if 0 /* XEN */
206 /*
207  *      Smarter SMP flushing macros. 
208  *              c/o Linus Torvalds.
209  *
210  *      These mean you can really definitely utterly forget about
211  *      writing to user space from interrupts. (Its not allowed anyway).
212  *
213  *      Optimizations Manfred Spraul <manfred@colorfullife.com>
214  */
215
216 static cpumask_t flush_cpumask;
217 static struct mm_struct * flush_mm;
218 static unsigned long flush_va;
219 static DEFINE_SPINLOCK(tlbstate_lock);
220 #define FLUSH_ALL       0xffffffff
221
222 /*
223  * We cannot call mmdrop() because we are in interrupt context, 
224  * instead update mm->cpu_vm_mask.
225  *
226  * We need to reload %cr3 since the page tables may be going
227  * away from under us..
228  */
229 static inline void leave_mm (unsigned long cpu)
230 {
231         if (per_cpu(cpu_tlbstate, cpu).state == TLBSTATE_OK)
232                 BUG();
233         cpu_clear(cpu, per_cpu(cpu_tlbstate, cpu).active_mm->cpu_vm_mask);
234         load_cr3(swapper_pg_dir);
235 }
236
237 /*
238  *
239  * The flush IPI assumes that a thread switch happens in this order:
240  * [cpu0: the cpu that switches]
241  * 1) switch_mm() either 1a) or 1b)
242  * 1a) thread switch to a different mm
243  * 1a1) cpu_clear(cpu, old_mm->cpu_vm_mask);
244  *      Stop ipi delivery for the old mm. This is not synchronized with
245  *      the other cpus, but smp_invalidate_interrupt ignore flush ipis
246  *      for the wrong mm, and in the worst case we perform a superflous
247  *      tlb flush.
248  * 1a2) set cpu_tlbstate to TLBSTATE_OK
249  *      Now the smp_invalidate_interrupt won't call leave_mm if cpu0
250  *      was in lazy tlb mode.
251  * 1a3) update cpu_tlbstate[].active_mm
252  *      Now cpu0 accepts tlb flushes for the new mm.
253  * 1a4) cpu_set(cpu, new_mm->cpu_vm_mask);
254  *      Now the other cpus will send tlb flush ipis.
255  * 1a4) change cr3.
256  * 1b) thread switch without mm change
257  *      cpu_tlbstate[].active_mm is correct, cpu0 already handles
258  *      flush ipis.
259  * 1b1) set cpu_tlbstate to TLBSTATE_OK
260  * 1b2) test_and_set the cpu bit in cpu_vm_mask.
261  *      Atomically set the bit [other cpus will start sending flush ipis],
262  *      and test the bit.
263  * 1b3) if the bit was 0: leave_mm was called, flush the tlb.
264  * 2) switch %%esp, ie current
265  *
266  * The interrupt must handle 2 special cases:
267  * - cr3 is changed before %%esp, ie. it cannot use current->{active_,}mm.
268  * - the cpu performs speculative tlb reads, i.e. even if the cpu only
269  *   runs in kernel space, the cpu could load tlb entries for user space
270  *   pages.
271  *
272  * The good news is that cpu_tlbstate is local to each cpu, no
273  * write/read ordering problems.
274  */
275
276 /*
277  * TLB flush IPI:
278  *
279  * 1) Flush the tlb entries if the cpu uses the mm that's being flushed.
280  * 2) Leave the mm if we are in the lazy tlb mode.
281  */
282
283 irqreturn_t smp_invalidate_interrupt(int irq, void *dev_id,
284                                      struct pt_regs *regs)
285 {
286         unsigned long cpu;
287
288         cpu = get_cpu();
289         if (current->active_mm)
290                 load_user_cs_desc(cpu, current->active_mm);
291
292         if (!cpu_isset(cpu, flush_cpumask))
293                 goto out;
294                 /* 
295                  * This was a BUG() but until someone can quote me the
296                  * line from the intel manual that guarantees an IPI to
297                  * multiple CPUs is retried _only_ on the erroring CPUs
298                  * its staying as a return
299                  *
300                  * BUG();
301                  */
302                  
303         if (flush_mm == per_cpu(cpu_tlbstate, cpu).active_mm) {
304                 if (per_cpu(cpu_tlbstate, cpu).state == TLBSTATE_OK) {
305                         if (flush_va == FLUSH_ALL)
306                                 local_flush_tlb();
307                         else
308                                 __flush_tlb_one(flush_va);
309                 } else
310                         leave_mm(cpu);
311         }
312         smp_mb__before_clear_bit();
313         cpu_clear(cpu, flush_cpumask);
314         smp_mb__after_clear_bit();
315 out:
316         put_cpu_no_resched();
317
318         return IRQ_HANDLED;
319 }
320
321 static void flush_tlb_others(cpumask_t cpumask, struct mm_struct *mm,
322                                                 unsigned long va)
323 {
324         /*
325          * A couple of (to be removed) sanity checks:
326          *
327          * - current CPU must not be in mask
328          * - mask must exist :)
329          */
330         BUG_ON(cpus_empty(cpumask));
331         BUG_ON(cpu_isset(smp_processor_id(), cpumask));
332         BUG_ON(!mm);
333
334         /* If a CPU which we ran on has gone down, OK. */
335         cpus_and(cpumask, cpumask, cpu_online_map);
336         if (cpus_empty(cpumask))
337                 return;
338
339         /*
340          * i'm not happy about this global shared spinlock in the
341          * MM hot path, but we'll see how contended it is.
342          * Temporarily this turns IRQs off, so that lockups are
343          * detected by the NMI watchdog.
344          */
345         spin_lock(&tlbstate_lock);
346         
347         flush_mm = mm;
348         flush_va = va;
349 #if NR_CPUS <= BITS_PER_LONG
350         atomic_set_mask(cpumask, &flush_cpumask);
351 #else
352         {
353                 int k;
354                 unsigned long *flush_mask = (unsigned long *)&flush_cpumask;
355                 unsigned long *cpu_mask = (unsigned long *)&cpumask;
356                 for (k = 0; k < BITS_TO_LONGS(NR_CPUS); ++k)
357                         atomic_set_mask(cpu_mask[k], &flush_mask[k]);
358         }
359 #endif
360         /*
361          * We have to send the IPI only to
362          * CPUs affected.
363          */
364         send_IPI_mask(cpumask, INVALIDATE_TLB_VECTOR);
365
366         while (!cpus_empty(flush_cpumask))
367                 /* nothing. lockup detection does not belong here */
368                 mb();
369
370         flush_mm = NULL;
371         flush_va = 0;
372         spin_unlock(&tlbstate_lock);
373 }
374         
375 void flush_tlb_current_task(void)
376 {
377         struct mm_struct *mm = current->mm;
378         cpumask_t cpu_mask;
379
380         preempt_disable();
381         cpu_mask = mm->cpu_vm_mask;
382         cpu_clear(smp_processor_id(), cpu_mask);
383
384         local_flush_tlb();
385         if (!cpus_empty(cpu_mask))
386                 flush_tlb_others(cpu_mask, mm, FLUSH_ALL);
387         preempt_enable();
388 }
389
390 void flush_tlb_mm (struct mm_struct * mm)
391 {
392         cpumask_t cpu_mask;
393
394         preempt_disable();
395         cpu_mask = mm->cpu_vm_mask;
396         cpu_clear(smp_processor_id(), cpu_mask);
397
398         if (current->active_mm == mm) {
399                 if (current->mm)
400                         local_flush_tlb();
401                 else
402                         leave_mm(smp_processor_id());
403         }
404         if (!cpus_empty(cpu_mask))
405                 flush_tlb_others(cpu_mask, mm, FLUSH_ALL);
406
407         preempt_enable();
408 }
409
410 void flush_tlb_page(struct vm_area_struct * vma, unsigned long va)
411 {
412         struct mm_struct *mm = vma->vm_mm;
413         cpumask_t cpu_mask;
414
415         preempt_disable();
416         cpu_mask = mm->cpu_vm_mask;
417         cpu_clear(smp_processor_id(), cpu_mask);
418
419         if (current->active_mm == mm) {
420                 if(current->mm)
421                         __flush_tlb_one(va);
422                 else
423                         leave_mm(smp_processor_id());
424         }
425
426         if (!cpus_empty(cpu_mask))
427                 flush_tlb_others(cpu_mask, mm, va);
428
429         preempt_enable();
430 }
431 EXPORT_SYMBOL(flush_tlb_page);
432
433 static void do_flush_tlb_all(void* info)
434 {
435         unsigned long cpu = smp_processor_id();
436
437         __flush_tlb_all();
438         if (per_cpu(cpu_tlbstate, cpu).state == TLBSTATE_LAZY)
439                 leave_mm(cpu);
440 }
441
442 void flush_tlb_all(void)
443 {
444         on_each_cpu(do_flush_tlb_all, NULL, 1, 1);
445 }
446
447 #else
448
449 irqreturn_t smp_invalidate_interrupt(int irq, void *dev_id,
450                                      struct pt_regs *regs)
451 { return 0; }
452 void flush_tlb_current_task(void)
453 { xen_tlb_flush_mask(&current->mm->cpu_vm_mask); }
454 void flush_tlb_mm(struct mm_struct * mm)
455 { xen_tlb_flush_mask(&mm->cpu_vm_mask); }
456 void flush_tlb_page(struct vm_area_struct *vma, unsigned long va)
457 { xen_invlpg_mask(&vma->vm_mm->cpu_vm_mask, va); }
458 EXPORT_SYMBOL(flush_tlb_page);
459 void flush_tlb_all(void)
460 { xen_tlb_flush_all(); }
461
462 #endif /* XEN */
463
464 /*
465  * this function sends a 'reschedule' IPI to another CPU.
466  * it goes straight through and wastes no time serializing
467  * anything. Worst case is that we lose a reschedule ...
468  */
469 void smp_send_reschedule(int cpu)
470 {
471         WARN_ON(cpu_is_offline(cpu));
472         send_IPI_mask(cpumask_of_cpu(cpu), RESCHEDULE_VECTOR);
473 }
474
475 /*
476  * Structure and data for smp_call_function(). This is designed to minimise
477  * static memory requirements. It also looks cleaner.
478  */
479 static DEFINE_SPINLOCK(call_lock);
480
481 struct call_data_struct {
482         void (*func) (void *info);
483         void *info;
484         atomic_t started;
485         atomic_t finished;
486         int wait;
487 };
488
489 void lock_ipi_call_lock(void)
490 {
491         spin_lock_irq(&call_lock);
492 }
493
494 void unlock_ipi_call_lock(void)
495 {
496         spin_unlock_irq(&call_lock);
497 }
498
499 static struct call_data_struct *call_data;
500
501 /**
502  * smp_call_function(): Run a function on all other CPUs.
503  * @func: The function to run. This must be fast and non-blocking.
504  * @info: An arbitrary pointer to pass to the function.
505  * @nonatomic: currently unused.
506  * @wait: If true, wait (atomically) until function has completed on other CPUs.
507  *
508  * Returns 0 on success, else a negative status code. Does not return until
509  * remote CPUs are nearly ready to execute <<func>> or are or have executed.
510  *
511  * You must not call this function with disabled interrupts or from a
512  * hardware interrupt handler or from a bottom half handler.
513  */
514 int smp_call_function (void (*func) (void *info), void *info, int nonatomic,
515                         int wait)
516 {
517         struct call_data_struct data;
518         int cpus;
519
520         /* Holding any lock stops cpus from going down. */
521         spin_lock(&call_lock);
522         cpus = num_online_cpus() - 1;
523         if (!cpus) {
524                 spin_unlock(&call_lock);
525                 return 0;
526         }
527
528         /* Can deadlock when called with interrupts disabled */
529         WARN_ON(irqs_disabled());
530
531         data.func = func;
532         data.info = info;
533         atomic_set(&data.started, 0);
534         data.wait = wait;
535         if (wait)
536                 atomic_set(&data.finished, 0);
537
538         call_data = &data;
539         mb();
540         
541         /* Send a message to all other CPUs and wait for them to respond */
542         send_IPI_allbutself(CALL_FUNCTION_VECTOR);
543
544         /* Wait for response */
545         while (atomic_read(&data.started) != cpus)
546                 barrier();
547
548         if (wait)
549                 while (atomic_read(&data.finished) != cpus)
550                         barrier();
551         spin_unlock(&call_lock);
552
553         return 0;
554 }
555 EXPORT_SYMBOL(smp_call_function);
556
557 static void stop_this_cpu (void * dummy)
558 {
559         /*
560          * Remove this CPU:
561          */
562         cpu_clear(smp_processor_id(), cpu_online_map);
563         local_irq_disable();
564 #if 0
565         disable_local_APIC();
566 #endif
567         if (cpu_data[smp_processor_id()].hlt_works_ok)
568                 for(;;) halt();
569         for (;;);
570 }
571
572 /*
573  * this function calls the 'stop' function on all other CPUs in the system.
574  */
575
576 void smp_send_stop(void)
577 {
578         smp_call_function(stop_this_cpu, NULL, 1, 0);
579
580         local_irq_disable();
581 #if 0
582         disable_local_APIC();
583 #endif
584         local_irq_enable();
585 }
586
587 /*
588  * Reschedule call back. Nothing to do,
589  * all the work is done automatically when
590  * we return from the interrupt.
591  */
592 irqreturn_t smp_reschedule_interrupt(int irq, void *dev_id,
593                                      struct pt_regs *regs)
594 {
595
596         return IRQ_HANDLED;
597 }
598
599 #include <linux/kallsyms.h>
600 irqreturn_t smp_call_function_interrupt(int irq, void *dev_id,
601                                         struct pt_regs *regs)
602 {
603         void (*func) (void *info) = call_data->func;
604         void *info = call_data->info;
605         int wait = call_data->wait;
606
607         /*
608          * Notify initiating CPU that I've grabbed the data and am
609          * about to execute the function
610          */
611         mb();
612         atomic_inc(&call_data->started);
613         /*
614          * At this point the info structure may be out of scope unless wait==1
615          */
616         irq_enter();
617         (*func)(info);
618         irq_exit();
619
620         if (wait) {
621                 mb();
622                 atomic_inc(&call_data->finished);
623         }
624
625         return IRQ_HANDLED;
626 }
627