enlighten.c 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419
  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/pci.h>
  47. #include <asm/xen/hypercall.h>
  48. #include <asm/xen/hypervisor.h>
  49. #include <asm/fixmap.h>
  50. #include <asm/processor.h>
  51. #include <asm/proto.h>
  52. #include <asm/msr-index.h>
  53. #include <asm/traps.h>
  54. #include <asm/setup.h>
  55. #include <asm/desc.h>
  56. #include <asm/pgalloc.h>
  57. #include <asm/pgtable.h>
  58. #include <asm/tlbflush.h>
  59. #include <asm/reboot.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. unsigned long *machine_to_phys_mapping = (void *)MACH2PHYS_VIRT_START;
  71. EXPORT_SYMBOL(machine_to_phys_mapping);
  72. unsigned long machine_to_phys_nr;
  73. EXPORT_SYMBOL(machine_to_phys_nr);
  74. struct start_info *xen_start_info;
  75. EXPORT_SYMBOL_GPL(xen_start_info);
  76. struct shared_info xen_dummy_shared_info;
  77. void *xen_initial_gdt;
  78. RESERVE_BRK(shared_info_page_brk, PAGE_SIZE);
  79. __read_mostly int xen_have_vector_callback;
  80. EXPORT_SYMBOL_GPL(xen_have_vector_callback);
  81. /*
  82. * Point at some empty memory to start with. We map the real shared_info
  83. * page as soon as fixmap is up and running.
  84. */
  85. struct shared_info *HYPERVISOR_shared_info = (void *)&xen_dummy_shared_info;
  86. /*
  87. * Flag to determine whether vcpu info placement is available on all
  88. * VCPUs. We assume it is to start with, and then set it to zero on
  89. * the first failure. This is because it can succeed on some VCPUs
  90. * and not others, since it can involve hypervisor memory allocation,
  91. * or because the guest failed to guarantee all the appropriate
  92. * constraints on all VCPUs (ie buffer can't cross a page boundary).
  93. *
  94. * Note that any particular CPU may be using a placed vcpu structure,
  95. * but we can only optimise if the all are.
  96. *
  97. * 0: not available, 1: available
  98. */
  99. static int have_vcpu_info_placement = 1;
  100. static void clamp_max_cpus(void)
  101. {
  102. #ifdef CONFIG_SMP
  103. if (setup_max_cpus > MAX_VIRT_CPUS)
  104. setup_max_cpus = MAX_VIRT_CPUS;
  105. #endif
  106. }
  107. static void xen_vcpu_setup(int cpu)
  108. {
  109. struct vcpu_register_vcpu_info info;
  110. int err;
  111. struct vcpu_info *vcpup;
  112. BUG_ON(HYPERVISOR_shared_info == &xen_dummy_shared_info);
  113. if (cpu < MAX_VIRT_CPUS)
  114. per_cpu(xen_vcpu,cpu) = &HYPERVISOR_shared_info->vcpu_info[cpu];
  115. if (!have_vcpu_info_placement) {
  116. if (cpu >= MAX_VIRT_CPUS)
  117. clamp_max_cpus();
  118. return;
  119. }
  120. vcpup = &per_cpu(xen_vcpu_info, cpu);
  121. info.mfn = arbitrary_virt_to_mfn(vcpup);
  122. info.offset = offset_in_page(vcpup);
  123. /* Check to see if the hypervisor will put the vcpu_info
  124. structure where we want it, which allows direct access via
  125. a percpu-variable. */
  126. err = HYPERVISOR_vcpu_op(VCPUOP_register_vcpu_info, cpu, &info);
  127. if (err) {
  128. printk(KERN_DEBUG "register_vcpu_info failed: err=%d\n", err);
  129. have_vcpu_info_placement = 0;
  130. clamp_max_cpus();
  131. } else {
  132. /* This cpu is using the registered vcpu info, even if
  133. later ones fail to. */
  134. per_cpu(xen_vcpu, 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 void __init xen_init_cpuid_mask(void)
  202. {
  203. unsigned int ax, bx, cx, dx;
  204. unsigned int xsave_mask;
  205. cpuid_leaf1_edx_mask =
  206. ~((1 << X86_FEATURE_MCE) | /* disable MCE */
  207. (1 << X86_FEATURE_MCA) | /* disable MCA */
  208. (1 << X86_FEATURE_MTRR) | /* disable MTRR */
  209. (1 << X86_FEATURE_ACC)); /* thermal monitoring */
  210. if (!xen_initial_domain())
  211. cpuid_leaf1_edx_mask &=
  212. ~((1 << X86_FEATURE_APIC) | /* disable local APIC */
  213. (1 << X86_FEATURE_ACPI)); /* disable ACPI */
  214. ax = 1;
  215. cx = 0;
  216. xen_cpuid(&ax, &bx, &cx, &dx);
  217. xsave_mask =
  218. (1 << (X86_FEATURE_XSAVE % 32)) |
  219. (1 << (X86_FEATURE_OSXSAVE % 32));
  220. /* Xen will set CR4.OSXSAVE if supported and not disabled by force */
  221. if ((cx & xsave_mask) != xsave_mask)
  222. cpuid_leaf1_ecx_mask &= ~xsave_mask; /* disable XSAVE & OSXSAVE */
  223. }
  224. static void xen_set_debugreg(int reg, unsigned long val)
  225. {
  226. HYPERVISOR_set_debugreg(reg, val);
  227. }
  228. static unsigned long xen_get_debugreg(int reg)
  229. {
  230. return HYPERVISOR_get_debugreg(reg);
  231. }
  232. static void xen_end_context_switch(struct task_struct *next)
  233. {
  234. xen_mc_flush();
  235. paravirt_end_context_switch(next);
  236. }
  237. static unsigned long xen_store_tr(void)
  238. {
  239. return 0;
  240. }
  241. /*
  242. * Set the page permissions for a particular virtual address. If the
  243. * address is a vmalloc mapping (or other non-linear mapping), then
  244. * find the linear mapping of the page and also set its protections to
  245. * match.
  246. */
  247. static void set_aliased_prot(void *v, pgprot_t prot)
  248. {
  249. int level;
  250. pte_t *ptep;
  251. pte_t pte;
  252. unsigned long pfn;
  253. struct page *page;
  254. ptep = lookup_address((unsigned long)v, &level);
  255. BUG_ON(ptep == NULL);
  256. pfn = pte_pfn(*ptep);
  257. page = pfn_to_page(pfn);
  258. pte = pfn_pte(pfn, prot);
  259. if (HYPERVISOR_update_va_mapping((unsigned long)v, pte, 0))
  260. BUG();
  261. if (!PageHighMem(page)) {
  262. void *av = __va(PFN_PHYS(pfn));
  263. if (av != v)
  264. if (HYPERVISOR_update_va_mapping((unsigned long)av, pte, 0))
  265. BUG();
  266. } else
  267. kmap_flush_unused();
  268. }
  269. static void xen_alloc_ldt(struct desc_struct *ldt, unsigned entries)
  270. {
  271. const unsigned entries_per_page = PAGE_SIZE / LDT_ENTRY_SIZE;
  272. int i;
  273. for(i = 0; i < entries; i += entries_per_page)
  274. set_aliased_prot(ldt + i, PAGE_KERNEL_RO);
  275. }
  276. static void xen_free_ldt(struct desc_struct *ldt, unsigned entries)
  277. {
  278. const unsigned entries_per_page = PAGE_SIZE / LDT_ENTRY_SIZE;
  279. int i;
  280. for(i = 0; i < entries; i += entries_per_page)
  281. set_aliased_prot(ldt + i, PAGE_KERNEL);
  282. }
  283. static void xen_set_ldt(const void *addr, unsigned entries)
  284. {
  285. struct mmuext_op *op;
  286. struct multicall_space mcs = xen_mc_entry(sizeof(*op));
  287. trace_xen_cpu_set_ldt(addr, entries);
  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 void __init 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. trace_xen_cpu_write_ldt_entry(dt, entrynum, entry);
  415. preempt_disable();
  416. xen_mc_flush();
  417. if (HYPERVISOR_update_descriptor(mach_lp.maddr, entry))
  418. BUG();
  419. preempt_enable();
  420. }
  421. static int cvt_gate_to_trap(int vector, const gate_desc *val,
  422. struct trap_info *info)
  423. {
  424. unsigned long addr;
  425. if (val->type != GATE_TRAP && val->type != GATE_INTERRUPT)
  426. return 0;
  427. info->vector = vector;
  428. addr = gate_offset(*val);
  429. #ifdef CONFIG_X86_64
  430. /*
  431. * Look for known traps using IST, and substitute them
  432. * appropriately. The debugger ones are the only ones we care
  433. * about. Xen will handle faults like double_fault and
  434. * machine_check, so we should never see them. Warn if
  435. * there's an unexpected IST-using fault handler.
  436. */
  437. if (addr == (unsigned long)debug)
  438. addr = (unsigned long)xen_debug;
  439. else if (addr == (unsigned long)int3)
  440. addr = (unsigned long)xen_int3;
  441. else if (addr == (unsigned long)stack_segment)
  442. addr = (unsigned long)xen_stack_segment;
  443. else if (addr == (unsigned long)double_fault ||
  444. addr == (unsigned long)nmi) {
  445. /* Don't need to handle these */
  446. return 0;
  447. #ifdef CONFIG_X86_MCE
  448. } else if (addr == (unsigned long)machine_check) {
  449. return 0;
  450. #endif
  451. } else {
  452. /* Some other trap using IST? */
  453. if (WARN_ON(val->ist != 0))
  454. return 0;
  455. }
  456. #endif /* CONFIG_X86_64 */
  457. info->address = addr;
  458. info->cs = gate_segment(*val);
  459. info->flags = val->dpl;
  460. /* interrupt gates clear IF */
  461. if (val->type == GATE_INTERRUPT)
  462. info->flags |= 1 << 2;
  463. return 1;
  464. }
  465. /* Locations of each CPU's IDT */
  466. static DEFINE_PER_CPU(struct desc_ptr, idt_desc);
  467. /* Set an IDT entry. If the entry is part of the current IDT, then
  468. also update Xen. */
  469. static void xen_write_idt_entry(gate_desc *dt, int entrynum, const gate_desc *g)
  470. {
  471. unsigned long p = (unsigned long)&dt[entrynum];
  472. unsigned long start, end;
  473. trace_xen_cpu_write_idt_entry(dt, entrynum, g);
  474. preempt_disable();
  475. start = __this_cpu_read(idt_desc.address);
  476. end = start + __this_cpu_read(idt_desc.size) + 1;
  477. xen_mc_flush();
  478. native_write_idt_entry(dt, entrynum, g);
  479. if (p >= start && (p + 8) <= end) {
  480. struct trap_info info[2];
  481. info[1].address = 0;
  482. if (cvt_gate_to_trap(entrynum, g, &info[0]))
  483. if (HYPERVISOR_set_trap_table(info))
  484. BUG();
  485. }
  486. preempt_enable();
  487. }
  488. static void xen_convert_trap_info(const struct desc_ptr *desc,
  489. struct trap_info *traps)
  490. {
  491. unsigned in, out, count;
  492. count = (desc->size+1) / sizeof(gate_desc);
  493. BUG_ON(count > 256);
  494. for (in = out = 0; in < count; in++) {
  495. gate_desc *entry = (gate_desc*)(desc->address) + in;
  496. if (cvt_gate_to_trap(in, entry, &traps[out]))
  497. out++;
  498. }
  499. traps[out].address = 0;
  500. }
  501. void xen_copy_trap_info(struct trap_info *traps)
  502. {
  503. const struct desc_ptr *desc = &__get_cpu_var(idt_desc);
  504. xen_convert_trap_info(desc, traps);
  505. }
  506. /* Load a new IDT into Xen. In principle this can be per-CPU, so we
  507. hold a spinlock to protect the static traps[] array (static because
  508. it avoids allocation, and saves stack space). */
  509. static void xen_load_idt(const struct desc_ptr *desc)
  510. {
  511. static DEFINE_SPINLOCK(lock);
  512. static struct trap_info traps[257];
  513. trace_xen_cpu_load_idt(desc);
  514. spin_lock(&lock);
  515. __get_cpu_var(idt_desc) = *desc;
  516. xen_convert_trap_info(desc, traps);
  517. xen_mc_flush();
  518. if (HYPERVISOR_set_trap_table(traps))
  519. BUG();
  520. spin_unlock(&lock);
  521. }
  522. /* Write a GDT descriptor entry. Ignore LDT descriptors, since
  523. they're handled differently. */
  524. static void xen_write_gdt_entry(struct desc_struct *dt, int entry,
  525. const void *desc, int type)
  526. {
  527. trace_xen_cpu_write_gdt_entry(dt, entry, desc, type);
  528. preempt_disable();
  529. switch (type) {
  530. case DESC_LDT:
  531. case DESC_TSS:
  532. /* ignore */
  533. break;
  534. default: {
  535. xmaddr_t maddr = arbitrary_virt_to_machine(&dt[entry]);
  536. xen_mc_flush();
  537. if (HYPERVISOR_update_descriptor(maddr.maddr, *(u64 *)desc))
  538. BUG();
  539. }
  540. }
  541. preempt_enable();
  542. }
  543. /*
  544. * Version of write_gdt_entry for use at early boot-time needed to
  545. * update an entry as simply as possible.
  546. */
  547. static void __init xen_write_gdt_entry_boot(struct desc_struct *dt, int entry,
  548. const void *desc, int type)
  549. {
  550. trace_xen_cpu_write_gdt_entry(dt, entry, desc, type);
  551. switch (type) {
  552. case DESC_LDT:
  553. case DESC_TSS:
  554. /* ignore */
  555. break;
  556. default: {
  557. xmaddr_t maddr = virt_to_machine(&dt[entry]);
  558. if (HYPERVISOR_update_descriptor(maddr.maddr, *(u64 *)desc))
  559. dt[entry] = *(struct desc_struct *)desc;
  560. }
  561. }
  562. }
  563. static void xen_load_sp0(struct tss_struct *tss,
  564. struct thread_struct *thread)
  565. {
  566. struct multicall_space mcs;
  567. mcs = xen_mc_entry(0);
  568. MULTI_stack_switch(mcs.mc, __KERNEL_DS, thread->sp0);
  569. xen_mc_issue(PARAVIRT_LAZY_CPU);
  570. }
  571. static void xen_set_iopl_mask(unsigned mask)
  572. {
  573. struct physdev_set_iopl set_iopl;
  574. /* Force the change at ring 0. */
  575. set_iopl.iopl = (mask == 0) ? 1 : (mask >> 12) & 3;
  576. HYPERVISOR_physdev_op(PHYSDEVOP_set_iopl, &set_iopl);
  577. }
  578. static void xen_io_delay(void)
  579. {
  580. }
  581. #ifdef CONFIG_X86_LOCAL_APIC
  582. static u32 xen_apic_read(u32 reg)
  583. {
  584. return 0;
  585. }
  586. static void xen_apic_write(u32 reg, u32 val)
  587. {
  588. /* Warn to see if there's any stray references */
  589. WARN_ON(1);
  590. }
  591. static u64 xen_apic_icr_read(void)
  592. {
  593. return 0;
  594. }
  595. static void xen_apic_icr_write(u32 low, u32 id)
  596. {
  597. /* Warn to see if there's any stray references */
  598. WARN_ON(1);
  599. }
  600. static void xen_apic_wait_icr_idle(void)
  601. {
  602. return;
  603. }
  604. static u32 xen_safe_apic_wait_icr_idle(void)
  605. {
  606. return 0;
  607. }
  608. static void set_xen_basic_apic_ops(void)
  609. {
  610. apic->read = xen_apic_read;
  611. apic->write = xen_apic_write;
  612. apic->icr_read = xen_apic_icr_read;
  613. apic->icr_write = xen_apic_icr_write;
  614. apic->wait_icr_idle = xen_apic_wait_icr_idle;
  615. apic->safe_wait_icr_idle = xen_safe_apic_wait_icr_idle;
  616. }
  617. #endif
  618. static void xen_clts(void)
  619. {
  620. struct multicall_space mcs;
  621. mcs = xen_mc_entry(0);
  622. MULTI_fpu_taskswitch(mcs.mc, 0);
  623. xen_mc_issue(PARAVIRT_LAZY_CPU);
  624. }
  625. static DEFINE_PER_CPU(unsigned long, xen_cr0_value);
  626. static unsigned long xen_read_cr0(void)
  627. {
  628. unsigned long cr0 = percpu_read(xen_cr0_value);
  629. if (unlikely(cr0 == 0)) {
  630. cr0 = native_read_cr0();
  631. percpu_write(xen_cr0_value, cr0);
  632. }
  633. return cr0;
  634. }
  635. static void xen_write_cr0(unsigned long cr0)
  636. {
  637. struct multicall_space mcs;
  638. percpu_write(xen_cr0_value, cr0);
  639. /* Only pay attention to cr0.TS; everything else is
  640. ignored. */
  641. mcs = xen_mc_entry(0);
  642. MULTI_fpu_taskswitch(mcs.mc, (cr0 & X86_CR0_TS) != 0);
  643. xen_mc_issue(PARAVIRT_LAZY_CPU);
  644. }
  645. static void xen_write_cr4(unsigned long cr4)
  646. {
  647. cr4 &= ~X86_CR4_PGE;
  648. cr4 &= ~X86_CR4_PSE;
  649. native_write_cr4(cr4);
  650. }
  651. static int xen_write_msr_safe(unsigned int msr, unsigned low, unsigned high)
  652. {
  653. int ret;
  654. ret = 0;
  655. switch (msr) {
  656. #ifdef CONFIG_X86_64
  657. unsigned which;
  658. u64 base;
  659. case MSR_FS_BASE: which = SEGBASE_FS; goto set;
  660. case MSR_KERNEL_GS_BASE: which = SEGBASE_GS_USER; goto set;
  661. case MSR_GS_BASE: which = SEGBASE_GS_KERNEL; goto set;
  662. set:
  663. base = ((u64)high << 32) | low;
  664. if (HYPERVISOR_set_segment_base(which, base) != 0)
  665. ret = -EIO;
  666. break;
  667. #endif
  668. case MSR_STAR:
  669. case MSR_CSTAR:
  670. case MSR_LSTAR:
  671. case MSR_SYSCALL_MASK:
  672. case MSR_IA32_SYSENTER_CS:
  673. case MSR_IA32_SYSENTER_ESP:
  674. case MSR_IA32_SYSENTER_EIP:
  675. /* Fast syscall setup is all done in hypercalls, so
  676. these are all ignored. Stub them out here to stop
  677. Xen console noise. */
  678. break;
  679. case MSR_IA32_CR_PAT:
  680. if (smp_processor_id() == 0)
  681. xen_set_pat(((u64)high << 32) | low);
  682. break;
  683. default:
  684. ret = native_write_msr_safe(msr, low, high);
  685. }
  686. return ret;
  687. }
  688. void xen_setup_shared_info(void)
  689. {
  690. if (!xen_feature(XENFEAT_auto_translated_physmap)) {
  691. set_fixmap(FIX_PARAVIRT_BOOTMAP,
  692. xen_start_info->shared_info);
  693. HYPERVISOR_shared_info =
  694. (struct shared_info *)fix_to_virt(FIX_PARAVIRT_BOOTMAP);
  695. } else
  696. HYPERVISOR_shared_info =
  697. (struct shared_info *)__va(xen_start_info->shared_info);
  698. #ifndef CONFIG_SMP
  699. /* In UP this is as good a place as any to set up shared info */
  700. xen_setup_vcpu_info_placement();
  701. #endif
  702. xen_setup_mfn_list_list();
  703. }
  704. /* This is called once we have the cpu_possible_map */
  705. void xen_setup_vcpu_info_placement(void)
  706. {
  707. int cpu;
  708. for_each_possible_cpu(cpu)
  709. xen_vcpu_setup(cpu);
  710. /* xen_vcpu_setup managed to place the vcpu_info within the
  711. percpu area for all cpus, so make use of it */
  712. if (have_vcpu_info_placement) {
  713. pv_irq_ops.save_fl = __PV_IS_CALLEE_SAVE(xen_save_fl_direct);
  714. pv_irq_ops.restore_fl = __PV_IS_CALLEE_SAVE(xen_restore_fl_direct);
  715. pv_irq_ops.irq_disable = __PV_IS_CALLEE_SAVE(xen_irq_disable_direct);
  716. pv_irq_ops.irq_enable = __PV_IS_CALLEE_SAVE(xen_irq_enable_direct);
  717. pv_mmu_ops.read_cr2 = xen_read_cr2_direct;
  718. }
  719. }
  720. static unsigned xen_patch(u8 type, u16 clobbers, void *insnbuf,
  721. unsigned long addr, unsigned len)
  722. {
  723. char *start, *end, *reloc;
  724. unsigned ret;
  725. start = end = reloc = NULL;
  726. #define SITE(op, x) \
  727. case PARAVIRT_PATCH(op.x): \
  728. if (have_vcpu_info_placement) { \
  729. start = (char *)xen_##x##_direct; \
  730. end = xen_##x##_direct_end; \
  731. reloc = xen_##x##_direct_reloc; \
  732. } \
  733. goto patch_site
  734. switch (type) {
  735. SITE(pv_irq_ops, irq_enable);
  736. SITE(pv_irq_ops, irq_disable);
  737. SITE(pv_irq_ops, save_fl);
  738. SITE(pv_irq_ops, restore_fl);
  739. #undef SITE
  740. patch_site:
  741. if (start == NULL || (end-start) > len)
  742. goto default_patch;
  743. ret = paravirt_patch_insns(insnbuf, len, start, end);
  744. /* Note: because reloc is assigned from something that
  745. appears to be an array, gcc assumes it's non-null,
  746. but doesn't know its relationship with start and
  747. end. */
  748. if (reloc > start && reloc < end) {
  749. int reloc_off = reloc - start;
  750. long *relocp = (long *)(insnbuf + reloc_off);
  751. long delta = start - (char *)addr;
  752. *relocp += delta;
  753. }
  754. break;
  755. default_patch:
  756. default:
  757. ret = paravirt_patch_default(type, clobbers, insnbuf,
  758. addr, len);
  759. break;
  760. }
  761. return ret;
  762. }
  763. static const struct pv_info xen_info __initconst = {
  764. .paravirt_enabled = 1,
  765. .shared_kernel_pmd = 0,
  766. #ifdef CONFIG_X86_64
  767. .extra_user_64bit_cs = FLAT_USER_CS64,
  768. #endif
  769. .name = "Xen",
  770. };
  771. static const struct pv_init_ops xen_init_ops __initconst = {
  772. .patch = xen_patch,
  773. };
  774. static const struct pv_cpu_ops xen_cpu_ops __initconst = {
  775. .cpuid = xen_cpuid,
  776. .set_debugreg = xen_set_debugreg,
  777. .get_debugreg = xen_get_debugreg,
  778. .clts = xen_clts,
  779. .read_cr0 = xen_read_cr0,
  780. .write_cr0 = xen_write_cr0,
  781. .read_cr4 = native_read_cr4,
  782. .read_cr4_safe = native_read_cr4_safe,
  783. .write_cr4 = xen_write_cr4,
  784. .wbinvd = native_wbinvd,
  785. .read_msr = native_read_msr_safe,
  786. .write_msr = xen_write_msr_safe,
  787. .read_tsc = native_read_tsc,
  788. .read_pmc = native_read_pmc,
  789. .iret = xen_iret,
  790. .irq_enable_sysexit = xen_sysexit,
  791. #ifdef CONFIG_X86_64
  792. .usergs_sysret32 = xen_sysret32,
  793. .usergs_sysret64 = xen_sysret64,
  794. #endif
  795. .load_tr_desc = paravirt_nop,
  796. .set_ldt = xen_set_ldt,
  797. .load_gdt = xen_load_gdt,
  798. .load_idt = xen_load_idt,
  799. .load_tls = xen_load_tls,
  800. #ifdef CONFIG_X86_64
  801. .load_gs_index = xen_load_gs_index,
  802. #endif
  803. .alloc_ldt = xen_alloc_ldt,
  804. .free_ldt = xen_free_ldt,
  805. .store_gdt = native_store_gdt,
  806. .store_idt = native_store_idt,
  807. .store_tr = xen_store_tr,
  808. .write_ldt_entry = xen_write_ldt_entry,
  809. .write_gdt_entry = xen_write_gdt_entry,
  810. .write_idt_entry = xen_write_idt_entry,
  811. .load_sp0 = xen_load_sp0,
  812. .set_iopl_mask = xen_set_iopl_mask,
  813. .io_delay = xen_io_delay,
  814. /* Xen takes care of %gs when switching to usermode for us */
  815. .swapgs = paravirt_nop,
  816. .start_context_switch = paravirt_start_context_switch,
  817. .end_context_switch = xen_end_context_switch,
  818. };
  819. static const struct pv_apic_ops xen_apic_ops __initconst = {
  820. #ifdef CONFIG_X86_LOCAL_APIC
  821. .startup_ipi_hook = paravirt_nop,
  822. #endif
  823. };
  824. static void xen_reboot(int reason)
  825. {
  826. struct sched_shutdown r = { .reason = reason };
  827. if (HYPERVISOR_sched_op(SCHEDOP_shutdown, &r))
  828. BUG();
  829. }
  830. static void xen_restart(char *msg)
  831. {
  832. xen_reboot(SHUTDOWN_reboot);
  833. }
  834. static void xen_emergency_restart(void)
  835. {
  836. xen_reboot(SHUTDOWN_reboot);
  837. }
  838. static void xen_machine_halt(void)
  839. {
  840. xen_reboot(SHUTDOWN_poweroff);
  841. }
  842. static void xen_machine_power_off(void)
  843. {
  844. if (pm_power_off)
  845. pm_power_off();
  846. xen_reboot(SHUTDOWN_poweroff);
  847. }
  848. static void xen_crash_shutdown(struct pt_regs *regs)
  849. {
  850. xen_reboot(SHUTDOWN_crash);
  851. }
  852. static int
  853. xen_panic_event(struct notifier_block *this, unsigned long event, void *ptr)
  854. {
  855. xen_reboot(SHUTDOWN_crash);
  856. return NOTIFY_DONE;
  857. }
  858. static struct notifier_block xen_panic_block = {
  859. .notifier_call= xen_panic_event,
  860. };
  861. int xen_panic_handler_init(void)
  862. {
  863. atomic_notifier_chain_register(&panic_notifier_list, &xen_panic_block);
  864. return 0;
  865. }
  866. static const struct machine_ops xen_machine_ops __initconst = {
  867. .restart = xen_restart,
  868. .halt = xen_machine_halt,
  869. .power_off = xen_machine_power_off,
  870. .shutdown = xen_machine_halt,
  871. .crash_shutdown = xen_crash_shutdown,
  872. .emergency_restart = xen_emergency_restart,
  873. };
  874. /*
  875. * Set up the GDT and segment registers for -fstack-protector. Until
  876. * we do this, we have to be careful not to call any stack-protected
  877. * function, which is most of the kernel.
  878. */
  879. static void __init xen_setup_stackprotector(void)
  880. {
  881. pv_cpu_ops.write_gdt_entry = xen_write_gdt_entry_boot;
  882. pv_cpu_ops.load_gdt = xen_load_gdt_boot;
  883. setup_stack_canary_segment(0);
  884. switch_to_new_gdt(0);
  885. pv_cpu_ops.write_gdt_entry = xen_write_gdt_entry;
  886. pv_cpu_ops.load_gdt = xen_load_gdt;
  887. }
  888. /* First C function to be called on Xen boot */
  889. asmlinkage void __init xen_start_kernel(void)
  890. {
  891. struct physdev_set_iopl set_iopl;
  892. int rc;
  893. pgd_t *pgd;
  894. if (!xen_start_info)
  895. return;
  896. xen_domain_type = XEN_PV_DOMAIN;
  897. xen_setup_machphys_mapping();
  898. /* Install Xen paravirt ops */
  899. pv_info = xen_info;
  900. pv_init_ops = xen_init_ops;
  901. pv_cpu_ops = xen_cpu_ops;
  902. pv_apic_ops = xen_apic_ops;
  903. x86_init.resources.memory_setup = xen_memory_setup;
  904. x86_init.oem.arch_setup = xen_arch_setup;
  905. x86_init.oem.banner = xen_banner;
  906. xen_init_time_ops();
  907. /*
  908. * Set up some pagetable state before starting to set any ptes.
  909. */
  910. xen_init_mmu_ops();
  911. /* Prevent unwanted bits from being set in PTEs. */
  912. __supported_pte_mask &= ~_PAGE_GLOBAL;
  913. #if 0
  914. if (!xen_initial_domain())
  915. #endif
  916. __supported_pte_mask &= ~(_PAGE_PWT | _PAGE_PCD);
  917. __supported_pte_mask |= _PAGE_IOMAP;
  918. /*
  919. * Prevent page tables from being allocated in highmem, even
  920. * if CONFIG_HIGHPTE is enabled.
  921. */
  922. __userpte_alloc_gfp &= ~__GFP_HIGHMEM;
  923. /* Work out if we support NX */
  924. x86_configure_nx();
  925. xen_setup_features();
  926. /* Get mfn list */
  927. if (!xen_feature(XENFEAT_auto_translated_physmap))
  928. xen_build_dynamic_phys_to_machine();
  929. /*
  930. * Set up kernel GDT and segment registers, mainly so that
  931. * -fstack-protector code can be executed.
  932. */
  933. xen_setup_stackprotector();
  934. xen_init_irq_ops();
  935. xen_init_cpuid_mask();
  936. #ifdef CONFIG_X86_LOCAL_APIC
  937. /*
  938. * set up the basic apic ops.
  939. */
  940. set_xen_basic_apic_ops();
  941. #endif
  942. if (xen_feature(XENFEAT_mmu_pt_update_preserve_ad)) {
  943. pv_mmu_ops.ptep_modify_prot_start = xen_ptep_modify_prot_start;
  944. pv_mmu_ops.ptep_modify_prot_commit = xen_ptep_modify_prot_commit;
  945. }
  946. machine_ops = xen_machine_ops;
  947. /*
  948. * The only reliable way to retain the initial address of the
  949. * percpu gdt_page is to remember it here, so we can go and
  950. * mark it RW later, when the initial percpu area is freed.
  951. */
  952. xen_initial_gdt = &per_cpu(gdt_page, 0);
  953. xen_smp_init();
  954. #ifdef CONFIG_ACPI_NUMA
  955. /*
  956. * The pages we from Xen are not related to machine pages, so
  957. * any NUMA information the kernel tries to get from ACPI will
  958. * be meaningless. Prevent it from trying.
  959. */
  960. acpi_numa = -1;
  961. #endif
  962. pgd = (pgd_t *)xen_start_info->pt_base;
  963. /* Don't do the full vcpu_info placement stuff until we have a
  964. possible map and a non-dummy shared_info. */
  965. per_cpu(xen_vcpu, 0) = &HYPERVISOR_shared_info->vcpu_info[0];
  966. local_irq_disable();
  967. early_boot_irqs_disabled = true;
  968. xen_raw_console_write("mapping kernel into physical memory\n");
  969. pgd = xen_setup_kernel_pagetable(pgd, xen_start_info->nr_pages);
  970. xen_ident_map_ISA();
  971. /* Allocate and initialize top and mid mfn levels for p2m structure */
  972. xen_build_mfn_list_list();
  973. /* keep using Xen gdt for now; no urgent need to change it */
  974. #ifdef CONFIG_X86_32
  975. pv_info.kernel_rpl = 1;
  976. if (xen_feature(XENFEAT_supervisor_mode_kernel))
  977. pv_info.kernel_rpl = 0;
  978. #else
  979. pv_info.kernel_rpl = 0;
  980. #endif
  981. /* set the limit of our address space */
  982. xen_reserve_top();
  983. /* We used to do this in xen_arch_setup, but that is too late on AMD
  984. * were early_cpu_init (run before ->arch_setup()) calls early_amd_init
  985. * which pokes 0xcf8 port.
  986. */
  987. set_iopl.iopl = 1;
  988. rc = HYPERVISOR_physdev_op(PHYSDEVOP_set_iopl, &set_iopl);
  989. if (rc != 0)
  990. xen_raw_printk("physdev_op failed %d\n", rc);
  991. #ifdef CONFIG_X86_32
  992. /* set up basic CPUID stuff */
  993. cpu_detect(&new_cpu_data);
  994. new_cpu_data.hard_math = 1;
  995. new_cpu_data.wp_works_ok = 1;
  996. new_cpu_data.x86_capability[0] = cpuid_edx(1);
  997. #endif
  998. /* Poke various useful things into boot_params */
  999. boot_params.hdr.type_of_loader = (9 << 4) | 0;
  1000. boot_params.hdr.ramdisk_image = xen_start_info->mod_start
  1001. ? __pa(xen_start_info->mod_start) : 0;
  1002. boot_params.hdr.ramdisk_size = xen_start_info->mod_len;
  1003. boot_params.hdr.cmd_line_ptr = __pa(xen_start_info->cmd_line);
  1004. if (!xen_initial_domain()) {
  1005. add_preferred_console("xenboot", 0, NULL);
  1006. add_preferred_console("tty", 0, NULL);
  1007. add_preferred_console("hvc", 0, NULL);
  1008. if (pci_xen)
  1009. x86_init.pci.arch_init = pci_xen_init;
  1010. } else {
  1011. const struct dom0_vga_console_info *info =
  1012. (void *)((char *)xen_start_info +
  1013. xen_start_info->console.dom0.info_off);
  1014. xen_init_vga(info, xen_start_info->console.dom0.info_size);
  1015. xen_start_info->console.domU.mfn = 0;
  1016. xen_start_info->console.domU.evtchn = 0;
  1017. /* Make sure ACS will be enabled */
  1018. pci_request_acs();
  1019. }
  1020. xen_raw_console_write("about to get started...\n");
  1021. xen_setup_runstate_info(0);
  1022. /* Start the world */
  1023. #ifdef CONFIG_X86_32
  1024. i386_start_kernel();
  1025. #else
  1026. x86_64_start_reservations((char *)__pa_symbol(&boot_params));
  1027. #endif
  1028. }
  1029. static int init_hvm_pv_info(int *major, int *minor)
  1030. {
  1031. uint32_t eax, ebx, ecx, edx, pages, msr, base;
  1032. u64 pfn;
  1033. base = xen_cpuid_base();
  1034. cpuid(base + 1, &eax, &ebx, &ecx, &edx);
  1035. *major = eax >> 16;
  1036. *minor = eax & 0xffff;
  1037. printk(KERN_INFO "Xen version %d.%d.\n", *major, *minor);
  1038. cpuid(base + 2, &pages, &msr, &ecx, &edx);
  1039. pfn = __pa(hypercall_page);
  1040. wrmsr_safe(msr, (u32)pfn, (u32)(pfn >> 32));
  1041. xen_setup_features();
  1042. pv_info.name = "Xen HVM";
  1043. xen_domain_type = XEN_HVM_DOMAIN;
  1044. return 0;
  1045. }
  1046. void __ref xen_hvm_init_shared_info(void)
  1047. {
  1048. int cpu;
  1049. struct xen_add_to_physmap xatp;
  1050. static struct shared_info *shared_info_page = 0;
  1051. if (!shared_info_page)
  1052. shared_info_page = (struct shared_info *)
  1053. extend_brk(PAGE_SIZE, PAGE_SIZE);
  1054. xatp.domid = DOMID_SELF;
  1055. xatp.idx = 0;
  1056. xatp.space = XENMAPSPACE_shared_info;
  1057. xatp.gpfn = __pa(shared_info_page) >> PAGE_SHIFT;
  1058. if (HYPERVISOR_memory_op(XENMEM_add_to_physmap, &xatp))
  1059. BUG();
  1060. HYPERVISOR_shared_info = (struct shared_info *)shared_info_page;
  1061. /* xen_vcpu is a pointer to the vcpu_info struct in the shared_info
  1062. * page, we use it in the event channel upcall and in some pvclock
  1063. * related functions. We don't need the vcpu_info placement
  1064. * optimizations because we don't use any pv_mmu or pv_irq op on
  1065. * HVM.
  1066. * When xen_hvm_init_shared_info is run at boot time only vcpu 0 is
  1067. * online but xen_hvm_init_shared_info is run at resume time too and
  1068. * in that case multiple vcpus might be online. */
  1069. for_each_online_cpu(cpu) {
  1070. per_cpu(xen_vcpu, cpu) = &HYPERVISOR_shared_info->vcpu_info[cpu];
  1071. }
  1072. }
  1073. #ifdef CONFIG_XEN_PVHVM
  1074. static int __cpuinit xen_hvm_cpu_notify(struct notifier_block *self,
  1075. unsigned long action, void *hcpu)
  1076. {
  1077. int cpu = (long)hcpu;
  1078. switch (action) {
  1079. case CPU_UP_PREPARE:
  1080. xen_vcpu_setup(cpu);
  1081. if (xen_have_vector_callback)
  1082. xen_init_lock_cpu(cpu);
  1083. break;
  1084. default:
  1085. break;
  1086. }
  1087. return NOTIFY_OK;
  1088. }
  1089. static struct notifier_block xen_hvm_cpu_notifier __cpuinitdata = {
  1090. .notifier_call = xen_hvm_cpu_notify,
  1091. };
  1092. static void __init xen_hvm_guest_init(void)
  1093. {
  1094. int r;
  1095. int major, minor;
  1096. r = init_hvm_pv_info(&major, &minor);
  1097. if (r < 0)
  1098. return;
  1099. xen_hvm_init_shared_info();
  1100. if (xen_feature(XENFEAT_hvm_callback_vector))
  1101. xen_have_vector_callback = 1;
  1102. xen_hvm_smp_init();
  1103. register_cpu_notifier(&xen_hvm_cpu_notifier);
  1104. xen_unplug_emulated_devices();
  1105. x86_init.irqs.intr_init = xen_init_IRQ;
  1106. xen_hvm_init_time_ops();
  1107. xen_hvm_init_mmu_ops();
  1108. }
  1109. static bool __init xen_hvm_platform(void)
  1110. {
  1111. if (xen_pv_domain())
  1112. return false;
  1113. if (!xen_cpuid_base())
  1114. return false;
  1115. return true;
  1116. }
  1117. bool xen_hvm_need_lapic(void)
  1118. {
  1119. if (xen_pv_domain())
  1120. return false;
  1121. if (!xen_hvm_domain())
  1122. return false;
  1123. if (xen_feature(XENFEAT_hvm_pirqs) && xen_have_vector_callback)
  1124. return false;
  1125. return true;
  1126. }
  1127. EXPORT_SYMBOL_GPL(xen_hvm_need_lapic);
  1128. const struct hypervisor_x86 x86_hyper_xen_hvm __refconst = {
  1129. .name = "Xen HVM",
  1130. .detect = xen_hvm_platform,
  1131. .init_platform = xen_hvm_guest_init,
  1132. };
  1133. EXPORT_SYMBOL(x86_hyper_xen_hvm);
  1134. #endif