blob: 9ff3b0999cfb3bbe4a285e75d1d30a8118bf35a3 [file] [log] [blame]
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -07001/*
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.
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070014 */
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
Mike Travisb78936e2008-12-16 17:33:57 -080036cpumask_var_t xen_cpu_initialized_map;
Jens Axboe3b16cf82008-06-26 11:21:54 +020037
38static DEFINE_PER_CPU(int, resched_irq);
39static DEFINE_PER_CPU(int, callfunc_irq);
40static DEFINE_PER_CPU(int, callfuncsingle_irq);
Jeremy Fitzhardingeee523ca2008-03-17 16:37:18 -070041static DEFINE_PER_CPU(int, debug_irq) = -1;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070042
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070043static irqreturn_t xen_call_function_interrupt(int irq, void *dev_id);
Jens Axboe3b16cf82008-06-26 11:21:54 +020044static irqreturn_t xen_call_function_single_interrupt(int irq, void *dev_id);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070045
46/*
47 * Reschedule call back. Nothing to do,
48 * all the work is done automatically when
49 * we return from the interrupt.
50 */
51static irqreturn_t xen_reschedule_interrupt(int irq, void *dev_id)
52{
Brian Gerst1b437c82009-01-19 00:38:57 +090053 inc_irq_stat(irq_resched_count);
Jeremy Fitzhardinge38bb5ab2008-05-26 23:31:16 +010054
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070055 return IRQ_HANDLED;
56}
57
Alex Nixond68d82a2008-08-22 11:52:15 +010058static __cpuinit void cpu_bringup(void)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070059{
60 int cpu = smp_processor_id();
61
62 cpu_init();
Alex Nixond68d82a2008-08-22 11:52:15 +010063 touch_softlockup_watchdog();
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -070064 preempt_disable();
65
Jeremy Fitzhardingee2a81ba2008-03-17 16:37:17 -070066 xen_enable_sysenter();
Jeremy Fitzhardinge6fcac6d2008-07-08 15:07:14 -070067 xen_enable_syscall();
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070068
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -070069 cpu = smp_processor_id();
70 smp_store_cpu_info(cpu);
71 cpu_data(cpu).x86_max_cores = 1;
72 set_cpu_sibling_map(cpu);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070073
74 xen_setup_cpu_clockevents();
75
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -070076 cpu_set(cpu, cpu_online_map);
Ingo Molnar6dbde352009-01-15 22:15:53 +090077 percpu_write(cpu_state, CPU_ONLINE);
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -070078 wmb();
79
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070080 /* We can take interrupts now: we're officially "up". */
81 local_irq_enable();
82
83 wmb(); /* make sure everything is out */
Alex Nixond68d82a2008-08-22 11:52:15 +010084}
85
86static __cpuinit void cpu_bringup_and_idle(void)
87{
88 cpu_bringup();
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070089 cpu_idle();
90}
91
92static int xen_smp_intr_init(unsigned int cpu)
93{
94 int rc;
Jeremy Fitzhardingeee523ca2008-03-17 16:37:18 -070095 const char *resched_name, *callfunc_name, *debug_name;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070096
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
Jeremy Fitzhardingeee523ca2008-03-17 16:37:18 -0700119 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
Jens Axboe3b16cf82008-06-26 11:21:54 +0200127 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
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700138 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);
Jeremy Fitzhardingeee523ca2008-03-17 16:37:18 -0700145 if (per_cpu(debug_irq, cpu) >= 0)
146 unbind_from_irqhandler(per_cpu(debug_irq, cpu), NULL);
Jens Axboe3b16cf82008-06-26 11:21:54 +0200147 if (per_cpu(callfuncsingle_irq, cpu) >= 0)
148 unbind_from_irqhandler(per_cpu(callfuncsingle_irq, cpu), NULL);
149
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700150 return rc;
151}
152
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700153static void __init xen_fill_possible_map(void)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700154{
155 int i, rc;
156
Mike Travise7986732008-12-16 17:33:52 -0800157 for (i = 0; i < nr_cpu_ids; i++) {
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700158 rc = HYPERVISOR_vcpu_op(VCPUOP_is_up, i, NULL);
Jeremy Fitzhardinge4560a292008-07-08 15:06:56 -0700159 if (rc >= 0) {
160 num_processors++;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700161 cpu_set(i, cpu_possible_map);
Jeremy Fitzhardinge4560a292008-07-08 15:06:56 -0700162 }
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700163 }
164}
165
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700166static void __init xen_smp_prepare_boot_cpu(void)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700167{
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700168 BUG_ON(smp_processor_id() != 0);
169 native_smp_prepare_boot_cpu();
170
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700171 /* We've switched to the "real" per-cpu gdt, so make sure the
172 old memory can be recycled */
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700173 make_lowmem_page_readwrite(&per_cpu_var(gdt_page));
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700174
175 xen_setup_vcpu_info_placement();
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700176}
177
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700178static void __init xen_smp_prepare_cpus(unsigned int max_cpus)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700179{
180 unsigned cpu;
181
Jeremy Fitzhardinge2d9e1e22008-07-07 12:07:53 -0700182 xen_init_lock_cpu(0);
183
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700184 smp_store_cpu_info(0);
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700185 cpu_data(0).x86_max_cores = 1;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700186 set_cpu_sibling_map(0);
187
188 if (xen_smp_intr_init(0))
189 BUG();
190
Mike Travisb78936e2008-12-16 17:33:57 -0800191 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));
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700195
196 /* Restrict the possible_map according to max_cpus. */
197 while ((num_possible_cpus() > 1) && (num_possible_cpus() > max_cpus)) {
Mike Travise7986732008-12-16 17:33:52 -0800198 for (cpu = nr_cpu_ids - 1; !cpu_possible(cpu); cpu--)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700199 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 }
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700215}
216
217static __cpuinit int
218cpu_initialize_context(unsigned int cpu, struct task_struct *idle)
219{
220 struct vcpu_guest_context *ctxt;
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700221 struct desc_struct *gdt;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700222
Mike Travisb78936e2008-12-16 17:33:57 -0800223 if (cpumask_test_and_set_cpu(cpu, xen_cpu_initialized_map))
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700224 return 0;
225
226 ctxt = kzalloc(sizeof(*ctxt), GFP_KERNEL);
227 if (ctxt == NULL)
228 return -ENOMEM;
229
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700230 gdt = get_cpu_gdt_table(cpu);
231
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700232 ctxt->flags = VGCF_IN_KERNEL;
233 ctxt->user_regs.ds = __USER_DS;
234 ctxt->user_regs.es = __USER_DS;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700235 ctxt->user_regs.ss = __KERNEL_DS;
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700236#ifdef CONFIG_X86_32
237 ctxt->user_regs.fs = __KERNEL_PERCPU;
238#endif
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700239 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
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700248 BUG_ON((unsigned long)gdt & ~PAGE_MASK);
249 make_lowmem_page_readonly(gdt);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700250
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700251 ctxt->gdt_frames[0] = virt_to_mfn(gdt);
252 ctxt->gdt_ents = GDT_ENTRIES;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700253
254 ctxt->user_regs.cs = __KERNEL_CS;
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100255 ctxt->user_regs.esp = idle->thread.sp0 - sizeof(struct pt_regs);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700256
257 ctxt->kernel_ss = __KERNEL_DS;
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100258 ctxt->kernel_sp = idle->thread.sp0;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700259
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700260#ifdef CONFIG_X86_32
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700261 ctxt->event_callback_cs = __KERNEL_CS;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700262 ctxt->failsafe_callback_cs = __KERNEL_CS;
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700263#endif
264 ctxt->event_callback_eip = (unsigned long)xen_hypervisor_callback;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700265 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
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700277static int __cpuinit xen_cpu_up(unsigned int cpu)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700278{
279 struct task_struct *idle = idle_task(cpu);
280 int rc;
281
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700282#ifdef CONFIG_X86_32
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700283 init_gdt(cpu);
284 per_cpu(current_task, cpu) = idle;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700285 irq_ctx_init(cpu);
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700286#else
287 cpu_pda(cpu)->pcurrent = idle;
288 clear_tsk_thread_flag(idle, TIF_FORK);
289#endif
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700290 xen_setup_timer(cpu);
Jeremy Fitzhardinge2d9e1e22008-07-07 12:07:53 -0700291 xen_init_lock_cpu(cpu);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700292
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700293 per_cpu(cpu_state, cpu) = CPU_UP_PREPARE;
294
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700295 /* make sure interrupts start blocked */
296 per_cpu(xen_vcpu, cpu)->evtchn_upcall_mask = 1;
297
298 rc = cpu_initialize_context(cpu, idle);
299 if (rc)
300 return rc;
301
302 if (num_online_cpus() == 1)
303 alternatives_smp_switch(1);
304
305 rc = xen_smp_intr_init(cpu);
306 if (rc)
307 return rc;
308
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700309 rc = HYPERVISOR_vcpu_op(VCPUOP_up, cpu, NULL);
310 BUG_ON(rc);
311
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700312 while(per_cpu(cpu_state, cpu) != CPU_ONLINE) {
313 HYPERVISOR_sched_op(SCHEDOP_yield, 0);
314 barrier();
315 }
316
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700317 return 0;
318}
319
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700320static void xen_smp_cpus_done(unsigned int max_cpus)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700321{
322}
323
Alex Nixon27371462008-09-08 13:43:33 +0100324#ifdef CONFIG_HOTPLUG_CPU
Alex Nixon26fd1052008-09-08 13:43:34 +0100325static int xen_cpu_disable(void)
Alex Nixond68d82a2008-08-22 11:52:15 +0100326{
327 unsigned int cpu = smp_processor_id();
328 if (cpu == 0)
329 return -EBUSY;
330
331 cpu_disable_common();
332
333 load_cr3(swapper_pg_dir);
334 return 0;
335}
336
Alex Nixon26fd1052008-09-08 13:43:34 +0100337static void xen_cpu_die(unsigned int cpu)
Alex Nixond68d82a2008-08-22 11:52:15 +0100338{
339 while (HYPERVISOR_vcpu_op(VCPUOP_is_up, cpu, NULL)) {
340 current->state = TASK_UNINTERRUPTIBLE;
341 schedule_timeout(HZ/10);
342 }
343 unbind_from_irqhandler(per_cpu(resched_irq, cpu), NULL);
344 unbind_from_irqhandler(per_cpu(callfunc_irq, cpu), NULL);
345 unbind_from_irqhandler(per_cpu(debug_irq, cpu), NULL);
346 unbind_from_irqhandler(per_cpu(callfuncsingle_irq, cpu), NULL);
347 xen_uninit_lock_cpu(cpu);
348 xen_teardown_timer(cpu);
349
350 if (num_online_cpus() == 1)
351 alternatives_smp_switch(0);
352}
353
Al Virodf6b0792008-11-22 17:38:04 +0000354static void __cpuinit xen_play_dead(void) /* used only with CPU_HOTPLUG */
Alex Nixond68d82a2008-08-22 11:52:15 +0100355{
356 play_dead_common();
357 HYPERVISOR_vcpu_op(VCPUOP_down, smp_processor_id(), NULL);
358 cpu_bringup();
359}
360
Alex Nixon27371462008-09-08 13:43:33 +0100361#else /* !CONFIG_HOTPLUG_CPU */
Alex Nixon26fd1052008-09-08 13:43:34 +0100362static int xen_cpu_disable(void)
Alex Nixon27371462008-09-08 13:43:33 +0100363{
364 return -ENOSYS;
365}
366
Alex Nixon26fd1052008-09-08 13:43:34 +0100367static void xen_cpu_die(unsigned int cpu)
Alex Nixon27371462008-09-08 13:43:33 +0100368{
369 BUG();
370}
371
Alex Nixon26fd1052008-09-08 13:43:34 +0100372static void xen_play_dead(void)
Alex Nixon27371462008-09-08 13:43:33 +0100373{
374 BUG();
375}
376
377#endif
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700378static void stop_self(void *v)
379{
380 int cpu = smp_processor_id();
381
382 /* make sure we're not pinning something down */
383 load_cr3(swapper_pg_dir);
384 /* should set up a minimal gdt */
385
386 HYPERVISOR_vcpu_op(VCPUOP_down, cpu, NULL);
387 BUG();
388}
389
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700390static void xen_smp_send_stop(void)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700391{
Jens Axboe8691e5a2008-06-06 11:18:06 +0200392 smp_call_function(stop_self, NULL, 0);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700393}
394
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700395static void xen_smp_send_reschedule(int cpu)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700396{
397 xen_send_IPI_one(cpu, XEN_RESCHEDULE_VECTOR);
398}
399
Mike Travisbcda0162008-12-16 17:33:59 -0800400static void xen_send_IPI_mask(const struct cpumask *mask,
401 enum ipi_vector vector)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700402{
403 unsigned cpu;
404
Mike Travisbcda0162008-12-16 17:33:59 -0800405 for_each_cpu_and(cpu, mask, cpu_online_mask)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700406 xen_send_IPI_one(cpu, vector);
407}
408
Mike Travisbcda0162008-12-16 17:33:59 -0800409static void xen_smp_send_call_function_ipi(const struct cpumask *mask)
Jens Axboe3b16cf82008-06-26 11:21:54 +0200410{
411 int cpu;
412
413 xen_send_IPI_mask(mask, XEN_CALL_FUNCTION_VECTOR);
414
415 /* Make sure other vcpus get a chance to run if they need to. */
Mike Travisbcda0162008-12-16 17:33:59 -0800416 for_each_cpu(cpu, mask) {
Jens Axboe3b16cf82008-06-26 11:21:54 +0200417 if (xen_vcpu_stolen(cpu)) {
418 HYPERVISOR_sched_op(SCHEDOP_yield, 0);
419 break;
420 }
421 }
422}
423
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700424static void xen_smp_send_call_function_single_ipi(int cpu)
Jens Axboe3b16cf82008-06-26 11:21:54 +0200425{
Mike Travisbcda0162008-12-16 17:33:59 -0800426 xen_send_IPI_mask(cpumask_of(cpu),
Mike Travise7986732008-12-16 17:33:52 -0800427 XEN_CALL_FUNCTION_SINGLE_VECTOR);
Jens Axboe3b16cf82008-06-26 11:21:54 +0200428}
429
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700430static irqreturn_t xen_call_function_interrupt(int irq, void *dev_id)
431{
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700432 irq_enter();
Jens Axboe3b16cf82008-06-26 11:21:54 +0200433 generic_smp_call_function_interrupt();
Brian Gerst1b437c82009-01-19 00:38:57 +0900434 inc_irq_stat(irq_call_count);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700435 irq_exit();
436
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700437 return IRQ_HANDLED;
438}
439
Jens Axboe3b16cf82008-06-26 11:21:54 +0200440static irqreturn_t xen_call_function_single_interrupt(int irq, void *dev_id)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700441{
Jens Axboe3b16cf82008-06-26 11:21:54 +0200442 irq_enter();
443 generic_smp_call_function_single_interrupt();
Brian Gerst1b437c82009-01-19 00:38:57 +0900444 inc_irq_stat(irq_call_count);
Jens Axboe3b16cf82008-06-26 11:21:54 +0200445 irq_exit();
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700446
Jens Axboe3b16cf82008-06-26 11:21:54 +0200447 return IRQ_HANDLED;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700448}
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700449
450static const struct smp_ops xen_smp_ops __initdata = {
451 .smp_prepare_boot_cpu = xen_smp_prepare_boot_cpu,
452 .smp_prepare_cpus = xen_smp_prepare_cpus,
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700453 .smp_cpus_done = xen_smp_cpus_done,
454
Alex Nixond68d82a2008-08-22 11:52:15 +0100455 .cpu_up = xen_cpu_up,
456 .cpu_die = xen_cpu_die,
457 .cpu_disable = xen_cpu_disable,
458 .play_dead = xen_play_dead,
459
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700460 .smp_send_stop = xen_smp_send_stop,
461 .smp_send_reschedule = xen_smp_send_reschedule,
462
463 .send_call_func_ipi = xen_smp_send_call_function_ipi,
464 .send_call_func_single_ipi = xen_smp_send_call_function_single_ipi,
465};
466
467void __init xen_smp_init(void)
468{
469 smp_ops = xen_smp_ops;
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700470 xen_fill_possible_map();
Jeremy Fitzhardinge2d9e1e22008-07-07 12:07:53 -0700471 xen_init_spinlocks();
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700472}