blob: deafb65ef44edb7a18ef96e6846843948c7b90b1 [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
Tejun Heoc6e22f92009-10-29 22:34:13 +090038static DEFINE_PER_CPU(int, xen_resched_irq);
39static DEFINE_PER_CPU(int, xen_callfunc_irq);
40static DEFINE_PER_CPU(int, xen_callfuncsingle_irq);
41static DEFINE_PER_CPU(int, xen_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
Rusty Russelld7d37562009-11-03 14:58:38 +103076 set_cpu_online(cpu, true);
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;
Tejun Heoc6e22f92009-10-29 22:34:13 +0900106 per_cpu(xen_resched_irq, cpu) = rc;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700107
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;
Tejun Heoc6e22f92009-10-29 22:34:13 +0900117 per_cpu(xen_callfunc_irq, cpu) = rc;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700118
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;
Tejun Heoc6e22f92009-10-29 22:34:13 +0900125 per_cpu(xen_debug_irq, cpu) = rc;
Jeremy Fitzhardingeee523ca2008-03-17 16:37:18 -0700126
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;
Tejun Heoc6e22f92009-10-29 22:34:13 +0900136 per_cpu(xen_callfuncsingle_irq, cpu) = rc;
Jens Axboe3b16cf82008-06-26 11:21:54 +0200137
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700138 return 0;
139
140 fail:
Tejun Heoc6e22f92009-10-29 22:34:13 +0900141 if (per_cpu(xen_resched_irq, cpu) >= 0)
142 unbind_from_irqhandler(per_cpu(xen_resched_irq, cpu), NULL);
143 if (per_cpu(xen_callfunc_irq, cpu) >= 0)
144 unbind_from_irqhandler(per_cpu(xen_callfunc_irq, cpu), NULL);
145 if (per_cpu(xen_debug_irq, cpu) >= 0)
146 unbind_from_irqhandler(per_cpu(xen_debug_irq, cpu), NULL);
147 if (per_cpu(xen_callfuncsingle_irq, cpu) >= 0)
148 unbind_from_irqhandler(per_cpu(xen_callfuncsingle_irq, cpu),
149 NULL);
Jens Axboe3b16cf82008-06-26 11:21:54 +0200150
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700151 return rc;
152}
153
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700154static void __init xen_fill_possible_map(void)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700155{
156 int i, rc;
157
Mike Travise7986732008-12-16 17:33:52 -0800158 for (i = 0; i < nr_cpu_ids; i++) {
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700159 rc = HYPERVISOR_vcpu_op(VCPUOP_is_up, i, NULL);
Jeremy Fitzhardinge4560a292008-07-08 15:06:56 -0700160 if (rc >= 0) {
161 num_processors++;
Rusty Russell4f062892009-03-13 14:49:54 +1030162 set_cpu_possible(i, true);
Jeremy Fitzhardinge4560a292008-07-08 15:06:56 -0700163 }
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700164 }
165}
166
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700167static void __init xen_smp_prepare_boot_cpu(void)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700168{
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700169 BUG_ON(smp_processor_id() != 0);
170 native_smp_prepare_boot_cpu();
171
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700172 /* We've switched to the "real" per-cpu gdt, so make sure the
173 old memory can be recycled */
Jeremy Fitzhardinge38341432009-02-02 13:55:31 -0800174 make_lowmem_page_readwrite(xen_initial_gdt);
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700175
176 xen_setup_vcpu_info_placement();
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700177}
178
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700179static void __init xen_smp_prepare_cpus(unsigned int max_cpus)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700180{
181 unsigned cpu;
182
Jeremy Fitzhardinge2d9e1e22008-07-07 12:07:53 -0700183 xen_init_lock_cpu(0);
184
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700185 smp_store_cpu_info(0);
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700186 cpu_data(0).x86_max_cores = 1;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700187 set_cpu_sibling_map(0);
188
189 if (xen_smp_intr_init(0))
190 BUG();
191
Mike Travisb78936e2008-12-16 17:33:57 -0800192 if (!alloc_cpumask_var(&xen_cpu_initialized_map, GFP_KERNEL))
193 panic("could not allocate xen_cpu_initialized_map\n");
194
195 cpumask_copy(xen_cpu_initialized_map, cpumask_of(0));
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700196
197 /* Restrict the possible_map according to max_cpus. */
198 while ((num_possible_cpus() > 1) && (num_possible_cpus() > max_cpus)) {
Mike Travise7986732008-12-16 17:33:52 -0800199 for (cpu = nr_cpu_ids - 1; !cpu_possible(cpu); cpu--)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700200 continue;
Rusty Russell4f062892009-03-13 14:49:54 +1030201 set_cpu_possible(cpu, false);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700202 }
203
204 for_each_possible_cpu (cpu) {
205 struct task_struct *idle;
206
207 if (cpu == 0)
208 continue;
209
210 idle = fork_idle(cpu);
211 if (IS_ERR(idle))
212 panic("failed fork for CPU %d", cpu);
213
Rusty Russell4f062892009-03-13 14:49:54 +1030214 set_cpu_present(cpu, true);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700215 }
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700216}
217
218static __cpuinit int
219cpu_initialize_context(unsigned int cpu, struct task_struct *idle)
220{
221 struct vcpu_guest_context *ctxt;
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700222 struct desc_struct *gdt;
Jeremy Fitzhardinge9976b392009-02-27 09:19:26 -0800223 unsigned long gdt_mfn;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700224
Mike Travisb78936e2008-12-16 17:33:57 -0800225 if (cpumask_test_and_set_cpu(cpu, xen_cpu_initialized_map))
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700226 return 0;
227
228 ctxt = kzalloc(sizeof(*ctxt), GFP_KERNEL);
229 if (ctxt == NULL)
230 return -ENOMEM;
231
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700232 gdt = get_cpu_gdt_table(cpu);
233
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700234 ctxt->flags = VGCF_IN_KERNEL;
235 ctxt->user_regs.ds = __USER_DS;
236 ctxt->user_regs.es = __USER_DS;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700237 ctxt->user_regs.ss = __KERNEL_DS;
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700238#ifdef CONFIG_X86_32
239 ctxt->user_regs.fs = __KERNEL_PERCPU;
Jeremy Fitzhardinge577eebe2009-08-27 12:46:35 -0700240 ctxt->user_regs.gs = __KERNEL_STACK_CANARY;
Jeremy Fitzhardinge795f99b2009-01-30 17:47:54 +0900241#else
242 ctxt->gs_base_kernel = per_cpu_offset(cpu);
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700243#endif
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700244 ctxt->user_regs.eip = (unsigned long)cpu_bringup_and_idle;
245 ctxt->user_regs.eflags = 0x1000; /* IOPL_RING1 */
246
247 memset(&ctxt->fpu_ctxt, 0, sizeof(ctxt->fpu_ctxt));
248
249 xen_copy_trap_info(ctxt->trap_ctxt);
250
251 ctxt->ldt_ents = 0;
252
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700253 BUG_ON((unsigned long)gdt & ~PAGE_MASK);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700254
Jeremy Fitzhardinge9976b392009-02-27 09:19:26 -0800255 gdt_mfn = arbitrary_virt_to_mfn(gdt);
256 make_lowmem_page_readonly(gdt);
257 make_lowmem_page_readonly(mfn_to_virt(gdt_mfn));
258
259 ctxt->gdt_frames[0] = gdt_mfn;
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700260 ctxt->gdt_ents = GDT_ENTRIES;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700261
262 ctxt->user_regs.cs = __KERNEL_CS;
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100263 ctxt->user_regs.esp = idle->thread.sp0 - sizeof(struct pt_regs);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700264
265 ctxt->kernel_ss = __KERNEL_DS;
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100266 ctxt->kernel_sp = idle->thread.sp0;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700267
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700268#ifdef CONFIG_X86_32
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700269 ctxt->event_callback_cs = __KERNEL_CS;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700270 ctxt->failsafe_callback_cs = __KERNEL_CS;
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700271#endif
272 ctxt->event_callback_eip = (unsigned long)xen_hypervisor_callback;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700273 ctxt->failsafe_callback_eip = (unsigned long)xen_failsafe_callback;
274
275 per_cpu(xen_cr3, cpu) = __pa(swapper_pg_dir);
276 ctxt->ctrlreg[3] = xen_pfn_to_cr3(virt_to_mfn(swapper_pg_dir));
277
278 if (HYPERVISOR_vcpu_op(VCPUOP_initialise, cpu, ctxt))
279 BUG();
280
281 kfree(ctxt);
282 return 0;
283}
284
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700285static int __cpuinit xen_cpu_up(unsigned int cpu)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700286{
287 struct task_struct *idle = idle_task(cpu);
288 int rc;
289
Brian Gerstc6f5e0a2009-01-19 00:38:58 +0900290 per_cpu(current_task, cpu) = idle;
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700291#ifdef CONFIG_X86_32
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700292 irq_ctx_init(cpu);
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700293#else
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700294 clear_tsk_thread_flag(idle, TIF_FORK);
Jeremy Fitzhardinge38341432009-02-02 13:55:31 -0800295 per_cpu(kernel_stack, cpu) =
296 (unsigned long)task_stack_page(idle) -
297 KERNEL_STACK_OFFSET + THREAD_SIZE;
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700298#endif
Ian Campbell02889672009-11-24 09:32:48 -0800299 xen_setup_runstate_info(cpu);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700300 xen_setup_timer(cpu);
Jeremy Fitzhardinge2d9e1e22008-07-07 12:07:53 -0700301 xen_init_lock_cpu(cpu);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700302
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700303 per_cpu(cpu_state, cpu) = CPU_UP_PREPARE;
304
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700305 /* make sure interrupts start blocked */
306 per_cpu(xen_vcpu, cpu)->evtchn_upcall_mask = 1;
307
308 rc = cpu_initialize_context(cpu, idle);
309 if (rc)
310 return rc;
311
312 if (num_online_cpus() == 1)
313 alternatives_smp_switch(1);
314
315 rc = xen_smp_intr_init(cpu);
316 if (rc)
317 return rc;
318
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700319 rc = HYPERVISOR_vcpu_op(VCPUOP_up, cpu, NULL);
320 BUG_ON(rc);
321
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700322 while(per_cpu(cpu_state, cpu) != CPU_ONLINE) {
Hannes Eder1207cf8e2009-03-05 20:13:57 +0100323 HYPERVISOR_sched_op(SCHEDOP_yield, NULL);
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700324 barrier();
325 }
326
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700327 return 0;
328}
329
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700330static void xen_smp_cpus_done(unsigned int max_cpus)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700331{
332}
333
Alex Nixon27371462008-09-08 13:43:33 +0100334#ifdef CONFIG_HOTPLUG_CPU
Alex Nixon26fd1052008-09-08 13:43:34 +0100335static int xen_cpu_disable(void)
Alex Nixond68d82a2008-08-22 11:52:15 +0100336{
337 unsigned int cpu = smp_processor_id();
338 if (cpu == 0)
339 return -EBUSY;
340
341 cpu_disable_common();
342
343 load_cr3(swapper_pg_dir);
344 return 0;
345}
346
Alex Nixon26fd1052008-09-08 13:43:34 +0100347static void xen_cpu_die(unsigned int cpu)
Alex Nixond68d82a2008-08-22 11:52:15 +0100348{
349 while (HYPERVISOR_vcpu_op(VCPUOP_is_up, cpu, NULL)) {
350 current->state = TASK_UNINTERRUPTIBLE;
351 schedule_timeout(HZ/10);
352 }
Tejun Heoc6e22f92009-10-29 22:34:13 +0900353 unbind_from_irqhandler(per_cpu(xen_resched_irq, cpu), NULL);
354 unbind_from_irqhandler(per_cpu(xen_callfunc_irq, cpu), NULL);
355 unbind_from_irqhandler(per_cpu(xen_debug_irq, cpu), NULL);
356 unbind_from_irqhandler(per_cpu(xen_callfuncsingle_irq, cpu), NULL);
Alex Nixond68d82a2008-08-22 11:52:15 +0100357 xen_uninit_lock_cpu(cpu);
358 xen_teardown_timer(cpu);
359
360 if (num_online_cpus() == 1)
361 alternatives_smp_switch(0);
362}
363
Robert P. J. Day71709242009-12-28 11:50:29 -0500364static void __cpuinit xen_play_dead(void) /* used only with HOTPLUG_CPU */
Alex Nixond68d82a2008-08-22 11:52:15 +0100365{
366 play_dead_common();
367 HYPERVISOR_vcpu_op(VCPUOP_down, smp_processor_id(), NULL);
368 cpu_bringup();
369}
370
Alex Nixon27371462008-09-08 13:43:33 +0100371#else /* !CONFIG_HOTPLUG_CPU */
Alex Nixon26fd1052008-09-08 13:43:34 +0100372static int xen_cpu_disable(void)
Alex Nixon27371462008-09-08 13:43:33 +0100373{
374 return -ENOSYS;
375}
376
Alex Nixon26fd1052008-09-08 13:43:34 +0100377static void xen_cpu_die(unsigned int cpu)
Alex Nixon27371462008-09-08 13:43:33 +0100378{
379 BUG();
380}
381
Alex Nixon26fd1052008-09-08 13:43:34 +0100382static void xen_play_dead(void)
Alex Nixon27371462008-09-08 13:43:33 +0100383{
384 BUG();
385}
386
387#endif
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700388static void stop_self(void *v)
389{
390 int cpu = smp_processor_id();
391
392 /* make sure we're not pinning something down */
393 load_cr3(swapper_pg_dir);
394 /* should set up a minimal gdt */
395
396 HYPERVISOR_vcpu_op(VCPUOP_down, cpu, NULL);
397 BUG();
398}
399
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700400static void xen_smp_send_stop(void)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700401{
Jens Axboe8691e5a2008-06-06 11:18:06 +0200402 smp_call_function(stop_self, NULL, 0);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700403}
404
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700405static void xen_smp_send_reschedule(int cpu)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700406{
407 xen_send_IPI_one(cpu, XEN_RESCHEDULE_VECTOR);
408}
409
Mike Travisbcda0162008-12-16 17:33:59 -0800410static void xen_send_IPI_mask(const struct cpumask *mask,
411 enum ipi_vector vector)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700412{
413 unsigned cpu;
414
Mike Travisbcda0162008-12-16 17:33:59 -0800415 for_each_cpu_and(cpu, mask, cpu_online_mask)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700416 xen_send_IPI_one(cpu, vector);
417}
418
Mike Travisbcda0162008-12-16 17:33:59 -0800419static void xen_smp_send_call_function_ipi(const struct cpumask *mask)
Jens Axboe3b16cf82008-06-26 11:21:54 +0200420{
421 int cpu;
422
423 xen_send_IPI_mask(mask, XEN_CALL_FUNCTION_VECTOR);
424
425 /* Make sure other vcpus get a chance to run if they need to. */
Mike Travisbcda0162008-12-16 17:33:59 -0800426 for_each_cpu(cpu, mask) {
Jens Axboe3b16cf82008-06-26 11:21:54 +0200427 if (xen_vcpu_stolen(cpu)) {
Hannes Eder1207cf8e2009-03-05 20:13:57 +0100428 HYPERVISOR_sched_op(SCHEDOP_yield, NULL);
Jens Axboe3b16cf82008-06-26 11:21:54 +0200429 break;
430 }
431 }
432}
433
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700434static void xen_smp_send_call_function_single_ipi(int cpu)
Jens Axboe3b16cf82008-06-26 11:21:54 +0200435{
Mike Travisbcda0162008-12-16 17:33:59 -0800436 xen_send_IPI_mask(cpumask_of(cpu),
Mike Travise7986732008-12-16 17:33:52 -0800437 XEN_CALL_FUNCTION_SINGLE_VECTOR);
Jens Axboe3b16cf82008-06-26 11:21:54 +0200438}
439
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700440static irqreturn_t xen_call_function_interrupt(int irq, void *dev_id)
441{
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700442 irq_enter();
Jens Axboe3b16cf82008-06-26 11:21:54 +0200443 generic_smp_call_function_interrupt();
Brian Gerst1b437c82009-01-19 00:38:57 +0900444 inc_irq_stat(irq_call_count);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700445 irq_exit();
446
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700447 return IRQ_HANDLED;
448}
449
Jens Axboe3b16cf82008-06-26 11:21:54 +0200450static irqreturn_t xen_call_function_single_interrupt(int irq, void *dev_id)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700451{
Jens Axboe3b16cf82008-06-26 11:21:54 +0200452 irq_enter();
453 generic_smp_call_function_single_interrupt();
Brian Gerst1b437c82009-01-19 00:38:57 +0900454 inc_irq_stat(irq_call_count);
Jens Axboe3b16cf82008-06-26 11:21:54 +0200455 irq_exit();
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700456
Jens Axboe3b16cf82008-06-26 11:21:54 +0200457 return IRQ_HANDLED;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700458}
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700459
460static const struct smp_ops xen_smp_ops __initdata = {
461 .smp_prepare_boot_cpu = xen_smp_prepare_boot_cpu,
462 .smp_prepare_cpus = xen_smp_prepare_cpus,
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700463 .smp_cpus_done = xen_smp_cpus_done,
464
Alex Nixond68d82a2008-08-22 11:52:15 +0100465 .cpu_up = xen_cpu_up,
466 .cpu_die = xen_cpu_die,
467 .cpu_disable = xen_cpu_disable,
468 .play_dead = xen_play_dead,
469
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700470 .smp_send_stop = xen_smp_send_stop,
471 .smp_send_reschedule = xen_smp_send_reschedule,
472
473 .send_call_func_ipi = xen_smp_send_call_function_ipi,
474 .send_call_func_single_ipi = xen_smp_send_call_function_single_ipi,
475};
476
477void __init xen_smp_init(void)
478{
479 smp_ops = xen_smp_ops;
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700480 xen_fill_possible_map();
Jeremy Fitzhardinge2d9e1e22008-07-07 12:07:53 -0700481 xen_init_spinlocks();
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700482}