enlighten.c 39 KB

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