Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 1 | /* |
| 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 Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 14 | */ |
| 15 | #include <linux/sched.h> |
| 16 | #include <linux/err.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 17 | #include <linux/slab.h> |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 18 | #include <linux/smp.h> |
Lin Ming | 1ff2b0c | 2012-04-21 00:11:05 +0800 | [diff] [blame] | 19 | #include <linux/irq_work.h> |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 20 | |
| 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 Stabellini | ea5b8f7 | 2010-10-26 17:28:33 +0100 | [diff] [blame] | 32 | #include <xen/xen.h> |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 33 | #include <xen/page.h> |
| 34 | #include <xen/events.h> |
| 35 | |
Konrad Rzeszutek Wilk | ed467e6 | 2011-09-01 09:48:27 -0400 | [diff] [blame] | 36 | #include <xen/hvc-console.h> |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 37 | #include "xen-ops.h" |
| 38 | #include "mmu.h" |
| 39 | |
Mike Travis | b78936e | 2008-12-16 17:33:57 -0800 | [diff] [blame] | 40 | cpumask_var_t xen_cpu_initialized_map; |
Jens Axboe | 3b16cf8 | 2008-06-26 11:21:54 +0200 | [diff] [blame] | 41 | |
Tejun Heo | c6e22f9 | 2009-10-29 22:34:13 +0900 | [diff] [blame] | 42 | static DEFINE_PER_CPU(int, xen_resched_irq); |
| 43 | static DEFINE_PER_CPU(int, xen_callfunc_irq); |
| 44 | static DEFINE_PER_CPU(int, xen_callfuncsingle_irq); |
Lin Ming | 1ff2b0c | 2012-04-21 00:11:05 +0800 | [diff] [blame] | 45 | static DEFINE_PER_CPU(int, xen_irq_work); |
Tejun Heo | c6e22f9 | 2009-10-29 22:34:13 +0900 | [diff] [blame] | 46 | static DEFINE_PER_CPU(int, xen_debug_irq) = -1; |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 47 | |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 48 | static irqreturn_t xen_call_function_interrupt(int irq, void *dev_id); |
Jens Axboe | 3b16cf8 | 2008-06-26 11:21:54 +0200 | [diff] [blame] | 49 | static irqreturn_t xen_call_function_single_interrupt(int irq, void *dev_id); |
Lin Ming | 1ff2b0c | 2012-04-21 00:11:05 +0800 | [diff] [blame] | 50 | static irqreturn_t xen_irq_work_interrupt(int irq, void *dev_id); |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 51 | |
| 52 | /* |
Peter Zijlstra | 184748c | 2011-04-05 17:23:39 +0200 | [diff] [blame] | 53 | * Reschedule call back. |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 54 | */ |
| 55 | static irqreturn_t xen_reschedule_interrupt(int irq, void *dev_id) |
| 56 | { |
Brian Gerst | 1b437c8 | 2009-01-19 00:38:57 +0900 | [diff] [blame] | 57 | inc_irq_stat(irq_resched_count); |
Peter Zijlstra | 184748c | 2011-04-05 17:23:39 +0200 | [diff] [blame] | 58 | scheduler_ipi(); |
Jeremy Fitzhardinge | 38bb5ab | 2008-05-26 23:31:16 +0100 | [diff] [blame] | 59 | |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 60 | return IRQ_HANDLED; |
| 61 | } |
| 62 | |
Daniel Kiper | b53cede | 2011-05-04 20:18:05 +0200 | [diff] [blame] | 63 | static void __cpuinit cpu_bringup(void) |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 64 | { |
Srivatsa S. Bhat | e8c9e78 | 2012-03-22 18:29:24 +0530 | [diff] [blame] | 65 | int cpu; |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 66 | |
| 67 | cpu_init(); |
Alex Nixon | d68d82a | 2008-08-22 11:52:15 +0100 | [diff] [blame] | 68 | touch_softlockup_watchdog(); |
Jeremy Fitzhardinge | c7b7594 | 2008-07-08 15:06:43 -0700 | [diff] [blame] | 69 | preempt_disable(); |
| 70 | |
Jeremy Fitzhardinge | e2a81ba | 2008-03-17 16:37:17 -0700 | [diff] [blame] | 71 | xen_enable_sysenter(); |
Jeremy Fitzhardinge | 6fcac6d | 2008-07-08 15:07:14 -0700 | [diff] [blame] | 72 | xen_enable_syscall(); |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 73 | |
Jeremy Fitzhardinge | c7b7594 | 2008-07-08 15:06:43 -0700 | [diff] [blame] | 74 | 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 Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 78 | |
| 79 | xen_setup_cpu_clockevents(); |
| 80 | |
Konrad Rzeszutek Wilk | 106b443 | 2012-03-21 13:03:45 -0400 | [diff] [blame] | 81 | notify_cpu_starting(cpu); |
| 82 | |
| 83 | ipi_call_lock(); |
Rusty Russell | d7d3756 | 2009-11-03 14:58:38 +1030 | [diff] [blame] | 84 | set_cpu_online(cpu, true); |
Konrad Rzeszutek Wilk | 106b443 | 2012-03-21 13:03:45 -0400 | [diff] [blame] | 85 | ipi_call_unlock(); |
| 86 | |
Alex Shi | 2113f46 | 2012-01-13 23:53:35 +0800 | [diff] [blame] | 87 | this_cpu_write(cpu_state, CPU_ONLINE); |
Konrad Rzeszutek Wilk | 106b443 | 2012-03-21 13:03:45 -0400 | [diff] [blame] | 88 | |
Jeremy Fitzhardinge | c7b7594 | 2008-07-08 15:06:43 -0700 | [diff] [blame] | 89 | wmb(); |
| 90 | |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 91 | /* We can take interrupts now: we're officially "up". */ |
| 92 | local_irq_enable(); |
| 93 | |
| 94 | wmb(); /* make sure everything is out */ |
Alex Nixon | d68d82a | 2008-08-22 11:52:15 +0100 | [diff] [blame] | 95 | } |
| 96 | |
Daniel Kiper | b53cede | 2011-05-04 20:18:05 +0200 | [diff] [blame] | 97 | static void __cpuinit cpu_bringup_and_idle(void) |
Alex Nixon | d68d82a | 2008-08-22 11:52:15 +0100 | [diff] [blame] | 98 | { |
| 99 | cpu_bringup(); |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 100 | cpu_idle(); |
| 101 | } |
| 102 | |
| 103 | static int xen_smp_intr_init(unsigned int cpu) |
| 104 | { |
| 105 | int rc; |
Jeremy Fitzhardinge | ee523ca | 2008-03-17 16:37:18 -0700 | [diff] [blame] | 106 | const char *resched_name, *callfunc_name, *debug_name; |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 107 | |
| 108 | resched_name = kasprintf(GFP_KERNEL, "resched%d", cpu); |
| 109 | rc = bind_ipi_to_irqhandler(XEN_RESCHEDULE_VECTOR, |
| 110 | cpu, |
| 111 | xen_reschedule_interrupt, |
| 112 | IRQF_DISABLED|IRQF_PERCPU|IRQF_NOBALANCING, |
| 113 | resched_name, |
| 114 | NULL); |
| 115 | if (rc < 0) |
| 116 | goto fail; |
Tejun Heo | c6e22f9 | 2009-10-29 22:34:13 +0900 | [diff] [blame] | 117 | per_cpu(xen_resched_irq, cpu) = rc; |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 118 | |
| 119 | callfunc_name = kasprintf(GFP_KERNEL, "callfunc%d", cpu); |
| 120 | rc = bind_ipi_to_irqhandler(XEN_CALL_FUNCTION_VECTOR, |
| 121 | cpu, |
| 122 | xen_call_function_interrupt, |
| 123 | IRQF_DISABLED|IRQF_PERCPU|IRQF_NOBALANCING, |
| 124 | callfunc_name, |
| 125 | NULL); |
| 126 | if (rc < 0) |
| 127 | goto fail; |
Tejun Heo | c6e22f9 | 2009-10-29 22:34:13 +0900 | [diff] [blame] | 128 | per_cpu(xen_callfunc_irq, cpu) = rc; |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 129 | |
Jeremy Fitzhardinge | ee523ca | 2008-03-17 16:37:18 -0700 | [diff] [blame] | 130 | debug_name = kasprintf(GFP_KERNEL, "debug%d", cpu); |
| 131 | rc = bind_virq_to_irqhandler(VIRQ_DEBUG, cpu, xen_debug_interrupt, |
| 132 | IRQF_DISABLED | IRQF_PERCPU | IRQF_NOBALANCING, |
| 133 | debug_name, NULL); |
| 134 | if (rc < 0) |
| 135 | goto fail; |
Tejun Heo | c6e22f9 | 2009-10-29 22:34:13 +0900 | [diff] [blame] | 136 | per_cpu(xen_debug_irq, cpu) = rc; |
Jeremy Fitzhardinge | ee523ca | 2008-03-17 16:37:18 -0700 | [diff] [blame] | 137 | |
Jens Axboe | 3b16cf8 | 2008-06-26 11:21:54 +0200 | [diff] [blame] | 138 | callfunc_name = kasprintf(GFP_KERNEL, "callfuncsingle%d", cpu); |
| 139 | rc = bind_ipi_to_irqhandler(XEN_CALL_FUNCTION_SINGLE_VECTOR, |
| 140 | cpu, |
| 141 | xen_call_function_single_interrupt, |
| 142 | IRQF_DISABLED|IRQF_PERCPU|IRQF_NOBALANCING, |
| 143 | callfunc_name, |
| 144 | NULL); |
| 145 | if (rc < 0) |
| 146 | goto fail; |
Tejun Heo | c6e22f9 | 2009-10-29 22:34:13 +0900 | [diff] [blame] | 147 | per_cpu(xen_callfuncsingle_irq, cpu) = rc; |
Jens Axboe | 3b16cf8 | 2008-06-26 11:21:54 +0200 | [diff] [blame] | 148 | |
Lin Ming | 1ff2b0c | 2012-04-21 00:11:05 +0800 | [diff] [blame] | 149 | callfunc_name = kasprintf(GFP_KERNEL, "irqwork%d", cpu); |
| 150 | rc = bind_ipi_to_irqhandler(XEN_IRQ_WORK_VECTOR, |
| 151 | cpu, |
| 152 | xen_irq_work_interrupt, |
| 153 | IRQF_DISABLED|IRQF_PERCPU|IRQF_NOBALANCING, |
| 154 | callfunc_name, |
| 155 | NULL); |
| 156 | if (rc < 0) |
| 157 | goto fail; |
| 158 | per_cpu(xen_irq_work, cpu) = rc; |
| 159 | |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 160 | return 0; |
| 161 | |
| 162 | fail: |
Tejun Heo | c6e22f9 | 2009-10-29 22:34:13 +0900 | [diff] [blame] | 163 | if (per_cpu(xen_resched_irq, cpu) >= 0) |
| 164 | unbind_from_irqhandler(per_cpu(xen_resched_irq, cpu), NULL); |
| 165 | if (per_cpu(xen_callfunc_irq, cpu) >= 0) |
| 166 | unbind_from_irqhandler(per_cpu(xen_callfunc_irq, cpu), NULL); |
| 167 | if (per_cpu(xen_debug_irq, cpu) >= 0) |
| 168 | unbind_from_irqhandler(per_cpu(xen_debug_irq, cpu), NULL); |
| 169 | if (per_cpu(xen_callfuncsingle_irq, cpu) >= 0) |
| 170 | unbind_from_irqhandler(per_cpu(xen_callfuncsingle_irq, cpu), |
| 171 | NULL); |
Lin Ming | 1ff2b0c | 2012-04-21 00:11:05 +0800 | [diff] [blame] | 172 | if (per_cpu(xen_irq_work, cpu) >= 0) |
| 173 | unbind_from_irqhandler(per_cpu(xen_irq_work, cpu), NULL); |
Jens Axboe | 3b16cf8 | 2008-06-26 11:21:54 +0200 | [diff] [blame] | 174 | |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 175 | return rc; |
| 176 | } |
| 177 | |
Jeremy Fitzhardinge | c7b7594 | 2008-07-08 15:06:43 -0700 | [diff] [blame] | 178 | static void __init xen_fill_possible_map(void) |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 179 | { |
| 180 | int i, rc; |
| 181 | |
Stefano Stabellini | ea5b8f7 | 2010-10-26 17:28:33 +0100 | [diff] [blame] | 182 | if (xen_initial_domain()) |
| 183 | return; |
| 184 | |
Mike Travis | e798673 | 2008-12-16 17:33:52 -0800 | [diff] [blame] | 185 | for (i = 0; i < nr_cpu_ids; i++) { |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 186 | rc = HYPERVISOR_vcpu_op(VCPUOP_is_up, i, NULL); |
Jeremy Fitzhardinge | 4560a29 | 2008-07-08 15:06:56 -0700 | [diff] [blame] | 187 | if (rc >= 0) { |
| 188 | num_processors++; |
Rusty Russell | 4f06289 | 2009-03-13 14:49:54 +1030 | [diff] [blame] | 189 | set_cpu_possible(i, true); |
Jeremy Fitzhardinge | 4560a29 | 2008-07-08 15:06:56 -0700 | [diff] [blame] | 190 | } |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 191 | } |
| 192 | } |
| 193 | |
Stefano Stabellini | ea5b8f7 | 2010-10-26 17:28:33 +0100 | [diff] [blame] | 194 | static void __init xen_filter_cpu_maps(void) |
| 195 | { |
| 196 | int i, rc; |
Konrad Rzeszutek Wilk | cf405ae | 2012-04-26 13:50:03 -0400 | [diff] [blame] | 197 | unsigned int subtract = 0; |
Stefano Stabellini | ea5b8f7 | 2010-10-26 17:28:33 +0100 | [diff] [blame] | 198 | |
| 199 | if (!xen_initial_domain()) |
| 200 | return; |
| 201 | |
Stefano Stabellini | 801fd14 | 2010-09-23 12:06:25 +0100 | [diff] [blame] | 202 | num_processors = 0; |
| 203 | disabled_cpus = 0; |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 204 | for (i = 0; i < nr_cpu_ids; i++) { |
| 205 | rc = HYPERVISOR_vcpu_op(VCPUOP_is_up, i, NULL); |
| 206 | if (rc >= 0) { |
| 207 | num_processors++; |
| 208 | set_cpu_possible(i, true); |
Stefano Stabellini | 801fd14 | 2010-09-23 12:06:25 +0100 | [diff] [blame] | 209 | } else { |
| 210 | set_cpu_possible(i, false); |
| 211 | set_cpu_present(i, false); |
Konrad Rzeszutek Wilk | cf405ae | 2012-04-26 13:50:03 -0400 | [diff] [blame] | 212 | subtract++; |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 213 | } |
| 214 | } |
Konrad Rzeszutek Wilk | cf405ae | 2012-04-26 13:50:03 -0400 | [diff] [blame] | 215 | #ifdef CONFIG_HOTPLUG_CPU |
| 216 | /* This is akin to using 'nr_cpus' on the Linux command line. |
| 217 | * Which is OK as when we use 'dom0_max_vcpus=X' we can only |
| 218 | * have up to X, while nr_cpu_ids is greater than X. This |
| 219 | * normally is not a problem, except when CPU hotplugging |
| 220 | * is involved and then there might be more than X CPUs |
| 221 | * in the guest - which will not work as there is no |
| 222 | * hypercall to expand the max number of VCPUs an already |
| 223 | * running guest has. So cap it up to X. */ |
| 224 | if (subtract) |
| 225 | nr_cpu_ids = nr_cpu_ids - subtract; |
| 226 | #endif |
| 227 | |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 228 | } |
| 229 | |
Jeremy Fitzhardinge | a9e7062 | 2008-07-08 15:06:41 -0700 | [diff] [blame] | 230 | static void __init xen_smp_prepare_boot_cpu(void) |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 231 | { |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 232 | BUG_ON(smp_processor_id() != 0); |
| 233 | native_smp_prepare_boot_cpu(); |
| 234 | |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 235 | /* We've switched to the "real" per-cpu gdt, so make sure the |
| 236 | old memory can be recycled */ |
Jeremy Fitzhardinge | 3834143 | 2009-02-02 13:55:31 -0800 | [diff] [blame] | 237 | make_lowmem_page_readwrite(xen_initial_gdt); |
Jeremy Fitzhardinge | 60223a3 | 2007-07-17 18:37:07 -0700 | [diff] [blame] | 238 | |
Stefano Stabellini | ea5b8f7 | 2010-10-26 17:28:33 +0100 | [diff] [blame] | 239 | xen_filter_cpu_maps(); |
Jeremy Fitzhardinge | 60223a3 | 2007-07-17 18:37:07 -0700 | [diff] [blame] | 240 | xen_setup_vcpu_info_placement(); |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 241 | } |
| 242 | |
Jeremy Fitzhardinge | a9e7062 | 2008-07-08 15:06:41 -0700 | [diff] [blame] | 243 | static void __init xen_smp_prepare_cpus(unsigned int max_cpus) |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 244 | { |
| 245 | unsigned cpu; |
Andrew Jones | 900cba8 | 2009-12-18 10:31:31 +0100 | [diff] [blame] | 246 | unsigned int i; |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 247 | |
Konrad Rzeszutek Wilk | ed467e6 | 2011-09-01 09:48:27 -0400 | [diff] [blame] | 248 | if (skip_ioapic_setup) { |
| 249 | char *m = (max_cpus == 0) ? |
| 250 | "The nosmp parameter is incompatible with Xen; " \ |
| 251 | "use Xen dom0_max_vcpus=1 parameter" : |
| 252 | "The noapic parameter is incompatible with Xen"; |
| 253 | |
| 254 | xen_raw_printk(m); |
| 255 | panic(m); |
| 256 | } |
Jeremy Fitzhardinge | 2d9e1e2 | 2008-07-07 12:07:53 -0700 | [diff] [blame] | 257 | xen_init_lock_cpu(0); |
| 258 | |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 259 | smp_store_cpu_info(0); |
Jeremy Fitzhardinge | c7b7594 | 2008-07-08 15:06:43 -0700 | [diff] [blame] | 260 | cpu_data(0).x86_max_cores = 1; |
Andrew Jones | 900cba8 | 2009-12-18 10:31:31 +0100 | [diff] [blame] | 261 | |
| 262 | for_each_possible_cpu(i) { |
| 263 | zalloc_cpumask_var(&per_cpu(cpu_sibling_map, i), GFP_KERNEL); |
| 264 | zalloc_cpumask_var(&per_cpu(cpu_core_map, i), GFP_KERNEL); |
| 265 | zalloc_cpumask_var(&per_cpu(cpu_llc_shared_map, i), GFP_KERNEL); |
| 266 | } |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 267 | set_cpu_sibling_map(0); |
| 268 | |
| 269 | if (xen_smp_intr_init(0)) |
| 270 | BUG(); |
| 271 | |
Mike Travis | b78936e | 2008-12-16 17:33:57 -0800 | [diff] [blame] | 272 | if (!alloc_cpumask_var(&xen_cpu_initialized_map, GFP_KERNEL)) |
| 273 | panic("could not allocate xen_cpu_initialized_map\n"); |
| 274 | |
| 275 | cpumask_copy(xen_cpu_initialized_map, cpumask_of(0)); |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 276 | |
| 277 | /* Restrict the possible_map according to max_cpus. */ |
| 278 | while ((num_possible_cpus() > 1) && (num_possible_cpus() > max_cpus)) { |
Mike Travis | e798673 | 2008-12-16 17:33:52 -0800 | [diff] [blame] | 279 | for (cpu = nr_cpu_ids - 1; !cpu_possible(cpu); cpu--) |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 280 | continue; |
Rusty Russell | 4f06289 | 2009-03-13 14:49:54 +1030 | [diff] [blame] | 281 | set_cpu_possible(cpu, false); |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 282 | } |
| 283 | |
Thomas Gleixner | 7eb43a6 | 2012-04-20 13:05:48 +0000 | [diff] [blame] | 284 | for_each_possible_cpu(cpu) |
Rusty Russell | 4f06289 | 2009-03-13 14:49:54 +1030 | [diff] [blame] | 285 | set_cpu_present(cpu, true); |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 286 | } |
| 287 | |
Daniel Kiper | b53cede | 2011-05-04 20:18:05 +0200 | [diff] [blame] | 288 | static int __cpuinit |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 289 | cpu_initialize_context(unsigned int cpu, struct task_struct *idle) |
| 290 | { |
| 291 | struct vcpu_guest_context *ctxt; |
Jeremy Fitzhardinge | c7b7594 | 2008-07-08 15:06:43 -0700 | [diff] [blame] | 292 | struct desc_struct *gdt; |
Jeremy Fitzhardinge | 9976b39 | 2009-02-27 09:19:26 -0800 | [diff] [blame] | 293 | unsigned long gdt_mfn; |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 294 | |
Mike Travis | b78936e | 2008-12-16 17:33:57 -0800 | [diff] [blame] | 295 | if (cpumask_test_and_set_cpu(cpu, xen_cpu_initialized_map)) |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 296 | return 0; |
| 297 | |
| 298 | ctxt = kzalloc(sizeof(*ctxt), GFP_KERNEL); |
| 299 | if (ctxt == NULL) |
| 300 | return -ENOMEM; |
| 301 | |
Jeremy Fitzhardinge | c7b7594 | 2008-07-08 15:06:43 -0700 | [diff] [blame] | 302 | gdt = get_cpu_gdt_table(cpu); |
| 303 | |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 304 | ctxt->flags = VGCF_IN_KERNEL; |
| 305 | ctxt->user_regs.ds = __USER_DS; |
| 306 | ctxt->user_regs.es = __USER_DS; |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 307 | ctxt->user_regs.ss = __KERNEL_DS; |
Jeremy Fitzhardinge | c7b7594 | 2008-07-08 15:06:43 -0700 | [diff] [blame] | 308 | #ifdef CONFIG_X86_32 |
| 309 | ctxt->user_regs.fs = __KERNEL_PERCPU; |
Jeremy Fitzhardinge | 577eebe | 2009-08-27 12:46:35 -0700 | [diff] [blame] | 310 | ctxt->user_regs.gs = __KERNEL_STACK_CANARY; |
Jeremy Fitzhardinge | 795f99b | 2009-01-30 17:47:54 +0900 | [diff] [blame] | 311 | #else |
| 312 | ctxt->gs_base_kernel = per_cpu_offset(cpu); |
Jeremy Fitzhardinge | c7b7594 | 2008-07-08 15:06:43 -0700 | [diff] [blame] | 313 | #endif |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 314 | ctxt->user_regs.eip = (unsigned long)cpu_bringup_and_idle; |
| 315 | ctxt->user_regs.eflags = 0x1000; /* IOPL_RING1 */ |
| 316 | |
| 317 | memset(&ctxt->fpu_ctxt, 0, sizeof(ctxt->fpu_ctxt)); |
| 318 | |
| 319 | xen_copy_trap_info(ctxt->trap_ctxt); |
| 320 | |
| 321 | ctxt->ldt_ents = 0; |
| 322 | |
Jeremy Fitzhardinge | c7b7594 | 2008-07-08 15:06:43 -0700 | [diff] [blame] | 323 | BUG_ON((unsigned long)gdt & ~PAGE_MASK); |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 324 | |
Jeremy Fitzhardinge | 9976b39 | 2009-02-27 09:19:26 -0800 | [diff] [blame] | 325 | gdt_mfn = arbitrary_virt_to_mfn(gdt); |
| 326 | make_lowmem_page_readonly(gdt); |
| 327 | make_lowmem_page_readonly(mfn_to_virt(gdt_mfn)); |
| 328 | |
| 329 | ctxt->gdt_frames[0] = gdt_mfn; |
Jeremy Fitzhardinge | c7b7594 | 2008-07-08 15:06:43 -0700 | [diff] [blame] | 330 | ctxt->gdt_ents = GDT_ENTRIES; |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 331 | |
| 332 | ctxt->user_regs.cs = __KERNEL_CS; |
H. Peter Anvin | faca622 | 2008-01-30 13:31:02 +0100 | [diff] [blame] | 333 | ctxt->user_regs.esp = idle->thread.sp0 - sizeof(struct pt_regs); |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 334 | |
| 335 | ctxt->kernel_ss = __KERNEL_DS; |
H. Peter Anvin | faca622 | 2008-01-30 13:31:02 +0100 | [diff] [blame] | 336 | ctxt->kernel_sp = idle->thread.sp0; |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 337 | |
Jeremy Fitzhardinge | c7b7594 | 2008-07-08 15:06:43 -0700 | [diff] [blame] | 338 | #ifdef CONFIG_X86_32 |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 339 | ctxt->event_callback_cs = __KERNEL_CS; |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 340 | ctxt->failsafe_callback_cs = __KERNEL_CS; |
Jeremy Fitzhardinge | c7b7594 | 2008-07-08 15:06:43 -0700 | [diff] [blame] | 341 | #endif |
| 342 | ctxt->event_callback_eip = (unsigned long)xen_hypervisor_callback; |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 343 | ctxt->failsafe_callback_eip = (unsigned long)xen_failsafe_callback; |
| 344 | |
| 345 | per_cpu(xen_cr3, cpu) = __pa(swapper_pg_dir); |
| 346 | ctxt->ctrlreg[3] = xen_pfn_to_cr3(virt_to_mfn(swapper_pg_dir)); |
| 347 | |
| 348 | if (HYPERVISOR_vcpu_op(VCPUOP_initialise, cpu, ctxt)) |
| 349 | BUG(); |
| 350 | |
| 351 | kfree(ctxt); |
| 352 | return 0; |
| 353 | } |
| 354 | |
Thomas Gleixner | 7eb43a6 | 2012-04-20 13:05:48 +0000 | [diff] [blame] | 355 | static int __cpuinit xen_cpu_up(unsigned int cpu, struct task_struct *idle) |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 356 | { |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 357 | int rc; |
| 358 | |
Brian Gerst | c6f5e0a | 2009-01-19 00:38:58 +0900 | [diff] [blame] | 359 | per_cpu(current_task, cpu) = idle; |
Jeremy Fitzhardinge | c7b7594 | 2008-07-08 15:06:43 -0700 | [diff] [blame] | 360 | #ifdef CONFIG_X86_32 |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 361 | irq_ctx_init(cpu); |
Jeremy Fitzhardinge | c7b7594 | 2008-07-08 15:06:43 -0700 | [diff] [blame] | 362 | #else |
Jeremy Fitzhardinge | c7b7594 | 2008-07-08 15:06:43 -0700 | [diff] [blame] | 363 | clear_tsk_thread_flag(idle, TIF_FORK); |
Jeremy Fitzhardinge | 3834143 | 2009-02-02 13:55:31 -0800 | [diff] [blame] | 364 | per_cpu(kernel_stack, cpu) = |
| 365 | (unsigned long)task_stack_page(idle) - |
| 366 | KERNEL_STACK_OFFSET + THREAD_SIZE; |
Jeremy Fitzhardinge | c7b7594 | 2008-07-08 15:06:43 -0700 | [diff] [blame] | 367 | #endif |
Ian Campbell | 0288967 | 2009-11-24 09:32:48 -0800 | [diff] [blame] | 368 | xen_setup_runstate_info(cpu); |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 369 | xen_setup_timer(cpu); |
Jeremy Fitzhardinge | 2d9e1e2 | 2008-07-07 12:07:53 -0700 | [diff] [blame] | 370 | xen_init_lock_cpu(cpu); |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 371 | |
Jeremy Fitzhardinge | c7b7594 | 2008-07-08 15:06:43 -0700 | [diff] [blame] | 372 | per_cpu(cpu_state, cpu) = CPU_UP_PREPARE; |
| 373 | |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 374 | /* make sure interrupts start blocked */ |
| 375 | per_cpu(xen_vcpu, cpu)->evtchn_upcall_mask = 1; |
| 376 | |
| 377 | rc = cpu_initialize_context(cpu, idle); |
| 378 | if (rc) |
| 379 | return rc; |
| 380 | |
| 381 | if (num_online_cpus() == 1) |
| 382 | alternatives_smp_switch(1); |
| 383 | |
| 384 | rc = xen_smp_intr_init(cpu); |
| 385 | if (rc) |
| 386 | return rc; |
| 387 | |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 388 | rc = HYPERVISOR_vcpu_op(VCPUOP_up, cpu, NULL); |
| 389 | BUG_ON(rc); |
| 390 | |
Jeremy Fitzhardinge | c7b7594 | 2008-07-08 15:06:43 -0700 | [diff] [blame] | 391 | while(per_cpu(cpu_state, cpu) != CPU_ONLINE) { |
Hannes Eder | 1207cf8e | 2009-03-05 20:13:57 +0100 | [diff] [blame] | 392 | HYPERVISOR_sched_op(SCHEDOP_yield, NULL); |
Jeremy Fitzhardinge | c7b7594 | 2008-07-08 15:06:43 -0700 | [diff] [blame] | 393 | barrier(); |
| 394 | } |
| 395 | |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 396 | return 0; |
| 397 | } |
| 398 | |
Jeremy Fitzhardinge | a9e7062 | 2008-07-08 15:06:41 -0700 | [diff] [blame] | 399 | static void xen_smp_cpus_done(unsigned int max_cpus) |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 400 | { |
| 401 | } |
| 402 | |
Alex Nixon | 2737146 | 2008-09-08 13:43:33 +0100 | [diff] [blame] | 403 | #ifdef CONFIG_HOTPLUG_CPU |
Alex Nixon | 26fd105 | 2008-09-08 13:43:34 +0100 | [diff] [blame] | 404 | static int xen_cpu_disable(void) |
Alex Nixon | d68d82a | 2008-08-22 11:52:15 +0100 | [diff] [blame] | 405 | { |
| 406 | unsigned int cpu = smp_processor_id(); |
| 407 | if (cpu == 0) |
| 408 | return -EBUSY; |
| 409 | |
| 410 | cpu_disable_common(); |
| 411 | |
| 412 | load_cr3(swapper_pg_dir); |
| 413 | return 0; |
| 414 | } |
| 415 | |
Alex Nixon | 26fd105 | 2008-09-08 13:43:34 +0100 | [diff] [blame] | 416 | static void xen_cpu_die(unsigned int cpu) |
Alex Nixon | d68d82a | 2008-08-22 11:52:15 +0100 | [diff] [blame] | 417 | { |
| 418 | while (HYPERVISOR_vcpu_op(VCPUOP_is_up, cpu, NULL)) { |
| 419 | current->state = TASK_UNINTERRUPTIBLE; |
| 420 | schedule_timeout(HZ/10); |
| 421 | } |
Tejun Heo | c6e22f9 | 2009-10-29 22:34:13 +0900 | [diff] [blame] | 422 | unbind_from_irqhandler(per_cpu(xen_resched_irq, cpu), NULL); |
| 423 | unbind_from_irqhandler(per_cpu(xen_callfunc_irq, cpu), NULL); |
| 424 | unbind_from_irqhandler(per_cpu(xen_debug_irq, cpu), NULL); |
| 425 | unbind_from_irqhandler(per_cpu(xen_callfuncsingle_irq, cpu), NULL); |
Konrad Rzeszutek Wilk | 2f1bd67 | 2012-05-21 09:19:38 -0400 | [diff] [blame] | 426 | unbind_from_irqhandler(per_cpu(xen_irq_work, cpu), NULL); |
Alex Nixon | d68d82a | 2008-08-22 11:52:15 +0100 | [diff] [blame] | 427 | xen_uninit_lock_cpu(cpu); |
| 428 | xen_teardown_timer(cpu); |
| 429 | |
| 430 | if (num_online_cpus() == 1) |
| 431 | alternatives_smp_switch(0); |
| 432 | } |
| 433 | |
Robert P. J. Day | 7170924 | 2009-12-28 11:50:29 -0500 | [diff] [blame] | 434 | static void __cpuinit xen_play_dead(void) /* used only with HOTPLUG_CPU */ |
Alex Nixon | d68d82a | 2008-08-22 11:52:15 +0100 | [diff] [blame] | 435 | { |
| 436 | play_dead_common(); |
| 437 | HYPERVISOR_vcpu_op(VCPUOP_down, smp_processor_id(), NULL); |
| 438 | cpu_bringup(); |
Konrad Rzeszutek Wilk | 41bd956 | 2012-02-01 15:56:54 -0500 | [diff] [blame] | 439 | /* |
| 440 | * Balance out the preempt calls - as we are running in cpu_idle |
| 441 | * loop which has been called at bootup from cpu_bringup_and_idle. |
| 442 | * The cpucpu_bringup_and_idle called cpu_bringup which made a |
| 443 | * preempt_disable() So this preempt_enable will balance it out. |
| 444 | */ |
| 445 | preempt_enable(); |
Alex Nixon | d68d82a | 2008-08-22 11:52:15 +0100 | [diff] [blame] | 446 | } |
| 447 | |
Alex Nixon | 2737146 | 2008-09-08 13:43:33 +0100 | [diff] [blame] | 448 | #else /* !CONFIG_HOTPLUG_CPU */ |
Alex Nixon | 26fd105 | 2008-09-08 13:43:34 +0100 | [diff] [blame] | 449 | static int xen_cpu_disable(void) |
Alex Nixon | 2737146 | 2008-09-08 13:43:33 +0100 | [diff] [blame] | 450 | { |
| 451 | return -ENOSYS; |
| 452 | } |
| 453 | |
Alex Nixon | 26fd105 | 2008-09-08 13:43:34 +0100 | [diff] [blame] | 454 | static void xen_cpu_die(unsigned int cpu) |
Alex Nixon | 2737146 | 2008-09-08 13:43:33 +0100 | [diff] [blame] | 455 | { |
| 456 | BUG(); |
| 457 | } |
| 458 | |
Alex Nixon | 26fd105 | 2008-09-08 13:43:34 +0100 | [diff] [blame] | 459 | static void xen_play_dead(void) |
Alex Nixon | 2737146 | 2008-09-08 13:43:33 +0100 | [diff] [blame] | 460 | { |
| 461 | BUG(); |
| 462 | } |
| 463 | |
| 464 | #endif |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 465 | static void stop_self(void *v) |
| 466 | { |
| 467 | int cpu = smp_processor_id(); |
| 468 | |
| 469 | /* make sure we're not pinning something down */ |
| 470 | load_cr3(swapper_pg_dir); |
| 471 | /* should set up a minimal gdt */ |
| 472 | |
Ian Campbell | 086748e | 2010-08-03 14:55:14 -0700 | [diff] [blame] | 473 | set_cpu_online(cpu, false); |
| 474 | |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 475 | HYPERVISOR_vcpu_op(VCPUOP_down, cpu, NULL); |
| 476 | BUG(); |
| 477 | } |
| 478 | |
Alok Kataria | 76fac07 | 2010-10-11 14:37:08 -0700 | [diff] [blame] | 479 | static void xen_stop_other_cpus(int wait) |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 480 | { |
Alok Kataria | 76fac07 | 2010-10-11 14:37:08 -0700 | [diff] [blame] | 481 | smp_call_function(stop_self, NULL, wait); |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 482 | } |
| 483 | |
Jeremy Fitzhardinge | a9e7062 | 2008-07-08 15:06:41 -0700 | [diff] [blame] | 484 | static void xen_smp_send_reschedule(int cpu) |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 485 | { |
| 486 | xen_send_IPI_one(cpu, XEN_RESCHEDULE_VECTOR); |
| 487 | } |
| 488 | |
Ben Guthro | f447d56 | 2012-04-21 00:11:04 +0800 | [diff] [blame] | 489 | static void __xen_send_IPI_mask(const struct cpumask *mask, |
| 490 | int vector) |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 491 | { |
| 492 | unsigned cpu; |
| 493 | |
Mike Travis | bcda016 | 2008-12-16 17:33:59 -0800 | [diff] [blame] | 494 | for_each_cpu_and(cpu, mask, cpu_online_mask) |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 495 | xen_send_IPI_one(cpu, vector); |
| 496 | } |
| 497 | |
Mike Travis | bcda016 | 2008-12-16 17:33:59 -0800 | [diff] [blame] | 498 | static void xen_smp_send_call_function_ipi(const struct cpumask *mask) |
Jens Axboe | 3b16cf8 | 2008-06-26 11:21:54 +0200 | [diff] [blame] | 499 | { |
| 500 | int cpu; |
| 501 | |
Ben Guthro | f447d56 | 2012-04-21 00:11:04 +0800 | [diff] [blame] | 502 | __xen_send_IPI_mask(mask, XEN_CALL_FUNCTION_VECTOR); |
Jens Axboe | 3b16cf8 | 2008-06-26 11:21:54 +0200 | [diff] [blame] | 503 | |
| 504 | /* Make sure other vcpus get a chance to run if they need to. */ |
Mike Travis | bcda016 | 2008-12-16 17:33:59 -0800 | [diff] [blame] | 505 | for_each_cpu(cpu, mask) { |
Jens Axboe | 3b16cf8 | 2008-06-26 11:21:54 +0200 | [diff] [blame] | 506 | if (xen_vcpu_stolen(cpu)) { |
Hannes Eder | 1207cf8e | 2009-03-05 20:13:57 +0100 | [diff] [blame] | 507 | HYPERVISOR_sched_op(SCHEDOP_yield, NULL); |
Jens Axboe | 3b16cf8 | 2008-06-26 11:21:54 +0200 | [diff] [blame] | 508 | break; |
| 509 | } |
| 510 | } |
| 511 | } |
| 512 | |
Jeremy Fitzhardinge | a9e7062 | 2008-07-08 15:06:41 -0700 | [diff] [blame] | 513 | static void xen_smp_send_call_function_single_ipi(int cpu) |
Jens Axboe | 3b16cf8 | 2008-06-26 11:21:54 +0200 | [diff] [blame] | 514 | { |
Ben Guthro | f447d56 | 2012-04-21 00:11:04 +0800 | [diff] [blame] | 515 | __xen_send_IPI_mask(cpumask_of(cpu), |
Mike Travis | e798673 | 2008-12-16 17:33:52 -0800 | [diff] [blame] | 516 | XEN_CALL_FUNCTION_SINGLE_VECTOR); |
Jens Axboe | 3b16cf8 | 2008-06-26 11:21:54 +0200 | [diff] [blame] | 517 | } |
| 518 | |
Ben Guthro | f447d56 | 2012-04-21 00:11:04 +0800 | [diff] [blame] | 519 | static inline int xen_map_vector(int vector) |
| 520 | { |
| 521 | int xen_vector; |
| 522 | |
| 523 | switch (vector) { |
| 524 | case RESCHEDULE_VECTOR: |
| 525 | xen_vector = XEN_RESCHEDULE_VECTOR; |
| 526 | break; |
| 527 | case CALL_FUNCTION_VECTOR: |
| 528 | xen_vector = XEN_CALL_FUNCTION_VECTOR; |
| 529 | break; |
| 530 | case CALL_FUNCTION_SINGLE_VECTOR: |
| 531 | xen_vector = XEN_CALL_FUNCTION_SINGLE_VECTOR; |
| 532 | break; |
Lin Ming | 1ff2b0c | 2012-04-21 00:11:05 +0800 | [diff] [blame] | 533 | case IRQ_WORK_VECTOR: |
| 534 | xen_vector = XEN_IRQ_WORK_VECTOR; |
| 535 | break; |
Ben Guthro | f447d56 | 2012-04-21 00:11:04 +0800 | [diff] [blame] | 536 | default: |
| 537 | xen_vector = -1; |
| 538 | printk(KERN_ERR "xen: vector 0x%x is not implemented\n", |
| 539 | vector); |
| 540 | } |
| 541 | |
| 542 | return xen_vector; |
| 543 | } |
| 544 | |
| 545 | void xen_send_IPI_mask(const struct cpumask *mask, |
| 546 | int vector) |
| 547 | { |
| 548 | int xen_vector = xen_map_vector(vector); |
| 549 | |
| 550 | if (xen_vector >= 0) |
| 551 | __xen_send_IPI_mask(mask, xen_vector); |
| 552 | } |
| 553 | |
| 554 | void xen_send_IPI_all(int vector) |
| 555 | { |
| 556 | int xen_vector = xen_map_vector(vector); |
| 557 | |
| 558 | if (xen_vector >= 0) |
| 559 | __xen_send_IPI_mask(cpu_online_mask, xen_vector); |
| 560 | } |
| 561 | |
| 562 | void xen_send_IPI_self(int vector) |
| 563 | { |
| 564 | int xen_vector = xen_map_vector(vector); |
| 565 | |
| 566 | if (xen_vector >= 0) |
| 567 | xen_send_IPI_one(smp_processor_id(), xen_vector); |
| 568 | } |
| 569 | |
| 570 | void xen_send_IPI_mask_allbutself(const struct cpumask *mask, |
| 571 | int vector) |
| 572 | { |
| 573 | unsigned cpu; |
| 574 | unsigned int this_cpu = smp_processor_id(); |
| 575 | |
| 576 | if (!(num_online_cpus() > 1)) |
| 577 | return; |
| 578 | |
| 579 | for_each_cpu_and(cpu, mask, cpu_online_mask) { |
| 580 | if (this_cpu == cpu) |
| 581 | continue; |
| 582 | |
| 583 | xen_smp_send_call_function_single_ipi(cpu); |
| 584 | } |
| 585 | } |
| 586 | |
| 587 | void xen_send_IPI_allbutself(int vector) |
| 588 | { |
| 589 | int xen_vector = xen_map_vector(vector); |
| 590 | |
| 591 | if (xen_vector >= 0) |
| 592 | xen_send_IPI_mask_allbutself(cpu_online_mask, xen_vector); |
| 593 | } |
| 594 | |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 595 | static irqreturn_t xen_call_function_interrupt(int irq, void *dev_id) |
| 596 | { |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 597 | irq_enter(); |
Jens Axboe | 3b16cf8 | 2008-06-26 11:21:54 +0200 | [diff] [blame] | 598 | generic_smp_call_function_interrupt(); |
Brian Gerst | 1b437c8 | 2009-01-19 00:38:57 +0900 | [diff] [blame] | 599 | inc_irq_stat(irq_call_count); |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 600 | irq_exit(); |
| 601 | |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 602 | return IRQ_HANDLED; |
| 603 | } |
| 604 | |
Jens Axboe | 3b16cf8 | 2008-06-26 11:21:54 +0200 | [diff] [blame] | 605 | static irqreturn_t xen_call_function_single_interrupt(int irq, void *dev_id) |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 606 | { |
Jens Axboe | 3b16cf8 | 2008-06-26 11:21:54 +0200 | [diff] [blame] | 607 | irq_enter(); |
| 608 | generic_smp_call_function_single_interrupt(); |
Brian Gerst | 1b437c8 | 2009-01-19 00:38:57 +0900 | [diff] [blame] | 609 | inc_irq_stat(irq_call_count); |
Jens Axboe | 3b16cf8 | 2008-06-26 11:21:54 +0200 | [diff] [blame] | 610 | irq_exit(); |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 611 | |
Jens Axboe | 3b16cf8 | 2008-06-26 11:21:54 +0200 | [diff] [blame] | 612 | return IRQ_HANDLED; |
Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 613 | } |
Jeremy Fitzhardinge | a9e7062 | 2008-07-08 15:06:41 -0700 | [diff] [blame] | 614 | |
Lin Ming | 1ff2b0c | 2012-04-21 00:11:05 +0800 | [diff] [blame] | 615 | static irqreturn_t xen_irq_work_interrupt(int irq, void *dev_id) |
| 616 | { |
| 617 | irq_enter(); |
| 618 | irq_work_run(); |
| 619 | inc_irq_stat(apic_irq_work_irqs); |
| 620 | irq_exit(); |
| 621 | |
| 622 | return IRQ_HANDLED; |
| 623 | } |
| 624 | |
Daniel Kiper | b53cede | 2011-05-04 20:18:05 +0200 | [diff] [blame] | 625 | static const struct smp_ops xen_smp_ops __initconst = { |
Jeremy Fitzhardinge | a9e7062 | 2008-07-08 15:06:41 -0700 | [diff] [blame] | 626 | .smp_prepare_boot_cpu = xen_smp_prepare_boot_cpu, |
| 627 | .smp_prepare_cpus = xen_smp_prepare_cpus, |
Jeremy Fitzhardinge | a9e7062 | 2008-07-08 15:06:41 -0700 | [diff] [blame] | 628 | .smp_cpus_done = xen_smp_cpus_done, |
| 629 | |
Alex Nixon | d68d82a | 2008-08-22 11:52:15 +0100 | [diff] [blame] | 630 | .cpu_up = xen_cpu_up, |
| 631 | .cpu_die = xen_cpu_die, |
| 632 | .cpu_disable = xen_cpu_disable, |
| 633 | .play_dead = xen_play_dead, |
| 634 | |
Alok Kataria | 76fac07 | 2010-10-11 14:37:08 -0700 | [diff] [blame] | 635 | .stop_other_cpus = xen_stop_other_cpus, |
Jeremy Fitzhardinge | a9e7062 | 2008-07-08 15:06:41 -0700 | [diff] [blame] | 636 | .smp_send_reschedule = xen_smp_send_reschedule, |
| 637 | |
| 638 | .send_call_func_ipi = xen_smp_send_call_function_ipi, |
| 639 | .send_call_func_single_ipi = xen_smp_send_call_function_single_ipi, |
| 640 | }; |
| 641 | |
| 642 | void __init xen_smp_init(void) |
| 643 | { |
| 644 | smp_ops = xen_smp_ops; |
Jeremy Fitzhardinge | c7b7594 | 2008-07-08 15:06:43 -0700 | [diff] [blame] | 645 | xen_fill_possible_map(); |
Jeremy Fitzhardinge | 2d9e1e2 | 2008-07-07 12:07:53 -0700 | [diff] [blame] | 646 | xen_init_spinlocks(); |
Jeremy Fitzhardinge | a9e7062 | 2008-07-08 15:06:41 -0700 | [diff] [blame] | 647 | } |
Stefano Stabellini | 99bbb3a | 2010-12-02 17:55:10 +0000 | [diff] [blame] | 648 | |
| 649 | static void __init xen_hvm_smp_prepare_cpus(unsigned int max_cpus) |
| 650 | { |
| 651 | native_smp_prepare_cpus(max_cpus); |
| 652 | WARN_ON(xen_smp_intr_init(0)); |
| 653 | |
Stefano Stabellini | 99bbb3a | 2010-12-02 17:55:10 +0000 | [diff] [blame] | 654 | xen_init_lock_cpu(0); |
Stefano Stabellini | 99bbb3a | 2010-12-02 17:55:10 +0000 | [diff] [blame] | 655 | } |
| 656 | |
Thomas Gleixner | 5cdaf18 | 2012-04-20 13:05:47 +0000 | [diff] [blame] | 657 | static int __cpuinit xen_hvm_cpu_up(unsigned int cpu, struct task_struct *tidle) |
Stefano Stabellini | 99bbb3a | 2010-12-02 17:55:10 +0000 | [diff] [blame] | 658 | { |
| 659 | int rc; |
Thomas Gleixner | 5cdaf18 | 2012-04-20 13:05:47 +0000 | [diff] [blame] | 660 | rc = native_cpu_up(cpu, tidle); |
Stefano Stabellini | 99bbb3a | 2010-12-02 17:55:10 +0000 | [diff] [blame] | 661 | WARN_ON (xen_smp_intr_init(cpu)); |
| 662 | return rc; |
| 663 | } |
| 664 | |
| 665 | static void xen_hvm_cpu_die(unsigned int cpu) |
| 666 | { |
| 667 | unbind_from_irqhandler(per_cpu(xen_resched_irq, cpu), NULL); |
| 668 | unbind_from_irqhandler(per_cpu(xen_callfunc_irq, cpu), NULL); |
| 669 | unbind_from_irqhandler(per_cpu(xen_debug_irq, cpu), NULL); |
| 670 | unbind_from_irqhandler(per_cpu(xen_callfuncsingle_irq, cpu), NULL); |
Lin Ming | 1ff2b0c | 2012-04-21 00:11:05 +0800 | [diff] [blame] | 671 | unbind_from_irqhandler(per_cpu(xen_irq_work, cpu), NULL); |
Stefano Stabellini | 99bbb3a | 2010-12-02 17:55:10 +0000 | [diff] [blame] | 672 | native_cpu_die(cpu); |
| 673 | } |
| 674 | |
| 675 | void __init xen_hvm_smp_init(void) |
| 676 | { |
Stefano Stabellini | 3c05c4b | 2011-08-17 15:15:00 +0200 | [diff] [blame] | 677 | if (!xen_have_vector_callback) |
| 678 | return; |
Stefano Stabellini | 99bbb3a | 2010-12-02 17:55:10 +0000 | [diff] [blame] | 679 | smp_ops.smp_prepare_cpus = xen_hvm_smp_prepare_cpus; |
| 680 | smp_ops.smp_send_reschedule = xen_smp_send_reschedule; |
| 681 | smp_ops.cpu_up = xen_hvm_cpu_up; |
| 682 | smp_ops.cpu_die = xen_hvm_cpu_die; |
| 683 | smp_ops.send_call_func_ipi = xen_smp_send_call_function_ipi; |
| 684 | smp_ops.send_call_func_single_ipi = xen_smp_send_call_function_single_ipi; |
| 685 | } |