blob: 449f86897db3abeff4cd1f44222a2b73f740b01a [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090017#include <linux/slab.h>
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070018#include <linux/smp.h>
19
20#include <asm/paravirt.h>
21#include <asm/desc.h>
22#include <asm/pgtable.h>
23#include <asm/cpu.h>
24
25#include <xen/interface/xen.h>
26#include <xen/interface/vcpu.h>
27
28#include <asm/xen/interface.h>
29#include <asm/xen/hypercall.h>
30
Stefano Stabelliniea5b8f72010-10-26 17:28:33 +010031#include <xen/xen.h>
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070032#include <xen/page.h>
33#include <xen/events.h>
34
Konrad Rzeszutek Wilked467e62011-09-01 09:48:27 -040035#include <xen/hvc-console.h>
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070036#include "xen-ops.h"
37#include "mmu.h"
38
Mike Travisb78936e2008-12-16 17:33:57 -080039cpumask_var_t xen_cpu_initialized_map;
Jens Axboe3b16cf82008-06-26 11:21:54 +020040
Tejun Heoc6e22f92009-10-29 22:34:13 +090041static DEFINE_PER_CPU(int, xen_resched_irq);
42static DEFINE_PER_CPU(int, xen_callfunc_irq);
43static DEFINE_PER_CPU(int, xen_callfuncsingle_irq);
44static DEFINE_PER_CPU(int, xen_debug_irq) = -1;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070045
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070046static irqreturn_t xen_call_function_interrupt(int irq, void *dev_id);
Jens Axboe3b16cf82008-06-26 11:21:54 +020047static irqreturn_t xen_call_function_single_interrupt(int irq, void *dev_id);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070048
49/*
Peter Zijlstra184748c2011-04-05 17:23:39 +020050 * Reschedule call back.
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070051 */
52static irqreturn_t xen_reschedule_interrupt(int irq, void *dev_id)
53{
Brian Gerst1b437c82009-01-19 00:38:57 +090054 inc_irq_stat(irq_resched_count);
Peter Zijlstra184748c2011-04-05 17:23:39 +020055 scheduler_ipi();
Jeremy Fitzhardinge38bb5ab2008-05-26 23:31:16 +010056
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070057 return IRQ_HANDLED;
58}
59
Daniel Kiperb53cede2011-05-04 20:18:05 +020060static void __cpuinit cpu_bringup(void)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070061{
62 int cpu = smp_processor_id();
63
64 cpu_init();
Alex Nixond68d82a2008-08-22 11:52:15 +010065 touch_softlockup_watchdog();
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -070066 preempt_disable();
67
Jeremy Fitzhardingee2a81ba2008-03-17 16:37:17 -070068 xen_enable_sysenter();
Jeremy Fitzhardinge6fcac6d2008-07-08 15:07:14 -070069 xen_enable_syscall();
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070070
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -070071 cpu = smp_processor_id();
72 smp_store_cpu_info(cpu);
73 cpu_data(cpu).x86_max_cores = 1;
74 set_cpu_sibling_map(cpu);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070075
76 xen_setup_cpu_clockevents();
77
Rusty Russelld7d37562009-11-03 14:58:38 +103078 set_cpu_online(cpu, true);
Alex Shi2113f462012-01-13 23:53:35 +080079 this_cpu_write(cpu_state, CPU_ONLINE);
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -070080 wmb();
81
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070082 /* We can take interrupts now: we're officially "up". */
83 local_irq_enable();
84
85 wmb(); /* make sure everything is out */
Alex Nixond68d82a2008-08-22 11:52:15 +010086}
87
Daniel Kiperb53cede2011-05-04 20:18:05 +020088static void __cpuinit cpu_bringup_and_idle(void)
Alex Nixond68d82a2008-08-22 11:52:15 +010089{
90 cpu_bringup();
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070091 cpu_idle();
92}
93
94static int xen_smp_intr_init(unsigned int cpu)
95{
96 int rc;
Jeremy Fitzhardingeee523ca2008-03-17 16:37:18 -070097 const char *resched_name, *callfunc_name, *debug_name;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070098
99 resched_name = kasprintf(GFP_KERNEL, "resched%d", cpu);
100 rc = bind_ipi_to_irqhandler(XEN_RESCHEDULE_VECTOR,
101 cpu,
102 xen_reschedule_interrupt,
103 IRQF_DISABLED|IRQF_PERCPU|IRQF_NOBALANCING,
104 resched_name,
105 NULL);
106 if (rc < 0)
107 goto fail;
Tejun Heoc6e22f92009-10-29 22:34:13 +0900108 per_cpu(xen_resched_irq, cpu) = rc;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700109
110 callfunc_name = kasprintf(GFP_KERNEL, "callfunc%d", cpu);
111 rc = bind_ipi_to_irqhandler(XEN_CALL_FUNCTION_VECTOR,
112 cpu,
113 xen_call_function_interrupt,
114 IRQF_DISABLED|IRQF_PERCPU|IRQF_NOBALANCING,
115 callfunc_name,
116 NULL);
117 if (rc < 0)
118 goto fail;
Tejun Heoc6e22f92009-10-29 22:34:13 +0900119 per_cpu(xen_callfunc_irq, cpu) = rc;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700120
Jeremy Fitzhardingeee523ca2008-03-17 16:37:18 -0700121 debug_name = kasprintf(GFP_KERNEL, "debug%d", cpu);
122 rc = bind_virq_to_irqhandler(VIRQ_DEBUG, cpu, xen_debug_interrupt,
123 IRQF_DISABLED | IRQF_PERCPU | IRQF_NOBALANCING,
124 debug_name, NULL);
125 if (rc < 0)
126 goto fail;
Tejun Heoc6e22f92009-10-29 22:34:13 +0900127 per_cpu(xen_debug_irq, cpu) = rc;
Jeremy Fitzhardingeee523ca2008-03-17 16:37:18 -0700128
Jens Axboe3b16cf82008-06-26 11:21:54 +0200129 callfunc_name = kasprintf(GFP_KERNEL, "callfuncsingle%d", cpu);
130 rc = bind_ipi_to_irqhandler(XEN_CALL_FUNCTION_SINGLE_VECTOR,
131 cpu,
132 xen_call_function_single_interrupt,
133 IRQF_DISABLED|IRQF_PERCPU|IRQF_NOBALANCING,
134 callfunc_name,
135 NULL);
136 if (rc < 0)
137 goto fail;
Tejun Heoc6e22f92009-10-29 22:34:13 +0900138 per_cpu(xen_callfuncsingle_irq, cpu) = rc;
Jens Axboe3b16cf82008-06-26 11:21:54 +0200139
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700140 return 0;
141
142 fail:
Tejun Heoc6e22f92009-10-29 22:34:13 +0900143 if (per_cpu(xen_resched_irq, cpu) >= 0)
144 unbind_from_irqhandler(per_cpu(xen_resched_irq, cpu), NULL);
145 if (per_cpu(xen_callfunc_irq, cpu) >= 0)
146 unbind_from_irqhandler(per_cpu(xen_callfunc_irq, cpu), NULL);
147 if (per_cpu(xen_debug_irq, cpu) >= 0)
148 unbind_from_irqhandler(per_cpu(xen_debug_irq, cpu), NULL);
149 if (per_cpu(xen_callfuncsingle_irq, cpu) >= 0)
150 unbind_from_irqhandler(per_cpu(xen_callfuncsingle_irq, cpu),
151 NULL);
Jens Axboe3b16cf82008-06-26 11:21:54 +0200152
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700153 return rc;
154}
155
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700156static void __init xen_fill_possible_map(void)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700157{
158 int i, rc;
159
Stefano Stabelliniea5b8f72010-10-26 17:28:33 +0100160 if (xen_initial_domain())
161 return;
162
Mike Travise7986732008-12-16 17:33:52 -0800163 for (i = 0; i < nr_cpu_ids; i++) {
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700164 rc = HYPERVISOR_vcpu_op(VCPUOP_is_up, i, NULL);
Jeremy Fitzhardinge4560a292008-07-08 15:06:56 -0700165 if (rc >= 0) {
166 num_processors++;
Rusty Russell4f062892009-03-13 14:49:54 +1030167 set_cpu_possible(i, true);
Jeremy Fitzhardinge4560a292008-07-08 15:06:56 -0700168 }
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700169 }
170}
171
Stefano Stabelliniea5b8f72010-10-26 17:28:33 +0100172static void __init xen_filter_cpu_maps(void)
173{
174 int i, rc;
175
176 if (!xen_initial_domain())
177 return;
178
Stefano Stabellini801fd142010-09-23 12:06:25 +0100179 num_processors = 0;
180 disabled_cpus = 0;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700181 for (i = 0; i < nr_cpu_ids; i++) {
182 rc = HYPERVISOR_vcpu_op(VCPUOP_is_up, i, NULL);
183 if (rc >= 0) {
184 num_processors++;
185 set_cpu_possible(i, true);
Stefano Stabellini801fd142010-09-23 12:06:25 +0100186 } else {
187 set_cpu_possible(i, false);
188 set_cpu_present(i, false);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700189 }
190 }
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700191}
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700192
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700193static void __init xen_smp_prepare_boot_cpu(void)
194{
195 BUG_ON(smp_processor_id() != 0);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700196 native_smp_prepare_boot_cpu();
197
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700198 /* We've switched to the "real" per-cpu gdt, so make sure the
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700199 old memory can be recycled */
Jeremy Fitzhardinge38341432009-02-02 13:55:31 -0800200 make_lowmem_page_readwrite(xen_initial_gdt);
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700201
Stefano Stabelliniea5b8f72010-10-26 17:28:33 +0100202 xen_filter_cpu_maps();
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700203 xen_setup_vcpu_info_placement();
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700204}
205
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700206static void __init xen_smp_prepare_cpus(unsigned int max_cpus)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700207{
208 unsigned cpu;
Andrew Jones900cba82009-12-18 10:31:31 +0100209 unsigned int i;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700210
Konrad Rzeszutek Wilked467e62011-09-01 09:48:27 -0400211 if (skip_ioapic_setup) {
212 char *m = (max_cpus == 0) ?
213 "The nosmp parameter is incompatible with Xen; " \
214 "use Xen dom0_max_vcpus=1 parameter" :
215 "The noapic parameter is incompatible with Xen";
216
217 xen_raw_printk(m);
218 panic(m);
219 }
Jeremy Fitzhardinge2d9e1e22008-07-07 12:07:53 -0700220 xen_init_lock_cpu(0);
221
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700222 smp_store_cpu_info(0);
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700223 cpu_data(0).x86_max_cores = 1;
Andrew Jones900cba82009-12-18 10:31:31 +0100224
225 for_each_possible_cpu(i) {
226 zalloc_cpumask_var(&per_cpu(cpu_sibling_map, i), GFP_KERNEL);
227 zalloc_cpumask_var(&per_cpu(cpu_core_map, i), GFP_KERNEL);
228 zalloc_cpumask_var(&per_cpu(cpu_llc_shared_map, i), GFP_KERNEL);
229 }
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700230 set_cpu_sibling_map(0);
231
232 if (xen_smp_intr_init(0))
233 BUG();
234
Mike Travisb78936e2008-12-16 17:33:57 -0800235 if (!alloc_cpumask_var(&xen_cpu_initialized_map, GFP_KERNEL))
236 panic("could not allocate xen_cpu_initialized_map\n");
237
238 cpumask_copy(xen_cpu_initialized_map, cpumask_of(0));
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700239
240 /* Restrict the possible_map according to max_cpus. */
241 while ((num_possible_cpus() > 1) && (num_possible_cpus() > max_cpus)) {
Mike Travise7986732008-12-16 17:33:52 -0800242 for (cpu = nr_cpu_ids - 1; !cpu_possible(cpu); cpu--)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700243 continue;
Rusty Russell4f062892009-03-13 14:49:54 +1030244 set_cpu_possible(cpu, false);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700245 }
246
247 for_each_possible_cpu (cpu) {
248 struct task_struct *idle;
249
250 if (cpu == 0)
251 continue;
252
253 idle = fork_idle(cpu);
254 if (IS_ERR(idle))
255 panic("failed fork for CPU %d", cpu);
256
Rusty Russell4f062892009-03-13 14:49:54 +1030257 set_cpu_present(cpu, true);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700258 }
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700259}
260
Daniel Kiperb53cede2011-05-04 20:18:05 +0200261static int __cpuinit
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700262cpu_initialize_context(unsigned int cpu, struct task_struct *idle)
263{
264 struct vcpu_guest_context *ctxt;
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700265 struct desc_struct *gdt;
Jeremy Fitzhardinge9976b392009-02-27 09:19:26 -0800266 unsigned long gdt_mfn;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700267
Mike Travisb78936e2008-12-16 17:33:57 -0800268 if (cpumask_test_and_set_cpu(cpu, xen_cpu_initialized_map))
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700269 return 0;
270
271 ctxt = kzalloc(sizeof(*ctxt), GFP_KERNEL);
272 if (ctxt == NULL)
273 return -ENOMEM;
274
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700275 gdt = get_cpu_gdt_table(cpu);
276
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700277 ctxt->flags = VGCF_IN_KERNEL;
278 ctxt->user_regs.ds = __USER_DS;
279 ctxt->user_regs.es = __USER_DS;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700280 ctxt->user_regs.ss = __KERNEL_DS;
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700281#ifdef CONFIG_X86_32
282 ctxt->user_regs.fs = __KERNEL_PERCPU;
Jeremy Fitzhardinge577eebe2009-08-27 12:46:35 -0700283 ctxt->user_regs.gs = __KERNEL_STACK_CANARY;
Jeremy Fitzhardinge795f99b2009-01-30 17:47:54 +0900284#else
285 ctxt->gs_base_kernel = per_cpu_offset(cpu);
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700286#endif
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700287 ctxt->user_regs.eip = (unsigned long)cpu_bringup_and_idle;
288 ctxt->user_regs.eflags = 0x1000; /* IOPL_RING1 */
289
290 memset(&ctxt->fpu_ctxt, 0, sizeof(ctxt->fpu_ctxt));
291
292 xen_copy_trap_info(ctxt->trap_ctxt);
293
294 ctxt->ldt_ents = 0;
295
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700296 BUG_ON((unsigned long)gdt & ~PAGE_MASK);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700297
Jeremy Fitzhardinge9976b392009-02-27 09:19:26 -0800298 gdt_mfn = arbitrary_virt_to_mfn(gdt);
299 make_lowmem_page_readonly(gdt);
300 make_lowmem_page_readonly(mfn_to_virt(gdt_mfn));
301
302 ctxt->gdt_frames[0] = gdt_mfn;
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700303 ctxt->gdt_ents = GDT_ENTRIES;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700304
305 ctxt->user_regs.cs = __KERNEL_CS;
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100306 ctxt->user_regs.esp = idle->thread.sp0 - sizeof(struct pt_regs);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700307
308 ctxt->kernel_ss = __KERNEL_DS;
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100309 ctxt->kernel_sp = idle->thread.sp0;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700310
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700311#ifdef CONFIG_X86_32
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700312 ctxt->event_callback_cs = __KERNEL_CS;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700313 ctxt->failsafe_callback_cs = __KERNEL_CS;
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700314#endif
315 ctxt->event_callback_eip = (unsigned long)xen_hypervisor_callback;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700316 ctxt->failsafe_callback_eip = (unsigned long)xen_failsafe_callback;
317
318 per_cpu(xen_cr3, cpu) = __pa(swapper_pg_dir);
319 ctxt->ctrlreg[3] = xen_pfn_to_cr3(virt_to_mfn(swapper_pg_dir));
320
321 if (HYPERVISOR_vcpu_op(VCPUOP_initialise, cpu, ctxt))
322 BUG();
323
324 kfree(ctxt);
325 return 0;
326}
327
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700328static int __cpuinit xen_cpu_up(unsigned int cpu)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700329{
330 struct task_struct *idle = idle_task(cpu);
331 int rc;
332
Brian Gerstc6f5e0a2009-01-19 00:38:58 +0900333 per_cpu(current_task, cpu) = idle;
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700334#ifdef CONFIG_X86_32
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700335 irq_ctx_init(cpu);
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700336#else
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700337 clear_tsk_thread_flag(idle, TIF_FORK);
Jeremy Fitzhardinge38341432009-02-02 13:55:31 -0800338 per_cpu(kernel_stack, cpu) =
339 (unsigned long)task_stack_page(idle) -
340 KERNEL_STACK_OFFSET + THREAD_SIZE;
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700341#endif
Ian Campbell02889672009-11-24 09:32:48 -0800342 xen_setup_runstate_info(cpu);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700343 xen_setup_timer(cpu);
Jeremy Fitzhardinge2d9e1e22008-07-07 12:07:53 -0700344 xen_init_lock_cpu(cpu);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700345
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700346 per_cpu(cpu_state, cpu) = CPU_UP_PREPARE;
347
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700348 /* make sure interrupts start blocked */
349 per_cpu(xen_vcpu, cpu)->evtchn_upcall_mask = 1;
350
351 rc = cpu_initialize_context(cpu, idle);
352 if (rc)
353 return rc;
354
355 if (num_online_cpus() == 1)
356 alternatives_smp_switch(1);
357
358 rc = xen_smp_intr_init(cpu);
359 if (rc)
360 return rc;
361
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700362 rc = HYPERVISOR_vcpu_op(VCPUOP_up, cpu, NULL);
363 BUG_ON(rc);
364
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700365 while(per_cpu(cpu_state, cpu) != CPU_ONLINE) {
Hannes Eder1207cf8e2009-03-05 20:13:57 +0100366 HYPERVISOR_sched_op(SCHEDOP_yield, NULL);
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700367 barrier();
368 }
369
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700370 return 0;
371}
372
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700373static void xen_smp_cpus_done(unsigned int max_cpus)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700374{
375}
376
Alex Nixon27371462008-09-08 13:43:33 +0100377#ifdef CONFIG_HOTPLUG_CPU
Alex Nixon26fd1052008-09-08 13:43:34 +0100378static int xen_cpu_disable(void)
Alex Nixond68d82a2008-08-22 11:52:15 +0100379{
380 unsigned int cpu = smp_processor_id();
381 if (cpu == 0)
382 return -EBUSY;
383
384 cpu_disable_common();
385
386 load_cr3(swapper_pg_dir);
387 return 0;
388}
389
Alex Nixon26fd1052008-09-08 13:43:34 +0100390static void xen_cpu_die(unsigned int cpu)
Alex Nixond68d82a2008-08-22 11:52:15 +0100391{
392 while (HYPERVISOR_vcpu_op(VCPUOP_is_up, cpu, NULL)) {
393 current->state = TASK_UNINTERRUPTIBLE;
394 schedule_timeout(HZ/10);
395 }
Tejun Heoc6e22f92009-10-29 22:34:13 +0900396 unbind_from_irqhandler(per_cpu(xen_resched_irq, cpu), NULL);
397 unbind_from_irqhandler(per_cpu(xen_callfunc_irq, cpu), NULL);
398 unbind_from_irqhandler(per_cpu(xen_debug_irq, cpu), NULL);
399 unbind_from_irqhandler(per_cpu(xen_callfuncsingle_irq, cpu), NULL);
Alex Nixond68d82a2008-08-22 11:52:15 +0100400 xen_uninit_lock_cpu(cpu);
401 xen_teardown_timer(cpu);
402
403 if (num_online_cpus() == 1)
404 alternatives_smp_switch(0);
405}
406
Robert P. J. Day71709242009-12-28 11:50:29 -0500407static void __cpuinit xen_play_dead(void) /* used only with HOTPLUG_CPU */
Alex Nixond68d82a2008-08-22 11:52:15 +0100408{
409 play_dead_common();
410 HYPERVISOR_vcpu_op(VCPUOP_down, smp_processor_id(), NULL);
411 cpu_bringup();
412}
413
Alex Nixon27371462008-09-08 13:43:33 +0100414#else /* !CONFIG_HOTPLUG_CPU */
Alex Nixon26fd1052008-09-08 13:43:34 +0100415static int xen_cpu_disable(void)
Alex Nixon27371462008-09-08 13:43:33 +0100416{
417 return -ENOSYS;
418}
419
Alex Nixon26fd1052008-09-08 13:43:34 +0100420static void xen_cpu_die(unsigned int cpu)
Alex Nixon27371462008-09-08 13:43:33 +0100421{
422 BUG();
423}
424
Alex Nixon26fd1052008-09-08 13:43:34 +0100425static void xen_play_dead(void)
Alex Nixon27371462008-09-08 13:43:33 +0100426{
427 BUG();
428}
429
430#endif
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700431static void stop_self(void *v)
432{
433 int cpu = smp_processor_id();
434
435 /* make sure we're not pinning something down */
436 load_cr3(swapper_pg_dir);
437 /* should set up a minimal gdt */
438
Ian Campbell086748e2010-08-03 14:55:14 -0700439 set_cpu_online(cpu, false);
440
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700441 HYPERVISOR_vcpu_op(VCPUOP_down, cpu, NULL);
442 BUG();
443}
444
Alok Kataria76fac072010-10-11 14:37:08 -0700445static void xen_stop_other_cpus(int wait)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700446{
Alok Kataria76fac072010-10-11 14:37:08 -0700447 smp_call_function(stop_self, NULL, wait);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700448}
449
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700450static void xen_smp_send_reschedule(int cpu)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700451{
452 xen_send_IPI_one(cpu, XEN_RESCHEDULE_VECTOR);
453}
454
Mike Travisbcda0162008-12-16 17:33:59 -0800455static void xen_send_IPI_mask(const struct cpumask *mask,
456 enum ipi_vector vector)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700457{
458 unsigned cpu;
459
Mike Travisbcda0162008-12-16 17:33:59 -0800460 for_each_cpu_and(cpu, mask, cpu_online_mask)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700461 xen_send_IPI_one(cpu, vector);
462}
463
Mike Travisbcda0162008-12-16 17:33:59 -0800464static void xen_smp_send_call_function_ipi(const struct cpumask *mask)
Jens Axboe3b16cf82008-06-26 11:21:54 +0200465{
466 int cpu;
467
468 xen_send_IPI_mask(mask, XEN_CALL_FUNCTION_VECTOR);
469
470 /* Make sure other vcpus get a chance to run if they need to. */
Mike Travisbcda0162008-12-16 17:33:59 -0800471 for_each_cpu(cpu, mask) {
Jens Axboe3b16cf82008-06-26 11:21:54 +0200472 if (xen_vcpu_stolen(cpu)) {
Hannes Eder1207cf8e2009-03-05 20:13:57 +0100473 HYPERVISOR_sched_op(SCHEDOP_yield, NULL);
Jens Axboe3b16cf82008-06-26 11:21:54 +0200474 break;
475 }
476 }
477}
478
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700479static void xen_smp_send_call_function_single_ipi(int cpu)
Jens Axboe3b16cf82008-06-26 11:21:54 +0200480{
Mike Travisbcda0162008-12-16 17:33:59 -0800481 xen_send_IPI_mask(cpumask_of(cpu),
Mike Travise7986732008-12-16 17:33:52 -0800482 XEN_CALL_FUNCTION_SINGLE_VECTOR);
Jens Axboe3b16cf82008-06-26 11:21:54 +0200483}
484
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700485static irqreturn_t xen_call_function_interrupt(int irq, void *dev_id)
486{
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700487 irq_enter();
Jens Axboe3b16cf82008-06-26 11:21:54 +0200488 generic_smp_call_function_interrupt();
Brian Gerst1b437c82009-01-19 00:38:57 +0900489 inc_irq_stat(irq_call_count);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700490 irq_exit();
491
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700492 return IRQ_HANDLED;
493}
494
Jens Axboe3b16cf82008-06-26 11:21:54 +0200495static irqreturn_t xen_call_function_single_interrupt(int irq, void *dev_id)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700496{
Jens Axboe3b16cf82008-06-26 11:21:54 +0200497 irq_enter();
498 generic_smp_call_function_single_interrupt();
Brian Gerst1b437c82009-01-19 00:38:57 +0900499 inc_irq_stat(irq_call_count);
Jens Axboe3b16cf82008-06-26 11:21:54 +0200500 irq_exit();
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700501
Jens Axboe3b16cf82008-06-26 11:21:54 +0200502 return IRQ_HANDLED;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700503}
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700504
Daniel Kiperb53cede2011-05-04 20:18:05 +0200505static const struct smp_ops xen_smp_ops __initconst = {
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700506 .smp_prepare_boot_cpu = xen_smp_prepare_boot_cpu,
507 .smp_prepare_cpus = xen_smp_prepare_cpus,
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700508 .smp_cpus_done = xen_smp_cpus_done,
509
Alex Nixond68d82a2008-08-22 11:52:15 +0100510 .cpu_up = xen_cpu_up,
511 .cpu_die = xen_cpu_die,
512 .cpu_disable = xen_cpu_disable,
513 .play_dead = xen_play_dead,
514
Alok Kataria76fac072010-10-11 14:37:08 -0700515 .stop_other_cpus = xen_stop_other_cpus,
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700516 .smp_send_reschedule = xen_smp_send_reschedule,
517
518 .send_call_func_ipi = xen_smp_send_call_function_ipi,
519 .send_call_func_single_ipi = xen_smp_send_call_function_single_ipi,
520};
521
522void __init xen_smp_init(void)
523{
524 smp_ops = xen_smp_ops;
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700525 xen_fill_possible_map();
Jeremy Fitzhardinge2d9e1e22008-07-07 12:07:53 -0700526 xen_init_spinlocks();
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700527}
Stefano Stabellini99bbb3a2010-12-02 17:55:10 +0000528
529static void __init xen_hvm_smp_prepare_cpus(unsigned int max_cpus)
530{
531 native_smp_prepare_cpus(max_cpus);
532 WARN_ON(xen_smp_intr_init(0));
533
Stefano Stabellini99bbb3a2010-12-02 17:55:10 +0000534 xen_init_lock_cpu(0);
Stefano Stabellini99bbb3a2010-12-02 17:55:10 +0000535}
536
537static int __cpuinit xen_hvm_cpu_up(unsigned int cpu)
538{
539 int rc;
540 rc = native_cpu_up(cpu);
541 WARN_ON (xen_smp_intr_init(cpu));
542 return rc;
543}
544
545static void xen_hvm_cpu_die(unsigned int cpu)
546{
547 unbind_from_irqhandler(per_cpu(xen_resched_irq, cpu), NULL);
548 unbind_from_irqhandler(per_cpu(xen_callfunc_irq, cpu), NULL);
549 unbind_from_irqhandler(per_cpu(xen_debug_irq, cpu), NULL);
550 unbind_from_irqhandler(per_cpu(xen_callfuncsingle_irq, cpu), NULL);
551 native_cpu_die(cpu);
552}
553
554void __init xen_hvm_smp_init(void)
555{
Stefano Stabellini3c05c4b2011-08-17 15:15:00 +0200556 if (!xen_have_vector_callback)
557 return;
Stefano Stabellini99bbb3a2010-12-02 17:55:10 +0000558 smp_ops.smp_prepare_cpus = xen_hvm_smp_prepare_cpus;
559 smp_ops.smp_send_reschedule = xen_smp_send_reschedule;
560 smp_ops.cpu_up = xen_hvm_cpu_up;
561 smp_ops.cpu_die = xen_hvm_cpu_die;
562 smp_ops.send_call_func_ipi = xen_smp_send_call_function_ipi;
563 smp_ops.send_call_func_single_ipi = xen_smp_send_call_function_single_ipi;
564}