enlighten.c 36 KB

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