blob: 6a483cdd28c986e623b7f19635f5bdc49906ac30 [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
Konrad Rzeszutek Wilk95476892013-06-04 16:37:44 -040042struct xen_common_irq {
43 int irq;
44 char *name;
45};
Konrad Rzeszutek Wilkee336e12013-06-04 16:42:29 -040046static DEFINE_PER_CPU(struct xen_common_irq, xen_resched_irq) = { .irq = -1 };
47static DEFINE_PER_CPU(struct xen_common_irq, xen_callfunc_irq) = { .irq = -1 };
48static DEFINE_PER_CPU(struct xen_common_irq, xen_callfuncsingle_irq) = { .irq = -1 };
49static DEFINE_PER_CPU(struct xen_common_irq, xen_irq_work) = { .irq = -1 };
Konrad Rzeszutek Wilk95476892013-06-04 16:37:44 -040050static DEFINE_PER_CPU(struct xen_common_irq, xen_debug_irq) = { .irq = -1 };
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070051
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070052static irqreturn_t xen_call_function_interrupt(int irq, void *dev_id);
Jens Axboe3b16cf82008-06-26 11:21:54 +020053static irqreturn_t xen_call_function_single_interrupt(int irq, void *dev_id);
Lin Ming1ff2b0c2012-04-21 00:11:05 +080054static irqreturn_t xen_irq_work_interrupt(int irq, void *dev_id);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070055
56/*
Peter Zijlstra184748c2011-04-05 17:23:39 +020057 * Reschedule call back.
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070058 */
59static irqreturn_t xen_reschedule_interrupt(int irq, void *dev_id)
60{
Brian Gerst1b437c82009-01-19 00:38:57 +090061 inc_irq_stat(irq_resched_count);
Peter Zijlstra184748c2011-04-05 17:23:39 +020062 scheduler_ipi();
Jeremy Fitzhardinge38bb5ab2008-05-26 23:31:16 +010063
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070064 return IRQ_HANDLED;
65}
66
Daniel Kiperb53cede2011-05-04 20:18:05 +020067static void __cpuinit cpu_bringup(void)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070068{
Srivatsa S. Bhate8c9e782012-03-22 18:29:24 +053069 int cpu;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070070
71 cpu_init();
Alex Nixond68d82a2008-08-22 11:52:15 +010072 touch_softlockup_watchdog();
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -070073 preempt_disable();
74
Jeremy Fitzhardingee2a81ba2008-03-17 16:37:17 -070075 xen_enable_sysenter();
Jeremy Fitzhardinge6fcac6d2008-07-08 15:07:14 -070076 xen_enable_syscall();
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070077
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -070078 cpu = smp_processor_id();
79 smp_store_cpu_info(cpu);
80 cpu_data(cpu).x86_max_cores = 1;
81 set_cpu_sibling_map(cpu);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070082
83 xen_setup_cpu_clockevents();
84
Konrad Rzeszutek Wilk106b4432012-03-21 13:03:45 -040085 notify_cpu_starting(cpu);
86
Rusty Russelld7d37562009-11-03 14:58:38 +103087 set_cpu_online(cpu, true);
Konrad Rzeszutek Wilk106b4432012-03-21 13:03:45 -040088
Alex Shi2113f462012-01-13 23:53:35 +080089 this_cpu_write(cpu_state, CPU_ONLINE);
Konrad Rzeszutek Wilk106b4432012-03-21 13:03:45 -040090
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -070091 wmb();
92
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070093 /* We can take interrupts now: we're officially "up". */
94 local_irq_enable();
95
96 wmb(); /* make sure everything is out */
Alex Nixond68d82a2008-08-22 11:52:15 +010097}
98
Daniel Kiperb53cede2011-05-04 20:18:05 +020099static void __cpuinit cpu_bringup_and_idle(void)
Alex Nixond68d82a2008-08-22 11:52:15 +0100100{
101 cpu_bringup();
Thomas Gleixner7d1a9412013-03-21 22:50:03 +0100102 cpu_startup_entry(CPUHP_ONLINE);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700103}
104
Konrad Rzeszutek Wilk53b94fd2013-06-04 16:31:34 -0400105static void xen_smp_intr_free(unsigned int cpu)
106{
Konrad Rzeszutek Wilkee336e12013-06-04 16:42:29 -0400107 if (per_cpu(xen_resched_irq, cpu).irq >= 0) {
Konrad Rzeszutek Wilk95476892013-06-04 16:37:44 -0400108 unbind_from_irqhandler(per_cpu(xen_resched_irq, cpu).irq, NULL);
Konrad Rzeszutek Wilkee336e12013-06-04 16:42:29 -0400109 per_cpu(xen_resched_irq, cpu).irq = -1;
110 }
111 if (per_cpu(xen_callfunc_irq, cpu).irq >= 0) {
Konrad Rzeszutek Wilk95476892013-06-04 16:37:44 -0400112 unbind_from_irqhandler(per_cpu(xen_callfunc_irq, cpu).irq, NULL);
Konrad Rzeszutek Wilkee336e12013-06-04 16:42:29 -0400113 per_cpu(xen_callfunc_irq, cpu).irq = -1;
114 }
115 if (per_cpu(xen_debug_irq, cpu).irq >= 0) {
Konrad Rzeszutek Wilk95476892013-06-04 16:37:44 -0400116 unbind_from_irqhandler(per_cpu(xen_debug_irq, cpu).irq, NULL);
Konrad Rzeszutek Wilkee336e12013-06-04 16:42:29 -0400117 per_cpu(xen_debug_irq, cpu).irq = -1;
118 }
119 if (per_cpu(xen_callfuncsingle_irq, cpu).irq >= 0) {
Konrad Rzeszutek Wilk95476892013-06-04 16:37:44 -0400120 unbind_from_irqhandler(per_cpu(xen_callfuncsingle_irq, cpu).irq,
Konrad Rzeszutek Wilk53b94fd2013-06-04 16:31:34 -0400121 NULL);
Konrad Rzeszutek Wilkee336e12013-06-04 16:42:29 -0400122 per_cpu(xen_callfuncsingle_irq, cpu).irq = -1;
123 }
Konrad Rzeszutek Wilk53b94fd2013-06-04 16:31:34 -0400124 if (xen_hvm_domain())
125 return;
126
Konrad Rzeszutek Wilkee336e12013-06-04 16:42:29 -0400127 if (per_cpu(xen_irq_work, cpu).irq >= 0) {
Konrad Rzeszutek Wilk95476892013-06-04 16:37:44 -0400128 unbind_from_irqhandler(per_cpu(xen_irq_work, cpu).irq, NULL);
Konrad Rzeszutek Wilkee336e12013-06-04 16:42:29 -0400129 per_cpu(xen_irq_work, cpu).irq = -1;
130 }
Konrad Rzeszutek Wilk53b94fd2013-06-04 16:31:34 -0400131};
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700132static int xen_smp_intr_init(unsigned int cpu)
133{
134 int rc;
Jeremy Fitzhardingeee523ca2008-03-17 16:37:18 -0700135 const char *resched_name, *callfunc_name, *debug_name;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700136
137 resched_name = kasprintf(GFP_KERNEL, "resched%d", cpu);
138 rc = bind_ipi_to_irqhandler(XEN_RESCHEDULE_VECTOR,
139 cpu,
140 xen_reschedule_interrupt,
141 IRQF_DISABLED|IRQF_PERCPU|IRQF_NOBALANCING,
142 resched_name,
143 NULL);
144 if (rc < 0)
145 goto fail;
Konrad Rzeszutek Wilk95476892013-06-04 16:37:44 -0400146 per_cpu(xen_resched_irq, cpu).irq = rc;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700147
148 callfunc_name = kasprintf(GFP_KERNEL, "callfunc%d", cpu);
149 rc = bind_ipi_to_irqhandler(XEN_CALL_FUNCTION_VECTOR,
150 cpu,
151 xen_call_function_interrupt,
152 IRQF_DISABLED|IRQF_PERCPU|IRQF_NOBALANCING,
153 callfunc_name,
154 NULL);
155 if (rc < 0)
156 goto fail;
Konrad Rzeszutek Wilk95476892013-06-04 16:37:44 -0400157 per_cpu(xen_callfunc_irq, cpu).irq = rc;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700158
Jeremy Fitzhardingeee523ca2008-03-17 16:37:18 -0700159 debug_name = kasprintf(GFP_KERNEL, "debug%d", cpu);
160 rc = bind_virq_to_irqhandler(VIRQ_DEBUG, cpu, xen_debug_interrupt,
161 IRQF_DISABLED | IRQF_PERCPU | IRQF_NOBALANCING,
162 debug_name, NULL);
163 if (rc < 0)
164 goto fail;
Konrad Rzeszutek Wilk95476892013-06-04 16:37:44 -0400165 per_cpu(xen_debug_irq, cpu).irq = rc;
Jeremy Fitzhardingeee523ca2008-03-17 16:37:18 -0700166
Jens Axboe3b16cf82008-06-26 11:21:54 +0200167 callfunc_name = kasprintf(GFP_KERNEL, "callfuncsingle%d", cpu);
168 rc = bind_ipi_to_irqhandler(XEN_CALL_FUNCTION_SINGLE_VECTOR,
169 cpu,
170 xen_call_function_single_interrupt,
171 IRQF_DISABLED|IRQF_PERCPU|IRQF_NOBALANCING,
172 callfunc_name,
173 NULL);
174 if (rc < 0)
175 goto fail;
Konrad Rzeszutek Wilk95476892013-06-04 16:37:44 -0400176 per_cpu(xen_callfuncsingle_irq, cpu).irq = rc;
Jens Axboe3b16cf82008-06-26 11:21:54 +0200177
Konrad Rzeszutek Wilk27d8b202013-04-16 14:37:04 -0400178 /*
179 * The IRQ worker on PVHVM goes through the native path and uses the
180 * IPI mechanism.
181 */
182 if (xen_hvm_domain())
183 return 0;
184
Lin Ming1ff2b0c2012-04-21 00:11:05 +0800185 callfunc_name = kasprintf(GFP_KERNEL, "irqwork%d", cpu);
186 rc = bind_ipi_to_irqhandler(XEN_IRQ_WORK_VECTOR,
187 cpu,
188 xen_irq_work_interrupt,
189 IRQF_DISABLED|IRQF_PERCPU|IRQF_NOBALANCING,
190 callfunc_name,
191 NULL);
192 if (rc < 0)
193 goto fail;
Konrad Rzeszutek Wilk95476892013-06-04 16:37:44 -0400194 per_cpu(xen_irq_work, cpu).irq = rc;
Lin Ming1ff2b0c2012-04-21 00:11:05 +0800195
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700196 return 0;
197
198 fail:
Konrad Rzeszutek Wilk53b94fd2013-06-04 16:31:34 -0400199 xen_smp_intr_free(cpu);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700200 return rc;
201}
202
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700203static void __init xen_fill_possible_map(void)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700204{
205 int i, rc;
206
Stefano Stabelliniea5b8f72010-10-26 17:28:33 +0100207 if (xen_initial_domain())
208 return;
209
Mike Travise7986732008-12-16 17:33:52 -0800210 for (i = 0; i < nr_cpu_ids; i++) {
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700211 rc = HYPERVISOR_vcpu_op(VCPUOP_is_up, i, NULL);
Jeremy Fitzhardinge4560a292008-07-08 15:06:56 -0700212 if (rc >= 0) {
213 num_processors++;
Rusty Russell4f062892009-03-13 14:49:54 +1030214 set_cpu_possible(i, true);
Jeremy Fitzhardinge4560a292008-07-08 15:06:56 -0700215 }
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700216 }
217}
218
Stefano Stabelliniea5b8f72010-10-26 17:28:33 +0100219static void __init xen_filter_cpu_maps(void)
220{
221 int i, rc;
Konrad Rzeszutek Wilkcf405ae2012-04-26 13:50:03 -0400222 unsigned int subtract = 0;
Stefano Stabelliniea5b8f72010-10-26 17:28:33 +0100223
224 if (!xen_initial_domain())
225 return;
226
Stefano Stabellini801fd142010-09-23 12:06:25 +0100227 num_processors = 0;
228 disabled_cpus = 0;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700229 for (i = 0; i < nr_cpu_ids; i++) {
230 rc = HYPERVISOR_vcpu_op(VCPUOP_is_up, i, NULL);
231 if (rc >= 0) {
232 num_processors++;
233 set_cpu_possible(i, true);
Stefano Stabellini801fd142010-09-23 12:06:25 +0100234 } else {
235 set_cpu_possible(i, false);
236 set_cpu_present(i, false);
Konrad Rzeszutek Wilkcf405ae2012-04-26 13:50:03 -0400237 subtract++;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700238 }
239 }
Konrad Rzeszutek Wilkcf405ae2012-04-26 13:50:03 -0400240#ifdef CONFIG_HOTPLUG_CPU
241 /* This is akin to using 'nr_cpus' on the Linux command line.
242 * Which is OK as when we use 'dom0_max_vcpus=X' we can only
243 * have up to X, while nr_cpu_ids is greater than X. This
244 * normally is not a problem, except when CPU hotplugging
245 * is involved and then there might be more than X CPUs
246 * in the guest - which will not work as there is no
247 * hypercall to expand the max number of VCPUs an already
248 * running guest has. So cap it up to X. */
249 if (subtract)
250 nr_cpu_ids = nr_cpu_ids - subtract;
251#endif
252
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700253}
254
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700255static void __init xen_smp_prepare_boot_cpu(void)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700256{
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700257 BUG_ON(smp_processor_id() != 0);
258 native_smp_prepare_boot_cpu();
259
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700260 /* We've switched to the "real" per-cpu gdt, so make sure the
261 old memory can be recycled */
Jeremy Fitzhardinge38341432009-02-02 13:55:31 -0800262 make_lowmem_page_readwrite(xen_initial_gdt);
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700263
Stefano Stabelliniea5b8f72010-10-26 17:28:33 +0100264 xen_filter_cpu_maps();
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700265 xen_setup_vcpu_info_placement();
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700266}
267
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700268static void __init xen_smp_prepare_cpus(unsigned int max_cpus)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700269{
270 unsigned cpu;
Andrew Jones900cba82009-12-18 10:31:31 +0100271 unsigned int i;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700272
Konrad Rzeszutek Wilked467e62011-09-01 09:48:27 -0400273 if (skip_ioapic_setup) {
274 char *m = (max_cpus == 0) ?
275 "The nosmp parameter is incompatible with Xen; " \
276 "use Xen dom0_max_vcpus=1 parameter" :
277 "The noapic parameter is incompatible with Xen";
278
279 xen_raw_printk(m);
280 panic(m);
281 }
Jeremy Fitzhardinge2d9e1e22008-07-07 12:07:53 -0700282 xen_init_lock_cpu(0);
283
Konrad Rzeszutek Wilk06d0b5d2012-12-17 20:29:32 -0500284 smp_store_boot_cpu_info();
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700285 cpu_data(0).x86_max_cores = 1;
Andrew Jones900cba82009-12-18 10:31:31 +0100286
287 for_each_possible_cpu(i) {
288 zalloc_cpumask_var(&per_cpu(cpu_sibling_map, i), GFP_KERNEL);
289 zalloc_cpumask_var(&per_cpu(cpu_core_map, i), GFP_KERNEL);
290 zalloc_cpumask_var(&per_cpu(cpu_llc_shared_map, i), GFP_KERNEL);
291 }
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700292 set_cpu_sibling_map(0);
293
294 if (xen_smp_intr_init(0))
295 BUG();
296
Mike Travisb78936e2008-12-16 17:33:57 -0800297 if (!alloc_cpumask_var(&xen_cpu_initialized_map, GFP_KERNEL))
298 panic("could not allocate xen_cpu_initialized_map\n");
299
300 cpumask_copy(xen_cpu_initialized_map, cpumask_of(0));
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700301
302 /* Restrict the possible_map according to max_cpus. */
303 while ((num_possible_cpus() > 1) && (num_possible_cpus() > max_cpus)) {
Mike Travise7986732008-12-16 17:33:52 -0800304 for (cpu = nr_cpu_ids - 1; !cpu_possible(cpu); cpu--)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700305 continue;
Rusty Russell4f062892009-03-13 14:49:54 +1030306 set_cpu_possible(cpu, false);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700307 }
308
Thomas Gleixner7eb43a62012-04-20 13:05:48 +0000309 for_each_possible_cpu(cpu)
Rusty Russell4f062892009-03-13 14:49:54 +1030310 set_cpu_present(cpu, true);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700311}
312
Daniel Kiperb53cede2011-05-04 20:18:05 +0200313static int __cpuinit
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700314cpu_initialize_context(unsigned int cpu, struct task_struct *idle)
315{
316 struct vcpu_guest_context *ctxt;
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700317 struct desc_struct *gdt;
Jeremy Fitzhardinge9976b392009-02-27 09:19:26 -0800318 unsigned long gdt_mfn;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700319
Mike Travisb78936e2008-12-16 17:33:57 -0800320 if (cpumask_test_and_set_cpu(cpu, xen_cpu_initialized_map))
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700321 return 0;
322
323 ctxt = kzalloc(sizeof(*ctxt), GFP_KERNEL);
324 if (ctxt == NULL)
325 return -ENOMEM;
326
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700327 gdt = get_cpu_gdt_table(cpu);
328
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700329 ctxt->flags = VGCF_IN_KERNEL;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700330 ctxt->user_regs.ss = __KERNEL_DS;
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700331#ifdef CONFIG_X86_32
332 ctxt->user_regs.fs = __KERNEL_PERCPU;
Jeremy Fitzhardinge577eebe2009-08-27 12:46:35 -0700333 ctxt->user_regs.gs = __KERNEL_STACK_CANARY;
Jeremy Fitzhardinge795f99b2009-01-30 17:47:54 +0900334#else
335 ctxt->gs_base_kernel = per_cpu_offset(cpu);
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700336#endif
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700337 ctxt->user_regs.eip = (unsigned long)cpu_bringup_and_idle;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700338
339 memset(&ctxt->fpu_ctxt, 0, sizeof(ctxt->fpu_ctxt));
340
Konrad Rzeszutek Wilkdacd45f2012-10-22 11:35:16 -0400341 {
342 ctxt->user_regs.eflags = 0x1000; /* IOPL_RING1 */
343 ctxt->user_regs.ds = __USER_DS;
344 ctxt->user_regs.es = __USER_DS;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700345
Konrad Rzeszutek Wilkdacd45f2012-10-22 11:35:16 -0400346 xen_copy_trap_info(ctxt->trap_ctxt);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700347
Konrad Rzeszutek Wilkdacd45f2012-10-22 11:35:16 -0400348 ctxt->ldt_ents = 0;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700349
Konrad Rzeszutek Wilkdacd45f2012-10-22 11:35:16 -0400350 BUG_ON((unsigned long)gdt & ~PAGE_MASK);
Jeremy Fitzhardinge9976b392009-02-27 09:19:26 -0800351
Konrad Rzeszutek Wilkdacd45f2012-10-22 11:35:16 -0400352 gdt_mfn = arbitrary_virt_to_mfn(gdt);
353 make_lowmem_page_readonly(gdt);
354 make_lowmem_page_readonly(mfn_to_virt(gdt_mfn));
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700355
Konrad Rzeszutek Wilkdacd45f2012-10-22 11:35:16 -0400356 ctxt->gdt_frames[0] = gdt_mfn;
357 ctxt->gdt_ents = GDT_ENTRIES;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700358
Konrad Rzeszutek Wilkdacd45f2012-10-22 11:35:16 -0400359 ctxt->kernel_ss = __KERNEL_DS;
360 ctxt->kernel_sp = idle->thread.sp0;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700361
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700362#ifdef CONFIG_X86_32
Konrad Rzeszutek Wilkdacd45f2012-10-22 11:35:16 -0400363 ctxt->event_callback_cs = __KERNEL_CS;
364 ctxt->failsafe_callback_cs = __KERNEL_CS;
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700365#endif
Konrad Rzeszutek Wilkdacd45f2012-10-22 11:35:16 -0400366 ctxt->event_callback_eip =
367 (unsigned long)xen_hypervisor_callback;
368 ctxt->failsafe_callback_eip =
369 (unsigned long)xen_failsafe_callback;
370 }
371 ctxt->user_regs.cs = __KERNEL_CS;
372 ctxt->user_regs.esp = idle->thread.sp0 - sizeof(struct pt_regs);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700373
374 per_cpu(xen_cr3, cpu) = __pa(swapper_pg_dir);
375 ctxt->ctrlreg[3] = xen_pfn_to_cr3(virt_to_mfn(swapper_pg_dir));
376
377 if (HYPERVISOR_vcpu_op(VCPUOP_initialise, cpu, ctxt))
378 BUG();
379
380 kfree(ctxt);
381 return 0;
382}
383
Thomas Gleixner7eb43a62012-04-20 13:05:48 +0000384static int __cpuinit xen_cpu_up(unsigned int cpu, struct task_struct *idle)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700385{
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700386 int rc;
387
Brian Gerstc6f5e0a2009-01-19 00:38:58 +0900388 per_cpu(current_task, cpu) = idle;
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700389#ifdef CONFIG_X86_32
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700390 irq_ctx_init(cpu);
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700391#else
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700392 clear_tsk_thread_flag(idle, TIF_FORK);
Jeremy Fitzhardinge38341432009-02-02 13:55:31 -0800393 per_cpu(kernel_stack, cpu) =
394 (unsigned long)task_stack_page(idle) -
395 KERNEL_STACK_OFFSET + THREAD_SIZE;
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700396#endif
Ian Campbell02889672009-11-24 09:32:48 -0800397 xen_setup_runstate_info(cpu);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700398 xen_setup_timer(cpu);
Jeremy Fitzhardinge2d9e1e22008-07-07 12:07:53 -0700399 xen_init_lock_cpu(cpu);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700400
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700401 per_cpu(cpu_state, cpu) = CPU_UP_PREPARE;
402
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700403 /* make sure interrupts start blocked */
404 per_cpu(xen_vcpu, cpu)->evtchn_upcall_mask = 1;
405
406 rc = cpu_initialize_context(cpu, idle);
407 if (rc)
408 return rc;
409
410 if (num_online_cpus() == 1)
Rusty Russell816afe42012-08-06 17:29:49 +0930411 /* Just in case we booted with a single CPU. */
412 alternatives_enable_smp();
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700413
414 rc = xen_smp_intr_init(cpu);
415 if (rc)
416 return rc;
417
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700418 rc = HYPERVISOR_vcpu_op(VCPUOP_up, cpu, NULL);
419 BUG_ON(rc);
420
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700421 while(per_cpu(cpu_state, cpu) != CPU_ONLINE) {
Hannes Eder1207cf8e2009-03-05 20:13:57 +0100422 HYPERVISOR_sched_op(SCHEDOP_yield, NULL);
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700423 barrier();
424 }
425
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700426 return 0;
427}
428
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700429static void xen_smp_cpus_done(unsigned int max_cpus)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700430{
431}
432
Alex Nixon27371462008-09-08 13:43:33 +0100433#ifdef CONFIG_HOTPLUG_CPU
Alex Nixon26fd1052008-09-08 13:43:34 +0100434static int xen_cpu_disable(void)
Alex Nixond68d82a2008-08-22 11:52:15 +0100435{
436 unsigned int cpu = smp_processor_id();
437 if (cpu == 0)
438 return -EBUSY;
439
440 cpu_disable_common();
441
442 load_cr3(swapper_pg_dir);
443 return 0;
444}
445
Alex Nixon26fd1052008-09-08 13:43:34 +0100446static void xen_cpu_die(unsigned int cpu)
Alex Nixond68d82a2008-08-22 11:52:15 +0100447{
Konrad Rzeszutek Wilkb12abaa2013-04-08 20:56:35 -0400448 while (xen_pv_domain() && HYPERVISOR_vcpu_op(VCPUOP_is_up, cpu, NULL)) {
Alex Nixond68d82a2008-08-22 11:52:15 +0100449 current->state = TASK_UNINTERRUPTIBLE;
450 schedule_timeout(HZ/10);
451 }
Konrad Rzeszutek Wilk53b94fd2013-06-04 16:31:34 -0400452 xen_smp_intr_free(cpu);
Alex Nixond68d82a2008-08-22 11:52:15 +0100453 xen_uninit_lock_cpu(cpu);
454 xen_teardown_timer(cpu);
Alex Nixond68d82a2008-08-22 11:52:15 +0100455}
456
Robert P. J. Day71709242009-12-28 11:50:29 -0500457static void __cpuinit xen_play_dead(void) /* used only with HOTPLUG_CPU */
Alex Nixond68d82a2008-08-22 11:52:15 +0100458{
459 play_dead_common();
460 HYPERVISOR_vcpu_op(VCPUOP_down, smp_processor_id(), NULL);
461 cpu_bringup();
462}
463
Alex Nixon27371462008-09-08 13:43:33 +0100464#else /* !CONFIG_HOTPLUG_CPU */
Alex Nixon26fd1052008-09-08 13:43:34 +0100465static int xen_cpu_disable(void)
Alex Nixon27371462008-09-08 13:43:33 +0100466{
467 return -ENOSYS;
468}
469
Alex Nixon26fd1052008-09-08 13:43:34 +0100470static void xen_cpu_die(unsigned int cpu)
Alex Nixon27371462008-09-08 13:43:33 +0100471{
472 BUG();
473}
474
Alex Nixon26fd1052008-09-08 13:43:34 +0100475static void xen_play_dead(void)
Alex Nixon27371462008-09-08 13:43:33 +0100476{
477 BUG();
478}
479
480#endif
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700481static void stop_self(void *v)
482{
483 int cpu = smp_processor_id();
484
485 /* make sure we're not pinning something down */
486 load_cr3(swapper_pg_dir);
487 /* should set up a minimal gdt */
488
Ian Campbell086748e2010-08-03 14:55:14 -0700489 set_cpu_online(cpu, false);
490
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700491 HYPERVISOR_vcpu_op(VCPUOP_down, cpu, NULL);
492 BUG();
493}
494
Alok Kataria76fac072010-10-11 14:37:08 -0700495static void xen_stop_other_cpus(int wait)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700496{
Alok Kataria76fac072010-10-11 14:37:08 -0700497 smp_call_function(stop_self, NULL, wait);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700498}
499
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700500static void xen_smp_send_reschedule(int cpu)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700501{
502 xen_send_IPI_one(cpu, XEN_RESCHEDULE_VECTOR);
503}
504
Ben Guthrof447d562012-04-21 00:11:04 +0800505static void __xen_send_IPI_mask(const struct cpumask *mask,
506 int vector)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700507{
508 unsigned cpu;
509
Mike Travisbcda0162008-12-16 17:33:59 -0800510 for_each_cpu_and(cpu, mask, cpu_online_mask)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700511 xen_send_IPI_one(cpu, vector);
512}
513
Mike Travisbcda0162008-12-16 17:33:59 -0800514static void xen_smp_send_call_function_ipi(const struct cpumask *mask)
Jens Axboe3b16cf82008-06-26 11:21:54 +0200515{
516 int cpu;
517
Ben Guthrof447d562012-04-21 00:11:04 +0800518 __xen_send_IPI_mask(mask, XEN_CALL_FUNCTION_VECTOR);
Jens Axboe3b16cf82008-06-26 11:21:54 +0200519
520 /* Make sure other vcpus get a chance to run if they need to. */
Mike Travisbcda0162008-12-16 17:33:59 -0800521 for_each_cpu(cpu, mask) {
Jens Axboe3b16cf82008-06-26 11:21:54 +0200522 if (xen_vcpu_stolen(cpu)) {
Hannes Eder1207cf8e2009-03-05 20:13:57 +0100523 HYPERVISOR_sched_op(SCHEDOP_yield, NULL);
Jens Axboe3b16cf82008-06-26 11:21:54 +0200524 break;
525 }
526 }
527}
528
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700529static void xen_smp_send_call_function_single_ipi(int cpu)
Jens Axboe3b16cf82008-06-26 11:21:54 +0200530{
Ben Guthrof447d562012-04-21 00:11:04 +0800531 __xen_send_IPI_mask(cpumask_of(cpu),
Mike Travise7986732008-12-16 17:33:52 -0800532 XEN_CALL_FUNCTION_SINGLE_VECTOR);
Jens Axboe3b16cf82008-06-26 11:21:54 +0200533}
534
Ben Guthrof447d562012-04-21 00:11:04 +0800535static inline int xen_map_vector(int vector)
536{
537 int xen_vector;
538
539 switch (vector) {
540 case RESCHEDULE_VECTOR:
541 xen_vector = XEN_RESCHEDULE_VECTOR;
542 break;
543 case CALL_FUNCTION_VECTOR:
544 xen_vector = XEN_CALL_FUNCTION_VECTOR;
545 break;
546 case CALL_FUNCTION_SINGLE_VECTOR:
547 xen_vector = XEN_CALL_FUNCTION_SINGLE_VECTOR;
548 break;
Lin Ming1ff2b0c2012-04-21 00:11:05 +0800549 case IRQ_WORK_VECTOR:
550 xen_vector = XEN_IRQ_WORK_VECTOR;
551 break;
Ben Guthrof447d562012-04-21 00:11:04 +0800552 default:
553 xen_vector = -1;
554 printk(KERN_ERR "xen: vector 0x%x is not implemented\n",
555 vector);
556 }
557
558 return xen_vector;
559}
560
561void xen_send_IPI_mask(const struct cpumask *mask,
562 int vector)
563{
564 int xen_vector = xen_map_vector(vector);
565
566 if (xen_vector >= 0)
567 __xen_send_IPI_mask(mask, xen_vector);
568}
569
570void xen_send_IPI_all(int vector)
571{
572 int xen_vector = xen_map_vector(vector);
573
574 if (xen_vector >= 0)
575 __xen_send_IPI_mask(cpu_online_mask, xen_vector);
576}
577
578void xen_send_IPI_self(int vector)
579{
580 int xen_vector = xen_map_vector(vector);
581
582 if (xen_vector >= 0)
583 xen_send_IPI_one(smp_processor_id(), xen_vector);
584}
585
586void xen_send_IPI_mask_allbutself(const struct cpumask *mask,
587 int vector)
588{
589 unsigned cpu;
590 unsigned int this_cpu = smp_processor_id();
Stefan Bader1db01b42013-05-08 16:37:35 +0200591 int xen_vector = xen_map_vector(vector);
Ben Guthrof447d562012-04-21 00:11:04 +0800592
Stefan Bader1db01b42013-05-08 16:37:35 +0200593 if (!(num_online_cpus() > 1) || (xen_vector < 0))
Ben Guthrof447d562012-04-21 00:11:04 +0800594 return;
595
596 for_each_cpu_and(cpu, mask, cpu_online_mask) {
597 if (this_cpu == cpu)
598 continue;
599
Stefan Bader1db01b42013-05-08 16:37:35 +0200600 xen_send_IPI_one(cpu, xen_vector);
Ben Guthrof447d562012-04-21 00:11:04 +0800601 }
602}
603
604void xen_send_IPI_allbutself(int vector)
605{
Stefan Bader1db01b42013-05-08 16:37:35 +0200606 xen_send_IPI_mask_allbutself(cpu_online_mask, vector);
Ben Guthrof447d562012-04-21 00:11:04 +0800607}
608
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700609static irqreturn_t xen_call_function_interrupt(int irq, void *dev_id)
610{
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700611 irq_enter();
Jens Axboe3b16cf82008-06-26 11:21:54 +0200612 generic_smp_call_function_interrupt();
Brian Gerst1b437c82009-01-19 00:38:57 +0900613 inc_irq_stat(irq_call_count);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700614 irq_exit();
615
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700616 return IRQ_HANDLED;
617}
618
Jens Axboe3b16cf82008-06-26 11:21:54 +0200619static irqreturn_t xen_call_function_single_interrupt(int irq, void *dev_id)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700620{
Jens Axboe3b16cf82008-06-26 11:21:54 +0200621 irq_enter();
622 generic_smp_call_function_single_interrupt();
Brian Gerst1b437c82009-01-19 00:38:57 +0900623 inc_irq_stat(irq_call_count);
Jens Axboe3b16cf82008-06-26 11:21:54 +0200624 irq_exit();
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700625
Jens Axboe3b16cf82008-06-26 11:21:54 +0200626 return IRQ_HANDLED;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700627}
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700628
Lin Ming1ff2b0c2012-04-21 00:11:05 +0800629static irqreturn_t xen_irq_work_interrupt(int irq, void *dev_id)
630{
631 irq_enter();
632 irq_work_run();
633 inc_irq_stat(apic_irq_work_irqs);
634 irq_exit();
635
636 return IRQ_HANDLED;
637}
638
Daniel Kiperb53cede2011-05-04 20:18:05 +0200639static const struct smp_ops xen_smp_ops __initconst = {
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700640 .smp_prepare_boot_cpu = xen_smp_prepare_boot_cpu,
641 .smp_prepare_cpus = xen_smp_prepare_cpus,
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700642 .smp_cpus_done = xen_smp_cpus_done,
643
Alex Nixond68d82a2008-08-22 11:52:15 +0100644 .cpu_up = xen_cpu_up,
645 .cpu_die = xen_cpu_die,
646 .cpu_disable = xen_cpu_disable,
647 .play_dead = xen_play_dead,
648
Alok Kataria76fac072010-10-11 14:37:08 -0700649 .stop_other_cpus = xen_stop_other_cpus,
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700650 .smp_send_reschedule = xen_smp_send_reschedule,
651
652 .send_call_func_ipi = xen_smp_send_call_function_ipi,
653 .send_call_func_single_ipi = xen_smp_send_call_function_single_ipi,
654};
655
656void __init xen_smp_init(void)
657{
658 smp_ops = xen_smp_ops;
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700659 xen_fill_possible_map();
Jeremy Fitzhardinge2d9e1e22008-07-07 12:07:53 -0700660 xen_init_spinlocks();
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700661}
Stefano Stabellini99bbb3a2010-12-02 17:55:10 +0000662
663static void __init xen_hvm_smp_prepare_cpus(unsigned int max_cpus)
664{
665 native_smp_prepare_cpus(max_cpus);
666 WARN_ON(xen_smp_intr_init(0));
667
Stefano Stabellini99bbb3a2010-12-02 17:55:10 +0000668 xen_init_lock_cpu(0);
Stefano Stabellini99bbb3a2010-12-02 17:55:10 +0000669}
670
Thomas Gleixner5cdaf182012-04-20 13:05:47 +0000671static int __cpuinit xen_hvm_cpu_up(unsigned int cpu, struct task_struct *tidle)
Stefano Stabellini99bbb3a2010-12-02 17:55:10 +0000672{
673 int rc;
Thomas Gleixner5cdaf182012-04-20 13:05:47 +0000674 rc = native_cpu_up(cpu, tidle);
Stefano Stabellini99bbb3a2010-12-02 17:55:10 +0000675 WARN_ON (xen_smp_intr_init(cpu));
676 return rc;
677}
678
679static void xen_hvm_cpu_die(unsigned int cpu)
680{
Konrad Rzeszutek Wilkb12abaa2013-04-08 20:56:35 -0400681 xen_cpu_die(cpu);
Stefano Stabellini99bbb3a2010-12-02 17:55:10 +0000682 native_cpu_die(cpu);
683}
684
685void __init xen_hvm_smp_init(void)
686{
Stefano Stabellini3c05c4b2011-08-17 15:15:00 +0200687 if (!xen_have_vector_callback)
688 return;
Stefano Stabellini99bbb3a2010-12-02 17:55:10 +0000689 smp_ops.smp_prepare_cpus = xen_hvm_smp_prepare_cpus;
690 smp_ops.smp_send_reschedule = xen_smp_send_reschedule;
691 smp_ops.cpu_up = xen_hvm_cpu_up;
692 smp_ops.cpu_die = xen_hvm_cpu_die;
693 smp_ops.send_call_func_ipi = xen_smp_send_call_function_ipi;
694 smp_ops.send_call_func_single_ipi = xen_smp_send_call_function_single_ipi;
695}