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