This commit was manufactured by cvs2svn to create branch 'vserver'.
[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(unsigned long 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.tlbstate_lock, i));
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
234 void flush_tlb_mm (struct mm_struct * mm)
235 {
236         cpumask_t cpu_mask;
237
238         preempt_disable();
239         cpu_mask = mm->cpu_vm_mask;
240         cpu_clear(smp_processor_id(), cpu_mask);
241
242         if (current->active_mm == mm) {
243                 if (current->mm)
244                         local_flush_tlb();
245                 else
246                         leave_mm(smp_processor_id());
247         }
248         if (!cpus_empty(cpu_mask))
249                 flush_tlb_others(cpu_mask, mm, FLUSH_ALL);
250
251         preempt_enable();
252 }
253
254 void flush_tlb_page(struct vm_area_struct * vma, unsigned long va)
255 {
256         struct mm_struct *mm = vma->vm_mm;
257         cpumask_t cpu_mask;
258
259         preempt_disable();
260         cpu_mask = mm->cpu_vm_mask;
261         cpu_clear(smp_processor_id(), cpu_mask);
262
263         if (current->active_mm == mm) {
264                 if(current->mm)
265                         __flush_tlb_one(va);
266                  else
267                         leave_mm(smp_processor_id());
268         }
269
270         if (!cpus_empty(cpu_mask))
271                 flush_tlb_others(cpu_mask, mm, va);
272
273         preempt_enable();
274 }
275
276 static void do_flush_tlb_all(void* info)
277 {
278         unsigned long cpu = smp_processor_id();
279
280         __flush_tlb_all();
281         if (read_pda(mmu_state) == TLBSTATE_LAZY)
282                 leave_mm(cpu);
283 }
284
285 void flush_tlb_all(void)
286 {
287         on_each_cpu(do_flush_tlb_all, NULL, 1, 1);
288 }
289 #else
290 asmlinkage void smp_invalidate_interrupt (void)
291 { return; }
292 void flush_tlb_current_task(void)
293 { xen_tlb_flush_mask(&current->mm->cpu_vm_mask); }
294 void flush_tlb_mm (struct mm_struct * mm)
295 { xen_tlb_flush_mask(&mm->cpu_vm_mask); }
296 void flush_tlb_page(struct vm_area_struct * vma, unsigned long va)
297 { xen_invlpg_mask(&vma->vm_mm->cpu_vm_mask, va); }
298 void flush_tlb_all(void)
299 { xen_tlb_flush_all(); }
300 #endif /* Xen */
301
302 /*
303  * this function sends a 'reschedule' IPI to another CPU.
304  * it goes straight through and wastes no time serializing
305  * anything. Worst case is that we lose a reschedule ...
306  */
307
308 void smp_send_reschedule(int cpu)
309 {
310         send_IPI_mask(cpumask_of_cpu(cpu), RESCHEDULE_VECTOR);
311 }
312
313 /*
314  * Structure and data for smp_call_function(). This is designed to minimise
315  * static memory requirements. It also looks cleaner.
316  */
317 static DEFINE_SPINLOCK(call_lock);
318
319 struct call_data_struct {
320         void (*func) (void *info);
321         void *info;
322         atomic_t started;
323         atomic_t finished;
324         int wait;
325 };
326
327 static struct call_data_struct * call_data;
328
329 void lock_ipi_call_lock(void)
330 {
331         spin_lock_irq(&call_lock);
332 }
333
334 void unlock_ipi_call_lock(void)
335 {
336         spin_unlock_irq(&call_lock);
337 }
338
339 /*
340  * this function sends a 'generic call function' IPI to one other CPU
341  * in the system.
342  *
343  * cpu is a standard Linux logical CPU number.
344  */
345 static void
346 __smp_call_function_single(int cpu, void (*func) (void *info), void *info,
347                                 int nonatomic, int wait)
348 {
349         struct call_data_struct data;
350         int cpus = 1;
351
352         data.func = func;
353         data.info = info;
354         atomic_set(&data.started, 0);
355         data.wait = wait;
356         if (wait)
357                 atomic_set(&data.finished, 0);
358
359         call_data = &data;
360         wmb();
361         /* Send a message to all other CPUs and wait for them to respond */
362         send_IPI_mask(cpumask_of_cpu(cpu), CALL_FUNCTION_VECTOR);
363
364         /* Wait for response */
365         while (atomic_read(&data.started) != cpus)
366                 cpu_relax();
367
368         if (!wait)
369                 return;
370
371         while (atomic_read(&data.finished) != cpus)
372                 cpu_relax();
373 }
374
375 /*
376  * smp_call_function_single - Run a function on another CPU
377  * @func: The function to run. This must be fast and non-blocking.
378  * @info: An arbitrary pointer to pass to the function.
379  * @nonatomic: Currently unused.
380  * @wait: If true, wait until function has completed on other CPUs.
381  *
382  * Retrurns 0 on success, else a negative status code.
383  *
384  * Does not return until the remote CPU is nearly ready to execute <func>
385  * or is or has executed.
386  */
387
388 int smp_call_function_single (int cpu, void (*func) (void *info), void *info,
389         int nonatomic, int wait)
390 {
391         /* prevent preemption and reschedule on another processor */
392         int me = get_cpu();
393         if (cpu == me) {
394                 WARN_ON(1);
395                 put_cpu();
396                 return -EBUSY;
397         }
398         spin_lock_bh(&call_lock);
399         __smp_call_function_single(cpu, func, info, nonatomic, wait);
400         spin_unlock_bh(&call_lock);
401         put_cpu();
402         return 0;
403 }
404
405 /*
406  * this function sends a 'generic call function' IPI to all other CPUs
407  * in the system.
408  */
409 static void __smp_call_function (void (*func) (void *info), void *info,
410                                 int nonatomic, int wait)
411 {
412         struct call_data_struct data;
413         int cpus = num_online_cpus()-1;
414
415         if (!cpus)
416                 return;
417
418         data.func = func;
419         data.info = info;
420         atomic_set(&data.started, 0);
421         data.wait = wait;
422         if (wait)
423                 atomic_set(&data.finished, 0);
424
425         call_data = &data;
426         wmb();
427         /* Send a message to all other CPUs and wait for them to respond */
428         send_IPI_allbutself(CALL_FUNCTION_VECTOR);
429
430         /* Wait for response */
431         while (atomic_read(&data.started) != cpus)
432 #ifndef CONFIG_XEN
433                 cpu_relax();
434 #else
435                 barrier();
436 #endif
437
438         if (!wait)
439                 return;
440
441         while (atomic_read(&data.finished) != cpus)
442 #ifndef CONFIG_XEN
443                 cpu_relax();
444 #else
445                 barrier();
446 #endif
447 }
448
449 /*
450  * smp_call_function - run a function on all other CPUs.
451  * @func: The function to run. This must be fast and non-blocking.
452  * @info: An arbitrary pointer to pass to the function.
453  * @nonatomic: currently unused.
454  * @wait: If true, wait (atomically) until function has completed on other
455  *        CPUs.
456  *
457  * Returns 0 on success, else a negative status code. Does not return until
458  * remote CPUs are nearly ready to execute func or are or have executed.
459  *
460  * You must not call this function with disabled interrupts or from a
461  * hardware interrupt handler or from a bottom half handler.
462  * Actually there are a few legal cases, like panic.
463  */
464 int smp_call_function (void (*func) (void *info), void *info, int nonatomic,
465                         int wait)
466 {
467         spin_lock(&call_lock);
468         __smp_call_function(func,info,nonatomic,wait);
469         spin_unlock(&call_lock);
470         return 0;
471 }
472
473 void smp_stop_cpu(void)
474 {
475         unsigned long flags;
476         /*
477          * Remove this CPU:
478          */
479         cpu_clear(smp_processor_id(), cpu_online_map);
480         local_irq_save(flags);
481 #ifndef CONFIG_XEN
482         disable_local_APIC();
483 #endif
484         local_irq_restore(flags); 
485 }
486
487 static void smp_really_stop_cpu(void *dummy)
488 {
489         smp_stop_cpu(); 
490         for (;;) 
491                 halt();
492
493
494 void smp_send_stop(void)
495 {
496         int nolock = 0;
497 #ifndef CONFIG_XEN
498         if (reboot_force)
499                 return;
500 #endif
501         /* Don't deadlock on the call lock in panic */
502         if (!spin_trylock(&call_lock)) {
503                 /* ignore locking because we have paniced anyways */
504                 nolock = 1;
505         }
506         __smp_call_function(smp_really_stop_cpu, NULL, 0, 0);
507         if (!nolock)
508                 spin_unlock(&call_lock);
509
510         local_irq_disable();
511 #ifndef CONFIG_XEN
512         disable_local_APIC();
513 #endif
514         local_irq_enable();
515 }
516
517 /*
518  * Reschedule call back. Nothing to do,
519  * all the work is done automatically when
520  * we return from the interrupt.
521  */
522 #ifndef CONFIG_XEN
523 asmlinkage void smp_reschedule_interrupt(void)
524 #else
525 asmlinkage irqreturn_t smp_reschedule_interrupt(void)
526 #endif
527 {
528 #ifndef CONFIG_XEN
529         ack_APIC_irq();
530 #else
531         return IRQ_HANDLED;
532 #endif
533 }
534
535 #ifndef CONFIG_XEN
536 asmlinkage void smp_call_function_interrupt(void)
537 #else
538 asmlinkage irqreturn_t smp_call_function_interrupt(void)
539 #endif
540 {
541         void (*func) (void *info) = call_data->func;
542         void *info = call_data->info;
543         int wait = call_data->wait;
544
545 #ifndef CONFIG_XEN
546         ack_APIC_irq();
547 #endif
548         /*
549          * Notify initiating CPU that I've grabbed the data and am
550          * about to execute the function
551          */
552         mb();
553         atomic_inc(&call_data->started);
554         /*
555          * At this point the info structure may be out of scope unless wait==1
556          */
557         exit_idle();
558         irq_enter();
559         (*func)(info);
560         irq_exit();
561         if (wait) {
562                 mb();
563                 atomic_inc(&call_data->finished);
564         }
565 #ifdef CONFIG_XEN
566         return IRQ_HANDLED;
567 #endif
568 }
569
570 int safe_smp_processor_id(void)
571 {
572 #ifdef CONFIG_XEN
573         return smp_processor_id();
574 #else
575         int apicid, i;
576
577         if (disable_apic)
578                 return 0;
579
580         apicid = hard_smp_processor_id();
581         if (x86_cpu_to_apicid[apicid] == apicid)
582                 return apicid;
583
584         for (i = 0; i < NR_CPUS; ++i) {
585                 if (x86_cpu_to_apicid[i] == apicid)
586                         return i;
587         }
588
589         /* No entries in x86_cpu_to_apicid?  Either no MPS|ACPI,
590          * or called too early.  Either way, we must be CPU 0. */
591         if (x86_cpu_to_apicid[0] == BAD_APICID)
592                 return 0;
593
594         return 0; /* Should not happen */
595 #endif
596 }