]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - arch/x86/xen/enlighten_pv.c
xen/vcpu: Simplify xen_vcpu related code
[karo-tx-linux.git] / arch / x86 / xen / enlighten_pv.c
1 /*
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/cpu.h>
15 #include <linux/kernel.h>
16 #include <linux/init.h>
17 #include <linux/smp.h>
18 #include <linux/preempt.h>
19 #include <linux/hardirq.h>
20 #include <linux/percpu.h>
21 #include <linux/delay.h>
22 #include <linux/start_kernel.h>
23 #include <linux/sched.h>
24 #include <linux/kprobes.h>
25 #include <linux/bootmem.h>
26 #include <linux/export.h>
27 #include <linux/mm.h>
28 #include <linux/page-flags.h>
29 #include <linux/highmem.h>
30 #include <linux/console.h>
31 #include <linux/pci.h>
32 #include <linux/gfp.h>
33 #include <linux/memblock.h>
34 #include <linux/edd.h>
35 #include <linux/frame.h>
36
37 #include <xen/xen.h>
38 #include <xen/events.h>
39 #include <xen/interface/xen.h>
40 #include <xen/interface/version.h>
41 #include <xen/interface/physdev.h>
42 #include <xen/interface/vcpu.h>
43 #include <xen/interface/memory.h>
44 #include <xen/interface/nmi.h>
45 #include <xen/interface/xen-mca.h>
46 #include <xen/features.h>
47 #include <xen/page.h>
48 #include <xen/hvc-console.h>
49 #include <xen/acpi.h>
50
51 #include <asm/paravirt.h>
52 #include <asm/apic.h>
53 #include <asm/page.h>
54 #include <asm/xen/pci.h>
55 #include <asm/xen/hypercall.h>
56 #include <asm/xen/hypervisor.h>
57 #include <asm/xen/cpuid.h>
58 #include <asm/fixmap.h>
59 #include <asm/processor.h>
60 #include <asm/proto.h>
61 #include <asm/msr-index.h>
62 #include <asm/traps.h>
63 #include <asm/setup.h>
64 #include <asm/desc.h>
65 #include <asm/pgalloc.h>
66 #include <asm/pgtable.h>
67 #include <asm/tlbflush.h>
68 #include <asm/reboot.h>
69 #include <asm/stackprotector.h>
70 #include <asm/hypervisor.h>
71 #include <asm/mach_traps.h>
72 #include <asm/mwait.h>
73 #include <asm/pci_x86.h>
74 #include <asm/cpu.h>
75
76 #ifdef CONFIG_ACPI
77 #include <linux/acpi.h>
78 #include <asm/acpi.h>
79 #include <acpi/pdc_intel.h>
80 #include <acpi/processor.h>
81 #include <xen/interface/platform.h>
82 #endif
83
84 #include "xen-ops.h"
85 #include "mmu.h"
86 #include "smp.h"
87 #include "multicalls.h"
88 #include "pmu.h"
89
90 void *xen_initial_gdt;
91
92 RESERVE_BRK(shared_info_page_brk, PAGE_SIZE);
93
94 static int xen_cpu_up_prepare_pv(unsigned int cpu);
95 static int xen_cpu_dead_pv(unsigned int cpu);
96
97 struct tls_descs {
98         struct desc_struct desc[3];
99 };
100
101 /*
102  * Updating the 3 TLS descriptors in the GDT on every task switch is
103  * surprisingly expensive so we avoid updating them if they haven't
104  * changed.  Since Xen writes different descriptors than the one
105  * passed in the update_descriptor hypercall we keep shadow copies to
106  * compare against.
107  */
108 static DEFINE_PER_CPU(struct tls_descs, shadow_tls_desc);
109
110 static void __init xen_banner(void)
111 {
112         unsigned version = HYPERVISOR_xen_version(XENVER_version, NULL);
113         struct xen_extraversion extra;
114         HYPERVISOR_xen_version(XENVER_extraversion, &extra);
115
116         pr_info("Booting paravirtualized kernel on %s\n", pv_info.name);
117         printk(KERN_INFO "Xen version: %d.%d%s%s\n",
118                version >> 16, version & 0xffff, extra.extraversion,
119                xen_feature(XENFEAT_mmu_pt_update_preserve_ad) ? " (preserve-AD)" : "");
120 }
121 /* Check if running on Xen version (major, minor) or later */
122 bool
123 xen_running_on_version_or_later(unsigned int major, unsigned int minor)
124 {
125         unsigned int version;
126
127         if (!xen_domain())
128                 return false;
129
130         version = HYPERVISOR_xen_version(XENVER_version, NULL);
131         if ((((version >> 16) == major) && ((version & 0xffff) >= minor)) ||
132                 ((version >> 16) > major))
133                 return true;
134         return false;
135 }
136
137 static __read_mostly unsigned int cpuid_leaf5_ecx_val;
138 static __read_mostly unsigned int cpuid_leaf5_edx_val;
139
140 static void xen_cpuid(unsigned int *ax, unsigned int *bx,
141                       unsigned int *cx, unsigned int *dx)
142 {
143         unsigned maskebx = ~0;
144
145         /*
146          * Mask out inconvenient features, to try and disable as many
147          * unsupported kernel subsystems as possible.
148          */
149         switch (*ax) {
150         case CPUID_MWAIT_LEAF:
151                 /* Synthesize the values.. */
152                 *ax = 0;
153                 *bx = 0;
154                 *cx = cpuid_leaf5_ecx_val;
155                 *dx = cpuid_leaf5_edx_val;
156                 return;
157
158         case 0xb:
159                 /* Suppress extended topology stuff */
160                 maskebx = 0;
161                 break;
162         }
163
164         asm(XEN_EMULATE_PREFIX "cpuid"
165                 : "=a" (*ax),
166                   "=b" (*bx),
167                   "=c" (*cx),
168                   "=d" (*dx)
169                 : "0" (*ax), "2" (*cx));
170
171         *bx &= maskebx;
172 }
173 STACK_FRAME_NON_STANDARD(xen_cpuid); /* XEN_EMULATE_PREFIX */
174
175 static bool __init xen_check_mwait(void)
176 {
177 #ifdef CONFIG_ACPI
178         struct xen_platform_op op = {
179                 .cmd                    = XENPF_set_processor_pminfo,
180                 .u.set_pminfo.id        = -1,
181                 .u.set_pminfo.type      = XEN_PM_PDC,
182         };
183         uint32_t buf[3];
184         unsigned int ax, bx, cx, dx;
185         unsigned int mwait_mask;
186
187         /* We need to determine whether it is OK to expose the MWAIT
188          * capability to the kernel to harvest deeper than C3 states from ACPI
189          * _CST using the processor_harvest_xen.c module. For this to work, we
190          * need to gather the MWAIT_LEAF values (which the cstate.c code
191          * checks against). The hypervisor won't expose the MWAIT flag because
192          * it would break backwards compatibility; so we will find out directly
193          * from the hardware and hypercall.
194          */
195         if (!xen_initial_domain())
196                 return false;
197
198         /*
199          * When running under platform earlier than Xen4.2, do not expose
200          * mwait, to avoid the risk of loading native acpi pad driver
201          */
202         if (!xen_running_on_version_or_later(4, 2))
203                 return false;
204
205         ax = 1;
206         cx = 0;
207
208         native_cpuid(&ax, &bx, &cx, &dx);
209
210         mwait_mask = (1 << (X86_FEATURE_EST % 32)) |
211                      (1 << (X86_FEATURE_MWAIT % 32));
212
213         if ((cx & mwait_mask) != mwait_mask)
214                 return false;
215
216         /* We need to emulate the MWAIT_LEAF and for that we need both
217          * ecx and edx. The hypercall provides only partial information.
218          */
219
220         ax = CPUID_MWAIT_LEAF;
221         bx = 0;
222         cx = 0;
223         dx = 0;
224
225         native_cpuid(&ax, &bx, &cx, &dx);
226
227         /* Ask the Hypervisor whether to clear ACPI_PDC_C_C2C3_FFH. If so,
228          * don't expose MWAIT_LEAF and let ACPI pick the IOPORT version of C3.
229          */
230         buf[0] = ACPI_PDC_REVISION_ID;
231         buf[1] = 1;
232         buf[2] = (ACPI_PDC_C_CAPABILITY_SMP | ACPI_PDC_EST_CAPABILITY_SWSMP);
233
234         set_xen_guest_handle(op.u.set_pminfo.pdc, buf);
235
236         if ((HYPERVISOR_platform_op(&op) == 0) &&
237             (buf[2] & (ACPI_PDC_C_C1_FFH | ACPI_PDC_C_C2C3_FFH))) {
238                 cpuid_leaf5_ecx_val = cx;
239                 cpuid_leaf5_edx_val = dx;
240         }
241         return true;
242 #else
243         return false;
244 #endif
245 }
246
247 static bool __init xen_check_xsave(void)
248 {
249         unsigned int cx, xsave_mask;
250
251         cx = cpuid_ecx(1);
252
253         xsave_mask = (1 << (X86_FEATURE_XSAVE % 32)) |
254                      (1 << (X86_FEATURE_OSXSAVE % 32));
255
256         /* Xen will set CR4.OSXSAVE if supported and not disabled by force */
257         return (cx & xsave_mask) == xsave_mask;
258 }
259
260 static void __init xen_init_capabilities(void)
261 {
262         setup_force_cpu_cap(X86_FEATURE_XENPV);
263         setup_clear_cpu_cap(X86_FEATURE_DCA);
264         setup_clear_cpu_cap(X86_FEATURE_APERFMPERF);
265         setup_clear_cpu_cap(X86_FEATURE_MTRR);
266         setup_clear_cpu_cap(X86_FEATURE_ACC);
267         setup_clear_cpu_cap(X86_FEATURE_X2APIC);
268
269         if (!xen_initial_domain())
270                 setup_clear_cpu_cap(X86_FEATURE_ACPI);
271
272         if (xen_check_mwait())
273                 setup_force_cpu_cap(X86_FEATURE_MWAIT);
274         else
275                 setup_clear_cpu_cap(X86_FEATURE_MWAIT);
276
277         if (!xen_check_xsave()) {
278                 setup_clear_cpu_cap(X86_FEATURE_XSAVE);
279                 setup_clear_cpu_cap(X86_FEATURE_OSXSAVE);
280         }
281 }
282
283 static void xen_set_debugreg(int reg, unsigned long val)
284 {
285         HYPERVISOR_set_debugreg(reg, val);
286 }
287
288 static unsigned long xen_get_debugreg(int reg)
289 {
290         return HYPERVISOR_get_debugreg(reg);
291 }
292
293 static void xen_end_context_switch(struct task_struct *next)
294 {
295         xen_mc_flush();
296         paravirt_end_context_switch(next);
297 }
298
299 static unsigned long xen_store_tr(void)
300 {
301         return 0;
302 }
303
304 /*
305  * Set the page permissions for a particular virtual address.  If the
306  * address is a vmalloc mapping (or other non-linear mapping), then
307  * find the linear mapping of the page and also set its protections to
308  * match.
309  */
310 static void set_aliased_prot(void *v, pgprot_t prot)
311 {
312         int level;
313         pte_t *ptep;
314         pte_t pte;
315         unsigned long pfn;
316         struct page *page;
317         unsigned char dummy;
318
319         ptep = lookup_address((unsigned long)v, &level);
320         BUG_ON(ptep == NULL);
321
322         pfn = pte_pfn(*ptep);
323         page = pfn_to_page(pfn);
324
325         pte = pfn_pte(pfn, prot);
326
327         /*
328          * Careful: update_va_mapping() will fail if the virtual address
329          * we're poking isn't populated in the page tables.  We don't
330          * need to worry about the direct map (that's always in the page
331          * tables), but we need to be careful about vmap space.  In
332          * particular, the top level page table can lazily propagate
333          * entries between processes, so if we've switched mms since we
334          * vmapped the target in the first place, we might not have the
335          * top-level page table entry populated.
336          *
337          * We disable preemption because we want the same mm active when
338          * we probe the target and when we issue the hypercall.  We'll
339          * have the same nominal mm, but if we're a kernel thread, lazy
340          * mm dropping could change our pgd.
341          *
342          * Out of an abundance of caution, this uses __get_user() to fault
343          * in the target address just in case there's some obscure case
344          * in which the target address isn't readable.
345          */
346
347         preempt_disable();
348
349         probe_kernel_read(&dummy, v, 1);
350
351         if (HYPERVISOR_update_va_mapping((unsigned long)v, pte, 0))
352                 BUG();
353
354         if (!PageHighMem(page)) {
355                 void *av = __va(PFN_PHYS(pfn));
356
357                 if (av != v)
358                         if (HYPERVISOR_update_va_mapping((unsigned long)av, pte, 0))
359                                 BUG();
360         } else
361                 kmap_flush_unused();
362
363         preempt_enable();
364 }
365
366 static void xen_alloc_ldt(struct desc_struct *ldt, unsigned entries)
367 {
368         const unsigned entries_per_page = PAGE_SIZE / LDT_ENTRY_SIZE;
369         int i;
370
371         /*
372          * We need to mark the all aliases of the LDT pages RO.  We
373          * don't need to call vm_flush_aliases(), though, since that's
374          * only responsible for flushing aliases out the TLBs, not the
375          * page tables, and Xen will flush the TLB for us if needed.
376          *
377          * To avoid confusing future readers: none of this is necessary
378          * to load the LDT.  The hypervisor only checks this when the
379          * LDT is faulted in due to subsequent descriptor access.
380          */
381
382         for (i = 0; i < entries; i += entries_per_page)
383                 set_aliased_prot(ldt + i, PAGE_KERNEL_RO);
384 }
385
386 static void xen_free_ldt(struct desc_struct *ldt, unsigned entries)
387 {
388         const unsigned entries_per_page = PAGE_SIZE / LDT_ENTRY_SIZE;
389         int i;
390
391         for (i = 0; i < entries; i += entries_per_page)
392                 set_aliased_prot(ldt + i, PAGE_KERNEL);
393 }
394
395 static void xen_set_ldt(const void *addr, unsigned entries)
396 {
397         struct mmuext_op *op;
398         struct multicall_space mcs = xen_mc_entry(sizeof(*op));
399
400         trace_xen_cpu_set_ldt(addr, entries);
401
402         op = mcs.args;
403         op->cmd = MMUEXT_SET_LDT;
404         op->arg1.linear_addr = (unsigned long)addr;
405         op->arg2.nr_ents = entries;
406
407         MULTI_mmuext_op(mcs.mc, op, 1, NULL, DOMID_SELF);
408
409         xen_mc_issue(PARAVIRT_LAZY_CPU);
410 }
411
412 static void xen_load_gdt(const struct desc_ptr *dtr)
413 {
414         unsigned long va = dtr->address;
415         unsigned int size = dtr->size + 1;
416         unsigned pages = DIV_ROUND_UP(size, PAGE_SIZE);
417         unsigned long frames[pages];
418         int f;
419
420         /*
421          * A GDT can be up to 64k in size, which corresponds to 8192
422          * 8-byte entries, or 16 4k pages..
423          */
424
425         BUG_ON(size > 65536);
426         BUG_ON(va & ~PAGE_MASK);
427
428         for (f = 0; va < dtr->address + size; va += PAGE_SIZE, f++) {
429                 int level;
430                 pte_t *ptep;
431                 unsigned long pfn, mfn;
432                 void *virt;
433
434                 /*
435                  * The GDT is per-cpu and is in the percpu data area.
436                  * That can be virtually mapped, so we need to do a
437                  * page-walk to get the underlying MFN for the
438                  * hypercall.  The page can also be in the kernel's
439                  * linear range, so we need to RO that mapping too.
440                  */
441                 ptep = lookup_address(va, &level);
442                 BUG_ON(ptep == NULL);
443
444                 pfn = pte_pfn(*ptep);
445                 mfn = pfn_to_mfn(pfn);
446                 virt = __va(PFN_PHYS(pfn));
447
448                 frames[f] = mfn;
449
450                 make_lowmem_page_readonly((void *)va);
451                 make_lowmem_page_readonly(virt);
452         }
453
454         if (HYPERVISOR_set_gdt(frames, size / sizeof(struct desc_struct)))
455                 BUG();
456 }
457
458 /*
459  * load_gdt for early boot, when the gdt is only mapped once
460  */
461 static void __init xen_load_gdt_boot(const struct desc_ptr *dtr)
462 {
463         unsigned long va = dtr->address;
464         unsigned int size = dtr->size + 1;
465         unsigned pages = DIV_ROUND_UP(size, PAGE_SIZE);
466         unsigned long frames[pages];
467         int f;
468
469         /*
470          * A GDT can be up to 64k in size, which corresponds to 8192
471          * 8-byte entries, or 16 4k pages..
472          */
473
474         BUG_ON(size > 65536);
475         BUG_ON(va & ~PAGE_MASK);
476
477         for (f = 0; va < dtr->address + size; va += PAGE_SIZE, f++) {
478                 pte_t pte;
479                 unsigned long pfn, mfn;
480
481                 pfn = virt_to_pfn(va);
482                 mfn = pfn_to_mfn(pfn);
483
484                 pte = pfn_pte(pfn, PAGE_KERNEL_RO);
485
486                 if (HYPERVISOR_update_va_mapping((unsigned long)va, pte, 0))
487                         BUG();
488
489                 frames[f] = mfn;
490         }
491
492         if (HYPERVISOR_set_gdt(frames, size / sizeof(struct desc_struct)))
493                 BUG();
494 }
495
496 static inline bool desc_equal(const struct desc_struct *d1,
497                               const struct desc_struct *d2)
498 {
499         return d1->a == d2->a && d1->b == d2->b;
500 }
501
502 static void load_TLS_descriptor(struct thread_struct *t,
503                                 unsigned int cpu, unsigned int i)
504 {
505         struct desc_struct *shadow = &per_cpu(shadow_tls_desc, cpu).desc[i];
506         struct desc_struct *gdt;
507         xmaddr_t maddr;
508         struct multicall_space mc;
509
510         if (desc_equal(shadow, &t->tls_array[i]))
511                 return;
512
513         *shadow = t->tls_array[i];
514
515         gdt = get_cpu_gdt_rw(cpu);
516         maddr = arbitrary_virt_to_machine(&gdt[GDT_ENTRY_TLS_MIN+i]);
517         mc = __xen_mc_entry(0);
518
519         MULTI_update_descriptor(mc.mc, maddr.maddr, t->tls_array[i]);
520 }
521
522 static void xen_load_tls(struct thread_struct *t, unsigned int cpu)
523 {
524         /*
525          * XXX sleazy hack: If we're being called in a lazy-cpu zone
526          * and lazy gs handling is enabled, it means we're in a
527          * context switch, and %gs has just been saved.  This means we
528          * can zero it out to prevent faults on exit from the
529          * hypervisor if the next process has no %gs.  Either way, it
530          * has been saved, and the new value will get loaded properly.
531          * This will go away as soon as Xen has been modified to not
532          * save/restore %gs for normal hypercalls.
533          *
534          * On x86_64, this hack is not used for %gs, because gs points
535          * to KERNEL_GS_BASE (and uses it for PDA references), so we
536          * must not zero %gs on x86_64
537          *
538          * For x86_64, we need to zero %fs, otherwise we may get an
539          * exception between the new %fs descriptor being loaded and
540          * %fs being effectively cleared at __switch_to().
541          */
542         if (paravirt_get_lazy_mode() == PARAVIRT_LAZY_CPU) {
543 #ifdef CONFIG_X86_32
544                 lazy_load_gs(0);
545 #else
546                 loadsegment(fs, 0);
547 #endif
548         }
549
550         xen_mc_batch();
551
552         load_TLS_descriptor(t, cpu, 0);
553         load_TLS_descriptor(t, cpu, 1);
554         load_TLS_descriptor(t, cpu, 2);
555
556         xen_mc_issue(PARAVIRT_LAZY_CPU);
557 }
558
559 #ifdef CONFIG_X86_64
560 static void xen_load_gs_index(unsigned int idx)
561 {
562         if (HYPERVISOR_set_segment_base(SEGBASE_GS_USER_SEL, idx))
563                 BUG();
564 }
565 #endif
566
567 static void xen_write_ldt_entry(struct desc_struct *dt, int entrynum,
568                                 const void *ptr)
569 {
570         xmaddr_t mach_lp = arbitrary_virt_to_machine(&dt[entrynum]);
571         u64 entry = *(u64 *)ptr;
572
573         trace_xen_cpu_write_ldt_entry(dt, entrynum, entry);
574
575         preempt_disable();
576
577         xen_mc_flush();
578         if (HYPERVISOR_update_descriptor(mach_lp.maddr, entry))
579                 BUG();
580
581         preempt_enable();
582 }
583
584 static int cvt_gate_to_trap(int vector, const gate_desc *val,
585                             struct trap_info *info)
586 {
587         unsigned long addr;
588
589         if (val->type != GATE_TRAP && val->type != GATE_INTERRUPT)
590                 return 0;
591
592         info->vector = vector;
593
594         addr = gate_offset(*val);
595 #ifdef CONFIG_X86_64
596         /*
597          * Look for known traps using IST, and substitute them
598          * appropriately.  The debugger ones are the only ones we care
599          * about.  Xen will handle faults like double_fault,
600          * so we should never see them.  Warn if
601          * there's an unexpected IST-using fault handler.
602          */
603         if (addr == (unsigned long)debug)
604                 addr = (unsigned long)xen_debug;
605         else if (addr == (unsigned long)int3)
606                 addr = (unsigned long)xen_int3;
607         else if (addr == (unsigned long)stack_segment)
608                 addr = (unsigned long)xen_stack_segment;
609         else if (addr == (unsigned long)double_fault) {
610                 /* Don't need to handle these */
611                 return 0;
612 #ifdef CONFIG_X86_MCE
613         } else if (addr == (unsigned long)machine_check) {
614                 /*
615                  * when xen hypervisor inject vMCE to guest,
616                  * use native mce handler to handle it
617                  */
618                 ;
619 #endif
620         } else if (addr == (unsigned long)nmi)
621                 /*
622                  * Use the native version as well.
623                  */
624                 ;
625         else {
626                 /* Some other trap using IST? */
627                 if (WARN_ON(val->ist != 0))
628                         return 0;
629         }
630 #endif  /* CONFIG_X86_64 */
631         info->address = addr;
632
633         info->cs = gate_segment(*val);
634         info->flags = val->dpl;
635         /* interrupt gates clear IF */
636         if (val->type == GATE_INTERRUPT)
637                 info->flags |= 1 << 2;
638
639         return 1;
640 }
641
642 /* Locations of each CPU's IDT */
643 static DEFINE_PER_CPU(struct desc_ptr, idt_desc);
644
645 /* Set an IDT entry.  If the entry is part of the current IDT, then
646    also update Xen. */
647 static void xen_write_idt_entry(gate_desc *dt, int entrynum, const gate_desc *g)
648 {
649         unsigned long p = (unsigned long)&dt[entrynum];
650         unsigned long start, end;
651
652         trace_xen_cpu_write_idt_entry(dt, entrynum, g);
653
654         preempt_disable();
655
656         start = __this_cpu_read(idt_desc.address);
657         end = start + __this_cpu_read(idt_desc.size) + 1;
658
659         xen_mc_flush();
660
661         native_write_idt_entry(dt, entrynum, g);
662
663         if (p >= start && (p + 8) <= end) {
664                 struct trap_info info[2];
665
666                 info[1].address = 0;
667
668                 if (cvt_gate_to_trap(entrynum, g, &info[0]))
669                         if (HYPERVISOR_set_trap_table(info))
670                                 BUG();
671         }
672
673         preempt_enable();
674 }
675
676 static void xen_convert_trap_info(const struct desc_ptr *desc,
677                                   struct trap_info *traps)
678 {
679         unsigned in, out, count;
680
681         count = (desc->size+1) / sizeof(gate_desc);
682         BUG_ON(count > 256);
683
684         for (in = out = 0; in < count; in++) {
685                 gate_desc *entry = (gate_desc *)(desc->address) + in;
686
687                 if (cvt_gate_to_trap(in, entry, &traps[out]))
688                         out++;
689         }
690         traps[out].address = 0;
691 }
692
693 void xen_copy_trap_info(struct trap_info *traps)
694 {
695         const struct desc_ptr *desc = this_cpu_ptr(&idt_desc);
696
697         xen_convert_trap_info(desc, traps);
698 }
699
700 /* Load a new IDT into Xen.  In principle this can be per-CPU, so we
701    hold a spinlock to protect the static traps[] array (static because
702    it avoids allocation, and saves stack space). */
703 static void xen_load_idt(const struct desc_ptr *desc)
704 {
705         static DEFINE_SPINLOCK(lock);
706         static struct trap_info traps[257];
707
708         trace_xen_cpu_load_idt(desc);
709
710         spin_lock(&lock);
711
712         memcpy(this_cpu_ptr(&idt_desc), desc, sizeof(idt_desc));
713
714         xen_convert_trap_info(desc, traps);
715
716         xen_mc_flush();
717         if (HYPERVISOR_set_trap_table(traps))
718                 BUG();
719
720         spin_unlock(&lock);
721 }
722
723 /* Write a GDT descriptor entry.  Ignore LDT descriptors, since
724    they're handled differently. */
725 static void xen_write_gdt_entry(struct desc_struct *dt, int entry,
726                                 const void *desc, int type)
727 {
728         trace_xen_cpu_write_gdt_entry(dt, entry, desc, type);
729
730         preempt_disable();
731
732         switch (type) {
733         case DESC_LDT:
734         case DESC_TSS:
735                 /* ignore */
736                 break;
737
738         default: {
739                 xmaddr_t maddr = arbitrary_virt_to_machine(&dt[entry]);
740
741                 xen_mc_flush();
742                 if (HYPERVISOR_update_descriptor(maddr.maddr, *(u64 *)desc))
743                         BUG();
744         }
745
746         }
747
748         preempt_enable();
749 }
750
751 /*
752  * Version of write_gdt_entry for use at early boot-time needed to
753  * update an entry as simply as possible.
754  */
755 static void __init xen_write_gdt_entry_boot(struct desc_struct *dt, int entry,
756                                             const void *desc, int type)
757 {
758         trace_xen_cpu_write_gdt_entry(dt, entry, desc, type);
759
760         switch (type) {
761         case DESC_LDT:
762         case DESC_TSS:
763                 /* ignore */
764                 break;
765
766         default: {
767                 xmaddr_t maddr = virt_to_machine(&dt[entry]);
768
769                 if (HYPERVISOR_update_descriptor(maddr.maddr, *(u64 *)desc))
770                         dt[entry] = *(struct desc_struct *)desc;
771         }
772
773         }
774 }
775
776 static void xen_load_sp0(struct tss_struct *tss,
777                          struct thread_struct *thread)
778 {
779         struct multicall_space mcs;
780
781         mcs = xen_mc_entry(0);
782         MULTI_stack_switch(mcs.mc, __KERNEL_DS, thread->sp0);
783         xen_mc_issue(PARAVIRT_LAZY_CPU);
784         tss->x86_tss.sp0 = thread->sp0;
785 }
786
787 void xen_set_iopl_mask(unsigned mask)
788 {
789         struct physdev_set_iopl set_iopl;
790
791         /* Force the change at ring 0. */
792         set_iopl.iopl = (mask == 0) ? 1 : (mask >> 12) & 3;
793         HYPERVISOR_physdev_op(PHYSDEVOP_set_iopl, &set_iopl);
794 }
795
796 static void xen_io_delay(void)
797 {
798 }
799
800 static DEFINE_PER_CPU(unsigned long, xen_cr0_value);
801
802 static unsigned long xen_read_cr0(void)
803 {
804         unsigned long cr0 = this_cpu_read(xen_cr0_value);
805
806         if (unlikely(cr0 == 0)) {
807                 cr0 = native_read_cr0();
808                 this_cpu_write(xen_cr0_value, cr0);
809         }
810
811         return cr0;
812 }
813
814 static void xen_write_cr0(unsigned long cr0)
815 {
816         struct multicall_space mcs;
817
818         this_cpu_write(xen_cr0_value, cr0);
819
820         /* Only pay attention to cr0.TS; everything else is
821            ignored. */
822         mcs = xen_mc_entry(0);
823
824         MULTI_fpu_taskswitch(mcs.mc, (cr0 & X86_CR0_TS) != 0);
825
826         xen_mc_issue(PARAVIRT_LAZY_CPU);
827 }
828
829 static void xen_write_cr4(unsigned long cr4)
830 {
831         cr4 &= ~(X86_CR4_PGE | X86_CR4_PSE | X86_CR4_PCE);
832
833         native_write_cr4(cr4);
834 }
835 #ifdef CONFIG_X86_64
836 static inline unsigned long xen_read_cr8(void)
837 {
838         return 0;
839 }
840 static inline void xen_write_cr8(unsigned long val)
841 {
842         BUG_ON(val);
843 }
844 #endif
845
846 static u64 xen_read_msr_safe(unsigned int msr, int *err)
847 {
848         u64 val;
849
850         if (pmu_msr_read(msr, &val, err))
851                 return val;
852
853         val = native_read_msr_safe(msr, err);
854         switch (msr) {
855         case MSR_IA32_APICBASE:
856 #ifdef CONFIG_X86_X2APIC
857                 if (!(cpuid_ecx(1) & (1 << (X86_FEATURE_X2APIC & 31))))
858 #endif
859                         val &= ~X2APIC_ENABLE;
860                 break;
861         }
862         return val;
863 }
864
865 static int xen_write_msr_safe(unsigned int msr, unsigned low, unsigned high)
866 {
867         int ret;
868
869         ret = 0;
870
871         switch (msr) {
872 #ifdef CONFIG_X86_64
873                 unsigned which;
874                 u64 base;
875
876         case MSR_FS_BASE:               which = SEGBASE_FS; goto set;
877         case MSR_KERNEL_GS_BASE:        which = SEGBASE_GS_USER; goto set;
878         case MSR_GS_BASE:               which = SEGBASE_GS_KERNEL; goto set;
879
880         set:
881                 base = ((u64)high << 32) | low;
882                 if (HYPERVISOR_set_segment_base(which, base) != 0)
883                         ret = -EIO;
884                 break;
885 #endif
886
887         case MSR_STAR:
888         case MSR_CSTAR:
889         case MSR_LSTAR:
890         case MSR_SYSCALL_MASK:
891         case MSR_IA32_SYSENTER_CS:
892         case MSR_IA32_SYSENTER_ESP:
893         case MSR_IA32_SYSENTER_EIP:
894                 /* Fast syscall setup is all done in hypercalls, so
895                    these are all ignored.  Stub them out here to stop
896                    Xen console noise. */
897                 break;
898
899         default:
900                 if (!pmu_msr_write(msr, low, high, &ret))
901                         ret = native_write_msr_safe(msr, low, high);
902         }
903
904         return ret;
905 }
906
907 static u64 xen_read_msr(unsigned int msr)
908 {
909         /*
910          * This will silently swallow a #GP from RDMSR.  It may be worth
911          * changing that.
912          */
913         int err;
914
915         return xen_read_msr_safe(msr, &err);
916 }
917
918 static void xen_write_msr(unsigned int msr, unsigned low, unsigned high)
919 {
920         /*
921          * This will silently swallow a #GP from WRMSR.  It may be worth
922          * changing that.
923          */
924         xen_write_msr_safe(msr, low, high);
925 }
926
927 void xen_setup_shared_info(void)
928 {
929         set_fixmap(FIX_PARAVIRT_BOOTMAP, xen_start_info->shared_info);
930
931         HYPERVISOR_shared_info =
932                 (struct shared_info *)fix_to_virt(FIX_PARAVIRT_BOOTMAP);
933
934 #ifndef CONFIG_SMP
935         /* In UP this is as good a place as any to set up shared info */
936         xen_setup_vcpu_info_placement();
937 #endif
938
939         xen_setup_mfn_list_list();
940
941         /*
942          * Now that shared info is set up we can start using routines that
943          * point to pvclock area.
944          */
945         if (system_state == SYSTEM_BOOTING)
946                 xen_init_time_ops();
947 }
948
949 /* This is called once we have the cpu_possible_mask */
950 void xen_setup_vcpu_info_placement(void)
951 {
952         int cpu;
953
954         for_each_possible_cpu(cpu) {
955                 /* Set up direct vCPU id mapping for PV guests. */
956                 per_cpu(xen_vcpu_id, cpu) = cpu;
957                 xen_vcpu_setup(cpu);
958         }
959
960         /*
961          * xen_vcpu_setup managed to place the vcpu_info within the
962          * percpu area for all cpus, so make use of it.
963          */
964         if (xen_have_vcpu_info_placement) {
965                 pv_irq_ops.save_fl = __PV_IS_CALLEE_SAVE(xen_save_fl_direct);
966                 pv_irq_ops.restore_fl = __PV_IS_CALLEE_SAVE(xen_restore_fl_direct);
967                 pv_irq_ops.irq_disable = __PV_IS_CALLEE_SAVE(xen_irq_disable_direct);
968                 pv_irq_ops.irq_enable = __PV_IS_CALLEE_SAVE(xen_irq_enable_direct);
969                 pv_mmu_ops.read_cr2 = xen_read_cr2_direct;
970         }
971 }
972
973 static unsigned xen_patch(u8 type, u16 clobbers, void *insnbuf,
974                           unsigned long addr, unsigned len)
975 {
976         char *start, *end, *reloc;
977         unsigned ret;
978
979         start = end = reloc = NULL;
980
981 #define SITE(op, x)                                                     \
982         case PARAVIRT_PATCH(op.x):                                      \
983         if (xen_have_vcpu_info_placement) {                             \
984                 start = (char *)xen_##x##_direct;                       \
985                 end = xen_##x##_direct_end;                             \
986                 reloc = xen_##x##_direct_reloc;                         \
987         }                                                               \
988         goto patch_site
989
990         switch (type) {
991                 SITE(pv_irq_ops, irq_enable);
992                 SITE(pv_irq_ops, irq_disable);
993                 SITE(pv_irq_ops, save_fl);
994                 SITE(pv_irq_ops, restore_fl);
995 #undef SITE
996
997         patch_site:
998                 if (start == NULL || (end-start) > len)
999                         goto default_patch;
1000
1001                 ret = paravirt_patch_insns(insnbuf, len, start, end);
1002
1003                 /* Note: because reloc is assigned from something that
1004                    appears to be an array, gcc assumes it's non-null,
1005                    but doesn't know its relationship with start and
1006                    end. */
1007                 if (reloc > start && reloc < end) {
1008                         int reloc_off = reloc - start;
1009                         long *relocp = (long *)(insnbuf + reloc_off);
1010                         long delta = start - (char *)addr;
1011
1012                         *relocp += delta;
1013                 }
1014                 break;
1015
1016         default_patch:
1017         default:
1018                 ret = paravirt_patch_default(type, clobbers, insnbuf,
1019                                              addr, len);
1020                 break;
1021         }
1022
1023         return ret;
1024 }
1025
1026 static const struct pv_info xen_info __initconst = {
1027         .shared_kernel_pmd = 0,
1028
1029 #ifdef CONFIG_X86_64
1030         .extra_user_64bit_cs = FLAT_USER_CS64,
1031 #endif
1032         .name = "Xen",
1033 };
1034
1035 static const struct pv_init_ops xen_init_ops __initconst = {
1036         .patch = xen_patch,
1037 };
1038
1039 static const struct pv_cpu_ops xen_cpu_ops __initconst = {
1040         .cpuid = xen_cpuid,
1041
1042         .set_debugreg = xen_set_debugreg,
1043         .get_debugreg = xen_get_debugreg,
1044
1045         .read_cr0 = xen_read_cr0,
1046         .write_cr0 = xen_write_cr0,
1047
1048         .read_cr4 = native_read_cr4,
1049         .write_cr4 = xen_write_cr4,
1050
1051 #ifdef CONFIG_X86_64
1052         .read_cr8 = xen_read_cr8,
1053         .write_cr8 = xen_write_cr8,
1054 #endif
1055
1056         .wbinvd = native_wbinvd,
1057
1058         .read_msr = xen_read_msr,
1059         .write_msr = xen_write_msr,
1060
1061         .read_msr_safe = xen_read_msr_safe,
1062         .write_msr_safe = xen_write_msr_safe,
1063
1064         .read_pmc = xen_read_pmc,
1065
1066         .iret = xen_iret,
1067 #ifdef CONFIG_X86_64
1068         .usergs_sysret64 = xen_sysret64,
1069 #endif
1070
1071         .load_tr_desc = paravirt_nop,
1072         .set_ldt = xen_set_ldt,
1073         .load_gdt = xen_load_gdt,
1074         .load_idt = xen_load_idt,
1075         .load_tls = xen_load_tls,
1076 #ifdef CONFIG_X86_64
1077         .load_gs_index = xen_load_gs_index,
1078 #endif
1079
1080         .alloc_ldt = xen_alloc_ldt,
1081         .free_ldt = xen_free_ldt,
1082
1083         .store_idt = native_store_idt,
1084         .store_tr = xen_store_tr,
1085
1086         .write_ldt_entry = xen_write_ldt_entry,
1087         .write_gdt_entry = xen_write_gdt_entry,
1088         .write_idt_entry = xen_write_idt_entry,
1089         .load_sp0 = xen_load_sp0,
1090
1091         .set_iopl_mask = xen_set_iopl_mask,
1092         .io_delay = xen_io_delay,
1093
1094         /* Xen takes care of %gs when switching to usermode for us */
1095         .swapgs = paravirt_nop,
1096
1097         .start_context_switch = paravirt_start_context_switch,
1098         .end_context_switch = xen_end_context_switch,
1099 };
1100
1101 static void xen_restart(char *msg)
1102 {
1103         xen_reboot(SHUTDOWN_reboot);
1104 }
1105
1106 static void xen_machine_halt(void)
1107 {
1108         xen_reboot(SHUTDOWN_poweroff);
1109 }
1110
1111 static void xen_machine_power_off(void)
1112 {
1113         if (pm_power_off)
1114                 pm_power_off();
1115         xen_reboot(SHUTDOWN_poweroff);
1116 }
1117
1118 static void xen_crash_shutdown(struct pt_regs *regs)
1119 {
1120         xen_reboot(SHUTDOWN_crash);
1121 }
1122
1123 static const struct machine_ops xen_machine_ops __initconst = {
1124         .restart = xen_restart,
1125         .halt = xen_machine_halt,
1126         .power_off = xen_machine_power_off,
1127         .shutdown = xen_machine_halt,
1128         .crash_shutdown = xen_crash_shutdown,
1129         .emergency_restart = xen_emergency_restart,
1130 };
1131
1132 static unsigned char xen_get_nmi_reason(void)
1133 {
1134         unsigned char reason = 0;
1135
1136         /* Construct a value which looks like it came from port 0x61. */
1137         if (test_bit(_XEN_NMIREASON_io_error,
1138                      &HYPERVISOR_shared_info->arch.nmi_reason))
1139                 reason |= NMI_REASON_IOCHK;
1140         if (test_bit(_XEN_NMIREASON_pci_serr,
1141                      &HYPERVISOR_shared_info->arch.nmi_reason))
1142                 reason |= NMI_REASON_SERR;
1143
1144         return reason;
1145 }
1146
1147 static void __init xen_boot_params_init_edd(void)
1148 {
1149 #if IS_ENABLED(CONFIG_EDD)
1150         struct xen_platform_op op;
1151         struct edd_info *edd_info;
1152         u32 *mbr_signature;
1153         unsigned nr;
1154         int ret;
1155
1156         edd_info = boot_params.eddbuf;
1157         mbr_signature = boot_params.edd_mbr_sig_buffer;
1158
1159         op.cmd = XENPF_firmware_info;
1160
1161         op.u.firmware_info.type = XEN_FW_DISK_INFO;
1162         for (nr = 0; nr < EDDMAXNR; nr++) {
1163                 struct edd_info *info = edd_info + nr;
1164
1165                 op.u.firmware_info.index = nr;
1166                 info->params.length = sizeof(info->params);
1167                 set_xen_guest_handle(op.u.firmware_info.u.disk_info.edd_params,
1168                                      &info->params);
1169                 ret = HYPERVISOR_platform_op(&op);
1170                 if (ret)
1171                         break;
1172
1173 #define C(x) info->x = op.u.firmware_info.u.disk_info.x
1174                 C(device);
1175                 C(version);
1176                 C(interface_support);
1177                 C(legacy_max_cylinder);
1178                 C(legacy_max_head);
1179                 C(legacy_sectors_per_track);
1180 #undef C
1181         }
1182         boot_params.eddbuf_entries = nr;
1183
1184         op.u.firmware_info.type = XEN_FW_DISK_MBR_SIGNATURE;
1185         for (nr = 0; nr < EDD_MBR_SIG_MAX; nr++) {
1186                 op.u.firmware_info.index = nr;
1187                 ret = HYPERVISOR_platform_op(&op);
1188                 if (ret)
1189                         break;
1190                 mbr_signature[nr] = op.u.firmware_info.u.disk_mbr_signature.mbr_signature;
1191         }
1192         boot_params.edd_mbr_sig_buf_entries = nr;
1193 #endif
1194 }
1195
1196 /*
1197  * Set up the GDT and segment registers for -fstack-protector.  Until
1198  * we do this, we have to be careful not to call any stack-protected
1199  * function, which is most of the kernel.
1200  */
1201 static void xen_setup_gdt(int cpu)
1202 {
1203         pv_cpu_ops.write_gdt_entry = xen_write_gdt_entry_boot;
1204         pv_cpu_ops.load_gdt = xen_load_gdt_boot;
1205
1206         setup_stack_canary_segment(0);
1207         switch_to_new_gdt(0);
1208
1209         pv_cpu_ops.write_gdt_entry = xen_write_gdt_entry;
1210         pv_cpu_ops.load_gdt = xen_load_gdt;
1211 }
1212
1213 static void __init xen_dom0_set_legacy_features(void)
1214 {
1215         x86_platform.legacy.rtc = 1;
1216 }
1217
1218 /* First C function to be called on Xen boot */
1219 asmlinkage __visible void __init xen_start_kernel(void)
1220 {
1221         struct physdev_set_iopl set_iopl;
1222         unsigned long initrd_start = 0;
1223         int rc;
1224
1225         if (!xen_start_info)
1226                 return;
1227
1228         xen_domain_type = XEN_PV_DOMAIN;
1229
1230         xen_setup_features();
1231
1232         xen_setup_machphys_mapping();
1233
1234         /* Install Xen paravirt ops */
1235         pv_info = xen_info;
1236         pv_init_ops = xen_init_ops;
1237         pv_cpu_ops = xen_cpu_ops;
1238
1239         x86_platform.get_nmi_reason = xen_get_nmi_reason;
1240
1241         x86_init.resources.memory_setup = xen_memory_setup;
1242         x86_init.oem.arch_setup = xen_arch_setup;
1243         x86_init.oem.banner = xen_banner;
1244
1245         /*
1246          * Set up some pagetable state before starting to set any ptes.
1247          */
1248
1249         xen_init_mmu_ops();
1250
1251         /* Prevent unwanted bits from being set in PTEs. */
1252         __supported_pte_mask &= ~_PAGE_GLOBAL;
1253
1254         /*
1255          * Prevent page tables from being allocated in highmem, even
1256          * if CONFIG_HIGHPTE is enabled.
1257          */
1258         __userpte_alloc_gfp &= ~__GFP_HIGHMEM;
1259
1260         /* Work out if we support NX */
1261         x86_configure_nx();
1262
1263         /* Get mfn list */
1264         xen_build_dynamic_phys_to_machine();
1265
1266         /*
1267          * Set up kernel GDT and segment registers, mainly so that
1268          * -fstack-protector code can be executed.
1269          */
1270         xen_setup_gdt(0);
1271
1272         xen_init_irq_ops();
1273         xen_init_capabilities();
1274
1275 #ifdef CONFIG_X86_LOCAL_APIC
1276         /*
1277          * set up the basic apic ops.
1278          */
1279         xen_init_apic();
1280 #endif
1281
1282         if (xen_feature(XENFEAT_mmu_pt_update_preserve_ad)) {
1283                 pv_mmu_ops.ptep_modify_prot_start = xen_ptep_modify_prot_start;
1284                 pv_mmu_ops.ptep_modify_prot_commit = xen_ptep_modify_prot_commit;
1285         }
1286
1287         machine_ops = xen_machine_ops;
1288
1289         /*
1290          * The only reliable way to retain the initial address of the
1291          * percpu gdt_page is to remember it here, so we can go and
1292          * mark it RW later, when the initial percpu area is freed.
1293          */
1294         xen_initial_gdt = &per_cpu(gdt_page, 0);
1295
1296         xen_smp_init();
1297
1298 #ifdef CONFIG_ACPI_NUMA
1299         /*
1300          * The pages we from Xen are not related to machine pages, so
1301          * any NUMA information the kernel tries to get from ACPI will
1302          * be meaningless.  Prevent it from trying.
1303          */
1304         acpi_numa = -1;
1305 #endif
1306         /* Let's presume PV guests always boot on vCPU with id 0. */
1307         per_cpu(xen_vcpu_id, 0) = 0;
1308
1309         /*
1310          * Setup xen_vcpu early because start_kernel needs it for
1311          * local_irq_disable(), irqs_disabled().
1312          *
1313          * Don't do the full vcpu_info placement stuff until we have
1314          * the cpu_possible_mask and a non-dummy shared_info.
1315          */
1316         xen_vcpu_info_reset(0);
1317
1318         WARN_ON(xen_cpuhp_setup(xen_cpu_up_prepare_pv, xen_cpu_dead_pv));
1319
1320         local_irq_disable();
1321         early_boot_irqs_disabled = true;
1322
1323         xen_raw_console_write("mapping kernel into physical memory\n");
1324         xen_setup_kernel_pagetable((pgd_t *)xen_start_info->pt_base,
1325                                    xen_start_info->nr_pages);
1326         xen_reserve_special_pages();
1327
1328         /* keep using Xen gdt for now; no urgent need to change it */
1329
1330 #ifdef CONFIG_X86_32
1331         pv_info.kernel_rpl = 1;
1332         if (xen_feature(XENFEAT_supervisor_mode_kernel))
1333                 pv_info.kernel_rpl = 0;
1334 #else
1335         pv_info.kernel_rpl = 0;
1336 #endif
1337         /* set the limit of our address space */
1338         xen_reserve_top();
1339
1340         /*
1341          * We used to do this in xen_arch_setup, but that is too late
1342          * on AMD were early_cpu_init (run before ->arch_setup()) calls
1343          * early_amd_init which pokes 0xcf8 port.
1344          */
1345         set_iopl.iopl = 1;
1346         rc = HYPERVISOR_physdev_op(PHYSDEVOP_set_iopl, &set_iopl);
1347         if (rc != 0)
1348                 xen_raw_printk("physdev_op failed %d\n", rc);
1349
1350 #ifdef CONFIG_X86_32
1351         /* set up basic CPUID stuff */
1352         cpu_detect(&new_cpu_data);
1353         set_cpu_cap(&new_cpu_data, X86_FEATURE_FPU);
1354         new_cpu_data.x86_capability[CPUID_1_EDX] = cpuid_edx(1);
1355 #endif
1356
1357         if (xen_start_info->mod_start) {
1358             if (xen_start_info->flags & SIF_MOD_START_PFN)
1359                 initrd_start = PFN_PHYS(xen_start_info->mod_start);
1360             else
1361                 initrd_start = __pa(xen_start_info->mod_start);
1362         }
1363
1364         /* Poke various useful things into boot_params */
1365         boot_params.hdr.type_of_loader = (9 << 4) | 0;
1366         boot_params.hdr.ramdisk_image = initrd_start;
1367         boot_params.hdr.ramdisk_size = xen_start_info->mod_len;
1368         boot_params.hdr.cmd_line_ptr = __pa(xen_start_info->cmd_line);
1369         boot_params.hdr.hardware_subarch = X86_SUBARCH_XEN;
1370
1371         if (!xen_initial_domain()) {
1372                 add_preferred_console("xenboot", 0, NULL);
1373                 add_preferred_console("tty", 0, NULL);
1374                 add_preferred_console("hvc", 0, NULL);
1375                 if (pci_xen)
1376                         x86_init.pci.arch_init = pci_xen_init;
1377         } else {
1378                 const struct dom0_vga_console_info *info =
1379                         (void *)((char *)xen_start_info +
1380                                  xen_start_info->console.dom0.info_off);
1381                 struct xen_platform_op op = {
1382                         .cmd = XENPF_firmware_info,
1383                         .interface_version = XENPF_INTERFACE_VERSION,
1384                         .u.firmware_info.type = XEN_FW_KBD_SHIFT_FLAGS,
1385                 };
1386
1387                 x86_platform.set_legacy_features =
1388                                 xen_dom0_set_legacy_features;
1389                 xen_init_vga(info, xen_start_info->console.dom0.info_size);
1390                 xen_start_info->console.domU.mfn = 0;
1391                 xen_start_info->console.domU.evtchn = 0;
1392
1393                 if (HYPERVISOR_platform_op(&op) == 0)
1394                         boot_params.kbd_status = op.u.firmware_info.u.kbd_shift_flags;
1395
1396                 /* Make sure ACS will be enabled */
1397                 pci_request_acs();
1398
1399                 xen_acpi_sleep_register();
1400
1401                 /* Avoid searching for BIOS MP tables */
1402                 x86_init.mpparse.find_smp_config = x86_init_noop;
1403                 x86_init.mpparse.get_smp_config = x86_init_uint_noop;
1404
1405                 xen_boot_params_init_edd();
1406         }
1407 #ifdef CONFIG_PCI
1408         /* PCI BIOS service won't work from a PV guest. */
1409         pci_probe &= ~PCI_PROBE_BIOS;
1410 #endif
1411         xen_raw_console_write("about to get started...\n");
1412
1413         /* We need this for printk timestamps */
1414         xen_setup_runstate_info(0);
1415
1416         xen_efi_init();
1417
1418         /* Start the world */
1419 #ifdef CONFIG_X86_32
1420         i386_start_kernel();
1421 #else
1422         cr4_init_shadow(); /* 32b kernel does this in i386_start_kernel() */
1423         x86_64_start_reservations((char *)__pa_symbol(&boot_params));
1424 #endif
1425 }
1426
1427 static int xen_cpu_up_prepare_pv(unsigned int cpu)
1428 {
1429         int rc;
1430
1431         xen_setup_timer(cpu);
1432
1433         rc = xen_smp_intr_init(cpu);
1434         if (rc) {
1435                 WARN(1, "xen_smp_intr_init() for CPU %d failed: %d\n",
1436                      cpu, rc);
1437                 return rc;
1438         }
1439
1440         rc = xen_smp_intr_init_pv(cpu);
1441         if (rc) {
1442                 WARN(1, "xen_smp_intr_init_pv() for CPU %d failed: %d\n",
1443                      cpu, rc);
1444                 return rc;
1445         }
1446
1447         return 0;
1448 }
1449
1450 static int xen_cpu_dead_pv(unsigned int cpu)
1451 {
1452         xen_smp_intr_free(cpu);
1453         xen_smp_intr_free_pv(cpu);
1454
1455         xen_teardown_timer(cpu);
1456
1457         return 0;
1458 }
1459
1460 static uint32_t __init xen_platform_pv(void)
1461 {
1462         if (xen_pv_domain())
1463                 return xen_cpuid_base();
1464
1465         return 0;
1466 }
1467
1468 const struct hypervisor_x86 x86_hyper_xen_pv = {
1469         .name                   = "Xen PV",
1470         .detect                 = xen_platform_pv,
1471         .pin_vcpu               = xen_pin_vcpu,
1472 };
1473 EXPORT_SYMBOL(x86_hyper_xen_pv);