blob: 76ad1efaf09e9da019674e20aae3c99ea45652fb [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>
Markus Armbrusterb8c2d3d2008-02-27 14:56:35 +010028#include <linux/console.h>
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070029
30#include <xen/interface/xen.h>
31#include <xen/interface/physdev.h>
32#include <xen/interface/vcpu.h>
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -070033#include <xen/interface/sched.h>
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070034#include <xen/features.h>
35#include <xen/page.h>
36
37#include <asm/paravirt.h>
38#include <asm/page.h>
39#include <asm/xen/hypercall.h>
40#include <asm/xen/hypervisor.h>
41#include <asm/fixmap.h>
42#include <asm/processor.h>
43#include <asm/setup.h>
44#include <asm/desc.h>
45#include <asm/pgtable.h>
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070046#include <asm/tlbflush.h>
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -070047#include <asm/reboot.h>
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070048
49#include "xen-ops.h"
Jeremy Fitzhardinge3b827c12007-07-17 18:37:04 -070050#include "mmu.h"
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070051#include "multicalls.h"
52
53EXPORT_SYMBOL_GPL(hypercall_page);
54
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070055DEFINE_PER_CPU(struct vcpu_info *, xen_vcpu);
56DEFINE_PER_CPU(struct vcpu_info, xen_vcpu_info);
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -070057
58/*
59 * Note about cr3 (pagetable base) values:
60 *
61 * xen_cr3 contains the current logical cr3 value; it contains the
62 * last set cr3. This may not be the current effective cr3, because
63 * its update may be being lazily deferred. However, a vcpu looking
64 * at its own cr3 can use this value knowing that it everything will
65 * be self-consistent.
66 *
67 * xen_current_cr3 contains the actual vcpu cr3; it is set once the
68 * hypercall to set the vcpu cr3 is complete (so it may be a little
69 * out of date, but it will never be set early). If one vcpu is
70 * looking at another vcpu's cr3 value, it should use this variable.
71 */
72DEFINE_PER_CPU(unsigned long, xen_cr3); /* cr3 stored as physaddr */
73DEFINE_PER_CPU(unsigned long, xen_current_cr3); /* actual vcpu cr3 */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070074
75struct start_info *xen_start_info;
76EXPORT_SYMBOL_GPL(xen_start_info);
77
Jeremy Fitzhardingea0d695c2008-05-26 23:31:21 +010078struct shared_info xen_dummy_shared_info;
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -070079
80/*
81 * Point at some empty memory to start with. We map the real shared_info
82 * page as soon as fixmap is up and running.
83 */
Jeremy Fitzhardingea0d695c2008-05-26 23:31:21 +010084struct shared_info *HYPERVISOR_shared_info = (void *)&xen_dummy_shared_info;
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -070085
86/*
87 * Flag to determine whether vcpu info placement is available on all
88 * VCPUs. We assume it is to start with, and then set it to zero on
89 * the first failure. This is because it can succeed on some VCPUs
90 * and not others, since it can involve hypervisor memory allocation,
91 * or because the guest failed to guarantee all the appropriate
92 * constraints on all VCPUs (ie buffer can't cross a page boundary).
93 *
94 * Note that any particular CPU may be using a placed vcpu structure,
95 * but we can only optimise if the all are.
96 *
97 * 0: not available, 1: available
98 */
Jeremy Fitzhardinge04c44a02008-03-17 16:36:52 -070099static int have_vcpu_info_placement = 1;
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700100
Jeremy Fitzhardinge9c7a7942008-05-31 01:33:02 +0100101static void xen_vcpu_setup(int cpu)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700102{
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700103 struct vcpu_register_vcpu_info info;
104 int err;
105 struct vcpu_info *vcpup;
106
Jeremy Fitzhardingea0d695c2008-05-26 23:31:21 +0100107 BUG_ON(HYPERVISOR_shared_info == &xen_dummy_shared_info);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700108 per_cpu(xen_vcpu, cpu) = &HYPERVISOR_shared_info->vcpu_info[cpu];
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700109
110 if (!have_vcpu_info_placement)
111 return; /* already tested, not available */
112
113 vcpup = &per_cpu(xen_vcpu_info, cpu);
114
115 info.mfn = virt_to_mfn(vcpup);
116 info.offset = offset_in_page(vcpup);
117
Jeremy Fitzhardingee3d26972007-10-16 11:51:31 -0700118 printk(KERN_DEBUG "trying to map vcpu_info %d at %p, mfn %llx, offset %d\n",
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700119 cpu, vcpup, info.mfn, info.offset);
120
121 /* Check to see if the hypervisor will put the vcpu_info
122 structure where we want it, which allows direct access via
123 a percpu-variable. */
124 err = HYPERVISOR_vcpu_op(VCPUOP_register_vcpu_info, cpu, &info);
125
126 if (err) {
127 printk(KERN_DEBUG "register_vcpu_info failed: err=%d\n", err);
128 have_vcpu_info_placement = 0;
129 } else {
130 /* This cpu is using the registered vcpu info, even if
131 later ones fail to. */
132 per_cpu(xen_vcpu, cpu) = vcpup;
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700133
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700134 printk(KERN_DEBUG "cpu %d using vcpu_info at %p\n",
135 cpu, vcpup);
136 }
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700137}
138
Jeremy Fitzhardinge9c7a7942008-05-31 01:33:02 +0100139/*
140 * On restore, set the vcpu placement up again.
141 * If it fails, then we're in a bad state, since
142 * we can't back out from using it...
143 */
144void xen_vcpu_restore(void)
145{
146 if (have_vcpu_info_placement) {
147 int cpu;
148
149 for_each_online_cpu(cpu) {
150 bool other_cpu = (cpu != smp_processor_id());
151
152 if (other_cpu &&
153 HYPERVISOR_vcpu_op(VCPUOP_down, cpu, NULL))
154 BUG();
155
156 xen_vcpu_setup(cpu);
157
158 if (other_cpu &&
159 HYPERVISOR_vcpu_op(VCPUOP_up, cpu, NULL))
160 BUG();
161 }
162
163 BUG_ON(!have_vcpu_info_placement);
164 }
165}
166
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700167static void __init xen_banner(void)
168{
169 printk(KERN_INFO "Booting paravirtualized kernel on %s\n",
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700170 pv_info.name);
Jeremy Fitzhardingee57778a2008-06-16 04:30:02 -0700171 printk(KERN_INFO "Hypervisor signature: %s%s\n",
172 xen_start_info->magic,
173 xen_feature(XENFEAT_mmu_pt_update_preserve_ad) ? " (preserve-AD)" : "");
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700174}
175
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100176static void xen_cpuid(unsigned int *ax, unsigned int *bx,
177 unsigned int *cx, unsigned int *dx)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700178{
179 unsigned maskedx = ~0;
180
181 /*
182 * Mask out inconvenient features, to try and disable as many
183 * unsupported kernel subsystems as possible.
184 */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100185 if (*ax == 1)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700186 maskedx = ~((1 << X86_FEATURE_APIC) | /* disable APIC */
187 (1 << X86_FEATURE_ACPI) | /* disable ACPI */
Jeremy Fitzhardingedbe9e992008-03-17 16:37:21 -0700188 (1 << X86_FEATURE_MCE) | /* disable MCE */
189 (1 << X86_FEATURE_MCA) | /* disable MCA */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700190 (1 << X86_FEATURE_ACC)); /* thermal monitoring */
191
192 asm(XEN_EMULATE_PREFIX "cpuid"
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100193 : "=a" (*ax),
194 "=b" (*bx),
195 "=c" (*cx),
196 "=d" (*dx)
197 : "0" (*ax), "2" (*cx));
198 *dx &= maskedx;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700199}
200
201static void xen_set_debugreg(int reg, unsigned long val)
202{
203 HYPERVISOR_set_debugreg(reg, val);
204}
205
206static unsigned long xen_get_debugreg(int reg)
207{
208 return HYPERVISOR_get_debugreg(reg);
209}
210
211static unsigned long xen_save_fl(void)
212{
213 struct vcpu_info *vcpu;
214 unsigned long flags;
215
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700216 vcpu = x86_read_percpu(xen_vcpu);
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700217
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700218 /* flag has opposite sense of mask */
219 flags = !vcpu->evtchn_upcall_mask;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700220
221 /* convert to IF type flag
222 -0 -> 0x00000000
223 -1 -> 0xffffffff
224 */
225 return (-flags) & X86_EFLAGS_IF;
226}
227
228static void xen_restore_fl(unsigned long flags)
229{
230 struct vcpu_info *vcpu;
231
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700232 /* convert from IF type flag */
233 flags = !(flags & X86_EFLAGS_IF);
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700234
235 /* There's a one instruction preempt window here. We need to
236 make sure we're don't switch CPUs between getting the vcpu
237 pointer and updating the mask. */
238 preempt_disable();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700239 vcpu = x86_read_percpu(xen_vcpu);
240 vcpu->evtchn_upcall_mask = flags;
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700241 preempt_enable_no_resched();
242
243 /* Doesn't matter if we get preempted here, because any
244 pending event will get dealt with anyway. */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700245
246 if (flags == 0) {
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700247 preempt_check_resched();
248 barrier(); /* unmask then check (avoid races) */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700249 if (unlikely(vcpu->evtchn_upcall_pending))
250 force_evtchn_callback();
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700251 }
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700252}
253
254static void xen_irq_disable(void)
255{
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700256 /* There's a one instruction preempt window here. We need to
257 make sure we're don't switch CPUs between getting the vcpu
258 pointer and updating the mask. */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700259 preempt_disable();
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700260 x86_read_percpu(xen_vcpu)->evtchn_upcall_mask = 1;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700261 preempt_enable_no_resched();
262}
263
264static void xen_irq_enable(void)
265{
266 struct vcpu_info *vcpu;
267
Jeremy Fitzhardinge239d1fc2008-05-26 23:31:05 +0100268 /* We don't need to worry about being preempted here, since
269 either a) interrupts are disabled, so no preemption, or b)
270 the caller is confused and is trying to re-enable interrupts
271 on an indeterminate processor. */
272
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700273 vcpu = x86_read_percpu(xen_vcpu);
274 vcpu->evtchn_upcall_mask = 0;
275
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700276 /* Doesn't matter if we get preempted here, because any
277 pending event will get dealt with anyway. */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700278
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700279 barrier(); /* unmask then check (avoid races) */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700280 if (unlikely(vcpu->evtchn_upcall_pending))
281 force_evtchn_callback();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700282}
283
284static void xen_safe_halt(void)
285{
286 /* Blocking includes an implicit local_irq_enable(). */
Jeremy Fitzhardinge349c709f2008-05-26 23:31:02 +0100287 if (HYPERVISOR_sched_op(SCHEDOP_block, NULL) != 0)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700288 BUG();
289}
290
291static void xen_halt(void)
292{
293 if (irqs_disabled())
294 HYPERVISOR_vcpu_op(VCPUOP_down, smp_processor_id(), NULL);
295 else
296 xen_safe_halt();
297}
298
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -0700299static void xen_leave_lazy(void)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700300{
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -0700301 paravirt_leave_lazy(paravirt_get_lazy_mode());
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700302 xen_mc_flush();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700303}
304
305static unsigned long xen_store_tr(void)
306{
307 return 0;
308}
309
310static void xen_set_ldt(const void *addr, unsigned entries)
311{
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700312 struct mmuext_op *op;
313 struct multicall_space mcs = xen_mc_entry(sizeof(*op));
314
315 op = mcs.args;
316 op->cmd = MMUEXT_SET_LDT;
Jan Beulich4dbf7af2008-01-30 13:33:14 +0100317 op->arg1.linear_addr = (unsigned long)addr;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700318 op->arg2.nr_ents = entries;
319
320 MULTI_mmuext_op(mcs.mc, op, 1, NULL, DOMID_SELF);
321
322 xen_mc_issue(PARAVIRT_LAZY_CPU);
323}
324
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100325static void xen_load_gdt(const struct desc_ptr *dtr)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700326{
327 unsigned long *frames;
328 unsigned long va = dtr->address;
329 unsigned int size = dtr->size + 1;
330 unsigned pages = (size + PAGE_SIZE - 1) / PAGE_SIZE;
331 int f;
332 struct multicall_space mcs;
333
334 /* A GDT can be up to 64k in size, which corresponds to 8192
335 8-byte entries, or 16 4k pages.. */
336
337 BUG_ON(size > 65536);
338 BUG_ON(va & ~PAGE_MASK);
339
340 mcs = xen_mc_entry(sizeof(*frames) * pages);
341 frames = mcs.args;
342
343 for (f = 0; va < dtr->address + size; va += PAGE_SIZE, f++) {
344 frames[f] = virt_to_mfn(va);
345 make_lowmem_page_readonly((void *)va);
346 }
347
348 MULTI_set_gdt(mcs.mc, frames, size / sizeof(struct desc_struct));
349
350 xen_mc_issue(PARAVIRT_LAZY_CPU);
351}
352
353static void load_TLS_descriptor(struct thread_struct *t,
354 unsigned int cpu, unsigned int i)
355{
356 struct desc_struct *gdt = get_cpu_gdt_table(cpu);
357 xmaddr_t maddr = virt_to_machine(&gdt[GDT_ENTRY_TLS_MIN+i]);
358 struct multicall_space mc = __xen_mc_entry(0);
359
360 MULTI_update_descriptor(mc.mc, maddr.maddr, t->tls_array[i]);
361}
362
363static void xen_load_tls(struct thread_struct *t, unsigned int cpu)
364{
365 xen_mc_batch();
366
367 load_TLS_descriptor(t, cpu, 0);
368 load_TLS_descriptor(t, cpu, 1);
369 load_TLS_descriptor(t, cpu, 2);
370
371 xen_mc_issue(PARAVIRT_LAZY_CPU);
Jeremy Fitzhardinge8b84ad92007-07-17 18:37:06 -0700372
373 /*
374 * XXX sleazy hack: If we're being called in a lazy-cpu zone,
375 * it means we're in a context switch, and %gs has just been
376 * saved. This means we can zero it out to prevent faults on
377 * exit from the hypervisor if the next process has no %gs.
378 * Either way, it has been saved, and the new value will get
379 * loaded properly. This will go away as soon as Xen has been
380 * modified to not save/restore %gs for normal hypercalls.
381 */
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -0700382 if (paravirt_get_lazy_mode() == PARAVIRT_LAZY_CPU)
Jeremy Fitzhardinge8b84ad92007-07-17 18:37:06 -0700383 loadsegment(gs, 0);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700384}
385
386static void xen_write_ldt_entry(struct desc_struct *dt, int entrynum,
Glauber de Oliveira Costa75b8bb32008-01-30 13:31:13 +0100387 const void *ptr)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700388{
389 unsigned long lp = (unsigned long)&dt[entrynum];
390 xmaddr_t mach_lp = virt_to_machine(lp);
Glauber de Oliveira Costa75b8bb32008-01-30 13:31:13 +0100391 u64 entry = *(u64 *)ptr;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700392
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700393 preempt_disable();
394
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700395 xen_mc_flush();
396 if (HYPERVISOR_update_descriptor(mach_lp.maddr, entry))
397 BUG();
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700398
399 preempt_enable();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700400}
401
402static int cvt_gate_to_trap(int vector, u32 low, u32 high,
403 struct trap_info *info)
404{
405 u8 type, dpl;
406
407 type = (high >> 8) & 0x1f;
408 dpl = (high >> 13) & 3;
409
410 if (type != 0xf && type != 0xe)
411 return 0;
412
413 info->vector = vector;
414 info->address = (high & 0xffff0000) | (low & 0x0000ffff);
415 info->cs = low >> 16;
416 info->flags = dpl;
417 /* interrupt gates clear IF */
418 if (type == 0xe)
419 info->flags |= 4;
420
421 return 1;
422}
423
424/* Locations of each CPU's IDT */
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100425static DEFINE_PER_CPU(struct desc_ptr, idt_desc);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700426
427/* Set an IDT entry. If the entry is part of the current IDT, then
428 also update Xen. */
Glauber de Oliveira Costa8d947342008-01-30 13:31:12 +0100429static void xen_write_idt_entry(gate_desc *dt, int entrynum, const gate_desc *g)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700430{
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700431 unsigned long p = (unsigned long)&dt[entrynum];
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700432 unsigned long start, end;
433
434 preempt_disable();
435
436 start = __get_cpu_var(idt_desc).address;
437 end = start + __get_cpu_var(idt_desc).size + 1;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700438
439 xen_mc_flush();
440
Glauber de Oliveira Costa8d947342008-01-30 13:31:12 +0100441 native_write_idt_entry(dt, entrynum, g);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700442
443 if (p >= start && (p + 8) <= end) {
444 struct trap_info info[2];
Glauber de Oliveira Costa8d947342008-01-30 13:31:12 +0100445 u32 *desc = (u32 *)g;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700446
447 info[1].address = 0;
448
Glauber de Oliveira Costa8d947342008-01-30 13:31:12 +0100449 if (cvt_gate_to_trap(entrynum, desc[0], desc[1], &info[0]))
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700450 if (HYPERVISOR_set_trap_table(info))
451 BUG();
452 }
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700453
454 preempt_enable();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700455}
456
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100457static void xen_convert_trap_info(const struct desc_ptr *desc,
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700458 struct trap_info *traps)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700459{
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700460 unsigned in, out, count;
461
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700462 count = (desc->size+1) / 8;
463 BUG_ON(count > 256);
464
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700465 for (in = out = 0; in < count; in++) {
466 const u32 *entry = (u32 *)(desc->address + in * 8);
467
468 if (cvt_gate_to_trap(in, entry[0], entry[1], &traps[out]))
469 out++;
470 }
471 traps[out].address = 0;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700472}
473
474void xen_copy_trap_info(struct trap_info *traps)
475{
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100476 const struct desc_ptr *desc = &__get_cpu_var(idt_desc);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700477
478 xen_convert_trap_info(desc, traps);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700479}
480
481/* Load a new IDT into Xen. In principle this can be per-CPU, so we
482 hold a spinlock to protect the static traps[] array (static because
483 it avoids allocation, and saves stack space). */
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100484static void xen_load_idt(const struct desc_ptr *desc)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700485{
486 static DEFINE_SPINLOCK(lock);
487 static struct trap_info traps[257];
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700488
489 spin_lock(&lock);
490
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700491 __get_cpu_var(idt_desc) = *desc;
492
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700493 xen_convert_trap_info(desc, traps);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700494
495 xen_mc_flush();
496 if (HYPERVISOR_set_trap_table(traps))
497 BUG();
498
499 spin_unlock(&lock);
500}
501
502/* Write a GDT descriptor entry. Ignore LDT descriptors, since
503 they're handled differently. */
504static void xen_write_gdt_entry(struct desc_struct *dt, int entry,
Glauber de Oliveira Costa014b15b2008-01-30 13:31:13 +0100505 const void *desc, int type)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700506{
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700507 preempt_disable();
508
Glauber de Oliveira Costa014b15b2008-01-30 13:31:13 +0100509 switch (type) {
510 case DESC_LDT:
511 case DESC_TSS:
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700512 /* ignore */
513 break;
514
515 default: {
516 xmaddr_t maddr = virt_to_machine(&dt[entry]);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700517
518 xen_mc_flush();
Glauber de Oliveira Costa014b15b2008-01-30 13:31:13 +0100519 if (HYPERVISOR_update_descriptor(maddr.maddr, *(u64 *)desc))
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700520 BUG();
521 }
522
523 }
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700524
525 preempt_enable();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700526}
527
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100528static void xen_load_sp0(struct tss_struct *tss,
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700529 struct thread_struct *thread)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700530{
531 struct multicall_space mcs = xen_mc_entry(0);
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100532 MULTI_stack_switch(mcs.mc, __KERNEL_DS, thread->sp0);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700533 xen_mc_issue(PARAVIRT_LAZY_CPU);
534}
535
536static void xen_set_iopl_mask(unsigned mask)
537{
538 struct physdev_set_iopl set_iopl;
539
540 /* Force the change at ring 0. */
541 set_iopl.iopl = (mask == 0) ? 1 : (mask >> 12) & 3;
542 HYPERVISOR_physdev_op(PHYSDEVOP_set_iopl, &set_iopl);
543}
544
545static void xen_io_delay(void)
546{
547}
548
549#ifdef CONFIG_X86_LOCAL_APIC
Thomas Gleixner42e0a9aa2008-01-30 13:30:15 +0100550static u32 xen_apic_read(unsigned long reg)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700551{
552 return 0;
553}
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700554
Thomas Gleixner42e0a9aa2008-01-30 13:30:15 +0100555static void xen_apic_write(unsigned long reg, u32 val)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700556{
557 /* Warn to see if there's any stray references */
558 WARN_ON(1);
559}
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700560#endif
561
562static void xen_flush_tlb(void)
563{
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700564 struct mmuext_op *op;
Jeremy Fitzhardinge41e332b2008-04-02 10:54:09 -0700565 struct multicall_space mcs;
566
567 preempt_disable();
568
569 mcs = xen_mc_entry(sizeof(*op));
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700570
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700571 op = mcs.args;
572 op->cmd = MMUEXT_TLB_FLUSH_LOCAL;
573 MULTI_mmuext_op(mcs.mc, op, 1, NULL, DOMID_SELF);
574
575 xen_mc_issue(PARAVIRT_LAZY_MMU);
Jeremy Fitzhardinge41e332b2008-04-02 10:54:09 -0700576
577 preempt_enable();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700578}
579
580static void xen_flush_tlb_single(unsigned long addr)
581{
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700582 struct mmuext_op *op;
Jeremy Fitzhardinge41e332b2008-04-02 10:54:09 -0700583 struct multicall_space mcs;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700584
Jeremy Fitzhardinge41e332b2008-04-02 10:54:09 -0700585 preempt_disable();
586
587 mcs = xen_mc_entry(sizeof(*op));
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700588 op = mcs.args;
589 op->cmd = MMUEXT_INVLPG_LOCAL;
590 op->arg1.linear_addr = addr & PAGE_MASK;
591 MULTI_mmuext_op(mcs.mc, op, 1, NULL, DOMID_SELF);
592
593 xen_mc_issue(PARAVIRT_LAZY_MMU);
Jeremy Fitzhardinge41e332b2008-04-02 10:54:09 -0700594
595 preempt_enable();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700596}
597
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700598static void xen_flush_tlb_others(const cpumask_t *cpus, struct mm_struct *mm,
599 unsigned long va)
600{
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700601 struct {
602 struct mmuext_op op;
603 cpumask_t mask;
604 } *args;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700605 cpumask_t cpumask = *cpus;
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700606 struct multicall_space mcs;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700607
608 /*
609 * A couple of (to be removed) sanity checks:
610 *
611 * - current CPU must not be in mask
612 * - mask must exist :)
613 */
614 BUG_ON(cpus_empty(cpumask));
615 BUG_ON(cpu_isset(smp_processor_id(), cpumask));
616 BUG_ON(!mm);
617
618 /* If a CPU which we ran on has gone down, OK. */
619 cpus_and(cpumask, cpumask, cpu_online_map);
620 if (cpus_empty(cpumask))
621 return;
622
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700623 mcs = xen_mc_entry(sizeof(*args));
624 args = mcs.args;
625 args->mask = cpumask;
626 args->op.arg2.vcpumask = &args->mask;
627
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700628 if (va == TLB_FLUSH_ALL) {
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700629 args->op.cmd = MMUEXT_TLB_FLUSH_MULTI;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700630 } else {
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700631 args->op.cmd = MMUEXT_INVLPG_MULTI;
632 args->op.arg1.linear_addr = va;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700633 }
634
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700635 MULTI_mmuext_op(mcs.mc, &args->op, 1, NULL, DOMID_SELF);
636
637 xen_mc_issue(PARAVIRT_LAZY_MMU);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700638}
639
Jeremy Fitzhardinge7b1333a2008-05-26 23:31:01 +0100640static void xen_clts(void)
641{
642 struct multicall_space mcs;
643
644 mcs = xen_mc_entry(0);
645
646 MULTI_fpu_taskswitch(mcs.mc, 0);
647
648 xen_mc_issue(PARAVIRT_LAZY_CPU);
649}
650
651static void xen_write_cr0(unsigned long cr0)
652{
653 struct multicall_space mcs;
654
655 /* Only pay attention to cr0.TS; everything else is
656 ignored. */
657 mcs = xen_mc_entry(0);
658
659 MULTI_fpu_taskswitch(mcs.mc, (cr0 & X86_CR0_TS) != 0);
660
661 xen_mc_issue(PARAVIRT_LAZY_CPU);
662}
663
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700664static void xen_write_cr2(unsigned long cr2)
665{
666 x86_read_percpu(xen_vcpu)->arch.cr2 = cr2;
667}
668
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700669static unsigned long xen_read_cr2(void)
670{
671 return x86_read_percpu(xen_vcpu)->arch.cr2;
672}
673
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700674static unsigned long xen_read_cr2_direct(void)
675{
676 return x86_read_percpu(xen_vcpu_info.arch.cr2);
677}
678
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700679static void xen_write_cr4(unsigned long cr4)
680{
Jeremy Fitzhardinge2956a352008-05-26 23:31:04 +0100681 cr4 &= ~X86_CR4_PGE;
682 cr4 &= ~X86_CR4_PSE;
683
684 native_write_cr4(cr4);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700685}
686
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700687static unsigned long xen_read_cr3(void)
688{
689 return x86_read_percpu(xen_cr3);
690}
691
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -0700692static void set_current_cr3(void *v)
693{
694 x86_write_percpu(xen_current_cr3, (unsigned long)v);
695}
696
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700697static void xen_write_cr3(unsigned long cr3)
698{
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -0700699 struct mmuext_op *op;
700 struct multicall_space mcs;
701 unsigned long mfn = pfn_to_mfn(PFN_DOWN(cr3));
702
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700703 BUG_ON(preemptible());
704
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -0700705 mcs = xen_mc_entry(sizeof(*op)); /* disables interrupts */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700706
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -0700707 /* Update while interrupts are disabled, so its atomic with
708 respect to ipis */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700709 x86_write_percpu(xen_cr3, cr3);
710
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -0700711 op = mcs.args;
712 op->cmd = MMUEXT_NEW_BASEPTR;
713 op->arg1.mfn = mfn;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700714
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -0700715 MULTI_mmuext_op(mcs.mc, op, 1, NULL, DOMID_SELF);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700716
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -0700717 /* Update xen_update_cr3 once the batch has actually
718 been submitted. */
719 xen_mc_callback(set_current_cr3, (void *)cr3);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700720
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -0700721 xen_mc_issue(PARAVIRT_LAZY_CPU); /* interrupts restored */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700722}
723
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700724/* Early in boot, while setting up the initial pagetable, assume
725 everything is pinned. */
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700726static __init void xen_alloc_pte_init(struct mm_struct *mm, u32 pfn)
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700727{
Jeremy Fitzhardingeaf7ae3b2008-04-02 10:54:12 -0700728#ifdef CONFIG_FLATMEM
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700729 BUG_ON(mem_map); /* should only be used early */
Jeremy Fitzhardingeaf7ae3b2008-04-02 10:54:12 -0700730#endif
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700731 make_lowmem_page_readonly(__va(PFN_PHYS(pfn)));
732}
733
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700734/* Early release_pte assumes that all pts are pinned, since there's
Jeremy Fitzhardinge1c70e9b2008-01-30 13:33:39 +0100735 only init_mm and anything attached to that is pinned. */
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700736static void xen_release_pte_init(u32 pfn)
Jeremy Fitzhardinge1c70e9b2008-01-30 13:33:39 +0100737{
738 make_lowmem_page_readwrite(__va(PFN_PHYS(pfn)));
739}
740
Mark McLoughlinf6433702008-04-02 15:36:36 +0100741static void pin_pagetable_pfn(unsigned cmd, unsigned long pfn)
Jeremy Fitzhardinge74260712007-10-16 11:51:30 -0700742{
743 struct mmuext_op op;
Mark McLoughlinf6433702008-04-02 15:36:36 +0100744 op.cmd = cmd;
Jeremy Fitzhardinge74260712007-10-16 11:51:30 -0700745 op.arg1.mfn = pfn_to_mfn(pfn);
746 if (HYPERVISOR_mmuext_op(&op, 1, NULL, DOMID_SELF))
747 BUG();
748}
749
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700750/* This needs to make sure the new pte page is pinned iff its being
751 attached to a pinned pagetable. */
Jeremy Fitzhardinge1c70e9b2008-01-30 13:33:39 +0100752static void xen_alloc_ptpage(struct mm_struct *mm, u32 pfn, unsigned level)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700753{
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700754 struct page *page = pfn_to_page(pfn);
755
756 if (PagePinned(virt_to_page(mm->pgd))) {
757 SetPagePinned(page);
758
Jeremy Fitzhardinge74260712007-10-16 11:51:30 -0700759 if (!PageHighMem(page)) {
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700760 make_lowmem_page_readonly(__va(PFN_PHYS(pfn)));
Mark McLoughlinf6433702008-04-02 15:36:36 +0100761 if (level == PT_PTE)
762 pin_pagetable_pfn(MMUEXT_PIN_L1_TABLE, pfn);
Jeremy Fitzhardinge74260712007-10-16 11:51:30 -0700763 } else
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700764 /* make sure there are no stray mappings of
765 this page */
766 kmap_flush_unused();
767 }
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700768}
769
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700770static void xen_alloc_pte(struct mm_struct *mm, u32 pfn)
Jeremy Fitzhardinge1c70e9b2008-01-30 13:33:39 +0100771{
Mark McLoughlinf6433702008-04-02 15:36:36 +0100772 xen_alloc_ptpage(mm, pfn, PT_PTE);
Jeremy Fitzhardinge1c70e9b2008-01-30 13:33:39 +0100773}
774
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700775static void xen_alloc_pmd(struct mm_struct *mm, u32 pfn)
Jeremy Fitzhardinge1c70e9b2008-01-30 13:33:39 +0100776{
Mark McLoughlinf6433702008-04-02 15:36:36 +0100777 xen_alloc_ptpage(mm, pfn, PT_PMD);
Jeremy Fitzhardinge1c70e9b2008-01-30 13:33:39 +0100778}
779
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700780/* This should never happen until we're OK to use struct page */
Mark McLoughlinf6433702008-04-02 15:36:36 +0100781static void xen_release_ptpage(u32 pfn, unsigned level)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700782{
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700783 struct page *page = pfn_to_page(pfn);
784
785 if (PagePinned(page)) {
Jeremy Fitzhardinge74260712007-10-16 11:51:30 -0700786 if (!PageHighMem(page)) {
Mark McLoughlina684d692008-04-02 15:36:37 +0100787 if (level == PT_PTE)
788 pin_pagetable_pfn(MMUEXT_UNPIN_TABLE, pfn);
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700789 make_lowmem_page_readwrite(__va(PFN_PHYS(pfn)));
Jeremy Fitzhardinge74260712007-10-16 11:51:30 -0700790 }
Mark McLoughlinc946c7d2008-04-02 15:36:38 +0100791 ClearPagePinned(page);
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700792 }
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700793}
794
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700795static void xen_release_pte(u32 pfn)
Mark McLoughlinf6433702008-04-02 15:36:36 +0100796{
797 xen_release_ptpage(pfn, PT_PTE);
798}
799
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700800static void xen_release_pmd(u32 pfn)
Mark McLoughlinf6433702008-04-02 15:36:36 +0100801{
802 xen_release_ptpage(pfn, PT_PMD);
803}
804
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700805#ifdef CONFIG_HIGHPTE
806static void *xen_kmap_atomic_pte(struct page *page, enum km_type type)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700807{
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700808 pgprot_t prot = PAGE_KERNEL;
809
810 if (PagePinned(page))
811 prot = PAGE_KERNEL_RO;
812
813 if (0 && PageHighMem(page))
814 printk("mapping highpte %lx type %d prot %s\n",
815 page_to_pfn(page), type,
816 (unsigned long)pgprot_val(prot) & _PAGE_RW ? "WRITE" : "READ");
817
818 return kmap_atomic_prot(page, type, prot);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700819}
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700820#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700821
Jeremy Fitzhardinge9a4029f2007-07-17 18:37:05 -0700822static __init pte_t mask_rw_pte(pte_t *ptep, pte_t pte)
823{
824 /* If there's an existing pte, then don't allow _PAGE_RW to be set */
825 if (pte_val_ma(*ptep) & _PAGE_PRESENT)
826 pte = __pte_ma(((pte_val_ma(*ptep) & _PAGE_RW) | ~_PAGE_RW) &
827 pte_val_ma(pte));
828
829 return pte;
830}
831
832/* Init-time set_pte while constructing initial pagetables, which
833 doesn't allow RO pagetable pages to be remapped RW */
834static __init void xen_set_pte_init(pte_t *ptep, pte_t pte)
835{
836 pte = mask_rw_pte(ptep, pte);
837
838 xen_set_pte(ptep, pte);
839}
840
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700841static __init void xen_pagetable_setup_start(pgd_t *base)
842{
843 pgd_t *xen_pgd = (pgd_t *)xen_start_info->pt_base;
Jeremy Fitzhardinge3843fc22008-05-09 12:05:57 +0100844 int i;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700845
Jeremy Fitzhardinge9a4029f2007-07-17 18:37:05 -0700846 /* special set_pte for pagetable initialization */
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700847 pv_mmu_ops.set_pte = xen_set_pte_init;
Jeremy Fitzhardinge9a4029f2007-07-17 18:37:05 -0700848
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700849 init_mm.pgd = base;
850 /*
Jeremy Fitzhardinge3843fc22008-05-09 12:05:57 +0100851 * copy top-level of Xen-supplied pagetable into place. This
852 * is a stand-in while we copy the pmd pages.
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700853 */
854 memcpy(base, xen_pgd, PTRS_PER_PGD * sizeof(pgd_t));
855
Jeremy Fitzhardinge3843fc22008-05-09 12:05:57 +0100856 /*
857 * For PAE, need to allocate new pmds, rather than
858 * share Xen's, since Xen doesn't like pmd's being
859 * shared between address spaces.
860 */
861 for (i = 0; i < PTRS_PER_PGD; i++) {
862 if (pgd_val_ma(xen_pgd[i]) & _PAGE_PRESENT) {
863 pmd_t *pmd = (pmd_t *)alloc_bootmem_low_pages(PAGE_SIZE);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700864
Jeremy Fitzhardinge3843fc22008-05-09 12:05:57 +0100865 memcpy(pmd, (void *)pgd_page_vaddr(xen_pgd[i]),
866 PAGE_SIZE);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700867
Jeremy Fitzhardinge3843fc22008-05-09 12:05:57 +0100868 make_lowmem_page_readonly(pmd);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700869
Jeremy Fitzhardinge3843fc22008-05-09 12:05:57 +0100870 set_pgd(&base[i], __pgd(1 + __pa(pmd)));
871 } else
872 pgd_clear(&base[i]);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700873 }
874
875 /* make sure zero_page is mapped RO so we can use it in pagetables */
876 make_lowmem_page_readonly(empty_zero_page);
877 make_lowmem_page_readonly(base);
878 /*
879 * Switch to new pagetable. This is done before
880 * pagetable_init has done anything so that the new pages
881 * added to the table can be prepared properly for Xen.
882 */
883 xen_write_cr3(__pa(base));
Jeremy Fitzhardinge2b540782008-02-13 16:20:35 +0100884
885 /* Unpin initial Xen pagetable */
886 pin_pagetable_pfn(MMUEXT_UNPIN_TABLE,
887 PFN_DOWN(__pa(xen_start_info->pt_base)));
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700888}
889
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +0100890void xen_setup_shared_info(void)
Jeremy Fitzhardinge2e8fe712008-03-17 16:36:53 -0700891{
892 if (!xen_feature(XENFEAT_auto_translated_physmap)) {
893 unsigned long addr = fix_to_virt(FIX_PARAVIRT_BOOTMAP);
894
895 /*
896 * Create a mapping for the shared info page.
897 * Should be set_fixmap(), but shared_info is a machine
898 * address with no corresponding pseudo-phys address.
899 */
900 set_pte_mfn(addr,
901 PFN_DOWN(xen_start_info->shared_info),
902 PAGE_KERNEL);
903
904 HYPERVISOR_shared_info = (struct shared_info *)addr;
905 } else
906 HYPERVISOR_shared_info =
907 (struct shared_info *)__va(xen_start_info->shared_info);
908
909#ifndef CONFIG_SMP
910 /* In UP this is as good a place as any to set up shared info */
911 xen_setup_vcpu_info_placement();
912#endif
Jeremy Fitzhardinged5edbc12008-05-26 23:31:22 +0100913
914 xen_setup_mfn_list_list();
Jeremy Fitzhardinge2e8fe712008-03-17 16:36:53 -0700915}
916
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700917static __init void xen_pagetable_setup_done(pgd_t *base)
918{
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700919 /* This will work as long as patching hasn't happened yet
920 (which it hasn't) */
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700921 pv_mmu_ops.alloc_pte = xen_alloc_pte;
922 pv_mmu_ops.alloc_pmd = xen_alloc_pmd;
923 pv_mmu_ops.release_pte = xen_release_pte;
924 pv_mmu_ops.release_pmd = xen_release_pmd;
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700925 pv_mmu_ops.set_pte = xen_set_pte;
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700926
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +0100927 xen_setup_shared_info();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700928
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700929 /* Actually pin the pagetable down, but we can't set PG_pinned
930 yet because the page structures don't exist yet. */
Jeremy Fitzhardinge3843fc22008-05-09 12:05:57 +0100931 pin_pagetable_pfn(MMUEXT_PIN_L3_TABLE, PFN_DOWN(__pa(base)));
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700932}
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700933
Jeremy Fitzhardingee2426cf2008-05-31 01:24:27 +0100934static __init void xen_post_allocator_init(void)
935{
936 pv_mmu_ops.set_pmd = xen_set_pmd;
937 pv_mmu_ops.set_pud = xen_set_pud;
938
939 xen_mark_init_mm_pinned();
940}
941
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700942/* This is called once we have the cpu_possible_map */
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +0100943void xen_setup_vcpu_info_placement(void)
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700944{
945 int cpu;
946
947 for_each_possible_cpu(cpu)
948 xen_vcpu_setup(cpu);
949
950 /* xen_vcpu_setup managed to place the vcpu_info within the
951 percpu area for all cpus, so make use of it */
952 if (have_vcpu_info_placement) {
953 printk(KERN_INFO "Xen: using vcpu_info placement\n");
954
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700955 pv_irq_ops.save_fl = xen_save_fl_direct;
956 pv_irq_ops.restore_fl = xen_restore_fl_direct;
957 pv_irq_ops.irq_disable = xen_irq_disable_direct;
958 pv_irq_ops.irq_enable = xen_irq_enable_direct;
959 pv_mmu_ops.read_cr2 = xen_read_cr2_direct;
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700960 }
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700961}
962
Andi Kleenab144f52007-08-10 22:31:03 +0200963static unsigned xen_patch(u8 type, u16 clobbers, void *insnbuf,
964 unsigned long addr, unsigned len)
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700965{
966 char *start, *end, *reloc;
967 unsigned ret;
968
969 start = end = reloc = NULL;
970
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700971#define SITE(op, x) \
972 case PARAVIRT_PATCH(op.x): \
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700973 if (have_vcpu_info_placement) { \
974 start = (char *)xen_##x##_direct; \
975 end = xen_##x##_direct_end; \
976 reloc = xen_##x##_direct_reloc; \
977 } \
978 goto patch_site
979
980 switch (type) {
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700981 SITE(pv_irq_ops, irq_enable);
982 SITE(pv_irq_ops, irq_disable);
983 SITE(pv_irq_ops, save_fl);
984 SITE(pv_irq_ops, restore_fl);
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700985#undef SITE
986
987 patch_site:
988 if (start == NULL || (end-start) > len)
989 goto default_patch;
990
Andi Kleenab144f52007-08-10 22:31:03 +0200991 ret = paravirt_patch_insns(insnbuf, len, start, end);
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700992
993 /* Note: because reloc is assigned from something that
994 appears to be an array, gcc assumes it's non-null,
995 but doesn't know its relationship with start and
996 end. */
997 if (reloc > start && reloc < end) {
998 int reloc_off = reloc - start;
Andi Kleenab144f52007-08-10 22:31:03 +0200999 long *relocp = (long *)(insnbuf + reloc_off);
1000 long delta = start - (char *)addr;
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -07001001
1002 *relocp += delta;
1003 }
1004 break;
1005
1006 default_patch:
1007 default:
Andi Kleenab144f52007-08-10 22:31:03 +02001008 ret = paravirt_patch_default(type, clobbers, insnbuf,
1009 addr, len);
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -07001010 break;
1011 }
1012
1013 return ret;
1014}
1015
Jeremy Fitzhardingeaeaaa592008-06-17 11:42:01 -07001016static void xen_set_fixmap(unsigned idx, unsigned long phys, pgprot_t prot)
1017{
1018 pte_t pte;
1019
1020 phys >>= PAGE_SHIFT;
1021
1022 switch (idx) {
1023 case FIX_BTMAP_END ... FIX_BTMAP_BEGIN:
1024#ifdef CONFIG_X86_F00F_BUG
1025 case FIX_F00F_IDT:
1026#endif
1027 case FIX_WP_TEST:
1028 case FIX_VDSO:
1029#ifdef CONFIG_X86_LOCAL_APIC
1030 case FIX_APIC_BASE: /* maps dummy local APIC */
1031#endif
1032 pte = pfn_pte(phys, prot);
1033 break;
1034
1035 default:
1036 pte = mfn_pte(phys, prot);
1037 break;
1038 }
1039
1040 __native_set_fixmap(idx, pte);
1041}
1042
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001043static const struct pv_info xen_info __initdata = {
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001044 .paravirt_enabled = 1,
1045 .shared_kernel_pmd = 0,
1046
1047 .name = "Xen",
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001048};
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001049
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001050static const struct pv_init_ops xen_init_ops __initdata = {
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -07001051 .patch = xen_patch,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001052
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001053 .banner = xen_banner,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001054 .memory_setup = xen_memory_setup,
1055 .arch_setup = xen_arch_setup,
Jeremy Fitzhardingee2426cf2008-05-31 01:24:27 +01001056 .post_allocator_init = xen_post_allocator_init,
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001057};
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001058
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001059static const struct pv_time_ops xen_time_ops __initdata = {
Jeremy Fitzhardinge15c84732007-07-17 18:37:05 -07001060 .time_init = xen_time_init,
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001061
Jeremy Fitzhardinge15c84732007-07-17 18:37:05 -07001062 .set_wallclock = xen_set_wallclock,
1063 .get_wallclock = xen_get_wallclock,
1064 .get_cpu_khz = xen_cpu_khz,
Jeremy Fitzhardingeab550282007-07-17 18:37:05 -07001065 .sched_clock = xen_sched_clock,
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001066};
Jeremy Fitzhardinge15c84732007-07-17 18:37:05 -07001067
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001068static const struct pv_cpu_ops xen_cpu_ops __initdata = {
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001069 .cpuid = xen_cpuid,
1070
1071 .set_debugreg = xen_set_debugreg,
1072 .get_debugreg = xen_get_debugreg,
1073
Jeremy Fitzhardinge7b1333a2008-05-26 23:31:01 +01001074 .clts = xen_clts,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001075
1076 .read_cr0 = native_read_cr0,
Jeremy Fitzhardinge7b1333a2008-05-26 23:31:01 +01001077 .write_cr0 = xen_write_cr0,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001078
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001079 .read_cr4 = native_read_cr4,
1080 .read_cr4_safe = native_read_cr4_safe,
1081 .write_cr4 = xen_write_cr4,
1082
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001083 .wbinvd = native_wbinvd,
1084
1085 .read_msr = native_read_msr_safe,
1086 .write_msr = native_write_msr_safe,
1087 .read_tsc = native_read_tsc,
1088 .read_pmc = native_read_pmc,
1089
Jeremy Fitzhardinge81e103f2008-04-17 17:40:51 +02001090 .iret = xen_iret,
Jeremy Fitzhardingee2a81ba2008-03-17 16:37:17 -07001091 .irq_enable_syscall_ret = xen_sysexit,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001092
1093 .load_tr_desc = paravirt_nop,
1094 .set_ldt = xen_set_ldt,
1095 .load_gdt = xen_load_gdt,
1096 .load_idt = xen_load_idt,
1097 .load_tls = xen_load_tls,
1098
1099 .store_gdt = native_store_gdt,
1100 .store_idt = native_store_idt,
1101 .store_tr = xen_store_tr,
1102
1103 .write_ldt_entry = xen_write_ldt_entry,
1104 .write_gdt_entry = xen_write_gdt_entry,
1105 .write_idt_entry = xen_write_idt_entry,
H. Peter Anvinfaca6222008-01-30 13:31:02 +01001106 .load_sp0 = xen_load_sp0,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001107
1108 .set_iopl_mask = xen_set_iopl_mask,
1109 .io_delay = xen_io_delay,
1110
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -07001111 .lazy_mode = {
1112 .enter = paravirt_enter_lazy_cpu,
1113 .leave = xen_leave_lazy,
1114 },
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001115};
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001116
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001117static const struct pv_irq_ops xen_irq_ops __initdata = {
1118 .init_IRQ = xen_init_IRQ,
1119 .save_fl = xen_save_fl,
1120 .restore_fl = xen_restore_fl,
1121 .irq_disable = xen_irq_disable,
1122 .irq_enable = xen_irq_enable,
1123 .safe_halt = xen_safe_halt,
1124 .halt = xen_halt,
1125};
1126
1127static const struct pv_apic_ops xen_apic_ops __initdata = {
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001128#ifdef CONFIG_X86_LOCAL_APIC
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -07001129 .apic_write = xen_apic_write,
1130 .apic_write_atomic = xen_apic_write,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001131 .apic_read = xen_apic_read,
1132 .setup_boot_clock = paravirt_nop,
1133 .setup_secondary_clock = paravirt_nop,
1134 .startup_ipi_hook = paravirt_nop,
1135#endif
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001136};
1137
1138static const struct pv_mmu_ops xen_mmu_ops __initdata = {
1139 .pagetable_setup_start = xen_pagetable_setup_start,
1140 .pagetable_setup_done = xen_pagetable_setup_done,
1141
1142 .read_cr2 = xen_read_cr2,
1143 .write_cr2 = xen_write_cr2,
1144
1145 .read_cr3 = xen_read_cr3,
1146 .write_cr3 = xen_write_cr3,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001147
1148 .flush_tlb_user = xen_flush_tlb,
1149 .flush_tlb_kernel = xen_flush_tlb,
1150 .flush_tlb_single = xen_flush_tlb_single,
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -07001151 .flush_tlb_others = xen_flush_tlb_others,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001152
1153 .pte_update = paravirt_nop,
1154 .pte_update_defer = paravirt_nop,
1155
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -07001156 .alloc_pte = xen_alloc_pte_init,
1157 .release_pte = xen_release_pte_init,
1158 .alloc_pmd = xen_alloc_pte_init,
1159 .alloc_pmd_clone = paravirt_nop,
1160 .release_pmd = xen_release_pte_init,
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -07001161
1162#ifdef CONFIG_HIGHPTE
1163 .kmap_atomic_pte = xen_kmap_atomic_pte,
1164#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001165
Jeremy Fitzhardinge9a4029f2007-07-17 18:37:05 -07001166 .set_pte = NULL, /* see xen_pagetable_setup_* */
Jeremy Fitzhardinge3b827c12007-07-17 18:37:04 -07001167 .set_pte_at = xen_set_pte_at,
Jeremy Fitzhardingee2426cf2008-05-31 01:24:27 +01001168 .set_pmd = xen_set_pmd_hyper,
Jeremy Fitzhardinge3b827c12007-07-17 18:37:04 -07001169
Jeremy Fitzhardinge08b882c2008-06-16 04:30:01 -07001170 .ptep_modify_prot_start = __ptep_modify_prot_start,
1171 .ptep_modify_prot_commit = __ptep_modify_prot_commit,
1172
Jeremy Fitzhardinge3b827c12007-07-17 18:37:04 -07001173 .pte_val = xen_pte_val,
Jeremy Fitzhardingea15af1c2008-05-26 23:31:06 +01001174 .pte_flags = native_pte_val,
Jeremy Fitzhardinge3b827c12007-07-17 18:37:04 -07001175 .pgd_val = xen_pgd_val,
1176
1177 .make_pte = xen_make_pte,
1178 .make_pgd = xen_make_pgd,
1179
Jeremy Fitzhardinge3b827c12007-07-17 18:37:04 -07001180 .set_pte_atomic = xen_set_pte_atomic,
1181 .set_pte_present = xen_set_pte_at,
Jeremy Fitzhardingee2426cf2008-05-31 01:24:27 +01001182 .set_pud = xen_set_pud_hyper,
Jeremy Fitzhardinge3b827c12007-07-17 18:37:04 -07001183 .pte_clear = xen_pte_clear,
1184 .pmd_clear = xen_pmd_clear,
1185
1186 .make_pmd = xen_make_pmd,
1187 .pmd_val = xen_pmd_val,
Jeremy Fitzhardinge3b827c12007-07-17 18:37:04 -07001188
1189 .activate_mm = xen_activate_mm,
1190 .dup_mmap = xen_dup_mmap,
1191 .exit_mmap = xen_exit_mmap,
1192
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -07001193 .lazy_mode = {
1194 .enter = paravirt_enter_lazy_mmu,
1195 .leave = xen_leave_lazy,
1196 },
Jeremy Fitzhardingeaeaaa592008-06-17 11:42:01 -07001197
1198 .set_fixmap = xen_set_fixmap,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001199};
1200
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -07001201#ifdef CONFIG_SMP
1202static const struct smp_ops xen_smp_ops __initdata = {
1203 .smp_prepare_boot_cpu = xen_smp_prepare_boot_cpu,
1204 .smp_prepare_cpus = xen_smp_prepare_cpus,
1205 .cpu_up = xen_cpu_up,
1206 .smp_cpus_done = xen_smp_cpus_done,
1207
1208 .smp_send_stop = xen_smp_send_stop,
1209 .smp_send_reschedule = xen_smp_send_reschedule,
1210 .smp_call_function_mask = xen_smp_call_function_mask,
1211};
1212#endif /* CONFIG_SMP */
1213
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -07001214static void xen_reboot(int reason)
1215{
Jeremy Fitzhardinge349c709f2008-05-26 23:31:02 +01001216 struct sched_shutdown r = { .reason = reason };
1217
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -07001218#ifdef CONFIG_SMP
1219 smp_send_stop();
1220#endif
1221
Jeremy Fitzhardinge349c709f2008-05-26 23:31:02 +01001222 if (HYPERVISOR_sched_op(SCHEDOP_shutdown, &r))
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -07001223 BUG();
1224}
1225
1226static void xen_restart(char *msg)
1227{
1228 xen_reboot(SHUTDOWN_reboot);
1229}
1230
1231static void xen_emergency_restart(void)
1232{
1233 xen_reboot(SHUTDOWN_reboot);
1234}
1235
1236static void xen_machine_halt(void)
1237{
1238 xen_reboot(SHUTDOWN_poweroff);
1239}
1240
1241static void xen_crash_shutdown(struct pt_regs *regs)
1242{
1243 xen_reboot(SHUTDOWN_crash);
1244}
1245
1246static const struct machine_ops __initdata xen_machine_ops = {
1247 .restart = xen_restart,
1248 .halt = xen_machine_halt,
1249 .power_off = xen_machine_halt,
1250 .shutdown = xen_machine_halt,
1251 .crash_shutdown = xen_crash_shutdown,
1252 .emergency_restart = xen_emergency_restart,
1253};
1254
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -07001255
Jeremy Fitzhardingefb1d8402007-10-16 11:51:31 -07001256static void __init xen_reserve_top(void)
1257{
1258 unsigned long top = HYPERVISOR_VIRT_START;
1259 struct xen_platform_parameters pp;
1260
1261 if (HYPERVISOR_xen_version(XENVER_platform_parameters, &pp) == 0)
1262 top = pp.virt_start;
1263
1264 reserve_top_address(-top + 2 * PAGE_SIZE);
1265}
1266
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001267/* First C function to be called on Xen boot */
1268asmlinkage void __init xen_start_kernel(void)
1269{
1270 pgd_t *pgd;
1271
1272 if (!xen_start_info)
1273 return;
1274
Jeremy Fitzhardinge7999f4b2007-12-10 13:00:41 -08001275 BUG_ON(memcmp(xen_start_info->magic, "xen-3", 5) != 0);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001276
Jeremy Fitzhardingee57778a2008-06-16 04:30:02 -07001277 xen_setup_features();
1278
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001279 /* Install Xen paravirt ops */
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001280 pv_info = xen_info;
1281 pv_init_ops = xen_init_ops;
1282 pv_time_ops = xen_time_ops;
1283 pv_cpu_ops = xen_cpu_ops;
1284 pv_irq_ops = xen_irq_ops;
1285 pv_apic_ops = xen_apic_ops;
1286 pv_mmu_ops = xen_mmu_ops;
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001287
Jeremy Fitzhardingee57778a2008-06-16 04:30:02 -07001288 if (xen_feature(XENFEAT_mmu_pt_update_preserve_ad)) {
1289 pv_mmu_ops.ptep_modify_prot_start = xen_ptep_modify_prot_start;
1290 pv_mmu_ops.ptep_modify_prot_commit = xen_ptep_modify_prot_commit;
1291 }
1292
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -07001293 machine_ops = xen_machine_ops;
1294
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -07001295#ifdef CONFIG_SMP
1296 smp_ops = xen_smp_ops;
1297#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001298
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001299 /* Get mfn list */
1300 if (!xen_feature(XENFEAT_auto_translated_physmap))
Jeremy Fitzhardinged451bb72008-05-26 23:31:18 +01001301 xen_build_dynamic_phys_to_machine();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001302
1303 pgd = (pgd_t *)xen_start_info->pt_base;
1304
Yinghai Luf0d43102008-05-29 12:56:36 -07001305 init_pg_tables_start = __pa(pgd);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001306 init_pg_tables_end = __pa(pgd) + xen_start_info->nr_pt_frames*PAGE_SIZE;
Jeremy Fitzhardinge88a68462008-06-16 14:54:51 -07001307 max_pfn_mapped = (init_pg_tables_end + 512*1024) >> PAGE_SHIFT;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001308
1309 init_mm.pgd = pgd; /* use the Xen pagetables to start */
1310
1311 /* keep using Xen gdt for now; no urgent need to change it */
1312
1313 x86_write_percpu(xen_cr3, __pa(pgd));
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -07001314 x86_write_percpu(xen_current_cr3, __pa(pgd));
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -07001315
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -07001316 /* Don't do the full vcpu_info placement stuff until we have a
Jeremy Fitzhardinge2e8fe712008-03-17 16:36:53 -07001317 possible map and a non-dummy shared_info. */
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -07001318 per_cpu(xen_vcpu, 0) = &HYPERVISOR_shared_info->vcpu_info[0];
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001319
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001320 pv_info.kernel_rpl = 1;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001321 if (xen_feature(XENFEAT_supervisor_mode_kernel))
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001322 pv_info.kernel_rpl = 0;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001323
Jeremy Fitzhardingeeb179e42008-06-16 15:01:53 -07001324 /* Prevent unwanted bits from being set in PTEs. */
1325 __supported_pte_mask &= ~_PAGE_GLOBAL;
1326 if (!is_initial_xendomain())
1327 __supported_pte_mask &= ~(_PAGE_PWT | _PAGE_PCD);
1328
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001329 /* set the limit of our address space */
Jeremy Fitzhardingefb1d8402007-10-16 11:51:31 -07001330 xen_reserve_top();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001331
1332 /* set up basic CPUID stuff */
1333 cpu_detect(&new_cpu_data);
1334 new_cpu_data.hard_math = 1;
1335 new_cpu_data.x86_capability[0] = cpuid_edx(1);
1336
1337 /* Poke various useful things into boot_params */
H. Peter Anvin30c82642007-10-15 17:13:22 -07001338 boot_params.hdr.type_of_loader = (9 << 4) | 0;
1339 boot_params.hdr.ramdisk_image = xen_start_info->mod_start
1340 ? __pa(xen_start_info->mod_start) : 0;
1341 boot_params.hdr.ramdisk_size = xen_start_info->mod_len;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001342
Markus Armbruster9e124fe2008-05-26 23:31:07 +01001343 if (!is_initial_xendomain()) {
Jeremy Fitzhardinge83abc702008-05-26 23:31:12 +01001344 add_preferred_console("xenboot", 0, NULL);
Markus Armbruster9e124fe2008-05-26 23:31:07 +01001345 add_preferred_console("tty", 0, NULL);
Markus Armbrusterb8c2d3d2008-02-27 14:56:35 +01001346 add_preferred_console("hvc", 0, NULL);
Markus Armbruster9e124fe2008-05-26 23:31:07 +01001347 }
Markus Armbrusterb8c2d3d2008-02-27 14:56:35 +01001348
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001349 /* Start the world */
Yinghai Luf0d43102008-05-29 12:56:36 -07001350 i386_start_kernel();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001351}