| 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> | 
|  | 19 |  | 
|  | 20 | #include <asm/paravirt.h> | 
|  | 21 | #include <asm/desc.h> | 
|  | 22 | #include <asm/pgtable.h> | 
|  | 23 | #include <asm/cpu.h> | 
|  | 24 |  | 
|  | 25 | #include <xen/interface/xen.h> | 
|  | 26 | #include <xen/interface/vcpu.h> | 
|  | 27 |  | 
|  | 28 | #include <asm/xen/interface.h> | 
|  | 29 | #include <asm/xen/hypercall.h> | 
|  | 30 |  | 
| Stefano Stabellini | ea5b8f7 | 2010-10-26 17:28:33 +0100 | [diff] [blame] | 31 | #include <xen/xen.h> | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 32 | #include <xen/page.h> | 
|  | 33 | #include <xen/events.h> | 
|  | 34 |  | 
|  | 35 | #include "xen-ops.h" | 
|  | 36 | #include "mmu.h" | 
|  | 37 |  | 
| Mike Travis | b78936e | 2008-12-16 17:33:57 -0800 | [diff] [blame] | 38 | cpumask_var_t xen_cpu_initialized_map; | 
| Jens Axboe | 3b16cf8 | 2008-06-26 11:21:54 +0200 | [diff] [blame] | 39 |  | 
| Tejun Heo | c6e22f9 | 2009-10-29 22:34:13 +0900 | [diff] [blame] | 40 | static DEFINE_PER_CPU(int, xen_resched_irq); | 
|  | 41 | static DEFINE_PER_CPU(int, xen_callfunc_irq); | 
|  | 42 | static DEFINE_PER_CPU(int, xen_callfuncsingle_irq); | 
|  | 43 | static DEFINE_PER_CPU(int, xen_debug_irq) = -1; | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 44 |  | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 45 | static irqreturn_t xen_call_function_interrupt(int irq, void *dev_id); | 
| Jens Axboe | 3b16cf8 | 2008-06-26 11:21:54 +0200 | [diff] [blame] | 46 | 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] | 47 |  | 
|  | 48 | /* | 
|  | 49 | * Reschedule call back. Nothing to do, | 
|  | 50 | * all the work is done automatically when | 
|  | 51 | * we return from the interrupt. | 
|  | 52 | */ | 
|  | 53 | static irqreturn_t xen_reschedule_interrupt(int irq, void *dev_id) | 
|  | 54 | { | 
| Brian Gerst | 1b437c8 | 2009-01-19 00:38:57 +0900 | [diff] [blame] | 55 | inc_irq_stat(irq_resched_count); | 
| Jeremy Fitzhardinge | 38bb5ab | 2008-05-26 23:31:16 +0100 | [diff] [blame] | 56 |  | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 57 | return IRQ_HANDLED; | 
|  | 58 | } | 
|  | 59 |  | 
| Alex Nixon | d68d82a | 2008-08-22 11:52:15 +0100 | [diff] [blame] | 60 | static __cpuinit void cpu_bringup(void) | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 61 | { | 
|  | 62 | int cpu = smp_processor_id(); | 
|  | 63 |  | 
|  | 64 | cpu_init(); | 
| Alex Nixon | d68d82a | 2008-08-22 11:52:15 +0100 | [diff] [blame] | 65 | touch_softlockup_watchdog(); | 
| Jeremy Fitzhardinge | c7b7594 | 2008-07-08 15:06:43 -0700 | [diff] [blame] | 66 | preempt_disable(); | 
|  | 67 |  | 
| Jeremy Fitzhardinge | e2a81ba | 2008-03-17 16:37:17 -0700 | [diff] [blame] | 68 | xen_enable_sysenter(); | 
| Jeremy Fitzhardinge | 6fcac6d | 2008-07-08 15:07:14 -0700 | [diff] [blame] | 69 | xen_enable_syscall(); | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 70 |  | 
| Jeremy Fitzhardinge | c7b7594 | 2008-07-08 15:06:43 -0700 | [diff] [blame] | 71 | cpu = smp_processor_id(); | 
|  | 72 | smp_store_cpu_info(cpu); | 
|  | 73 | cpu_data(cpu).x86_max_cores = 1; | 
|  | 74 | set_cpu_sibling_map(cpu); | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 75 |  | 
|  | 76 | xen_setup_cpu_clockevents(); | 
|  | 77 |  | 
| Rusty Russell | d7d3756 | 2009-11-03 14:58:38 +1030 | [diff] [blame] | 78 | set_cpu_online(cpu, true); | 
| Ingo Molnar | 6dbde35 | 2009-01-15 22:15:53 +0900 | [diff] [blame] | 79 | percpu_write(cpu_state, CPU_ONLINE); | 
| Jeremy Fitzhardinge | c7b7594 | 2008-07-08 15:06:43 -0700 | [diff] [blame] | 80 | wmb(); | 
|  | 81 |  | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 82 | /* We can take interrupts now: we're officially "up". */ | 
|  | 83 | local_irq_enable(); | 
|  | 84 |  | 
|  | 85 | wmb();			/* make sure everything is out */ | 
| Alex Nixon | d68d82a | 2008-08-22 11:52:15 +0100 | [diff] [blame] | 86 | } | 
|  | 87 |  | 
|  | 88 | static __cpuinit void cpu_bringup_and_idle(void) | 
|  | 89 | { | 
|  | 90 | cpu_bringup(); | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 91 | cpu_idle(); | 
|  | 92 | } | 
|  | 93 |  | 
|  | 94 | static int xen_smp_intr_init(unsigned int cpu) | 
|  | 95 | { | 
|  | 96 | int rc; | 
| Jeremy Fitzhardinge | ee523ca | 2008-03-17 16:37:18 -0700 | [diff] [blame] | 97 | const char *resched_name, *callfunc_name, *debug_name; | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 98 |  | 
|  | 99 | resched_name = kasprintf(GFP_KERNEL, "resched%d", cpu); | 
|  | 100 | rc = bind_ipi_to_irqhandler(XEN_RESCHEDULE_VECTOR, | 
|  | 101 | cpu, | 
|  | 102 | xen_reschedule_interrupt, | 
|  | 103 | IRQF_DISABLED|IRQF_PERCPU|IRQF_NOBALANCING, | 
|  | 104 | resched_name, | 
|  | 105 | NULL); | 
|  | 106 | if (rc < 0) | 
|  | 107 | goto fail; | 
| Tejun Heo | c6e22f9 | 2009-10-29 22:34:13 +0900 | [diff] [blame] | 108 | per_cpu(xen_resched_irq, cpu) = rc; | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 109 |  | 
|  | 110 | callfunc_name = kasprintf(GFP_KERNEL, "callfunc%d", cpu); | 
|  | 111 | rc = bind_ipi_to_irqhandler(XEN_CALL_FUNCTION_VECTOR, | 
|  | 112 | cpu, | 
|  | 113 | xen_call_function_interrupt, | 
|  | 114 | IRQF_DISABLED|IRQF_PERCPU|IRQF_NOBALANCING, | 
|  | 115 | callfunc_name, | 
|  | 116 | NULL); | 
|  | 117 | if (rc < 0) | 
|  | 118 | goto fail; | 
| Tejun Heo | c6e22f9 | 2009-10-29 22:34:13 +0900 | [diff] [blame] | 119 | per_cpu(xen_callfunc_irq, cpu) = rc; | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 120 |  | 
| Jeremy Fitzhardinge | ee523ca | 2008-03-17 16:37:18 -0700 | [diff] [blame] | 121 | debug_name = kasprintf(GFP_KERNEL, "debug%d", cpu); | 
|  | 122 | rc = bind_virq_to_irqhandler(VIRQ_DEBUG, cpu, xen_debug_interrupt, | 
|  | 123 | IRQF_DISABLED | IRQF_PERCPU | IRQF_NOBALANCING, | 
|  | 124 | debug_name, NULL); | 
|  | 125 | if (rc < 0) | 
|  | 126 | goto fail; | 
| Tejun Heo | c6e22f9 | 2009-10-29 22:34:13 +0900 | [diff] [blame] | 127 | per_cpu(xen_debug_irq, cpu) = rc; | 
| Jeremy Fitzhardinge | ee523ca | 2008-03-17 16:37:18 -0700 | [diff] [blame] | 128 |  | 
| Jens Axboe | 3b16cf8 | 2008-06-26 11:21:54 +0200 | [diff] [blame] | 129 | callfunc_name = kasprintf(GFP_KERNEL, "callfuncsingle%d", cpu); | 
|  | 130 | rc = bind_ipi_to_irqhandler(XEN_CALL_FUNCTION_SINGLE_VECTOR, | 
|  | 131 | cpu, | 
|  | 132 | xen_call_function_single_interrupt, | 
|  | 133 | IRQF_DISABLED|IRQF_PERCPU|IRQF_NOBALANCING, | 
|  | 134 | callfunc_name, | 
|  | 135 | NULL); | 
|  | 136 | if (rc < 0) | 
|  | 137 | goto fail; | 
| Tejun Heo | c6e22f9 | 2009-10-29 22:34:13 +0900 | [diff] [blame] | 138 | per_cpu(xen_callfuncsingle_irq, cpu) = rc; | 
| Jens Axboe | 3b16cf8 | 2008-06-26 11:21:54 +0200 | [diff] [blame] | 139 |  | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 140 | return 0; | 
|  | 141 |  | 
|  | 142 | fail: | 
| Tejun Heo | c6e22f9 | 2009-10-29 22:34:13 +0900 | [diff] [blame] | 143 | if (per_cpu(xen_resched_irq, cpu) >= 0) | 
|  | 144 | unbind_from_irqhandler(per_cpu(xen_resched_irq, cpu), NULL); | 
|  | 145 | if (per_cpu(xen_callfunc_irq, cpu) >= 0) | 
|  | 146 | unbind_from_irqhandler(per_cpu(xen_callfunc_irq, cpu), NULL); | 
|  | 147 | if (per_cpu(xen_debug_irq, cpu) >= 0) | 
|  | 148 | unbind_from_irqhandler(per_cpu(xen_debug_irq, cpu), NULL); | 
|  | 149 | if (per_cpu(xen_callfuncsingle_irq, cpu) >= 0) | 
|  | 150 | unbind_from_irqhandler(per_cpu(xen_callfuncsingle_irq, cpu), | 
|  | 151 | NULL); | 
| Jens Axboe | 3b16cf8 | 2008-06-26 11:21:54 +0200 | [diff] [blame] | 152 |  | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 153 | return rc; | 
|  | 154 | } | 
|  | 155 |  | 
| Jeremy Fitzhardinge | c7b7594 | 2008-07-08 15:06:43 -0700 | [diff] [blame] | 156 | static void __init xen_fill_possible_map(void) | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 157 | { | 
|  | 158 | int i, rc; | 
|  | 159 |  | 
| Stefano Stabellini | ea5b8f7 | 2010-10-26 17:28:33 +0100 | [diff] [blame] | 160 | if (xen_initial_domain()) | 
|  | 161 | return; | 
|  | 162 |  | 
| Mike Travis | e798673 | 2008-12-16 17:33:52 -0800 | [diff] [blame] | 163 | for (i = 0; i < nr_cpu_ids; i++) { | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 164 | rc = HYPERVISOR_vcpu_op(VCPUOP_is_up, i, NULL); | 
| Jeremy Fitzhardinge | 4560a29 | 2008-07-08 15:06:56 -0700 | [diff] [blame] | 165 | if (rc >= 0) { | 
|  | 166 | num_processors++; | 
| Rusty Russell | 4f06289 | 2009-03-13 14:49:54 +1030 | [diff] [blame] | 167 | set_cpu_possible(i, true); | 
| Jeremy Fitzhardinge | 4560a29 | 2008-07-08 15:06:56 -0700 | [diff] [blame] | 168 | } | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 169 | } | 
|  | 170 | } | 
|  | 171 |  | 
| Stefano Stabellini | ea5b8f7 | 2010-10-26 17:28:33 +0100 | [diff] [blame] | 172 | static void __init xen_filter_cpu_maps(void) | 
|  | 173 | { | 
|  | 174 | int i, rc; | 
|  | 175 |  | 
|  | 176 | if (!xen_initial_domain()) | 
|  | 177 | return; | 
|  | 178 |  | 
| Stefano Stabellini | 801fd14 | 2010-09-23 12:06:25 +0100 | [diff] [blame] | 179 | num_processors = 0; | 
|  | 180 | disabled_cpus = 0; | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 181 | for (i = 0; i < nr_cpu_ids; i++) { | 
|  | 182 | rc = HYPERVISOR_vcpu_op(VCPUOP_is_up, i, NULL); | 
|  | 183 | if (rc >= 0) { | 
|  | 184 | num_processors++; | 
|  | 185 | set_cpu_possible(i, true); | 
| Stefano Stabellini | 801fd14 | 2010-09-23 12:06:25 +0100 | [diff] [blame] | 186 | } else { | 
|  | 187 | set_cpu_possible(i, false); | 
|  | 188 | set_cpu_present(i, false); | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 189 | } | 
|  | 190 | } | 
| Jeremy Fitzhardinge | a9e7062 | 2008-07-08 15:06:41 -0700 | [diff] [blame] | 191 | } | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 192 |  | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 193 | static void __init xen_smp_prepare_boot_cpu(void) | 
|  | 194 | { | 
|  | 195 | BUG_ON(smp_processor_id() != 0); | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 196 | native_smp_prepare_boot_cpu(); | 
|  | 197 |  | 
| Jeremy Fitzhardinge | c7b7594 | 2008-07-08 15:06:43 -0700 | [diff] [blame] | 198 | /* We've switched to the "real" per-cpu gdt, so make sure the | 
| Jeremy Fitzhardinge | 60223a3 | 2007-07-17 18:37:07 -0700 | [diff] [blame] | 199 | old memory can be recycled */ | 
| Jeremy Fitzhardinge | 3834143 | 2009-02-02 13:55:31 -0800 | [diff] [blame] | 200 | make_lowmem_page_readwrite(xen_initial_gdt); | 
| Jeremy Fitzhardinge | 60223a3 | 2007-07-17 18:37:07 -0700 | [diff] [blame] | 201 |  | 
| Stefano Stabellini | ea5b8f7 | 2010-10-26 17:28:33 +0100 | [diff] [blame] | 202 | xen_filter_cpu_maps(); | 
| Jeremy Fitzhardinge | 60223a3 | 2007-07-17 18:37:07 -0700 | [diff] [blame] | 203 | xen_setup_vcpu_info_placement(); | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 204 | } | 
|  | 205 |  | 
| Jeremy Fitzhardinge | a9e7062 | 2008-07-08 15:06:41 -0700 | [diff] [blame] | 206 | static void __init xen_smp_prepare_cpus(unsigned int max_cpus) | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 207 | { | 
|  | 208 | unsigned cpu; | 
|  | 209 |  | 
| Jeremy Fitzhardinge | 2d9e1e2 | 2008-07-07 12:07:53 -0700 | [diff] [blame] | 210 | xen_init_lock_cpu(0); | 
|  | 211 |  | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 212 | smp_store_cpu_info(0); | 
| Jeremy Fitzhardinge | c7b7594 | 2008-07-08 15:06:43 -0700 | [diff] [blame] | 213 | cpu_data(0).x86_max_cores = 1; | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 214 | set_cpu_sibling_map(0); | 
|  | 215 |  | 
|  | 216 | if (xen_smp_intr_init(0)) | 
|  | 217 | BUG(); | 
|  | 218 |  | 
| Mike Travis | b78936e | 2008-12-16 17:33:57 -0800 | [diff] [blame] | 219 | if (!alloc_cpumask_var(&xen_cpu_initialized_map, GFP_KERNEL)) | 
|  | 220 | panic("could not allocate xen_cpu_initialized_map\n"); | 
|  | 221 |  | 
|  | 222 | cpumask_copy(xen_cpu_initialized_map, cpumask_of(0)); | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 223 |  | 
|  | 224 | /* Restrict the possible_map according to max_cpus. */ | 
|  | 225 | while ((num_possible_cpus() > 1) && (num_possible_cpus() > max_cpus)) { | 
| Mike Travis | e798673 | 2008-12-16 17:33:52 -0800 | [diff] [blame] | 226 | for (cpu = nr_cpu_ids - 1; !cpu_possible(cpu); cpu--) | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 227 | continue; | 
| Rusty Russell | 4f06289 | 2009-03-13 14:49:54 +1030 | [diff] [blame] | 228 | set_cpu_possible(cpu, false); | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 229 | } | 
|  | 230 |  | 
|  | 231 | for_each_possible_cpu (cpu) { | 
|  | 232 | struct task_struct *idle; | 
|  | 233 |  | 
|  | 234 | if (cpu == 0) | 
|  | 235 | continue; | 
|  | 236 |  | 
|  | 237 | idle = fork_idle(cpu); | 
|  | 238 | if (IS_ERR(idle)) | 
|  | 239 | panic("failed fork for CPU %d", cpu); | 
|  | 240 |  | 
| Rusty Russell | 4f06289 | 2009-03-13 14:49:54 +1030 | [diff] [blame] | 241 | set_cpu_present(cpu, true); | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 242 | } | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 243 | } | 
|  | 244 |  | 
|  | 245 | static __cpuinit int | 
|  | 246 | cpu_initialize_context(unsigned int cpu, struct task_struct *idle) | 
|  | 247 | { | 
|  | 248 | struct vcpu_guest_context *ctxt; | 
| Jeremy Fitzhardinge | c7b7594 | 2008-07-08 15:06:43 -0700 | [diff] [blame] | 249 | struct desc_struct *gdt; | 
| Jeremy Fitzhardinge | 9976b39 | 2009-02-27 09:19:26 -0800 | [diff] [blame] | 250 | unsigned long gdt_mfn; | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 251 |  | 
| Mike Travis | b78936e | 2008-12-16 17:33:57 -0800 | [diff] [blame] | 252 | if (cpumask_test_and_set_cpu(cpu, xen_cpu_initialized_map)) | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 253 | return 0; | 
|  | 254 |  | 
|  | 255 | ctxt = kzalloc(sizeof(*ctxt), GFP_KERNEL); | 
|  | 256 | if (ctxt == NULL) | 
|  | 257 | return -ENOMEM; | 
|  | 258 |  | 
| Jeremy Fitzhardinge | c7b7594 | 2008-07-08 15:06:43 -0700 | [diff] [blame] | 259 | gdt = get_cpu_gdt_table(cpu); | 
|  | 260 |  | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 261 | ctxt->flags = VGCF_IN_KERNEL; | 
|  | 262 | ctxt->user_regs.ds = __USER_DS; | 
|  | 263 | ctxt->user_regs.es = __USER_DS; | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 264 | ctxt->user_regs.ss = __KERNEL_DS; | 
| Jeremy Fitzhardinge | c7b7594 | 2008-07-08 15:06:43 -0700 | [diff] [blame] | 265 | #ifdef CONFIG_X86_32 | 
|  | 266 | ctxt->user_regs.fs = __KERNEL_PERCPU; | 
| Jeremy Fitzhardinge | 577eebe | 2009-08-27 12:46:35 -0700 | [diff] [blame] | 267 | ctxt->user_regs.gs = __KERNEL_STACK_CANARY; | 
| Jeremy Fitzhardinge | 795f99b | 2009-01-30 17:47:54 +0900 | [diff] [blame] | 268 | #else | 
|  | 269 | ctxt->gs_base_kernel = per_cpu_offset(cpu); | 
| Jeremy Fitzhardinge | c7b7594 | 2008-07-08 15:06:43 -0700 | [diff] [blame] | 270 | #endif | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 271 | ctxt->user_regs.eip = (unsigned long)cpu_bringup_and_idle; | 
|  | 272 | ctxt->user_regs.eflags = 0x1000; /* IOPL_RING1 */ | 
|  | 273 |  | 
|  | 274 | memset(&ctxt->fpu_ctxt, 0, sizeof(ctxt->fpu_ctxt)); | 
|  | 275 |  | 
|  | 276 | xen_copy_trap_info(ctxt->trap_ctxt); | 
|  | 277 |  | 
|  | 278 | ctxt->ldt_ents = 0; | 
|  | 279 |  | 
| Jeremy Fitzhardinge | c7b7594 | 2008-07-08 15:06:43 -0700 | [diff] [blame] | 280 | BUG_ON((unsigned long)gdt & ~PAGE_MASK); | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 281 |  | 
| Jeremy Fitzhardinge | 9976b39 | 2009-02-27 09:19:26 -0800 | [diff] [blame] | 282 | gdt_mfn = arbitrary_virt_to_mfn(gdt); | 
|  | 283 | make_lowmem_page_readonly(gdt); | 
|  | 284 | make_lowmem_page_readonly(mfn_to_virt(gdt_mfn)); | 
|  | 285 |  | 
|  | 286 | ctxt->gdt_frames[0] = gdt_mfn; | 
| Jeremy Fitzhardinge | c7b7594 | 2008-07-08 15:06:43 -0700 | [diff] [blame] | 287 | ctxt->gdt_ents      = GDT_ENTRIES; | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 288 |  | 
|  | 289 | ctxt->user_regs.cs = __KERNEL_CS; | 
| H. Peter Anvin | faca622 | 2008-01-30 13:31:02 +0100 | [diff] [blame] | 290 | ctxt->user_regs.esp = idle->thread.sp0 - sizeof(struct pt_regs); | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 291 |  | 
|  | 292 | ctxt->kernel_ss = __KERNEL_DS; | 
| H. Peter Anvin | faca622 | 2008-01-30 13:31:02 +0100 | [diff] [blame] | 293 | ctxt->kernel_sp = idle->thread.sp0; | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 294 |  | 
| Jeremy Fitzhardinge | c7b7594 | 2008-07-08 15:06:43 -0700 | [diff] [blame] | 295 | #ifdef CONFIG_X86_32 | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 296 | ctxt->event_callback_cs     = __KERNEL_CS; | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 297 | ctxt->failsafe_callback_cs  = __KERNEL_CS; | 
| Jeremy Fitzhardinge | c7b7594 | 2008-07-08 15:06:43 -0700 | [diff] [blame] | 298 | #endif | 
|  | 299 | ctxt->event_callback_eip    = (unsigned long)xen_hypervisor_callback; | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 300 | ctxt->failsafe_callback_eip = (unsigned long)xen_failsafe_callback; | 
|  | 301 |  | 
|  | 302 | per_cpu(xen_cr3, cpu) = __pa(swapper_pg_dir); | 
|  | 303 | ctxt->ctrlreg[3] = xen_pfn_to_cr3(virt_to_mfn(swapper_pg_dir)); | 
|  | 304 |  | 
|  | 305 | if (HYPERVISOR_vcpu_op(VCPUOP_initialise, cpu, ctxt)) | 
|  | 306 | BUG(); | 
|  | 307 |  | 
|  | 308 | kfree(ctxt); | 
|  | 309 | return 0; | 
|  | 310 | } | 
|  | 311 |  | 
| Jeremy Fitzhardinge | a9e7062 | 2008-07-08 15:06:41 -0700 | [diff] [blame] | 312 | static int __cpuinit xen_cpu_up(unsigned int cpu) | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 313 | { | 
|  | 314 | struct task_struct *idle = idle_task(cpu); | 
|  | 315 | int rc; | 
|  | 316 |  | 
| Brian Gerst | c6f5e0a | 2009-01-19 00:38:58 +0900 | [diff] [blame] | 317 | per_cpu(current_task, cpu) = idle; | 
| Jeremy Fitzhardinge | c7b7594 | 2008-07-08 15:06:43 -0700 | [diff] [blame] | 318 | #ifdef CONFIG_X86_32 | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 319 | irq_ctx_init(cpu); | 
| Jeremy Fitzhardinge | c7b7594 | 2008-07-08 15:06:43 -0700 | [diff] [blame] | 320 | #else | 
| Jeremy Fitzhardinge | c7b7594 | 2008-07-08 15:06:43 -0700 | [diff] [blame] | 321 | clear_tsk_thread_flag(idle, TIF_FORK); | 
| Jeremy Fitzhardinge | 3834143 | 2009-02-02 13:55:31 -0800 | [diff] [blame] | 322 | per_cpu(kernel_stack, cpu) = | 
|  | 323 | (unsigned long)task_stack_page(idle) - | 
|  | 324 | KERNEL_STACK_OFFSET + THREAD_SIZE; | 
| Jeremy Fitzhardinge | c7b7594 | 2008-07-08 15:06:43 -0700 | [diff] [blame] | 325 | #endif | 
| Ian Campbell | 0288967 | 2009-11-24 09:32:48 -0800 | [diff] [blame] | 326 | xen_setup_runstate_info(cpu); | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 327 | xen_setup_timer(cpu); | 
| Jeremy Fitzhardinge | 2d9e1e2 | 2008-07-07 12:07:53 -0700 | [diff] [blame] | 328 | xen_init_lock_cpu(cpu); | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 329 |  | 
| Jeremy Fitzhardinge | c7b7594 | 2008-07-08 15:06:43 -0700 | [diff] [blame] | 330 | per_cpu(cpu_state, cpu) = CPU_UP_PREPARE; | 
|  | 331 |  | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 332 | /* make sure interrupts start blocked */ | 
|  | 333 | per_cpu(xen_vcpu, cpu)->evtchn_upcall_mask = 1; | 
|  | 334 |  | 
|  | 335 | rc = cpu_initialize_context(cpu, idle); | 
|  | 336 | if (rc) | 
|  | 337 | return rc; | 
|  | 338 |  | 
|  | 339 | if (num_online_cpus() == 1) | 
|  | 340 | alternatives_smp_switch(1); | 
|  | 341 |  | 
|  | 342 | rc = xen_smp_intr_init(cpu); | 
|  | 343 | if (rc) | 
|  | 344 | return rc; | 
|  | 345 |  | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 346 | rc = HYPERVISOR_vcpu_op(VCPUOP_up, cpu, NULL); | 
|  | 347 | BUG_ON(rc); | 
|  | 348 |  | 
| Jeremy Fitzhardinge | c7b7594 | 2008-07-08 15:06:43 -0700 | [diff] [blame] | 349 | while(per_cpu(cpu_state, cpu) != CPU_ONLINE) { | 
| Hannes Eder | 1207cf8e | 2009-03-05 20:13:57 +0100 | [diff] [blame] | 350 | HYPERVISOR_sched_op(SCHEDOP_yield, NULL); | 
| Jeremy Fitzhardinge | c7b7594 | 2008-07-08 15:06:43 -0700 | [diff] [blame] | 351 | barrier(); | 
|  | 352 | } | 
|  | 353 |  | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 354 | return 0; | 
|  | 355 | } | 
|  | 356 |  | 
| Jeremy Fitzhardinge | a9e7062 | 2008-07-08 15:06:41 -0700 | [diff] [blame] | 357 | static void xen_smp_cpus_done(unsigned int max_cpus) | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 358 | { | 
|  | 359 | } | 
|  | 360 |  | 
| Alex Nixon | 2737146 | 2008-09-08 13:43:33 +0100 | [diff] [blame] | 361 | #ifdef CONFIG_HOTPLUG_CPU | 
| Alex Nixon | 26fd105 | 2008-09-08 13:43:34 +0100 | [diff] [blame] | 362 | static int xen_cpu_disable(void) | 
| Alex Nixon | d68d82a | 2008-08-22 11:52:15 +0100 | [diff] [blame] | 363 | { | 
|  | 364 | unsigned int cpu = smp_processor_id(); | 
|  | 365 | if (cpu == 0) | 
|  | 366 | return -EBUSY; | 
|  | 367 |  | 
|  | 368 | cpu_disable_common(); | 
|  | 369 |  | 
|  | 370 | load_cr3(swapper_pg_dir); | 
|  | 371 | return 0; | 
|  | 372 | } | 
|  | 373 |  | 
| Alex Nixon | 26fd105 | 2008-09-08 13:43:34 +0100 | [diff] [blame] | 374 | static void xen_cpu_die(unsigned int cpu) | 
| Alex Nixon | d68d82a | 2008-08-22 11:52:15 +0100 | [diff] [blame] | 375 | { | 
|  | 376 | while (HYPERVISOR_vcpu_op(VCPUOP_is_up, cpu, NULL)) { | 
|  | 377 | current->state = TASK_UNINTERRUPTIBLE; | 
|  | 378 | schedule_timeout(HZ/10); | 
|  | 379 | } | 
| Tejun Heo | c6e22f9 | 2009-10-29 22:34:13 +0900 | [diff] [blame] | 380 | unbind_from_irqhandler(per_cpu(xen_resched_irq, cpu), NULL); | 
|  | 381 | unbind_from_irqhandler(per_cpu(xen_callfunc_irq, cpu), NULL); | 
|  | 382 | unbind_from_irqhandler(per_cpu(xen_debug_irq, cpu), NULL); | 
|  | 383 | unbind_from_irqhandler(per_cpu(xen_callfuncsingle_irq, cpu), NULL); | 
| Alex Nixon | d68d82a | 2008-08-22 11:52:15 +0100 | [diff] [blame] | 384 | xen_uninit_lock_cpu(cpu); | 
|  | 385 | xen_teardown_timer(cpu); | 
|  | 386 |  | 
|  | 387 | if (num_online_cpus() == 1) | 
|  | 388 | alternatives_smp_switch(0); | 
|  | 389 | } | 
|  | 390 |  | 
| Robert P. J. Day | 7170924 | 2009-12-28 11:50:29 -0500 | [diff] [blame] | 391 | static void __cpuinit xen_play_dead(void) /* used only with HOTPLUG_CPU */ | 
| Alex Nixon | d68d82a | 2008-08-22 11:52:15 +0100 | [diff] [blame] | 392 | { | 
|  | 393 | play_dead_common(); | 
|  | 394 | HYPERVISOR_vcpu_op(VCPUOP_down, smp_processor_id(), NULL); | 
|  | 395 | cpu_bringup(); | 
|  | 396 | } | 
|  | 397 |  | 
| Alex Nixon | 2737146 | 2008-09-08 13:43:33 +0100 | [diff] [blame] | 398 | #else /* !CONFIG_HOTPLUG_CPU */ | 
| Alex Nixon | 26fd105 | 2008-09-08 13:43:34 +0100 | [diff] [blame] | 399 | static int xen_cpu_disable(void) | 
| Alex Nixon | 2737146 | 2008-09-08 13:43:33 +0100 | [diff] [blame] | 400 | { | 
|  | 401 | return -ENOSYS; | 
|  | 402 | } | 
|  | 403 |  | 
| Alex Nixon | 26fd105 | 2008-09-08 13:43:34 +0100 | [diff] [blame] | 404 | static void xen_cpu_die(unsigned int cpu) | 
| Alex Nixon | 2737146 | 2008-09-08 13:43:33 +0100 | [diff] [blame] | 405 | { | 
|  | 406 | BUG(); | 
|  | 407 | } | 
|  | 408 |  | 
| Alex Nixon | 26fd105 | 2008-09-08 13:43:34 +0100 | [diff] [blame] | 409 | static void xen_play_dead(void) | 
| Alex Nixon | 2737146 | 2008-09-08 13:43:33 +0100 | [diff] [blame] | 410 | { | 
|  | 411 | BUG(); | 
|  | 412 | } | 
|  | 413 |  | 
|  | 414 | #endif | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 415 | static void stop_self(void *v) | 
|  | 416 | { | 
|  | 417 | int cpu = smp_processor_id(); | 
|  | 418 |  | 
|  | 419 | /* make sure we're not pinning something down */ | 
|  | 420 | load_cr3(swapper_pg_dir); | 
|  | 421 | /* should set up a minimal gdt */ | 
|  | 422 |  | 
| Ian Campbell | 086748e | 2010-08-03 14:55:14 -0700 | [diff] [blame] | 423 | set_cpu_online(cpu, false); | 
|  | 424 |  | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 425 | HYPERVISOR_vcpu_op(VCPUOP_down, cpu, NULL); | 
|  | 426 | BUG(); | 
|  | 427 | } | 
|  | 428 |  | 
| Alok Kataria | 76fac07 | 2010-10-11 14:37:08 -0700 | [diff] [blame] | 429 | static void xen_stop_other_cpus(int wait) | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 430 | { | 
| Alok Kataria | 76fac07 | 2010-10-11 14:37:08 -0700 | [diff] [blame] | 431 | smp_call_function(stop_self, NULL, wait); | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 432 | } | 
|  | 433 |  | 
| Jeremy Fitzhardinge | a9e7062 | 2008-07-08 15:06:41 -0700 | [diff] [blame] | 434 | static void xen_smp_send_reschedule(int cpu) | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 435 | { | 
|  | 436 | xen_send_IPI_one(cpu, XEN_RESCHEDULE_VECTOR); | 
|  | 437 | } | 
|  | 438 |  | 
| Mike Travis | bcda016 | 2008-12-16 17:33:59 -0800 | [diff] [blame] | 439 | static void xen_send_IPI_mask(const struct cpumask *mask, | 
|  | 440 | enum ipi_vector vector) | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 441 | { | 
|  | 442 | unsigned cpu; | 
|  | 443 |  | 
| Mike Travis | bcda016 | 2008-12-16 17:33:59 -0800 | [diff] [blame] | 444 | for_each_cpu_and(cpu, mask, cpu_online_mask) | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 445 | xen_send_IPI_one(cpu, vector); | 
|  | 446 | } | 
|  | 447 |  | 
| Mike Travis | bcda016 | 2008-12-16 17:33:59 -0800 | [diff] [blame] | 448 | static void xen_smp_send_call_function_ipi(const struct cpumask *mask) | 
| Jens Axboe | 3b16cf8 | 2008-06-26 11:21:54 +0200 | [diff] [blame] | 449 | { | 
|  | 450 | int cpu; | 
|  | 451 |  | 
|  | 452 | xen_send_IPI_mask(mask, XEN_CALL_FUNCTION_VECTOR); | 
|  | 453 |  | 
|  | 454 | /* 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] | 455 | for_each_cpu(cpu, mask) { | 
| Jens Axboe | 3b16cf8 | 2008-06-26 11:21:54 +0200 | [diff] [blame] | 456 | if (xen_vcpu_stolen(cpu)) { | 
| Hannes Eder | 1207cf8e | 2009-03-05 20:13:57 +0100 | [diff] [blame] | 457 | HYPERVISOR_sched_op(SCHEDOP_yield, NULL); | 
| Jens Axboe | 3b16cf8 | 2008-06-26 11:21:54 +0200 | [diff] [blame] | 458 | break; | 
|  | 459 | } | 
|  | 460 | } | 
|  | 461 | } | 
|  | 462 |  | 
| Jeremy Fitzhardinge | a9e7062 | 2008-07-08 15:06:41 -0700 | [diff] [blame] | 463 | static void xen_smp_send_call_function_single_ipi(int cpu) | 
| Jens Axboe | 3b16cf8 | 2008-06-26 11:21:54 +0200 | [diff] [blame] | 464 | { | 
| Mike Travis | bcda016 | 2008-12-16 17:33:59 -0800 | [diff] [blame] | 465 | xen_send_IPI_mask(cpumask_of(cpu), | 
| Mike Travis | e798673 | 2008-12-16 17:33:52 -0800 | [diff] [blame] | 466 | XEN_CALL_FUNCTION_SINGLE_VECTOR); | 
| Jens Axboe | 3b16cf8 | 2008-06-26 11:21:54 +0200 | [diff] [blame] | 467 | } | 
|  | 468 |  | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 469 | static irqreturn_t xen_call_function_interrupt(int irq, void *dev_id) | 
|  | 470 | { | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 471 | irq_enter(); | 
| Jens Axboe | 3b16cf8 | 2008-06-26 11:21:54 +0200 | [diff] [blame] | 472 | generic_smp_call_function_interrupt(); | 
| Brian Gerst | 1b437c8 | 2009-01-19 00:38:57 +0900 | [diff] [blame] | 473 | inc_irq_stat(irq_call_count); | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 474 | irq_exit(); | 
|  | 475 |  | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 476 | return IRQ_HANDLED; | 
|  | 477 | } | 
|  | 478 |  | 
| Jens Axboe | 3b16cf8 | 2008-06-26 11:21:54 +0200 | [diff] [blame] | 479 | 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] | 480 | { | 
| Jens Axboe | 3b16cf8 | 2008-06-26 11:21:54 +0200 | [diff] [blame] | 481 | irq_enter(); | 
|  | 482 | generic_smp_call_function_single_interrupt(); | 
| Brian Gerst | 1b437c8 | 2009-01-19 00:38:57 +0900 | [diff] [blame] | 483 | inc_irq_stat(irq_call_count); | 
| Jens Axboe | 3b16cf8 | 2008-06-26 11:21:54 +0200 | [diff] [blame] | 484 | irq_exit(); | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 485 |  | 
| Jens Axboe | 3b16cf8 | 2008-06-26 11:21:54 +0200 | [diff] [blame] | 486 | return IRQ_HANDLED; | 
| Jeremy Fitzhardinge | f87e4ca | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 487 | } | 
| Jeremy Fitzhardinge | a9e7062 | 2008-07-08 15:06:41 -0700 | [diff] [blame] | 488 |  | 
|  | 489 | static const struct smp_ops xen_smp_ops __initdata = { | 
|  | 490 | .smp_prepare_boot_cpu = xen_smp_prepare_boot_cpu, | 
|  | 491 | .smp_prepare_cpus = xen_smp_prepare_cpus, | 
| Jeremy Fitzhardinge | a9e7062 | 2008-07-08 15:06:41 -0700 | [diff] [blame] | 492 | .smp_cpus_done = xen_smp_cpus_done, | 
|  | 493 |  | 
| Alex Nixon | d68d82a | 2008-08-22 11:52:15 +0100 | [diff] [blame] | 494 | .cpu_up = xen_cpu_up, | 
|  | 495 | .cpu_die = xen_cpu_die, | 
|  | 496 | .cpu_disable = xen_cpu_disable, | 
|  | 497 | .play_dead = xen_play_dead, | 
|  | 498 |  | 
| Alok Kataria | 76fac07 | 2010-10-11 14:37:08 -0700 | [diff] [blame] | 499 | .stop_other_cpus = xen_stop_other_cpus, | 
| Jeremy Fitzhardinge | a9e7062 | 2008-07-08 15:06:41 -0700 | [diff] [blame] | 500 | .smp_send_reschedule = xen_smp_send_reschedule, | 
|  | 501 |  | 
|  | 502 | .send_call_func_ipi = xen_smp_send_call_function_ipi, | 
|  | 503 | .send_call_func_single_ipi = xen_smp_send_call_function_single_ipi, | 
|  | 504 | }; | 
|  | 505 |  | 
|  | 506 | void __init xen_smp_init(void) | 
|  | 507 | { | 
|  | 508 | smp_ops = xen_smp_ops; | 
| Jeremy Fitzhardinge | c7b7594 | 2008-07-08 15:06:43 -0700 | [diff] [blame] | 509 | xen_fill_possible_map(); | 
| Jeremy Fitzhardinge | 2d9e1e2 | 2008-07-07 12:07:53 -0700 | [diff] [blame] | 510 | xen_init_spinlocks(); | 
| Jeremy Fitzhardinge | a9e7062 | 2008-07-08 15:06:41 -0700 | [diff] [blame] | 511 | } | 
| Stefano Stabellini | 99bbb3a | 2010-12-02 17:55:10 +0000 | [diff] [blame] | 512 |  | 
|  | 513 | static void __init xen_hvm_smp_prepare_cpus(unsigned int max_cpus) | 
|  | 514 | { | 
|  | 515 | native_smp_prepare_cpus(max_cpus); | 
|  | 516 | WARN_ON(xen_smp_intr_init(0)); | 
|  | 517 |  | 
|  | 518 | if (!xen_have_vector_callback) | 
|  | 519 | return; | 
|  | 520 | xen_init_lock_cpu(0); | 
|  | 521 | xen_init_spinlocks(); | 
|  | 522 | } | 
|  | 523 |  | 
|  | 524 | static int __cpuinit xen_hvm_cpu_up(unsigned int cpu) | 
|  | 525 | { | 
|  | 526 | int rc; | 
|  | 527 | rc = native_cpu_up(cpu); | 
|  | 528 | WARN_ON (xen_smp_intr_init(cpu)); | 
|  | 529 | return rc; | 
|  | 530 | } | 
|  | 531 |  | 
|  | 532 | static void xen_hvm_cpu_die(unsigned int cpu) | 
|  | 533 | { | 
|  | 534 | unbind_from_irqhandler(per_cpu(xen_resched_irq, cpu), NULL); | 
|  | 535 | unbind_from_irqhandler(per_cpu(xen_callfunc_irq, cpu), NULL); | 
|  | 536 | unbind_from_irqhandler(per_cpu(xen_debug_irq, cpu), NULL); | 
|  | 537 | unbind_from_irqhandler(per_cpu(xen_callfuncsingle_irq, cpu), NULL); | 
|  | 538 | native_cpu_die(cpu); | 
|  | 539 | } | 
|  | 540 |  | 
|  | 541 | void __init xen_hvm_smp_init(void) | 
|  | 542 | { | 
|  | 543 | smp_ops.smp_prepare_cpus = xen_hvm_smp_prepare_cpus; | 
|  | 544 | smp_ops.smp_send_reschedule = xen_smp_send_reschedule; | 
|  | 545 | smp_ops.cpu_up = xen_hvm_cpu_up; | 
|  | 546 | smp_ops.cpu_die = xen_hvm_cpu_die; | 
|  | 547 | smp_ops.send_call_func_ipi = xen_smp_send_call_function_ipi; | 
|  | 548 | smp_ops.send_call_func_single_ipi = xen_smp_send_call_function_single_ipi; | 
|  | 549 | } |