blob: e334bf7cb3279adb093c349999e2f8a45aa1525b [file] [log] [blame]
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001/*
2 * Core of Xen paravirt_ops implementation.
3 *
4 * This file contains the xen_paravirt_ops structure itself, and the
5 * implementations for:
6 * - privileged instructions
7 * - interrupt flags
8 * - segment operations
9 * - booting and setup
10 *
11 * Jeremy Fitzhardinge <jeremy@xensource.com>, XenSource Inc, 2007
12 */
13
14#include <linux/kernel.h>
15#include <linux/init.h>
16#include <linux/smp.h>
17#include <linux/preempt.h>
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -070018#include <linux/hardirq.h>
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070019#include <linux/percpu.h>
20#include <linux/delay.h>
21#include <linux/start_kernel.h>
22#include <linux/sched.h>
23#include <linux/bootmem.h>
24#include <linux/module.h>
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -070025#include <linux/mm.h>
26#include <linux/page-flags.h>
27#include <linux/highmem.h>
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070028
29#include <xen/interface/xen.h>
30#include <xen/interface/physdev.h>
31#include <xen/interface/vcpu.h>
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -070032#include <xen/interface/sched.h>
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070033#include <xen/features.h>
34#include <xen/page.h>
35
36#include <asm/paravirt.h>
37#include <asm/page.h>
38#include <asm/xen/hypercall.h>
39#include <asm/xen/hypervisor.h>
40#include <asm/fixmap.h>
41#include <asm/processor.h>
42#include <asm/setup.h>
43#include <asm/desc.h>
44#include <asm/pgtable.h>
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070045#include <asm/tlbflush.h>
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -070046#include <asm/reboot.h>
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070047
48#include "xen-ops.h"
Jeremy Fitzhardinge3b827c12007-07-17 18:37:04 -070049#include "mmu.h"
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070050#include "multicalls.h"
51
52EXPORT_SYMBOL_GPL(hypercall_page);
53
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070054DEFINE_PER_CPU(struct vcpu_info *, xen_vcpu);
55DEFINE_PER_CPU(struct vcpu_info, xen_vcpu_info);
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -070056
57/*
58 * Note about cr3 (pagetable base) values:
59 *
60 * xen_cr3 contains the current logical cr3 value; it contains the
61 * last set cr3. This may not be the current effective cr3, because
62 * its update may be being lazily deferred. However, a vcpu looking
63 * at its own cr3 can use this value knowing that it everything will
64 * be self-consistent.
65 *
66 * xen_current_cr3 contains the actual vcpu cr3; it is set once the
67 * hypercall to set the vcpu cr3 is complete (so it may be a little
68 * out of date, but it will never be set early). If one vcpu is
69 * looking at another vcpu's cr3 value, it should use this variable.
70 */
71DEFINE_PER_CPU(unsigned long, xen_cr3); /* cr3 stored as physaddr */
72DEFINE_PER_CPU(unsigned long, xen_current_cr3); /* actual vcpu cr3 */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070073
74struct start_info *xen_start_info;
75EXPORT_SYMBOL_GPL(xen_start_info);
76
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -070077static /* __initdata */ struct shared_info dummy_shared_info;
78
79/*
80 * Point at some empty memory to start with. We map the real shared_info
81 * page as soon as fixmap is up and running.
82 */
83struct shared_info *HYPERVISOR_shared_info = (void *)&dummy_shared_info;
84
85/*
86 * Flag to determine whether vcpu info placement is available on all
87 * VCPUs. We assume it is to start with, and then set it to zero on
88 * the first failure. This is because it can succeed on some VCPUs
89 * and not others, since it can involve hypervisor memory allocation,
90 * or because the guest failed to guarantee all the appropriate
91 * constraints on all VCPUs (ie buffer can't cross a page boundary).
92 *
93 * Note that any particular CPU may be using a placed vcpu structure,
94 * but we can only optimise if the all are.
95 *
96 * 0: not available, 1: available
97 */
98static int have_vcpu_info_placement = 1;
99
100static void __init xen_vcpu_setup(int cpu)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700101{
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700102 struct vcpu_register_vcpu_info info;
103 int err;
104 struct vcpu_info *vcpup;
105
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700106 per_cpu(xen_vcpu, cpu) = &HYPERVISOR_shared_info->vcpu_info[cpu];
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700107
108 if (!have_vcpu_info_placement)
109 return; /* already tested, not available */
110
111 vcpup = &per_cpu(xen_vcpu_info, cpu);
112
113 info.mfn = virt_to_mfn(vcpup);
114 info.offset = offset_in_page(vcpup);
115
116 printk(KERN_DEBUG "trying to map vcpu_info %d at %p, mfn %x, offset %d\n",
117 cpu, vcpup, info.mfn, info.offset);
118
119 /* Check to see if the hypervisor will put the vcpu_info
120 structure where we want it, which allows direct access via
121 a percpu-variable. */
122 err = HYPERVISOR_vcpu_op(VCPUOP_register_vcpu_info, cpu, &info);
123
124 if (err) {
125 printk(KERN_DEBUG "register_vcpu_info failed: err=%d\n", err);
126 have_vcpu_info_placement = 0;
127 } else {
128 /* This cpu is using the registered vcpu info, even if
129 later ones fail to. */
130 per_cpu(xen_vcpu, cpu) = vcpup;
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700131
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700132 printk(KERN_DEBUG "cpu %d using vcpu_info at %p\n",
133 cpu, vcpup);
134 }
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700135}
136
137static void __init xen_banner(void)
138{
139 printk(KERN_INFO "Booting paravirtualized kernel on %s\n",
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700140 pv_info.name);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700141 printk(KERN_INFO "Hypervisor signature: %s\n", xen_start_info->magic);
142}
143
144static void xen_cpuid(unsigned int *eax, unsigned int *ebx,
145 unsigned int *ecx, unsigned int *edx)
146{
147 unsigned maskedx = ~0;
148
149 /*
150 * Mask out inconvenient features, to try and disable as many
151 * unsupported kernel subsystems as possible.
152 */
153 if (*eax == 1)
154 maskedx = ~((1 << X86_FEATURE_APIC) | /* disable APIC */
155 (1 << X86_FEATURE_ACPI) | /* disable ACPI */
156 (1 << X86_FEATURE_ACC)); /* thermal monitoring */
157
158 asm(XEN_EMULATE_PREFIX "cpuid"
159 : "=a" (*eax),
160 "=b" (*ebx),
161 "=c" (*ecx),
162 "=d" (*edx)
163 : "0" (*eax), "2" (*ecx));
164 *edx &= maskedx;
165}
166
167static void xen_set_debugreg(int reg, unsigned long val)
168{
169 HYPERVISOR_set_debugreg(reg, val);
170}
171
172static unsigned long xen_get_debugreg(int reg)
173{
174 return HYPERVISOR_get_debugreg(reg);
175}
176
177static unsigned long xen_save_fl(void)
178{
179 struct vcpu_info *vcpu;
180 unsigned long flags;
181
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700182 vcpu = x86_read_percpu(xen_vcpu);
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700183
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700184 /* flag has opposite sense of mask */
185 flags = !vcpu->evtchn_upcall_mask;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700186
187 /* convert to IF type flag
188 -0 -> 0x00000000
189 -1 -> 0xffffffff
190 */
191 return (-flags) & X86_EFLAGS_IF;
192}
193
194static void xen_restore_fl(unsigned long flags)
195{
196 struct vcpu_info *vcpu;
197
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700198 /* convert from IF type flag */
199 flags = !(flags & X86_EFLAGS_IF);
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700200
201 /* There's a one instruction preempt window here. We need to
202 make sure we're don't switch CPUs between getting the vcpu
203 pointer and updating the mask. */
204 preempt_disable();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700205 vcpu = x86_read_percpu(xen_vcpu);
206 vcpu->evtchn_upcall_mask = flags;
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700207 preempt_enable_no_resched();
208
209 /* Doesn't matter if we get preempted here, because any
210 pending event will get dealt with anyway. */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700211
212 if (flags == 0) {
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700213 preempt_check_resched();
214 barrier(); /* unmask then check (avoid races) */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700215 if (unlikely(vcpu->evtchn_upcall_pending))
216 force_evtchn_callback();
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700217 }
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700218}
219
220static void xen_irq_disable(void)
221{
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700222 /* There's a one instruction preempt window here. We need to
223 make sure we're don't switch CPUs between getting the vcpu
224 pointer and updating the mask. */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700225 preempt_disable();
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700226 x86_read_percpu(xen_vcpu)->evtchn_upcall_mask = 1;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700227 preempt_enable_no_resched();
228}
229
230static void xen_irq_enable(void)
231{
232 struct vcpu_info *vcpu;
233
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700234 /* There's a one instruction preempt window here. We need to
235 make sure we're don't switch CPUs between getting the vcpu
236 pointer and updating the mask. */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700237 preempt_disable();
238 vcpu = x86_read_percpu(xen_vcpu);
239 vcpu->evtchn_upcall_mask = 0;
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700240 preempt_enable_no_resched();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700241
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700242 /* Doesn't matter if we get preempted here, because any
243 pending event will get dealt with anyway. */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700244
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700245 barrier(); /* unmask then check (avoid races) */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700246 if (unlikely(vcpu->evtchn_upcall_pending))
247 force_evtchn_callback();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700248}
249
250static void xen_safe_halt(void)
251{
252 /* Blocking includes an implicit local_irq_enable(). */
253 if (HYPERVISOR_sched_op(SCHEDOP_block, 0) != 0)
254 BUG();
255}
256
257static void xen_halt(void)
258{
259 if (irqs_disabled())
260 HYPERVISOR_vcpu_op(VCPUOP_down, smp_processor_id(), NULL);
261 else
262 xen_safe_halt();
263}
264
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -0700265static void xen_leave_lazy(void)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700266{
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -0700267 paravirt_leave_lazy(paravirt_get_lazy_mode());
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700268 xen_mc_flush();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700269}
270
271static unsigned long xen_store_tr(void)
272{
273 return 0;
274}
275
276static void xen_set_ldt(const void *addr, unsigned entries)
277{
278 unsigned long linear_addr = (unsigned long)addr;
279 struct mmuext_op *op;
280 struct multicall_space mcs = xen_mc_entry(sizeof(*op));
281
282 op = mcs.args;
283 op->cmd = MMUEXT_SET_LDT;
284 if (linear_addr) {
285 /* ldt my be vmalloced, use arbitrary_virt_to_machine */
286 xmaddr_t maddr;
287 maddr = arbitrary_virt_to_machine((unsigned long)addr);
288 linear_addr = (unsigned long)maddr.maddr;
289 }
290 op->arg1.linear_addr = linear_addr;
291 op->arg2.nr_ents = entries;
292
293 MULTI_mmuext_op(mcs.mc, op, 1, NULL, DOMID_SELF);
294
295 xen_mc_issue(PARAVIRT_LAZY_CPU);
296}
297
298static void xen_load_gdt(const struct Xgt_desc_struct *dtr)
299{
300 unsigned long *frames;
301 unsigned long va = dtr->address;
302 unsigned int size = dtr->size + 1;
303 unsigned pages = (size + PAGE_SIZE - 1) / PAGE_SIZE;
304 int f;
305 struct multicall_space mcs;
306
307 /* A GDT can be up to 64k in size, which corresponds to 8192
308 8-byte entries, or 16 4k pages.. */
309
310 BUG_ON(size > 65536);
311 BUG_ON(va & ~PAGE_MASK);
312
313 mcs = xen_mc_entry(sizeof(*frames) * pages);
314 frames = mcs.args;
315
316 for (f = 0; va < dtr->address + size; va += PAGE_SIZE, f++) {
317 frames[f] = virt_to_mfn(va);
318 make_lowmem_page_readonly((void *)va);
319 }
320
321 MULTI_set_gdt(mcs.mc, frames, size / sizeof(struct desc_struct));
322
323 xen_mc_issue(PARAVIRT_LAZY_CPU);
324}
325
326static void load_TLS_descriptor(struct thread_struct *t,
327 unsigned int cpu, unsigned int i)
328{
329 struct desc_struct *gdt = get_cpu_gdt_table(cpu);
330 xmaddr_t maddr = virt_to_machine(&gdt[GDT_ENTRY_TLS_MIN+i]);
331 struct multicall_space mc = __xen_mc_entry(0);
332
333 MULTI_update_descriptor(mc.mc, maddr.maddr, t->tls_array[i]);
334}
335
336static void xen_load_tls(struct thread_struct *t, unsigned int cpu)
337{
338 xen_mc_batch();
339
340 load_TLS_descriptor(t, cpu, 0);
341 load_TLS_descriptor(t, cpu, 1);
342 load_TLS_descriptor(t, cpu, 2);
343
344 xen_mc_issue(PARAVIRT_LAZY_CPU);
Jeremy Fitzhardinge8b84ad92007-07-17 18:37:06 -0700345
346 /*
347 * XXX sleazy hack: If we're being called in a lazy-cpu zone,
348 * it means we're in a context switch, and %gs has just been
349 * saved. This means we can zero it out to prevent faults on
350 * exit from the hypervisor if the next process has no %gs.
351 * Either way, it has been saved, and the new value will get
352 * loaded properly. This will go away as soon as Xen has been
353 * modified to not save/restore %gs for normal hypercalls.
354 */
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -0700355 if (paravirt_get_lazy_mode() == PARAVIRT_LAZY_CPU)
Jeremy Fitzhardinge8b84ad92007-07-17 18:37:06 -0700356 loadsegment(gs, 0);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700357}
358
359static void xen_write_ldt_entry(struct desc_struct *dt, int entrynum,
360 u32 low, u32 high)
361{
362 unsigned long lp = (unsigned long)&dt[entrynum];
363 xmaddr_t mach_lp = virt_to_machine(lp);
364 u64 entry = (u64)high << 32 | low;
365
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700366 preempt_disable();
367
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700368 xen_mc_flush();
369 if (HYPERVISOR_update_descriptor(mach_lp.maddr, entry))
370 BUG();
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700371
372 preempt_enable();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700373}
374
375static int cvt_gate_to_trap(int vector, u32 low, u32 high,
376 struct trap_info *info)
377{
378 u8 type, dpl;
379
380 type = (high >> 8) & 0x1f;
381 dpl = (high >> 13) & 3;
382
383 if (type != 0xf && type != 0xe)
384 return 0;
385
386 info->vector = vector;
387 info->address = (high & 0xffff0000) | (low & 0x0000ffff);
388 info->cs = low >> 16;
389 info->flags = dpl;
390 /* interrupt gates clear IF */
391 if (type == 0xe)
392 info->flags |= 4;
393
394 return 1;
395}
396
397/* Locations of each CPU's IDT */
398static DEFINE_PER_CPU(struct Xgt_desc_struct, idt_desc);
399
400/* Set an IDT entry. If the entry is part of the current IDT, then
401 also update Xen. */
402static void xen_write_idt_entry(struct desc_struct *dt, int entrynum,
403 u32 low, u32 high)
404{
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700405 unsigned long p = (unsigned long)&dt[entrynum];
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700406 unsigned long start, end;
407
408 preempt_disable();
409
410 start = __get_cpu_var(idt_desc).address;
411 end = start + __get_cpu_var(idt_desc).size + 1;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700412
413 xen_mc_flush();
414
415 write_dt_entry(dt, entrynum, low, high);
416
417 if (p >= start && (p + 8) <= end) {
418 struct trap_info info[2];
419
420 info[1].address = 0;
421
422 if (cvt_gate_to_trap(entrynum, low, high, &info[0]))
423 if (HYPERVISOR_set_trap_table(info))
424 BUG();
425 }
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700426
427 preempt_enable();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700428}
429
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700430static void xen_convert_trap_info(const struct Xgt_desc_struct *desc,
431 struct trap_info *traps)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700432{
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700433 unsigned in, out, count;
434
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700435 count = (desc->size+1) / 8;
436 BUG_ON(count > 256);
437
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700438 for (in = out = 0; in < count; in++) {
439 const u32 *entry = (u32 *)(desc->address + in * 8);
440
441 if (cvt_gate_to_trap(in, entry[0], entry[1], &traps[out]))
442 out++;
443 }
444 traps[out].address = 0;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700445}
446
447void xen_copy_trap_info(struct trap_info *traps)
448{
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700449 const struct Xgt_desc_struct *desc = &__get_cpu_var(idt_desc);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700450
451 xen_convert_trap_info(desc, traps);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700452}
453
454/* Load a new IDT into Xen. In principle this can be per-CPU, so we
455 hold a spinlock to protect the static traps[] array (static because
456 it avoids allocation, and saves stack space). */
457static void xen_load_idt(const struct Xgt_desc_struct *desc)
458{
459 static DEFINE_SPINLOCK(lock);
460 static struct trap_info traps[257];
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700461
462 spin_lock(&lock);
463
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700464 __get_cpu_var(idt_desc) = *desc;
465
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700466 xen_convert_trap_info(desc, traps);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700467
468 xen_mc_flush();
469 if (HYPERVISOR_set_trap_table(traps))
470 BUG();
471
472 spin_unlock(&lock);
473}
474
475/* Write a GDT descriptor entry. Ignore LDT descriptors, since
476 they're handled differently. */
477static void xen_write_gdt_entry(struct desc_struct *dt, int entry,
478 u32 low, u32 high)
479{
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700480 preempt_disable();
481
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700482 switch ((high >> 8) & 0xff) {
483 case DESCTYPE_LDT:
484 case DESCTYPE_TSS:
485 /* ignore */
486 break;
487
488 default: {
489 xmaddr_t maddr = virt_to_machine(&dt[entry]);
490 u64 desc = (u64)high << 32 | low;
491
492 xen_mc_flush();
493 if (HYPERVISOR_update_descriptor(maddr.maddr, desc))
494 BUG();
495 }
496
497 }
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700498
499 preempt_enable();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700500}
501
502static void xen_load_esp0(struct tss_struct *tss,
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700503 struct thread_struct *thread)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700504{
505 struct multicall_space mcs = xen_mc_entry(0);
506 MULTI_stack_switch(mcs.mc, __KERNEL_DS, thread->esp0);
507 xen_mc_issue(PARAVIRT_LAZY_CPU);
508}
509
510static void xen_set_iopl_mask(unsigned mask)
511{
512 struct physdev_set_iopl set_iopl;
513
514 /* Force the change at ring 0. */
515 set_iopl.iopl = (mask == 0) ? 1 : (mask >> 12) & 3;
516 HYPERVISOR_physdev_op(PHYSDEVOP_set_iopl, &set_iopl);
517}
518
519static void xen_io_delay(void)
520{
521}
522
523#ifdef CONFIG_X86_LOCAL_APIC
524static unsigned long xen_apic_read(unsigned long reg)
525{
526 return 0;
527}
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700528
529static void xen_apic_write(unsigned long reg, unsigned long val)
530{
531 /* Warn to see if there's any stray references */
532 WARN_ON(1);
533}
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700534#endif
535
536static void xen_flush_tlb(void)
537{
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700538 struct mmuext_op *op;
539 struct multicall_space mcs = xen_mc_entry(sizeof(*op));
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700540
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700541 op = mcs.args;
542 op->cmd = MMUEXT_TLB_FLUSH_LOCAL;
543 MULTI_mmuext_op(mcs.mc, op, 1, NULL, DOMID_SELF);
544
545 xen_mc_issue(PARAVIRT_LAZY_MMU);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700546}
547
548static void xen_flush_tlb_single(unsigned long addr)
549{
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700550 struct mmuext_op *op;
551 struct multicall_space mcs = xen_mc_entry(sizeof(*op));
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700552
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700553 op = mcs.args;
554 op->cmd = MMUEXT_INVLPG_LOCAL;
555 op->arg1.linear_addr = addr & PAGE_MASK;
556 MULTI_mmuext_op(mcs.mc, op, 1, NULL, DOMID_SELF);
557
558 xen_mc_issue(PARAVIRT_LAZY_MMU);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700559}
560
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700561static void xen_flush_tlb_others(const cpumask_t *cpus, struct mm_struct *mm,
562 unsigned long va)
563{
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700564 struct {
565 struct mmuext_op op;
566 cpumask_t mask;
567 } *args;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700568 cpumask_t cpumask = *cpus;
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700569 struct multicall_space mcs;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700570
571 /*
572 * A couple of (to be removed) sanity checks:
573 *
574 * - current CPU must not be in mask
575 * - mask must exist :)
576 */
577 BUG_ON(cpus_empty(cpumask));
578 BUG_ON(cpu_isset(smp_processor_id(), cpumask));
579 BUG_ON(!mm);
580
581 /* If a CPU which we ran on has gone down, OK. */
582 cpus_and(cpumask, cpumask, cpu_online_map);
583 if (cpus_empty(cpumask))
584 return;
585
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700586 mcs = xen_mc_entry(sizeof(*args));
587 args = mcs.args;
588 args->mask = cpumask;
589 args->op.arg2.vcpumask = &args->mask;
590
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700591 if (va == TLB_FLUSH_ALL) {
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700592 args->op.cmd = MMUEXT_TLB_FLUSH_MULTI;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700593 } else {
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700594 args->op.cmd = MMUEXT_INVLPG_MULTI;
595 args->op.arg1.linear_addr = va;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700596 }
597
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700598 MULTI_mmuext_op(mcs.mc, &args->op, 1, NULL, DOMID_SELF);
599
600 xen_mc_issue(PARAVIRT_LAZY_MMU);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700601}
602
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700603static void xen_write_cr2(unsigned long cr2)
604{
605 x86_read_percpu(xen_vcpu)->arch.cr2 = cr2;
606}
607
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700608static unsigned long xen_read_cr2(void)
609{
610 return x86_read_percpu(xen_vcpu)->arch.cr2;
611}
612
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700613static unsigned long xen_read_cr2_direct(void)
614{
615 return x86_read_percpu(xen_vcpu_info.arch.cr2);
616}
617
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700618static void xen_write_cr4(unsigned long cr4)
619{
Jeremy Fitzhardinge389a3c02007-09-18 22:46:33 -0700620 /* Just ignore cr4 changes; Xen doesn't allow us to do
621 anything anyway. */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700622}
623
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700624static unsigned long xen_read_cr3(void)
625{
626 return x86_read_percpu(xen_cr3);
627}
628
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -0700629static void set_current_cr3(void *v)
630{
631 x86_write_percpu(xen_current_cr3, (unsigned long)v);
632}
633
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700634static void xen_write_cr3(unsigned long cr3)
635{
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -0700636 struct mmuext_op *op;
637 struct multicall_space mcs;
638 unsigned long mfn = pfn_to_mfn(PFN_DOWN(cr3));
639
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700640 BUG_ON(preemptible());
641
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -0700642 mcs = xen_mc_entry(sizeof(*op)); /* disables interrupts */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700643
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -0700644 /* Update while interrupts are disabled, so its atomic with
645 respect to ipis */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700646 x86_write_percpu(xen_cr3, cr3);
647
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -0700648 op = mcs.args;
649 op->cmd = MMUEXT_NEW_BASEPTR;
650 op->arg1.mfn = mfn;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700651
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -0700652 MULTI_mmuext_op(mcs.mc, op, 1, NULL, DOMID_SELF);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700653
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -0700654 /* Update xen_update_cr3 once the batch has actually
655 been submitted. */
656 xen_mc_callback(set_current_cr3, (void *)cr3);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700657
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -0700658 xen_mc_issue(PARAVIRT_LAZY_CPU); /* interrupts restored */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700659}
660
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700661/* Early in boot, while setting up the initial pagetable, assume
662 everything is pinned. */
Jeremy Fitzhardinge9a4029f2007-07-17 18:37:05 -0700663static __init void xen_alloc_pt_init(struct mm_struct *mm, u32 pfn)
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700664{
665 BUG_ON(mem_map); /* should only be used early */
666 make_lowmem_page_readonly(__va(PFN_PHYS(pfn)));
667}
668
669/* This needs to make sure the new pte page is pinned iff its being
670 attached to a pinned pagetable. */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700671static void xen_alloc_pt(struct mm_struct *mm, u32 pfn)
672{
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700673 struct page *page = pfn_to_page(pfn);
674
675 if (PagePinned(virt_to_page(mm->pgd))) {
676 SetPagePinned(page);
677
678 if (!PageHighMem(page))
679 make_lowmem_page_readonly(__va(PFN_PHYS(pfn)));
680 else
681 /* make sure there are no stray mappings of
682 this page */
683 kmap_flush_unused();
684 }
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700685}
686
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700687/* This should never happen until we're OK to use struct page */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700688static void xen_release_pt(u32 pfn)
689{
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700690 struct page *page = pfn_to_page(pfn);
691
692 if (PagePinned(page)) {
693 if (!PageHighMem(page))
694 make_lowmem_page_readwrite(__va(PFN_PHYS(pfn)));
695 }
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700696}
697
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700698#ifdef CONFIG_HIGHPTE
699static void *xen_kmap_atomic_pte(struct page *page, enum km_type type)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700700{
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700701 pgprot_t prot = PAGE_KERNEL;
702
703 if (PagePinned(page))
704 prot = PAGE_KERNEL_RO;
705
706 if (0 && PageHighMem(page))
707 printk("mapping highpte %lx type %d prot %s\n",
708 page_to_pfn(page), type,
709 (unsigned long)pgprot_val(prot) & _PAGE_RW ? "WRITE" : "READ");
710
711 return kmap_atomic_prot(page, type, prot);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700712}
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700713#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700714
Jeremy Fitzhardinge9a4029f2007-07-17 18:37:05 -0700715static __init pte_t mask_rw_pte(pte_t *ptep, pte_t pte)
716{
717 /* If there's an existing pte, then don't allow _PAGE_RW to be set */
718 if (pte_val_ma(*ptep) & _PAGE_PRESENT)
719 pte = __pte_ma(((pte_val_ma(*ptep) & _PAGE_RW) | ~_PAGE_RW) &
720 pte_val_ma(pte));
721
722 return pte;
723}
724
725/* Init-time set_pte while constructing initial pagetables, which
726 doesn't allow RO pagetable pages to be remapped RW */
727static __init void xen_set_pte_init(pte_t *ptep, pte_t pte)
728{
729 pte = mask_rw_pte(ptep, pte);
730
731 xen_set_pte(ptep, pte);
732}
733
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700734static __init void xen_pagetable_setup_start(pgd_t *base)
735{
736 pgd_t *xen_pgd = (pgd_t *)xen_start_info->pt_base;
737
Jeremy Fitzhardinge9a4029f2007-07-17 18:37:05 -0700738 /* special set_pte for pagetable initialization */
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700739 pv_mmu_ops.set_pte = xen_set_pte_init;
Jeremy Fitzhardinge9a4029f2007-07-17 18:37:05 -0700740
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700741 init_mm.pgd = base;
742 /*
743 * copy top-level of Xen-supplied pagetable into place. For
744 * !PAE we can use this as-is, but for PAE it is a stand-in
745 * while we copy the pmd pages.
746 */
747 memcpy(base, xen_pgd, PTRS_PER_PGD * sizeof(pgd_t));
748
749 if (PTRS_PER_PMD > 1) {
750 int i;
751 /*
752 * For PAE, need to allocate new pmds, rather than
753 * share Xen's, since Xen doesn't like pmd's being
754 * shared between address spaces.
755 */
756 for (i = 0; i < PTRS_PER_PGD; i++) {
757 if (pgd_val_ma(xen_pgd[i]) & _PAGE_PRESENT) {
758 pmd_t *pmd = (pmd_t *)alloc_bootmem_low_pages(PAGE_SIZE);
759
760 memcpy(pmd, (void *)pgd_page_vaddr(xen_pgd[i]),
761 PAGE_SIZE);
762
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700763 make_lowmem_page_readonly(pmd);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700764
765 set_pgd(&base[i], __pgd(1 + __pa(pmd)));
766 } else
767 pgd_clear(&base[i]);
768 }
769 }
770
771 /* make sure zero_page is mapped RO so we can use it in pagetables */
772 make_lowmem_page_readonly(empty_zero_page);
773 make_lowmem_page_readonly(base);
774 /*
775 * Switch to new pagetable. This is done before
776 * pagetable_init has done anything so that the new pages
777 * added to the table can be prepared properly for Xen.
778 */
779 xen_write_cr3(__pa(base));
780}
781
782static __init void xen_pagetable_setup_done(pgd_t *base)
783{
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700784 /* This will work as long as patching hasn't happened yet
785 (which it hasn't) */
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700786 pv_mmu_ops.alloc_pt = xen_alloc_pt;
787 pv_mmu_ops.set_pte = xen_set_pte;
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700788
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700789 if (!xen_feature(XENFEAT_auto_translated_physmap)) {
790 /*
791 * Create a mapping for the shared info page.
792 * Should be set_fixmap(), but shared_info is a machine
793 * address with no corresponding pseudo-phys address.
794 */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700795 set_pte_mfn(fix_to_virt(FIX_PARAVIRT_BOOTMAP),
796 PFN_DOWN(xen_start_info->shared_info),
797 PAGE_KERNEL);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700798
799 HYPERVISOR_shared_info =
800 (struct shared_info *)fix_to_virt(FIX_PARAVIRT_BOOTMAP);
801
802 } else
803 HYPERVISOR_shared_info =
804 (struct shared_info *)__va(xen_start_info->shared_info);
805
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700806 /* Actually pin the pagetable down, but we can't set PG_pinned
807 yet because the page structures don't exist yet. */
808 {
809 struct mmuext_op op;
810#ifdef CONFIG_X86_PAE
811 op.cmd = MMUEXT_PIN_L3_TABLE;
812#else
813 op.cmd = MMUEXT_PIN_L3_TABLE;
814#endif
815 op.arg1.mfn = pfn_to_mfn(PFN_DOWN(__pa(base)));
816 if (HYPERVISOR_mmuext_op(&op, 1, NULL, DOMID_SELF))
817 BUG();
818 }
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700819}
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700820
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700821/* This is called once we have the cpu_possible_map */
822void __init xen_setup_vcpu_info_placement(void)
823{
824 int cpu;
825
826 for_each_possible_cpu(cpu)
827 xen_vcpu_setup(cpu);
828
829 /* xen_vcpu_setup managed to place the vcpu_info within the
830 percpu area for all cpus, so make use of it */
831 if (have_vcpu_info_placement) {
832 printk(KERN_INFO "Xen: using vcpu_info placement\n");
833
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700834 pv_irq_ops.save_fl = xen_save_fl_direct;
835 pv_irq_ops.restore_fl = xen_restore_fl_direct;
836 pv_irq_ops.irq_disable = xen_irq_disable_direct;
837 pv_irq_ops.irq_enable = xen_irq_enable_direct;
838 pv_mmu_ops.read_cr2 = xen_read_cr2_direct;
839 pv_cpu_ops.iret = xen_iret_direct;
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700840 }
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700841}
842
Andi Kleenab144f52007-08-10 22:31:03 +0200843static unsigned xen_patch(u8 type, u16 clobbers, void *insnbuf,
844 unsigned long addr, unsigned len)
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700845{
846 char *start, *end, *reloc;
847 unsigned ret;
848
849 start = end = reloc = NULL;
850
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700851#define SITE(op, x) \
852 case PARAVIRT_PATCH(op.x): \
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700853 if (have_vcpu_info_placement) { \
854 start = (char *)xen_##x##_direct; \
855 end = xen_##x##_direct_end; \
856 reloc = xen_##x##_direct_reloc; \
857 } \
858 goto patch_site
859
860 switch (type) {
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700861 SITE(pv_irq_ops, irq_enable);
862 SITE(pv_irq_ops, irq_disable);
863 SITE(pv_irq_ops, save_fl);
864 SITE(pv_irq_ops, restore_fl);
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700865#undef SITE
866
867 patch_site:
868 if (start == NULL || (end-start) > len)
869 goto default_patch;
870
Andi Kleenab144f52007-08-10 22:31:03 +0200871 ret = paravirt_patch_insns(insnbuf, len, start, end);
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700872
873 /* Note: because reloc is assigned from something that
874 appears to be an array, gcc assumes it's non-null,
875 but doesn't know its relationship with start and
876 end. */
877 if (reloc > start && reloc < end) {
878 int reloc_off = reloc - start;
Andi Kleenab144f52007-08-10 22:31:03 +0200879 long *relocp = (long *)(insnbuf + reloc_off);
880 long delta = start - (char *)addr;
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700881
882 *relocp += delta;
883 }
884 break;
885
886 default_patch:
887 default:
Andi Kleenab144f52007-08-10 22:31:03 +0200888 ret = paravirt_patch_default(type, clobbers, insnbuf,
889 addr, len);
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700890 break;
891 }
892
893 return ret;
894}
895
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700896static const struct pv_info xen_info __initdata = {
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700897 .paravirt_enabled = 1,
898 .shared_kernel_pmd = 0,
899
900 .name = "Xen",
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700901};
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700902
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700903static const struct pv_init_ops xen_init_ops __initdata = {
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700904 .patch = xen_patch,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700905
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700906 .banner = xen_banner,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700907 .memory_setup = xen_memory_setup,
908 .arch_setup = xen_arch_setup,
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700909 .post_allocator_init = xen_mark_init_mm_pinned,
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700910};
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700911
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700912static const struct pv_time_ops xen_time_ops __initdata = {
Jeremy Fitzhardinge15c84732007-07-17 18:37:05 -0700913 .time_init = xen_time_init,
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700914
Jeremy Fitzhardinge15c84732007-07-17 18:37:05 -0700915 .set_wallclock = xen_set_wallclock,
916 .get_wallclock = xen_get_wallclock,
917 .get_cpu_khz = xen_cpu_khz,
Jeremy Fitzhardingeab550282007-07-17 18:37:05 -0700918 .sched_clock = xen_sched_clock,
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700919};
Jeremy Fitzhardinge15c84732007-07-17 18:37:05 -0700920
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700921static const struct pv_cpu_ops xen_cpu_ops __initdata = {
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700922 .cpuid = xen_cpuid,
923
924 .set_debugreg = xen_set_debugreg,
925 .get_debugreg = xen_get_debugreg,
926
927 .clts = native_clts,
928
929 .read_cr0 = native_read_cr0,
930 .write_cr0 = native_write_cr0,
931
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700932 .read_cr4 = native_read_cr4,
933 .read_cr4_safe = native_read_cr4_safe,
934 .write_cr4 = xen_write_cr4,
935
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700936 .wbinvd = native_wbinvd,
937
938 .read_msr = native_read_msr_safe,
939 .write_msr = native_write_msr_safe,
940 .read_tsc = native_read_tsc,
941 .read_pmc = native_read_pmc,
942
943 .iret = (void *)&hypercall_page[__HYPERVISOR_iret],
944 .irq_enable_sysexit = NULL, /* never called */
945
946 .load_tr_desc = paravirt_nop,
947 .set_ldt = xen_set_ldt,
948 .load_gdt = xen_load_gdt,
949 .load_idt = xen_load_idt,
950 .load_tls = xen_load_tls,
951
952 .store_gdt = native_store_gdt,
953 .store_idt = native_store_idt,
954 .store_tr = xen_store_tr,
955
956 .write_ldt_entry = xen_write_ldt_entry,
957 .write_gdt_entry = xen_write_gdt_entry,
958 .write_idt_entry = xen_write_idt_entry,
959 .load_esp0 = xen_load_esp0,
960
961 .set_iopl_mask = xen_set_iopl_mask,
962 .io_delay = xen_io_delay,
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -0700963
964 .lazy_mode = {
965 .enter = paravirt_enter_lazy_cpu,
966 .leave = xen_leave_lazy,
967 },
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700968};
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700969
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700970static const struct pv_irq_ops xen_irq_ops __initdata = {
971 .init_IRQ = xen_init_IRQ,
972 .save_fl = xen_save_fl,
973 .restore_fl = xen_restore_fl,
974 .irq_disable = xen_irq_disable,
975 .irq_enable = xen_irq_enable,
976 .safe_halt = xen_safe_halt,
977 .halt = xen_halt,
978};
979
980static const struct pv_apic_ops xen_apic_ops __initdata = {
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700981#ifdef CONFIG_X86_LOCAL_APIC
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700982 .apic_write = xen_apic_write,
983 .apic_write_atomic = xen_apic_write,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700984 .apic_read = xen_apic_read,
985 .setup_boot_clock = paravirt_nop,
986 .setup_secondary_clock = paravirt_nop,
987 .startup_ipi_hook = paravirt_nop,
988#endif
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700989};
990
991static const struct pv_mmu_ops xen_mmu_ops __initdata = {
992 .pagetable_setup_start = xen_pagetable_setup_start,
993 .pagetable_setup_done = xen_pagetable_setup_done,
994
995 .read_cr2 = xen_read_cr2,
996 .write_cr2 = xen_write_cr2,
997
998 .read_cr3 = xen_read_cr3,
999 .write_cr3 = xen_write_cr3,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001000
1001 .flush_tlb_user = xen_flush_tlb,
1002 .flush_tlb_kernel = xen_flush_tlb,
1003 .flush_tlb_single = xen_flush_tlb_single,
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -07001004 .flush_tlb_others = xen_flush_tlb_others,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001005
1006 .pte_update = paravirt_nop,
1007 .pte_update_defer = paravirt_nop,
1008
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -07001009 .alloc_pt = xen_alloc_pt_init,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001010 .release_pt = xen_release_pt,
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -07001011 .alloc_pd = paravirt_nop,
1012 .alloc_pd_clone = paravirt_nop,
1013 .release_pd = paravirt_nop,
1014
1015#ifdef CONFIG_HIGHPTE
1016 .kmap_atomic_pte = xen_kmap_atomic_pte,
1017#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001018
Jeremy Fitzhardinge9a4029f2007-07-17 18:37:05 -07001019 .set_pte = NULL, /* see xen_pagetable_setup_* */
Jeremy Fitzhardinge3b827c12007-07-17 18:37:04 -07001020 .set_pte_at = xen_set_pte_at,
1021 .set_pmd = xen_set_pmd,
1022
1023 .pte_val = xen_pte_val,
1024 .pgd_val = xen_pgd_val,
1025
1026 .make_pte = xen_make_pte,
1027 .make_pgd = xen_make_pgd,
1028
1029#ifdef CONFIG_X86_PAE
1030 .set_pte_atomic = xen_set_pte_atomic,
1031 .set_pte_present = xen_set_pte_at,
1032 .set_pud = xen_set_pud,
1033 .pte_clear = xen_pte_clear,
1034 .pmd_clear = xen_pmd_clear,
1035
1036 .make_pmd = xen_make_pmd,
1037 .pmd_val = xen_pmd_val,
1038#endif /* PAE */
1039
1040 .activate_mm = xen_activate_mm,
1041 .dup_mmap = xen_dup_mmap,
1042 .exit_mmap = xen_exit_mmap,
1043
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -07001044 .lazy_mode = {
1045 .enter = paravirt_enter_lazy_mmu,
1046 .leave = xen_leave_lazy,
1047 },
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001048};
1049
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -07001050#ifdef CONFIG_SMP
1051static const struct smp_ops xen_smp_ops __initdata = {
1052 .smp_prepare_boot_cpu = xen_smp_prepare_boot_cpu,
1053 .smp_prepare_cpus = xen_smp_prepare_cpus,
1054 .cpu_up = xen_cpu_up,
1055 .smp_cpus_done = xen_smp_cpus_done,
1056
1057 .smp_send_stop = xen_smp_send_stop,
1058 .smp_send_reschedule = xen_smp_send_reschedule,
1059 .smp_call_function_mask = xen_smp_call_function_mask,
1060};
1061#endif /* CONFIG_SMP */
1062
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -07001063static void xen_reboot(int reason)
1064{
1065#ifdef CONFIG_SMP
1066 smp_send_stop();
1067#endif
1068
1069 if (HYPERVISOR_sched_op(SCHEDOP_shutdown, reason))
1070 BUG();
1071}
1072
1073static void xen_restart(char *msg)
1074{
1075 xen_reboot(SHUTDOWN_reboot);
1076}
1077
1078static void xen_emergency_restart(void)
1079{
1080 xen_reboot(SHUTDOWN_reboot);
1081}
1082
1083static void xen_machine_halt(void)
1084{
1085 xen_reboot(SHUTDOWN_poweroff);
1086}
1087
1088static void xen_crash_shutdown(struct pt_regs *regs)
1089{
1090 xen_reboot(SHUTDOWN_crash);
1091}
1092
1093static const struct machine_ops __initdata xen_machine_ops = {
1094 .restart = xen_restart,
1095 .halt = xen_machine_halt,
1096 .power_off = xen_machine_halt,
1097 .shutdown = xen_machine_halt,
1098 .crash_shutdown = xen_crash_shutdown,
1099 .emergency_restart = xen_emergency_restart,
1100};
1101
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -07001102
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001103/* First C function to be called on Xen boot */
1104asmlinkage void __init xen_start_kernel(void)
1105{
1106 pgd_t *pgd;
1107
1108 if (!xen_start_info)
1109 return;
1110
1111 BUG_ON(memcmp(xen_start_info->magic, "xen-3.0", 7) != 0);
1112
1113 /* Install Xen paravirt ops */
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001114 pv_info = xen_info;
1115 pv_init_ops = xen_init_ops;
1116 pv_time_ops = xen_time_ops;
1117 pv_cpu_ops = xen_cpu_ops;
1118 pv_irq_ops = xen_irq_ops;
1119 pv_apic_ops = xen_apic_ops;
1120 pv_mmu_ops = xen_mmu_ops;
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001121
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -07001122 machine_ops = xen_machine_ops;
1123
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -07001124#ifdef CONFIG_SMP
1125 smp_ops = xen_smp_ops;
1126#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001127
1128 xen_setup_features();
1129
1130 /* Get mfn list */
1131 if (!xen_feature(XENFEAT_auto_translated_physmap))
1132 phys_to_machine_mapping = (unsigned long *)xen_start_info->mfn_list;
1133
1134 pgd = (pgd_t *)xen_start_info->pt_base;
1135
1136 init_pg_tables_end = __pa(pgd) + xen_start_info->nr_pt_frames*PAGE_SIZE;
1137
1138 init_mm.pgd = pgd; /* use the Xen pagetables to start */
1139
1140 /* keep using Xen gdt for now; no urgent need to change it */
1141
1142 x86_write_percpu(xen_cr3, __pa(pgd));
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -07001143 x86_write_percpu(xen_current_cr3, __pa(pgd));
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -07001144
1145#ifdef CONFIG_SMP
1146 /* Don't do the full vcpu_info placement stuff until we have a
1147 possible map. */
1148 per_cpu(xen_vcpu, 0) = &HYPERVISOR_shared_info->vcpu_info[0];
1149#else
1150 /* May as well do it now, since there's no good time to call
1151 it later on UP. */
1152 xen_setup_vcpu_info_placement();
1153#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001154
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001155 pv_info.kernel_rpl = 1;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001156 if (xen_feature(XENFEAT_supervisor_mode_kernel))
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001157 pv_info.kernel_rpl = 0;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001158
1159 /* set the limit of our address space */
1160 reserve_top_address(-HYPERVISOR_VIRT_START + 2 * PAGE_SIZE);
1161
1162 /* set up basic CPUID stuff */
1163 cpu_detect(&new_cpu_data);
1164 new_cpu_data.hard_math = 1;
1165 new_cpu_data.x86_capability[0] = cpuid_edx(1);
1166
1167 /* Poke various useful things into boot_params */
1168 LOADER_TYPE = (9 << 4) | 0;
1169 INITRD_START = xen_start_info->mod_start ? __pa(xen_start_info->mod_start) : 0;
1170 INITRD_SIZE = xen_start_info->mod_len;
1171
1172 /* Start the world */
1173 start_kernel();
1174}