enlighten.c 32 KB

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