enlighten.c 32 KB

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