blob: ce9e98b1e69caa2f61ef8227a4f01e6dd5acbcd0 [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>
Lin Ming1ff2b0c2012-04-21 00:11:05 +080019#include <linux/irq_work.h>
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070020
21#include <asm/paravirt.h>
22#include <asm/desc.h>
23#include <asm/pgtable.h>
24#include <asm/cpu.h>
25
26#include <xen/interface/xen.h>
27#include <xen/interface/vcpu.h>
28
29#include <asm/xen/interface.h>
30#include <asm/xen/hypercall.h>
31
Stefano Stabelliniea5b8f72010-10-26 17:28:33 +010032#include <xen/xen.h>
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070033#include <xen/page.h>
34#include <xen/events.h>
35
Konrad Rzeszutek Wilked467e62011-09-01 09:48:27 -040036#include <xen/hvc-console.h>
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070037#include "xen-ops.h"
38#include "mmu.h"
39
Mike Travisb78936e2008-12-16 17:33:57 -080040cpumask_var_t xen_cpu_initialized_map;
Jens Axboe3b16cf82008-06-26 11:21:54 +020041
Tejun Heoc6e22f92009-10-29 22:34:13 +090042static DEFINE_PER_CPU(int, xen_resched_irq);
43static DEFINE_PER_CPU(int, xen_callfunc_irq);
44static DEFINE_PER_CPU(int, xen_callfuncsingle_irq);
Lin Ming1ff2b0c2012-04-21 00:11:05 +080045static DEFINE_PER_CPU(int, xen_irq_work);
Tejun Heoc6e22f92009-10-29 22:34:13 +090046static DEFINE_PER_CPU(int, xen_debug_irq) = -1;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070047
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070048static irqreturn_t xen_call_function_interrupt(int irq, void *dev_id);
Jens Axboe3b16cf82008-06-26 11:21:54 +020049static irqreturn_t xen_call_function_single_interrupt(int irq, void *dev_id);
Lin Ming1ff2b0c2012-04-21 00:11:05 +080050static irqreturn_t xen_irq_work_interrupt(int irq, void *dev_id);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070051
52/*
Peter Zijlstra184748c2011-04-05 17:23:39 +020053 * Reschedule call back.
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070054 */
55static irqreturn_t xen_reschedule_interrupt(int irq, void *dev_id)
56{
Brian Gerst1b437c82009-01-19 00:38:57 +090057 inc_irq_stat(irq_resched_count);
Peter Zijlstra184748c2011-04-05 17:23:39 +020058 scheduler_ipi();
Jeremy Fitzhardinge38bb5ab2008-05-26 23:31:16 +010059
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070060 return IRQ_HANDLED;
61}
62
Daniel Kiperb53cede2011-05-04 20:18:05 +020063static void __cpuinit cpu_bringup(void)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070064{
Srivatsa S. Bhate8c9e782012-03-22 18:29:24 +053065 int cpu;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070066
67 cpu_init();
Alex Nixond68d82a2008-08-22 11:52:15 +010068 touch_softlockup_watchdog();
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -070069 preempt_disable();
70
Jeremy Fitzhardingee2a81ba2008-03-17 16:37:17 -070071 xen_enable_sysenter();
Jeremy Fitzhardinge6fcac6d2008-07-08 15:07:14 -070072 xen_enable_syscall();
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070073
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -070074 cpu = smp_processor_id();
75 smp_store_cpu_info(cpu);
76 cpu_data(cpu).x86_max_cores = 1;
77 set_cpu_sibling_map(cpu);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070078
79 xen_setup_cpu_clockevents();
80
Konrad Rzeszutek Wilk106b4432012-03-21 13:03:45 -040081 notify_cpu_starting(cpu);
82
83 ipi_call_lock();
Rusty Russelld7d37562009-11-03 14:58:38 +103084 set_cpu_online(cpu, true);
Konrad Rzeszutek Wilk106b4432012-03-21 13:03:45 -040085 ipi_call_unlock();
86
Alex Shi2113f462012-01-13 23:53:35 +080087 this_cpu_write(cpu_state, CPU_ONLINE);
Konrad Rzeszutek Wilk106b4432012-03-21 13:03:45 -040088
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -070089 wmb();
90
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070091 /* We can take interrupts now: we're officially "up". */
92 local_irq_enable();
93
94 wmb(); /* make sure everything is out */
Alex Nixond68d82a2008-08-22 11:52:15 +010095}
96
Daniel Kiperb53cede2011-05-04 20:18:05 +020097static void __cpuinit cpu_bringup_and_idle(void)
Alex Nixond68d82a2008-08-22 11:52:15 +010098{
99 cpu_bringup();
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700100 cpu_idle();
101}
102
103static int xen_smp_intr_init(unsigned int cpu)
104{
105 int rc;
Jeremy Fitzhardingeee523ca2008-03-17 16:37:18 -0700106 const char *resched_name, *callfunc_name, *debug_name;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700107
108 resched_name = kasprintf(GFP_KERNEL, "resched%d", cpu);
109 rc = bind_ipi_to_irqhandler(XEN_RESCHEDULE_VECTOR,
110 cpu,
111 xen_reschedule_interrupt,
112 IRQF_DISABLED|IRQF_PERCPU|IRQF_NOBALANCING,
113 resched_name,
114 NULL);
115 if (rc < 0)
116 goto fail;
Tejun Heoc6e22f92009-10-29 22:34:13 +0900117 per_cpu(xen_resched_irq, cpu) = rc;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700118
119 callfunc_name = kasprintf(GFP_KERNEL, "callfunc%d", cpu);
120 rc = bind_ipi_to_irqhandler(XEN_CALL_FUNCTION_VECTOR,
121 cpu,
122 xen_call_function_interrupt,
123 IRQF_DISABLED|IRQF_PERCPU|IRQF_NOBALANCING,
124 callfunc_name,
125 NULL);
126 if (rc < 0)
127 goto fail;
Tejun Heoc6e22f92009-10-29 22:34:13 +0900128 per_cpu(xen_callfunc_irq, cpu) = rc;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700129
Jeremy Fitzhardingeee523ca2008-03-17 16:37:18 -0700130 debug_name = kasprintf(GFP_KERNEL, "debug%d", cpu);
131 rc = bind_virq_to_irqhandler(VIRQ_DEBUG, cpu, xen_debug_interrupt,
132 IRQF_DISABLED | IRQF_PERCPU | IRQF_NOBALANCING,
133 debug_name, NULL);
134 if (rc < 0)
135 goto fail;
Tejun Heoc6e22f92009-10-29 22:34:13 +0900136 per_cpu(xen_debug_irq, cpu) = rc;
Jeremy Fitzhardingeee523ca2008-03-17 16:37:18 -0700137
Jens Axboe3b16cf82008-06-26 11:21:54 +0200138 callfunc_name = kasprintf(GFP_KERNEL, "callfuncsingle%d", cpu);
139 rc = bind_ipi_to_irqhandler(XEN_CALL_FUNCTION_SINGLE_VECTOR,
140 cpu,
141 xen_call_function_single_interrupt,
142 IRQF_DISABLED|IRQF_PERCPU|IRQF_NOBALANCING,
143 callfunc_name,
144 NULL);
145 if (rc < 0)
146 goto fail;
Tejun Heoc6e22f92009-10-29 22:34:13 +0900147 per_cpu(xen_callfuncsingle_irq, cpu) = rc;
Jens Axboe3b16cf82008-06-26 11:21:54 +0200148
Lin Ming1ff2b0c2012-04-21 00:11:05 +0800149 callfunc_name = kasprintf(GFP_KERNEL, "irqwork%d", cpu);
150 rc = bind_ipi_to_irqhandler(XEN_IRQ_WORK_VECTOR,
151 cpu,
152 xen_irq_work_interrupt,
153 IRQF_DISABLED|IRQF_PERCPU|IRQF_NOBALANCING,
154 callfunc_name,
155 NULL);
156 if (rc < 0)
157 goto fail;
158 per_cpu(xen_irq_work, cpu) = rc;
159
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700160 return 0;
161
162 fail:
Tejun Heoc6e22f92009-10-29 22:34:13 +0900163 if (per_cpu(xen_resched_irq, cpu) >= 0)
164 unbind_from_irqhandler(per_cpu(xen_resched_irq, cpu), NULL);
165 if (per_cpu(xen_callfunc_irq, cpu) >= 0)
166 unbind_from_irqhandler(per_cpu(xen_callfunc_irq, cpu), NULL);
167 if (per_cpu(xen_debug_irq, cpu) >= 0)
168 unbind_from_irqhandler(per_cpu(xen_debug_irq, cpu), NULL);
169 if (per_cpu(xen_callfuncsingle_irq, cpu) >= 0)
170 unbind_from_irqhandler(per_cpu(xen_callfuncsingle_irq, cpu),
171 NULL);
Lin Ming1ff2b0c2012-04-21 00:11:05 +0800172 if (per_cpu(xen_irq_work, cpu) >= 0)
173 unbind_from_irqhandler(per_cpu(xen_irq_work, cpu), NULL);
Jens Axboe3b16cf82008-06-26 11:21:54 +0200174
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700175 return rc;
176}
177
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700178static void __init xen_fill_possible_map(void)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700179{
180 int i, rc;
181
Stefano Stabelliniea5b8f72010-10-26 17:28:33 +0100182 if (xen_initial_domain())
183 return;
184
Mike Travise7986732008-12-16 17:33:52 -0800185 for (i = 0; i < nr_cpu_ids; i++) {
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700186 rc = HYPERVISOR_vcpu_op(VCPUOP_is_up, i, NULL);
Jeremy Fitzhardinge4560a292008-07-08 15:06:56 -0700187 if (rc >= 0) {
188 num_processors++;
Rusty Russell4f062892009-03-13 14:49:54 +1030189 set_cpu_possible(i, true);
Jeremy Fitzhardinge4560a292008-07-08 15:06:56 -0700190 }
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700191 }
192}
193
Stefano Stabelliniea5b8f72010-10-26 17:28:33 +0100194static void __init xen_filter_cpu_maps(void)
195{
196 int i, rc;
197
198 if (!xen_initial_domain())
199 return;
200
Stefano Stabellini801fd142010-09-23 12:06:25 +0100201 num_processors = 0;
202 disabled_cpus = 0;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700203 for (i = 0; i < nr_cpu_ids; i++) {
204 rc = HYPERVISOR_vcpu_op(VCPUOP_is_up, i, NULL);
205 if (rc >= 0) {
206 num_processors++;
207 set_cpu_possible(i, true);
Stefano Stabellini801fd142010-09-23 12:06:25 +0100208 } else {
209 set_cpu_possible(i, false);
210 set_cpu_present(i, false);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700211 }
212 }
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700213}
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700214
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700215static void __init xen_smp_prepare_boot_cpu(void)
216{
217 BUG_ON(smp_processor_id() != 0);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700218 native_smp_prepare_boot_cpu();
219
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700220 /* We've switched to the "real" per-cpu gdt, so make sure the
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700221 old memory can be recycled */
Jeremy Fitzhardinge38341432009-02-02 13:55:31 -0800222 make_lowmem_page_readwrite(xen_initial_gdt);
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700223
Stefano Stabelliniea5b8f72010-10-26 17:28:33 +0100224 xen_filter_cpu_maps();
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700225 xen_setup_vcpu_info_placement();
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700226}
227
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700228static void __init xen_smp_prepare_cpus(unsigned int max_cpus)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700229{
230 unsigned cpu;
Andrew Jones900cba82009-12-18 10:31:31 +0100231 unsigned int i;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700232
Konrad Rzeszutek Wilked467e62011-09-01 09:48:27 -0400233 if (skip_ioapic_setup) {
234 char *m = (max_cpus == 0) ?
235 "The nosmp parameter is incompatible with Xen; " \
236 "use Xen dom0_max_vcpus=1 parameter" :
237 "The noapic parameter is incompatible with Xen";
238
239 xen_raw_printk(m);
240 panic(m);
241 }
Jeremy Fitzhardinge2d9e1e22008-07-07 12:07:53 -0700242 xen_init_lock_cpu(0);
243
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700244 smp_store_cpu_info(0);
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700245 cpu_data(0).x86_max_cores = 1;
Andrew Jones900cba82009-12-18 10:31:31 +0100246
247 for_each_possible_cpu(i) {
248 zalloc_cpumask_var(&per_cpu(cpu_sibling_map, i), GFP_KERNEL);
249 zalloc_cpumask_var(&per_cpu(cpu_core_map, i), GFP_KERNEL);
250 zalloc_cpumask_var(&per_cpu(cpu_llc_shared_map, i), GFP_KERNEL);
251 }
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700252 set_cpu_sibling_map(0);
253
254 if (xen_smp_intr_init(0))
255 BUG();
256
Mike Travisb78936e2008-12-16 17:33:57 -0800257 if (!alloc_cpumask_var(&xen_cpu_initialized_map, GFP_KERNEL))
258 panic("could not allocate xen_cpu_initialized_map\n");
259
260 cpumask_copy(xen_cpu_initialized_map, cpumask_of(0));
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700261
262 /* Restrict the possible_map according to max_cpus. */
263 while ((num_possible_cpus() > 1) && (num_possible_cpus() > max_cpus)) {
Mike Travise7986732008-12-16 17:33:52 -0800264 for (cpu = nr_cpu_ids - 1; !cpu_possible(cpu); cpu--)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700265 continue;
Rusty Russell4f062892009-03-13 14:49:54 +1030266 set_cpu_possible(cpu, false);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700267 }
268
269 for_each_possible_cpu (cpu) {
270 struct task_struct *idle;
271
272 if (cpu == 0)
273 continue;
274
275 idle = fork_idle(cpu);
276 if (IS_ERR(idle))
277 panic("failed fork for CPU %d", cpu);
278
Rusty Russell4f062892009-03-13 14:49:54 +1030279 set_cpu_present(cpu, true);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700280 }
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700281}
282
Daniel Kiperb53cede2011-05-04 20:18:05 +0200283static int __cpuinit
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700284cpu_initialize_context(unsigned int cpu, struct task_struct *idle)
285{
286 struct vcpu_guest_context *ctxt;
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700287 struct desc_struct *gdt;
Jeremy Fitzhardinge9976b392009-02-27 09:19:26 -0800288 unsigned long gdt_mfn;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700289
Mike Travisb78936e2008-12-16 17:33:57 -0800290 if (cpumask_test_and_set_cpu(cpu, xen_cpu_initialized_map))
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700291 return 0;
292
293 ctxt = kzalloc(sizeof(*ctxt), GFP_KERNEL);
294 if (ctxt == NULL)
295 return -ENOMEM;
296
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700297 gdt = get_cpu_gdt_table(cpu);
298
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700299 ctxt->flags = VGCF_IN_KERNEL;
300 ctxt->user_regs.ds = __USER_DS;
301 ctxt->user_regs.es = __USER_DS;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700302 ctxt->user_regs.ss = __KERNEL_DS;
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700303#ifdef CONFIG_X86_32
304 ctxt->user_regs.fs = __KERNEL_PERCPU;
Jeremy Fitzhardinge577eebe2009-08-27 12:46:35 -0700305 ctxt->user_regs.gs = __KERNEL_STACK_CANARY;
Jeremy Fitzhardinge795f99b2009-01-30 17:47:54 +0900306#else
307 ctxt->gs_base_kernel = per_cpu_offset(cpu);
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700308#endif
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700309 ctxt->user_regs.eip = (unsigned long)cpu_bringup_and_idle;
310 ctxt->user_regs.eflags = 0x1000; /* IOPL_RING1 */
311
312 memset(&ctxt->fpu_ctxt, 0, sizeof(ctxt->fpu_ctxt));
313
314 xen_copy_trap_info(ctxt->trap_ctxt);
315
316 ctxt->ldt_ents = 0;
317
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700318 BUG_ON((unsigned long)gdt & ~PAGE_MASK);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700319
Jeremy Fitzhardinge9976b392009-02-27 09:19:26 -0800320 gdt_mfn = arbitrary_virt_to_mfn(gdt);
321 make_lowmem_page_readonly(gdt);
322 make_lowmem_page_readonly(mfn_to_virt(gdt_mfn));
323
324 ctxt->gdt_frames[0] = gdt_mfn;
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700325 ctxt->gdt_ents = GDT_ENTRIES;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700326
327 ctxt->user_regs.cs = __KERNEL_CS;
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100328 ctxt->user_regs.esp = idle->thread.sp0 - sizeof(struct pt_regs);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700329
330 ctxt->kernel_ss = __KERNEL_DS;
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100331 ctxt->kernel_sp = idle->thread.sp0;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700332
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700333#ifdef CONFIG_X86_32
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700334 ctxt->event_callback_cs = __KERNEL_CS;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700335 ctxt->failsafe_callback_cs = __KERNEL_CS;
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700336#endif
337 ctxt->event_callback_eip = (unsigned long)xen_hypervisor_callback;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700338 ctxt->failsafe_callback_eip = (unsigned long)xen_failsafe_callback;
339
340 per_cpu(xen_cr3, cpu) = __pa(swapper_pg_dir);
341 ctxt->ctrlreg[3] = xen_pfn_to_cr3(virt_to_mfn(swapper_pg_dir));
342
343 if (HYPERVISOR_vcpu_op(VCPUOP_initialise, cpu, ctxt))
344 BUG();
345
346 kfree(ctxt);
347 return 0;
348}
349
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700350static int __cpuinit xen_cpu_up(unsigned int cpu)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700351{
352 struct task_struct *idle = idle_task(cpu);
353 int rc;
354
Brian Gerstc6f5e0a2009-01-19 00:38:58 +0900355 per_cpu(current_task, cpu) = idle;
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700356#ifdef CONFIG_X86_32
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700357 irq_ctx_init(cpu);
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700358#else
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700359 clear_tsk_thread_flag(idle, TIF_FORK);
Jeremy Fitzhardinge38341432009-02-02 13:55:31 -0800360 per_cpu(kernel_stack, cpu) =
361 (unsigned long)task_stack_page(idle) -
362 KERNEL_STACK_OFFSET + THREAD_SIZE;
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700363#endif
Ian Campbell02889672009-11-24 09:32:48 -0800364 xen_setup_runstate_info(cpu);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700365 xen_setup_timer(cpu);
Jeremy Fitzhardinge2d9e1e22008-07-07 12:07:53 -0700366 xen_init_lock_cpu(cpu);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700367
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700368 per_cpu(cpu_state, cpu) = CPU_UP_PREPARE;
369
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700370 /* make sure interrupts start blocked */
371 per_cpu(xen_vcpu, cpu)->evtchn_upcall_mask = 1;
372
373 rc = cpu_initialize_context(cpu, idle);
374 if (rc)
375 return rc;
376
377 if (num_online_cpus() == 1)
378 alternatives_smp_switch(1);
379
380 rc = xen_smp_intr_init(cpu);
381 if (rc)
382 return rc;
383
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700384 rc = HYPERVISOR_vcpu_op(VCPUOP_up, cpu, NULL);
385 BUG_ON(rc);
386
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700387 while(per_cpu(cpu_state, cpu) != CPU_ONLINE) {
Hannes Eder1207cf8e2009-03-05 20:13:57 +0100388 HYPERVISOR_sched_op(SCHEDOP_yield, NULL);
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700389 barrier();
390 }
391
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700392 return 0;
393}
394
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700395static void xen_smp_cpus_done(unsigned int max_cpus)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700396{
397}
398
Alex Nixon27371462008-09-08 13:43:33 +0100399#ifdef CONFIG_HOTPLUG_CPU
Alex Nixon26fd1052008-09-08 13:43:34 +0100400static int xen_cpu_disable(void)
Alex Nixond68d82a2008-08-22 11:52:15 +0100401{
402 unsigned int cpu = smp_processor_id();
403 if (cpu == 0)
404 return -EBUSY;
405
406 cpu_disable_common();
407
408 load_cr3(swapper_pg_dir);
409 return 0;
410}
411
Alex Nixon26fd1052008-09-08 13:43:34 +0100412static void xen_cpu_die(unsigned int cpu)
Alex Nixond68d82a2008-08-22 11:52:15 +0100413{
414 while (HYPERVISOR_vcpu_op(VCPUOP_is_up, cpu, NULL)) {
415 current->state = TASK_UNINTERRUPTIBLE;
416 schedule_timeout(HZ/10);
417 }
Tejun Heoc6e22f92009-10-29 22:34:13 +0900418 unbind_from_irqhandler(per_cpu(xen_resched_irq, cpu), NULL);
419 unbind_from_irqhandler(per_cpu(xen_callfunc_irq, cpu), NULL);
420 unbind_from_irqhandler(per_cpu(xen_debug_irq, cpu), NULL);
421 unbind_from_irqhandler(per_cpu(xen_callfuncsingle_irq, cpu), NULL);
Konrad Rzeszutek Wilk2f1bd672012-05-21 09:19:38 -0400422 unbind_from_irqhandler(per_cpu(xen_irq_work, cpu), NULL);
Alex Nixond68d82a2008-08-22 11:52:15 +0100423 xen_uninit_lock_cpu(cpu);
424 xen_teardown_timer(cpu);
425
426 if (num_online_cpus() == 1)
427 alternatives_smp_switch(0);
428}
429
Robert P. J. Day71709242009-12-28 11:50:29 -0500430static void __cpuinit xen_play_dead(void) /* used only with HOTPLUG_CPU */
Alex Nixond68d82a2008-08-22 11:52:15 +0100431{
432 play_dead_common();
433 HYPERVISOR_vcpu_op(VCPUOP_down, smp_processor_id(), NULL);
434 cpu_bringup();
Konrad Rzeszutek Wilk41bd9562012-02-01 15:56:54 -0500435 /*
436 * Balance out the preempt calls - as we are running in cpu_idle
437 * loop which has been called at bootup from cpu_bringup_and_idle.
438 * The cpucpu_bringup_and_idle called cpu_bringup which made a
439 * preempt_disable() So this preempt_enable will balance it out.
440 */
441 preempt_enable();
Alex Nixond68d82a2008-08-22 11:52:15 +0100442}
443
Alex Nixon27371462008-09-08 13:43:33 +0100444#else /* !CONFIG_HOTPLUG_CPU */
Alex Nixon26fd1052008-09-08 13:43:34 +0100445static int xen_cpu_disable(void)
Alex Nixon27371462008-09-08 13:43:33 +0100446{
447 return -ENOSYS;
448}
449
Alex Nixon26fd1052008-09-08 13:43:34 +0100450static void xen_cpu_die(unsigned int cpu)
Alex Nixon27371462008-09-08 13:43:33 +0100451{
452 BUG();
453}
454
Alex Nixon26fd1052008-09-08 13:43:34 +0100455static void xen_play_dead(void)
Alex Nixon27371462008-09-08 13:43:33 +0100456{
457 BUG();
458}
459
460#endif
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700461static void stop_self(void *v)
462{
463 int cpu = smp_processor_id();
464
465 /* make sure we're not pinning something down */
466 load_cr3(swapper_pg_dir);
467 /* should set up a minimal gdt */
468
Ian Campbell086748e2010-08-03 14:55:14 -0700469 set_cpu_online(cpu, false);
470
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700471 HYPERVISOR_vcpu_op(VCPUOP_down, cpu, NULL);
472 BUG();
473}
474
Alok Kataria76fac072010-10-11 14:37:08 -0700475static void xen_stop_other_cpus(int wait)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700476{
Alok Kataria76fac072010-10-11 14:37:08 -0700477 smp_call_function(stop_self, NULL, wait);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700478}
479
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700480static void xen_smp_send_reschedule(int cpu)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700481{
482 xen_send_IPI_one(cpu, XEN_RESCHEDULE_VECTOR);
483}
484
Ben Guthrof447d562012-04-21 00:11:04 +0800485static void __xen_send_IPI_mask(const struct cpumask *mask,
486 int vector)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700487{
488 unsigned cpu;
489
Mike Travisbcda0162008-12-16 17:33:59 -0800490 for_each_cpu_and(cpu, mask, cpu_online_mask)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700491 xen_send_IPI_one(cpu, vector);
492}
493
Mike Travisbcda0162008-12-16 17:33:59 -0800494static void xen_smp_send_call_function_ipi(const struct cpumask *mask)
Jens Axboe3b16cf82008-06-26 11:21:54 +0200495{
496 int cpu;
497
Ben Guthrof447d562012-04-21 00:11:04 +0800498 __xen_send_IPI_mask(mask, XEN_CALL_FUNCTION_VECTOR);
Jens Axboe3b16cf82008-06-26 11:21:54 +0200499
500 /* Make sure other vcpus get a chance to run if they need to. */
Mike Travisbcda0162008-12-16 17:33:59 -0800501 for_each_cpu(cpu, mask) {
Jens Axboe3b16cf82008-06-26 11:21:54 +0200502 if (xen_vcpu_stolen(cpu)) {
Hannes Eder1207cf8e2009-03-05 20:13:57 +0100503 HYPERVISOR_sched_op(SCHEDOP_yield, NULL);
Jens Axboe3b16cf82008-06-26 11:21:54 +0200504 break;
505 }
506 }
507}
508
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700509static void xen_smp_send_call_function_single_ipi(int cpu)
Jens Axboe3b16cf82008-06-26 11:21:54 +0200510{
Ben Guthrof447d562012-04-21 00:11:04 +0800511 __xen_send_IPI_mask(cpumask_of(cpu),
Mike Travise7986732008-12-16 17:33:52 -0800512 XEN_CALL_FUNCTION_SINGLE_VECTOR);
Jens Axboe3b16cf82008-06-26 11:21:54 +0200513}
514
Ben Guthrof447d562012-04-21 00:11:04 +0800515static inline int xen_map_vector(int vector)
516{
517 int xen_vector;
518
519 switch (vector) {
520 case RESCHEDULE_VECTOR:
521 xen_vector = XEN_RESCHEDULE_VECTOR;
522 break;
523 case CALL_FUNCTION_VECTOR:
524 xen_vector = XEN_CALL_FUNCTION_VECTOR;
525 break;
526 case CALL_FUNCTION_SINGLE_VECTOR:
527 xen_vector = XEN_CALL_FUNCTION_SINGLE_VECTOR;
528 break;
Lin Ming1ff2b0c2012-04-21 00:11:05 +0800529 case IRQ_WORK_VECTOR:
530 xen_vector = XEN_IRQ_WORK_VECTOR;
531 break;
Ben Guthrof447d562012-04-21 00:11:04 +0800532 default:
533 xen_vector = -1;
534 printk(KERN_ERR "xen: vector 0x%x is not implemented\n",
535 vector);
536 }
537
538 return xen_vector;
539}
540
541void xen_send_IPI_mask(const struct cpumask *mask,
542 int vector)
543{
544 int xen_vector = xen_map_vector(vector);
545
546 if (xen_vector >= 0)
547 __xen_send_IPI_mask(mask, xen_vector);
548}
549
550void xen_send_IPI_all(int vector)
551{
552 int xen_vector = xen_map_vector(vector);
553
554 if (xen_vector >= 0)
555 __xen_send_IPI_mask(cpu_online_mask, xen_vector);
556}
557
558void xen_send_IPI_self(int vector)
559{
560 int xen_vector = xen_map_vector(vector);
561
562 if (xen_vector >= 0)
563 xen_send_IPI_one(smp_processor_id(), xen_vector);
564}
565
566void xen_send_IPI_mask_allbutself(const struct cpumask *mask,
567 int vector)
568{
569 unsigned cpu;
570 unsigned int this_cpu = smp_processor_id();
571
572 if (!(num_online_cpus() > 1))
573 return;
574
575 for_each_cpu_and(cpu, mask, cpu_online_mask) {
576 if (this_cpu == cpu)
577 continue;
578
579 xen_smp_send_call_function_single_ipi(cpu);
580 }
581}
582
583void xen_send_IPI_allbutself(int vector)
584{
585 int xen_vector = xen_map_vector(vector);
586
587 if (xen_vector >= 0)
588 xen_send_IPI_mask_allbutself(cpu_online_mask, xen_vector);
589}
590
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700591static irqreturn_t xen_call_function_interrupt(int irq, void *dev_id)
592{
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700593 irq_enter();
Jens Axboe3b16cf82008-06-26 11:21:54 +0200594 generic_smp_call_function_interrupt();
Brian Gerst1b437c82009-01-19 00:38:57 +0900595 inc_irq_stat(irq_call_count);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700596 irq_exit();
597
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700598 return IRQ_HANDLED;
599}
600
Jens Axboe3b16cf82008-06-26 11:21:54 +0200601static irqreturn_t xen_call_function_single_interrupt(int irq, void *dev_id)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700602{
Jens Axboe3b16cf82008-06-26 11:21:54 +0200603 irq_enter();
604 generic_smp_call_function_single_interrupt();
Brian Gerst1b437c82009-01-19 00:38:57 +0900605 inc_irq_stat(irq_call_count);
Jens Axboe3b16cf82008-06-26 11:21:54 +0200606 irq_exit();
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700607
Jens Axboe3b16cf82008-06-26 11:21:54 +0200608 return IRQ_HANDLED;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700609}
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700610
Lin Ming1ff2b0c2012-04-21 00:11:05 +0800611static irqreturn_t xen_irq_work_interrupt(int irq, void *dev_id)
612{
613 irq_enter();
614 irq_work_run();
615 inc_irq_stat(apic_irq_work_irqs);
616 irq_exit();
617
618 return IRQ_HANDLED;
619}
620
Daniel Kiperb53cede2011-05-04 20:18:05 +0200621static const struct smp_ops xen_smp_ops __initconst = {
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700622 .smp_prepare_boot_cpu = xen_smp_prepare_boot_cpu,
623 .smp_prepare_cpus = xen_smp_prepare_cpus,
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700624 .smp_cpus_done = xen_smp_cpus_done,
625
Alex Nixond68d82a2008-08-22 11:52:15 +0100626 .cpu_up = xen_cpu_up,
627 .cpu_die = xen_cpu_die,
628 .cpu_disable = xen_cpu_disable,
629 .play_dead = xen_play_dead,
630
Alok Kataria76fac072010-10-11 14:37:08 -0700631 .stop_other_cpus = xen_stop_other_cpus,
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700632 .smp_send_reschedule = xen_smp_send_reschedule,
633
634 .send_call_func_ipi = xen_smp_send_call_function_ipi,
635 .send_call_func_single_ipi = xen_smp_send_call_function_single_ipi,
636};
637
638void __init xen_smp_init(void)
639{
640 smp_ops = xen_smp_ops;
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700641 xen_fill_possible_map();
Jeremy Fitzhardinge2d9e1e22008-07-07 12:07:53 -0700642 xen_init_spinlocks();
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700643}
Stefano Stabellini99bbb3a2010-12-02 17:55:10 +0000644
645static void __init xen_hvm_smp_prepare_cpus(unsigned int max_cpus)
646{
647 native_smp_prepare_cpus(max_cpus);
648 WARN_ON(xen_smp_intr_init(0));
649
Stefano Stabellini99bbb3a2010-12-02 17:55:10 +0000650 xen_init_lock_cpu(0);
Stefano Stabellini99bbb3a2010-12-02 17:55:10 +0000651}
652
653static int __cpuinit xen_hvm_cpu_up(unsigned int cpu)
654{
655 int rc;
656 rc = native_cpu_up(cpu);
657 WARN_ON (xen_smp_intr_init(cpu));
658 return rc;
659}
660
661static void xen_hvm_cpu_die(unsigned int cpu)
662{
663 unbind_from_irqhandler(per_cpu(xen_resched_irq, cpu), NULL);
664 unbind_from_irqhandler(per_cpu(xen_callfunc_irq, cpu), NULL);
665 unbind_from_irqhandler(per_cpu(xen_debug_irq, cpu), NULL);
666 unbind_from_irqhandler(per_cpu(xen_callfuncsingle_irq, cpu), NULL);
Lin Ming1ff2b0c2012-04-21 00:11:05 +0800667 unbind_from_irqhandler(per_cpu(xen_irq_work, cpu), NULL);
Stefano Stabellini99bbb3a2010-12-02 17:55:10 +0000668 native_cpu_die(cpu);
669}
670
671void __init xen_hvm_smp_init(void)
672{
Stefano Stabellini3c05c4b2011-08-17 15:15:00 +0200673 if (!xen_have_vector_callback)
674 return;
Stefano Stabellini99bbb3a2010-12-02 17:55:10 +0000675 smp_ops.smp_prepare_cpus = xen_hvm_smp_prepare_cpus;
676 smp_ops.smp_send_reschedule = xen_smp_send_reschedule;
677 smp_ops.cpu_up = xen_hvm_cpu_up;
678 smp_ops.cpu_die = xen_hvm_cpu_die;
679 smp_ops.send_call_func_ipi = xen_smp_send_call_function_ipi;
680 smp_ops.send_call_func_single_ipi = xen_smp_send_call_function_single_ipi;
681}