blob: d99cae8147d1243b84faa111bcd74b447e5ff7ec [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>
Konrad Rzeszutek Wilk466318a2013-06-03 10:33:55 -040020#include <linux/tick.h>
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070021
22#include <asm/paravirt.h>
23#include <asm/desc.h>
24#include <asm/pgtable.h>
25#include <asm/cpu.h>
26
27#include <xen/interface/xen.h>
28#include <xen/interface/vcpu.h>
29
30#include <asm/xen/interface.h>
31#include <asm/xen/hypercall.h>
32
Stefano Stabelliniea5b8f72010-10-26 17:28:33 +010033#include <xen/xen.h>
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070034#include <xen/page.h>
35#include <xen/events.h>
36
Konrad Rzeszutek Wilked467e62011-09-01 09:48:27 -040037#include <xen/hvc-console.h>
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070038#include "xen-ops.h"
39#include "mmu.h"
40
Mike Travisb78936e2008-12-16 17:33:57 -080041cpumask_var_t xen_cpu_initialized_map;
Jens Axboe3b16cf82008-06-26 11:21:54 +020042
Tejun Heoc6e22f92009-10-29 22:34:13 +090043static DEFINE_PER_CPU(int, xen_resched_irq);
44static DEFINE_PER_CPU(int, xen_callfunc_irq);
45static DEFINE_PER_CPU(int, xen_callfuncsingle_irq);
Lin Ming1ff2b0c2012-04-21 00:11:05 +080046static DEFINE_PER_CPU(int, xen_irq_work);
Tejun Heoc6e22f92009-10-29 22:34:13 +090047static DEFINE_PER_CPU(int, xen_debug_irq) = -1;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070048
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070049static irqreturn_t xen_call_function_interrupt(int irq, void *dev_id);
Jens Axboe3b16cf82008-06-26 11:21:54 +020050static irqreturn_t xen_call_function_single_interrupt(int irq, void *dev_id);
Lin Ming1ff2b0c2012-04-21 00:11:05 +080051static irqreturn_t xen_irq_work_interrupt(int irq, void *dev_id);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070052
53/*
Peter Zijlstra184748c2011-04-05 17:23:39 +020054 * Reschedule call back.
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070055 */
56static irqreturn_t xen_reschedule_interrupt(int irq, void *dev_id)
57{
Brian Gerst1b437c82009-01-19 00:38:57 +090058 inc_irq_stat(irq_resched_count);
Peter Zijlstra184748c2011-04-05 17:23:39 +020059 scheduler_ipi();
Jeremy Fitzhardinge38bb5ab2008-05-26 23:31:16 +010060
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070061 return IRQ_HANDLED;
62}
63
Daniel Kiperb53cede2011-05-04 20:18:05 +020064static void __cpuinit cpu_bringup(void)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070065{
Srivatsa S. Bhate8c9e782012-03-22 18:29:24 +053066 int cpu;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070067
68 cpu_init();
Alex Nixond68d82a2008-08-22 11:52:15 +010069 touch_softlockup_watchdog();
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -070070 preempt_disable();
71
Jeremy Fitzhardingee2a81ba2008-03-17 16:37:17 -070072 xen_enable_sysenter();
Jeremy Fitzhardinge6fcac6d2008-07-08 15:07:14 -070073 xen_enable_syscall();
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070074
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -070075 cpu = smp_processor_id();
76 smp_store_cpu_info(cpu);
77 cpu_data(cpu).x86_max_cores = 1;
78 set_cpu_sibling_map(cpu);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070079
80 xen_setup_cpu_clockevents();
81
Konrad Rzeszutek Wilk106b4432012-03-21 13:03:45 -040082 notify_cpu_starting(cpu);
83
Rusty Russelld7d37562009-11-03 14:58:38 +103084 set_cpu_online(cpu, true);
Konrad Rzeszutek Wilk106b4432012-03-21 13:03:45 -040085
Alex Shi2113f462012-01-13 23:53:35 +080086 this_cpu_write(cpu_state, CPU_ONLINE);
Konrad Rzeszutek Wilk106b4432012-03-21 13:03:45 -040087
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -070088 wmb();
89
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070090 /* We can take interrupts now: we're officially "up". */
91 local_irq_enable();
92
93 wmb(); /* make sure everything is out */
Alex Nixond68d82a2008-08-22 11:52:15 +010094}
95
Daniel Kiperb53cede2011-05-04 20:18:05 +020096static void __cpuinit cpu_bringup_and_idle(void)
Alex Nixond68d82a2008-08-22 11:52:15 +010097{
98 cpu_bringup();
Thomas Gleixner7d1a9412013-03-21 22:50:03 +010099 cpu_startup_entry(CPUHP_ONLINE);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700100}
101
102static int xen_smp_intr_init(unsigned int cpu)
103{
104 int rc;
Jeremy Fitzhardingeee523ca2008-03-17 16:37:18 -0700105 const char *resched_name, *callfunc_name, *debug_name;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700106
107 resched_name = kasprintf(GFP_KERNEL, "resched%d", cpu);
108 rc = bind_ipi_to_irqhandler(XEN_RESCHEDULE_VECTOR,
109 cpu,
110 xen_reschedule_interrupt,
111 IRQF_DISABLED|IRQF_PERCPU|IRQF_NOBALANCING,
112 resched_name,
113 NULL);
114 if (rc < 0)
115 goto fail;
Tejun Heoc6e22f92009-10-29 22:34:13 +0900116 per_cpu(xen_resched_irq, cpu) = rc;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700117
118 callfunc_name = kasprintf(GFP_KERNEL, "callfunc%d", cpu);
119 rc = bind_ipi_to_irqhandler(XEN_CALL_FUNCTION_VECTOR,
120 cpu,
121 xen_call_function_interrupt,
122 IRQF_DISABLED|IRQF_PERCPU|IRQF_NOBALANCING,
123 callfunc_name,
124 NULL);
125 if (rc < 0)
126 goto fail;
Tejun Heoc6e22f92009-10-29 22:34:13 +0900127 per_cpu(xen_callfunc_irq, cpu) = rc;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700128
Jeremy Fitzhardingeee523ca2008-03-17 16:37:18 -0700129 debug_name = kasprintf(GFP_KERNEL, "debug%d", cpu);
130 rc = bind_virq_to_irqhandler(VIRQ_DEBUG, cpu, xen_debug_interrupt,
131 IRQF_DISABLED | IRQF_PERCPU | IRQF_NOBALANCING,
132 debug_name, NULL);
133 if (rc < 0)
134 goto fail;
Tejun Heoc6e22f92009-10-29 22:34:13 +0900135 per_cpu(xen_debug_irq, cpu) = rc;
Jeremy Fitzhardingeee523ca2008-03-17 16:37:18 -0700136
Jens Axboe3b16cf82008-06-26 11:21:54 +0200137 callfunc_name = kasprintf(GFP_KERNEL, "callfuncsingle%d", cpu);
138 rc = bind_ipi_to_irqhandler(XEN_CALL_FUNCTION_SINGLE_VECTOR,
139 cpu,
140 xen_call_function_single_interrupt,
141 IRQF_DISABLED|IRQF_PERCPU|IRQF_NOBALANCING,
142 callfunc_name,
143 NULL);
144 if (rc < 0)
145 goto fail;
Tejun Heoc6e22f92009-10-29 22:34:13 +0900146 per_cpu(xen_callfuncsingle_irq, cpu) = rc;
Jens Axboe3b16cf82008-06-26 11:21:54 +0200147
Konrad Rzeszutek Wilk27d8b202013-04-16 14:37:04 -0400148 /*
149 * The IRQ worker on PVHVM goes through the native path and uses the
150 * IPI mechanism.
151 */
152 if (xen_hvm_domain())
153 return 0;
154
Lin Ming1ff2b0c2012-04-21 00:11:05 +0800155 callfunc_name = kasprintf(GFP_KERNEL, "irqwork%d", cpu);
156 rc = bind_ipi_to_irqhandler(XEN_IRQ_WORK_VECTOR,
157 cpu,
158 xen_irq_work_interrupt,
159 IRQF_DISABLED|IRQF_PERCPU|IRQF_NOBALANCING,
160 callfunc_name,
161 NULL);
162 if (rc < 0)
163 goto fail;
164 per_cpu(xen_irq_work, cpu) = rc;
165
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700166 return 0;
167
168 fail:
Tejun Heoc6e22f92009-10-29 22:34:13 +0900169 if (per_cpu(xen_resched_irq, cpu) >= 0)
170 unbind_from_irqhandler(per_cpu(xen_resched_irq, cpu), NULL);
171 if (per_cpu(xen_callfunc_irq, cpu) >= 0)
172 unbind_from_irqhandler(per_cpu(xen_callfunc_irq, cpu), NULL);
173 if (per_cpu(xen_debug_irq, cpu) >= 0)
174 unbind_from_irqhandler(per_cpu(xen_debug_irq, cpu), NULL);
175 if (per_cpu(xen_callfuncsingle_irq, cpu) >= 0)
176 unbind_from_irqhandler(per_cpu(xen_callfuncsingle_irq, cpu),
177 NULL);
Konrad Rzeszutek Wilk27d8b202013-04-16 14:37:04 -0400178 if (xen_hvm_domain())
179 return rc;
180
Lin Ming1ff2b0c2012-04-21 00:11:05 +0800181 if (per_cpu(xen_irq_work, cpu) >= 0)
182 unbind_from_irqhandler(per_cpu(xen_irq_work, cpu), NULL);
Jens Axboe3b16cf82008-06-26 11:21:54 +0200183
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700184 return rc;
185}
186
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700187static void __init xen_fill_possible_map(void)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700188{
189 int i, rc;
190
Stefano Stabelliniea5b8f72010-10-26 17:28:33 +0100191 if (xen_initial_domain())
192 return;
193
Mike Travise7986732008-12-16 17:33:52 -0800194 for (i = 0; i < nr_cpu_ids; i++) {
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700195 rc = HYPERVISOR_vcpu_op(VCPUOP_is_up, i, NULL);
Jeremy Fitzhardinge4560a292008-07-08 15:06:56 -0700196 if (rc >= 0) {
197 num_processors++;
Rusty Russell4f062892009-03-13 14:49:54 +1030198 set_cpu_possible(i, true);
Jeremy Fitzhardinge4560a292008-07-08 15:06:56 -0700199 }
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700200 }
201}
202
Stefano Stabelliniea5b8f72010-10-26 17:28:33 +0100203static void __init xen_filter_cpu_maps(void)
204{
205 int i, rc;
Konrad Rzeszutek Wilkcf405ae2012-04-26 13:50:03 -0400206 unsigned int subtract = 0;
Stefano Stabelliniea5b8f72010-10-26 17:28:33 +0100207
208 if (!xen_initial_domain())
209 return;
210
Stefano Stabellini801fd142010-09-23 12:06:25 +0100211 num_processors = 0;
212 disabled_cpus = 0;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700213 for (i = 0; i < nr_cpu_ids; i++) {
214 rc = HYPERVISOR_vcpu_op(VCPUOP_is_up, i, NULL);
215 if (rc >= 0) {
216 num_processors++;
217 set_cpu_possible(i, true);
Stefano Stabellini801fd142010-09-23 12:06:25 +0100218 } else {
219 set_cpu_possible(i, false);
220 set_cpu_present(i, false);
Konrad Rzeszutek Wilkcf405ae2012-04-26 13:50:03 -0400221 subtract++;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700222 }
223 }
Konrad Rzeszutek Wilkcf405ae2012-04-26 13:50:03 -0400224#ifdef CONFIG_HOTPLUG_CPU
225 /* This is akin to using 'nr_cpus' on the Linux command line.
226 * Which is OK as when we use 'dom0_max_vcpus=X' we can only
227 * have up to X, while nr_cpu_ids is greater than X. This
228 * normally is not a problem, except when CPU hotplugging
229 * is involved and then there might be more than X CPUs
230 * in the guest - which will not work as there is no
231 * hypercall to expand the max number of VCPUs an already
232 * running guest has. So cap it up to X. */
233 if (subtract)
234 nr_cpu_ids = nr_cpu_ids - subtract;
235#endif
236
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700237}
238
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700239static void __init xen_smp_prepare_boot_cpu(void)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700240{
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700241 BUG_ON(smp_processor_id() != 0);
242 native_smp_prepare_boot_cpu();
243
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700244 /* We've switched to the "real" per-cpu gdt, so make sure the
245 old memory can be recycled */
Jeremy Fitzhardinge38341432009-02-02 13:55:31 -0800246 make_lowmem_page_readwrite(xen_initial_gdt);
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700247
Stefano Stabelliniea5b8f72010-10-26 17:28:33 +0100248 xen_filter_cpu_maps();
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700249 xen_setup_vcpu_info_placement();
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700250}
251
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700252static void __init xen_smp_prepare_cpus(unsigned int max_cpus)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700253{
254 unsigned cpu;
Andrew Jones900cba82009-12-18 10:31:31 +0100255 unsigned int i;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700256
Konrad Rzeszutek Wilked467e62011-09-01 09:48:27 -0400257 if (skip_ioapic_setup) {
258 char *m = (max_cpus == 0) ?
259 "The nosmp parameter is incompatible with Xen; " \
260 "use Xen dom0_max_vcpus=1 parameter" :
261 "The noapic parameter is incompatible with Xen";
262
263 xen_raw_printk(m);
264 panic(m);
265 }
Jeremy Fitzhardinge2d9e1e22008-07-07 12:07:53 -0700266 xen_init_lock_cpu(0);
267
Konrad Rzeszutek Wilk06d0b5d2012-12-17 20:29:32 -0500268 smp_store_boot_cpu_info();
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700269 cpu_data(0).x86_max_cores = 1;
Andrew Jones900cba82009-12-18 10:31:31 +0100270
271 for_each_possible_cpu(i) {
272 zalloc_cpumask_var(&per_cpu(cpu_sibling_map, i), GFP_KERNEL);
273 zalloc_cpumask_var(&per_cpu(cpu_core_map, i), GFP_KERNEL);
274 zalloc_cpumask_var(&per_cpu(cpu_llc_shared_map, i), GFP_KERNEL);
275 }
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700276 set_cpu_sibling_map(0);
277
278 if (xen_smp_intr_init(0))
279 BUG();
280
Mike Travisb78936e2008-12-16 17:33:57 -0800281 if (!alloc_cpumask_var(&xen_cpu_initialized_map, GFP_KERNEL))
282 panic("could not allocate xen_cpu_initialized_map\n");
283
284 cpumask_copy(xen_cpu_initialized_map, cpumask_of(0));
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700285
286 /* Restrict the possible_map according to max_cpus. */
287 while ((num_possible_cpus() > 1) && (num_possible_cpus() > max_cpus)) {
Mike Travise7986732008-12-16 17:33:52 -0800288 for (cpu = nr_cpu_ids - 1; !cpu_possible(cpu); cpu--)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700289 continue;
Rusty Russell4f062892009-03-13 14:49:54 +1030290 set_cpu_possible(cpu, false);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700291 }
292
Thomas Gleixner7eb43a62012-04-20 13:05:48 +0000293 for_each_possible_cpu(cpu)
Rusty Russell4f062892009-03-13 14:49:54 +1030294 set_cpu_present(cpu, true);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700295}
296
Daniel Kiperb53cede2011-05-04 20:18:05 +0200297static int __cpuinit
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700298cpu_initialize_context(unsigned int cpu, struct task_struct *idle)
299{
300 struct vcpu_guest_context *ctxt;
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700301 struct desc_struct *gdt;
Jeremy Fitzhardinge9976b392009-02-27 09:19:26 -0800302 unsigned long gdt_mfn;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700303
Mike Travisb78936e2008-12-16 17:33:57 -0800304 if (cpumask_test_and_set_cpu(cpu, xen_cpu_initialized_map))
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700305 return 0;
306
307 ctxt = kzalloc(sizeof(*ctxt), GFP_KERNEL);
308 if (ctxt == NULL)
309 return -ENOMEM;
310
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700311 gdt = get_cpu_gdt_table(cpu);
312
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700313 ctxt->flags = VGCF_IN_KERNEL;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700314 ctxt->user_regs.ss = __KERNEL_DS;
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700315#ifdef CONFIG_X86_32
316 ctxt->user_regs.fs = __KERNEL_PERCPU;
Jeremy Fitzhardinge577eebe2009-08-27 12:46:35 -0700317 ctxt->user_regs.gs = __KERNEL_STACK_CANARY;
Jeremy Fitzhardinge795f99b2009-01-30 17:47:54 +0900318#else
319 ctxt->gs_base_kernel = per_cpu_offset(cpu);
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700320#endif
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700321 ctxt->user_regs.eip = (unsigned long)cpu_bringup_and_idle;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700322
323 memset(&ctxt->fpu_ctxt, 0, sizeof(ctxt->fpu_ctxt));
324
Konrad Rzeszutek Wilkdacd45f2012-10-22 11:35:16 -0400325 {
326 ctxt->user_regs.eflags = 0x1000; /* IOPL_RING1 */
327 ctxt->user_regs.ds = __USER_DS;
328 ctxt->user_regs.es = __USER_DS;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700329
Konrad Rzeszutek Wilkdacd45f2012-10-22 11:35:16 -0400330 xen_copy_trap_info(ctxt->trap_ctxt);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700331
Konrad Rzeszutek Wilkdacd45f2012-10-22 11:35:16 -0400332 ctxt->ldt_ents = 0;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700333
Konrad Rzeszutek Wilkdacd45f2012-10-22 11:35:16 -0400334 BUG_ON((unsigned long)gdt & ~PAGE_MASK);
Jeremy Fitzhardinge9976b392009-02-27 09:19:26 -0800335
Konrad Rzeszutek Wilkdacd45f2012-10-22 11:35:16 -0400336 gdt_mfn = arbitrary_virt_to_mfn(gdt);
337 make_lowmem_page_readonly(gdt);
338 make_lowmem_page_readonly(mfn_to_virt(gdt_mfn));
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700339
Konrad Rzeszutek Wilkdacd45f2012-10-22 11:35:16 -0400340 ctxt->gdt_frames[0] = gdt_mfn;
341 ctxt->gdt_ents = GDT_ENTRIES;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700342
Konrad Rzeszutek Wilkdacd45f2012-10-22 11:35:16 -0400343 ctxt->kernel_ss = __KERNEL_DS;
344 ctxt->kernel_sp = idle->thread.sp0;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700345
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700346#ifdef CONFIG_X86_32
Konrad Rzeszutek Wilkdacd45f2012-10-22 11:35:16 -0400347 ctxt->event_callback_cs = __KERNEL_CS;
348 ctxt->failsafe_callback_cs = __KERNEL_CS;
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700349#endif
Konrad Rzeszutek Wilkdacd45f2012-10-22 11:35:16 -0400350 ctxt->event_callback_eip =
351 (unsigned long)xen_hypervisor_callback;
352 ctxt->failsafe_callback_eip =
353 (unsigned long)xen_failsafe_callback;
354 }
355 ctxt->user_regs.cs = __KERNEL_CS;
356 ctxt->user_regs.esp = idle->thread.sp0 - sizeof(struct pt_regs);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700357
358 per_cpu(xen_cr3, cpu) = __pa(swapper_pg_dir);
359 ctxt->ctrlreg[3] = xen_pfn_to_cr3(virt_to_mfn(swapper_pg_dir));
360
361 if (HYPERVISOR_vcpu_op(VCPUOP_initialise, cpu, ctxt))
362 BUG();
363
364 kfree(ctxt);
365 return 0;
366}
367
Thomas Gleixner7eb43a62012-04-20 13:05:48 +0000368static int __cpuinit xen_cpu_up(unsigned int cpu, struct task_struct *idle)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700369{
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700370 int rc;
371
Brian Gerstc6f5e0a2009-01-19 00:38:58 +0900372 per_cpu(current_task, cpu) = idle;
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700373#ifdef CONFIG_X86_32
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700374 irq_ctx_init(cpu);
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700375#else
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700376 clear_tsk_thread_flag(idle, TIF_FORK);
Jeremy Fitzhardinge38341432009-02-02 13:55:31 -0800377 per_cpu(kernel_stack, cpu) =
378 (unsigned long)task_stack_page(idle) -
379 KERNEL_STACK_OFFSET + THREAD_SIZE;
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700380#endif
Ian Campbell02889672009-11-24 09:32:48 -0800381 xen_setup_runstate_info(cpu);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700382 xen_setup_timer(cpu);
Jeremy Fitzhardinge2d9e1e22008-07-07 12:07:53 -0700383 xen_init_lock_cpu(cpu);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700384
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700385 per_cpu(cpu_state, cpu) = CPU_UP_PREPARE;
386
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700387 /* make sure interrupts start blocked */
388 per_cpu(xen_vcpu, cpu)->evtchn_upcall_mask = 1;
389
390 rc = cpu_initialize_context(cpu, idle);
391 if (rc)
392 return rc;
393
394 if (num_online_cpus() == 1)
Rusty Russell816afe42012-08-06 17:29:49 +0930395 /* Just in case we booted with a single CPU. */
396 alternatives_enable_smp();
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700397
398 rc = xen_smp_intr_init(cpu);
399 if (rc)
400 return rc;
401
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700402 rc = HYPERVISOR_vcpu_op(VCPUOP_up, cpu, NULL);
403 BUG_ON(rc);
404
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700405 while(per_cpu(cpu_state, cpu) != CPU_ONLINE) {
Hannes Eder1207cf8e2009-03-05 20:13:57 +0100406 HYPERVISOR_sched_op(SCHEDOP_yield, NULL);
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700407 barrier();
408 }
409
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700410 return 0;
411}
412
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700413static void xen_smp_cpus_done(unsigned int max_cpus)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700414{
415}
416
Alex Nixon27371462008-09-08 13:43:33 +0100417#ifdef CONFIG_HOTPLUG_CPU
Alex Nixon26fd1052008-09-08 13:43:34 +0100418static int xen_cpu_disable(void)
Alex Nixond68d82a2008-08-22 11:52:15 +0100419{
420 unsigned int cpu = smp_processor_id();
421 if (cpu == 0)
422 return -EBUSY;
423
424 cpu_disable_common();
425
426 load_cr3(swapper_pg_dir);
427 return 0;
428}
429
Alex Nixon26fd1052008-09-08 13:43:34 +0100430static void xen_cpu_die(unsigned int cpu)
Alex Nixond68d82a2008-08-22 11:52:15 +0100431{
Konrad Rzeszutek Wilkb12abaa2013-04-08 20:56:35 -0400432 while (xen_pv_domain() && HYPERVISOR_vcpu_op(VCPUOP_is_up, cpu, NULL)) {
Alex Nixond68d82a2008-08-22 11:52:15 +0100433 current->state = TASK_UNINTERRUPTIBLE;
434 schedule_timeout(HZ/10);
435 }
Tejun Heoc6e22f92009-10-29 22:34:13 +0900436 unbind_from_irqhandler(per_cpu(xen_resched_irq, cpu), NULL);
437 unbind_from_irqhandler(per_cpu(xen_callfunc_irq, cpu), NULL);
438 unbind_from_irqhandler(per_cpu(xen_debug_irq, cpu), NULL);
439 unbind_from_irqhandler(per_cpu(xen_callfuncsingle_irq, cpu), NULL);
Konrad Rzeszutek Wilkb12abaa2013-04-08 20:56:35 -0400440 if (!xen_hvm_domain())
441 unbind_from_irqhandler(per_cpu(xen_irq_work, cpu), NULL);
Alex Nixond68d82a2008-08-22 11:52:15 +0100442 xen_uninit_lock_cpu(cpu);
443 xen_teardown_timer(cpu);
Alex Nixond68d82a2008-08-22 11:52:15 +0100444}
445
Robert P. J. Day71709242009-12-28 11:50:29 -0500446static void __cpuinit xen_play_dead(void) /* used only with HOTPLUG_CPU */
Alex Nixond68d82a2008-08-22 11:52:15 +0100447{
448 play_dead_common();
449 HYPERVISOR_vcpu_op(VCPUOP_down, smp_processor_id(), NULL);
450 cpu_bringup();
Konrad Rzeszutek Wilk466318a2013-06-03 10:33:55 -0400451 /*
452 * commit 4b0c0f294 (tick: Cleanup NOHZ per cpu data on cpu down)
453 * clears certain data that the cpu_idle loop (which called us
454 * and that we return from) expects. The only way to get that
455 * data back is to call:
456 */
457 tick_nohz_idle_enter();
Alex Nixond68d82a2008-08-22 11:52:15 +0100458}
459
Alex Nixon27371462008-09-08 13:43:33 +0100460#else /* !CONFIG_HOTPLUG_CPU */
Alex Nixon26fd1052008-09-08 13:43:34 +0100461static int xen_cpu_disable(void)
Alex Nixon27371462008-09-08 13:43:33 +0100462{
463 return -ENOSYS;
464}
465
Alex Nixon26fd1052008-09-08 13:43:34 +0100466static void xen_cpu_die(unsigned int cpu)
Alex Nixon27371462008-09-08 13:43:33 +0100467{
468 BUG();
469}
470
Alex Nixon26fd1052008-09-08 13:43:34 +0100471static void xen_play_dead(void)
Alex Nixon27371462008-09-08 13:43:33 +0100472{
473 BUG();
474}
475
476#endif
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700477static void stop_self(void *v)
478{
479 int cpu = smp_processor_id();
480
481 /* make sure we're not pinning something down */
482 load_cr3(swapper_pg_dir);
483 /* should set up a minimal gdt */
484
Ian Campbell086748e2010-08-03 14:55:14 -0700485 set_cpu_online(cpu, false);
486
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700487 HYPERVISOR_vcpu_op(VCPUOP_down, cpu, NULL);
488 BUG();
489}
490
Alok Kataria76fac072010-10-11 14:37:08 -0700491static void xen_stop_other_cpus(int wait)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700492{
Alok Kataria76fac072010-10-11 14:37:08 -0700493 smp_call_function(stop_self, NULL, wait);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700494}
495
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700496static void xen_smp_send_reschedule(int cpu)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700497{
498 xen_send_IPI_one(cpu, XEN_RESCHEDULE_VECTOR);
499}
500
Ben Guthrof447d562012-04-21 00:11:04 +0800501static void __xen_send_IPI_mask(const struct cpumask *mask,
502 int vector)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700503{
504 unsigned cpu;
505
Mike Travisbcda0162008-12-16 17:33:59 -0800506 for_each_cpu_and(cpu, mask, cpu_online_mask)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700507 xen_send_IPI_one(cpu, vector);
508}
509
Mike Travisbcda0162008-12-16 17:33:59 -0800510static void xen_smp_send_call_function_ipi(const struct cpumask *mask)
Jens Axboe3b16cf82008-06-26 11:21:54 +0200511{
512 int cpu;
513
Ben Guthrof447d562012-04-21 00:11:04 +0800514 __xen_send_IPI_mask(mask, XEN_CALL_FUNCTION_VECTOR);
Jens Axboe3b16cf82008-06-26 11:21:54 +0200515
516 /* Make sure other vcpus get a chance to run if they need to. */
Mike Travisbcda0162008-12-16 17:33:59 -0800517 for_each_cpu(cpu, mask) {
Jens Axboe3b16cf82008-06-26 11:21:54 +0200518 if (xen_vcpu_stolen(cpu)) {
Hannes Eder1207cf8e2009-03-05 20:13:57 +0100519 HYPERVISOR_sched_op(SCHEDOP_yield, NULL);
Jens Axboe3b16cf82008-06-26 11:21:54 +0200520 break;
521 }
522 }
523}
524
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700525static void xen_smp_send_call_function_single_ipi(int cpu)
Jens Axboe3b16cf82008-06-26 11:21:54 +0200526{
Ben Guthrof447d562012-04-21 00:11:04 +0800527 __xen_send_IPI_mask(cpumask_of(cpu),
Mike Travise7986732008-12-16 17:33:52 -0800528 XEN_CALL_FUNCTION_SINGLE_VECTOR);
Jens Axboe3b16cf82008-06-26 11:21:54 +0200529}
530
Ben Guthrof447d562012-04-21 00:11:04 +0800531static inline int xen_map_vector(int vector)
532{
533 int xen_vector;
534
535 switch (vector) {
536 case RESCHEDULE_VECTOR:
537 xen_vector = XEN_RESCHEDULE_VECTOR;
538 break;
539 case CALL_FUNCTION_VECTOR:
540 xen_vector = XEN_CALL_FUNCTION_VECTOR;
541 break;
542 case CALL_FUNCTION_SINGLE_VECTOR:
543 xen_vector = XEN_CALL_FUNCTION_SINGLE_VECTOR;
544 break;
Lin Ming1ff2b0c2012-04-21 00:11:05 +0800545 case IRQ_WORK_VECTOR:
546 xen_vector = XEN_IRQ_WORK_VECTOR;
547 break;
Ben Guthrof447d562012-04-21 00:11:04 +0800548 default:
549 xen_vector = -1;
550 printk(KERN_ERR "xen: vector 0x%x is not implemented\n",
551 vector);
552 }
553
554 return xen_vector;
555}
556
557void xen_send_IPI_mask(const struct cpumask *mask,
558 int vector)
559{
560 int xen_vector = xen_map_vector(vector);
561
562 if (xen_vector >= 0)
563 __xen_send_IPI_mask(mask, xen_vector);
564}
565
566void xen_send_IPI_all(int vector)
567{
568 int xen_vector = xen_map_vector(vector);
569
570 if (xen_vector >= 0)
571 __xen_send_IPI_mask(cpu_online_mask, xen_vector);
572}
573
574void xen_send_IPI_self(int vector)
575{
576 int xen_vector = xen_map_vector(vector);
577
578 if (xen_vector >= 0)
579 xen_send_IPI_one(smp_processor_id(), xen_vector);
580}
581
582void xen_send_IPI_mask_allbutself(const struct cpumask *mask,
583 int vector)
584{
585 unsigned cpu;
586 unsigned int this_cpu = smp_processor_id();
Stefan Bader1db01b42013-05-08 16:37:35 +0200587 int xen_vector = xen_map_vector(vector);
Ben Guthrof447d562012-04-21 00:11:04 +0800588
Stefan Bader1db01b42013-05-08 16:37:35 +0200589 if (!(num_online_cpus() > 1) || (xen_vector < 0))
Ben Guthrof447d562012-04-21 00:11:04 +0800590 return;
591
592 for_each_cpu_and(cpu, mask, cpu_online_mask) {
593 if (this_cpu == cpu)
594 continue;
595
Stefan Bader1db01b42013-05-08 16:37:35 +0200596 xen_send_IPI_one(cpu, xen_vector);
Ben Guthrof447d562012-04-21 00:11:04 +0800597 }
598}
599
600void xen_send_IPI_allbutself(int vector)
601{
Stefan Bader1db01b42013-05-08 16:37:35 +0200602 xen_send_IPI_mask_allbutself(cpu_online_mask, vector);
Ben Guthrof447d562012-04-21 00:11:04 +0800603}
604
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700605static irqreturn_t xen_call_function_interrupt(int irq, void *dev_id)
606{
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700607 irq_enter();
Jens Axboe3b16cf82008-06-26 11:21:54 +0200608 generic_smp_call_function_interrupt();
Brian Gerst1b437c82009-01-19 00:38:57 +0900609 inc_irq_stat(irq_call_count);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700610 irq_exit();
611
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700612 return IRQ_HANDLED;
613}
614
Jens Axboe3b16cf82008-06-26 11:21:54 +0200615static irqreturn_t xen_call_function_single_interrupt(int irq, void *dev_id)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700616{
Jens Axboe3b16cf82008-06-26 11:21:54 +0200617 irq_enter();
618 generic_smp_call_function_single_interrupt();
Brian Gerst1b437c82009-01-19 00:38:57 +0900619 inc_irq_stat(irq_call_count);
Jens Axboe3b16cf82008-06-26 11:21:54 +0200620 irq_exit();
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700621
Jens Axboe3b16cf82008-06-26 11:21:54 +0200622 return IRQ_HANDLED;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700623}
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700624
Lin Ming1ff2b0c2012-04-21 00:11:05 +0800625static irqreturn_t xen_irq_work_interrupt(int irq, void *dev_id)
626{
627 irq_enter();
628 irq_work_run();
629 inc_irq_stat(apic_irq_work_irqs);
630 irq_exit();
631
632 return IRQ_HANDLED;
633}
634
Daniel Kiperb53cede2011-05-04 20:18:05 +0200635static const struct smp_ops xen_smp_ops __initconst = {
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700636 .smp_prepare_boot_cpu = xen_smp_prepare_boot_cpu,
637 .smp_prepare_cpus = xen_smp_prepare_cpus,
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700638 .smp_cpus_done = xen_smp_cpus_done,
639
Alex Nixond68d82a2008-08-22 11:52:15 +0100640 .cpu_up = xen_cpu_up,
641 .cpu_die = xen_cpu_die,
642 .cpu_disable = xen_cpu_disable,
643 .play_dead = xen_play_dead,
644
Alok Kataria76fac072010-10-11 14:37:08 -0700645 .stop_other_cpus = xen_stop_other_cpus,
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700646 .smp_send_reschedule = xen_smp_send_reschedule,
647
648 .send_call_func_ipi = xen_smp_send_call_function_ipi,
649 .send_call_func_single_ipi = xen_smp_send_call_function_single_ipi,
650};
651
652void __init xen_smp_init(void)
653{
654 smp_ops = xen_smp_ops;
Jeremy Fitzhardingec7b75942008-07-08 15:06:43 -0700655 xen_fill_possible_map();
Jeremy Fitzhardinge2d9e1e22008-07-07 12:07:53 -0700656 xen_init_spinlocks();
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700657}
Stefano Stabellini99bbb3a2010-12-02 17:55:10 +0000658
659static void __init xen_hvm_smp_prepare_cpus(unsigned int max_cpus)
660{
661 native_smp_prepare_cpus(max_cpus);
662 WARN_ON(xen_smp_intr_init(0));
663
Stefano Stabellini99bbb3a2010-12-02 17:55:10 +0000664 xen_init_lock_cpu(0);
Stefano Stabellini99bbb3a2010-12-02 17:55:10 +0000665}
666
Thomas Gleixner5cdaf182012-04-20 13:05:47 +0000667static int __cpuinit xen_hvm_cpu_up(unsigned int cpu, struct task_struct *tidle)
Stefano Stabellini99bbb3a2010-12-02 17:55:10 +0000668{
669 int rc;
Thomas Gleixner5cdaf182012-04-20 13:05:47 +0000670 rc = native_cpu_up(cpu, tidle);
Stefano Stabellini99bbb3a2010-12-02 17:55:10 +0000671 WARN_ON (xen_smp_intr_init(cpu));
672 return rc;
673}
674
675static void xen_hvm_cpu_die(unsigned int cpu)
676{
Konrad Rzeszutek Wilkb12abaa2013-04-08 20:56:35 -0400677 xen_cpu_die(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}