2 * Core of Xen paravirt_ops implementation.
4 * This file contains the xen_paravirt_ops structure itself, and the
6 * - privileged instructions
11 * Jeremy Fitzhardinge <jeremy@xensource.com>, XenSource Inc, 2007
14 #include <linux/kernel.h>
15 #include <linux/init.h>
16 #include <linux/smp.h>
17 #include <linux/preempt.h>
18 #include <linux/hardirq.h>
19 #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>
26 #include <linux/page-flags.h>
27 #include <linux/highmem.h>
28 #include <linux/console.h>
30 #include <xen/interface/xen.h>
31 #include <xen/interface/physdev.h>
32 #include <xen/interface/vcpu.h>
33 #include <xen/interface/sched.h>
34 #include <xen/features.h>
36 #include <xen/hvc-console.h>
38 #include <asm/paravirt.h>
40 #include <asm/xen/hypercall.h>
41 #include <asm/xen/hypervisor.h>
42 #include <asm/fixmap.h>
43 #include <asm/processor.h>
44 #include <asm/setup.h>
46 #include <asm/pgtable.h>
47 #include <asm/tlbflush.h>
48 #include <asm/reboot.h>
52 #include "multicalls.h"
54 EXPORT_SYMBOL_GPL(hypercall_page);
56 DEFINE_PER_CPU(struct vcpu_info *, xen_vcpu);
57 DEFINE_PER_CPU(struct vcpu_info, xen_vcpu_info);
60 * Note about cr3 (pagetable base) values:
62 * xen_cr3 contains the current logical cr3 value; it contains the
63 * last set cr3. This may not be the current effective cr3, because
64 * its update may be being lazily deferred. However, a vcpu looking
65 * at its own cr3 can use this value knowing that it everything will
68 * xen_current_cr3 contains the actual vcpu cr3; it is set once the
69 * hypercall to set the vcpu cr3 is complete (so it may be a little
70 * out of date, but it will never be set early). If one vcpu is
71 * looking at another vcpu's cr3 value, it should use this variable.
73 DEFINE_PER_CPU(unsigned long, xen_cr3); /* cr3 stored as physaddr */
74 DEFINE_PER_CPU(unsigned long, xen_current_cr3); /* actual vcpu cr3 */
76 struct start_info *xen_start_info;
77 EXPORT_SYMBOL_GPL(xen_start_info);
79 struct shared_info xen_dummy_shared_info;
82 * Point at some empty memory to start with. We map the real shared_info
83 * page as soon as fixmap is up and running.
85 struct shared_info *HYPERVISOR_shared_info = (void *)&xen_dummy_shared_info;
88 * Flag to determine whether vcpu info placement is available on all
89 * VCPUs. We assume it is to start with, and then set it to zero on
90 * the first failure. This is because it can succeed on some VCPUs
91 * and not others, since it can involve hypervisor memory allocation,
92 * or because the guest failed to guarantee all the appropriate
93 * constraints on all VCPUs (ie buffer can't cross a page boundary).
95 * Note that any particular CPU may be using a placed vcpu structure,
96 * but we can only optimise if the all are.
98 * 0: not available, 1: available
100 static int have_vcpu_info_placement = 1;
102 static void xen_vcpu_setup(int cpu)
104 struct vcpu_register_vcpu_info info;
106 struct vcpu_info *vcpup;
108 BUG_ON(HYPERVISOR_shared_info == &xen_dummy_shared_info);
109 per_cpu(xen_vcpu, cpu) = &HYPERVISOR_shared_info->vcpu_info[cpu];
111 if (!have_vcpu_info_placement)
112 return; /* already tested, not available */
114 vcpup = &per_cpu(xen_vcpu_info, cpu);
116 info.mfn = virt_to_mfn(vcpup);
117 info.offset = offset_in_page(vcpup);
119 printk(KERN_DEBUG "trying to map vcpu_info %d at %p, mfn %llx, offset %d\n",
120 cpu, vcpup, info.mfn, info.offset);
122 /* Check to see if the hypervisor will put the vcpu_info
123 structure where we want it, which allows direct access via
124 a percpu-variable. */
125 err = HYPERVISOR_vcpu_op(VCPUOP_register_vcpu_info, cpu, &info);
128 printk(KERN_DEBUG "register_vcpu_info failed: err=%d\n", err);
129 have_vcpu_info_placement = 0;
131 /* This cpu is using the registered vcpu info, even if
132 later ones fail to. */
133 per_cpu(xen_vcpu, cpu) = vcpup;
135 printk(KERN_DEBUG "cpu %d using vcpu_info at %p\n",
141 * On restore, set the vcpu placement up again.
142 * If it fails, then we're in a bad state, since
143 * we can't back out from using it...
145 void xen_vcpu_restore(void)
147 if (have_vcpu_info_placement) {
150 for_each_online_cpu(cpu) {
151 bool other_cpu = (cpu != smp_processor_id());
154 HYPERVISOR_vcpu_op(VCPUOP_down, cpu, NULL))
160 HYPERVISOR_vcpu_op(VCPUOP_up, cpu, NULL))
164 BUG_ON(!have_vcpu_info_placement);
168 static void __init xen_banner(void)
170 printk(KERN_INFO "Booting paravirtualized kernel on %s\n",
172 printk(KERN_INFO "Hypervisor signature: %s%s\n",
173 xen_start_info->magic,
174 xen_feature(XENFEAT_mmu_pt_update_preserve_ad) ? " (preserve-AD)" : "");
177 static void xen_cpuid(unsigned int *ax, unsigned int *bx,
178 unsigned int *cx, unsigned int *dx)
180 unsigned maskedx = ~0;
183 * Mask out inconvenient features, to try and disable as many
184 * unsupported kernel subsystems as possible.
187 maskedx = ~((1 << X86_FEATURE_APIC) | /* disable APIC */
188 (1 << X86_FEATURE_ACPI) | /* disable ACPI */
189 (1 << X86_FEATURE_MCE) | /* disable MCE */
190 (1 << X86_FEATURE_MCA) | /* disable MCA */
191 (1 << X86_FEATURE_ACC)); /* thermal monitoring */
193 asm(XEN_EMULATE_PREFIX "cpuid"
198 : "0" (*ax), "2" (*cx));
202 static void xen_set_debugreg(int reg, unsigned long val)
204 HYPERVISOR_set_debugreg(reg, val);
207 static unsigned long xen_get_debugreg(int reg)
209 return HYPERVISOR_get_debugreg(reg);
212 static unsigned long xen_save_fl(void)
214 struct vcpu_info *vcpu;
217 vcpu = x86_read_percpu(xen_vcpu);
219 /* flag has opposite sense of mask */
220 flags = !vcpu->evtchn_upcall_mask;
222 /* convert to IF type flag
226 return (-flags) & X86_EFLAGS_IF;
229 static void xen_restore_fl(unsigned long flags)
231 struct vcpu_info *vcpu;
233 /* convert from IF type flag */
234 flags = !(flags & X86_EFLAGS_IF);
236 /* There's a one instruction preempt window here. We need to
237 make sure we're don't switch CPUs between getting the vcpu
238 pointer and updating the mask. */
240 vcpu = x86_read_percpu(xen_vcpu);
241 vcpu->evtchn_upcall_mask = flags;
242 preempt_enable_no_resched();
244 /* Doesn't matter if we get preempted here, because any
245 pending event will get dealt with anyway. */
248 preempt_check_resched();
249 barrier(); /* unmask then check (avoid races) */
250 if (unlikely(vcpu->evtchn_upcall_pending))
251 force_evtchn_callback();
255 static void xen_irq_disable(void)
257 /* There's a one instruction preempt window here. We need to
258 make sure we're don't switch CPUs between getting the vcpu
259 pointer and updating the mask. */
261 x86_read_percpu(xen_vcpu)->evtchn_upcall_mask = 1;
262 preempt_enable_no_resched();
265 static void xen_irq_enable(void)
267 struct vcpu_info *vcpu;
269 /* We don't need to worry about being preempted here, since
270 either a) interrupts are disabled, so no preemption, or b)
271 the caller is confused and is trying to re-enable interrupts
272 on an indeterminate processor. */
274 vcpu = x86_read_percpu(xen_vcpu);
275 vcpu->evtchn_upcall_mask = 0;
277 /* Doesn't matter if we get preempted here, because any
278 pending event will get dealt with anyway. */
280 barrier(); /* unmask then check (avoid races) */
281 if (unlikely(vcpu->evtchn_upcall_pending))
282 force_evtchn_callback();
285 static void xen_safe_halt(void)
287 /* Blocking includes an implicit local_irq_enable(). */
288 if (HYPERVISOR_sched_op(SCHEDOP_block, NULL) != 0)
292 static void xen_halt(void)
295 HYPERVISOR_vcpu_op(VCPUOP_down, smp_processor_id(), NULL);
300 static void xen_leave_lazy(void)
302 paravirt_leave_lazy(paravirt_get_lazy_mode());
306 static unsigned long xen_store_tr(void)
311 static void xen_set_ldt(const void *addr, unsigned entries)
313 struct mmuext_op *op;
314 struct multicall_space mcs = xen_mc_entry(sizeof(*op));
317 op->cmd = MMUEXT_SET_LDT;
318 op->arg1.linear_addr = (unsigned long)addr;
319 op->arg2.nr_ents = entries;
321 MULTI_mmuext_op(mcs.mc, op, 1, NULL, DOMID_SELF);
323 xen_mc_issue(PARAVIRT_LAZY_CPU);
326 static void xen_load_gdt(const struct desc_ptr *dtr)
328 unsigned long *frames;
329 unsigned long va = dtr->address;
330 unsigned int size = dtr->size + 1;
331 unsigned pages = (size + PAGE_SIZE - 1) / PAGE_SIZE;
333 struct multicall_space mcs;
335 /* A GDT can be up to 64k in size, which corresponds to 8192
336 8-byte entries, or 16 4k pages.. */
338 BUG_ON(size > 65536);
339 BUG_ON(va & ~PAGE_MASK);
341 mcs = xen_mc_entry(sizeof(*frames) * pages);
344 for (f = 0; va < dtr->address + size; va += PAGE_SIZE, f++) {
345 frames[f] = virt_to_mfn(va);
346 make_lowmem_page_readonly((void *)va);
349 MULTI_set_gdt(mcs.mc, frames, size / sizeof(struct desc_struct));
351 xen_mc_issue(PARAVIRT_LAZY_CPU);
354 static void load_TLS_descriptor(struct thread_struct *t,
355 unsigned int cpu, unsigned int i)
357 struct desc_struct *gdt = get_cpu_gdt_table(cpu);
358 xmaddr_t maddr = virt_to_machine(&gdt[GDT_ENTRY_TLS_MIN+i]);
359 struct multicall_space mc = __xen_mc_entry(0);
361 MULTI_update_descriptor(mc.mc, maddr.maddr, t->tls_array[i]);
364 static void xen_load_tls(struct thread_struct *t, unsigned int cpu)
367 * XXX sleazy hack: If we're being called in a lazy-cpu zone,
368 * it means we're in a context switch, and %gs has just been
369 * saved. This means we can zero it out to prevent faults on
370 * exit from the hypervisor if the next process has no %gs.
371 * Either way, it has been saved, and the new value will get
372 * loaded properly. This will go away as soon as Xen has been
373 * modified to not save/restore %gs for normal hypercalls.
375 * On x86_64, this hack is not used for %gs, because gs points
376 * to KERNEL_GS_BASE (and uses it for PDA references), so we
377 * must not zero %gs on x86_64
379 * For x86_64, we need to zero %fs, otherwise we may get an
380 * exception between the new %fs descriptor being loaded and
381 * %fs being effectively cleared at __switch_to().
383 if (paravirt_get_lazy_mode() == PARAVIRT_LAZY_CPU) {
393 load_TLS_descriptor(t, cpu, 0);
394 load_TLS_descriptor(t, cpu, 1);
395 load_TLS_descriptor(t, cpu, 2);
397 xen_mc_issue(PARAVIRT_LAZY_CPU);
401 static void xen_load_gs_index(unsigned int idx)
403 if (HYPERVISOR_set_segment_base(SEGBASE_GS_USER_SEL, idx))
408 static void xen_write_ldt_entry(struct desc_struct *dt, int entrynum,
411 unsigned long lp = (unsigned long)&dt[entrynum];
412 xmaddr_t mach_lp = virt_to_machine(lp);
413 u64 entry = *(u64 *)ptr;
418 if (HYPERVISOR_update_descriptor(mach_lp.maddr, entry))
424 static int cvt_gate_to_trap(int vector, const gate_desc *val,
425 struct trap_info *info)
427 if (val->type != 0xf && val->type != 0xe)
430 info->vector = vector;
431 info->address = gate_offset(*val);
432 info->cs = gate_segment(*val);
433 info->flags = val->dpl;
434 /* interrupt gates clear IF */
435 if (val->type == 0xe)
441 /* Locations of each CPU's IDT */
442 static DEFINE_PER_CPU(struct desc_ptr, idt_desc);
444 /* Set an IDT entry. If the entry is part of the current IDT, then
446 static void xen_write_idt_entry(gate_desc *dt, int entrynum, const gate_desc *g)
448 unsigned long p = (unsigned long)&dt[entrynum];
449 unsigned long start, end;
453 start = __get_cpu_var(idt_desc).address;
454 end = start + __get_cpu_var(idt_desc).size + 1;
458 native_write_idt_entry(dt, entrynum, g);
460 if (p >= start && (p + 8) <= end) {
461 struct trap_info info[2];
465 if (cvt_gate_to_trap(entrynum, g, &info[0]))
466 if (HYPERVISOR_set_trap_table(info))
473 static void xen_convert_trap_info(const struct desc_ptr *desc,
474 struct trap_info *traps)
476 unsigned in, out, count;
478 count = (desc->size+1) / sizeof(gate_desc);
481 for (in = out = 0; in < count; in++) {
482 gate_desc *entry = (gate_desc*)(desc->address) + in;
484 if (cvt_gate_to_trap(in, entry, &traps[out]))
487 traps[out].address = 0;
490 void xen_copy_trap_info(struct trap_info *traps)
492 const struct desc_ptr *desc = &__get_cpu_var(idt_desc);
494 xen_convert_trap_info(desc, traps);
497 /* Load a new IDT into Xen. In principle this can be per-CPU, so we
498 hold a spinlock to protect the static traps[] array (static because
499 it avoids allocation, and saves stack space). */
500 static void xen_load_idt(const struct desc_ptr *desc)
502 static DEFINE_SPINLOCK(lock);
503 static struct trap_info traps[257];
507 __get_cpu_var(idt_desc) = *desc;
509 xen_convert_trap_info(desc, traps);
512 if (HYPERVISOR_set_trap_table(traps))
518 /* Write a GDT descriptor entry. Ignore LDT descriptors, since
519 they're handled differently. */
520 static void xen_write_gdt_entry(struct desc_struct *dt, int entry,
521 const void *desc, int type)
532 xmaddr_t maddr = virt_to_machine(&dt[entry]);
535 if (HYPERVISOR_update_descriptor(maddr.maddr, *(u64 *)desc))
544 static void xen_load_sp0(struct tss_struct *tss,
545 struct thread_struct *thread)
547 struct multicall_space mcs = xen_mc_entry(0);
548 MULTI_stack_switch(mcs.mc, __KERNEL_DS, thread->sp0);
549 xen_mc_issue(PARAVIRT_LAZY_CPU);
552 static void xen_set_iopl_mask(unsigned mask)
554 struct physdev_set_iopl set_iopl;
556 /* Force the change at ring 0. */
557 set_iopl.iopl = (mask == 0) ? 1 : (mask >> 12) & 3;
558 HYPERVISOR_physdev_op(PHYSDEVOP_set_iopl, &set_iopl);
561 static void xen_io_delay(void)
565 #ifdef CONFIG_X86_LOCAL_APIC
566 static u32 xen_apic_read(unsigned long reg)
571 static void xen_apic_write(unsigned long reg, u32 val)
573 /* Warn to see if there's any stray references */
578 static void xen_flush_tlb(void)
580 struct mmuext_op *op;
581 struct multicall_space mcs;
585 mcs = xen_mc_entry(sizeof(*op));
588 op->cmd = MMUEXT_TLB_FLUSH_LOCAL;
589 MULTI_mmuext_op(mcs.mc, op, 1, NULL, DOMID_SELF);
591 xen_mc_issue(PARAVIRT_LAZY_MMU);
596 static void xen_flush_tlb_single(unsigned long addr)
598 struct mmuext_op *op;
599 struct multicall_space mcs;
603 mcs = xen_mc_entry(sizeof(*op));
605 op->cmd = MMUEXT_INVLPG_LOCAL;
606 op->arg1.linear_addr = addr & PAGE_MASK;
607 MULTI_mmuext_op(mcs.mc, op, 1, NULL, DOMID_SELF);
609 xen_mc_issue(PARAVIRT_LAZY_MMU);
614 static void xen_flush_tlb_others(const cpumask_t *cpus, struct mm_struct *mm,
621 cpumask_t cpumask = *cpus;
622 struct multicall_space mcs;
625 * A couple of (to be removed) sanity checks:
627 * - current CPU must not be in mask
628 * - mask must exist :)
630 BUG_ON(cpus_empty(cpumask));
631 BUG_ON(cpu_isset(smp_processor_id(), cpumask));
634 /* If a CPU which we ran on has gone down, OK. */
635 cpus_and(cpumask, cpumask, cpu_online_map);
636 if (cpus_empty(cpumask))
639 mcs = xen_mc_entry(sizeof(*args));
641 args->mask = cpumask;
642 args->op.arg2.vcpumask = &args->mask;
644 if (va == TLB_FLUSH_ALL) {
645 args->op.cmd = MMUEXT_TLB_FLUSH_MULTI;
647 args->op.cmd = MMUEXT_INVLPG_MULTI;
648 args->op.arg1.linear_addr = va;
651 MULTI_mmuext_op(mcs.mc, &args->op, 1, NULL, DOMID_SELF);
653 xen_mc_issue(PARAVIRT_LAZY_MMU);
656 static void xen_clts(void)
658 struct multicall_space mcs;
660 mcs = xen_mc_entry(0);
662 MULTI_fpu_taskswitch(mcs.mc, 0);
664 xen_mc_issue(PARAVIRT_LAZY_CPU);
667 static void xen_write_cr0(unsigned long cr0)
669 struct multicall_space mcs;
671 /* Only pay attention to cr0.TS; everything else is
673 mcs = xen_mc_entry(0);
675 MULTI_fpu_taskswitch(mcs.mc, (cr0 & X86_CR0_TS) != 0);
677 xen_mc_issue(PARAVIRT_LAZY_CPU);
680 static void xen_write_cr2(unsigned long cr2)
682 x86_read_percpu(xen_vcpu)->arch.cr2 = cr2;
685 static unsigned long xen_read_cr2(void)
687 return x86_read_percpu(xen_vcpu)->arch.cr2;
690 static unsigned long xen_read_cr2_direct(void)
692 return x86_read_percpu(xen_vcpu_info.arch.cr2);
695 static void xen_write_cr4(unsigned long cr4)
700 native_write_cr4(cr4);
703 static unsigned long xen_read_cr3(void)
705 return x86_read_percpu(xen_cr3);
708 static void set_current_cr3(void *v)
710 x86_write_percpu(xen_current_cr3, (unsigned long)v);
713 static void __xen_write_cr3(bool kernel, unsigned long cr3)
715 struct mmuext_op *op;
716 struct multicall_space mcs;
720 mfn = pfn_to_mfn(PFN_DOWN(cr3));
724 WARN_ON(mfn == 0 && kernel);
726 mcs = __xen_mc_entry(sizeof(*op));
729 op->cmd = kernel ? MMUEXT_NEW_BASEPTR : MMUEXT_NEW_USER_BASEPTR;
732 MULTI_mmuext_op(mcs.mc, op, 1, NULL, DOMID_SELF);
735 x86_write_percpu(xen_cr3, cr3);
737 /* Update xen_current_cr3 once the batch has actually
739 xen_mc_callback(set_current_cr3, (void *)cr3);
743 static void xen_write_cr3(unsigned long cr3)
745 BUG_ON(preemptible());
747 xen_mc_batch(); /* disables interrupts */
749 /* Update while interrupts are disabled, so its atomic with
751 x86_write_percpu(xen_cr3, cr3);
753 __xen_write_cr3(true, cr3);
757 pgd_t *user_pgd = xen_get_user_pgd(__va(cr3));
759 __xen_write_cr3(false, __pa(user_pgd));
761 __xen_write_cr3(false, 0);
765 xen_mc_issue(PARAVIRT_LAZY_CPU); /* interrupts restored */
768 /* Early in boot, while setting up the initial pagetable, assume
769 everything is pinned. */
770 static __init void xen_alloc_pte_init(struct mm_struct *mm, u32 pfn)
772 #ifdef CONFIG_FLATMEM
773 BUG_ON(mem_map); /* should only be used early */
775 make_lowmem_page_readonly(__va(PFN_PHYS(pfn)));
778 /* Early release_pte assumes that all pts are pinned, since there's
779 only init_mm and anything attached to that is pinned. */
780 static void xen_release_pte_init(u32 pfn)
782 make_lowmem_page_readwrite(__va(PFN_PHYS(pfn)));
785 static void pin_pagetable_pfn(unsigned cmd, unsigned long pfn)
789 op.arg1.mfn = pfn_to_mfn(pfn);
790 if (HYPERVISOR_mmuext_op(&op, 1, NULL, DOMID_SELF))
794 /* This needs to make sure the new pte page is pinned iff its being
795 attached to a pinned pagetable. */
796 static void xen_alloc_ptpage(struct mm_struct *mm, u32 pfn, unsigned level)
798 struct page *page = pfn_to_page(pfn);
800 if (PagePinned(virt_to_page(mm->pgd))) {
803 if (!PageHighMem(page)) {
804 make_lowmem_page_readonly(__va(PFN_PHYS(pfn)));
806 pin_pagetable_pfn(MMUEXT_PIN_L1_TABLE, pfn);
808 /* make sure there are no stray mappings of
814 static void xen_alloc_pte(struct mm_struct *mm, u32 pfn)
816 xen_alloc_ptpage(mm, pfn, PT_PTE);
819 static void xen_alloc_pmd(struct mm_struct *mm, u32 pfn)
821 xen_alloc_ptpage(mm, pfn, PT_PMD);
824 static int xen_pgd_alloc(struct mm_struct *mm)
826 pgd_t *pgd = mm->pgd;
829 BUG_ON(PagePinned(virt_to_page(pgd)));
833 struct page *page = virt_to_page(pgd);
835 BUG_ON(page->private != 0);
837 page->private = __get_free_page(GFP_KERNEL | __GFP_ZERO);
838 if (page->private == 0)
841 BUG_ON(PagePinned(virt_to_page(xen_get_user_pgd(pgd))));
848 static void xen_pgd_free(struct mm_struct *mm, pgd_t *pgd)
851 pgd_t *user_pgd = xen_get_user_pgd(pgd);
854 free_page((unsigned long)user_pgd);
858 /* This should never happen until we're OK to use struct page */
859 static void xen_release_ptpage(u32 pfn, unsigned level)
861 struct page *page = pfn_to_page(pfn);
863 if (PagePinned(page)) {
864 if (!PageHighMem(page)) {
866 pin_pagetable_pfn(MMUEXT_UNPIN_TABLE, pfn);
867 make_lowmem_page_readwrite(__va(PFN_PHYS(pfn)));
869 ClearPagePinned(page);
873 static void xen_release_pte(u32 pfn)
875 xen_release_ptpage(pfn, PT_PTE);
878 static void xen_release_pmd(u32 pfn)
880 xen_release_ptpage(pfn, PT_PMD);
883 #if PAGETABLE_LEVELS == 4
884 static void xen_alloc_pud(struct mm_struct *mm, u32 pfn)
886 xen_alloc_ptpage(mm, pfn, PT_PUD);
889 static void xen_release_pud(u32 pfn)
891 xen_release_ptpage(pfn, PT_PUD);
895 #ifdef CONFIG_HIGHPTE
896 static void *xen_kmap_atomic_pte(struct page *page, enum km_type type)
898 pgprot_t prot = PAGE_KERNEL;
900 if (PagePinned(page))
901 prot = PAGE_KERNEL_RO;
903 if (0 && PageHighMem(page))
904 printk("mapping highpte %lx type %d prot %s\n",
905 page_to_pfn(page), type,
906 (unsigned long)pgprot_val(prot) & _PAGE_RW ? "WRITE" : "READ");
908 return kmap_atomic_prot(page, type, prot);
912 static __init pte_t mask_rw_pte(pte_t *ptep, pte_t pte)
914 /* If there's an existing pte, then don't allow _PAGE_RW to be set */
915 if (pte_val_ma(*ptep) & _PAGE_PRESENT)
916 pte = __pte_ma(((pte_val_ma(*ptep) & _PAGE_RW) | ~_PAGE_RW) &
922 /* Init-time set_pte while constructing initial pagetables, which
923 doesn't allow RO pagetable pages to be remapped RW */
924 static __init void xen_set_pte_init(pte_t *ptep, pte_t pte)
926 pte = mask_rw_pte(ptep, pte);
928 xen_set_pte(ptep, pte);
931 static __init void xen_pagetable_setup_start(pgd_t *base)
935 void xen_setup_shared_info(void)
937 if (!xen_feature(XENFEAT_auto_translated_physmap)) {
938 set_fixmap(FIX_PARAVIRT_BOOTMAP,
939 xen_start_info->shared_info);
941 HYPERVISOR_shared_info =
942 (struct shared_info *)fix_to_virt(FIX_PARAVIRT_BOOTMAP);
944 HYPERVISOR_shared_info =
945 (struct shared_info *)__va(xen_start_info->shared_info);
948 /* In UP this is as good a place as any to set up shared info */
949 xen_setup_vcpu_info_placement();
952 xen_setup_mfn_list_list();
955 static __init void xen_pagetable_setup_done(pgd_t *base)
957 xen_setup_shared_info();
960 static __init void xen_post_allocator_init(void)
962 pv_mmu_ops.set_pte = xen_set_pte;
963 pv_mmu_ops.set_pmd = xen_set_pmd;
964 pv_mmu_ops.set_pud = xen_set_pud;
965 #if PAGETABLE_LEVELS == 4
966 pv_mmu_ops.set_pgd = xen_set_pgd;
969 /* This will work as long as patching hasn't happened yet
971 pv_mmu_ops.alloc_pte = xen_alloc_pte;
972 pv_mmu_ops.alloc_pmd = xen_alloc_pmd;
973 pv_mmu_ops.release_pte = xen_release_pte;
974 pv_mmu_ops.release_pmd = xen_release_pmd;
975 #if PAGETABLE_LEVELS == 4
976 pv_mmu_ops.alloc_pud = xen_alloc_pud;
977 pv_mmu_ops.release_pud = xen_release_pud;
980 xen_mark_init_mm_pinned();
983 /* This is called once we have the cpu_possible_map */
984 void xen_setup_vcpu_info_placement(void)
988 for_each_possible_cpu(cpu)
991 /* xen_vcpu_setup managed to place the vcpu_info within the
992 percpu area for all cpus, so make use of it */
994 if (have_vcpu_info_placement) {
995 printk(KERN_INFO "Xen: using vcpu_info placement\n");
997 pv_irq_ops.save_fl = xen_save_fl_direct;
998 pv_irq_ops.restore_fl = xen_restore_fl_direct;
999 pv_irq_ops.irq_disable = xen_irq_disable_direct;
1000 pv_irq_ops.irq_enable = xen_irq_enable_direct;
1001 pv_mmu_ops.read_cr2 = xen_read_cr2_direct;
1006 static unsigned xen_patch(u8 type, u16 clobbers, void *insnbuf,
1007 unsigned long addr, unsigned len)
1009 char *start, *end, *reloc;
1012 start = end = reloc = NULL;
1014 #define SITE(op, x) \
1015 case PARAVIRT_PATCH(op.x): \
1016 if (have_vcpu_info_placement) { \
1017 start = (char *)xen_##x##_direct; \
1018 end = xen_##x##_direct_end; \
1019 reloc = xen_##x##_direct_reloc; \
1024 #ifdef CONFIG_X86_32
1025 SITE(pv_irq_ops, irq_enable);
1026 SITE(pv_irq_ops, irq_disable);
1027 SITE(pv_irq_ops, save_fl);
1028 SITE(pv_irq_ops, restore_fl);
1029 #endif /* CONFIG_X86_32 */
1033 if (start == NULL || (end-start) > len)
1036 ret = paravirt_patch_insns(insnbuf, len, start, end);
1038 /* Note: because reloc is assigned from something that
1039 appears to be an array, gcc assumes it's non-null,
1040 but doesn't know its relationship with start and
1042 if (reloc > start && reloc < end) {
1043 int reloc_off = reloc - start;
1044 long *relocp = (long *)(insnbuf + reloc_off);
1045 long delta = start - (char *)addr;
1053 ret = paravirt_patch_default(type, clobbers, insnbuf,
1061 static void xen_set_fixmap(unsigned idx, unsigned long phys, pgprot_t prot)
1065 phys >>= PAGE_SHIFT;
1068 case FIX_BTMAP_END ... FIX_BTMAP_BEGIN:
1069 #ifdef CONFIG_X86_F00F_BUG
1072 #ifdef CONFIG_X86_32
1075 case FIX_KMAP_BEGIN ... FIX_KMAP_END:
1077 case VSYSCALL_LAST_PAGE ... VSYSCALL_FIRST_PAGE:
1079 #ifdef CONFIG_X86_LOCAL_APIC
1080 case FIX_APIC_BASE: /* maps dummy local APIC */
1082 pte = pfn_pte(phys, prot);
1086 pte = mfn_pte(phys, prot);
1090 __native_set_fixmap(idx, pte);
1093 static const struct pv_info xen_info __initdata = {
1094 .paravirt_enabled = 1,
1095 .shared_kernel_pmd = 0,
1100 static const struct pv_init_ops xen_init_ops __initdata = {
1103 .banner = xen_banner,
1104 .memory_setup = xen_memory_setup,
1105 .arch_setup = xen_arch_setup,
1106 .post_allocator_init = xen_post_allocator_init,
1109 static const struct pv_time_ops xen_time_ops __initdata = {
1110 .time_init = xen_time_init,
1112 .set_wallclock = xen_set_wallclock,
1113 .get_wallclock = xen_get_wallclock,
1114 .get_tsc_khz = xen_tsc_khz,
1115 .sched_clock = xen_sched_clock,
1118 static const struct pv_cpu_ops xen_cpu_ops __initdata = {
1121 .set_debugreg = xen_set_debugreg,
1122 .get_debugreg = xen_get_debugreg,
1126 .read_cr0 = native_read_cr0,
1127 .write_cr0 = xen_write_cr0,
1129 .read_cr4 = native_read_cr4,
1130 .read_cr4_safe = native_read_cr4_safe,
1131 .write_cr4 = xen_write_cr4,
1133 .wbinvd = native_wbinvd,
1135 .read_msr = native_read_msr_safe,
1136 .write_msr = native_write_msr_safe,
1137 .read_tsc = native_read_tsc,
1138 .read_pmc = native_read_pmc,
1141 .irq_enable_sysexit = xen_sysexit,
1142 #ifdef CONFIG_X86_64
1143 .usergs_sysret32 = xen_sysret32,
1144 .usergs_sysret64 = xen_sysret64,
1147 .load_tr_desc = paravirt_nop,
1148 .set_ldt = xen_set_ldt,
1149 .load_gdt = xen_load_gdt,
1150 .load_idt = xen_load_idt,
1151 .load_tls = xen_load_tls,
1152 #ifdef CONFIG_X86_64
1153 .load_gs_index = xen_load_gs_index,
1156 .store_gdt = native_store_gdt,
1157 .store_idt = native_store_idt,
1158 .store_tr = xen_store_tr,
1160 .write_ldt_entry = xen_write_ldt_entry,
1161 .write_gdt_entry = xen_write_gdt_entry,
1162 .write_idt_entry = xen_write_idt_entry,
1163 .load_sp0 = xen_load_sp0,
1165 .set_iopl_mask = xen_set_iopl_mask,
1166 .io_delay = xen_io_delay,
1168 /* Xen takes care of %gs when switching to usermode for us */
1169 .swapgs = paravirt_nop,
1172 .enter = paravirt_enter_lazy_cpu,
1173 .leave = xen_leave_lazy,
1177 static void __init __xen_init_IRQ(void)
1179 #ifdef CONFIG_X86_64
1182 /* Create identity vector->irq map */
1183 for(i = 0; i < NR_VECTORS; i++) {
1186 for_each_possible_cpu(cpu)
1187 per_cpu(vector_irq, cpu)[i] = i;
1189 #endif /* CONFIG_X86_64 */
1194 static const struct pv_irq_ops xen_irq_ops __initdata = {
1195 .init_IRQ = __xen_init_IRQ,
1196 .save_fl = xen_save_fl,
1197 .restore_fl = xen_restore_fl,
1198 .irq_disable = xen_irq_disable,
1199 .irq_enable = xen_irq_enable,
1200 .safe_halt = xen_safe_halt,
1202 #ifdef CONFIG_X86_64
1203 .adjust_exception_frame = xen_adjust_exception_frame,
1207 static const struct pv_apic_ops xen_apic_ops __initdata = {
1208 #ifdef CONFIG_X86_LOCAL_APIC
1209 .apic_write = xen_apic_write,
1210 .apic_write_atomic = xen_apic_write,
1211 .apic_read = xen_apic_read,
1212 .setup_boot_clock = paravirt_nop,
1213 .setup_secondary_clock = paravirt_nop,
1214 .startup_ipi_hook = paravirt_nop,
1218 static const struct pv_mmu_ops xen_mmu_ops __initdata = {
1219 .pagetable_setup_start = xen_pagetable_setup_start,
1220 .pagetable_setup_done = xen_pagetable_setup_done,
1222 .read_cr2 = xen_read_cr2,
1223 .write_cr2 = xen_write_cr2,
1225 .read_cr3 = xen_read_cr3,
1226 .write_cr3 = xen_write_cr3,
1228 .flush_tlb_user = xen_flush_tlb,
1229 .flush_tlb_kernel = xen_flush_tlb,
1230 .flush_tlb_single = xen_flush_tlb_single,
1231 .flush_tlb_others = xen_flush_tlb_others,
1233 .pte_update = paravirt_nop,
1234 .pte_update_defer = paravirt_nop,
1236 .pgd_alloc = xen_pgd_alloc,
1237 .pgd_free = xen_pgd_free,
1239 .alloc_pte = xen_alloc_pte_init,
1240 .release_pte = xen_release_pte_init,
1241 .alloc_pmd = xen_alloc_pte_init,
1242 .alloc_pmd_clone = paravirt_nop,
1243 .release_pmd = xen_release_pte_init,
1245 #ifdef CONFIG_HIGHPTE
1246 .kmap_atomic_pte = xen_kmap_atomic_pte,
1249 #ifdef CONFIG_X86_64
1250 .set_pte = xen_set_pte,
1252 .set_pte = xen_set_pte_init,
1254 .set_pte_at = xen_set_pte_at,
1255 .set_pmd = xen_set_pmd_hyper,
1257 .ptep_modify_prot_start = __ptep_modify_prot_start,
1258 .ptep_modify_prot_commit = __ptep_modify_prot_commit,
1260 .pte_val = xen_pte_val,
1261 .pte_flags = native_pte_val,
1262 .pgd_val = xen_pgd_val,
1264 .make_pte = xen_make_pte,
1265 .make_pgd = xen_make_pgd,
1267 #ifdef CONFIG_X86_PAE
1268 .set_pte_atomic = xen_set_pte_atomic,
1269 .set_pte_present = xen_set_pte_at,
1270 .pte_clear = xen_pte_clear,
1271 .pmd_clear = xen_pmd_clear,
1272 #endif /* CONFIG_X86_PAE */
1273 .set_pud = xen_set_pud_hyper,
1275 .make_pmd = xen_make_pmd,
1276 .pmd_val = xen_pmd_val,
1278 #if PAGETABLE_LEVELS == 4
1279 .pud_val = xen_pud_val,
1280 .make_pud = xen_make_pud,
1281 .set_pgd = xen_set_pgd_hyper,
1283 .alloc_pud = xen_alloc_pte_init,
1284 .release_pud = xen_release_pte_init,
1285 #endif /* PAGETABLE_LEVELS == 4 */
1287 .activate_mm = xen_activate_mm,
1288 .dup_mmap = xen_dup_mmap,
1289 .exit_mmap = xen_exit_mmap,
1292 .enter = paravirt_enter_lazy_mmu,
1293 .leave = xen_leave_lazy,
1296 .set_fixmap = xen_set_fixmap,
1299 static void xen_reboot(int reason)
1301 struct sched_shutdown r = { .reason = reason };
1307 if (HYPERVISOR_sched_op(SCHEDOP_shutdown, &r))
1311 static void xen_restart(char *msg)
1313 xen_reboot(SHUTDOWN_reboot);
1316 static void xen_emergency_restart(void)
1318 xen_reboot(SHUTDOWN_reboot);
1321 static void xen_machine_halt(void)
1323 xen_reboot(SHUTDOWN_poweroff);
1326 static void xen_crash_shutdown(struct pt_regs *regs)
1328 xen_reboot(SHUTDOWN_crash);
1331 static const struct machine_ops __initdata xen_machine_ops = {
1332 .restart = xen_restart,
1333 .halt = xen_machine_halt,
1334 .power_off = xen_machine_halt,
1335 .shutdown = xen_machine_halt,
1336 .crash_shutdown = xen_crash_shutdown,
1337 .emergency_restart = xen_emergency_restart,
1341 static void __init xen_reserve_top(void)
1343 #ifdef CONFIG_X86_32
1344 unsigned long top = HYPERVISOR_VIRT_START;
1345 struct xen_platform_parameters pp;
1347 if (HYPERVISOR_xen_version(XENVER_platform_parameters, &pp) == 0)
1348 top = pp.virt_start;
1350 reserve_top_address(-top + 2 * PAGE_SIZE);
1351 #endif /* CONFIG_X86_32 */
1355 * Like __va(), but returns address in the kernel mapping (which is
1356 * all we have until the physical memory mapping has been set up.
1358 static void *__ka(phys_addr_t paddr)
1360 #ifdef CONFIG_X86_64
1361 return (void *)(paddr + __START_KERNEL_map);
1367 /* Convert a machine address to physical address */
1368 static unsigned long m2p(phys_addr_t maddr)
1373 paddr = mfn_to_pfn(maddr >> PAGE_SHIFT) << PAGE_SHIFT;
1378 /* Convert a machine address to kernel virtual */
1379 static void *m2v(phys_addr_t maddr)
1381 return __ka(m2p(maddr));
1384 #ifdef CONFIG_X86_64
1385 static void walk(pgd_t *pgd, unsigned long addr)
1387 unsigned l4idx = pgd_index(addr);
1388 unsigned l3idx = pud_index(addr);
1389 unsigned l2idx = pmd_index(addr);
1390 unsigned l1idx = pte_index(addr);
1396 xen_raw_printk("walk %p, %lx -> %d %d %d %d\n",
1397 pgd, addr, l4idx, l3idx, l2idx, l1idx);
1400 xen_raw_printk(" l4: %016lx\n", l4.pgd);
1401 xen_raw_printk(" %016lx\n", pgd_val(l4));
1403 l3 = ((pud_t *)(m2v(l4.pgd)))[l3idx];
1404 xen_raw_printk(" l3: %016lx\n", l3.pud);
1405 xen_raw_printk(" %016lx\n", pud_val(l3));
1407 l2 = ((pmd_t *)(m2v(l3.pud)))[l2idx];
1408 xen_raw_printk(" l2: %016lx\n", l2.pmd);
1409 xen_raw_printk(" %016lx\n", pmd_val(l2));
1411 l1 = ((pte_t *)(m2v(l2.pmd)))[l1idx];
1412 xen_raw_printk(" l1: %016lx\n", l1.pte);
1413 xen_raw_printk(" %016lx\n", pte_val(l1));
1417 static void set_page_prot(void *addr, pgprot_t prot)
1419 unsigned long pfn = __pa(addr) >> PAGE_SHIFT;
1420 pte_t pte = pfn_pte(pfn, prot);
1422 xen_raw_printk("addr=%p pfn=%lx mfn=%lx prot=%016llx pte=%016llx\n",
1423 addr, pfn, get_phys_to_machine(pfn),
1424 pgprot_val(prot), pte.pte);
1426 if (HYPERVISOR_update_va_mapping((unsigned long)addr, pte, 0))
1431 * Identity map, in addition to plain kernel map. This needs to be
1432 * large enough to allocate page table pages to allocate the rest.
1433 * Each page can map 2MB.
1435 static pte_t level1_ident_pgt[PTRS_PER_PTE * 4] __page_aligned_bss;
1437 static __init void xen_map_identity_early(pmd_t *pmd, unsigned long max_pfn)
1439 unsigned pmdidx, pteidx;
1445 for(pmdidx = 0; pmdidx < PTRS_PER_PMD && pfn < max_pfn; pmdidx++) {
1448 /* Reuse or allocate a page of ptes */
1449 if (pmd_present(pmd[pmdidx]))
1450 pte_page = m2v(pmd[pmdidx].pmd);
1452 /* Check for free pte pages */
1453 if (ident_pte == ARRAY_SIZE(level1_ident_pgt))
1456 pte_page = &level1_ident_pgt[ident_pte];
1457 ident_pte += PTRS_PER_PTE;
1459 pmd[pmdidx] = __pmd(__pa(pte_page) | _PAGE_TABLE);
1462 /* Install mappings */
1463 for(pteidx = 0; pteidx < PTRS_PER_PTE; pteidx++, pfn++) {
1466 if (pfn > max_pfn_mapped)
1467 max_pfn_mapped = pfn;
1469 if (!pte_none(pte_page[pteidx]))
1472 pte = pfn_pte(pfn, PAGE_KERNEL_EXEC);
1473 pte_page[pteidx] = pte;
1477 for(pteidx = 0; pteidx < ident_pte; pteidx += PTRS_PER_PTE)
1478 set_page_prot(&level1_ident_pgt[pteidx], PAGE_KERNEL_RO);
1480 set_page_prot(pmd, PAGE_KERNEL_RO);
1483 #ifdef CONFIG_X86_64
1484 static void convert_pfn_mfn(void *v)
1489 /* All levels are converted the same way, so just treat them
1491 for(i = 0; i < PTRS_PER_PTE; i++)
1492 pte[i] = xen_make_pte(pte[i].pte);
1496 * Set up the inital kernel pagetable.
1498 * We can construct this by grafting the Xen provided pagetable into
1499 * head_64.S's preconstructed pagetables. We copy the Xen L2's into
1500 * level2_ident_pgt, level2_kernel_pgt and level2_fixmap_pgt. This
1501 * means that only the kernel has a physical mapping to start with -
1502 * but that's enough to get __va working. We need to fill in the rest
1503 * of the physical mapping once some sort of allocator has been set
1506 static __init pgd_t *xen_setup_kernel_pagetable(pgd_t *pgd, unsigned long max_pfn)
1511 /* Zap identity mapping */
1512 init_level4_pgt[0] = __pgd(0);
1514 /* Pre-constructed entries are in pfn, so convert to mfn */
1515 convert_pfn_mfn(init_level4_pgt);
1516 convert_pfn_mfn(level3_ident_pgt);
1517 convert_pfn_mfn(level3_kernel_pgt);
1519 l3 = m2v(pgd[pgd_index(__START_KERNEL_map)].pgd);
1520 l2 = m2v(l3[pud_index(__START_KERNEL_map)].pud);
1522 memcpy(level2_ident_pgt, l2, sizeof(pmd_t) * PTRS_PER_PMD);
1523 memcpy(level2_kernel_pgt, l2, sizeof(pmd_t) * PTRS_PER_PMD);
1525 l3 = m2v(pgd[pgd_index(__START_KERNEL_map + PMD_SIZE)].pgd);
1526 l2 = m2v(l3[pud_index(__START_KERNEL_map + PMD_SIZE)].pud);
1527 memcpy(level2_fixmap_pgt, l2, sizeof(pmd_t) * PTRS_PER_PMD);
1529 /* Set up identity map */
1530 xen_map_identity_early(level2_ident_pgt, max_pfn);
1532 /* Make pagetable pieces RO */
1533 set_page_prot(init_level4_pgt, PAGE_KERNEL_RO);
1534 set_page_prot(level3_ident_pgt, PAGE_KERNEL_RO);
1535 set_page_prot(level3_kernel_pgt, PAGE_KERNEL_RO);
1536 set_page_prot(level2_kernel_pgt, PAGE_KERNEL_RO);
1537 set_page_prot(level2_fixmap_pgt, PAGE_KERNEL_RO);
1539 /* Pin down new L4 */
1540 pin_pagetable_pfn(MMUEXT_PIN_L4_TABLE,
1541 PFN_DOWN(__pa_symbol(init_level4_pgt)));
1543 /* Unpin Xen-provided one */
1544 pin_pagetable_pfn(MMUEXT_UNPIN_TABLE, PFN_DOWN(__pa(pgd)));
1547 pgd = init_level4_pgt;
1550 * At this stage there can be no user pgd, and no page
1551 * structure to attach it to, so make sure we just set kernel
1555 __xen_write_cr3(true, __pa(pgd));
1556 xen_mc_issue(PARAVIRT_LAZY_CPU);
1558 reserve_early(__pa(xen_start_info->pt_base),
1559 __pa(xen_start_info->pt_base +
1560 xen_start_info->nr_pt_frames * PAGE_SIZE),
1565 #else /* !CONFIG_X86_64 */
1566 static pmd_t level2_kernel_pgt[PTRS_PER_PMD] __page_aligned_bss;
1568 static __init pgd_t *xen_setup_kernel_pagetable(pgd_t *pgd, unsigned long max_pfn)
1572 init_pg_tables_start = __pa(pgd);
1573 init_pg_tables_end = __pa(pgd) + xen_start_info->nr_pt_frames*PAGE_SIZE;
1574 max_pfn_mapped = PFN_DOWN(init_pg_tables_end + 512*1024);
1576 kernel_pmd = m2v(pgd[KERNEL_PGD_BOUNDARY].pgd);
1577 memcpy(level2_kernel_pgt, kernel_pmd, sizeof(pmd_t) * PTRS_PER_PMD);
1579 xen_map_identity_early(level2_kernel_pgt, max_pfn);
1581 memcpy(swapper_pg_dir, pgd, sizeof(pgd_t) * PTRS_PER_PGD);
1582 set_pgd(&swapper_pg_dir[KERNEL_PGD_BOUNDARY],
1583 __pgd(__pa(level2_kernel_pgt) | _PAGE_PRESENT));
1585 set_page_prot(level2_kernel_pgt, PAGE_KERNEL_RO);
1586 set_page_prot(swapper_pg_dir, PAGE_KERNEL_RO);
1587 set_page_prot(empty_zero_page, PAGE_KERNEL_RO);
1589 pin_pagetable_pfn(MMUEXT_UNPIN_TABLE, PFN_DOWN(__pa(pgd)));
1591 xen_write_cr3(__pa(swapper_pg_dir));
1593 pin_pagetable_pfn(MMUEXT_PIN_L3_TABLE, PFN_DOWN(__pa(swapper_pg_dir)));
1595 return swapper_pg_dir;
1597 #endif /* CONFIG_X86_64 */
1599 /* First C function to be called on Xen boot */
1600 asmlinkage void __init xen_start_kernel(void)
1604 if (!xen_start_info)
1607 BUG_ON(memcmp(xen_start_info->magic, "xen-3", 5) != 0);
1609 xen_setup_features();
1611 /* Install Xen paravirt ops */
1613 pv_init_ops = xen_init_ops;
1614 pv_time_ops = xen_time_ops;
1615 pv_cpu_ops = xen_cpu_ops;
1616 pv_irq_ops = xen_irq_ops;
1617 pv_apic_ops = xen_apic_ops;
1618 pv_mmu_ops = xen_mmu_ops;
1620 if (xen_feature(XENFEAT_mmu_pt_update_preserve_ad)) {
1621 pv_mmu_ops.ptep_modify_prot_start = xen_ptep_modify_prot_start;
1622 pv_mmu_ops.ptep_modify_prot_commit = xen_ptep_modify_prot_commit;
1625 machine_ops = xen_machine_ops;
1627 #ifdef CONFIG_X86_64
1628 /* Disable until direct per-cpu data access. */
1629 have_vcpu_info_placement = 0;
1636 if (!xen_feature(XENFEAT_auto_translated_physmap))
1637 xen_build_dynamic_phys_to_machine();
1639 pgd = (pgd_t *)xen_start_info->pt_base;
1641 /* Prevent unwanted bits from being set in PTEs. */
1642 __supported_pte_mask &= ~_PAGE_GLOBAL;
1643 if (!is_initial_xendomain())
1644 __supported_pte_mask &= ~(_PAGE_PWT | _PAGE_PCD);
1646 /* Don't do the full vcpu_info placement stuff until we have a
1647 possible map and a non-dummy shared_info. */
1648 per_cpu(xen_vcpu, 0) = &HYPERVISOR_shared_info->vcpu_info[0];
1650 xen_raw_console_write("mapping kernel into physical memory\n");
1651 pgd = xen_setup_kernel_pagetable(pgd, xen_start_info->nr_pages);
1655 /* keep using Xen gdt for now; no urgent need to change it */
1657 pv_info.kernel_rpl = 1;
1658 if (xen_feature(XENFEAT_supervisor_mode_kernel))
1659 pv_info.kernel_rpl = 0;
1661 /* set the limit of our address space */
1664 #ifdef CONFIG_X86_32
1665 /* set up basic CPUID stuff */
1666 cpu_detect(&new_cpu_data);
1667 new_cpu_data.hard_math = 1;
1668 new_cpu_data.x86_capability[0] = cpuid_edx(1);
1671 /* Poke various useful things into boot_params */
1672 boot_params.hdr.type_of_loader = (9 << 4) | 0;
1673 boot_params.hdr.ramdisk_image = xen_start_info->mod_start
1674 ? __pa(xen_start_info->mod_start) : 0;
1675 boot_params.hdr.ramdisk_size = xen_start_info->mod_len;
1676 boot_params.hdr.cmd_line_ptr = __pa(xen_start_info->cmd_line);
1678 if (!is_initial_xendomain()) {
1679 add_preferred_console("xenboot", 0, NULL);
1680 add_preferred_console("tty", 0, NULL);
1681 add_preferred_console("hvc", 0, NULL);
1684 xen_raw_console_write("about to get started...\n");
1687 xen_raw_printk("&boot_params=%p __pa(&boot_params)=%lx __va(__pa(&boot_params))=%lx\n",
1688 &boot_params, __pa_symbol(&boot_params),
1689 __va(__pa_symbol(&boot_params)));
1691 walk(pgd, &boot_params);
1692 walk(pgd, __va(__pa(&boot_params)));
1695 /* Start the world */
1696 #ifdef CONFIG_X86_32
1697 i386_start_kernel();
1699 x86_64_start_reservations((char *)__pa_symbol(&boot_params));