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