enlighten.c 24 KB

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