enlighten.c 39 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675
  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/physdev.h>
  30. #include <xen/interface/vcpu.h>
  31. #include <xen/features.h>
  32. #include <xen/page.h>
  33. #include <xen/hvc-console.h>
  34. #include <asm/paravirt.h>
  35. #include <asm/page.h>
  36. #include <asm/xen/hypercall.h>
  37. #include <asm/xen/hypervisor.h>
  38. #include <asm/fixmap.h>
  39. #include <asm/processor.h>
  40. #include <asm/msr-index.h>
  41. #include <asm/setup.h>
  42. #include <asm/desc.h>
  43. #include <asm/pgtable.h>
  44. #include <asm/tlbflush.h>
  45. #include <asm/reboot.h>
  46. #include "xen-ops.h"
  47. #include "mmu.h"
  48. #include "multicalls.h"
  49. EXPORT_SYMBOL_GPL(hypercall_page);
  50. DEFINE_PER_CPU(struct vcpu_info *, xen_vcpu);
  51. DEFINE_PER_CPU(struct vcpu_info, xen_vcpu_info);
  52. enum xen_domain_type xen_domain_type = XEN_NATIVE;
  53. EXPORT_SYMBOL_GPL(xen_domain_type);
  54. /*
  55. * Identity map, in addition to plain kernel map. This needs to be
  56. * large enough to allocate page table pages to allocate the rest.
  57. * Each page can map 2MB.
  58. */
  59. static pte_t level1_ident_pgt[PTRS_PER_PTE * 4] __page_aligned_bss;
  60. #ifdef CONFIG_X86_64
  61. /* l3 pud for userspace vsyscall mapping */
  62. static pud_t level3_user_vsyscall[PTRS_PER_PUD] __page_aligned_bss;
  63. #endif /* CONFIG_X86_64 */
  64. /*
  65. * Note about cr3 (pagetable base) values:
  66. *
  67. * xen_cr3 contains the current logical cr3 value; it contains the
  68. * last set cr3. This may not be the current effective cr3, because
  69. * its update may be being lazily deferred. However, a vcpu looking
  70. * at its own cr3 can use this value knowing that it everything will
  71. * be self-consistent.
  72. *
  73. * xen_current_cr3 contains the actual vcpu cr3; it is set once the
  74. * hypercall to set the vcpu cr3 is complete (so it may be a little
  75. * out of date, but it will never be set early). If one vcpu is
  76. * looking at another vcpu's cr3 value, it should use this variable.
  77. */
  78. DEFINE_PER_CPU(unsigned long, xen_cr3); /* cr3 stored as physaddr */
  79. DEFINE_PER_CPU(unsigned long, xen_current_cr3); /* actual vcpu cr3 */
  80. struct start_info *xen_start_info;
  81. EXPORT_SYMBOL_GPL(xen_start_info);
  82. struct shared_info xen_dummy_shared_info;
  83. /*
  84. * Point at some empty memory to start with. We map the real shared_info
  85. * page as soon as fixmap is up and running.
  86. */
  87. struct shared_info *HYPERVISOR_shared_info = (void *)&xen_dummy_shared_info;
  88. /*
  89. * Flag to determine whether vcpu info placement is available on all
  90. * VCPUs. We assume it is to start with, and then set it to zero on
  91. * the first failure. This is because it can succeed on some VCPUs
  92. * and not others, since it can involve hypervisor memory allocation,
  93. * or because the guest failed to guarantee all the appropriate
  94. * constraints on all VCPUs (ie buffer can't cross a page boundary).
  95. *
  96. * Note that any particular CPU may be using a placed vcpu structure,
  97. * but we can only optimise if the all are.
  98. *
  99. * 0: not available, 1: available
  100. */
  101. static int have_vcpu_info_placement =
  102. #ifdef CONFIG_X86_32
  103. 1
  104. #else
  105. 0
  106. #endif
  107. ;
  108. static void xen_vcpu_setup(int cpu)
  109. {
  110. struct vcpu_register_vcpu_info info;
  111. int err;
  112. struct vcpu_info *vcpup;
  113. BUG_ON(HYPERVISOR_shared_info == &xen_dummy_shared_info);
  114. per_cpu(xen_vcpu, cpu) = &HYPERVISOR_shared_info->vcpu_info[cpu];
  115. if (!have_vcpu_info_placement)
  116. return; /* already tested, not available */
  117. vcpup = &per_cpu(xen_vcpu_info, cpu);
  118. info.mfn = virt_to_mfn(vcpup);
  119. info.offset = offset_in_page(vcpup);
  120. printk(KERN_DEBUG "trying to map vcpu_info %d at %p, mfn %llx, offset %d\n",
  121. cpu, vcpup, info.mfn, info.offset);
  122. /* Check to see if the hypervisor will put the vcpu_info
  123. structure where we want it, which allows direct access via
  124. a percpu-variable. */
  125. err = HYPERVISOR_vcpu_op(VCPUOP_register_vcpu_info, cpu, &info);
  126. if (err) {
  127. printk(KERN_DEBUG "register_vcpu_info failed: err=%d\n", err);
  128. have_vcpu_info_placement = 0;
  129. } else {
  130. /* This cpu is using the registered vcpu info, even if
  131. later ones fail to. */
  132. per_cpu(xen_vcpu, cpu) = vcpup;
  133. printk(KERN_DEBUG "cpu %d using vcpu_info at %p\n",
  134. cpu, vcpup);
  135. }
  136. }
  137. /*
  138. * On restore, set the vcpu placement up again.
  139. * If it fails, then we're in a bad state, since
  140. * we can't back out from using it...
  141. */
  142. void xen_vcpu_restore(void)
  143. {
  144. if (have_vcpu_info_placement) {
  145. int cpu;
  146. for_each_online_cpu(cpu) {
  147. bool other_cpu = (cpu != smp_processor_id());
  148. if (other_cpu &&
  149. HYPERVISOR_vcpu_op(VCPUOP_down, cpu, NULL))
  150. BUG();
  151. xen_vcpu_setup(cpu);
  152. if (other_cpu &&
  153. HYPERVISOR_vcpu_op(VCPUOP_up, cpu, NULL))
  154. BUG();
  155. }
  156. BUG_ON(!have_vcpu_info_placement);
  157. }
  158. }
  159. static void __init xen_banner(void)
  160. {
  161. unsigned version = HYPERVISOR_xen_version(XENVER_version, NULL);
  162. struct xen_extraversion extra;
  163. HYPERVISOR_xen_version(XENVER_extraversion, &extra);
  164. printk(KERN_INFO "Booting paravirtualized kernel on %s\n",
  165. pv_info.name);
  166. printk(KERN_INFO "Xen version: %d.%d%s%s\n",
  167. version >> 16, version & 0xffff, extra.extraversion,
  168. xen_feature(XENFEAT_mmu_pt_update_preserve_ad) ? " (preserve-AD)" : "");
  169. }
  170. static void xen_cpuid(unsigned int *ax, unsigned int *bx,
  171. unsigned int *cx, unsigned int *dx)
  172. {
  173. unsigned maskedx = ~0;
  174. /*
  175. * Mask out inconvenient features, to try and disable as many
  176. * unsupported kernel subsystems as possible.
  177. */
  178. if (*ax == 1)
  179. maskedx = ~((1 << X86_FEATURE_APIC) | /* disable APIC */
  180. (1 << X86_FEATURE_ACPI) | /* disable ACPI */
  181. (1 << X86_FEATURE_MCE) | /* disable MCE */
  182. (1 << X86_FEATURE_MCA) | /* disable MCA */
  183. (1 << X86_FEATURE_ACC)); /* thermal monitoring */
  184. asm(XEN_EMULATE_PREFIX "cpuid"
  185. : "=a" (*ax),
  186. "=b" (*bx),
  187. "=c" (*cx),
  188. "=d" (*dx)
  189. : "0" (*ax), "2" (*cx));
  190. *dx &= maskedx;
  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_leave_lazy(void)
  201. {
  202. paravirt_leave_lazy(paravirt_get_lazy_mode());
  203. xen_mc_flush();
  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 *frames;
  265. unsigned long va = dtr->address;
  266. unsigned int size = dtr->size + 1;
  267. unsigned pages = (size + PAGE_SIZE - 1) / PAGE_SIZE;
  268. int f;
  269. struct multicall_space mcs;
  270. /* A GDT can be up to 64k in size, which corresponds to 8192
  271. 8-byte entries, or 16 4k pages.. */
  272. BUG_ON(size > 65536);
  273. BUG_ON(va & ~PAGE_MASK);
  274. mcs = xen_mc_entry(sizeof(*frames) * pages);
  275. frames = mcs.args;
  276. for (f = 0; va < dtr->address + size; va += PAGE_SIZE, f++) {
  277. frames[f] = virt_to_mfn(va);
  278. make_lowmem_page_readonly((void *)va);
  279. }
  280. MULTI_set_gdt(mcs.mc, frames, size / sizeof(struct desc_struct));
  281. xen_mc_issue(PARAVIRT_LAZY_CPU);
  282. }
  283. static void load_TLS_descriptor(struct thread_struct *t,
  284. unsigned int cpu, unsigned int i)
  285. {
  286. struct desc_struct *gdt = get_cpu_gdt_table(cpu);
  287. xmaddr_t maddr = virt_to_machine(&gdt[GDT_ENTRY_TLS_MIN+i]);
  288. struct multicall_space mc = __xen_mc_entry(0);
  289. MULTI_update_descriptor(mc.mc, maddr.maddr, t->tls_array[i]);
  290. }
  291. static void xen_load_tls(struct thread_struct *t, unsigned int cpu)
  292. {
  293. /*
  294. * XXX sleazy hack: If we're being called in a lazy-cpu zone,
  295. * it means we're in a context switch, and %gs has just been
  296. * saved. This means we can zero it out to prevent faults on
  297. * exit from the hypervisor if the next process has no %gs.
  298. * Either way, it has been saved, and the new value will get
  299. * loaded properly. This will go away as soon as Xen has been
  300. * modified to not save/restore %gs for normal hypercalls.
  301. *
  302. * On x86_64, this hack is not used for %gs, because gs points
  303. * to KERNEL_GS_BASE (and uses it for PDA references), so we
  304. * must not zero %gs on x86_64
  305. *
  306. * For x86_64, we need to zero %fs, otherwise we may get an
  307. * exception between the new %fs descriptor being loaded and
  308. * %fs being effectively cleared at __switch_to().
  309. */
  310. if (paravirt_get_lazy_mode() == PARAVIRT_LAZY_CPU) {
  311. #ifdef CONFIG_X86_32
  312. loadsegment(gs, 0);
  313. #else
  314. loadsegment(fs, 0);
  315. #endif
  316. }
  317. xen_mc_batch();
  318. load_TLS_descriptor(t, cpu, 0);
  319. load_TLS_descriptor(t, cpu, 1);
  320. load_TLS_descriptor(t, cpu, 2);
  321. xen_mc_issue(PARAVIRT_LAZY_CPU);
  322. }
  323. #ifdef CONFIG_X86_64
  324. static void xen_load_gs_index(unsigned int idx)
  325. {
  326. if (HYPERVISOR_set_segment_base(SEGBASE_GS_USER_SEL, idx))
  327. BUG();
  328. }
  329. #endif
  330. static void xen_write_ldt_entry(struct desc_struct *dt, int entrynum,
  331. const void *ptr)
  332. {
  333. xmaddr_t mach_lp = arbitrary_virt_to_machine(&dt[entrynum]);
  334. u64 entry = *(u64 *)ptr;
  335. preempt_disable();
  336. xen_mc_flush();
  337. if (HYPERVISOR_update_descriptor(mach_lp.maddr, entry))
  338. BUG();
  339. preempt_enable();
  340. }
  341. static int cvt_gate_to_trap(int vector, const gate_desc *val,
  342. struct trap_info *info)
  343. {
  344. if (val->type != 0xf && val->type != 0xe)
  345. return 0;
  346. info->vector = vector;
  347. info->address = gate_offset(*val);
  348. info->cs = gate_segment(*val);
  349. info->flags = val->dpl;
  350. /* interrupt gates clear IF */
  351. if (val->type == 0xe)
  352. info->flags |= 4;
  353. return 1;
  354. }
  355. /* Locations of each CPU's IDT */
  356. static DEFINE_PER_CPU(struct desc_ptr, idt_desc);
  357. /* Set an IDT entry. If the entry is part of the current IDT, then
  358. also update Xen. */
  359. static void xen_write_idt_entry(gate_desc *dt, int entrynum, const gate_desc *g)
  360. {
  361. unsigned long p = (unsigned long)&dt[entrynum];
  362. unsigned long start, end;
  363. preempt_disable();
  364. start = __get_cpu_var(idt_desc).address;
  365. end = start + __get_cpu_var(idt_desc).size + 1;
  366. xen_mc_flush();
  367. native_write_idt_entry(dt, entrynum, g);
  368. if (p >= start && (p + 8) <= end) {
  369. struct trap_info info[2];
  370. info[1].address = 0;
  371. if (cvt_gate_to_trap(entrynum, g, &info[0]))
  372. if (HYPERVISOR_set_trap_table(info))
  373. BUG();
  374. }
  375. preempt_enable();
  376. }
  377. static void xen_convert_trap_info(const struct desc_ptr *desc,
  378. struct trap_info *traps)
  379. {
  380. unsigned in, out, count;
  381. count = (desc->size+1) / sizeof(gate_desc);
  382. BUG_ON(count > 256);
  383. for (in = out = 0; in < count; in++) {
  384. gate_desc *entry = (gate_desc*)(desc->address) + in;
  385. if (cvt_gate_to_trap(in, entry, &traps[out]))
  386. out++;
  387. }
  388. traps[out].address = 0;
  389. }
  390. void xen_copy_trap_info(struct trap_info *traps)
  391. {
  392. const struct desc_ptr *desc = &__get_cpu_var(idt_desc);
  393. xen_convert_trap_info(desc, traps);
  394. }
  395. /* Load a new IDT into Xen. In principle this can be per-CPU, so we
  396. hold a spinlock to protect the static traps[] array (static because
  397. it avoids allocation, and saves stack space). */
  398. static void xen_load_idt(const struct desc_ptr *desc)
  399. {
  400. static DEFINE_SPINLOCK(lock);
  401. static struct trap_info traps[257];
  402. spin_lock(&lock);
  403. __get_cpu_var(idt_desc) = *desc;
  404. xen_convert_trap_info(desc, traps);
  405. xen_mc_flush();
  406. if (HYPERVISOR_set_trap_table(traps))
  407. BUG();
  408. spin_unlock(&lock);
  409. }
  410. /* Write a GDT descriptor entry. Ignore LDT descriptors, since
  411. they're handled differently. */
  412. static void xen_write_gdt_entry(struct desc_struct *dt, int entry,
  413. const void *desc, int type)
  414. {
  415. preempt_disable();
  416. switch (type) {
  417. case DESC_LDT:
  418. case DESC_TSS:
  419. /* ignore */
  420. break;
  421. default: {
  422. xmaddr_t maddr = virt_to_machine(&dt[entry]);
  423. xen_mc_flush();
  424. if (HYPERVISOR_update_descriptor(maddr.maddr, *(u64 *)desc))
  425. BUG();
  426. }
  427. }
  428. preempt_enable();
  429. }
  430. static void xen_load_sp0(struct tss_struct *tss,
  431. struct thread_struct *thread)
  432. {
  433. struct multicall_space mcs = xen_mc_entry(0);
  434. MULTI_stack_switch(mcs.mc, __KERNEL_DS, thread->sp0);
  435. xen_mc_issue(PARAVIRT_LAZY_CPU);
  436. }
  437. static void xen_set_iopl_mask(unsigned mask)
  438. {
  439. struct physdev_set_iopl set_iopl;
  440. /* Force the change at ring 0. */
  441. set_iopl.iopl = (mask == 0) ? 1 : (mask >> 12) & 3;
  442. HYPERVISOR_physdev_op(PHYSDEVOP_set_iopl, &set_iopl);
  443. }
  444. static void xen_io_delay(void)
  445. {
  446. }
  447. #ifdef CONFIG_X86_LOCAL_APIC
  448. static u32 xen_apic_read(unsigned long reg)
  449. {
  450. return 0;
  451. }
  452. static void xen_apic_write(unsigned long reg, u32 val)
  453. {
  454. /* Warn to see if there's any stray references */
  455. WARN_ON(1);
  456. }
  457. #endif
  458. static void xen_flush_tlb(void)
  459. {
  460. struct mmuext_op *op;
  461. struct multicall_space mcs;
  462. preempt_disable();
  463. mcs = xen_mc_entry(sizeof(*op));
  464. op = mcs.args;
  465. op->cmd = MMUEXT_TLB_FLUSH_LOCAL;
  466. MULTI_mmuext_op(mcs.mc, op, 1, NULL, DOMID_SELF);
  467. xen_mc_issue(PARAVIRT_LAZY_MMU);
  468. preempt_enable();
  469. }
  470. static void xen_flush_tlb_single(unsigned long addr)
  471. {
  472. struct mmuext_op *op;
  473. struct multicall_space mcs;
  474. preempt_disable();
  475. mcs = xen_mc_entry(sizeof(*op));
  476. op = mcs.args;
  477. op->cmd = MMUEXT_INVLPG_LOCAL;
  478. op->arg1.linear_addr = addr & PAGE_MASK;
  479. MULTI_mmuext_op(mcs.mc, op, 1, NULL, DOMID_SELF);
  480. xen_mc_issue(PARAVIRT_LAZY_MMU);
  481. preempt_enable();
  482. }
  483. static void xen_flush_tlb_others(const cpumask_t *cpus, struct mm_struct *mm,
  484. unsigned long va)
  485. {
  486. struct {
  487. struct mmuext_op op;
  488. cpumask_t mask;
  489. } *args;
  490. cpumask_t cpumask = *cpus;
  491. struct multicall_space mcs;
  492. /*
  493. * A couple of (to be removed) sanity checks:
  494. *
  495. * - current CPU must not be in mask
  496. * - mask must exist :)
  497. */
  498. BUG_ON(cpus_empty(cpumask));
  499. BUG_ON(cpu_isset(smp_processor_id(), cpumask));
  500. BUG_ON(!mm);
  501. /* If a CPU which we ran on has gone down, OK. */
  502. cpus_and(cpumask, cpumask, cpu_online_map);
  503. if (cpus_empty(cpumask))
  504. return;
  505. mcs = xen_mc_entry(sizeof(*args));
  506. args = mcs.args;
  507. args->mask = cpumask;
  508. args->op.arg2.vcpumask = &args->mask;
  509. if (va == TLB_FLUSH_ALL) {
  510. args->op.cmd = MMUEXT_TLB_FLUSH_MULTI;
  511. } else {
  512. args->op.cmd = MMUEXT_INVLPG_MULTI;
  513. args->op.arg1.linear_addr = va;
  514. }
  515. MULTI_mmuext_op(mcs.mc, &args->op, 1, NULL, DOMID_SELF);
  516. xen_mc_issue(PARAVIRT_LAZY_MMU);
  517. }
  518. static void xen_clts(void)
  519. {
  520. struct multicall_space mcs;
  521. mcs = xen_mc_entry(0);
  522. MULTI_fpu_taskswitch(mcs.mc, 0);
  523. xen_mc_issue(PARAVIRT_LAZY_CPU);
  524. }
  525. static void xen_write_cr0(unsigned long cr0)
  526. {
  527. struct multicall_space mcs;
  528. /* Only pay attention to cr0.TS; everything else is
  529. ignored. */
  530. mcs = xen_mc_entry(0);
  531. MULTI_fpu_taskswitch(mcs.mc, (cr0 & X86_CR0_TS) != 0);
  532. xen_mc_issue(PARAVIRT_LAZY_CPU);
  533. }
  534. static void xen_write_cr2(unsigned long cr2)
  535. {
  536. x86_read_percpu(xen_vcpu)->arch.cr2 = cr2;
  537. }
  538. static unsigned long xen_read_cr2(void)
  539. {
  540. return x86_read_percpu(xen_vcpu)->arch.cr2;
  541. }
  542. static unsigned long xen_read_cr2_direct(void)
  543. {
  544. return x86_read_percpu(xen_vcpu_info.arch.cr2);
  545. }
  546. static void xen_write_cr4(unsigned long cr4)
  547. {
  548. cr4 &= ~X86_CR4_PGE;
  549. cr4 &= ~X86_CR4_PSE;
  550. native_write_cr4(cr4);
  551. }
  552. static unsigned long xen_read_cr3(void)
  553. {
  554. return x86_read_percpu(xen_cr3);
  555. }
  556. static void set_current_cr3(void *v)
  557. {
  558. x86_write_percpu(xen_current_cr3, (unsigned long)v);
  559. }
  560. static void __xen_write_cr3(bool kernel, unsigned long cr3)
  561. {
  562. struct mmuext_op *op;
  563. struct multicall_space mcs;
  564. unsigned long mfn;
  565. if (cr3)
  566. mfn = pfn_to_mfn(PFN_DOWN(cr3));
  567. else
  568. mfn = 0;
  569. WARN_ON(mfn == 0 && kernel);
  570. mcs = __xen_mc_entry(sizeof(*op));
  571. op = mcs.args;
  572. op->cmd = kernel ? MMUEXT_NEW_BASEPTR : MMUEXT_NEW_USER_BASEPTR;
  573. op->arg1.mfn = mfn;
  574. MULTI_mmuext_op(mcs.mc, op, 1, NULL, DOMID_SELF);
  575. if (kernel) {
  576. x86_write_percpu(xen_cr3, cr3);
  577. /* Update xen_current_cr3 once the batch has actually
  578. been submitted. */
  579. xen_mc_callback(set_current_cr3, (void *)cr3);
  580. }
  581. }
  582. static void xen_write_cr3(unsigned long cr3)
  583. {
  584. BUG_ON(preemptible());
  585. xen_mc_batch(); /* disables interrupts */
  586. /* Update while interrupts are disabled, so its atomic with
  587. respect to ipis */
  588. x86_write_percpu(xen_cr3, cr3);
  589. __xen_write_cr3(true, cr3);
  590. #ifdef CONFIG_X86_64
  591. {
  592. pgd_t *user_pgd = xen_get_user_pgd(__va(cr3));
  593. if (user_pgd)
  594. __xen_write_cr3(false, __pa(user_pgd));
  595. else
  596. __xen_write_cr3(false, 0);
  597. }
  598. #endif
  599. xen_mc_issue(PARAVIRT_LAZY_CPU); /* interrupts restored */
  600. }
  601. static int xen_write_msr_safe(unsigned int msr, unsigned low, unsigned high)
  602. {
  603. int ret;
  604. ret = 0;
  605. switch(msr) {
  606. #ifdef CONFIG_X86_64
  607. unsigned which;
  608. u64 base;
  609. case MSR_FS_BASE: which = SEGBASE_FS; goto set;
  610. case MSR_KERNEL_GS_BASE: which = SEGBASE_GS_USER; goto set;
  611. case MSR_GS_BASE: which = SEGBASE_GS_KERNEL; goto set;
  612. set:
  613. base = ((u64)high << 32) | low;
  614. if (HYPERVISOR_set_segment_base(which, base) != 0)
  615. ret = -EFAULT;
  616. break;
  617. #endif
  618. case MSR_STAR:
  619. case MSR_CSTAR:
  620. case MSR_LSTAR:
  621. case MSR_SYSCALL_MASK:
  622. case MSR_IA32_SYSENTER_CS:
  623. case MSR_IA32_SYSENTER_ESP:
  624. case MSR_IA32_SYSENTER_EIP:
  625. /* Fast syscall setup is all done in hypercalls, so
  626. these are all ignored. Stub them out here to stop
  627. Xen console noise. */
  628. break;
  629. default:
  630. ret = native_write_msr_safe(msr, low, high);
  631. }
  632. return ret;
  633. }
  634. /* Early in boot, while setting up the initial pagetable, assume
  635. everything is pinned. */
  636. static __init void xen_alloc_pte_init(struct mm_struct *mm, u32 pfn)
  637. {
  638. #ifdef CONFIG_FLATMEM
  639. BUG_ON(mem_map); /* should only be used early */
  640. #endif
  641. make_lowmem_page_readonly(__va(PFN_PHYS(pfn)));
  642. }
  643. /* Early release_pte assumes that all pts are pinned, since there's
  644. only init_mm and anything attached to that is pinned. */
  645. static void xen_release_pte_init(u32 pfn)
  646. {
  647. make_lowmem_page_readwrite(__va(PFN_PHYS(pfn)));
  648. }
  649. static void pin_pagetable_pfn(unsigned cmd, unsigned long pfn)
  650. {
  651. struct mmuext_op op;
  652. op.cmd = cmd;
  653. op.arg1.mfn = pfn_to_mfn(pfn);
  654. if (HYPERVISOR_mmuext_op(&op, 1, NULL, DOMID_SELF))
  655. BUG();
  656. }
  657. /* This needs to make sure the new pte page is pinned iff its being
  658. attached to a pinned pagetable. */
  659. static void xen_alloc_ptpage(struct mm_struct *mm, u32 pfn, unsigned level)
  660. {
  661. struct page *page = pfn_to_page(pfn);
  662. if (PagePinned(virt_to_page(mm->pgd))) {
  663. SetPagePinned(page);
  664. if (!PageHighMem(page)) {
  665. make_lowmem_page_readonly(__va(PFN_PHYS((unsigned long)pfn)));
  666. if (level == PT_PTE && USE_SPLIT_PTLOCKS)
  667. pin_pagetable_pfn(MMUEXT_PIN_L1_TABLE, pfn);
  668. } else
  669. /* make sure there are no stray mappings of
  670. this page */
  671. kmap_flush_unused();
  672. }
  673. }
  674. static void xen_alloc_pte(struct mm_struct *mm, u32 pfn)
  675. {
  676. xen_alloc_ptpage(mm, pfn, PT_PTE);
  677. }
  678. static void xen_alloc_pmd(struct mm_struct *mm, u32 pfn)
  679. {
  680. xen_alloc_ptpage(mm, pfn, PT_PMD);
  681. }
  682. static int xen_pgd_alloc(struct mm_struct *mm)
  683. {
  684. pgd_t *pgd = mm->pgd;
  685. int ret = 0;
  686. BUG_ON(PagePinned(virt_to_page(pgd)));
  687. #ifdef CONFIG_X86_64
  688. {
  689. struct page *page = virt_to_page(pgd);
  690. pgd_t *user_pgd;
  691. BUG_ON(page->private != 0);
  692. ret = -ENOMEM;
  693. user_pgd = (pgd_t *)__get_free_page(GFP_KERNEL | __GFP_ZERO);
  694. page->private = (unsigned long)user_pgd;
  695. if (user_pgd != NULL) {
  696. user_pgd[pgd_index(VSYSCALL_START)] =
  697. __pgd(__pa(level3_user_vsyscall) | _PAGE_TABLE);
  698. ret = 0;
  699. }
  700. BUG_ON(PagePinned(virt_to_page(xen_get_user_pgd(pgd))));
  701. }
  702. #endif
  703. return ret;
  704. }
  705. static void xen_pgd_free(struct mm_struct *mm, pgd_t *pgd)
  706. {
  707. #ifdef CONFIG_X86_64
  708. pgd_t *user_pgd = xen_get_user_pgd(pgd);
  709. if (user_pgd)
  710. free_page((unsigned long)user_pgd);
  711. #endif
  712. }
  713. /* This should never happen until we're OK to use struct page */
  714. static void xen_release_ptpage(u32 pfn, unsigned level)
  715. {
  716. struct page *page = pfn_to_page(pfn);
  717. if (PagePinned(page)) {
  718. if (!PageHighMem(page)) {
  719. if (level == PT_PTE && USE_SPLIT_PTLOCKS)
  720. pin_pagetable_pfn(MMUEXT_UNPIN_TABLE, pfn);
  721. make_lowmem_page_readwrite(__va(PFN_PHYS(pfn)));
  722. }
  723. ClearPagePinned(page);
  724. }
  725. }
  726. static void xen_release_pte(u32 pfn)
  727. {
  728. xen_release_ptpage(pfn, PT_PTE);
  729. }
  730. static void xen_release_pmd(u32 pfn)
  731. {
  732. xen_release_ptpage(pfn, PT_PMD);
  733. }
  734. #if PAGETABLE_LEVELS == 4
  735. static void xen_alloc_pud(struct mm_struct *mm, u32 pfn)
  736. {
  737. xen_alloc_ptpage(mm, pfn, PT_PUD);
  738. }
  739. static void xen_release_pud(u32 pfn)
  740. {
  741. xen_release_ptpage(pfn, PT_PUD);
  742. }
  743. #endif
  744. #ifdef CONFIG_HIGHPTE
  745. static void *xen_kmap_atomic_pte(struct page *page, enum km_type type)
  746. {
  747. pgprot_t prot = PAGE_KERNEL;
  748. if (PagePinned(page))
  749. prot = PAGE_KERNEL_RO;
  750. if (0 && PageHighMem(page))
  751. printk("mapping highpte %lx type %d prot %s\n",
  752. page_to_pfn(page), type,
  753. (unsigned long)pgprot_val(prot) & _PAGE_RW ? "WRITE" : "READ");
  754. return kmap_atomic_prot(page, type, prot);
  755. }
  756. #endif
  757. #ifdef CONFIG_X86_32
  758. static __init pte_t mask_rw_pte(pte_t *ptep, pte_t pte)
  759. {
  760. /* If there's an existing pte, then don't allow _PAGE_RW to be set */
  761. if (pte_val_ma(*ptep) & _PAGE_PRESENT)
  762. pte = __pte_ma(((pte_val_ma(*ptep) & _PAGE_RW) | ~_PAGE_RW) &
  763. pte_val_ma(pte));
  764. return pte;
  765. }
  766. /* Init-time set_pte while constructing initial pagetables, which
  767. doesn't allow RO pagetable pages to be remapped RW */
  768. static __init void xen_set_pte_init(pte_t *ptep, pte_t pte)
  769. {
  770. pte = mask_rw_pte(ptep, pte);
  771. xen_set_pte(ptep, pte);
  772. }
  773. #endif
  774. static __init void xen_pagetable_setup_start(pgd_t *base)
  775. {
  776. }
  777. void xen_setup_shared_info(void)
  778. {
  779. if (!xen_feature(XENFEAT_auto_translated_physmap)) {
  780. set_fixmap(FIX_PARAVIRT_BOOTMAP,
  781. xen_start_info->shared_info);
  782. HYPERVISOR_shared_info =
  783. (struct shared_info *)fix_to_virt(FIX_PARAVIRT_BOOTMAP);
  784. } else
  785. HYPERVISOR_shared_info =
  786. (struct shared_info *)__va(xen_start_info->shared_info);
  787. #ifndef CONFIG_SMP
  788. /* In UP this is as good a place as any to set up shared info */
  789. xen_setup_vcpu_info_placement();
  790. #endif
  791. xen_setup_mfn_list_list();
  792. }
  793. static __init void xen_pagetable_setup_done(pgd_t *base)
  794. {
  795. xen_setup_shared_info();
  796. }
  797. static __init void xen_post_allocator_init(void)
  798. {
  799. pv_mmu_ops.set_pte = xen_set_pte;
  800. pv_mmu_ops.set_pmd = xen_set_pmd;
  801. pv_mmu_ops.set_pud = xen_set_pud;
  802. #if PAGETABLE_LEVELS == 4
  803. pv_mmu_ops.set_pgd = xen_set_pgd;
  804. #endif
  805. /* This will work as long as patching hasn't happened yet
  806. (which it hasn't) */
  807. pv_mmu_ops.alloc_pte = xen_alloc_pte;
  808. pv_mmu_ops.alloc_pmd = xen_alloc_pmd;
  809. pv_mmu_ops.release_pte = xen_release_pte;
  810. pv_mmu_ops.release_pmd = xen_release_pmd;
  811. #if PAGETABLE_LEVELS == 4
  812. pv_mmu_ops.alloc_pud = xen_alloc_pud;
  813. pv_mmu_ops.release_pud = xen_release_pud;
  814. #endif
  815. #ifdef CONFIG_X86_64
  816. SetPagePinned(virt_to_page(level3_user_vsyscall));
  817. #endif
  818. xen_mark_init_mm_pinned();
  819. }
  820. /* This is called once we have the cpu_possible_map */
  821. void xen_setup_vcpu_info_placement(void)
  822. {
  823. int cpu;
  824. for_each_possible_cpu(cpu)
  825. xen_vcpu_setup(cpu);
  826. /* xen_vcpu_setup managed to place the vcpu_info within the
  827. percpu area for all cpus, so make use of it */
  828. if (have_vcpu_info_placement) {
  829. printk(KERN_INFO "Xen: using vcpu_info placement\n");
  830. pv_irq_ops.save_fl = xen_save_fl_direct;
  831. pv_irq_ops.restore_fl = xen_restore_fl_direct;
  832. pv_irq_ops.irq_disable = xen_irq_disable_direct;
  833. pv_irq_ops.irq_enable = xen_irq_enable_direct;
  834. pv_mmu_ops.read_cr2 = xen_read_cr2_direct;
  835. }
  836. }
  837. static unsigned xen_patch(u8 type, u16 clobbers, void *insnbuf,
  838. unsigned long addr, unsigned len)
  839. {
  840. char *start, *end, *reloc;
  841. unsigned ret;
  842. start = end = reloc = NULL;
  843. #define SITE(op, x) \
  844. case PARAVIRT_PATCH(op.x): \
  845. if (have_vcpu_info_placement) { \
  846. start = (char *)xen_##x##_direct; \
  847. end = xen_##x##_direct_end; \
  848. reloc = xen_##x##_direct_reloc; \
  849. } \
  850. goto patch_site
  851. switch (type) {
  852. SITE(pv_irq_ops, irq_enable);
  853. SITE(pv_irq_ops, irq_disable);
  854. SITE(pv_irq_ops, save_fl);
  855. SITE(pv_irq_ops, restore_fl);
  856. #undef SITE
  857. patch_site:
  858. if (start == NULL || (end-start) > len)
  859. goto default_patch;
  860. ret = paravirt_patch_insns(insnbuf, len, start, end);
  861. /* Note: because reloc is assigned from something that
  862. appears to be an array, gcc assumes it's non-null,
  863. but doesn't know its relationship with start and
  864. end. */
  865. if (reloc > start && reloc < end) {
  866. int reloc_off = reloc - start;
  867. long *relocp = (long *)(insnbuf + reloc_off);
  868. long delta = start - (char *)addr;
  869. *relocp += delta;
  870. }
  871. break;
  872. default_patch:
  873. default:
  874. ret = paravirt_patch_default(type, clobbers, insnbuf,
  875. addr, len);
  876. break;
  877. }
  878. return ret;
  879. }
  880. static void xen_set_fixmap(unsigned idx, unsigned long phys, pgprot_t prot)
  881. {
  882. pte_t pte;
  883. phys >>= PAGE_SHIFT;
  884. switch (idx) {
  885. case FIX_BTMAP_END ... FIX_BTMAP_BEGIN:
  886. #ifdef CONFIG_X86_F00F_BUG
  887. case FIX_F00F_IDT:
  888. #endif
  889. #ifdef CONFIG_X86_32
  890. case FIX_WP_TEST:
  891. case FIX_VDSO:
  892. # ifdef CONFIG_HIGHMEM
  893. case FIX_KMAP_BEGIN ... FIX_KMAP_END:
  894. # endif
  895. #else
  896. case VSYSCALL_LAST_PAGE ... VSYSCALL_FIRST_PAGE:
  897. #endif
  898. #ifdef CONFIG_X86_LOCAL_APIC
  899. case FIX_APIC_BASE: /* maps dummy local APIC */
  900. #endif
  901. pte = pfn_pte(phys, prot);
  902. break;
  903. default:
  904. pte = mfn_pte(phys, prot);
  905. break;
  906. }
  907. __native_set_fixmap(idx, pte);
  908. #ifdef CONFIG_X86_64
  909. /* Replicate changes to map the vsyscall page into the user
  910. pagetable vsyscall mapping. */
  911. if (idx >= VSYSCALL_LAST_PAGE && idx <= VSYSCALL_FIRST_PAGE) {
  912. unsigned long vaddr = __fix_to_virt(idx);
  913. set_pte_vaddr_pud(level3_user_vsyscall, vaddr, pte);
  914. }
  915. #endif
  916. }
  917. static const struct pv_info xen_info __initdata = {
  918. .paravirt_enabled = 1,
  919. .shared_kernel_pmd = 0,
  920. .name = "Xen",
  921. };
  922. static const struct pv_init_ops xen_init_ops __initdata = {
  923. .patch = xen_patch,
  924. .banner = xen_banner,
  925. .memory_setup = xen_memory_setup,
  926. .arch_setup = xen_arch_setup,
  927. .post_allocator_init = xen_post_allocator_init,
  928. };
  929. static const struct pv_time_ops xen_time_ops __initdata = {
  930. .time_init = xen_time_init,
  931. .set_wallclock = xen_set_wallclock,
  932. .get_wallclock = xen_get_wallclock,
  933. .get_tsc_khz = xen_tsc_khz,
  934. .sched_clock = xen_sched_clock,
  935. };
  936. static const struct pv_cpu_ops xen_cpu_ops __initdata = {
  937. .cpuid = xen_cpuid,
  938. .set_debugreg = xen_set_debugreg,
  939. .get_debugreg = xen_get_debugreg,
  940. .clts = xen_clts,
  941. .read_cr0 = native_read_cr0,
  942. .write_cr0 = xen_write_cr0,
  943. .read_cr4 = native_read_cr4,
  944. .read_cr4_safe = native_read_cr4_safe,
  945. .write_cr4 = xen_write_cr4,
  946. .wbinvd = native_wbinvd,
  947. .read_msr = native_read_msr_safe,
  948. .write_msr = xen_write_msr_safe,
  949. .read_tsc = native_read_tsc,
  950. .read_pmc = native_read_pmc,
  951. .iret = xen_iret,
  952. .irq_enable_sysexit = xen_sysexit,
  953. #ifdef CONFIG_X86_64
  954. .usergs_sysret32 = xen_sysret32,
  955. .usergs_sysret64 = xen_sysret64,
  956. #endif
  957. .load_tr_desc = paravirt_nop,
  958. .set_ldt = xen_set_ldt,
  959. .load_gdt = xen_load_gdt,
  960. .load_idt = xen_load_idt,
  961. .load_tls = xen_load_tls,
  962. #ifdef CONFIG_X86_64
  963. .load_gs_index = xen_load_gs_index,
  964. #endif
  965. .alloc_ldt = xen_alloc_ldt,
  966. .free_ldt = xen_free_ldt,
  967. .store_gdt = native_store_gdt,
  968. .store_idt = native_store_idt,
  969. .store_tr = xen_store_tr,
  970. .write_ldt_entry = xen_write_ldt_entry,
  971. .write_gdt_entry = xen_write_gdt_entry,
  972. .write_idt_entry = xen_write_idt_entry,
  973. .load_sp0 = xen_load_sp0,
  974. .set_iopl_mask = xen_set_iopl_mask,
  975. .io_delay = xen_io_delay,
  976. /* Xen takes care of %gs when switching to usermode for us */
  977. .swapgs = paravirt_nop,
  978. .lazy_mode = {
  979. .enter = paravirt_enter_lazy_cpu,
  980. .leave = xen_leave_lazy,
  981. },
  982. };
  983. static const struct pv_apic_ops xen_apic_ops __initdata = {
  984. #ifdef CONFIG_X86_LOCAL_APIC
  985. .apic_write = xen_apic_write,
  986. .apic_read = xen_apic_read,
  987. .setup_boot_clock = paravirt_nop,
  988. .setup_secondary_clock = paravirt_nop,
  989. .startup_ipi_hook = paravirt_nop,
  990. #endif
  991. };
  992. static const struct pv_mmu_ops xen_mmu_ops __initdata = {
  993. .pagetable_setup_start = xen_pagetable_setup_start,
  994. .pagetable_setup_done = xen_pagetable_setup_done,
  995. .read_cr2 = xen_read_cr2,
  996. .write_cr2 = xen_write_cr2,
  997. .read_cr3 = xen_read_cr3,
  998. .write_cr3 = xen_write_cr3,
  999. .flush_tlb_user = xen_flush_tlb,
  1000. .flush_tlb_kernel = xen_flush_tlb,
  1001. .flush_tlb_single = xen_flush_tlb_single,
  1002. .flush_tlb_others = xen_flush_tlb_others,
  1003. .pte_update = paravirt_nop,
  1004. .pte_update_defer = paravirt_nop,
  1005. .pgd_alloc = xen_pgd_alloc,
  1006. .pgd_free = xen_pgd_free,
  1007. .alloc_pte = xen_alloc_pte_init,
  1008. .release_pte = xen_release_pte_init,
  1009. .alloc_pmd = xen_alloc_pte_init,
  1010. .alloc_pmd_clone = paravirt_nop,
  1011. .release_pmd = xen_release_pte_init,
  1012. #ifdef CONFIG_HIGHPTE
  1013. .kmap_atomic_pte = xen_kmap_atomic_pte,
  1014. #endif
  1015. #ifdef CONFIG_X86_64
  1016. .set_pte = xen_set_pte,
  1017. #else
  1018. .set_pte = xen_set_pte_init,
  1019. #endif
  1020. .set_pte_at = xen_set_pte_at,
  1021. .set_pmd = xen_set_pmd_hyper,
  1022. .ptep_modify_prot_start = __ptep_modify_prot_start,
  1023. .ptep_modify_prot_commit = __ptep_modify_prot_commit,
  1024. .pte_val = xen_pte_val,
  1025. .pte_flags = native_pte_flags,
  1026. .pgd_val = xen_pgd_val,
  1027. .make_pte = xen_make_pte,
  1028. .make_pgd = xen_make_pgd,
  1029. #ifdef CONFIG_X86_PAE
  1030. .set_pte_atomic = xen_set_pte_atomic,
  1031. .set_pte_present = xen_set_pte_at,
  1032. .pte_clear = xen_pte_clear,
  1033. .pmd_clear = xen_pmd_clear,
  1034. #endif /* CONFIG_X86_PAE */
  1035. .set_pud = xen_set_pud_hyper,
  1036. .make_pmd = xen_make_pmd,
  1037. .pmd_val = xen_pmd_val,
  1038. #if PAGETABLE_LEVELS == 4
  1039. .pud_val = xen_pud_val,
  1040. .make_pud = xen_make_pud,
  1041. .set_pgd = xen_set_pgd_hyper,
  1042. .alloc_pud = xen_alloc_pte_init,
  1043. .release_pud = xen_release_pte_init,
  1044. #endif /* PAGETABLE_LEVELS == 4 */
  1045. .activate_mm = xen_activate_mm,
  1046. .dup_mmap = xen_dup_mmap,
  1047. .exit_mmap = xen_exit_mmap,
  1048. .lazy_mode = {
  1049. .enter = paravirt_enter_lazy_mmu,
  1050. .leave = xen_leave_lazy,
  1051. },
  1052. .set_fixmap = xen_set_fixmap,
  1053. };
  1054. static void xen_reboot(int reason)
  1055. {
  1056. struct sched_shutdown r = { .reason = reason };
  1057. #ifdef CONFIG_SMP
  1058. smp_send_stop();
  1059. #endif
  1060. if (HYPERVISOR_sched_op(SCHEDOP_shutdown, &r))
  1061. BUG();
  1062. }
  1063. static void xen_restart(char *msg)
  1064. {
  1065. xen_reboot(SHUTDOWN_reboot);
  1066. }
  1067. static void xen_emergency_restart(void)
  1068. {
  1069. xen_reboot(SHUTDOWN_reboot);
  1070. }
  1071. static void xen_machine_halt(void)
  1072. {
  1073. xen_reboot(SHUTDOWN_poweroff);
  1074. }
  1075. static void xen_crash_shutdown(struct pt_regs *regs)
  1076. {
  1077. xen_reboot(SHUTDOWN_crash);
  1078. }
  1079. static const struct machine_ops __initdata xen_machine_ops = {
  1080. .restart = xen_restart,
  1081. .halt = xen_machine_halt,
  1082. .power_off = xen_machine_halt,
  1083. .shutdown = xen_machine_halt,
  1084. .crash_shutdown = xen_crash_shutdown,
  1085. .emergency_restart = xen_emergency_restart,
  1086. };
  1087. static void __init xen_reserve_top(void)
  1088. {
  1089. #ifdef CONFIG_X86_32
  1090. unsigned long top = HYPERVISOR_VIRT_START;
  1091. struct xen_platform_parameters pp;
  1092. if (HYPERVISOR_xen_version(XENVER_platform_parameters, &pp) == 0)
  1093. top = pp.virt_start;
  1094. reserve_top_address(-top + 2 * PAGE_SIZE);
  1095. #endif /* CONFIG_X86_32 */
  1096. }
  1097. /*
  1098. * Like __va(), but returns address in the kernel mapping (which is
  1099. * all we have until the physical memory mapping has been set up.
  1100. */
  1101. static void *__ka(phys_addr_t paddr)
  1102. {
  1103. #ifdef CONFIG_X86_64
  1104. return (void *)(paddr + __START_KERNEL_map);
  1105. #else
  1106. return __va(paddr);
  1107. #endif
  1108. }
  1109. /* Convert a machine address to physical address */
  1110. static unsigned long m2p(phys_addr_t maddr)
  1111. {
  1112. phys_addr_t paddr;
  1113. maddr &= PTE_PFN_MASK;
  1114. paddr = mfn_to_pfn(maddr >> PAGE_SHIFT) << PAGE_SHIFT;
  1115. return paddr;
  1116. }
  1117. /* Convert a machine address to kernel virtual */
  1118. static void *m2v(phys_addr_t maddr)
  1119. {
  1120. return __ka(m2p(maddr));
  1121. }
  1122. static void set_page_prot(void *addr, pgprot_t prot)
  1123. {
  1124. unsigned long pfn = __pa(addr) >> PAGE_SHIFT;
  1125. pte_t pte = pfn_pte(pfn, prot);
  1126. if (HYPERVISOR_update_va_mapping((unsigned long)addr, pte, 0))
  1127. BUG();
  1128. }
  1129. static __init void xen_map_identity_early(pmd_t *pmd, unsigned long max_pfn)
  1130. {
  1131. unsigned pmdidx, pteidx;
  1132. unsigned ident_pte;
  1133. unsigned long pfn;
  1134. ident_pte = 0;
  1135. pfn = 0;
  1136. for(pmdidx = 0; pmdidx < PTRS_PER_PMD && pfn < max_pfn; pmdidx++) {
  1137. pte_t *pte_page;
  1138. /* Reuse or allocate a page of ptes */
  1139. if (pmd_present(pmd[pmdidx]))
  1140. pte_page = m2v(pmd[pmdidx].pmd);
  1141. else {
  1142. /* Check for free pte pages */
  1143. if (ident_pte == ARRAY_SIZE(level1_ident_pgt))
  1144. break;
  1145. pte_page = &level1_ident_pgt[ident_pte];
  1146. ident_pte += PTRS_PER_PTE;
  1147. pmd[pmdidx] = __pmd(__pa(pte_page) | _PAGE_TABLE);
  1148. }
  1149. /* Install mappings */
  1150. for(pteidx = 0; pteidx < PTRS_PER_PTE; pteidx++, pfn++) {
  1151. pte_t pte;
  1152. if (pfn > max_pfn_mapped)
  1153. max_pfn_mapped = pfn;
  1154. if (!pte_none(pte_page[pteidx]))
  1155. continue;
  1156. pte = pfn_pte(pfn, PAGE_KERNEL_EXEC);
  1157. pte_page[pteidx] = pte;
  1158. }
  1159. }
  1160. for(pteidx = 0; pteidx < ident_pte; pteidx += PTRS_PER_PTE)
  1161. set_page_prot(&level1_ident_pgt[pteidx], PAGE_KERNEL_RO);
  1162. set_page_prot(pmd, PAGE_KERNEL_RO);
  1163. }
  1164. #ifdef CONFIG_X86_64
  1165. static void convert_pfn_mfn(void *v)
  1166. {
  1167. pte_t *pte = v;
  1168. int i;
  1169. /* All levels are converted the same way, so just treat them
  1170. as ptes. */
  1171. for(i = 0; i < PTRS_PER_PTE; i++)
  1172. pte[i] = xen_make_pte(pte[i].pte);
  1173. }
  1174. /*
  1175. * Set up the inital kernel pagetable.
  1176. *
  1177. * We can construct this by grafting the Xen provided pagetable into
  1178. * head_64.S's preconstructed pagetables. We copy the Xen L2's into
  1179. * level2_ident_pgt, level2_kernel_pgt and level2_fixmap_pgt. This
  1180. * means that only the kernel has a physical mapping to start with -
  1181. * but that's enough to get __va working. We need to fill in the rest
  1182. * of the physical mapping once some sort of allocator has been set
  1183. * up.
  1184. */
  1185. static __init pgd_t *xen_setup_kernel_pagetable(pgd_t *pgd, unsigned long max_pfn)
  1186. {
  1187. pud_t *l3;
  1188. pmd_t *l2;
  1189. /* Zap identity mapping */
  1190. init_level4_pgt[0] = __pgd(0);
  1191. /* Pre-constructed entries are in pfn, so convert to mfn */
  1192. convert_pfn_mfn(init_level4_pgt);
  1193. convert_pfn_mfn(level3_ident_pgt);
  1194. convert_pfn_mfn(level3_kernel_pgt);
  1195. l3 = m2v(pgd[pgd_index(__START_KERNEL_map)].pgd);
  1196. l2 = m2v(l3[pud_index(__START_KERNEL_map)].pud);
  1197. memcpy(level2_ident_pgt, l2, sizeof(pmd_t) * PTRS_PER_PMD);
  1198. memcpy(level2_kernel_pgt, l2, sizeof(pmd_t) * PTRS_PER_PMD);
  1199. l3 = m2v(pgd[pgd_index(__START_KERNEL_map + PMD_SIZE)].pgd);
  1200. l2 = m2v(l3[pud_index(__START_KERNEL_map + PMD_SIZE)].pud);
  1201. memcpy(level2_fixmap_pgt, l2, sizeof(pmd_t) * PTRS_PER_PMD);
  1202. /* Set up identity map */
  1203. xen_map_identity_early(level2_ident_pgt, max_pfn);
  1204. /* Make pagetable pieces RO */
  1205. set_page_prot(init_level4_pgt, PAGE_KERNEL_RO);
  1206. set_page_prot(level3_ident_pgt, PAGE_KERNEL_RO);
  1207. set_page_prot(level3_kernel_pgt, PAGE_KERNEL_RO);
  1208. set_page_prot(level3_user_vsyscall, PAGE_KERNEL_RO);
  1209. set_page_prot(level2_kernel_pgt, PAGE_KERNEL_RO);
  1210. set_page_prot(level2_fixmap_pgt, PAGE_KERNEL_RO);
  1211. /* Pin down new L4 */
  1212. pin_pagetable_pfn(MMUEXT_PIN_L4_TABLE,
  1213. PFN_DOWN(__pa_symbol(init_level4_pgt)));
  1214. /* Unpin Xen-provided one */
  1215. pin_pagetable_pfn(MMUEXT_UNPIN_TABLE, PFN_DOWN(__pa(pgd)));
  1216. /* Switch over */
  1217. pgd = init_level4_pgt;
  1218. /*
  1219. * At this stage there can be no user pgd, and no page
  1220. * structure to attach it to, so make sure we just set kernel
  1221. * pgd.
  1222. */
  1223. xen_mc_batch();
  1224. __xen_write_cr3(true, __pa(pgd));
  1225. xen_mc_issue(PARAVIRT_LAZY_CPU);
  1226. reserve_early(__pa(xen_start_info->pt_base),
  1227. __pa(xen_start_info->pt_base +
  1228. xen_start_info->nr_pt_frames * PAGE_SIZE),
  1229. "XEN PAGETABLES");
  1230. return pgd;
  1231. }
  1232. #else /* !CONFIG_X86_64 */
  1233. static pmd_t level2_kernel_pgt[PTRS_PER_PMD] __page_aligned_bss;
  1234. static __init pgd_t *xen_setup_kernel_pagetable(pgd_t *pgd, unsigned long max_pfn)
  1235. {
  1236. pmd_t *kernel_pmd;
  1237. init_pg_tables_start = __pa(pgd);
  1238. init_pg_tables_end = __pa(pgd) + xen_start_info->nr_pt_frames*PAGE_SIZE;
  1239. max_pfn_mapped = PFN_DOWN(init_pg_tables_end + 512*1024);
  1240. kernel_pmd = m2v(pgd[KERNEL_PGD_BOUNDARY].pgd);
  1241. memcpy(level2_kernel_pgt, kernel_pmd, sizeof(pmd_t) * PTRS_PER_PMD);
  1242. xen_map_identity_early(level2_kernel_pgt, max_pfn);
  1243. memcpy(swapper_pg_dir, pgd, sizeof(pgd_t) * PTRS_PER_PGD);
  1244. set_pgd(&swapper_pg_dir[KERNEL_PGD_BOUNDARY],
  1245. __pgd(__pa(level2_kernel_pgt) | _PAGE_PRESENT));
  1246. set_page_prot(level2_kernel_pgt, PAGE_KERNEL_RO);
  1247. set_page_prot(swapper_pg_dir, PAGE_KERNEL_RO);
  1248. set_page_prot(empty_zero_page, PAGE_KERNEL_RO);
  1249. pin_pagetable_pfn(MMUEXT_UNPIN_TABLE, PFN_DOWN(__pa(pgd)));
  1250. xen_write_cr3(__pa(swapper_pg_dir));
  1251. pin_pagetable_pfn(MMUEXT_PIN_L3_TABLE, PFN_DOWN(__pa(swapper_pg_dir)));
  1252. return swapper_pg_dir;
  1253. }
  1254. #endif /* CONFIG_X86_64 */
  1255. /* First C function to be called on Xen boot */
  1256. asmlinkage void __init xen_start_kernel(void)
  1257. {
  1258. pgd_t *pgd;
  1259. if (!xen_start_info)
  1260. return;
  1261. xen_domain_type = XEN_PV_DOMAIN;
  1262. BUG_ON(memcmp(xen_start_info->magic, "xen-3", 5) != 0);
  1263. xen_setup_features();
  1264. /* Install Xen paravirt ops */
  1265. pv_info = xen_info;
  1266. pv_init_ops = xen_init_ops;
  1267. pv_time_ops = xen_time_ops;
  1268. pv_cpu_ops = xen_cpu_ops;
  1269. pv_apic_ops = xen_apic_ops;
  1270. pv_mmu_ops = xen_mmu_ops;
  1271. xen_init_irq_ops();
  1272. if (xen_feature(XENFEAT_mmu_pt_update_preserve_ad)) {
  1273. pv_mmu_ops.ptep_modify_prot_start = xen_ptep_modify_prot_start;
  1274. pv_mmu_ops.ptep_modify_prot_commit = xen_ptep_modify_prot_commit;
  1275. }
  1276. machine_ops = xen_machine_ops;
  1277. #ifdef CONFIG_X86_64
  1278. /* Disable until direct per-cpu data access. */
  1279. have_vcpu_info_placement = 0;
  1280. x86_64_init_pda();
  1281. #endif
  1282. xen_smp_init();
  1283. /* Get mfn list */
  1284. if (!xen_feature(XENFEAT_auto_translated_physmap))
  1285. xen_build_dynamic_phys_to_machine();
  1286. pgd = (pgd_t *)xen_start_info->pt_base;
  1287. /* Prevent unwanted bits from being set in PTEs. */
  1288. __supported_pte_mask &= ~_PAGE_GLOBAL;
  1289. if (!xen_initial_domain())
  1290. __supported_pte_mask &= ~(_PAGE_PWT | _PAGE_PCD);
  1291. /* Don't do the full vcpu_info placement stuff until we have a
  1292. possible map and a non-dummy shared_info. */
  1293. per_cpu(xen_vcpu, 0) = &HYPERVISOR_shared_info->vcpu_info[0];
  1294. xen_raw_console_write("mapping kernel into physical memory\n");
  1295. pgd = xen_setup_kernel_pagetable(pgd, xen_start_info->nr_pages);
  1296. init_mm.pgd = pgd;
  1297. /* keep using Xen gdt for now; no urgent need to change it */
  1298. pv_info.kernel_rpl = 1;
  1299. if (xen_feature(XENFEAT_supervisor_mode_kernel))
  1300. pv_info.kernel_rpl = 0;
  1301. /* set the limit of our address space */
  1302. xen_reserve_top();
  1303. #ifdef CONFIG_X86_32
  1304. /* set up basic CPUID stuff */
  1305. cpu_detect(&new_cpu_data);
  1306. new_cpu_data.hard_math = 1;
  1307. new_cpu_data.x86_capability[0] = cpuid_edx(1);
  1308. #endif
  1309. /* Poke various useful things into boot_params */
  1310. boot_params.hdr.type_of_loader = (9 << 4) | 0;
  1311. boot_params.hdr.ramdisk_image = xen_start_info->mod_start
  1312. ? __pa(xen_start_info->mod_start) : 0;
  1313. boot_params.hdr.ramdisk_size = xen_start_info->mod_len;
  1314. boot_params.hdr.cmd_line_ptr = __pa(xen_start_info->cmd_line);
  1315. if (!xen_initial_domain()) {
  1316. add_preferred_console("xenboot", 0, NULL);
  1317. add_preferred_console("tty", 0, NULL);
  1318. add_preferred_console("hvc", 0, NULL);
  1319. }
  1320. xen_raw_console_write("about to get started...\n");
  1321. /* Start the world */
  1322. #ifdef CONFIG_X86_32
  1323. i386_start_kernel();
  1324. #else
  1325. x86_64_start_reservations((char *)__pa_symbol(&boot_params));
  1326. #endif
  1327. }