blob: 415694cc8584ab0f65d3599f9462c83415a3df4c [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
Rusty Russelld7d37562009-11-03 14:58:38 +103083 set_cpu_online(cpu, true);
Konrad Rzeszutek Wilk106b4432012-03-21 13:03:45 -040084
Alex Shi2113f462012-01-13 23:53:35 +080085 this_cpu_write(cpu_state, CPU_ONLINE);
Konrad Rzeszutek Wilk106b4432012-03-21 13:03:45 -040086
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -070087 wmb();
88
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070089 /* We can take interrupts now: we're officially "up". */
90 local_irq_enable();
91
92 wmb(); /* make sure everything is out */
Alex Nixond68d82a2008-08-22 11:52:15 +010093}
94
Daniel Kiperb53cede2011-05-04 20:18:05 +020095static void __cpuinit cpu_bringup_and_idle(void)
Alex Nixond68d82a2008-08-22 11:52:15 +010096{
97 cpu_bringup();
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070098 cpu_idle();
99}
100
101static int xen_smp_intr_init(unsigned int cpu)
102{
103 int rc;
Jeremy Fitzhardingeee523ca2008-03-17 16:37:18 -0700104 const char *resched_name, *callfunc_name, *debug_name;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700105
106 resched_name = kasprintf(GFP_KERNEL, "resched%d", cpu);
107 rc = bind_ipi_to_irqhandler(XEN_RESCHEDULE_VECTOR,
108 cpu,
109 xen_reschedule_interrupt,
110 IRQF_DISABLED|IRQF_PERCPU|IRQF_NOBALANCING,
111 resched_name,
112 NULL);
113 if (rc < 0)
114 goto fail;
Tejun Heoc6e22f92009-10-29 22:34:13 +0900115 per_cpu(xen_resched_irq, cpu) = rc;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700116
117 callfunc_name = kasprintf(GFP_KERNEL, "callfunc%d", cpu);
118 rc = bind_ipi_to_irqhandler(XEN_CALL_FUNCTION_VECTOR,
119 cpu,
120 xen_call_function_interrupt,
121 IRQF_DISABLED|IRQF_PERCPU|IRQF_NOBALANCING,
122 callfunc_name,
123 NULL);
124 if (rc < 0)
125 goto fail;
Tejun Heoc6e22f92009-10-29 22:34:13 +0900126 per_cpu(xen_callfunc_irq, cpu) = rc;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700127
Jeremy Fitzhardingeee523ca2008-03-17 16:37:18 -0700128 debug_name = kasprintf(GFP_KERNEL, "debug%d", cpu);
129 rc = bind_virq_to_irqhandler(VIRQ_DEBUG, cpu, xen_debug_interrupt,
130 IRQF_DISABLED | IRQF_PERCPU | IRQF_NOBALANCING,
131 debug_name, NULL);
132 if (rc < 0)
133 goto fail;
Tejun Heoc6e22f92009-10-29 22:34:13 +0900134 per_cpu(xen_debug_irq, cpu) = rc;
Jeremy Fitzhardingeee523ca2008-03-17 16:37:18 -0700135
Jens Axboe3b16cf82008-06-26 11:21:54 +0200136 callfunc_name = kasprintf(GFP_KERNEL, "callfuncsingle%d", cpu);
137 rc = bind_ipi_to_irqhandler(XEN_CALL_FUNCTION_SINGLE_VECTOR,
138 cpu,
139 xen_call_function_single_interrupt,
140 IRQF_DISABLED|IRQF_PERCPU|IRQF_NOBALANCING,
141 callfunc_name,
142 NULL);
143 if (rc < 0)
144 goto fail;
Tejun Heoc6e22f92009-10-29 22:34:13 +0900145 per_cpu(xen_callfuncsingle_irq, cpu) = rc;
Jens Axboe3b16cf82008-06-26 11:21:54 +0200146
Konrad Rzeszutek Wilk27d8b202013-04-16 14:37:04 -0400147 /*
148 * The IRQ worker on PVHVM goes through the native path and uses the
149 * IPI mechanism.
150 */
151 if (xen_hvm_domain())
152 return 0;
153
Lin Ming1ff2b0c2012-04-21 00:11:05 +0800154 callfunc_name = kasprintf(GFP_KERNEL, "irqwork%d", cpu);
155 rc = bind_ipi_to_irqhandler(XEN_IRQ_WORK_VECTOR,
156 cpu,
157 xen_irq_work_interrupt,
158 IRQF_DISABLED|IRQF_PERCPU|IRQF_NOBALANCING,
159 callfunc_name,
160 NULL);
161 if (rc < 0)
162 goto fail;
163 per_cpu(xen_irq_work, cpu) = rc;
164
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700165 return 0;
166
167 fail:
Tejun Heoc6e22f92009-10-29 22:34:13 +0900168 if (per_cpu(xen_resched_irq, cpu) >= 0)
169 unbind_from_irqhandler(per_cpu(xen_resched_irq, cpu), NULL);
170 if (per_cpu(xen_callfunc_irq, cpu) >= 0)
171 unbind_from_irqhandler(per_cpu(xen_callfunc_irq, cpu), NULL);
172 if (per_cpu(xen_debug_irq, cpu) >= 0)
173 unbind_from_irqhandler(per_cpu(xen_debug_irq, cpu), NULL);
174 if (per_cpu(xen_callfuncsingle_irq, cpu) >= 0)
175 unbind_from_irqhandler(per_cpu(xen_callfuncsingle_irq, cpu),
176 NULL);
Konrad Rzeszutek Wilk27d8b202013-04-16 14:37:04 -0400177 if (xen_hvm_domain())
178 return rc;
179
Lin Ming1ff2b0c2012-04-21 00:11:05 +0800180 if (per_cpu(xen_irq_work, cpu) >= 0)
181 unbind_from_irqhandler(per_cpu(xen_irq_work, cpu), NULL);
Jens Axboe3b16cf82008-06-26 11:21:54 +0200182
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700183 return rc;
184}
185
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700186static void __init xen_fill_possible_map(void)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700187{
188 int i, rc;
189
Stefano Stabelliniea5b8f72010-10-26 17:28:33 +0100190 if (xen_initial_domain())
191 return;
192
Mike Travise7986732008-12-16 17:33:52 -0800193 for (i = 0; i < nr_cpu_ids; i++) {
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700194 rc = HYPERVISOR_vcpu_op(VCPUOP_is_up, i, NULL);
Jeremy Fitzhardinge4560a292008-07-08 15:06:56 -0700195 if (rc >= 0) {
196 num_processors++;
Rusty Russell4f062892009-03-13 14:49:54 +1030197 set_cpu_possible(i, true);
Jeremy Fitzhardinge4560a292008-07-08 15:06:56 -0700198 }
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700199 }
200}
201
Stefano Stabelliniea5b8f72010-10-26 17:28:33 +0100202static void __init xen_filter_cpu_maps(void)
203{
204 int i, rc;
Konrad Rzeszutek Wilkcf405ae2012-04-26 13:50:03 -0400205 unsigned int subtract = 0;
Stefano Stabelliniea5b8f72010-10-26 17:28:33 +0100206
207 if (!xen_initial_domain())
208 return;
209
Stefano Stabellini801fd142010-09-23 12:06:25 +0100210 num_processors = 0;
211 disabled_cpus = 0;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700212 for (i = 0; i < nr_cpu_ids; i++) {
213 rc = HYPERVISOR_vcpu_op(VCPUOP_is_up, i, NULL);
214 if (rc >= 0) {
215 num_processors++;
216 set_cpu_possible(i, true);
Stefano Stabellini801fd142010-09-23 12:06:25 +0100217 } else {
218 set_cpu_possible(i, false);
219 set_cpu_present(i, false);
Konrad Rzeszutek Wilkcf405ae2012-04-26 13:50:03 -0400220 subtract++;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700221 }
222 }
Konrad Rzeszutek Wilkcf405ae2012-04-26 13:50:03 -0400223#ifdef CONFIG_HOTPLUG_CPU
224 /* This is akin to using 'nr_cpus' on the Linux command line.
225 * Which is OK as when we use 'dom0_max_vcpus=X' we can only
226 * have up to X, while nr_cpu_ids is greater than X. This
227 * normally is not a problem, except when CPU hotplugging
228 * is involved and then there might be more than X CPUs
229 * in the guest - which will not work as there is no
230 * hypercall to expand the max number of VCPUs an already
231 * running guest has. So cap it up to X. */
232 if (subtract)
233 nr_cpu_ids = nr_cpu_ids - subtract;
234#endif
235
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700236}
237
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700238static void __init xen_smp_prepare_boot_cpu(void)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700239{
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700240 BUG_ON(smp_processor_id() != 0);
241 native_smp_prepare_boot_cpu();
242
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700243 /* We've switched to the "real" per-cpu gdt, so make sure the
244 old memory can be recycled */
Jeremy Fitzhardinge38341432009-02-02 13:55:31 -0800245 make_lowmem_page_readwrite(xen_initial_gdt);
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700246
Stefano Stabelliniea5b8f72010-10-26 17:28:33 +0100247 xen_filter_cpu_maps();
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700248 xen_setup_vcpu_info_placement();
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700249}
250
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700251static void __init xen_smp_prepare_cpus(unsigned int max_cpus)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700252{
253 unsigned cpu;
Andrew Jones900cba82009-12-18 10:31:31 +0100254 unsigned int i;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700255
Konrad Rzeszutek Wilked467e62011-09-01 09:48:27 -0400256 if (skip_ioapic_setup) {
257 char *m = (max_cpus == 0) ?
258 "The nosmp parameter is incompatible with Xen; " \
259 "use Xen dom0_max_vcpus=1 parameter" :
260 "The noapic parameter is incompatible with Xen";
261
262 xen_raw_printk(m);
263 panic(m);
264 }
Jeremy Fitzhardinge2d9e1e22008-07-07 12:07:53 -0700265 xen_init_lock_cpu(0);
266
Konrad Rzeszutek Wilk06d0b5d2012-12-17 20:29:32 -0500267 smp_store_boot_cpu_info();
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700268 cpu_data(0).x86_max_cores = 1;
Andrew Jones900cba82009-12-18 10:31:31 +0100269
270 for_each_possible_cpu(i) {
271 zalloc_cpumask_var(&per_cpu(cpu_sibling_map, i), GFP_KERNEL);
272 zalloc_cpumask_var(&per_cpu(cpu_core_map, i), GFP_KERNEL);
273 zalloc_cpumask_var(&per_cpu(cpu_llc_shared_map, i), GFP_KERNEL);
274 }
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700275 set_cpu_sibling_map(0);
276
277 if (xen_smp_intr_init(0))
278 BUG();
279
Mike Travisb78936e2008-12-16 17:33:57 -0800280 if (!alloc_cpumask_var(&xen_cpu_initialized_map, GFP_KERNEL))
281 panic("could not allocate xen_cpu_initialized_map\n");
282
283 cpumask_copy(xen_cpu_initialized_map, cpumask_of(0));
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700284
285 /* Restrict the possible_map according to max_cpus. */
286 while ((num_possible_cpus() > 1) && (num_possible_cpus() > max_cpus)) {
Mike Travise7986732008-12-16 17:33:52 -0800287 for (cpu = nr_cpu_ids - 1; !cpu_possible(cpu); cpu--)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700288 continue;
Rusty Russell4f062892009-03-13 14:49:54 +1030289 set_cpu_possible(cpu, false);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700290 }
291
Thomas Gleixner7eb43a62012-04-20 13:05:48 +0000292 for_each_possible_cpu(cpu)
Rusty Russell4f062892009-03-13 14:49:54 +1030293 set_cpu_present(cpu, true);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700294}
295
Daniel Kiperb53cede2011-05-04 20:18:05 +0200296static int __cpuinit
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700297cpu_initialize_context(unsigned int cpu, struct task_struct *idle)
298{
299 struct vcpu_guest_context *ctxt;
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700300 struct desc_struct *gdt;
Jeremy Fitzhardinge9976b392009-02-27 09:19:26 -0800301 unsigned long gdt_mfn;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700302
Mike Travisb78936e2008-12-16 17:33:57 -0800303 if (cpumask_test_and_set_cpu(cpu, xen_cpu_initialized_map))
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700304 return 0;
305
306 ctxt = kzalloc(sizeof(*ctxt), GFP_KERNEL);
307 if (ctxt == NULL)
308 return -ENOMEM;
309
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700310 gdt = get_cpu_gdt_table(cpu);
311
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700312 ctxt->flags = VGCF_IN_KERNEL;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700313 ctxt->user_regs.ss = __KERNEL_DS;
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700314#ifdef CONFIG_X86_32
315 ctxt->user_regs.fs = __KERNEL_PERCPU;
Jeremy Fitzhardinge577eebe2009-08-27 12:46:35 -0700316 ctxt->user_regs.gs = __KERNEL_STACK_CANARY;
Jeremy Fitzhardinge795f99b2009-01-30 17:47:54 +0900317#else
318 ctxt->gs_base_kernel = per_cpu_offset(cpu);
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700319#endif
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700320 ctxt->user_regs.eip = (unsigned long)cpu_bringup_and_idle;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700321
322 memset(&ctxt->fpu_ctxt, 0, sizeof(ctxt->fpu_ctxt));
323
Konrad Rzeszutek Wilkdacd45f2012-10-22 11:35:16 -0400324 {
325 ctxt->user_regs.eflags = 0x1000; /* IOPL_RING1 */
326 ctxt->user_regs.ds = __USER_DS;
327 ctxt->user_regs.es = __USER_DS;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700328
Konrad Rzeszutek Wilkdacd45f2012-10-22 11:35:16 -0400329 xen_copy_trap_info(ctxt->trap_ctxt);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700330
Konrad Rzeszutek Wilkdacd45f2012-10-22 11:35:16 -0400331 ctxt->ldt_ents = 0;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700332
Konrad Rzeszutek Wilkdacd45f2012-10-22 11:35:16 -0400333 BUG_ON((unsigned long)gdt & ~PAGE_MASK);
Jeremy Fitzhardinge9976b392009-02-27 09:19:26 -0800334
Konrad Rzeszutek Wilkdacd45f2012-10-22 11:35:16 -0400335 gdt_mfn = arbitrary_virt_to_mfn(gdt);
336 make_lowmem_page_readonly(gdt);
337 make_lowmem_page_readonly(mfn_to_virt(gdt_mfn));
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700338
Konrad Rzeszutek Wilkdacd45f2012-10-22 11:35:16 -0400339 ctxt->gdt_frames[0] = gdt_mfn;
340 ctxt->gdt_ents = GDT_ENTRIES;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700341
Konrad Rzeszutek Wilkdacd45f2012-10-22 11:35:16 -0400342 ctxt->kernel_ss = __KERNEL_DS;
343 ctxt->kernel_sp = idle->thread.sp0;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700344
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700345#ifdef CONFIG_X86_32
Konrad Rzeszutek Wilkdacd45f2012-10-22 11:35:16 -0400346 ctxt->event_callback_cs = __KERNEL_CS;
347 ctxt->failsafe_callback_cs = __KERNEL_CS;
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700348#endif
Konrad Rzeszutek Wilkdacd45f2012-10-22 11:35:16 -0400349 ctxt->event_callback_eip =
350 (unsigned long)xen_hypervisor_callback;
351 ctxt->failsafe_callback_eip =
352 (unsigned long)xen_failsafe_callback;
353 }
354 ctxt->user_regs.cs = __KERNEL_CS;
355 ctxt->user_regs.esp = idle->thread.sp0 - sizeof(struct pt_regs);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700356
357 per_cpu(xen_cr3, cpu) = __pa(swapper_pg_dir);
358 ctxt->ctrlreg[3] = xen_pfn_to_cr3(virt_to_mfn(swapper_pg_dir));
359
360 if (HYPERVISOR_vcpu_op(VCPUOP_initialise, cpu, ctxt))
361 BUG();
362
363 kfree(ctxt);
364 return 0;
365}
366
Thomas Gleixner7eb43a62012-04-20 13:05:48 +0000367static int __cpuinit xen_cpu_up(unsigned int cpu, struct task_struct *idle)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700368{
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700369 int rc;
370
Brian Gerstc6f5e0a2009-01-19 00:38:58 +0900371 per_cpu(current_task, cpu) = idle;
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700372#ifdef CONFIG_X86_32
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700373 irq_ctx_init(cpu);
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700374#else
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700375 clear_tsk_thread_flag(idle, TIF_FORK);
Jeremy Fitzhardinge38341432009-02-02 13:55:31 -0800376 per_cpu(kernel_stack, cpu) =
377 (unsigned long)task_stack_page(idle) -
378 KERNEL_STACK_OFFSET + THREAD_SIZE;
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700379#endif
Ian Campbell02889672009-11-24 09:32:48 -0800380 xen_setup_runstate_info(cpu);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700381 xen_setup_timer(cpu);
Jeremy Fitzhardinge2d9e1e22008-07-07 12:07:53 -0700382 xen_init_lock_cpu(cpu);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700383
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700384 per_cpu(cpu_state, cpu) = CPU_UP_PREPARE;
385
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700386 /* make sure interrupts start blocked */
387 per_cpu(xen_vcpu, cpu)->evtchn_upcall_mask = 1;
388
389 rc = cpu_initialize_context(cpu, idle);
390 if (rc)
391 return rc;
392
393 if (num_online_cpus() == 1)
Rusty Russell816afe42012-08-06 17:29:49 +0930394 /* Just in case we booted with a single CPU. */
395 alternatives_enable_smp();
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700396
397 rc = xen_smp_intr_init(cpu);
398 if (rc)
399 return rc;
400
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700401 rc = HYPERVISOR_vcpu_op(VCPUOP_up, cpu, NULL);
402 BUG_ON(rc);
403
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700404 while(per_cpu(cpu_state, cpu) != CPU_ONLINE) {
Hannes Eder1207cf8e2009-03-05 20:13:57 +0100405 HYPERVISOR_sched_op(SCHEDOP_yield, NULL);
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700406 barrier();
407 }
408
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700409 return 0;
410}
411
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700412static void xen_smp_cpus_done(unsigned int max_cpus)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700413{
414}
415
Alex Nixon27371462008-09-08 13:43:33 +0100416#ifdef CONFIG_HOTPLUG_CPU
Alex Nixon26fd1052008-09-08 13:43:34 +0100417static int xen_cpu_disable(void)
Alex Nixond68d82a2008-08-22 11:52:15 +0100418{
419 unsigned int cpu = smp_processor_id();
420 if (cpu == 0)
421 return -EBUSY;
422
423 cpu_disable_common();
424
425 load_cr3(swapper_pg_dir);
426 return 0;
427}
428
Alex Nixon26fd1052008-09-08 13:43:34 +0100429static void xen_cpu_die(unsigned int cpu)
Alex Nixond68d82a2008-08-22 11:52:15 +0100430{
431 while (HYPERVISOR_vcpu_op(VCPUOP_is_up, cpu, NULL)) {
432 current->state = TASK_UNINTERRUPTIBLE;
433 schedule_timeout(HZ/10);
434 }
Tejun Heoc6e22f92009-10-29 22:34:13 +0900435 unbind_from_irqhandler(per_cpu(xen_resched_irq, cpu), NULL);
436 unbind_from_irqhandler(per_cpu(xen_callfunc_irq, cpu), NULL);
437 unbind_from_irqhandler(per_cpu(xen_debug_irq, cpu), NULL);
438 unbind_from_irqhandler(per_cpu(xen_callfuncsingle_irq, cpu), NULL);
Konrad Rzeszutek Wilk2f1bd672012-05-21 09:19:38 -0400439 unbind_from_irqhandler(per_cpu(xen_irq_work, cpu), NULL);
Alex Nixond68d82a2008-08-22 11:52:15 +0100440 xen_uninit_lock_cpu(cpu);
441 xen_teardown_timer(cpu);
Alex Nixond68d82a2008-08-22 11:52:15 +0100442}
443
Robert P. J. Day71709242009-12-28 11:50:29 -0500444static void __cpuinit xen_play_dead(void) /* used only with HOTPLUG_CPU */
Alex Nixond68d82a2008-08-22 11:52:15 +0100445{
446 play_dead_common();
447 HYPERVISOR_vcpu_op(VCPUOP_down, smp_processor_id(), NULL);
448 cpu_bringup();
449}
450
Alex Nixon27371462008-09-08 13:43:33 +0100451#else /* !CONFIG_HOTPLUG_CPU */
Alex Nixon26fd1052008-09-08 13:43:34 +0100452static int xen_cpu_disable(void)
Alex Nixon27371462008-09-08 13:43:33 +0100453{
454 return -ENOSYS;
455}
456
Alex Nixon26fd1052008-09-08 13:43:34 +0100457static void xen_cpu_die(unsigned int cpu)
Alex Nixon27371462008-09-08 13:43:33 +0100458{
459 BUG();
460}
461
Alex Nixon26fd1052008-09-08 13:43:34 +0100462static void xen_play_dead(void)
Alex Nixon27371462008-09-08 13:43:33 +0100463{
464 BUG();
465}
466
467#endif
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700468static void stop_self(void *v)
469{
470 int cpu = smp_processor_id();
471
472 /* make sure we're not pinning something down */
473 load_cr3(swapper_pg_dir);
474 /* should set up a minimal gdt */
475
Ian Campbell086748e2010-08-03 14:55:14 -0700476 set_cpu_online(cpu, false);
477
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700478 HYPERVISOR_vcpu_op(VCPUOP_down, cpu, NULL);
479 BUG();
480}
481
Alok Kataria76fac072010-10-11 14:37:08 -0700482static void xen_stop_other_cpus(int wait)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700483{
Alok Kataria76fac072010-10-11 14:37:08 -0700484 smp_call_function(stop_self, NULL, wait);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700485}
486
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700487static void xen_smp_send_reschedule(int cpu)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700488{
489 xen_send_IPI_one(cpu, XEN_RESCHEDULE_VECTOR);
490}
491
Ben Guthrof447d562012-04-21 00:11:04 +0800492static void __xen_send_IPI_mask(const struct cpumask *mask,
493 int vector)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700494{
495 unsigned cpu;
496
Mike Travisbcda0162008-12-16 17:33:59 -0800497 for_each_cpu_and(cpu, mask, cpu_online_mask)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700498 xen_send_IPI_one(cpu, vector);
499}
500
Mike Travisbcda0162008-12-16 17:33:59 -0800501static void xen_smp_send_call_function_ipi(const struct cpumask *mask)
Jens Axboe3b16cf82008-06-26 11:21:54 +0200502{
503 int cpu;
504
Ben Guthrof447d562012-04-21 00:11:04 +0800505 __xen_send_IPI_mask(mask, XEN_CALL_FUNCTION_VECTOR);
Jens Axboe3b16cf82008-06-26 11:21:54 +0200506
507 /* Make sure other vcpus get a chance to run if they need to. */
Mike Travisbcda0162008-12-16 17:33:59 -0800508 for_each_cpu(cpu, mask) {
Jens Axboe3b16cf82008-06-26 11:21:54 +0200509 if (xen_vcpu_stolen(cpu)) {
Hannes Eder1207cf8e2009-03-05 20:13:57 +0100510 HYPERVISOR_sched_op(SCHEDOP_yield, NULL);
Jens Axboe3b16cf82008-06-26 11:21:54 +0200511 break;
512 }
513 }
514}
515
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700516static void xen_smp_send_call_function_single_ipi(int cpu)
Jens Axboe3b16cf82008-06-26 11:21:54 +0200517{
Ben Guthrof447d562012-04-21 00:11:04 +0800518 __xen_send_IPI_mask(cpumask_of(cpu),
Mike Travise7986732008-12-16 17:33:52 -0800519 XEN_CALL_FUNCTION_SINGLE_VECTOR);
Jens Axboe3b16cf82008-06-26 11:21:54 +0200520}
521
Ben Guthrof447d562012-04-21 00:11:04 +0800522static inline int xen_map_vector(int vector)
523{
524 int xen_vector;
525
526 switch (vector) {
527 case RESCHEDULE_VECTOR:
528 xen_vector = XEN_RESCHEDULE_VECTOR;
529 break;
530 case CALL_FUNCTION_VECTOR:
531 xen_vector = XEN_CALL_FUNCTION_VECTOR;
532 break;
533 case CALL_FUNCTION_SINGLE_VECTOR:
534 xen_vector = XEN_CALL_FUNCTION_SINGLE_VECTOR;
535 break;
Lin Ming1ff2b0c2012-04-21 00:11:05 +0800536 case IRQ_WORK_VECTOR:
537 xen_vector = XEN_IRQ_WORK_VECTOR;
538 break;
Ben Guthrof447d562012-04-21 00:11:04 +0800539 default:
540 xen_vector = -1;
541 printk(KERN_ERR "xen: vector 0x%x is not implemented\n",
542 vector);
543 }
544
545 return xen_vector;
546}
547
548void xen_send_IPI_mask(const struct cpumask *mask,
549 int vector)
550{
551 int xen_vector = xen_map_vector(vector);
552
553 if (xen_vector >= 0)
554 __xen_send_IPI_mask(mask, xen_vector);
555}
556
557void xen_send_IPI_all(int vector)
558{
559 int xen_vector = xen_map_vector(vector);
560
561 if (xen_vector >= 0)
562 __xen_send_IPI_mask(cpu_online_mask, xen_vector);
563}
564
565void xen_send_IPI_self(int vector)
566{
567 int xen_vector = xen_map_vector(vector);
568
569 if (xen_vector >= 0)
570 xen_send_IPI_one(smp_processor_id(), xen_vector);
571}
572
573void xen_send_IPI_mask_allbutself(const struct cpumask *mask,
574 int vector)
575{
576 unsigned cpu;
577 unsigned int this_cpu = smp_processor_id();
578
579 if (!(num_online_cpus() > 1))
580 return;
581
582 for_each_cpu_and(cpu, mask, cpu_online_mask) {
583 if (this_cpu == cpu)
584 continue;
585
586 xen_smp_send_call_function_single_ipi(cpu);
587 }
588}
589
590void xen_send_IPI_allbutself(int vector)
591{
592 int xen_vector = xen_map_vector(vector);
593
594 if (xen_vector >= 0)
595 xen_send_IPI_mask_allbutself(cpu_online_mask, xen_vector);
596}
597
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700598static irqreturn_t xen_call_function_interrupt(int irq, void *dev_id)
599{
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700600 irq_enter();
Jens Axboe3b16cf82008-06-26 11:21:54 +0200601 generic_smp_call_function_interrupt();
Brian Gerst1b437c82009-01-19 00:38:57 +0900602 inc_irq_stat(irq_call_count);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700603 irq_exit();
604
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700605 return IRQ_HANDLED;
606}
607
Jens Axboe3b16cf82008-06-26 11:21:54 +0200608static irqreturn_t xen_call_function_single_interrupt(int irq, void *dev_id)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700609{
Jens Axboe3b16cf82008-06-26 11:21:54 +0200610 irq_enter();
611 generic_smp_call_function_single_interrupt();
Brian Gerst1b437c82009-01-19 00:38:57 +0900612 inc_irq_stat(irq_call_count);
Jens Axboe3b16cf82008-06-26 11:21:54 +0200613 irq_exit();
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700614
Jens Axboe3b16cf82008-06-26 11:21:54 +0200615 return IRQ_HANDLED;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700616}
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700617
Lin Ming1ff2b0c2012-04-21 00:11:05 +0800618static irqreturn_t xen_irq_work_interrupt(int irq, void *dev_id)
619{
620 irq_enter();
621 irq_work_run();
622 inc_irq_stat(apic_irq_work_irqs);
623 irq_exit();
624
625 return IRQ_HANDLED;
626}
627
Daniel Kiperb53cede2011-05-04 20:18:05 +0200628static const struct smp_ops xen_smp_ops __initconst = {
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700629 .smp_prepare_boot_cpu = xen_smp_prepare_boot_cpu,
630 .smp_prepare_cpus = xen_smp_prepare_cpus,
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700631 .smp_cpus_done = xen_smp_cpus_done,
632
Alex Nixond68d82a2008-08-22 11:52:15 +0100633 .cpu_up = xen_cpu_up,
634 .cpu_die = xen_cpu_die,
635 .cpu_disable = xen_cpu_disable,
636 .play_dead = xen_play_dead,
637
Alok Kataria76fac072010-10-11 14:37:08 -0700638 .stop_other_cpus = xen_stop_other_cpus,
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700639 .smp_send_reschedule = xen_smp_send_reschedule,
640
641 .send_call_func_ipi = xen_smp_send_call_function_ipi,
642 .send_call_func_single_ipi = xen_smp_send_call_function_single_ipi,
643};
644
645void __init xen_smp_init(void)
646{
647 smp_ops = xen_smp_ops;
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700648 xen_fill_possible_map();
Jeremy Fitzhardinge2d9e1e22008-07-07 12:07:53 -0700649 xen_init_spinlocks();
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700650}
Stefano Stabellini99bbb3a2010-12-02 17:55:10 +0000651
652static void __init xen_hvm_smp_prepare_cpus(unsigned int max_cpus)
653{
654 native_smp_prepare_cpus(max_cpus);
655 WARN_ON(xen_smp_intr_init(0));
656
Stefano Stabellini99bbb3a2010-12-02 17:55:10 +0000657 xen_init_lock_cpu(0);
Stefano Stabellini99bbb3a2010-12-02 17:55:10 +0000658}
659
Thomas Gleixner5cdaf182012-04-20 13:05:47 +0000660static int __cpuinit xen_hvm_cpu_up(unsigned int cpu, struct task_struct *tidle)
Stefano Stabellini99bbb3a2010-12-02 17:55:10 +0000661{
662 int rc;
Thomas Gleixner5cdaf182012-04-20 13:05:47 +0000663 rc = native_cpu_up(cpu, tidle);
Stefano Stabellini99bbb3a2010-12-02 17:55:10 +0000664 WARN_ON (xen_smp_intr_init(cpu));
665 return rc;
666}
667
668static void xen_hvm_cpu_die(unsigned int cpu)
669{
670 unbind_from_irqhandler(per_cpu(xen_resched_irq, cpu), NULL);
671 unbind_from_irqhandler(per_cpu(xen_callfunc_irq, cpu), NULL);
672 unbind_from_irqhandler(per_cpu(xen_debug_irq, cpu), NULL);
673 unbind_from_irqhandler(per_cpu(xen_callfuncsingle_irq, cpu), NULL);
Konrad Rzeszutek Wilk27d8b202013-04-16 14:37:04 -0400674 if (!xen_hvm_domain())
675 unbind_from_irqhandler(per_cpu(xen_irq_work, cpu), NULL);
Konrad Rzeszutek Wilk66ff0fe2013-04-16 14:08:50 -0400676 xen_uninit_lock_cpu(cpu);
Konrad Rzeszutek Wilk888b65b2013-04-16 13:49:26 -0400677 xen_teardown_timer(cpu);
Stefano Stabellini99bbb3a2010-12-02 17:55:10 +0000678 native_cpu_die(cpu);
679}
680
681void __init xen_hvm_smp_init(void)
682{
Stefano Stabellini3c05c4b2011-08-17 15:15:00 +0200683 if (!xen_have_vector_callback)
684 return;
Stefano Stabellini99bbb3a2010-12-02 17:55:10 +0000685 smp_ops.smp_prepare_cpus = xen_hvm_smp_prepare_cpus;
686 smp_ops.smp_send_reschedule = xen_smp_send_reschedule;
687 smp_ops.cpu_up = xen_hvm_cpu_up;
688 smp_ops.cpu_die = xen_hvm_cpu_die;
689 smp_ops.send_call_func_ipi = xen_smp_send_call_function_ipi;
690 smp_ops.send_call_func_single_ipi = xen_smp_send_call_function_single_ipi;
691}