enlighten.c 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338
  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. #include <linux/cpu.h>
  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/kprobes.h>
  24. #include <linux/bootmem.h>
  25. #include <linux/module.h>
  26. #include <linux/mm.h>
  27. #include <linux/page-flags.h>
  28. #include <linux/highmem.h>
  29. #include <linux/console.h>
  30. #include <linux/pci.h>
  31. #include <linux/gfp.h>
  32. #include <xen/xen.h>
  33. #include <xen/interface/xen.h>
  34. #include <xen/interface/version.h>
  35. #include <xen/interface/physdev.h>
  36. #include <xen/interface/vcpu.h>
  37. #include <xen/interface/memory.h>
  38. #include <xen/features.h>
  39. #include <xen/page.h>
  40. #include <xen/hvm.h>
  41. #include <xen/hvc-console.h>
  42. #include <asm/paravirt.h>
  43. #include <asm/apic.h>
  44. #include <asm/page.h>
  45. #include <asm/xen/hypercall.h>
  46. #include <asm/xen/hypervisor.h>
  47. #include <asm/fixmap.h>
  48. #include <asm/processor.h>
  49. #include <asm/proto.h>
  50. #include <asm/msr-index.h>
  51. #include <asm/traps.h>
  52. #include <asm/setup.h>
  53. #include <asm/desc.h>
  54. #include <asm/pgalloc.h>
  55. #include <asm/pgtable.h>
  56. #include <asm/tlbflush.h>
  57. #include <asm/reboot.h>
  58. #include <asm/setup.h>
  59. #include <asm/stackprotector.h>
  60. #include <asm/hypervisor.h>
  61. #include "xen-ops.h"
  62. #include "mmu.h"
  63. #include "multicalls.h"
  64. EXPORT_SYMBOL_GPL(hypercall_page);
  65. DEFINE_PER_CPU(struct vcpu_info *, xen_vcpu);
  66. DEFINE_PER_CPU(struct vcpu_info, xen_vcpu_info);
  67. enum xen_domain_type xen_domain_type = XEN_NATIVE;
  68. EXPORT_SYMBOL_GPL(xen_domain_type);
  69. struct start_info *xen_start_info;
  70. EXPORT_SYMBOL_GPL(xen_start_info);
  71. struct shared_info xen_dummy_shared_info;
  72. void *xen_initial_gdt;
  73. RESERVE_BRK(shared_info_page_brk, PAGE_SIZE);
  74. __read_mostly int xen_have_vector_callback;
  75. EXPORT_SYMBOL_GPL(xen_have_vector_callback);
  76. /*
  77. * Point at some empty memory to start with. We map the real shared_info
  78. * page as soon as fixmap is up and running.
  79. */
  80. struct shared_info *HYPERVISOR_shared_info = (void *)&xen_dummy_shared_info;
  81. /*
  82. * Flag to determine whether vcpu info placement is available on all
  83. * VCPUs. We assume it is to start with, and then set it to zero on
  84. * the first failure. This is because it can succeed on some VCPUs
  85. * and not others, since it can involve hypervisor memory allocation,
  86. * or because the guest failed to guarantee all the appropriate
  87. * constraints on all VCPUs (ie buffer can't cross a page boundary).
  88. *
  89. * Note that any particular CPU may be using a placed vcpu structure,
  90. * but we can only optimise if the all are.
  91. *
  92. * 0: not available, 1: available
  93. */
  94. static int have_vcpu_info_placement = 1;
  95. static void xen_vcpu_setup(int cpu)
  96. {
  97. struct vcpu_register_vcpu_info info;
  98. int err;
  99. struct vcpu_info *vcpup;
  100. BUG_ON(HYPERVISOR_shared_info == &xen_dummy_shared_info);
  101. per_cpu(xen_vcpu, cpu) = &HYPERVISOR_shared_info->vcpu_info[cpu];
  102. if (!have_vcpu_info_placement)
  103. return; /* already tested, not available */
  104. vcpup = &per_cpu(xen_vcpu_info, cpu);
  105. info.mfn = arbitrary_virt_to_mfn(vcpup);
  106. info.offset = offset_in_page(vcpup);
  107. printk(KERN_DEBUG "trying to map vcpu_info %d at %p, mfn %llx, offset %d\n",
  108. cpu, vcpup, info.mfn, info.offset);
  109. /* Check to see if the hypervisor will put the vcpu_info
  110. structure where we want it, which allows direct access via
  111. a percpu-variable. */
  112. err = HYPERVISOR_vcpu_op(VCPUOP_register_vcpu_info, cpu, &info);
  113. if (err) {
  114. printk(KERN_DEBUG "register_vcpu_info failed: err=%d\n", err);
  115. have_vcpu_info_placement = 0;
  116. } else {
  117. /* This cpu is using the registered vcpu info, even if
  118. later ones fail to. */
  119. per_cpu(xen_vcpu, cpu) = vcpup;
  120. printk(KERN_DEBUG "cpu %d using vcpu_info at %p\n",
  121. cpu, vcpup);
  122. }
  123. }
  124. /*
  125. * On restore, set the vcpu placement up again.
  126. * If it fails, then we're in a bad state, since
  127. * we can't back out from using it...
  128. */
  129. void xen_vcpu_restore(void)
  130. {
  131. int cpu;
  132. for_each_online_cpu(cpu) {
  133. bool other_cpu = (cpu != smp_processor_id());
  134. if (other_cpu &&
  135. HYPERVISOR_vcpu_op(VCPUOP_down, cpu, NULL))
  136. BUG();
  137. xen_setup_runstate_info(cpu);
  138. if (have_vcpu_info_placement)
  139. xen_vcpu_setup(cpu);
  140. if (other_cpu &&
  141. HYPERVISOR_vcpu_op(VCPUOP_up, cpu, NULL))
  142. BUG();
  143. }
  144. }
  145. static void __init xen_banner(void)
  146. {
  147. unsigned version = HYPERVISOR_xen_version(XENVER_version, NULL);
  148. struct xen_extraversion extra;
  149. HYPERVISOR_xen_version(XENVER_extraversion, &extra);
  150. printk(KERN_INFO "Booting paravirtualized kernel on %s\n",
  151. pv_info.name);
  152. printk(KERN_INFO "Xen version: %d.%d%s%s\n",
  153. version >> 16, version & 0xffff, extra.extraversion,
  154. xen_feature(XENFEAT_mmu_pt_update_preserve_ad) ? " (preserve-AD)" : "");
  155. }
  156. static __read_mostly unsigned int cpuid_leaf1_edx_mask = ~0;
  157. static __read_mostly unsigned int cpuid_leaf1_ecx_mask = ~0;
  158. static void xen_cpuid(unsigned int *ax, unsigned int *bx,
  159. unsigned int *cx, unsigned int *dx)
  160. {
  161. unsigned maskebx = ~0;
  162. unsigned maskecx = ~0;
  163. unsigned maskedx = ~0;
  164. /*
  165. * Mask out inconvenient features, to try and disable as many
  166. * unsupported kernel subsystems as possible.
  167. */
  168. switch (*ax) {
  169. case 1:
  170. maskecx = cpuid_leaf1_ecx_mask;
  171. maskedx = cpuid_leaf1_edx_mask;
  172. break;
  173. case 0xb:
  174. /* Suppress extended topology stuff */
  175. maskebx = 0;
  176. break;
  177. }
  178. asm(XEN_EMULATE_PREFIX "cpuid"
  179. : "=a" (*ax),
  180. "=b" (*bx),
  181. "=c" (*cx),
  182. "=d" (*dx)
  183. : "0" (*ax), "2" (*cx));
  184. *bx &= maskebx;
  185. *cx &= maskecx;
  186. *dx &= maskedx;
  187. }
  188. static __init void xen_init_cpuid_mask(void)
  189. {
  190. unsigned int ax, bx, cx, dx;
  191. cpuid_leaf1_edx_mask =
  192. ~((1 << X86_FEATURE_MCE) | /* disable MCE */
  193. (1 << X86_FEATURE_MCA) | /* disable MCA */
  194. (1 << X86_FEATURE_ACC)); /* thermal monitoring */
  195. if (!xen_initial_domain())
  196. cpuid_leaf1_edx_mask &=
  197. ~((1 << X86_FEATURE_APIC) | /* disable local APIC */
  198. (1 << X86_FEATURE_ACPI)); /* disable ACPI */
  199. ax = 1;
  200. cx = 0;
  201. xen_cpuid(&ax, &bx, &cx, &dx);
  202. /* cpuid claims we support xsave; try enabling it to see what happens */
  203. if (cx & (1 << (X86_FEATURE_XSAVE % 32))) {
  204. unsigned long cr4;
  205. set_in_cr4(X86_CR4_OSXSAVE);
  206. cr4 = read_cr4();
  207. if ((cr4 & X86_CR4_OSXSAVE) == 0)
  208. cpuid_leaf1_ecx_mask &= ~(1 << (X86_FEATURE_XSAVE % 32));
  209. clear_in_cr4(X86_CR4_OSXSAVE);
  210. }
  211. }
  212. static void xen_set_debugreg(int reg, unsigned long val)
  213. {
  214. HYPERVISOR_set_debugreg(reg, val);
  215. }
  216. static unsigned long xen_get_debugreg(int reg)
  217. {
  218. return HYPERVISOR_get_debugreg(reg);
  219. }
  220. static void xen_end_context_switch(struct task_struct *next)
  221. {
  222. xen_mc_flush();
  223. paravirt_end_context_switch(next);
  224. }
  225. static unsigned long xen_store_tr(void)
  226. {
  227. return 0;
  228. }
  229. /*
  230. * Set the page permissions for a particular virtual address. If the
  231. * address is a vmalloc mapping (or other non-linear mapping), then
  232. * find the linear mapping of the page and also set its protections to
  233. * match.
  234. */
  235. static void set_aliased_prot(void *v, pgprot_t prot)
  236. {
  237. int level;
  238. pte_t *ptep;
  239. pte_t pte;
  240. unsigned long pfn;
  241. struct page *page;
  242. ptep = lookup_address((unsigned long)v, &level);
  243. BUG_ON(ptep == NULL);
  244. pfn = pte_pfn(*ptep);
  245. page = pfn_to_page(pfn);
  246. pte = pfn_pte(pfn, prot);
  247. if (HYPERVISOR_update_va_mapping((unsigned long)v, pte, 0))
  248. BUG();
  249. if (!PageHighMem(page)) {
  250. void *av = __va(PFN_PHYS(pfn));
  251. if (av != v)
  252. if (HYPERVISOR_update_va_mapping((unsigned long)av, pte, 0))
  253. BUG();
  254. } else
  255. kmap_flush_unused();
  256. }
  257. static void xen_alloc_ldt(struct desc_struct *ldt, unsigned entries)
  258. {
  259. const unsigned entries_per_page = PAGE_SIZE / LDT_ENTRY_SIZE;
  260. int i;
  261. for(i = 0; i < entries; i += entries_per_page)
  262. set_aliased_prot(ldt + i, PAGE_KERNEL_RO);
  263. }
  264. static void xen_free_ldt(struct desc_struct *ldt, unsigned entries)
  265. {
  266. const unsigned entries_per_page = PAGE_SIZE / LDT_ENTRY_SIZE;
  267. int i;
  268. for(i = 0; i < entries; i += entries_per_page)
  269. set_aliased_prot(ldt + i, PAGE_KERNEL);
  270. }
  271. static void xen_set_ldt(const void *addr, unsigned entries)
  272. {
  273. struct mmuext_op *op;
  274. struct multicall_space mcs = xen_mc_entry(sizeof(*op));
  275. op = mcs.args;
  276. op->cmd = MMUEXT_SET_LDT;
  277. op->arg1.linear_addr = (unsigned long)addr;
  278. op->arg2.nr_ents = entries;
  279. MULTI_mmuext_op(mcs.mc, op, 1, NULL, DOMID_SELF);
  280. xen_mc_issue(PARAVIRT_LAZY_CPU);
  281. }
  282. static void xen_load_gdt(const struct desc_ptr *dtr)
  283. {
  284. unsigned long va = dtr->address;
  285. unsigned int size = dtr->size + 1;
  286. unsigned pages = (size + PAGE_SIZE - 1) / PAGE_SIZE;
  287. unsigned long frames[pages];
  288. int f;
  289. /*
  290. * A GDT can be up to 64k in size, which corresponds to 8192
  291. * 8-byte entries, or 16 4k pages..
  292. */
  293. BUG_ON(size > 65536);
  294. BUG_ON(va & ~PAGE_MASK);
  295. for (f = 0; va < dtr->address + size; va += PAGE_SIZE, f++) {
  296. int level;
  297. pte_t *ptep;
  298. unsigned long pfn, mfn;
  299. void *virt;
  300. /*
  301. * The GDT is per-cpu and is in the percpu data area.
  302. * That can be virtually mapped, so we need to do a
  303. * page-walk to get the underlying MFN for the
  304. * hypercall. The page can also be in the kernel's
  305. * linear range, so we need to RO that mapping too.
  306. */
  307. ptep = lookup_address(va, &level);
  308. BUG_ON(ptep == NULL);
  309. pfn = pte_pfn(*ptep);
  310. mfn = pfn_to_mfn(pfn);
  311. virt = __va(PFN_PHYS(pfn));
  312. frames[f] = mfn;
  313. make_lowmem_page_readonly((void *)va);
  314. make_lowmem_page_readonly(virt);
  315. }
  316. if (HYPERVISOR_set_gdt(frames, size / sizeof(struct desc_struct)))
  317. BUG();
  318. }
  319. /*
  320. * load_gdt for early boot, when the gdt is only mapped once
  321. */
  322. static __init void xen_load_gdt_boot(const struct desc_ptr *dtr)
  323. {
  324. unsigned long va = dtr->address;
  325. unsigned int size = dtr->size + 1;
  326. unsigned pages = (size + PAGE_SIZE - 1) / PAGE_SIZE;
  327. unsigned long frames[pages];
  328. int f;
  329. /*
  330. * A GDT can be up to 64k in size, which corresponds to 8192
  331. * 8-byte entries, or 16 4k pages..
  332. */
  333. BUG_ON(size > 65536);
  334. BUG_ON(va & ~PAGE_MASK);
  335. for (f = 0; va < dtr->address + size; va += PAGE_SIZE, f++) {
  336. pte_t pte;
  337. unsigned long pfn, mfn;
  338. pfn = virt_to_pfn(va);
  339. mfn = pfn_to_mfn(pfn);
  340. pte = pfn_pte(pfn, PAGE_KERNEL_RO);
  341. if (HYPERVISOR_update_va_mapping((unsigned long)va, pte, 0))
  342. BUG();
  343. frames[f] = mfn;
  344. }
  345. if (HYPERVISOR_set_gdt(frames, size / sizeof(struct desc_struct)))
  346. BUG();
  347. }
  348. static void load_TLS_descriptor(struct thread_struct *t,
  349. unsigned int cpu, unsigned int i)
  350. {
  351. struct desc_struct *gdt = get_cpu_gdt_table(cpu);
  352. xmaddr_t maddr = arbitrary_virt_to_machine(&gdt[GDT_ENTRY_TLS_MIN+i]);
  353. struct multicall_space mc = __xen_mc_entry(0);
  354. MULTI_update_descriptor(mc.mc, maddr.maddr, t->tls_array[i]);
  355. }
  356. static void xen_load_tls(struct thread_struct *t, unsigned int cpu)
  357. {
  358. /*
  359. * XXX sleazy hack: If we're being called in a lazy-cpu zone
  360. * and lazy gs handling is enabled, it means we're in a
  361. * context switch, and %gs has just been saved. This means we
  362. * can zero it out to prevent faults on exit from the
  363. * hypervisor if the next process has no %gs. Either way, it
  364. * has been saved, and the new value will get loaded properly.
  365. * This will go away as soon as Xen has been modified to not
  366. * save/restore %gs for normal hypercalls.
  367. *
  368. * On x86_64, this hack is not used for %gs, because gs points
  369. * to KERNEL_GS_BASE (and uses it for PDA references), so we
  370. * must not zero %gs on x86_64
  371. *
  372. * For x86_64, we need to zero %fs, otherwise we may get an
  373. * exception between the new %fs descriptor being loaded and
  374. * %fs being effectively cleared at __switch_to().
  375. */
  376. if (paravirt_get_lazy_mode() == PARAVIRT_LAZY_CPU) {
  377. #ifdef CONFIG_X86_32
  378. lazy_load_gs(0);
  379. #else
  380. loadsegment(fs, 0);
  381. #endif
  382. }
  383. xen_mc_batch();
  384. load_TLS_descriptor(t, cpu, 0);
  385. load_TLS_descriptor(t, cpu, 1);
  386. load_TLS_descriptor(t, cpu, 2);
  387. xen_mc_issue(PARAVIRT_LAZY_CPU);
  388. }
  389. #ifdef CONFIG_X86_64
  390. static void xen_load_gs_index(unsigned int idx)
  391. {
  392. if (HYPERVISOR_set_segment_base(SEGBASE_GS_USER_SEL, idx))
  393. BUG();
  394. }
  395. #endif
  396. static void xen_write_ldt_entry(struct desc_struct *dt, int entrynum,
  397. const void *ptr)
  398. {
  399. xmaddr_t mach_lp = arbitrary_virt_to_machine(&dt[entrynum]);
  400. u64 entry = *(u64 *)ptr;
  401. preempt_disable();
  402. xen_mc_flush();
  403. if (HYPERVISOR_update_descriptor(mach_lp.maddr, entry))
  404. BUG();
  405. preempt_enable();
  406. }
  407. static int cvt_gate_to_trap(int vector, const gate_desc *val,
  408. struct trap_info *info)
  409. {
  410. unsigned long addr;
  411. if (val->type != GATE_TRAP && val->type != GATE_INTERRUPT)
  412. return 0;
  413. info->vector = vector;
  414. addr = gate_offset(*val);
  415. #ifdef CONFIG_X86_64
  416. /*
  417. * Look for known traps using IST, and substitute them
  418. * appropriately. The debugger ones are the only ones we care
  419. * about. Xen will handle faults like double_fault and
  420. * machine_check, so we should never see them. Warn if
  421. * there's an unexpected IST-using fault handler.
  422. */
  423. if (addr == (unsigned long)debug)
  424. addr = (unsigned long)xen_debug;
  425. else if (addr == (unsigned long)int3)
  426. addr = (unsigned long)xen_int3;
  427. else if (addr == (unsigned long)stack_segment)
  428. addr = (unsigned long)xen_stack_segment;
  429. else if (addr == (unsigned long)double_fault ||
  430. addr == (unsigned long)nmi) {
  431. /* Don't need to handle these */
  432. return 0;
  433. #ifdef CONFIG_X86_MCE
  434. } else if (addr == (unsigned long)machine_check) {
  435. return 0;
  436. #endif
  437. } else {
  438. /* Some other trap using IST? */
  439. if (WARN_ON(val->ist != 0))
  440. return 0;
  441. }
  442. #endif /* CONFIG_X86_64 */
  443. info->address = addr;
  444. info->cs = gate_segment(*val);
  445. info->flags = val->dpl;
  446. /* interrupt gates clear IF */
  447. if (val->type == GATE_INTERRUPT)
  448. info->flags |= 1 << 2;
  449. return 1;
  450. }
  451. /* Locations of each CPU's IDT */
  452. static DEFINE_PER_CPU(struct desc_ptr, idt_desc);
  453. /* Set an IDT entry. If the entry is part of the current IDT, then
  454. also update Xen. */
  455. static void xen_write_idt_entry(gate_desc *dt, int entrynum, const gate_desc *g)
  456. {
  457. unsigned long p = (unsigned long)&dt[entrynum];
  458. unsigned long start, end;
  459. preempt_disable();
  460. start = __get_cpu_var(idt_desc).address;
  461. end = start + __get_cpu_var(idt_desc).size + 1;
  462. xen_mc_flush();
  463. native_write_idt_entry(dt, entrynum, g);
  464. if (p >= start && (p + 8) <= end) {
  465. struct trap_info info[2];
  466. info[1].address = 0;
  467. if (cvt_gate_to_trap(entrynum, g, &info[0]))
  468. if (HYPERVISOR_set_trap_table(info))
  469. BUG();
  470. }
  471. preempt_enable();
  472. }
  473. static void xen_convert_trap_info(const struct desc_ptr *desc,
  474. struct trap_info *traps)
  475. {
  476. unsigned in, out, count;
  477. count = (desc->size+1) / sizeof(gate_desc);
  478. BUG_ON(count > 256);
  479. for (in = out = 0; in < count; in++) {
  480. gate_desc *entry = (gate_desc*)(desc->address) + in;
  481. if (cvt_gate_to_trap(in, entry, &traps[out]))
  482. out++;
  483. }
  484. traps[out].address = 0;
  485. }
  486. void xen_copy_trap_info(struct trap_info *traps)
  487. {
  488. const struct desc_ptr *desc = &__get_cpu_var(idt_desc);
  489. xen_convert_trap_info(desc, traps);
  490. }
  491. /* Load a new IDT into Xen. In principle this can be per-CPU, so we
  492. hold a spinlock to protect the static traps[] array (static because
  493. it avoids allocation, and saves stack space). */
  494. static void xen_load_idt(const struct desc_ptr *desc)
  495. {
  496. static DEFINE_SPINLOCK(lock);
  497. static struct trap_info traps[257];
  498. spin_lock(&lock);
  499. __get_cpu_var(idt_desc) = *desc;
  500. xen_convert_trap_info(desc, traps);
  501. xen_mc_flush();
  502. if (HYPERVISOR_set_trap_table(traps))
  503. BUG();
  504. spin_unlock(&lock);
  505. }
  506. /* Write a GDT descriptor entry. Ignore LDT descriptors, since
  507. they're handled differently. */
  508. static void xen_write_gdt_entry(struct desc_struct *dt, int entry,
  509. const void *desc, int type)
  510. {
  511. preempt_disable();
  512. switch (type) {
  513. case DESC_LDT:
  514. case DESC_TSS:
  515. /* ignore */
  516. break;
  517. default: {
  518. xmaddr_t maddr = arbitrary_virt_to_machine(&dt[entry]);
  519. xen_mc_flush();
  520. if (HYPERVISOR_update_descriptor(maddr.maddr, *(u64 *)desc))
  521. BUG();
  522. }
  523. }
  524. preempt_enable();
  525. }
  526. /*
  527. * Version of write_gdt_entry for use at early boot-time needed to
  528. * update an entry as simply as possible.
  529. */
  530. static __init void xen_write_gdt_entry_boot(struct desc_struct *dt, int entry,
  531. const void *desc, int type)
  532. {
  533. switch (type) {
  534. case DESC_LDT:
  535. case DESC_TSS:
  536. /* ignore */
  537. break;
  538. default: {
  539. xmaddr_t maddr = virt_to_machine(&dt[entry]);
  540. if (HYPERVISOR_update_descriptor(maddr.maddr, *(u64 *)desc))
  541. dt[entry] = *(struct desc_struct *)desc;
  542. }
  543. }
  544. }
  545. static void xen_load_sp0(struct tss_struct *tss,
  546. struct thread_struct *thread)
  547. {
  548. struct multicall_space mcs = xen_mc_entry(0);
  549. MULTI_stack_switch(mcs.mc, __KERNEL_DS, thread->sp0);
  550. xen_mc_issue(PARAVIRT_LAZY_CPU);
  551. }
  552. static void xen_set_iopl_mask(unsigned mask)
  553. {
  554. struct physdev_set_iopl set_iopl;
  555. /* Force the change at ring 0. */
  556. set_iopl.iopl = (mask == 0) ? 1 : (mask >> 12) & 3;
  557. HYPERVISOR_physdev_op(PHYSDEVOP_set_iopl, &set_iopl);
  558. }
  559. static void xen_io_delay(void)
  560. {
  561. }
  562. #ifdef CONFIG_X86_LOCAL_APIC
  563. static u32 xen_apic_read(u32 reg)
  564. {
  565. return 0;
  566. }
  567. static void xen_apic_write(u32 reg, u32 val)
  568. {
  569. /* Warn to see if there's any stray references */
  570. WARN_ON(1);
  571. }
  572. static u64 xen_apic_icr_read(void)
  573. {
  574. return 0;
  575. }
  576. static void xen_apic_icr_write(u32 low, u32 id)
  577. {
  578. /* Warn to see if there's any stray references */
  579. WARN_ON(1);
  580. }
  581. static void xen_apic_wait_icr_idle(void)
  582. {
  583. return;
  584. }
  585. static u32 xen_safe_apic_wait_icr_idle(void)
  586. {
  587. return 0;
  588. }
  589. static void set_xen_basic_apic_ops(void)
  590. {
  591. apic->read = xen_apic_read;
  592. apic->write = xen_apic_write;
  593. apic->icr_read = xen_apic_icr_read;
  594. apic->icr_write = xen_apic_icr_write;
  595. apic->wait_icr_idle = xen_apic_wait_icr_idle;
  596. apic->safe_wait_icr_idle = xen_safe_apic_wait_icr_idle;
  597. }
  598. #endif
  599. static void xen_clts(void)
  600. {
  601. struct multicall_space mcs;
  602. mcs = xen_mc_entry(0);
  603. MULTI_fpu_taskswitch(mcs.mc, 0);
  604. xen_mc_issue(PARAVIRT_LAZY_CPU);
  605. }
  606. static DEFINE_PER_CPU(unsigned long, xen_cr0_value);
  607. static unsigned long xen_read_cr0(void)
  608. {
  609. unsigned long cr0 = percpu_read(xen_cr0_value);
  610. if (unlikely(cr0 == 0)) {
  611. cr0 = native_read_cr0();
  612. percpu_write(xen_cr0_value, cr0);
  613. }
  614. return cr0;
  615. }
  616. static void xen_write_cr0(unsigned long cr0)
  617. {
  618. struct multicall_space mcs;
  619. percpu_write(xen_cr0_value, cr0);
  620. /* Only pay attention to cr0.TS; everything else is
  621. ignored. */
  622. mcs = xen_mc_entry(0);
  623. MULTI_fpu_taskswitch(mcs.mc, (cr0 & X86_CR0_TS) != 0);
  624. xen_mc_issue(PARAVIRT_LAZY_CPU);
  625. }
  626. static void xen_write_cr4(unsigned long cr4)
  627. {
  628. cr4 &= ~X86_CR4_PGE;
  629. cr4 &= ~X86_CR4_PSE;
  630. native_write_cr4(cr4);
  631. }
  632. static int xen_write_msr_safe(unsigned int msr, unsigned low, unsigned high)
  633. {
  634. int ret;
  635. ret = 0;
  636. switch (msr) {
  637. #ifdef CONFIG_X86_64
  638. unsigned which;
  639. u64 base;
  640. case MSR_FS_BASE: which = SEGBASE_FS; goto set;
  641. case MSR_KERNEL_GS_BASE: which = SEGBASE_GS_USER; goto set;
  642. case MSR_GS_BASE: which = SEGBASE_GS_KERNEL; goto set;
  643. set:
  644. base = ((u64)high << 32) | low;
  645. if (HYPERVISOR_set_segment_base(which, base) != 0)
  646. ret = -EIO;
  647. break;
  648. #endif
  649. case MSR_STAR:
  650. case MSR_CSTAR:
  651. case MSR_LSTAR:
  652. case MSR_SYSCALL_MASK:
  653. case MSR_IA32_SYSENTER_CS:
  654. case MSR_IA32_SYSENTER_ESP:
  655. case MSR_IA32_SYSENTER_EIP:
  656. /* Fast syscall setup is all done in hypercalls, so
  657. these are all ignored. Stub them out here to stop
  658. Xen console noise. */
  659. break;
  660. default:
  661. ret = native_write_msr_safe(msr, low, high);
  662. }
  663. return ret;
  664. }
  665. void xen_setup_shared_info(void)
  666. {
  667. if (!xen_feature(XENFEAT_auto_translated_physmap)) {
  668. set_fixmap(FIX_PARAVIRT_BOOTMAP,
  669. xen_start_info->shared_info);
  670. HYPERVISOR_shared_info =
  671. (struct shared_info *)fix_to_virt(FIX_PARAVIRT_BOOTMAP);
  672. } else
  673. HYPERVISOR_shared_info =
  674. (struct shared_info *)__va(xen_start_info->shared_info);
  675. #ifndef CONFIG_SMP
  676. /* In UP this is as good a place as any to set up shared info */
  677. xen_setup_vcpu_info_placement();
  678. #endif
  679. xen_setup_mfn_list_list();
  680. }
  681. /* This is called once we have the cpu_possible_map */
  682. void xen_setup_vcpu_info_placement(void)
  683. {
  684. int cpu;
  685. for_each_possible_cpu(cpu)
  686. xen_vcpu_setup(cpu);
  687. /* xen_vcpu_setup managed to place the vcpu_info within the
  688. percpu area for all cpus, so make use of it */
  689. if (have_vcpu_info_placement) {
  690. printk(KERN_INFO "Xen: using vcpu_info placement\n");
  691. pv_irq_ops.save_fl = __PV_IS_CALLEE_SAVE(xen_save_fl_direct);
  692. pv_irq_ops.restore_fl = __PV_IS_CALLEE_SAVE(xen_restore_fl_direct);
  693. pv_irq_ops.irq_disable = __PV_IS_CALLEE_SAVE(xen_irq_disable_direct);
  694. pv_irq_ops.irq_enable = __PV_IS_CALLEE_SAVE(xen_irq_enable_direct);
  695. pv_mmu_ops.read_cr2 = xen_read_cr2_direct;
  696. }
  697. }
  698. static unsigned xen_patch(u8 type, u16 clobbers, void *insnbuf,
  699. unsigned long addr, unsigned len)
  700. {
  701. char *start, *end, *reloc;
  702. unsigned ret;
  703. start = end = reloc = NULL;
  704. #define SITE(op, x) \
  705. case PARAVIRT_PATCH(op.x): \
  706. if (have_vcpu_info_placement) { \
  707. start = (char *)xen_##x##_direct; \
  708. end = xen_##x##_direct_end; \
  709. reloc = xen_##x##_direct_reloc; \
  710. } \
  711. goto patch_site
  712. switch (type) {
  713. SITE(pv_irq_ops, irq_enable);
  714. SITE(pv_irq_ops, irq_disable);
  715. SITE(pv_irq_ops, save_fl);
  716. SITE(pv_irq_ops, restore_fl);
  717. #undef SITE
  718. patch_site:
  719. if (start == NULL || (end-start) > len)
  720. goto default_patch;
  721. ret = paravirt_patch_insns(insnbuf, len, start, end);
  722. /* Note: because reloc is assigned from something that
  723. appears to be an array, gcc assumes it's non-null,
  724. but doesn't know its relationship with start and
  725. end. */
  726. if (reloc > start && reloc < end) {
  727. int reloc_off = reloc - start;
  728. long *relocp = (long *)(insnbuf + reloc_off);
  729. long delta = start - (char *)addr;
  730. *relocp += delta;
  731. }
  732. break;
  733. default_patch:
  734. default:
  735. ret = paravirt_patch_default(type, clobbers, insnbuf,
  736. addr, len);
  737. break;
  738. }
  739. return ret;
  740. }
  741. static const struct pv_info xen_info __initdata = {
  742. .paravirt_enabled = 1,
  743. .shared_kernel_pmd = 0,
  744. .name = "Xen",
  745. };
  746. static const struct pv_init_ops xen_init_ops __initdata = {
  747. .patch = xen_patch,
  748. };
  749. static const struct pv_cpu_ops xen_cpu_ops __initdata = {
  750. .cpuid = xen_cpuid,
  751. .set_debugreg = xen_set_debugreg,
  752. .get_debugreg = xen_get_debugreg,
  753. .clts = xen_clts,
  754. .read_cr0 = xen_read_cr0,
  755. .write_cr0 = xen_write_cr0,
  756. .read_cr4 = native_read_cr4,
  757. .read_cr4_safe = native_read_cr4_safe,
  758. .write_cr4 = xen_write_cr4,
  759. .wbinvd = native_wbinvd,
  760. .read_msr = native_read_msr_safe,
  761. .write_msr = xen_write_msr_safe,
  762. .read_tsc = native_read_tsc,
  763. .read_pmc = native_read_pmc,
  764. .iret = xen_iret,
  765. .irq_enable_sysexit = xen_sysexit,
  766. #ifdef CONFIG_X86_64
  767. .usergs_sysret32 = xen_sysret32,
  768. .usergs_sysret64 = xen_sysret64,
  769. #endif
  770. .load_tr_desc = paravirt_nop,
  771. .set_ldt = xen_set_ldt,
  772. .load_gdt = xen_load_gdt,
  773. .load_idt = xen_load_idt,
  774. .load_tls = xen_load_tls,
  775. #ifdef CONFIG_X86_64
  776. .load_gs_index = xen_load_gs_index,
  777. #endif
  778. .alloc_ldt = xen_alloc_ldt,
  779. .free_ldt = xen_free_ldt,
  780. .store_gdt = native_store_gdt,
  781. .store_idt = native_store_idt,
  782. .store_tr = xen_store_tr,
  783. .write_ldt_entry = xen_write_ldt_entry,
  784. .write_gdt_entry = xen_write_gdt_entry,
  785. .write_idt_entry = xen_write_idt_entry,
  786. .load_sp0 = xen_load_sp0,
  787. .set_iopl_mask = xen_set_iopl_mask,
  788. .io_delay = xen_io_delay,
  789. /* Xen takes care of %gs when switching to usermode for us */
  790. .swapgs = paravirt_nop,
  791. .start_context_switch = paravirt_start_context_switch,
  792. .end_context_switch = xen_end_context_switch,
  793. };
  794. static const struct pv_apic_ops xen_apic_ops __initdata = {
  795. #ifdef CONFIG_X86_LOCAL_APIC
  796. .startup_ipi_hook = paravirt_nop,
  797. #endif
  798. };
  799. static void xen_reboot(int reason)
  800. {
  801. struct sched_shutdown r = { .reason = reason };
  802. #ifdef CONFIG_SMP
  803. smp_send_stop();
  804. #endif
  805. if (HYPERVISOR_sched_op(SCHEDOP_shutdown, &r))
  806. BUG();
  807. }
  808. static void xen_restart(char *msg)
  809. {
  810. xen_reboot(SHUTDOWN_reboot);
  811. }
  812. static void xen_emergency_restart(void)
  813. {
  814. xen_reboot(SHUTDOWN_reboot);
  815. }
  816. static void xen_machine_halt(void)
  817. {
  818. xen_reboot(SHUTDOWN_poweroff);
  819. }
  820. static void xen_crash_shutdown(struct pt_regs *regs)
  821. {
  822. xen_reboot(SHUTDOWN_crash);
  823. }
  824. static const struct machine_ops __initdata xen_machine_ops = {
  825. .restart = xen_restart,
  826. .halt = xen_machine_halt,
  827. .power_off = xen_machine_halt,
  828. .shutdown = xen_machine_halt,
  829. .crash_shutdown = xen_crash_shutdown,
  830. .emergency_restart = xen_emergency_restart,
  831. };
  832. /*
  833. * Set up the GDT and segment registers for -fstack-protector. Until
  834. * we do this, we have to be careful not to call any stack-protected
  835. * function, which is most of the kernel.
  836. */
  837. static void __init xen_setup_stackprotector(void)
  838. {
  839. pv_cpu_ops.write_gdt_entry = xen_write_gdt_entry_boot;
  840. pv_cpu_ops.load_gdt = xen_load_gdt_boot;
  841. setup_stack_canary_segment(0);
  842. switch_to_new_gdt(0);
  843. pv_cpu_ops.write_gdt_entry = xen_write_gdt_entry;
  844. pv_cpu_ops.load_gdt = xen_load_gdt;
  845. }
  846. /* First C function to be called on Xen boot */
  847. asmlinkage void __init xen_start_kernel(void)
  848. {
  849. pgd_t *pgd;
  850. if (!xen_start_info)
  851. return;
  852. xen_domain_type = XEN_PV_DOMAIN;
  853. /* Install Xen paravirt ops */
  854. pv_info = xen_info;
  855. pv_init_ops = xen_init_ops;
  856. pv_cpu_ops = xen_cpu_ops;
  857. pv_apic_ops = xen_apic_ops;
  858. x86_init.resources.memory_setup = xen_memory_setup;
  859. x86_init.oem.arch_setup = xen_arch_setup;
  860. x86_init.oem.banner = xen_banner;
  861. xen_init_time_ops();
  862. /*
  863. * Set up some pagetable state before starting to set any ptes.
  864. */
  865. xen_init_mmu_ops();
  866. /* Prevent unwanted bits from being set in PTEs. */
  867. __supported_pte_mask &= ~_PAGE_GLOBAL;
  868. if (!xen_initial_domain())
  869. __supported_pte_mask &= ~(_PAGE_PWT | _PAGE_PCD);
  870. __supported_pte_mask |= _PAGE_IOMAP;
  871. /*
  872. * Prevent page tables from being allocated in highmem, even
  873. * if CONFIG_HIGHPTE is enabled.
  874. */
  875. __userpte_alloc_gfp &= ~__GFP_HIGHMEM;
  876. /* Work out if we support NX */
  877. x86_configure_nx();
  878. xen_setup_features();
  879. /* Get mfn list */
  880. if (!xen_feature(XENFEAT_auto_translated_physmap))
  881. xen_build_dynamic_phys_to_machine();
  882. /*
  883. * Set up kernel GDT and segment registers, mainly so that
  884. * -fstack-protector code can be executed.
  885. */
  886. xen_setup_stackprotector();
  887. xen_init_irq_ops();
  888. xen_init_cpuid_mask();
  889. #ifdef CONFIG_X86_LOCAL_APIC
  890. /*
  891. * set up the basic apic ops.
  892. */
  893. set_xen_basic_apic_ops();
  894. #endif
  895. if (xen_feature(XENFEAT_mmu_pt_update_preserve_ad)) {
  896. pv_mmu_ops.ptep_modify_prot_start = xen_ptep_modify_prot_start;
  897. pv_mmu_ops.ptep_modify_prot_commit = xen_ptep_modify_prot_commit;
  898. }
  899. machine_ops = xen_machine_ops;
  900. /*
  901. * The only reliable way to retain the initial address of the
  902. * percpu gdt_page is to remember it here, so we can go and
  903. * mark it RW later, when the initial percpu area is freed.
  904. */
  905. xen_initial_gdt = &per_cpu(gdt_page, 0);
  906. xen_smp_init();
  907. pgd = (pgd_t *)xen_start_info->pt_base;
  908. /* Don't do the full vcpu_info placement stuff until we have a
  909. possible map and a non-dummy shared_info. */
  910. per_cpu(xen_vcpu, 0) = &HYPERVISOR_shared_info->vcpu_info[0];
  911. local_irq_disable();
  912. early_boot_irqs_off();
  913. xen_raw_console_write("mapping kernel into physical memory\n");
  914. pgd = xen_setup_kernel_pagetable(pgd, xen_start_info->nr_pages);
  915. init_mm.pgd = pgd;
  916. /* keep using Xen gdt for now; no urgent need to change it */
  917. #ifdef CONFIG_X86_32
  918. pv_info.kernel_rpl = 1;
  919. if (xen_feature(XENFEAT_supervisor_mode_kernel))
  920. pv_info.kernel_rpl = 0;
  921. #else
  922. pv_info.kernel_rpl = 0;
  923. #endif
  924. /* set the limit of our address space */
  925. xen_reserve_top();
  926. #ifdef CONFIG_X86_32
  927. /* set up basic CPUID stuff */
  928. cpu_detect(&new_cpu_data);
  929. new_cpu_data.hard_math = 1;
  930. new_cpu_data.wp_works_ok = 1;
  931. new_cpu_data.x86_capability[0] = cpuid_edx(1);
  932. #endif
  933. /* Poke various useful things into boot_params */
  934. boot_params.hdr.type_of_loader = (9 << 4) | 0;
  935. boot_params.hdr.ramdisk_image = xen_start_info->mod_start
  936. ? __pa(xen_start_info->mod_start) : 0;
  937. boot_params.hdr.ramdisk_size = xen_start_info->mod_len;
  938. boot_params.hdr.cmd_line_ptr = __pa(xen_start_info->cmd_line);
  939. if (!xen_initial_domain()) {
  940. add_preferred_console("xenboot", 0, NULL);
  941. add_preferred_console("tty", 0, NULL);
  942. add_preferred_console("hvc", 0, NULL);
  943. } else {
  944. /* Make sure ACS will be enabled */
  945. pci_request_acs();
  946. }
  947. xen_raw_console_write("about to get started...\n");
  948. xen_setup_runstate_info(0);
  949. /* Start the world */
  950. #ifdef CONFIG_X86_32
  951. i386_start_kernel();
  952. #else
  953. x86_64_start_reservations((char *)__pa_symbol(&boot_params));
  954. #endif
  955. }
  956. static uint32_t xen_cpuid_base(void)
  957. {
  958. uint32_t base, eax, ebx, ecx, edx;
  959. char signature[13];
  960. for (base = 0x40000000; base < 0x40010000; base += 0x100) {
  961. cpuid(base, &eax, &ebx, &ecx, &edx);
  962. *(uint32_t *)(signature + 0) = ebx;
  963. *(uint32_t *)(signature + 4) = ecx;
  964. *(uint32_t *)(signature + 8) = edx;
  965. signature[12] = 0;
  966. if (!strcmp("XenVMMXenVMM", signature) && ((eax - base) >= 2))
  967. return base;
  968. }
  969. return 0;
  970. }
  971. static int init_hvm_pv_info(int *major, int *minor)
  972. {
  973. uint32_t eax, ebx, ecx, edx, pages, msr, base;
  974. u64 pfn;
  975. base = xen_cpuid_base();
  976. cpuid(base + 1, &eax, &ebx, &ecx, &edx);
  977. *major = eax >> 16;
  978. *minor = eax & 0xffff;
  979. printk(KERN_INFO "Xen version %d.%d.\n", *major, *minor);
  980. cpuid(base + 2, &pages, &msr, &ecx, &edx);
  981. pfn = __pa(hypercall_page);
  982. wrmsr_safe(msr, (u32)pfn, (u32)(pfn >> 32));
  983. xen_setup_features();
  984. pv_info = xen_info;
  985. pv_info.kernel_rpl = 0;
  986. xen_domain_type = XEN_HVM_DOMAIN;
  987. return 0;
  988. }
  989. void xen_hvm_init_shared_info(void)
  990. {
  991. int cpu;
  992. struct xen_add_to_physmap xatp;
  993. static struct shared_info *shared_info_page = 0;
  994. if (!shared_info_page)
  995. shared_info_page = (struct shared_info *)
  996. extend_brk(PAGE_SIZE, PAGE_SIZE);
  997. xatp.domid = DOMID_SELF;
  998. xatp.idx = 0;
  999. xatp.space = XENMAPSPACE_shared_info;
  1000. xatp.gpfn = __pa(shared_info_page) >> PAGE_SHIFT;
  1001. if (HYPERVISOR_memory_op(XENMEM_add_to_physmap, &xatp))
  1002. BUG();
  1003. HYPERVISOR_shared_info = (struct shared_info *)shared_info_page;
  1004. /* xen_vcpu is a pointer to the vcpu_info struct in the shared_info
  1005. * page, we use it in the event channel upcall and in some pvclock
  1006. * related functions. We don't need the vcpu_info placement
  1007. * optimizations because we don't use any pv_mmu or pv_irq op on
  1008. * HVM.
  1009. * When xen_hvm_init_shared_info is run at boot time only vcpu 0 is
  1010. * online but xen_hvm_init_shared_info is run at resume time too and
  1011. * in that case multiple vcpus might be online. */
  1012. for_each_online_cpu(cpu) {
  1013. per_cpu(xen_vcpu, cpu) = &HYPERVISOR_shared_info->vcpu_info[cpu];
  1014. }
  1015. }
  1016. static int __cpuinit xen_hvm_cpu_notify(struct notifier_block *self,
  1017. unsigned long action, void *hcpu)
  1018. {
  1019. int cpu = (long)hcpu;
  1020. switch (action) {
  1021. case CPU_UP_PREPARE:
  1022. per_cpu(xen_vcpu, cpu) = &HYPERVISOR_shared_info->vcpu_info[cpu];
  1023. break;
  1024. default:
  1025. break;
  1026. }
  1027. return NOTIFY_OK;
  1028. }
  1029. static struct notifier_block __cpuinitdata xen_hvm_cpu_notifier = {
  1030. .notifier_call = xen_hvm_cpu_notify,
  1031. };
  1032. static void __init xen_hvm_guest_init(void)
  1033. {
  1034. int r;
  1035. int major, minor;
  1036. r = init_hvm_pv_info(&major, &minor);
  1037. if (r < 0)
  1038. return;
  1039. xen_hvm_init_shared_info();
  1040. if (xen_feature(XENFEAT_hvm_callback_vector))
  1041. xen_have_vector_callback = 1;
  1042. register_cpu_notifier(&xen_hvm_cpu_notifier);
  1043. have_vcpu_info_placement = 0;
  1044. x86_init.irqs.intr_init = xen_init_IRQ;
  1045. xen_hvm_init_time_ops();
  1046. }
  1047. static bool __init xen_hvm_platform(void)
  1048. {
  1049. if (xen_pv_domain())
  1050. return false;
  1051. if (!xen_cpuid_base())
  1052. return false;
  1053. return true;
  1054. }
  1055. const __refconst struct hypervisor_x86 x86_hyper_xen_hvm = {
  1056. .name = "Xen HVM",
  1057. .detect = xen_hvm_platform,
  1058. .init_platform = xen_hvm_guest_init,
  1059. };
  1060. EXPORT_SYMBOL(x86_hyper_xen_hvm);