blob: 65d8d79b46a8467cbc11c4495a160d7b416a0b32 [file] [log] [blame]
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001/*
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
14#include <linux/kernel.h>
15#include <linux/init.h>
16#include <linux/smp.h>
17#include <linux/preempt.h>
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -070018#include <linux/hardirq.h>
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070019#include <linux/percpu.h>
20#include <linux/delay.h>
21#include <linux/start_kernel.h>
22#include <linux/sched.h>
Jeremy Fitzhardinge6cac5a92009-03-29 19:56:29 -070023#include <linux/kprobes.h>
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070024#include <linux/bootmem.h>
25#include <linux/module.h>
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -070026#include <linux/mm.h>
27#include <linux/page-flags.h>
28#include <linux/highmem.h>
Markus Armbrusterb8c2d3d2008-02-27 14:56:35 +010029#include <linux/console.h>
Chris Wright5d990b62009-12-04 12:15:21 -080030#include <linux/pci.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090031#include <linux/gfp.h>
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070032
Jeremy Fitzhardinge1ccbf532009-10-06 15:11:14 -070033#include <xen/xen.h>
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070034#include <xen/interface/xen.h>
Jeremy Fitzhardingeecbf29c2008-12-16 12:37:07 -080035#include <xen/interface/version.h>
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070036#include <xen/interface/physdev.h>
37#include <xen/interface/vcpu.h>
38#include <xen/features.h>
39#include <xen/page.h>
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -070040#include <xen/hvc-console.h>
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070041
42#include <asm/paravirt.h>
Ingo Molnar7b6aa332009-02-17 13:58:15 +010043#include <asm/apic.h>
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070044#include <asm/page.h>
45#include <asm/xen/hypercall.h>
46#include <asm/xen/hypervisor.h>
47#include <asm/fixmap.h>
48#include <asm/processor.h>
Jeremy Fitzhardinge707ebbc2009-03-27 11:29:02 -070049#include <asm/proto.h>
Jeremy Fitzhardinge11539682008-07-08 15:07:16 -070050#include <asm/msr-index.h>
Jeremy Fitzhardinge6cac5a92009-03-29 19:56:29 -070051#include <asm/traps.h>
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070052#include <asm/setup.h>
53#include <asm/desc.h>
Ian Campbell817a8242010-02-26 17:16:00 +000054#include <asm/pgalloc.h>
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070055#include <asm/pgtable.h>
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070056#include <asm/tlbflush.h>
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -070057#include <asm/reboot.h>
Jeremy Fitzhardinge577eebe2009-08-27 12:46:35 -070058#include <asm/stackprotector.h>
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070059
60#include "xen-ops.h"
Jeremy Fitzhardinge3b827c12007-07-17 18:37:04 -070061#include "mmu.h"
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070062#include "multicalls.h"
63
64EXPORT_SYMBOL_GPL(hypercall_page);
65
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070066DEFINE_PER_CPU(struct vcpu_info *, xen_vcpu);
67DEFINE_PER_CPU(struct vcpu_info, xen_vcpu_info);
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -070068
Jeremy Fitzhardinge6e833582008-08-19 13:16:17 -070069enum xen_domain_type xen_domain_type = XEN_NATIVE;
70EXPORT_SYMBOL_GPL(xen_domain_type);
71
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070072struct start_info *xen_start_info;
73EXPORT_SYMBOL_GPL(xen_start_info);
74
Jeremy Fitzhardingea0d695c2008-05-26 23:31:21 +010075struct shared_info xen_dummy_shared_info;
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -070076
Jeremy Fitzhardinge38341432009-02-02 13:55:31 -080077void *xen_initial_gdt;
78
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -070079/*
80 * Point at some empty memory to start with. We map the real shared_info
81 * page as soon as fixmap is up and running.
82 */
Jeremy Fitzhardingea0d695c2008-05-26 23:31:21 +010083struct shared_info *HYPERVISOR_shared_info = (void *)&xen_dummy_shared_info;
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -070084
85/*
86 * Flag to determine whether vcpu info placement is available on all
87 * VCPUs. We assume it is to start with, and then set it to zero on
88 * the first failure. This is because it can succeed on some VCPUs
89 * and not others, since it can involve hypervisor memory allocation,
90 * or because the guest failed to guarantee all the appropriate
91 * constraints on all VCPUs (ie buffer can't cross a page boundary).
92 *
93 * Note that any particular CPU may be using a placed vcpu structure,
94 * but we can only optimise if the all are.
95 *
96 * 0: not available, 1: available
97 */
Jeremy Fitzhardingee4d04072009-02-02 13:55:54 -080098static int have_vcpu_info_placement = 1;
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -070099
Jeremy Fitzhardinge9c7a7942008-05-31 01:33:02 +0100100static void xen_vcpu_setup(int cpu)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700101{
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700102 struct vcpu_register_vcpu_info info;
103 int err;
104 struct vcpu_info *vcpup;
105
Jeremy Fitzhardingea0d695c2008-05-26 23:31:21 +0100106 BUG_ON(HYPERVISOR_shared_info == &xen_dummy_shared_info);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700107 per_cpu(xen_vcpu, cpu) = &HYPERVISOR_shared_info->vcpu_info[cpu];
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700108
109 if (!have_vcpu_info_placement)
110 return; /* already tested, not available */
111
112 vcpup = &per_cpu(xen_vcpu_info, cpu);
113
Jeremy Fitzhardinge9976b392009-02-27 09:19:26 -0800114 info.mfn = arbitrary_virt_to_mfn(vcpup);
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700115 info.offset = offset_in_page(vcpup);
116
Jeremy Fitzhardingee3d26972007-10-16 11:51:31 -0700117 printk(KERN_DEBUG "trying to map vcpu_info %d at %p, mfn %llx, offset %d\n",
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700118 cpu, vcpup, info.mfn, info.offset);
119
120 /* Check to see if the hypervisor will put the vcpu_info
121 structure where we want it, which allows direct access via
122 a percpu-variable. */
123 err = HYPERVISOR_vcpu_op(VCPUOP_register_vcpu_info, cpu, &info);
124
125 if (err) {
126 printk(KERN_DEBUG "register_vcpu_info failed: err=%d\n", err);
127 have_vcpu_info_placement = 0;
128 } else {
129 /* This cpu is using the registered vcpu info, even if
130 later ones fail to. */
131 per_cpu(xen_vcpu, cpu) = vcpup;
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700132
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700133 printk(KERN_DEBUG "cpu %d using vcpu_info at %p\n",
134 cpu, vcpup);
135 }
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700136}
137
Jeremy Fitzhardinge9c7a7942008-05-31 01:33:02 +0100138/*
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 */
143void xen_vcpu_restore(void)
144{
Jeremy Fitzhardinge3905bb22009-11-21 08:46:29 +0800145 int cpu;
Jeremy Fitzhardinge9c7a7942008-05-31 01:33:02 +0100146
Jeremy Fitzhardinge3905bb22009-11-21 08:46:29 +0800147 for_each_online_cpu(cpu) {
148 bool other_cpu = (cpu != smp_processor_id());
Jeremy Fitzhardinge9c7a7942008-05-31 01:33:02 +0100149
Jeremy Fitzhardinge3905bb22009-11-21 08:46:29 +0800150 if (other_cpu &&
151 HYPERVISOR_vcpu_op(VCPUOP_down, cpu, NULL))
152 BUG();
Jeremy Fitzhardinge9c7a7942008-05-31 01:33:02 +0100153
Jeremy Fitzhardinge3905bb22009-11-21 08:46:29 +0800154 xen_setup_runstate_info(cpu);
Ian Campbellbe012922009-11-21 08:35:55 +0800155
Jeremy Fitzhardinge3905bb22009-11-21 08:46:29 +0800156 if (have_vcpu_info_placement)
Jeremy Fitzhardinge9c7a7942008-05-31 01:33:02 +0100157 xen_vcpu_setup(cpu);
158
Jeremy Fitzhardinge3905bb22009-11-21 08:46:29 +0800159 if (other_cpu &&
160 HYPERVISOR_vcpu_op(VCPUOP_up, cpu, NULL))
161 BUG();
Jeremy Fitzhardinge9c7a7942008-05-31 01:33:02 +0100162 }
163}
164
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700165static void __init xen_banner(void)
166{
Jeremy Fitzhardinge95c7c232008-07-15 13:42:34 -0700167 unsigned version = HYPERVISOR_xen_version(XENVER_version, NULL);
168 struct xen_extraversion extra;
169 HYPERVISOR_xen_version(XENVER_extraversion, &extra);
170
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700171 printk(KERN_INFO "Booting paravirtualized kernel on %s\n",
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700172 pv_info.name);
Jeremy Fitzhardinge95c7c232008-07-15 13:42:34 -0700173 printk(KERN_INFO "Xen version: %d.%d%s%s\n",
174 version >> 16, version & 0xffff, extra.extraversion,
Jeremy Fitzhardingee57778a2008-06-16 04:30:02 -0700175 xen_feature(XENFEAT_mmu_pt_update_preserve_ad) ? " (preserve-AD)" : "");
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700176}
177
Jeremy Fitzhardingee826fe12009-03-07 17:09:27 -0800178static __read_mostly unsigned int cpuid_leaf1_edx_mask = ~0;
179static __read_mostly unsigned int cpuid_leaf1_ecx_mask = ~0;
180
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100181static void xen_cpuid(unsigned int *ax, unsigned int *bx,
182 unsigned int *cx, unsigned int *dx)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700183{
Jeremy Fitzhardinge82d64692009-10-22 16:41:15 -0700184 unsigned maskebx = ~0;
Jeremy Fitzhardingee826fe12009-03-07 17:09:27 -0800185 unsigned maskecx = ~0;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700186 unsigned maskedx = ~0;
187
188 /*
189 * Mask out inconvenient features, to try and disable as many
190 * unsupported kernel subsystems as possible.
191 */
Jeremy Fitzhardinge82d64692009-10-22 16:41:15 -0700192 switch (*ax) {
193 case 1:
Jeremy Fitzhardingee826fe12009-03-07 17:09:27 -0800194 maskecx = cpuid_leaf1_ecx_mask;
195 maskedx = cpuid_leaf1_edx_mask;
Jeremy Fitzhardinge82d64692009-10-22 16:41:15 -0700196 break;
197
198 case 0xb:
199 /* Suppress extended topology stuff */
200 maskebx = 0;
201 break;
Jeremy Fitzhardingee826fe12009-03-07 17:09:27 -0800202 }
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700203
204 asm(XEN_EMULATE_PREFIX "cpuid"
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100205 : "=a" (*ax),
206 "=b" (*bx),
207 "=c" (*cx),
208 "=d" (*dx)
209 : "0" (*ax), "2" (*cx));
Jeremy Fitzhardingee826fe12009-03-07 17:09:27 -0800210
Jeremy Fitzhardinge82d64692009-10-22 16:41:15 -0700211 *bx &= maskebx;
Jeremy Fitzhardingee826fe12009-03-07 17:09:27 -0800212 *cx &= maskecx;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100213 *dx &= maskedx;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700214}
215
Jeremy Fitzhardingee826fe12009-03-07 17:09:27 -0800216static __init void xen_init_cpuid_mask(void)
217{
218 unsigned int ax, bx, cx, dx;
219
220 cpuid_leaf1_edx_mask =
221 ~((1 << X86_FEATURE_MCE) | /* disable MCE */
222 (1 << X86_FEATURE_MCA) | /* disable MCA */
223 (1 << X86_FEATURE_ACC)); /* thermal monitoring */
224
225 if (!xen_initial_domain())
226 cpuid_leaf1_edx_mask &=
227 ~((1 << X86_FEATURE_APIC) | /* disable local APIC */
228 (1 << X86_FEATURE_ACPI)); /* disable ACPI */
229
230 ax = 1;
H. Peter Anvin7adb4df2009-08-25 21:06:03 -0700231 cx = 0;
Jeremy Fitzhardingee826fe12009-03-07 17:09:27 -0800232 xen_cpuid(&ax, &bx, &cx, &dx);
233
234 /* cpuid claims we support xsave; try enabling it to see what happens */
235 if (cx & (1 << (X86_FEATURE_XSAVE % 32))) {
236 unsigned long cr4;
237
238 set_in_cr4(X86_CR4_OSXSAVE);
239
240 cr4 = read_cr4();
241
242 if ((cr4 & X86_CR4_OSXSAVE) == 0)
243 cpuid_leaf1_ecx_mask &= ~(1 << (X86_FEATURE_XSAVE % 32));
244
245 clear_in_cr4(X86_CR4_OSXSAVE);
246 }
247}
248
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700249static void xen_set_debugreg(int reg, unsigned long val)
250{
251 HYPERVISOR_set_debugreg(reg, val);
252}
253
254static unsigned long xen_get_debugreg(int reg)
255{
256 return HYPERVISOR_get_debugreg(reg);
257}
258
Jeremy Fitzhardinge224101e2009-02-18 11:18:57 -0800259static void xen_end_context_switch(struct task_struct *next)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700260{
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700261 xen_mc_flush();
Jeremy Fitzhardinge224101e2009-02-18 11:18:57 -0800262 paravirt_end_context_switch(next);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700263}
264
265static unsigned long xen_store_tr(void)
266{
267 return 0;
268}
269
Jeremy Fitzhardingea05d2eb2008-07-27 08:45:02 -0700270/*
Jeremy Fitzhardingecef43bf2008-07-28 13:33:44 -0700271 * Set the page permissions for a particular virtual address. If the
272 * address is a vmalloc mapping (or other non-linear mapping), then
273 * find the linear mapping of the page and also set its protections to
274 * match.
Jeremy Fitzhardingea05d2eb2008-07-27 08:45:02 -0700275 */
276static void set_aliased_prot(void *v, pgprot_t prot)
277{
278 int level;
279 pte_t *ptep;
280 pte_t pte;
281 unsigned long pfn;
282 struct page *page;
283
284 ptep = lookup_address((unsigned long)v, &level);
285 BUG_ON(ptep == NULL);
286
287 pfn = pte_pfn(*ptep);
288 page = pfn_to_page(pfn);
289
290 pte = pfn_pte(pfn, prot);
291
292 if (HYPERVISOR_update_va_mapping((unsigned long)v, pte, 0))
293 BUG();
294
295 if (!PageHighMem(page)) {
296 void *av = __va(PFN_PHYS(pfn));
297
298 if (av != v)
299 if (HYPERVISOR_update_va_mapping((unsigned long)av, pte, 0))
300 BUG();
301 } else
302 kmap_flush_unused();
303}
304
Jeremy Fitzhardinge38ffbe62008-07-23 14:21:18 -0700305static void xen_alloc_ldt(struct desc_struct *ldt, unsigned entries)
306{
Jeremy Fitzhardingea05d2eb2008-07-27 08:45:02 -0700307 const unsigned entries_per_page = PAGE_SIZE / LDT_ENTRY_SIZE;
Jeremy Fitzhardinge38ffbe62008-07-23 14:21:18 -0700308 int i;
309
Jeremy Fitzhardingea05d2eb2008-07-27 08:45:02 -0700310 for(i = 0; i < entries; i += entries_per_page)
311 set_aliased_prot(ldt + i, PAGE_KERNEL_RO);
Jeremy Fitzhardinge38ffbe62008-07-23 14:21:18 -0700312}
313
314static void xen_free_ldt(struct desc_struct *ldt, unsigned entries)
315{
Jeremy Fitzhardingea05d2eb2008-07-27 08:45:02 -0700316 const unsigned entries_per_page = PAGE_SIZE / LDT_ENTRY_SIZE;
Jeremy Fitzhardinge38ffbe62008-07-23 14:21:18 -0700317 int i;
318
Jeremy Fitzhardingea05d2eb2008-07-27 08:45:02 -0700319 for(i = 0; i < entries; i += entries_per_page)
320 set_aliased_prot(ldt + i, PAGE_KERNEL);
Jeremy Fitzhardinge38ffbe62008-07-23 14:21:18 -0700321}
322
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700323static void xen_set_ldt(const void *addr, unsigned entries)
324{
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700325 struct mmuext_op *op;
326 struct multicall_space mcs = xen_mc_entry(sizeof(*op));
327
328 op = mcs.args;
329 op->cmd = MMUEXT_SET_LDT;
Jan Beulich4dbf7af2008-01-30 13:33:14 +0100330 op->arg1.linear_addr = (unsigned long)addr;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700331 op->arg2.nr_ents = entries;
332
333 MULTI_mmuext_op(mcs.mc, op, 1, NULL, DOMID_SELF);
334
335 xen_mc_issue(PARAVIRT_LAZY_CPU);
336}
337
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100338static void xen_load_gdt(const struct desc_ptr *dtr)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700339{
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700340 unsigned long va = dtr->address;
341 unsigned int size = dtr->size + 1;
342 unsigned pages = (size + PAGE_SIZE - 1) / PAGE_SIZE;
Jeremy Fitzhardinge3ce5fa72009-03-04 15:26:00 -0800343 unsigned long frames[pages];
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700344 int f;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700345
Jeremy Fitzhardinge577eebe2009-08-27 12:46:35 -0700346 /*
347 * A GDT can be up to 64k in size, which corresponds to 8192
348 * 8-byte entries, or 16 4k pages..
349 */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700350
351 BUG_ON(size > 65536);
352 BUG_ON(va & ~PAGE_MASK);
353
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700354 for (f = 0; va < dtr->address + size; va += PAGE_SIZE, f++) {
Jeremy Fitzhardinge6ed6bf422009-03-04 13:02:18 -0800355 int level;
Jeremy Fitzhardinge577eebe2009-08-27 12:46:35 -0700356 pte_t *ptep;
Jeremy Fitzhardinge6ed6bf422009-03-04 13:02:18 -0800357 unsigned long pfn, mfn;
358 void *virt;
359
Jeremy Fitzhardinge577eebe2009-08-27 12:46:35 -0700360 /*
361 * The GDT is per-cpu and is in the percpu data area.
362 * That can be virtually mapped, so we need to do a
363 * page-walk to get the underlying MFN for the
364 * hypercall. The page can also be in the kernel's
365 * linear range, so we need to RO that mapping too.
366 */
367 ptep = lookup_address(va, &level);
Jeremy Fitzhardinge6ed6bf422009-03-04 13:02:18 -0800368 BUG_ON(ptep == NULL);
369
370 pfn = pte_pfn(*ptep);
371 mfn = pfn_to_mfn(pfn);
372 virt = __va(PFN_PHYS(pfn));
373
374 frames[f] = mfn;
Jeremy Fitzhardinge9976b392009-02-27 09:19:26 -0800375
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700376 make_lowmem_page_readonly((void *)va);
Jeremy Fitzhardinge6ed6bf422009-03-04 13:02:18 -0800377 make_lowmem_page_readonly(virt);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700378 }
379
Jeremy Fitzhardinge3ce5fa72009-03-04 15:26:00 -0800380 if (HYPERVISOR_set_gdt(frames, size / sizeof(struct desc_struct)))
381 BUG();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700382}
383
Jeremy Fitzhardinge577eebe2009-08-27 12:46:35 -0700384/*
385 * load_gdt for early boot, when the gdt is only mapped once
386 */
387static __init void xen_load_gdt_boot(const struct desc_ptr *dtr)
388{
389 unsigned long va = dtr->address;
390 unsigned int size = dtr->size + 1;
391 unsigned pages = (size + PAGE_SIZE - 1) / PAGE_SIZE;
392 unsigned long frames[pages];
393 int f;
394
395 /*
396 * A GDT can be up to 64k in size, which corresponds to 8192
397 * 8-byte entries, or 16 4k pages..
398 */
399
400 BUG_ON(size > 65536);
401 BUG_ON(va & ~PAGE_MASK);
402
403 for (f = 0; va < dtr->address + size; va += PAGE_SIZE, f++) {
404 pte_t pte;
405 unsigned long pfn, mfn;
406
407 pfn = virt_to_pfn(va);
408 mfn = pfn_to_mfn(pfn);
409
410 pte = pfn_pte(pfn, PAGE_KERNEL_RO);
411
412 if (HYPERVISOR_update_va_mapping((unsigned long)va, pte, 0))
413 BUG();
414
415 frames[f] = mfn;
416 }
417
418 if (HYPERVISOR_set_gdt(frames, size / sizeof(struct desc_struct)))
419 BUG();
420}
421
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700422static void load_TLS_descriptor(struct thread_struct *t,
423 unsigned int cpu, unsigned int i)
424{
425 struct desc_struct *gdt = get_cpu_gdt_table(cpu);
Jeremy Fitzhardinge9976b392009-02-27 09:19:26 -0800426 xmaddr_t maddr = arbitrary_virt_to_machine(&gdt[GDT_ENTRY_TLS_MIN+i]);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700427 struct multicall_space mc = __xen_mc_entry(0);
428
429 MULTI_update_descriptor(mc.mc, maddr.maddr, t->tls_array[i]);
430}
431
432static void xen_load_tls(struct thread_struct *t, unsigned int cpu)
433{
Jeremy Fitzhardinge8b84ad92007-07-17 18:37:06 -0700434 /*
Tejun Heoccbeed32009-02-09 22:17:40 +0900435 * XXX sleazy hack: If we're being called in a lazy-cpu zone
436 * and lazy gs handling is enabled, it means we're in a
437 * context switch, and %gs has just been saved. This means we
438 * can zero it out to prevent faults on exit from the
439 * hypervisor if the next process has no %gs. Either way, it
440 * has been saved, and the new value will get loaded properly.
441 * This will go away as soon as Xen has been modified to not
442 * save/restore %gs for normal hypercalls.
Eduardo Habkost8a954082008-07-08 15:07:10 -0700443 *
444 * On x86_64, this hack is not used for %gs, because gs points
445 * to KERNEL_GS_BASE (and uses it for PDA references), so we
446 * must not zero %gs on x86_64
447 *
448 * For x86_64, we need to zero %fs, otherwise we may get an
449 * exception between the new %fs descriptor being loaded and
450 * %fs being effectively cleared at __switch_to().
Jeremy Fitzhardinge8b84ad92007-07-17 18:37:06 -0700451 */
Eduardo Habkost8a954082008-07-08 15:07:10 -0700452 if (paravirt_get_lazy_mode() == PARAVIRT_LAZY_CPU) {
453#ifdef CONFIG_X86_32
Tejun Heoccbeed32009-02-09 22:17:40 +0900454 lazy_load_gs(0);
Eduardo Habkost8a954082008-07-08 15:07:10 -0700455#else
456 loadsegment(fs, 0);
457#endif
458 }
459
460 xen_mc_batch();
461
462 load_TLS_descriptor(t, cpu, 0);
463 load_TLS_descriptor(t, cpu, 1);
464 load_TLS_descriptor(t, cpu, 2);
465
466 xen_mc_issue(PARAVIRT_LAZY_CPU);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700467}
468
Eduardo Habkosta8fc1082008-07-08 15:07:05 -0700469#ifdef CONFIG_X86_64
470static void xen_load_gs_index(unsigned int idx)
471{
472 if (HYPERVISOR_set_segment_base(SEGBASE_GS_USER_SEL, idx))
473 BUG();
474}
475#endif
476
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700477static void xen_write_ldt_entry(struct desc_struct *dt, int entrynum,
Glauber de Oliveira Costa75b8bb32008-01-30 13:31:13 +0100478 const void *ptr)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700479{
Jeremy Fitzhardingecef43bf2008-07-28 13:33:44 -0700480 xmaddr_t mach_lp = arbitrary_virt_to_machine(&dt[entrynum]);
Glauber de Oliveira Costa75b8bb32008-01-30 13:31:13 +0100481 u64 entry = *(u64 *)ptr;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700482
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700483 preempt_disable();
484
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700485 xen_mc_flush();
486 if (HYPERVISOR_update_descriptor(mach_lp.maddr, entry))
487 BUG();
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700488
489 preempt_enable();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700490}
491
Eduardo Habkoste176d362008-07-08 15:06:59 -0700492static int cvt_gate_to_trap(int vector, const gate_desc *val,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700493 struct trap_info *info)
494{
Jeremy Fitzhardinge6cac5a92009-03-29 19:56:29 -0700495 unsigned long addr;
496
Jeremy Fitzhardinge6d02c422009-03-29 22:57:15 -0700497 if (val->type != GATE_TRAP && val->type != GATE_INTERRUPT)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700498 return 0;
499
500 info->vector = vector;
Jeremy Fitzhardinge6cac5a92009-03-29 19:56:29 -0700501
502 addr = gate_offset(*val);
503#ifdef CONFIG_X86_64
Jeremy Fitzhardingeb80119b2009-04-24 00:22:08 -0700504 /*
505 * Look for known traps using IST, and substitute them
506 * appropriately. The debugger ones are the only ones we care
507 * about. Xen will handle faults like double_fault and
508 * machine_check, so we should never see them. Warn if
509 * there's an unexpected IST-using fault handler.
510 */
Jeremy Fitzhardinge6cac5a92009-03-29 19:56:29 -0700511 if (addr == (unsigned long)debug)
512 addr = (unsigned long)xen_debug;
513 else if (addr == (unsigned long)int3)
514 addr = (unsigned long)xen_int3;
515 else if (addr == (unsigned long)stack_segment)
516 addr = (unsigned long)xen_stack_segment;
Jeremy Fitzhardingeb80119b2009-04-24 00:22:08 -0700517 else if (addr == (unsigned long)double_fault ||
518 addr == (unsigned long)nmi) {
519 /* Don't need to handle these */
520 return 0;
521#ifdef CONFIG_X86_MCE
522 } else if (addr == (unsigned long)machine_check) {
523 return 0;
524#endif
525 } else {
526 /* Some other trap using IST? */
527 if (WARN_ON(val->ist != 0))
528 return 0;
529 }
Jeremy Fitzhardinge6cac5a92009-03-29 19:56:29 -0700530#endif /* CONFIG_X86_64 */
531 info->address = addr;
532
Eduardo Habkoste176d362008-07-08 15:06:59 -0700533 info->cs = gate_segment(*val);
534 info->flags = val->dpl;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700535 /* interrupt gates clear IF */
Jeremy Fitzhardinge6d02c422009-03-29 22:57:15 -0700536 if (val->type == GATE_INTERRUPT)
537 info->flags |= 1 << 2;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700538
539 return 1;
540}
541
542/* Locations of each CPU's IDT */
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100543static DEFINE_PER_CPU(struct desc_ptr, idt_desc);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700544
545/* Set an IDT entry. If the entry is part of the current IDT, then
546 also update Xen. */
Glauber de Oliveira Costa8d947342008-01-30 13:31:12 +0100547static void xen_write_idt_entry(gate_desc *dt, int entrynum, const gate_desc *g)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700548{
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700549 unsigned long p = (unsigned long)&dt[entrynum];
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700550 unsigned long start, end;
551
552 preempt_disable();
553
554 start = __get_cpu_var(idt_desc).address;
555 end = start + __get_cpu_var(idt_desc).size + 1;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700556
557 xen_mc_flush();
558
Glauber de Oliveira Costa8d947342008-01-30 13:31:12 +0100559 native_write_idt_entry(dt, entrynum, g);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700560
561 if (p >= start && (p + 8) <= end) {
562 struct trap_info info[2];
563
564 info[1].address = 0;
565
Eduardo Habkoste176d362008-07-08 15:06:59 -0700566 if (cvt_gate_to_trap(entrynum, g, &info[0]))
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700567 if (HYPERVISOR_set_trap_table(info))
568 BUG();
569 }
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700570
571 preempt_enable();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700572}
573
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100574static void xen_convert_trap_info(const struct desc_ptr *desc,
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700575 struct trap_info *traps)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700576{
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700577 unsigned in, out, count;
578
Eduardo Habkoste176d362008-07-08 15:06:59 -0700579 count = (desc->size+1) / sizeof(gate_desc);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700580 BUG_ON(count > 256);
581
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700582 for (in = out = 0; in < count; in++) {
Eduardo Habkoste176d362008-07-08 15:06:59 -0700583 gate_desc *entry = (gate_desc*)(desc->address) + in;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700584
Eduardo Habkoste176d362008-07-08 15:06:59 -0700585 if (cvt_gate_to_trap(in, entry, &traps[out]))
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700586 out++;
587 }
588 traps[out].address = 0;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700589}
590
591void xen_copy_trap_info(struct trap_info *traps)
592{
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100593 const struct desc_ptr *desc = &__get_cpu_var(idt_desc);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700594
595 xen_convert_trap_info(desc, traps);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700596}
597
598/* Load a new IDT into Xen. In principle this can be per-CPU, so we
599 hold a spinlock to protect the static traps[] array (static because
600 it avoids allocation, and saves stack space). */
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100601static void xen_load_idt(const struct desc_ptr *desc)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700602{
603 static DEFINE_SPINLOCK(lock);
604 static struct trap_info traps[257];
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700605
606 spin_lock(&lock);
607
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700608 __get_cpu_var(idt_desc) = *desc;
609
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700610 xen_convert_trap_info(desc, traps);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700611
612 xen_mc_flush();
613 if (HYPERVISOR_set_trap_table(traps))
614 BUG();
615
616 spin_unlock(&lock);
617}
618
619/* Write a GDT descriptor entry. Ignore LDT descriptors, since
620 they're handled differently. */
621static void xen_write_gdt_entry(struct desc_struct *dt, int entry,
Glauber de Oliveira Costa014b15b2008-01-30 13:31:13 +0100622 const void *desc, int type)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700623{
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700624 preempt_disable();
625
Glauber de Oliveira Costa014b15b2008-01-30 13:31:13 +0100626 switch (type) {
627 case DESC_LDT:
628 case DESC_TSS:
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700629 /* ignore */
630 break;
631
632 default: {
Jeremy Fitzhardinge9976b392009-02-27 09:19:26 -0800633 xmaddr_t maddr = arbitrary_virt_to_machine(&dt[entry]);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700634
635 xen_mc_flush();
Glauber de Oliveira Costa014b15b2008-01-30 13:31:13 +0100636 if (HYPERVISOR_update_descriptor(maddr.maddr, *(u64 *)desc))
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700637 BUG();
638 }
639
640 }
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700641
642 preempt_enable();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700643}
644
Jeremy Fitzhardinge577eebe2009-08-27 12:46:35 -0700645/*
646 * Version of write_gdt_entry for use at early boot-time needed to
647 * update an entry as simply as possible.
648 */
649static __init void xen_write_gdt_entry_boot(struct desc_struct *dt, int entry,
650 const void *desc, int type)
651{
652 switch (type) {
653 case DESC_LDT:
654 case DESC_TSS:
655 /* ignore */
656 break;
657
658 default: {
659 xmaddr_t maddr = virt_to_machine(&dt[entry]);
660
661 if (HYPERVISOR_update_descriptor(maddr.maddr, *(u64 *)desc))
662 dt[entry] = *(struct desc_struct *)desc;
663 }
664
665 }
666}
667
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100668static void xen_load_sp0(struct tss_struct *tss,
Jeremy Fitzhardingea05d2eb2008-07-27 08:45:02 -0700669 struct thread_struct *thread)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700670{
671 struct multicall_space mcs = xen_mc_entry(0);
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100672 MULTI_stack_switch(mcs.mc, __KERNEL_DS, thread->sp0);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700673 xen_mc_issue(PARAVIRT_LAZY_CPU);
674}
675
676static void xen_set_iopl_mask(unsigned mask)
677{
678 struct physdev_set_iopl set_iopl;
679
680 /* Force the change at ring 0. */
681 set_iopl.iopl = (mask == 0) ? 1 : (mask >> 12) & 3;
682 HYPERVISOR_physdev_op(PHYSDEVOP_set_iopl, &set_iopl);
683}
684
685static void xen_io_delay(void)
686{
687}
688
689#ifdef CONFIG_X86_LOCAL_APIC
Suresh Siddhaad66dd32008-07-11 13:11:56 -0700690static u32 xen_apic_read(u32 reg)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700691{
692 return 0;
693}
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700694
Suresh Siddhaad66dd32008-07-11 13:11:56 -0700695static void xen_apic_write(u32 reg, u32 val)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700696{
697 /* Warn to see if there's any stray references */
698 WARN_ON(1);
699}
Suresh Siddhaad66dd32008-07-11 13:11:56 -0700700
Suresh Siddhaad66dd32008-07-11 13:11:56 -0700701static u64 xen_apic_icr_read(void)
702{
703 return 0;
704}
705
706static void xen_apic_icr_write(u32 low, u32 id)
707{
708 /* Warn to see if there's any stray references */
709 WARN_ON(1);
710}
711
712static void xen_apic_wait_icr_idle(void)
713{
714 return;
715}
716
Yinghai Lu94a8c3c2008-07-13 22:19:35 -0700717static u32 xen_safe_apic_wait_icr_idle(void)
718{
719 return 0;
720}
721
Yinghai Luc1eeb2d2009-02-16 23:02:14 -0800722static void set_xen_basic_apic_ops(void)
723{
724 apic->read = xen_apic_read;
725 apic->write = xen_apic_write;
726 apic->icr_read = xen_apic_icr_read;
727 apic->icr_write = xen_apic_icr_write;
728 apic->wait_icr_idle = xen_apic_wait_icr_idle;
729 apic->safe_wait_icr_idle = xen_safe_apic_wait_icr_idle;
730}
Suresh Siddhaad66dd32008-07-11 13:11:56 -0700731
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700732#endif
733
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700734
Jeremy Fitzhardinge7b1333a2008-05-26 23:31:01 +0100735static void xen_clts(void)
736{
737 struct multicall_space mcs;
738
739 mcs = xen_mc_entry(0);
740
741 MULTI_fpu_taskswitch(mcs.mc, 0);
742
743 xen_mc_issue(PARAVIRT_LAZY_CPU);
744}
745
Jeremy Fitzhardingea789ed52009-04-24 00:26:50 -0700746static DEFINE_PER_CPU(unsigned long, xen_cr0_value);
747
748static unsigned long xen_read_cr0(void)
749{
750 unsigned long cr0 = percpu_read(xen_cr0_value);
751
752 if (unlikely(cr0 == 0)) {
753 cr0 = native_read_cr0();
754 percpu_write(xen_cr0_value, cr0);
755 }
756
757 return cr0;
758}
759
Jeremy Fitzhardinge7b1333a2008-05-26 23:31:01 +0100760static void xen_write_cr0(unsigned long cr0)
761{
762 struct multicall_space mcs;
763
Jeremy Fitzhardingea789ed52009-04-24 00:26:50 -0700764 percpu_write(xen_cr0_value, cr0);
765
Jeremy Fitzhardinge7b1333a2008-05-26 23:31:01 +0100766 /* Only pay attention to cr0.TS; everything else is
767 ignored. */
768 mcs = xen_mc_entry(0);
769
770 MULTI_fpu_taskswitch(mcs.mc, (cr0 & X86_CR0_TS) != 0);
771
772 xen_mc_issue(PARAVIRT_LAZY_CPU);
773}
774
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700775static void xen_write_cr4(unsigned long cr4)
776{
Jeremy Fitzhardinge2956a352008-05-26 23:31:04 +0100777 cr4 &= ~X86_CR4_PGE;
778 cr4 &= ~X86_CR4_PSE;
779
780 native_write_cr4(cr4);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700781}
782
Jeremy Fitzhardinge11539682008-07-08 15:07:16 -0700783static int xen_write_msr_safe(unsigned int msr, unsigned low, unsigned high)
784{
785 int ret;
786
787 ret = 0;
788
Tejf63c2f22008-12-16 11:56:06 -0800789 switch (msr) {
Jeremy Fitzhardinge11539682008-07-08 15:07:16 -0700790#ifdef CONFIG_X86_64
791 unsigned which;
792 u64 base;
793
794 case MSR_FS_BASE: which = SEGBASE_FS; goto set;
795 case MSR_KERNEL_GS_BASE: which = SEGBASE_GS_USER; goto set;
796 case MSR_GS_BASE: which = SEGBASE_GS_KERNEL; goto set;
797
798 set:
799 base = ((u64)high << 32) | low;
800 if (HYPERVISOR_set_segment_base(which, base) != 0)
H. Peter Anvin0cc02132009-08-31 14:23:29 -0700801 ret = -EIO;
Jeremy Fitzhardinge11539682008-07-08 15:07:16 -0700802 break;
803#endif
Jeremy Fitzhardinged89961e2008-07-24 13:48:58 -0700804
805 case MSR_STAR:
806 case MSR_CSTAR:
807 case MSR_LSTAR:
808 case MSR_SYSCALL_MASK:
809 case MSR_IA32_SYSENTER_CS:
810 case MSR_IA32_SYSENTER_ESP:
811 case MSR_IA32_SYSENTER_EIP:
812 /* Fast syscall setup is all done in hypercalls, so
813 these are all ignored. Stub them out here to stop
814 Xen console noise. */
815 break;
816
Jeremy Fitzhardinge11539682008-07-08 15:07:16 -0700817 default:
818 ret = native_write_msr_safe(msr, low, high);
819 }
820
821 return ret;
822}
823
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +0100824void xen_setup_shared_info(void)
Jeremy Fitzhardinge2e8fe712008-03-17 16:36:53 -0700825{
826 if (!xen_feature(XENFEAT_auto_translated_physmap)) {
Jeremy Fitzhardinge15664f92008-07-08 15:06:47 -0700827 set_fixmap(FIX_PARAVIRT_BOOTMAP,
828 xen_start_info->shared_info);
Jeremy Fitzhardinge2e8fe712008-03-17 16:36:53 -0700829
Jeremy Fitzhardinge15664f92008-07-08 15:06:47 -0700830 HYPERVISOR_shared_info =
831 (struct shared_info *)fix_to_virt(FIX_PARAVIRT_BOOTMAP);
Jeremy Fitzhardinge2e8fe712008-03-17 16:36:53 -0700832 } else
833 HYPERVISOR_shared_info =
834 (struct shared_info *)__va(xen_start_info->shared_info);
835
836#ifndef CONFIG_SMP
837 /* In UP this is as good a place as any to set up shared info */
838 xen_setup_vcpu_info_placement();
839#endif
Jeremy Fitzhardinged5edbc12008-05-26 23:31:22 +0100840
841 xen_setup_mfn_list_list();
Jeremy Fitzhardinge2e8fe712008-03-17 16:36:53 -0700842}
843
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700844/* This is called once we have the cpu_possible_map */
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +0100845void xen_setup_vcpu_info_placement(void)
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700846{
847 int cpu;
848
849 for_each_possible_cpu(cpu)
850 xen_vcpu_setup(cpu);
851
852 /* xen_vcpu_setup managed to place the vcpu_info within the
853 percpu area for all cpus, so make use of it */
854 if (have_vcpu_info_placement) {
855 printk(KERN_INFO "Xen: using vcpu_info placement\n");
856
Jeremy Fitzhardingeecb93d12009-01-28 14:35:05 -0800857 pv_irq_ops.save_fl = __PV_IS_CALLEE_SAVE(xen_save_fl_direct);
858 pv_irq_ops.restore_fl = __PV_IS_CALLEE_SAVE(xen_restore_fl_direct);
859 pv_irq_ops.irq_disable = __PV_IS_CALLEE_SAVE(xen_irq_disable_direct);
860 pv_irq_ops.irq_enable = __PV_IS_CALLEE_SAVE(xen_irq_enable_direct);
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700861 pv_mmu_ops.read_cr2 = xen_read_cr2_direct;
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700862 }
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700863}
864
Andi Kleenab144f52007-08-10 22:31:03 +0200865static unsigned xen_patch(u8 type, u16 clobbers, void *insnbuf,
866 unsigned long addr, unsigned len)
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700867{
868 char *start, *end, *reloc;
869 unsigned ret;
870
871 start = end = reloc = NULL;
872
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700873#define SITE(op, x) \
874 case PARAVIRT_PATCH(op.x): \
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700875 if (have_vcpu_info_placement) { \
876 start = (char *)xen_##x##_direct; \
877 end = xen_##x##_direct_end; \
878 reloc = xen_##x##_direct_reloc; \
879 } \
880 goto patch_site
881
882 switch (type) {
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700883 SITE(pv_irq_ops, irq_enable);
884 SITE(pv_irq_ops, irq_disable);
885 SITE(pv_irq_ops, save_fl);
886 SITE(pv_irq_ops, restore_fl);
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700887#undef SITE
888
889 patch_site:
890 if (start == NULL || (end-start) > len)
891 goto default_patch;
892
Andi Kleenab144f52007-08-10 22:31:03 +0200893 ret = paravirt_patch_insns(insnbuf, len, start, end);
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700894
895 /* Note: because reloc is assigned from something that
896 appears to be an array, gcc assumes it's non-null,
897 but doesn't know its relationship with start and
898 end. */
899 if (reloc > start && reloc < end) {
900 int reloc_off = reloc - start;
Andi Kleenab144f52007-08-10 22:31:03 +0200901 long *relocp = (long *)(insnbuf + reloc_off);
902 long delta = start - (char *)addr;
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700903
904 *relocp += delta;
905 }
906 break;
907
908 default_patch:
909 default:
Andi Kleenab144f52007-08-10 22:31:03 +0200910 ret = paravirt_patch_default(type, clobbers, insnbuf,
911 addr, len);
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700912 break;
913 }
914
915 return ret;
916}
917
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700918static const struct pv_info xen_info __initdata = {
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700919 .paravirt_enabled = 1,
920 .shared_kernel_pmd = 0,
921
922 .name = "Xen",
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700923};
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700924
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700925static const struct pv_init_ops xen_init_ops __initdata = {
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700926 .patch = xen_patch,
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700927};
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700928
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700929static const struct pv_time_ops xen_time_ops __initdata = {
Jeremy Fitzhardingeab550282007-07-17 18:37:05 -0700930 .sched_clock = xen_sched_clock,
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700931};
Jeremy Fitzhardinge15c84732007-07-17 18:37:05 -0700932
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700933static const struct pv_cpu_ops xen_cpu_ops __initdata = {
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700934 .cpuid = xen_cpuid,
935
936 .set_debugreg = xen_set_debugreg,
937 .get_debugreg = xen_get_debugreg,
938
Jeremy Fitzhardinge7b1333a2008-05-26 23:31:01 +0100939 .clts = xen_clts,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700940
Jeremy Fitzhardingea789ed52009-04-24 00:26:50 -0700941 .read_cr0 = xen_read_cr0,
Jeremy Fitzhardinge7b1333a2008-05-26 23:31:01 +0100942 .write_cr0 = xen_write_cr0,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700943
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700944 .read_cr4 = native_read_cr4,
945 .read_cr4_safe = native_read_cr4_safe,
946 .write_cr4 = xen_write_cr4,
947
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700948 .wbinvd = native_wbinvd,
949
950 .read_msr = native_read_msr_safe,
Jeremy Fitzhardinge11539682008-07-08 15:07:16 -0700951 .write_msr = xen_write_msr_safe,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700952 .read_tsc = native_read_tsc,
953 .read_pmc = native_read_pmc,
954
Jeremy Fitzhardinge81e103f2008-04-17 17:40:51 +0200955 .iret = xen_iret,
Jeremy Fitzhardinged75cd22f2008-06-25 00:19:26 -0400956 .irq_enable_sysexit = xen_sysexit,
Jeremy Fitzhardinge6fcac6d2008-07-08 15:07:14 -0700957#ifdef CONFIG_X86_64
958 .usergs_sysret32 = xen_sysret32,
959 .usergs_sysret64 = xen_sysret64,
960#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700961
962 .load_tr_desc = paravirt_nop,
963 .set_ldt = xen_set_ldt,
964 .load_gdt = xen_load_gdt,
965 .load_idt = xen_load_idt,
966 .load_tls = xen_load_tls,
Eduardo Habkosta8fc1082008-07-08 15:07:05 -0700967#ifdef CONFIG_X86_64
968 .load_gs_index = xen_load_gs_index,
969#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700970
Jeremy Fitzhardinge38ffbe62008-07-23 14:21:18 -0700971 .alloc_ldt = xen_alloc_ldt,
972 .free_ldt = xen_free_ldt,
973
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700974 .store_gdt = native_store_gdt,
975 .store_idt = native_store_idt,
976 .store_tr = xen_store_tr,
977
978 .write_ldt_entry = xen_write_ldt_entry,
979 .write_gdt_entry = xen_write_gdt_entry,
980 .write_idt_entry = xen_write_idt_entry,
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100981 .load_sp0 = xen_load_sp0,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700982
983 .set_iopl_mask = xen_set_iopl_mask,
984 .io_delay = xen_io_delay,
985
Jeremy Fitzhardinge952d1d72008-07-08 15:07:01 -0700986 /* Xen takes care of %gs when switching to usermode for us */
987 .swapgs = paravirt_nop,
988
Jeremy Fitzhardinge224101e2009-02-18 11:18:57 -0800989 .start_context_switch = paravirt_start_context_switch,
990 .end_context_switch = xen_end_context_switch,
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700991};
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700992
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700993static const struct pv_apic_ops xen_apic_ops __initdata = {
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700994#ifdef CONFIG_X86_LOCAL_APIC
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700995 .startup_ipi_hook = paravirt_nop,
996#endif
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700997};
998
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -0700999static void xen_reboot(int reason)
1000{
Jeremy Fitzhardinge349c7092008-05-26 23:31:02 +01001001 struct sched_shutdown r = { .reason = reason };
1002
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -07001003#ifdef CONFIG_SMP
1004 smp_send_stop();
1005#endif
1006
Jeremy Fitzhardinge349c7092008-05-26 23:31:02 +01001007 if (HYPERVISOR_sched_op(SCHEDOP_shutdown, &r))
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -07001008 BUG();
1009}
1010
1011static void xen_restart(char *msg)
1012{
1013 xen_reboot(SHUTDOWN_reboot);
1014}
1015
1016static void xen_emergency_restart(void)
1017{
1018 xen_reboot(SHUTDOWN_reboot);
1019}
1020
1021static void xen_machine_halt(void)
1022{
1023 xen_reboot(SHUTDOWN_poweroff);
1024}
1025
1026static void xen_crash_shutdown(struct pt_regs *regs)
1027{
1028 xen_reboot(SHUTDOWN_crash);
1029}
1030
1031static const struct machine_ops __initdata xen_machine_ops = {
1032 .restart = xen_restart,
1033 .halt = xen_machine_halt,
1034 .power_off = xen_machine_halt,
1035 .shutdown = xen_machine_halt,
1036 .crash_shutdown = xen_crash_shutdown,
1037 .emergency_restart = xen_emergency_restart,
1038};
1039
Jeremy Fitzhardinge577eebe2009-08-27 12:46:35 -07001040/*
1041 * Set up the GDT and segment registers for -fstack-protector. Until
1042 * we do this, we have to be careful not to call any stack-protected
1043 * function, which is most of the kernel.
1044 */
1045static void __init xen_setup_stackprotector(void)
1046{
1047 pv_cpu_ops.write_gdt_entry = xen_write_gdt_entry_boot;
1048 pv_cpu_ops.load_gdt = xen_load_gdt_boot;
1049
1050 setup_stack_canary_segment(0);
1051 switch_to_new_gdt(0);
1052
1053 pv_cpu_ops.write_gdt_entry = xen_write_gdt_entry;
1054 pv_cpu_ops.load_gdt = xen_load_gdt;
1055}
1056
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001057/* First C function to be called on Xen boot */
1058asmlinkage void __init xen_start_kernel(void)
1059{
1060 pgd_t *pgd;
1061
1062 if (!xen_start_info)
1063 return;
1064
Jeremy Fitzhardinge6e833582008-08-19 13:16:17 -07001065 xen_domain_type = XEN_PV_DOMAIN;
1066
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001067 /* Install Xen paravirt ops */
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001068 pv_info = xen_info;
1069 pv_init_ops = xen_init_ops;
1070 pv_time_ops = xen_time_ops;
1071 pv_cpu_ops = xen_cpu_ops;
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001072 pv_apic_ops = xen_apic_ops;
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001073
Thomas Gleixner6b18ae32009-08-20 10:19:54 +02001074 x86_init.resources.memory_setup = xen_memory_setup;
Thomas Gleixner42bbdb42009-08-20 13:04:10 +02001075 x86_init.oem.arch_setup = xen_arch_setup;
Thomas Gleixner6f30c1a2009-08-20 13:19:57 +02001076 x86_init.oem.banner = xen_banner;
Thomas Gleixner845b3942009-08-19 15:37:03 +02001077
1078 x86_init.timers.timer_init = xen_time_init;
Thomas Gleixner736deca2009-08-19 12:35:53 +02001079 x86_init.timers.setup_percpu_clockev = x86_init_noop;
1080 x86_cpuinit.setup_percpu_clockev = x86_init_noop;
Thomas Gleixner6b18ae32009-08-20 10:19:54 +02001081
Thomas Gleixner2d826402009-08-20 17:06:25 +02001082 x86_platform.calibrate_tsc = xen_tsc_khz;
Feng Tang7bd867d2009-09-10 10:48:56 +08001083 x86_platform.get_wallclock = xen_get_wallclock;
1084 x86_platform.set_wallclock = xen_set_wallclock;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001085
Jeremy Fitzhardingece2eef32009-08-17 12:26:53 -07001086 /*
Jeremy Fitzhardinge577eebe2009-08-27 12:46:35 -07001087 * Set up some pagetable state before starting to set any ptes.
Jeremy Fitzhardingece2eef32009-08-17 12:26:53 -07001088 */
Jeremy Fitzhardinge577eebe2009-08-27 12:46:35 -07001089
Jeremy Fitzhardinge973df352009-10-27 16:54:19 -07001090 xen_init_mmu_ops();
1091
Jeremy Fitzhardinge577eebe2009-08-27 12:46:35 -07001092 /* Prevent unwanted bits from being set in PTEs. */
1093 __supported_pte_mask &= ~_PAGE_GLOBAL;
1094 if (!xen_initial_domain())
1095 __supported_pte_mask &= ~(_PAGE_PWT | _PAGE_PCD);
1096
1097 __supported_pte_mask |= _PAGE_IOMAP;
1098
Ian Campbell817a8242010-02-26 17:16:00 +00001099 /*
1100 * Prevent page tables from being allocated in highmem, even
1101 * if CONFIG_HIGHPTE is enabled.
1102 */
1103 __userpte_alloc_gfp &= ~__GFP_HIGHMEM;
1104
Jeremy Fitzhardingeb75fe4e2009-09-21 13:34:06 -07001105 /* Work out if we support NX */
H. Peter Anvin4763ed42009-11-13 15:28:16 -08001106 x86_configure_nx();
Jeremy Fitzhardingeb75fe4e2009-09-21 13:34:06 -07001107
Jeremy Fitzhardinge577eebe2009-08-27 12:46:35 -07001108 xen_setup_features();
1109
1110 /* Get mfn list */
1111 if (!xen_feature(XENFEAT_auto_translated_physmap))
1112 xen_build_dynamic_phys_to_machine();
1113
1114 /*
1115 * Set up kernel GDT and segment registers, mainly so that
1116 * -fstack-protector code can be executed.
1117 */
1118 xen_setup_stackprotector();
Jeremy Fitzhardinge0d1edf42008-07-28 11:53:57 -07001119
Jeremy Fitzhardingece2eef32009-08-17 12:26:53 -07001120 xen_init_irq_ops();
Jeremy Fitzhardingee826fe12009-03-07 17:09:27 -08001121 xen_init_cpuid_mask();
1122
Yinghai Lu94a8c3c2008-07-13 22:19:35 -07001123#ifdef CONFIG_X86_LOCAL_APIC
Suresh Siddhaad66dd32008-07-11 13:11:56 -07001124 /*
Yinghai Lu94a8c3c2008-07-13 22:19:35 -07001125 * set up the basic apic ops.
Suresh Siddhaad66dd32008-07-11 13:11:56 -07001126 */
Yinghai Luc1eeb2d2009-02-16 23:02:14 -08001127 set_xen_basic_apic_ops();
Suresh Siddhaad66dd32008-07-11 13:11:56 -07001128#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001129
Jeremy Fitzhardingee57778a2008-06-16 04:30:02 -07001130 if (xen_feature(XENFEAT_mmu_pt_update_preserve_ad)) {
1131 pv_mmu_ops.ptep_modify_prot_start = xen_ptep_modify_prot_start;
1132 pv_mmu_ops.ptep_modify_prot_commit = xen_ptep_modify_prot_commit;
1133 }
1134
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -07001135 machine_ops = xen_machine_ops;
1136
Jeremy Fitzhardinge38341432009-02-02 13:55:31 -08001137 /*
1138 * The only reliable way to retain the initial address of the
1139 * percpu gdt_page is to remember it here, so we can go and
1140 * mark it RW later, when the initial percpu area is freed.
1141 */
1142 xen_initial_gdt = &per_cpu(gdt_page, 0);
Jeremy Fitzhardinge795f99b2009-01-30 17:47:54 +09001143
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -07001144 xen_smp_init();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001145
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001146 pgd = (pgd_t *)xen_start_info->pt_base;
1147
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001148 /* Don't do the full vcpu_info placement stuff until we have a
1149 possible map and a non-dummy shared_info. */
1150 per_cpu(xen_vcpu, 0) = &HYPERVISOR_shared_info->vcpu_info[0];
1151
Jeremy Fitzhardinge55d80852009-02-25 09:42:25 -08001152 local_irq_disable();
1153 early_boot_irqs_off();
1154
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001155 xen_raw_console_write("mapping kernel into physical memory\n");
Jeremy Fitzhardinged114e1982008-07-08 15:06:52 -07001156 pgd = xen_setup_kernel_pagetable(pgd, xen_start_info->nr_pages);
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001157
1158 init_mm.pgd = pgd;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001159
1160 /* keep using Xen gdt for now; no urgent need to change it */
1161
Ian Campbelle68266b2010-01-13 10:16:08 +00001162#ifdef CONFIG_X86_32
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001163 pv_info.kernel_rpl = 1;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001164 if (xen_feature(XENFEAT_supervisor_mode_kernel))
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001165 pv_info.kernel_rpl = 0;
Ian Campbelle68266b2010-01-13 10:16:08 +00001166#else
1167 pv_info.kernel_rpl = 0;
1168#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001169
1170 /* set the limit of our address space */
Jeremy Fitzhardingefb1d8402007-10-16 11:51:31 -07001171 xen_reserve_top();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001172
Jeremy Fitzhardinge7d087b62008-07-08 15:06:48 -07001173#ifdef CONFIG_X86_32
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001174 /* set up basic CPUID stuff */
1175 cpu_detect(&new_cpu_data);
1176 new_cpu_data.hard_math = 1;
Jeremy Fitzhardinged560bc62009-08-25 12:53:02 -07001177 new_cpu_data.wp_works_ok = 1;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001178 new_cpu_data.x86_capability[0] = cpuid_edx(1);
Jeremy Fitzhardinge7d087b62008-07-08 15:06:48 -07001179#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001180
1181 /* Poke various useful things into boot_params */
H. Peter Anvin30c82642007-10-15 17:13:22 -07001182 boot_params.hdr.type_of_loader = (9 << 4) | 0;
1183 boot_params.hdr.ramdisk_image = xen_start_info->mod_start
1184 ? __pa(xen_start_info->mod_start) : 0;
1185 boot_params.hdr.ramdisk_size = xen_start_info->mod_len;
Jeremy Fitzhardingeb7c3c5c2008-07-08 15:07:07 -07001186 boot_params.hdr.cmd_line_ptr = __pa(xen_start_info->cmd_line);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001187
Jeremy Fitzhardinge6e833582008-08-19 13:16:17 -07001188 if (!xen_initial_domain()) {
Jeremy Fitzhardinge83abc702008-05-26 23:31:12 +01001189 add_preferred_console("xenboot", 0, NULL);
Markus Armbruster9e124fe2008-05-26 23:31:07 +01001190 add_preferred_console("tty", 0, NULL);
Markus Armbrusterb8c2d3d2008-02-27 14:56:35 +01001191 add_preferred_console("hvc", 0, NULL);
Chris Wright5d990b62009-12-04 12:15:21 -08001192 } else {
1193 /* Make sure ACS will be enabled */
1194 pci_request_acs();
Markus Armbruster9e124fe2008-05-26 23:31:07 +01001195 }
Chris Wright5d990b62009-12-04 12:15:21 -08001196
Markus Armbrusterb8c2d3d2008-02-27 14:56:35 +01001197
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001198 xen_raw_console_write("about to get started...\n");
1199
Jeremy Fitzhardinge499d19b2009-11-24 09:38:25 -08001200 xen_setup_runstate_info(0);
1201
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001202 /* Start the world */
Jeremy Fitzhardingef5d36de2008-07-08 15:06:39 -07001203#ifdef CONFIG_X86_32
Yinghai Luf0d43102008-05-29 12:56:36 -07001204 i386_start_kernel();
Jeremy Fitzhardingef5d36de2008-07-08 15:06:39 -07001205#else
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001206 x86_64_start_reservations((char *)__pa_symbol(&boot_params));
Jeremy Fitzhardingef5d36de2008-07-08 15:06:39 -07001207#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001208}