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