enlighten.c 32 KB

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