enlighten.c 25 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088
  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/kernel.h>
  14. #include <linux/init.h>
  15. #include <linux/smp.h>
  16. #include <linux/preempt.h>
  17. #include <linux/hardirq.h>
  18. #include <linux/percpu.h>
  19. #include <linux/delay.h>
  20. #include <linux/start_kernel.h>
  21. #include <linux/sched.h>
  22. #include <linux/kprobes.h>
  23. #include <linux/bootmem.h>
  24. #include <linux/module.h>
  25. #include <linux/mm.h>
  26. #include <linux/page-flags.h>
  27. #include <linux/highmem.h>
  28. #include <linux/console.h>
  29. #include <xen/interface/xen.h>
  30. #include <xen/interface/version.h>
  31. #include <xen/interface/physdev.h>
  32. #include <xen/interface/vcpu.h>
  33. #include <xen/features.h>
  34. #include <xen/page.h>
  35. #include <xen/hvc-console.h>
  36. #include <asm/paravirt.h>
  37. #include <asm/apic.h>
  38. #include <asm/page.h>
  39. #include <asm/xen/hypercall.h>
  40. #include <asm/xen/hypervisor.h>
  41. #include <asm/fixmap.h>
  42. #include <asm/processor.h>
  43. #include <asm/proto.h>
  44. #include <asm/msr-index.h>
  45. #include <asm/traps.h>
  46. #include <asm/setup.h>
  47. #include <asm/desc.h>
  48. #include <asm/pgtable.h>
  49. #include <asm/tlbflush.h>
  50. #include <asm/reboot.h>
  51. #include "xen-ops.h"
  52. #include "mmu.h"
  53. #include "multicalls.h"
  54. EXPORT_SYMBOL_GPL(hypercall_page);
  55. DEFINE_PER_CPU(struct vcpu_info *, xen_vcpu);
  56. DEFINE_PER_CPU(struct vcpu_info, xen_vcpu_info);
  57. enum xen_domain_type xen_domain_type = XEN_NATIVE;
  58. EXPORT_SYMBOL_GPL(xen_domain_type);
  59. struct start_info *xen_start_info;
  60. EXPORT_SYMBOL_GPL(xen_start_info);
  61. struct shared_info xen_dummy_shared_info;
  62. void *xen_initial_gdt;
  63. /*
  64. * Point at some empty memory to start with. We map the real shared_info
  65. * page as soon as fixmap is up and running.
  66. */
  67. struct shared_info *HYPERVISOR_shared_info = (void *)&xen_dummy_shared_info;
  68. /*
  69. * Flag to determine whether vcpu info placement is available on all
  70. * VCPUs. We assume it is to start with, and then set it to zero on
  71. * the first failure. This is because it can succeed on some VCPUs
  72. * and not others, since it can involve hypervisor memory allocation,
  73. * or because the guest failed to guarantee all the appropriate
  74. * constraints on all VCPUs (ie buffer can't cross a page boundary).
  75. *
  76. * Note that any particular CPU may be using a placed vcpu structure,
  77. * but we can only optimise if the all are.
  78. *
  79. * 0: not available, 1: available
  80. */
  81. static int have_vcpu_info_placement = 1;
  82. static void xen_vcpu_setup(int cpu)
  83. {
  84. struct vcpu_register_vcpu_info info;
  85. int err;
  86. struct vcpu_info *vcpup;
  87. BUG_ON(HYPERVISOR_shared_info == &xen_dummy_shared_info);
  88. per_cpu(xen_vcpu, cpu) = &HYPERVISOR_shared_info->vcpu_info[cpu];
  89. if (!have_vcpu_info_placement)
  90. return; /* already tested, not available */
  91. vcpup = &per_cpu(xen_vcpu_info, cpu);
  92. info.mfn = arbitrary_virt_to_mfn(vcpup);
  93. info.offset = offset_in_page(vcpup);
  94. printk(KERN_DEBUG "trying to map vcpu_info %d at %p, mfn %llx, offset %d\n",
  95. cpu, vcpup, info.mfn, info.offset);
  96. /* Check to see if the hypervisor will put the vcpu_info
  97. structure where we want it, which allows direct access via
  98. a percpu-variable. */
  99. err = HYPERVISOR_vcpu_op(VCPUOP_register_vcpu_info, cpu, &info);
  100. if (err) {
  101. printk(KERN_DEBUG "register_vcpu_info failed: err=%d\n", err);
  102. have_vcpu_info_placement = 0;
  103. } else {
  104. /* This cpu is using the registered vcpu info, even if
  105. later ones fail to. */
  106. per_cpu(xen_vcpu, cpu) = vcpup;
  107. printk(KERN_DEBUG "cpu %d using vcpu_info at %p\n",
  108. cpu, vcpup);
  109. }
  110. }
  111. /*
  112. * On restore, set the vcpu placement up again.
  113. * If it fails, then we're in a bad state, since
  114. * we can't back out from using it...
  115. */
  116. void xen_vcpu_restore(void)
  117. {
  118. if (have_vcpu_info_placement) {
  119. int cpu;
  120. for_each_online_cpu(cpu) {
  121. bool other_cpu = (cpu != smp_processor_id());
  122. if (other_cpu &&
  123. HYPERVISOR_vcpu_op(VCPUOP_down, cpu, NULL))
  124. BUG();
  125. xen_vcpu_setup(cpu);
  126. if (other_cpu &&
  127. HYPERVISOR_vcpu_op(VCPUOP_up, cpu, NULL))
  128. BUG();
  129. }
  130. BUG_ON(!have_vcpu_info_placement);
  131. }
  132. }
  133. static void __init xen_banner(void)
  134. {
  135. unsigned version = HYPERVISOR_xen_version(XENVER_version, NULL);
  136. struct xen_extraversion extra;
  137. HYPERVISOR_xen_version(XENVER_extraversion, &extra);
  138. printk(KERN_INFO "Booting paravirtualized kernel on %s\n",
  139. pv_info.name);
  140. printk(KERN_INFO "Xen version: %d.%d%s%s\n",
  141. version >> 16, version & 0xffff, extra.extraversion,
  142. xen_feature(XENFEAT_mmu_pt_update_preserve_ad) ? " (preserve-AD)" : "");
  143. }
  144. static __read_mostly unsigned int cpuid_leaf1_edx_mask = ~0;
  145. static __read_mostly unsigned int cpuid_leaf1_ecx_mask = ~0;
  146. static void xen_cpuid(unsigned int *ax, unsigned int *bx,
  147. unsigned int *cx, unsigned int *dx)
  148. {
  149. unsigned maskecx = ~0;
  150. unsigned maskedx = ~0;
  151. /*
  152. * Mask out inconvenient features, to try and disable as many
  153. * unsupported kernel subsystems as possible.
  154. */
  155. if (*ax == 1) {
  156. maskecx = cpuid_leaf1_ecx_mask;
  157. maskedx = cpuid_leaf1_edx_mask;
  158. }
  159. asm(XEN_EMULATE_PREFIX "cpuid"
  160. : "=a" (*ax),
  161. "=b" (*bx),
  162. "=c" (*cx),
  163. "=d" (*dx)
  164. : "0" (*ax), "2" (*cx));
  165. *cx &= maskecx;
  166. *dx &= maskedx;
  167. }
  168. static __init void xen_init_cpuid_mask(void)
  169. {
  170. unsigned int ax, bx, cx, dx;
  171. cpuid_leaf1_edx_mask =
  172. ~((1 << X86_FEATURE_MCE) | /* disable MCE */
  173. (1 << X86_FEATURE_MCA) | /* disable MCA */
  174. (1 << X86_FEATURE_ACC)); /* thermal monitoring */
  175. if (!xen_initial_domain())
  176. cpuid_leaf1_edx_mask &=
  177. ~((1 << X86_FEATURE_APIC) | /* disable local APIC */
  178. (1 << X86_FEATURE_ACPI)); /* disable ACPI */
  179. ax = 1;
  180. cx = 0;
  181. xen_cpuid(&ax, &bx, &cx, &dx);
  182. /* cpuid claims we support xsave; try enabling it to see what happens */
  183. if (cx & (1 << (X86_FEATURE_XSAVE % 32))) {
  184. unsigned long cr4;
  185. set_in_cr4(X86_CR4_OSXSAVE);
  186. cr4 = read_cr4();
  187. if ((cr4 & X86_CR4_OSXSAVE) == 0)
  188. cpuid_leaf1_ecx_mask &= ~(1 << (X86_FEATURE_XSAVE % 32));
  189. clear_in_cr4(X86_CR4_OSXSAVE);
  190. }
  191. }
  192. static void xen_set_debugreg(int reg, unsigned long val)
  193. {
  194. HYPERVISOR_set_debugreg(reg, val);
  195. }
  196. static unsigned long xen_get_debugreg(int reg)
  197. {
  198. return HYPERVISOR_get_debugreg(reg);
  199. }
  200. static void xen_end_context_switch(struct task_struct *next)
  201. {
  202. xen_mc_flush();
  203. paravirt_end_context_switch(next);
  204. }
  205. static unsigned long xen_store_tr(void)
  206. {
  207. return 0;
  208. }
  209. /*
  210. * Set the page permissions for a particular virtual address. If the
  211. * address is a vmalloc mapping (or other non-linear mapping), then
  212. * find the linear mapping of the page and also set its protections to
  213. * match.
  214. */
  215. static void set_aliased_prot(void *v, pgprot_t prot)
  216. {
  217. int level;
  218. pte_t *ptep;
  219. pte_t pte;
  220. unsigned long pfn;
  221. struct page *page;
  222. ptep = lookup_address((unsigned long)v, &level);
  223. BUG_ON(ptep == NULL);
  224. pfn = pte_pfn(*ptep);
  225. page = pfn_to_page(pfn);
  226. pte = pfn_pte(pfn, prot);
  227. if (HYPERVISOR_update_va_mapping((unsigned long)v, pte, 0))
  228. BUG();
  229. if (!PageHighMem(page)) {
  230. void *av = __va(PFN_PHYS(pfn));
  231. if (av != v)
  232. if (HYPERVISOR_update_va_mapping((unsigned long)av, pte, 0))
  233. BUG();
  234. } else
  235. kmap_flush_unused();
  236. }
  237. static void xen_alloc_ldt(struct desc_struct *ldt, unsigned entries)
  238. {
  239. const unsigned entries_per_page = PAGE_SIZE / LDT_ENTRY_SIZE;
  240. int i;
  241. for(i = 0; i < entries; i += entries_per_page)
  242. set_aliased_prot(ldt + i, PAGE_KERNEL_RO);
  243. }
  244. static void xen_free_ldt(struct desc_struct *ldt, unsigned entries)
  245. {
  246. const unsigned entries_per_page = PAGE_SIZE / LDT_ENTRY_SIZE;
  247. int i;
  248. for(i = 0; i < entries; i += entries_per_page)
  249. set_aliased_prot(ldt + i, PAGE_KERNEL);
  250. }
  251. static void xen_set_ldt(const void *addr, unsigned entries)
  252. {
  253. struct mmuext_op *op;
  254. struct multicall_space mcs = xen_mc_entry(sizeof(*op));
  255. op = mcs.args;
  256. op->cmd = MMUEXT_SET_LDT;
  257. op->arg1.linear_addr = (unsigned long)addr;
  258. op->arg2.nr_ents = entries;
  259. MULTI_mmuext_op(mcs.mc, op, 1, NULL, DOMID_SELF);
  260. xen_mc_issue(PARAVIRT_LAZY_CPU);
  261. }
  262. static void xen_load_gdt(const struct desc_ptr *dtr)
  263. {
  264. unsigned long va = dtr->address;
  265. unsigned int size = dtr->size + 1;
  266. unsigned pages = (size + PAGE_SIZE - 1) / PAGE_SIZE;
  267. unsigned long frames[pages];
  268. int f;
  269. /* A GDT can be up to 64k in size, which corresponds to 8192
  270. 8-byte entries, or 16 4k pages.. */
  271. BUG_ON(size > 65536);
  272. BUG_ON(va & ~PAGE_MASK);
  273. for (f = 0; va < dtr->address + size; va += PAGE_SIZE, f++) {
  274. int level;
  275. pte_t *ptep = lookup_address(va, &level);
  276. unsigned long pfn, mfn;
  277. void *virt;
  278. BUG_ON(ptep == NULL);
  279. pfn = pte_pfn(*ptep);
  280. mfn = pfn_to_mfn(pfn);
  281. virt = __va(PFN_PHYS(pfn));
  282. frames[f] = mfn;
  283. make_lowmem_page_readonly((void *)va);
  284. make_lowmem_page_readonly(virt);
  285. }
  286. if (HYPERVISOR_set_gdt(frames, size / sizeof(struct desc_struct)))
  287. BUG();
  288. }
  289. static void load_TLS_descriptor(struct thread_struct *t,
  290. unsigned int cpu, unsigned int i)
  291. {
  292. struct desc_struct *gdt = get_cpu_gdt_table(cpu);
  293. xmaddr_t maddr = arbitrary_virt_to_machine(&gdt[GDT_ENTRY_TLS_MIN+i]);
  294. struct multicall_space mc = __xen_mc_entry(0);
  295. MULTI_update_descriptor(mc.mc, maddr.maddr, t->tls_array[i]);
  296. }
  297. static void xen_load_tls(struct thread_struct *t, unsigned int cpu)
  298. {
  299. /*
  300. * XXX sleazy hack: If we're being called in a lazy-cpu zone
  301. * and lazy gs handling is enabled, it means we're in a
  302. * context switch, and %gs has just been saved. This means we
  303. * can zero it out to prevent faults on exit from the
  304. * hypervisor if the next process has no %gs. Either way, it
  305. * has been saved, and the new value will get loaded properly.
  306. * This will go away as soon as Xen has been modified to not
  307. * save/restore %gs for normal hypercalls.
  308. *
  309. * On x86_64, this hack is not used for %gs, because gs points
  310. * to KERNEL_GS_BASE (and uses it for PDA references), so we
  311. * must not zero %gs on x86_64
  312. *
  313. * For x86_64, we need to zero %fs, otherwise we may get an
  314. * exception between the new %fs descriptor being loaded and
  315. * %fs being effectively cleared at __switch_to().
  316. */
  317. if (paravirt_get_lazy_mode() == PARAVIRT_LAZY_CPU) {
  318. #ifdef CONFIG_X86_32
  319. lazy_load_gs(0);
  320. #else
  321. loadsegment(fs, 0);
  322. #endif
  323. }
  324. xen_mc_batch();
  325. load_TLS_descriptor(t, cpu, 0);
  326. load_TLS_descriptor(t, cpu, 1);
  327. load_TLS_descriptor(t, cpu, 2);
  328. xen_mc_issue(PARAVIRT_LAZY_CPU);
  329. }
  330. #ifdef CONFIG_X86_64
  331. static void xen_load_gs_index(unsigned int idx)
  332. {
  333. if (HYPERVISOR_set_segment_base(SEGBASE_GS_USER_SEL, idx))
  334. BUG();
  335. }
  336. #endif
  337. static void xen_write_ldt_entry(struct desc_struct *dt, int entrynum,
  338. const void *ptr)
  339. {
  340. xmaddr_t mach_lp = arbitrary_virt_to_machine(&dt[entrynum]);
  341. u64 entry = *(u64 *)ptr;
  342. preempt_disable();
  343. xen_mc_flush();
  344. if (HYPERVISOR_update_descriptor(mach_lp.maddr, entry))
  345. BUG();
  346. preempt_enable();
  347. }
  348. static int cvt_gate_to_trap(int vector, const gate_desc *val,
  349. struct trap_info *info)
  350. {
  351. unsigned long addr;
  352. if (val->type != GATE_TRAP && val->type != GATE_INTERRUPT)
  353. return 0;
  354. info->vector = vector;
  355. addr = gate_offset(*val);
  356. #ifdef CONFIG_X86_64
  357. /*
  358. * Look for known traps using IST, and substitute them
  359. * appropriately. The debugger ones are the only ones we care
  360. * about. Xen will handle faults like double_fault and
  361. * machine_check, so we should never see them. Warn if
  362. * there's an unexpected IST-using fault handler.
  363. */
  364. if (addr == (unsigned long)debug)
  365. addr = (unsigned long)xen_debug;
  366. else if (addr == (unsigned long)int3)
  367. addr = (unsigned long)xen_int3;
  368. else if (addr == (unsigned long)stack_segment)
  369. addr = (unsigned long)xen_stack_segment;
  370. else if (addr == (unsigned long)double_fault ||
  371. addr == (unsigned long)nmi) {
  372. /* Don't need to handle these */
  373. return 0;
  374. #ifdef CONFIG_X86_MCE
  375. } else if (addr == (unsigned long)machine_check) {
  376. return 0;
  377. #endif
  378. } else {
  379. /* Some other trap using IST? */
  380. if (WARN_ON(val->ist != 0))
  381. return 0;
  382. }
  383. #endif /* CONFIG_X86_64 */
  384. info->address = addr;
  385. info->cs = gate_segment(*val);
  386. info->flags = val->dpl;
  387. /* interrupt gates clear IF */
  388. if (val->type == GATE_INTERRUPT)
  389. info->flags |= 1 << 2;
  390. return 1;
  391. }
  392. /* Locations of each CPU's IDT */
  393. static DEFINE_PER_CPU(struct desc_ptr, idt_desc);
  394. /* Set an IDT entry. If the entry is part of the current IDT, then
  395. also update Xen. */
  396. static void xen_write_idt_entry(gate_desc *dt, int entrynum, const gate_desc *g)
  397. {
  398. unsigned long p = (unsigned long)&dt[entrynum];
  399. unsigned long start, end;
  400. preempt_disable();
  401. start = __get_cpu_var(idt_desc).address;
  402. end = start + __get_cpu_var(idt_desc).size + 1;
  403. xen_mc_flush();
  404. native_write_idt_entry(dt, entrynum, g);
  405. if (p >= start && (p + 8) <= end) {
  406. struct trap_info info[2];
  407. info[1].address = 0;
  408. if (cvt_gate_to_trap(entrynum, g, &info[0]))
  409. if (HYPERVISOR_set_trap_table(info))
  410. BUG();
  411. }
  412. preempt_enable();
  413. }
  414. static void xen_convert_trap_info(const struct desc_ptr *desc,
  415. struct trap_info *traps)
  416. {
  417. unsigned in, out, count;
  418. count = (desc->size+1) / sizeof(gate_desc);
  419. BUG_ON(count > 256);
  420. for (in = out = 0; in < count; in++) {
  421. gate_desc *entry = (gate_desc*)(desc->address) + in;
  422. if (cvt_gate_to_trap(in, entry, &traps[out]))
  423. out++;
  424. }
  425. traps[out].address = 0;
  426. }
  427. void xen_copy_trap_info(struct trap_info *traps)
  428. {
  429. const struct desc_ptr *desc = &__get_cpu_var(idt_desc);
  430. xen_convert_trap_info(desc, traps);
  431. }
  432. /* Load a new IDT into Xen. In principle this can be per-CPU, so we
  433. hold a spinlock to protect the static traps[] array (static because
  434. it avoids allocation, and saves stack space). */
  435. static void xen_load_idt(const struct desc_ptr *desc)
  436. {
  437. static DEFINE_SPINLOCK(lock);
  438. static struct trap_info traps[257];
  439. spin_lock(&lock);
  440. __get_cpu_var(idt_desc) = *desc;
  441. xen_convert_trap_info(desc, traps);
  442. xen_mc_flush();
  443. if (HYPERVISOR_set_trap_table(traps))
  444. BUG();
  445. spin_unlock(&lock);
  446. }
  447. /* Write a GDT descriptor entry. Ignore LDT descriptors, since
  448. they're handled differently. */
  449. static void xen_write_gdt_entry(struct desc_struct *dt, int entry,
  450. const void *desc, int type)
  451. {
  452. preempt_disable();
  453. switch (type) {
  454. case DESC_LDT:
  455. case DESC_TSS:
  456. /* ignore */
  457. break;
  458. default: {
  459. xmaddr_t maddr = arbitrary_virt_to_machine(&dt[entry]);
  460. xen_mc_flush();
  461. if (HYPERVISOR_update_descriptor(maddr.maddr, *(u64 *)desc))
  462. BUG();
  463. }
  464. }
  465. preempt_enable();
  466. }
  467. static void xen_load_sp0(struct tss_struct *tss,
  468. struct thread_struct *thread)
  469. {
  470. struct multicall_space mcs = xen_mc_entry(0);
  471. MULTI_stack_switch(mcs.mc, __KERNEL_DS, thread->sp0);
  472. xen_mc_issue(PARAVIRT_LAZY_CPU);
  473. }
  474. static void xen_set_iopl_mask(unsigned mask)
  475. {
  476. struct physdev_set_iopl set_iopl;
  477. /* Force the change at ring 0. */
  478. set_iopl.iopl = (mask == 0) ? 1 : (mask >> 12) & 3;
  479. HYPERVISOR_physdev_op(PHYSDEVOP_set_iopl, &set_iopl);
  480. }
  481. static void xen_io_delay(void)
  482. {
  483. }
  484. #ifdef CONFIG_X86_LOCAL_APIC
  485. static u32 xen_apic_read(u32 reg)
  486. {
  487. return 0;
  488. }
  489. static void xen_apic_write(u32 reg, u32 val)
  490. {
  491. /* Warn to see if there's any stray references */
  492. WARN_ON(1);
  493. }
  494. static u64 xen_apic_icr_read(void)
  495. {
  496. return 0;
  497. }
  498. static void xen_apic_icr_write(u32 low, u32 id)
  499. {
  500. /* Warn to see if there's any stray references */
  501. WARN_ON(1);
  502. }
  503. static void xen_apic_wait_icr_idle(void)
  504. {
  505. return;
  506. }
  507. static u32 xen_safe_apic_wait_icr_idle(void)
  508. {
  509. return 0;
  510. }
  511. static void set_xen_basic_apic_ops(void)
  512. {
  513. apic->read = xen_apic_read;
  514. apic->write = xen_apic_write;
  515. apic->icr_read = xen_apic_icr_read;
  516. apic->icr_write = xen_apic_icr_write;
  517. apic->wait_icr_idle = xen_apic_wait_icr_idle;
  518. apic->safe_wait_icr_idle = xen_safe_apic_wait_icr_idle;
  519. }
  520. #endif
  521. static void xen_clts(void)
  522. {
  523. struct multicall_space mcs;
  524. mcs = xen_mc_entry(0);
  525. MULTI_fpu_taskswitch(mcs.mc, 0);
  526. xen_mc_issue(PARAVIRT_LAZY_CPU);
  527. }
  528. static DEFINE_PER_CPU(unsigned long, xen_cr0_value);
  529. static unsigned long xen_read_cr0(void)
  530. {
  531. unsigned long cr0 = percpu_read(xen_cr0_value);
  532. if (unlikely(cr0 == 0)) {
  533. cr0 = native_read_cr0();
  534. percpu_write(xen_cr0_value, cr0);
  535. }
  536. return cr0;
  537. }
  538. static void xen_write_cr0(unsigned long cr0)
  539. {
  540. struct multicall_space mcs;
  541. percpu_write(xen_cr0_value, cr0);
  542. /* Only pay attention to cr0.TS; everything else is
  543. ignored. */
  544. mcs = xen_mc_entry(0);
  545. MULTI_fpu_taskswitch(mcs.mc, (cr0 & X86_CR0_TS) != 0);
  546. xen_mc_issue(PARAVIRT_LAZY_CPU);
  547. }
  548. static void xen_write_cr4(unsigned long cr4)
  549. {
  550. cr4 &= ~X86_CR4_PGE;
  551. cr4 &= ~X86_CR4_PSE;
  552. native_write_cr4(cr4);
  553. }
  554. static int xen_write_msr_safe(unsigned int msr, unsigned low, unsigned high)
  555. {
  556. int ret;
  557. ret = 0;
  558. switch (msr) {
  559. #ifdef CONFIG_X86_64
  560. unsigned which;
  561. u64 base;
  562. case MSR_FS_BASE: which = SEGBASE_FS; goto set;
  563. case MSR_KERNEL_GS_BASE: which = SEGBASE_GS_USER; goto set;
  564. case MSR_GS_BASE: which = SEGBASE_GS_KERNEL; goto set;
  565. set:
  566. base = ((u64)high << 32) | low;
  567. if (HYPERVISOR_set_segment_base(which, base) != 0)
  568. ret = -EFAULT;
  569. break;
  570. #endif
  571. case MSR_STAR:
  572. case MSR_CSTAR:
  573. case MSR_LSTAR:
  574. case MSR_SYSCALL_MASK:
  575. case MSR_IA32_SYSENTER_CS:
  576. case MSR_IA32_SYSENTER_ESP:
  577. case MSR_IA32_SYSENTER_EIP:
  578. /* Fast syscall setup is all done in hypercalls, so
  579. these are all ignored. Stub them out here to stop
  580. Xen console noise. */
  581. break;
  582. default:
  583. ret = native_write_msr_safe(msr, low, high);
  584. }
  585. return ret;
  586. }
  587. void xen_setup_shared_info(void)
  588. {
  589. if (!xen_feature(XENFEAT_auto_translated_physmap)) {
  590. set_fixmap(FIX_PARAVIRT_BOOTMAP,
  591. xen_start_info->shared_info);
  592. HYPERVISOR_shared_info =
  593. (struct shared_info *)fix_to_virt(FIX_PARAVIRT_BOOTMAP);
  594. } else
  595. HYPERVISOR_shared_info =
  596. (struct shared_info *)__va(xen_start_info->shared_info);
  597. #ifndef CONFIG_SMP
  598. /* In UP this is as good a place as any to set up shared info */
  599. xen_setup_vcpu_info_placement();
  600. #endif
  601. xen_setup_mfn_list_list();
  602. }
  603. /* This is called once we have the cpu_possible_map */
  604. void xen_setup_vcpu_info_placement(void)
  605. {
  606. int cpu;
  607. for_each_possible_cpu(cpu)
  608. xen_vcpu_setup(cpu);
  609. /* xen_vcpu_setup managed to place the vcpu_info within the
  610. percpu area for all cpus, so make use of it */
  611. if (have_vcpu_info_placement) {
  612. printk(KERN_INFO "Xen: using vcpu_info placement\n");
  613. pv_irq_ops.save_fl = __PV_IS_CALLEE_SAVE(xen_save_fl_direct);
  614. pv_irq_ops.restore_fl = __PV_IS_CALLEE_SAVE(xen_restore_fl_direct);
  615. pv_irq_ops.irq_disable = __PV_IS_CALLEE_SAVE(xen_irq_disable_direct);
  616. pv_irq_ops.irq_enable = __PV_IS_CALLEE_SAVE(xen_irq_enable_direct);
  617. pv_mmu_ops.read_cr2 = xen_read_cr2_direct;
  618. }
  619. }
  620. static unsigned xen_patch(u8 type, u16 clobbers, void *insnbuf,
  621. unsigned long addr, unsigned len)
  622. {
  623. char *start, *end, *reloc;
  624. unsigned ret;
  625. start = end = reloc = NULL;
  626. #define SITE(op, x) \
  627. case PARAVIRT_PATCH(op.x): \
  628. if (have_vcpu_info_placement) { \
  629. start = (char *)xen_##x##_direct; \
  630. end = xen_##x##_direct_end; \
  631. reloc = xen_##x##_direct_reloc; \
  632. } \
  633. goto patch_site
  634. switch (type) {
  635. SITE(pv_irq_ops, irq_enable);
  636. SITE(pv_irq_ops, irq_disable);
  637. SITE(pv_irq_ops, save_fl);
  638. SITE(pv_irq_ops, restore_fl);
  639. #undef SITE
  640. patch_site:
  641. if (start == NULL || (end-start) > len)
  642. goto default_patch;
  643. ret = paravirt_patch_insns(insnbuf, len, start, end);
  644. /* Note: because reloc is assigned from something that
  645. appears to be an array, gcc assumes it's non-null,
  646. but doesn't know its relationship with start and
  647. end. */
  648. if (reloc > start && reloc < end) {
  649. int reloc_off = reloc - start;
  650. long *relocp = (long *)(insnbuf + reloc_off);
  651. long delta = start - (char *)addr;
  652. *relocp += delta;
  653. }
  654. break;
  655. default_patch:
  656. default:
  657. ret = paravirt_patch_default(type, clobbers, insnbuf,
  658. addr, len);
  659. break;
  660. }
  661. return ret;
  662. }
  663. static const struct pv_info xen_info __initdata = {
  664. .paravirt_enabled = 1,
  665. .shared_kernel_pmd = 0,
  666. .name = "Xen",
  667. };
  668. static const struct pv_init_ops xen_init_ops __initdata = {
  669. .patch = xen_patch,
  670. .banner = xen_banner,
  671. .memory_setup = xen_memory_setup,
  672. .arch_setup = xen_arch_setup,
  673. .post_allocator_init = xen_post_allocator_init,
  674. };
  675. static const struct pv_time_ops xen_time_ops __initdata = {
  676. .time_init = xen_time_init,
  677. .set_wallclock = xen_set_wallclock,
  678. .get_wallclock = xen_get_wallclock,
  679. .get_tsc_khz = xen_tsc_khz,
  680. .sched_clock = xen_sched_clock,
  681. };
  682. static const struct pv_cpu_ops xen_cpu_ops __initdata = {
  683. .cpuid = xen_cpuid,
  684. .set_debugreg = xen_set_debugreg,
  685. .get_debugreg = xen_get_debugreg,
  686. .clts = xen_clts,
  687. .read_cr0 = xen_read_cr0,
  688. .write_cr0 = xen_write_cr0,
  689. .read_cr4 = native_read_cr4,
  690. .read_cr4_safe = native_read_cr4_safe,
  691. .write_cr4 = xen_write_cr4,
  692. .wbinvd = native_wbinvd,
  693. .read_msr = native_read_msr_safe,
  694. .write_msr = xen_write_msr_safe,
  695. .read_tsc = native_read_tsc,
  696. .read_pmc = native_read_pmc,
  697. .iret = xen_iret,
  698. .irq_enable_sysexit = xen_sysexit,
  699. #ifdef CONFIG_X86_64
  700. .usergs_sysret32 = xen_sysret32,
  701. .usergs_sysret64 = xen_sysret64,
  702. #endif
  703. .load_tr_desc = paravirt_nop,
  704. .set_ldt = xen_set_ldt,
  705. .load_gdt = xen_load_gdt,
  706. .load_idt = xen_load_idt,
  707. .load_tls = xen_load_tls,
  708. #ifdef CONFIG_X86_64
  709. .load_gs_index = xen_load_gs_index,
  710. #endif
  711. .alloc_ldt = xen_alloc_ldt,
  712. .free_ldt = xen_free_ldt,
  713. .store_gdt = native_store_gdt,
  714. .store_idt = native_store_idt,
  715. .store_tr = xen_store_tr,
  716. .write_ldt_entry = xen_write_ldt_entry,
  717. .write_gdt_entry = xen_write_gdt_entry,
  718. .write_idt_entry = xen_write_idt_entry,
  719. .load_sp0 = xen_load_sp0,
  720. .set_iopl_mask = xen_set_iopl_mask,
  721. .io_delay = xen_io_delay,
  722. /* Xen takes care of %gs when switching to usermode for us */
  723. .swapgs = paravirt_nop,
  724. .start_context_switch = paravirt_start_context_switch,
  725. .end_context_switch = xen_end_context_switch,
  726. };
  727. static const struct pv_apic_ops xen_apic_ops __initdata = {
  728. #ifdef CONFIG_X86_LOCAL_APIC
  729. .setup_boot_clock = paravirt_nop,
  730. .setup_secondary_clock = paravirt_nop,
  731. .startup_ipi_hook = paravirt_nop,
  732. #endif
  733. };
  734. static void xen_reboot(int reason)
  735. {
  736. struct sched_shutdown r = { .reason = reason };
  737. #ifdef CONFIG_SMP
  738. smp_send_stop();
  739. #endif
  740. if (HYPERVISOR_sched_op(SCHEDOP_shutdown, &r))
  741. BUG();
  742. }
  743. static void xen_restart(char *msg)
  744. {
  745. xen_reboot(SHUTDOWN_reboot);
  746. }
  747. static void xen_emergency_restart(void)
  748. {
  749. xen_reboot(SHUTDOWN_reboot);
  750. }
  751. static void xen_machine_halt(void)
  752. {
  753. xen_reboot(SHUTDOWN_poweroff);
  754. }
  755. static void xen_crash_shutdown(struct pt_regs *regs)
  756. {
  757. xen_reboot(SHUTDOWN_crash);
  758. }
  759. static const struct machine_ops __initdata xen_machine_ops = {
  760. .restart = xen_restart,
  761. .halt = xen_machine_halt,
  762. .power_off = xen_machine_halt,
  763. .shutdown = xen_machine_halt,
  764. .crash_shutdown = xen_crash_shutdown,
  765. .emergency_restart = xen_emergency_restart,
  766. };
  767. /* First C function to be called on Xen boot */
  768. asmlinkage void __init xen_start_kernel(void)
  769. {
  770. pgd_t *pgd;
  771. if (!xen_start_info)
  772. return;
  773. xen_domain_type = XEN_PV_DOMAIN;
  774. /* Install Xen paravirt ops */
  775. pv_info = xen_info;
  776. pv_init_ops = xen_init_ops;
  777. pv_time_ops = xen_time_ops;
  778. pv_cpu_ops = xen_cpu_ops;
  779. pv_apic_ops = xen_apic_ops;
  780. pv_mmu_ops = xen_mmu_ops;
  781. #ifdef CONFIG_X86_64
  782. /*
  783. * Setup percpu state. We only need to do this for 64-bit
  784. * because 32-bit already has %fs set properly.
  785. */
  786. load_percpu_segment(0);
  787. #endif
  788. xen_init_irq_ops();
  789. xen_init_cpuid_mask();
  790. #ifdef CONFIG_X86_LOCAL_APIC
  791. /*
  792. * set up the basic apic ops.
  793. */
  794. set_xen_basic_apic_ops();
  795. #endif
  796. xen_setup_features();
  797. if (xen_feature(XENFEAT_mmu_pt_update_preserve_ad)) {
  798. pv_mmu_ops.ptep_modify_prot_start = xen_ptep_modify_prot_start;
  799. pv_mmu_ops.ptep_modify_prot_commit = xen_ptep_modify_prot_commit;
  800. }
  801. machine_ops = xen_machine_ops;
  802. /*
  803. * The only reliable way to retain the initial address of the
  804. * percpu gdt_page is to remember it here, so we can go and
  805. * mark it RW later, when the initial percpu area is freed.
  806. */
  807. xen_initial_gdt = &per_cpu(gdt_page, 0);
  808. xen_smp_init();
  809. /* Get mfn list */
  810. if (!xen_feature(XENFEAT_auto_translated_physmap))
  811. xen_build_dynamic_phys_to_machine();
  812. pgd = (pgd_t *)xen_start_info->pt_base;
  813. /* Prevent unwanted bits from being set in PTEs. */
  814. __supported_pte_mask &= ~_PAGE_GLOBAL;
  815. if (!xen_initial_domain())
  816. __supported_pte_mask &= ~(_PAGE_PWT | _PAGE_PCD);
  817. #ifdef CONFIG_X86_64
  818. /* Work out if we support NX */
  819. check_efer();
  820. #endif
  821. /* Don't do the full vcpu_info placement stuff until we have a
  822. possible map and a non-dummy shared_info. */
  823. per_cpu(xen_vcpu, 0) = &HYPERVISOR_shared_info->vcpu_info[0];
  824. local_irq_disable();
  825. early_boot_irqs_off();
  826. xen_raw_console_write("mapping kernel into physical memory\n");
  827. pgd = xen_setup_kernel_pagetable(pgd, xen_start_info->nr_pages);
  828. init_mm.pgd = pgd;
  829. /* keep using Xen gdt for now; no urgent need to change it */
  830. pv_info.kernel_rpl = 1;
  831. if (xen_feature(XENFEAT_supervisor_mode_kernel))
  832. pv_info.kernel_rpl = 0;
  833. /* set the limit of our address space */
  834. xen_reserve_top();
  835. #ifdef CONFIG_X86_32
  836. /* set up basic CPUID stuff */
  837. cpu_detect(&new_cpu_data);
  838. new_cpu_data.hard_math = 1;
  839. new_cpu_data.wp_works_ok = 1;
  840. new_cpu_data.x86_capability[0] = cpuid_edx(1);
  841. #endif
  842. /* Poke various useful things into boot_params */
  843. boot_params.hdr.type_of_loader = (9 << 4) | 0;
  844. boot_params.hdr.ramdisk_image = xen_start_info->mod_start
  845. ? __pa(xen_start_info->mod_start) : 0;
  846. boot_params.hdr.ramdisk_size = xen_start_info->mod_len;
  847. boot_params.hdr.cmd_line_ptr = __pa(xen_start_info->cmd_line);
  848. if (!xen_initial_domain()) {
  849. add_preferred_console("xenboot", 0, NULL);
  850. add_preferred_console("tty", 0, NULL);
  851. add_preferred_console("hvc", 0, NULL);
  852. }
  853. xen_raw_console_write("about to get started...\n");
  854. /* Start the world */
  855. #ifdef CONFIG_X86_32
  856. i386_start_kernel();
  857. #else
  858. x86_64_start_reservations((char *)__pa_symbol(&boot_params));
  859. #endif
  860. }