enlighten.c 35 KB

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