enlighten.c 40 KB

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