]> pilppa.org Git - linux-2.6-omap-h63xx.git/blob - arch/x86/xen/smp.c
Merge branch 'cpus4096' into core/percpu
[linux-2.6-omap-h63xx.git] / arch / x86 / xen / smp.c
1 /*
2  * Xen SMP support
3  *
4  * This file implements the Xen versions of smp_ops.  SMP under Xen is
5  * very straightforward.  Bringing a CPU up is simply a matter of
6  * loading its initial context and setting it running.
7  *
8  * IPIs are handled through the Xen event mechanism.
9  *
10  * Because virtual CPUs can be scheduled onto any real CPU, there's no
11  * useful topology information for the kernel to make use of.  As a
12  * result, all CPUs are treated as if they're single-core and
13  * single-threaded.
14  */
15 #include <linux/sched.h>
16 #include <linux/err.h>
17 #include <linux/smp.h>
18
19 #include <asm/paravirt.h>
20 #include <asm/desc.h>
21 #include <asm/pgtable.h>
22 #include <asm/cpu.h>
23
24 #include <xen/interface/xen.h>
25 #include <xen/interface/vcpu.h>
26
27 #include <asm/xen/interface.h>
28 #include <asm/xen/hypercall.h>
29
30 #include <xen/page.h>
31 #include <xen/events.h>
32
33 #include "xen-ops.h"
34 #include "mmu.h"
35
36 cpumask_var_t xen_cpu_initialized_map;
37
38 static DEFINE_PER_CPU(int, resched_irq);
39 static DEFINE_PER_CPU(int, callfunc_irq);
40 static DEFINE_PER_CPU(int, callfuncsingle_irq);
41 static DEFINE_PER_CPU(int, debug_irq) = -1;
42
43 static irqreturn_t xen_call_function_interrupt(int irq, void *dev_id);
44 static irqreturn_t xen_call_function_single_interrupt(int irq, void *dev_id);
45
46 /*
47  * Reschedule call back. Nothing to do,
48  * all the work is done automatically when
49  * we return from the interrupt.
50  */
51 static irqreturn_t xen_reschedule_interrupt(int irq, void *dev_id)
52 {
53         inc_irq_stat(irq_resched_count);
54
55         return IRQ_HANDLED;
56 }
57
58 static __cpuinit void cpu_bringup(void)
59 {
60         int cpu = smp_processor_id();
61
62         cpu_init();
63         touch_softlockup_watchdog();
64         preempt_disable();
65
66         xen_enable_sysenter();
67         xen_enable_syscall();
68
69         cpu = smp_processor_id();
70         smp_store_cpu_info(cpu);
71         cpu_data(cpu).x86_max_cores = 1;
72         set_cpu_sibling_map(cpu);
73
74         xen_setup_cpu_clockevents();
75
76         cpu_set(cpu, cpu_online_map);
77         percpu_write(cpu_state, CPU_ONLINE);
78         wmb();
79
80         /* We can take interrupts now: we're officially "up". */
81         local_irq_enable();
82
83         wmb();                  /* make sure everything is out */
84 }
85
86 static __cpuinit void cpu_bringup_and_idle(void)
87 {
88         cpu_bringup();
89         cpu_idle();
90 }
91
92 static int xen_smp_intr_init(unsigned int cpu)
93 {
94         int rc;
95         const char *resched_name, *callfunc_name, *debug_name;
96
97         resched_name = kasprintf(GFP_KERNEL, "resched%d", cpu);
98         rc = bind_ipi_to_irqhandler(XEN_RESCHEDULE_VECTOR,
99                                     cpu,
100                                     xen_reschedule_interrupt,
101                                     IRQF_DISABLED|IRQF_PERCPU|IRQF_NOBALANCING,
102                                     resched_name,
103                                     NULL);
104         if (rc < 0)
105                 goto fail;
106         per_cpu(resched_irq, cpu) = rc;
107
108         callfunc_name = kasprintf(GFP_KERNEL, "callfunc%d", cpu);
109         rc = bind_ipi_to_irqhandler(XEN_CALL_FUNCTION_VECTOR,
110                                     cpu,
111                                     xen_call_function_interrupt,
112                                     IRQF_DISABLED|IRQF_PERCPU|IRQF_NOBALANCING,
113                                     callfunc_name,
114                                     NULL);
115         if (rc < 0)
116                 goto fail;
117         per_cpu(callfunc_irq, cpu) = rc;
118
119         debug_name = kasprintf(GFP_KERNEL, "debug%d", cpu);
120         rc = bind_virq_to_irqhandler(VIRQ_DEBUG, cpu, xen_debug_interrupt,
121                                      IRQF_DISABLED | IRQF_PERCPU | IRQF_NOBALANCING,
122                                      debug_name, NULL);
123         if (rc < 0)
124                 goto fail;
125         per_cpu(debug_irq, cpu) = rc;
126
127         callfunc_name = kasprintf(GFP_KERNEL, "callfuncsingle%d", cpu);
128         rc = bind_ipi_to_irqhandler(XEN_CALL_FUNCTION_SINGLE_VECTOR,
129                                     cpu,
130                                     xen_call_function_single_interrupt,
131                                     IRQF_DISABLED|IRQF_PERCPU|IRQF_NOBALANCING,
132                                     callfunc_name,
133                                     NULL);
134         if (rc < 0)
135                 goto fail;
136         per_cpu(callfuncsingle_irq, cpu) = rc;
137
138         return 0;
139
140  fail:
141         if (per_cpu(resched_irq, cpu) >= 0)
142                 unbind_from_irqhandler(per_cpu(resched_irq, cpu), NULL);
143         if (per_cpu(callfunc_irq, cpu) >= 0)
144                 unbind_from_irqhandler(per_cpu(callfunc_irq, cpu), NULL);
145         if (per_cpu(debug_irq, cpu) >= 0)
146                 unbind_from_irqhandler(per_cpu(debug_irq, cpu), NULL);
147         if (per_cpu(callfuncsingle_irq, cpu) >= 0)
148                 unbind_from_irqhandler(per_cpu(callfuncsingle_irq, cpu), NULL);
149
150         return rc;
151 }
152
153 static void __init xen_fill_possible_map(void)
154 {
155         int i, rc;
156
157         for (i = 0; i < nr_cpu_ids; i++) {
158                 rc = HYPERVISOR_vcpu_op(VCPUOP_is_up, i, NULL);
159                 if (rc >= 0) {
160                         num_processors++;
161                         cpu_set(i, cpu_possible_map);
162                 }
163         }
164 }
165
166 static void __init xen_smp_prepare_boot_cpu(void)
167 {
168         BUG_ON(smp_processor_id() != 0);
169         native_smp_prepare_boot_cpu();
170
171         /* We've switched to the "real" per-cpu gdt, so make sure the
172            old memory can be recycled */
173         make_lowmem_page_readwrite(&per_cpu_var(gdt_page));
174
175         xen_setup_vcpu_info_placement();
176 }
177
178 static void __init xen_smp_prepare_cpus(unsigned int max_cpus)
179 {
180         unsigned cpu;
181
182         xen_init_lock_cpu(0);
183
184         smp_store_cpu_info(0);
185         cpu_data(0).x86_max_cores = 1;
186         set_cpu_sibling_map(0);
187
188         if (xen_smp_intr_init(0))
189                 BUG();
190
191         if (!alloc_cpumask_var(&xen_cpu_initialized_map, GFP_KERNEL))
192                 panic("could not allocate xen_cpu_initialized_map\n");
193
194         cpumask_copy(xen_cpu_initialized_map, cpumask_of(0));
195
196         /* Restrict the possible_map according to max_cpus. */
197         while ((num_possible_cpus() > 1) && (num_possible_cpus() > max_cpus)) {
198                 for (cpu = nr_cpu_ids - 1; !cpu_possible(cpu); cpu--)
199                         continue;
200                 cpu_clear(cpu, cpu_possible_map);
201         }
202
203         for_each_possible_cpu (cpu) {
204                 struct task_struct *idle;
205
206                 if (cpu == 0)
207                         continue;
208
209                 idle = fork_idle(cpu);
210                 if (IS_ERR(idle))
211                         panic("failed fork for CPU %d", cpu);
212
213                 cpu_set(cpu, cpu_present_map);
214         }
215 }
216
217 static __cpuinit int
218 cpu_initialize_context(unsigned int cpu, struct task_struct *idle)
219 {
220         struct vcpu_guest_context *ctxt;
221         struct desc_struct *gdt;
222
223         if (cpumask_test_and_set_cpu(cpu, xen_cpu_initialized_map))
224                 return 0;
225
226         ctxt = kzalloc(sizeof(*ctxt), GFP_KERNEL);
227         if (ctxt == NULL)
228                 return -ENOMEM;
229
230         gdt = get_cpu_gdt_table(cpu);
231
232         ctxt->flags = VGCF_IN_KERNEL;
233         ctxt->user_regs.ds = __USER_DS;
234         ctxt->user_regs.es = __USER_DS;
235         ctxt->user_regs.ss = __KERNEL_DS;
236 #ifdef CONFIG_X86_32
237         ctxt->user_regs.fs = __KERNEL_PERCPU;
238 #endif
239         ctxt->user_regs.eip = (unsigned long)cpu_bringup_and_idle;
240         ctxt->user_regs.eflags = 0x1000; /* IOPL_RING1 */
241
242         memset(&ctxt->fpu_ctxt, 0, sizeof(ctxt->fpu_ctxt));
243
244         xen_copy_trap_info(ctxt->trap_ctxt);
245
246         ctxt->ldt_ents = 0;
247
248         BUG_ON((unsigned long)gdt & ~PAGE_MASK);
249         make_lowmem_page_readonly(gdt);
250
251         ctxt->gdt_frames[0] = virt_to_mfn(gdt);
252         ctxt->gdt_ents      = GDT_ENTRIES;
253
254         ctxt->user_regs.cs = __KERNEL_CS;
255         ctxt->user_regs.esp = idle->thread.sp0 - sizeof(struct pt_regs);
256
257         ctxt->kernel_ss = __KERNEL_DS;
258         ctxt->kernel_sp = idle->thread.sp0;
259
260 #ifdef CONFIG_X86_32
261         ctxt->event_callback_cs     = __KERNEL_CS;
262         ctxt->failsafe_callback_cs  = __KERNEL_CS;
263 #endif
264         ctxt->event_callback_eip    = (unsigned long)xen_hypervisor_callback;
265         ctxt->failsafe_callback_eip = (unsigned long)xen_failsafe_callback;
266
267         per_cpu(xen_cr3, cpu) = __pa(swapper_pg_dir);
268         ctxt->ctrlreg[3] = xen_pfn_to_cr3(virt_to_mfn(swapper_pg_dir));
269
270         if (HYPERVISOR_vcpu_op(VCPUOP_initialise, cpu, ctxt))
271                 BUG();
272
273         kfree(ctxt);
274         return 0;
275 }
276
277 static int __cpuinit xen_cpu_up(unsigned int cpu)
278 {
279         struct task_struct *idle = idle_task(cpu);
280         int rc;
281
282         per_cpu(current_task, cpu) = idle;
283 #ifdef CONFIG_X86_32
284         init_gdt(cpu);
285         irq_ctx_init(cpu);
286 #else
287         clear_tsk_thread_flag(idle, TIF_FORK);
288 #endif
289         xen_setup_timer(cpu);
290         xen_init_lock_cpu(cpu);
291
292         per_cpu(cpu_state, cpu) = CPU_UP_PREPARE;
293
294         /* make sure interrupts start blocked */
295         per_cpu(xen_vcpu, cpu)->evtchn_upcall_mask = 1;
296
297         rc = cpu_initialize_context(cpu, idle);
298         if (rc)
299                 return rc;
300
301         if (num_online_cpus() == 1)
302                 alternatives_smp_switch(1);
303
304         rc = xen_smp_intr_init(cpu);
305         if (rc)
306                 return rc;
307
308         rc = HYPERVISOR_vcpu_op(VCPUOP_up, cpu, NULL);
309         BUG_ON(rc);
310
311         while(per_cpu(cpu_state, cpu) != CPU_ONLINE) {
312                 HYPERVISOR_sched_op(SCHEDOP_yield, 0);
313                 barrier();
314         }
315
316         return 0;
317 }
318
319 static void xen_smp_cpus_done(unsigned int max_cpus)
320 {
321 }
322
323 #ifdef CONFIG_HOTPLUG_CPU
324 static int xen_cpu_disable(void)
325 {
326         unsigned int cpu = smp_processor_id();
327         if (cpu == 0)
328                 return -EBUSY;
329
330         cpu_disable_common();
331
332         load_cr3(swapper_pg_dir);
333         return 0;
334 }
335
336 static void xen_cpu_die(unsigned int cpu)
337 {
338         while (HYPERVISOR_vcpu_op(VCPUOP_is_up, cpu, NULL)) {
339                 current->state = TASK_UNINTERRUPTIBLE;
340                 schedule_timeout(HZ/10);
341         }
342         unbind_from_irqhandler(per_cpu(resched_irq, cpu), NULL);
343         unbind_from_irqhandler(per_cpu(callfunc_irq, cpu), NULL);
344         unbind_from_irqhandler(per_cpu(debug_irq, cpu), NULL);
345         unbind_from_irqhandler(per_cpu(callfuncsingle_irq, cpu), NULL);
346         xen_uninit_lock_cpu(cpu);
347         xen_teardown_timer(cpu);
348
349         if (num_online_cpus() == 1)
350                 alternatives_smp_switch(0);
351 }
352
353 static void __cpuinit xen_play_dead(void) /* used only with CPU_HOTPLUG */
354 {
355         play_dead_common();
356         HYPERVISOR_vcpu_op(VCPUOP_down, smp_processor_id(), NULL);
357         cpu_bringup();
358 }
359
360 #else /* !CONFIG_HOTPLUG_CPU */
361 static int xen_cpu_disable(void)
362 {
363         return -ENOSYS;
364 }
365
366 static void xen_cpu_die(unsigned int cpu)
367 {
368         BUG();
369 }
370
371 static void xen_play_dead(void)
372 {
373         BUG();
374 }
375
376 #endif
377 static void stop_self(void *v)
378 {
379         int cpu = smp_processor_id();
380
381         /* make sure we're not pinning something down */
382         load_cr3(swapper_pg_dir);
383         /* should set up a minimal gdt */
384
385         HYPERVISOR_vcpu_op(VCPUOP_down, cpu, NULL);
386         BUG();
387 }
388
389 static void xen_smp_send_stop(void)
390 {
391         smp_call_function(stop_self, NULL, 0);
392 }
393
394 static void xen_smp_send_reschedule(int cpu)
395 {
396         xen_send_IPI_one(cpu, XEN_RESCHEDULE_VECTOR);
397 }
398
399 static void xen_send_IPI_mask(const struct cpumask *mask,
400                               enum ipi_vector vector)
401 {
402         unsigned cpu;
403
404         for_each_cpu_and(cpu, mask, cpu_online_mask)
405                 xen_send_IPI_one(cpu, vector);
406 }
407
408 static void xen_smp_send_call_function_ipi(const struct cpumask *mask)
409 {
410         int cpu;
411
412         xen_send_IPI_mask(mask, XEN_CALL_FUNCTION_VECTOR);
413
414         /* Make sure other vcpus get a chance to run if they need to. */
415         for_each_cpu(cpu, mask) {
416                 if (xen_vcpu_stolen(cpu)) {
417                         HYPERVISOR_sched_op(SCHEDOP_yield, 0);
418                         break;
419                 }
420         }
421 }
422
423 static void xen_smp_send_call_function_single_ipi(int cpu)
424 {
425         xen_send_IPI_mask(cpumask_of(cpu),
426                           XEN_CALL_FUNCTION_SINGLE_VECTOR);
427 }
428
429 static irqreturn_t xen_call_function_interrupt(int irq, void *dev_id)
430 {
431         irq_enter();
432         generic_smp_call_function_interrupt();
433         inc_irq_stat(irq_call_count);
434         irq_exit();
435
436         return IRQ_HANDLED;
437 }
438
439 static irqreturn_t xen_call_function_single_interrupt(int irq, void *dev_id)
440 {
441         irq_enter();
442         generic_smp_call_function_single_interrupt();
443         inc_irq_stat(irq_call_count);
444         irq_exit();
445
446         return IRQ_HANDLED;
447 }
448
449 static const struct smp_ops xen_smp_ops __initdata = {
450         .smp_prepare_boot_cpu = xen_smp_prepare_boot_cpu,
451         .smp_prepare_cpus = xen_smp_prepare_cpus,
452         .smp_cpus_done = xen_smp_cpus_done,
453
454         .cpu_up = xen_cpu_up,
455         .cpu_die = xen_cpu_die,
456         .cpu_disable = xen_cpu_disable,
457         .play_dead = xen_play_dead,
458
459         .smp_send_stop = xen_smp_send_stop,
460         .smp_send_reschedule = xen_smp_send_reschedule,
461
462         .send_call_func_ipi = xen_smp_send_call_function_ipi,
463         .send_call_func_single_ipi = xen_smp_send_call_function_single_ipi,
464 };
465
466 void __init xen_smp_init(void)
467 {
468         smp_ops = xen_smp_ops;
469         xen_fill_possible_map();
470         xen_init_spinlocks();
471 }