blob: 2b26dd5930c6e82e87f0e20505ab5954e6213a83 [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>
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070031
Jeremy Fitzhardinge1ccbf532009-10-06 15:11:14 -070032#include <xen/xen.h>
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070033#include <xen/interface/xen.h>
Jeremy Fitzhardingeecbf29c2008-12-16 12:37:07 -080034#include <xen/interface/version.h>
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070035#include <xen/interface/physdev.h>
36#include <xen/interface/vcpu.h>
37#include <xen/features.h>
38#include <xen/page.h>
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -070039#include <xen/hvc-console.h>
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070040
41#include <asm/paravirt.h>
Ingo Molnar7b6aa332009-02-17 13:58:15 +010042#include <asm/apic.h>
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070043#include <asm/page.h>
44#include <asm/xen/hypercall.h>
45#include <asm/xen/hypervisor.h>
46#include <asm/fixmap.h>
47#include <asm/processor.h>
Jeremy Fitzhardinge707ebbc2009-03-27 11:29:02 -070048#include <asm/proto.h>
Jeremy Fitzhardinge11539682008-07-08 15:07:16 -070049#include <asm/msr-index.h>
Jeremy Fitzhardinge6cac5a92009-03-29 19:56:29 -070050#include <asm/traps.h>
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070051#include <asm/setup.h>
52#include <asm/desc.h>
53#include <asm/pgtable.h>
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070054#include <asm/tlbflush.h>
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -070055#include <asm/reboot.h>
Jeremy Fitzhardinge577eebe2009-08-27 12:46:35 -070056#include <asm/stackprotector.h>
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070057
58#include "xen-ops.h"
Jeremy Fitzhardinge3b827c12007-07-17 18:37:04 -070059#include "mmu.h"
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070060#include "multicalls.h"
61
62EXPORT_SYMBOL_GPL(hypercall_page);
63
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070064DEFINE_PER_CPU(struct vcpu_info *, xen_vcpu);
65DEFINE_PER_CPU(struct vcpu_info, xen_vcpu_info);
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -070066
Jeremy Fitzhardinge6e833582008-08-19 13:16:17 -070067enum xen_domain_type xen_domain_type = XEN_NATIVE;
68EXPORT_SYMBOL_GPL(xen_domain_type);
69
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070070struct start_info *xen_start_info;
71EXPORT_SYMBOL_GPL(xen_start_info);
72
Jeremy Fitzhardingea0d695c2008-05-26 23:31:21 +010073struct shared_info xen_dummy_shared_info;
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -070074
Jeremy Fitzhardinge38341432009-02-02 13:55:31 -080075void *xen_initial_gdt;
76
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -070077/*
78 * Point at some empty memory to start with. We map the real shared_info
79 * page as soon as fixmap is up and running.
80 */
Jeremy Fitzhardingea0d695c2008-05-26 23:31:21 +010081struct shared_info *HYPERVISOR_shared_info = (void *)&xen_dummy_shared_info;
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -070082
83/*
84 * Flag to determine whether vcpu info placement is available on all
85 * VCPUs. We assume it is to start with, and then set it to zero on
86 * the first failure. This is because it can succeed on some VCPUs
87 * and not others, since it can involve hypervisor memory allocation,
88 * or because the guest failed to guarantee all the appropriate
89 * constraints on all VCPUs (ie buffer can't cross a page boundary).
90 *
91 * Note that any particular CPU may be using a placed vcpu structure,
92 * but we can only optimise if the all are.
93 *
94 * 0: not available, 1: available
95 */
Jeremy Fitzhardingee4d04072009-02-02 13:55:54 -080096static int have_vcpu_info_placement = 1;
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -070097
Jeremy Fitzhardinge9c7a7942008-05-31 01:33:02 +010098static void xen_vcpu_setup(int cpu)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070099{
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700100 struct vcpu_register_vcpu_info info;
101 int err;
102 struct vcpu_info *vcpup;
103
Jeremy Fitzhardingea0d695c2008-05-26 23:31:21 +0100104 BUG_ON(HYPERVISOR_shared_info == &xen_dummy_shared_info);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700105 per_cpu(xen_vcpu, cpu) = &HYPERVISOR_shared_info->vcpu_info[cpu];
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700106
107 if (!have_vcpu_info_placement)
108 return; /* already tested, not available */
109
110 vcpup = &per_cpu(xen_vcpu_info, cpu);
111
Jeremy Fitzhardinge9976b392009-02-27 09:19:26 -0800112 info.mfn = arbitrary_virt_to_mfn(vcpup);
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700113 info.offset = offset_in_page(vcpup);
114
Jeremy Fitzhardingee3d26972007-10-16 11:51:31 -0700115 printk(KERN_DEBUG "trying to map vcpu_info %d at %p, mfn %llx, offset %d\n",
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700116 cpu, vcpup, info.mfn, info.offset);
117
118 /* Check to see if the hypervisor will put the vcpu_info
119 structure where we want it, which allows direct access via
120 a percpu-variable. */
121 err = HYPERVISOR_vcpu_op(VCPUOP_register_vcpu_info, cpu, &info);
122
123 if (err) {
124 printk(KERN_DEBUG "register_vcpu_info failed: err=%d\n", err);
125 have_vcpu_info_placement = 0;
126 } else {
127 /* This cpu is using the registered vcpu info, even if
128 later ones fail to. */
129 per_cpu(xen_vcpu, cpu) = vcpup;
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700130
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700131 printk(KERN_DEBUG "cpu %d using vcpu_info at %p\n",
132 cpu, vcpup);
133 }
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700134}
135
Jeremy Fitzhardinge9c7a7942008-05-31 01:33:02 +0100136/*
137 * On restore, set the vcpu placement up again.
138 * If it fails, then we're in a bad state, since
139 * we can't back out from using it...
140 */
141void xen_vcpu_restore(void)
142{
Jeremy Fitzhardinge3905bb22009-11-21 08:46:29 +0800143 int cpu;
Jeremy Fitzhardinge9c7a7942008-05-31 01:33:02 +0100144
Jeremy Fitzhardinge3905bb22009-11-21 08:46:29 +0800145 for_each_online_cpu(cpu) {
146 bool other_cpu = (cpu != smp_processor_id());
Jeremy Fitzhardinge9c7a7942008-05-31 01:33:02 +0100147
Jeremy Fitzhardinge3905bb22009-11-21 08:46:29 +0800148 if (other_cpu &&
149 HYPERVISOR_vcpu_op(VCPUOP_down, cpu, NULL))
150 BUG();
Jeremy Fitzhardinge9c7a7942008-05-31 01:33:02 +0100151
Jeremy Fitzhardinge3905bb22009-11-21 08:46:29 +0800152 xen_setup_runstate_info(cpu);
Ian Campbellbe012922009-11-21 08:35:55 +0800153
Jeremy Fitzhardinge3905bb22009-11-21 08:46:29 +0800154 if (have_vcpu_info_placement)
Jeremy Fitzhardinge9c7a7942008-05-31 01:33:02 +0100155 xen_vcpu_setup(cpu);
156
Jeremy Fitzhardinge3905bb22009-11-21 08:46:29 +0800157 if (other_cpu &&
158 HYPERVISOR_vcpu_op(VCPUOP_up, cpu, NULL))
159 BUG();
Jeremy Fitzhardinge9c7a7942008-05-31 01:33:02 +0100160 }
161}
162
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700163static void __init xen_banner(void)
164{
Jeremy Fitzhardinge95c7c232008-07-15 13:42:34 -0700165 unsigned version = HYPERVISOR_xen_version(XENVER_version, NULL);
166 struct xen_extraversion extra;
167 HYPERVISOR_xen_version(XENVER_extraversion, &extra);
168
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700169 printk(KERN_INFO "Booting paravirtualized kernel on %s\n",
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700170 pv_info.name);
Jeremy Fitzhardinge95c7c232008-07-15 13:42:34 -0700171 printk(KERN_INFO "Xen version: %d.%d%s%s\n",
172 version >> 16, version & 0xffff, extra.extraversion,
Jeremy Fitzhardingee57778a2008-06-16 04:30:02 -0700173 xen_feature(XENFEAT_mmu_pt_update_preserve_ad) ? " (preserve-AD)" : "");
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700174}
175
Jeremy Fitzhardingee826fe12009-03-07 17:09:27 -0800176static __read_mostly unsigned int cpuid_leaf1_edx_mask = ~0;
177static __read_mostly unsigned int cpuid_leaf1_ecx_mask = ~0;
178
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100179static void xen_cpuid(unsigned int *ax, unsigned int *bx,
180 unsigned int *cx, unsigned int *dx)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700181{
Jeremy Fitzhardinge82d64692009-10-22 16:41:15 -0700182 unsigned maskebx = ~0;
Jeremy Fitzhardingee826fe12009-03-07 17:09:27 -0800183 unsigned maskecx = ~0;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700184 unsigned maskedx = ~0;
185
186 /*
187 * Mask out inconvenient features, to try and disable as many
188 * unsupported kernel subsystems as possible.
189 */
Jeremy Fitzhardinge82d64692009-10-22 16:41:15 -0700190 switch (*ax) {
191 case 1:
Jeremy Fitzhardingee826fe12009-03-07 17:09:27 -0800192 maskecx = cpuid_leaf1_ecx_mask;
193 maskedx = cpuid_leaf1_edx_mask;
Jeremy Fitzhardinge82d64692009-10-22 16:41:15 -0700194 break;
195
196 case 0xb:
197 /* Suppress extended topology stuff */
198 maskebx = 0;
199 break;
Jeremy Fitzhardingee826fe12009-03-07 17:09:27 -0800200 }
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700201
202 asm(XEN_EMULATE_PREFIX "cpuid"
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100203 : "=a" (*ax),
204 "=b" (*bx),
205 "=c" (*cx),
206 "=d" (*dx)
207 : "0" (*ax), "2" (*cx));
Jeremy Fitzhardingee826fe12009-03-07 17:09:27 -0800208
Jeremy Fitzhardinge82d64692009-10-22 16:41:15 -0700209 *bx &= maskebx;
Jeremy Fitzhardingee826fe12009-03-07 17:09:27 -0800210 *cx &= maskecx;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100211 *dx &= maskedx;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700212}
213
Jeremy Fitzhardingee826fe12009-03-07 17:09:27 -0800214static __init void xen_init_cpuid_mask(void)
215{
216 unsigned int ax, bx, cx, dx;
217
218 cpuid_leaf1_edx_mask =
219 ~((1 << X86_FEATURE_MCE) | /* disable MCE */
220 (1 << X86_FEATURE_MCA) | /* disable MCA */
221 (1 << X86_FEATURE_ACC)); /* thermal monitoring */
222
223 if (!xen_initial_domain())
224 cpuid_leaf1_edx_mask &=
225 ~((1 << X86_FEATURE_APIC) | /* disable local APIC */
226 (1 << X86_FEATURE_ACPI)); /* disable ACPI */
227
228 ax = 1;
H. Peter Anvin7adb4df2009-08-25 21:06:03 -0700229 cx = 0;
Jeremy Fitzhardingee826fe12009-03-07 17:09:27 -0800230 xen_cpuid(&ax, &bx, &cx, &dx);
231
232 /* cpuid claims we support xsave; try enabling it to see what happens */
233 if (cx & (1 << (X86_FEATURE_XSAVE % 32))) {
234 unsigned long cr4;
235
236 set_in_cr4(X86_CR4_OSXSAVE);
237
238 cr4 = read_cr4();
239
240 if ((cr4 & X86_CR4_OSXSAVE) == 0)
241 cpuid_leaf1_ecx_mask &= ~(1 << (X86_FEATURE_XSAVE % 32));
242
243 clear_in_cr4(X86_CR4_OSXSAVE);
244 }
245}
246
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700247static void xen_set_debugreg(int reg, unsigned long val)
248{
249 HYPERVISOR_set_debugreg(reg, val);
250}
251
252static unsigned long xen_get_debugreg(int reg)
253{
254 return HYPERVISOR_get_debugreg(reg);
255}
256
Jeremy Fitzhardinge224101e2009-02-18 11:18:57 -0800257static void xen_end_context_switch(struct task_struct *next)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700258{
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700259 xen_mc_flush();
Jeremy Fitzhardinge224101e2009-02-18 11:18:57 -0800260 paravirt_end_context_switch(next);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700261}
262
263static unsigned long xen_store_tr(void)
264{
265 return 0;
266}
267
Jeremy Fitzhardingea05d2eb2008-07-27 08:45:02 -0700268/*
Jeremy Fitzhardingecef43bf2008-07-28 13:33:44 -0700269 * Set the page permissions for a particular virtual address. If the
270 * address is a vmalloc mapping (or other non-linear mapping), then
271 * find the linear mapping of the page and also set its protections to
272 * match.
Jeremy Fitzhardingea05d2eb2008-07-27 08:45:02 -0700273 */
274static void set_aliased_prot(void *v, pgprot_t prot)
275{
276 int level;
277 pte_t *ptep;
278 pte_t pte;
279 unsigned long pfn;
280 struct page *page;
281
282 ptep = lookup_address((unsigned long)v, &level);
283 BUG_ON(ptep == NULL);
284
285 pfn = pte_pfn(*ptep);
286 page = pfn_to_page(pfn);
287
288 pte = pfn_pte(pfn, prot);
289
290 if (HYPERVISOR_update_va_mapping((unsigned long)v, pte, 0))
291 BUG();
292
293 if (!PageHighMem(page)) {
294 void *av = __va(PFN_PHYS(pfn));
295
296 if (av != v)
297 if (HYPERVISOR_update_va_mapping((unsigned long)av, pte, 0))
298 BUG();
299 } else
300 kmap_flush_unused();
301}
302
Jeremy Fitzhardinge38ffbe62008-07-23 14:21:18 -0700303static void xen_alloc_ldt(struct desc_struct *ldt, unsigned entries)
304{
Jeremy Fitzhardingea05d2eb2008-07-27 08:45:02 -0700305 const unsigned entries_per_page = PAGE_SIZE / LDT_ENTRY_SIZE;
Jeremy Fitzhardinge38ffbe62008-07-23 14:21:18 -0700306 int i;
307
Jeremy Fitzhardingea05d2eb2008-07-27 08:45:02 -0700308 for(i = 0; i < entries; i += entries_per_page)
309 set_aliased_prot(ldt + i, PAGE_KERNEL_RO);
Jeremy Fitzhardinge38ffbe62008-07-23 14:21:18 -0700310}
311
312static void xen_free_ldt(struct desc_struct *ldt, unsigned entries)
313{
Jeremy Fitzhardingea05d2eb2008-07-27 08:45:02 -0700314 const unsigned entries_per_page = PAGE_SIZE / LDT_ENTRY_SIZE;
Jeremy Fitzhardinge38ffbe62008-07-23 14:21:18 -0700315 int i;
316
Jeremy Fitzhardingea05d2eb2008-07-27 08:45:02 -0700317 for(i = 0; i < entries; i += entries_per_page)
318 set_aliased_prot(ldt + i, PAGE_KERNEL);
Jeremy Fitzhardinge38ffbe62008-07-23 14:21:18 -0700319}
320
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700321static void xen_set_ldt(const void *addr, unsigned entries)
322{
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700323 struct mmuext_op *op;
324 struct multicall_space mcs = xen_mc_entry(sizeof(*op));
325
326 op = mcs.args;
327 op->cmd = MMUEXT_SET_LDT;
Jan Beulich4dbf7af2008-01-30 13:33:14 +0100328 op->arg1.linear_addr = (unsigned long)addr;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700329 op->arg2.nr_ents = entries;
330
331 MULTI_mmuext_op(mcs.mc, op, 1, NULL, DOMID_SELF);
332
333 xen_mc_issue(PARAVIRT_LAZY_CPU);
334}
335
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100336static void xen_load_gdt(const struct desc_ptr *dtr)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700337{
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700338 unsigned long va = dtr->address;
339 unsigned int size = dtr->size + 1;
340 unsigned pages = (size + PAGE_SIZE - 1) / PAGE_SIZE;
Jeremy Fitzhardinge3ce5fa72009-03-04 15:26:00 -0800341 unsigned long frames[pages];
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700342 int f;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700343
Jeremy Fitzhardinge577eebe2009-08-27 12:46:35 -0700344 /*
345 * A GDT can be up to 64k in size, which corresponds to 8192
346 * 8-byte entries, or 16 4k pages..
347 */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700348
349 BUG_ON(size > 65536);
350 BUG_ON(va & ~PAGE_MASK);
351
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700352 for (f = 0; va < dtr->address + size; va += PAGE_SIZE, f++) {
Jeremy Fitzhardinge6ed6bf422009-03-04 13:02:18 -0800353 int level;
Jeremy Fitzhardinge577eebe2009-08-27 12:46:35 -0700354 pte_t *ptep;
Jeremy Fitzhardinge6ed6bf422009-03-04 13:02:18 -0800355 unsigned long pfn, mfn;
356 void *virt;
357
Jeremy Fitzhardinge577eebe2009-08-27 12:46:35 -0700358 /*
359 * The GDT is per-cpu and is in the percpu data area.
360 * That can be virtually mapped, so we need to do a
361 * page-walk to get the underlying MFN for the
362 * hypercall. The page can also be in the kernel's
363 * linear range, so we need to RO that mapping too.
364 */
365 ptep = lookup_address(va, &level);
Jeremy Fitzhardinge6ed6bf422009-03-04 13:02:18 -0800366 BUG_ON(ptep == NULL);
367
368 pfn = pte_pfn(*ptep);
369 mfn = pfn_to_mfn(pfn);
370 virt = __va(PFN_PHYS(pfn));
371
372 frames[f] = mfn;
Jeremy Fitzhardinge9976b392009-02-27 09:19:26 -0800373
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700374 make_lowmem_page_readonly((void *)va);
Jeremy Fitzhardinge6ed6bf422009-03-04 13:02:18 -0800375 make_lowmem_page_readonly(virt);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700376 }
377
Jeremy Fitzhardinge3ce5fa72009-03-04 15:26:00 -0800378 if (HYPERVISOR_set_gdt(frames, size / sizeof(struct desc_struct)))
379 BUG();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700380}
381
Jeremy Fitzhardinge577eebe2009-08-27 12:46:35 -0700382/*
383 * load_gdt for early boot, when the gdt is only mapped once
384 */
385static __init void xen_load_gdt_boot(const struct desc_ptr *dtr)
386{
387 unsigned long va = dtr->address;
388 unsigned int size = dtr->size + 1;
389 unsigned pages = (size + PAGE_SIZE - 1) / PAGE_SIZE;
390 unsigned long frames[pages];
391 int f;
392
393 /*
394 * A GDT can be up to 64k in size, which corresponds to 8192
395 * 8-byte entries, or 16 4k pages..
396 */
397
398 BUG_ON(size > 65536);
399 BUG_ON(va & ~PAGE_MASK);
400
401 for (f = 0; va < dtr->address + size; va += PAGE_SIZE, f++) {
402 pte_t pte;
403 unsigned long pfn, mfn;
404
405 pfn = virt_to_pfn(va);
406 mfn = pfn_to_mfn(pfn);
407
408 pte = pfn_pte(pfn, PAGE_KERNEL_RO);
409
410 if (HYPERVISOR_update_va_mapping((unsigned long)va, pte, 0))
411 BUG();
412
413 frames[f] = mfn;
414 }
415
416 if (HYPERVISOR_set_gdt(frames, size / sizeof(struct desc_struct)))
417 BUG();
418}
419
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700420static void load_TLS_descriptor(struct thread_struct *t,
421 unsigned int cpu, unsigned int i)
422{
423 struct desc_struct *gdt = get_cpu_gdt_table(cpu);
Jeremy Fitzhardinge9976b392009-02-27 09:19:26 -0800424 xmaddr_t maddr = arbitrary_virt_to_machine(&gdt[GDT_ENTRY_TLS_MIN+i]);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700425 struct multicall_space mc = __xen_mc_entry(0);
426
427 MULTI_update_descriptor(mc.mc, maddr.maddr, t->tls_array[i]);
428}
429
430static void xen_load_tls(struct thread_struct *t, unsigned int cpu)
431{
Jeremy Fitzhardinge8b84ad92007-07-17 18:37:06 -0700432 /*
Tejun Heoccbeed32009-02-09 22:17:40 +0900433 * XXX sleazy hack: If we're being called in a lazy-cpu zone
434 * and lazy gs handling is enabled, it means we're in a
435 * context switch, and %gs has just been saved. This means we
436 * can zero it out to prevent faults on exit from the
437 * hypervisor if the next process has no %gs. Either way, it
438 * has been saved, and the new value will get loaded properly.
439 * This will go away as soon as Xen has been modified to not
440 * save/restore %gs for normal hypercalls.
Eduardo Habkost8a954082008-07-08 15:07:10 -0700441 *
442 * On x86_64, this hack is not used for %gs, because gs points
443 * to KERNEL_GS_BASE (and uses it for PDA references), so we
444 * must not zero %gs on x86_64
445 *
446 * For x86_64, we need to zero %fs, otherwise we may get an
447 * exception between the new %fs descriptor being loaded and
448 * %fs being effectively cleared at __switch_to().
Jeremy Fitzhardinge8b84ad92007-07-17 18:37:06 -0700449 */
Eduardo Habkost8a954082008-07-08 15:07:10 -0700450 if (paravirt_get_lazy_mode() == PARAVIRT_LAZY_CPU) {
451#ifdef CONFIG_X86_32
Tejun Heoccbeed32009-02-09 22:17:40 +0900452 lazy_load_gs(0);
Eduardo Habkost8a954082008-07-08 15:07:10 -0700453#else
454 loadsegment(fs, 0);
455#endif
456 }
457
458 xen_mc_batch();
459
460 load_TLS_descriptor(t, cpu, 0);
461 load_TLS_descriptor(t, cpu, 1);
462 load_TLS_descriptor(t, cpu, 2);
463
464 xen_mc_issue(PARAVIRT_LAZY_CPU);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700465}
466
Eduardo Habkosta8fc1082008-07-08 15:07:05 -0700467#ifdef CONFIG_X86_64
468static void xen_load_gs_index(unsigned int idx)
469{
470 if (HYPERVISOR_set_segment_base(SEGBASE_GS_USER_SEL, idx))
471 BUG();
472}
473#endif
474
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700475static void xen_write_ldt_entry(struct desc_struct *dt, int entrynum,
Glauber de Oliveira Costa75b8bb32008-01-30 13:31:13 +0100476 const void *ptr)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700477{
Jeremy Fitzhardingecef43bf2008-07-28 13:33:44 -0700478 xmaddr_t mach_lp = arbitrary_virt_to_machine(&dt[entrynum]);
Glauber de Oliveira Costa75b8bb32008-01-30 13:31:13 +0100479 u64 entry = *(u64 *)ptr;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700480
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700481 preempt_disable();
482
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700483 xen_mc_flush();
484 if (HYPERVISOR_update_descriptor(mach_lp.maddr, entry))
485 BUG();
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700486
487 preempt_enable();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700488}
489
Eduardo Habkoste176d362008-07-08 15:06:59 -0700490static int cvt_gate_to_trap(int vector, const gate_desc *val,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700491 struct trap_info *info)
492{
Jeremy Fitzhardinge6cac5a92009-03-29 19:56:29 -0700493 unsigned long addr;
494
Jeremy Fitzhardinge6d02c422009-03-29 22:57:15 -0700495 if (val->type != GATE_TRAP && val->type != GATE_INTERRUPT)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700496 return 0;
497
498 info->vector = vector;
Jeremy Fitzhardinge6cac5a92009-03-29 19:56:29 -0700499
500 addr = gate_offset(*val);
501#ifdef CONFIG_X86_64
Jeremy Fitzhardingeb80119b2009-04-24 00:22:08 -0700502 /*
503 * Look for known traps using IST, and substitute them
504 * appropriately. The debugger ones are the only ones we care
505 * about. Xen will handle faults like double_fault and
506 * machine_check, so we should never see them. Warn if
507 * there's an unexpected IST-using fault handler.
508 */
Jeremy Fitzhardinge6cac5a92009-03-29 19:56:29 -0700509 if (addr == (unsigned long)debug)
510 addr = (unsigned long)xen_debug;
511 else if (addr == (unsigned long)int3)
512 addr = (unsigned long)xen_int3;
513 else if (addr == (unsigned long)stack_segment)
514 addr = (unsigned long)xen_stack_segment;
Jeremy Fitzhardingeb80119b2009-04-24 00:22:08 -0700515 else if (addr == (unsigned long)double_fault ||
516 addr == (unsigned long)nmi) {
517 /* Don't need to handle these */
518 return 0;
519#ifdef CONFIG_X86_MCE
520 } else if (addr == (unsigned long)machine_check) {
521 return 0;
522#endif
523 } else {
524 /* Some other trap using IST? */
525 if (WARN_ON(val->ist != 0))
526 return 0;
527 }
Jeremy Fitzhardinge6cac5a92009-03-29 19:56:29 -0700528#endif /* CONFIG_X86_64 */
529 info->address = addr;
530
Eduardo Habkoste176d362008-07-08 15:06:59 -0700531 info->cs = gate_segment(*val);
532 info->flags = val->dpl;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700533 /* interrupt gates clear IF */
Jeremy Fitzhardinge6d02c422009-03-29 22:57:15 -0700534 if (val->type == GATE_INTERRUPT)
535 info->flags |= 1 << 2;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700536
537 return 1;
538}
539
540/* Locations of each CPU's IDT */
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100541static DEFINE_PER_CPU(struct desc_ptr, idt_desc);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700542
543/* Set an IDT entry. If the entry is part of the current IDT, then
544 also update Xen. */
Glauber de Oliveira Costa8d947342008-01-30 13:31:12 +0100545static void xen_write_idt_entry(gate_desc *dt, int entrynum, const gate_desc *g)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700546{
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700547 unsigned long p = (unsigned long)&dt[entrynum];
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700548 unsigned long start, end;
549
550 preempt_disable();
551
552 start = __get_cpu_var(idt_desc).address;
553 end = start + __get_cpu_var(idt_desc).size + 1;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700554
555 xen_mc_flush();
556
Glauber de Oliveira Costa8d947342008-01-30 13:31:12 +0100557 native_write_idt_entry(dt, entrynum, g);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700558
559 if (p >= start && (p + 8) <= end) {
560 struct trap_info info[2];
561
562 info[1].address = 0;
563
Eduardo Habkoste176d362008-07-08 15:06:59 -0700564 if (cvt_gate_to_trap(entrynum, g, &info[0]))
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700565 if (HYPERVISOR_set_trap_table(info))
566 BUG();
567 }
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700568
569 preempt_enable();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700570}
571
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100572static void xen_convert_trap_info(const struct desc_ptr *desc,
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700573 struct trap_info *traps)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700574{
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700575 unsigned in, out, count;
576
Eduardo Habkoste176d362008-07-08 15:06:59 -0700577 count = (desc->size+1) / sizeof(gate_desc);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700578 BUG_ON(count > 256);
579
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700580 for (in = out = 0; in < count; in++) {
Eduardo Habkoste176d362008-07-08 15:06:59 -0700581 gate_desc *entry = (gate_desc*)(desc->address) + in;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700582
Eduardo Habkoste176d362008-07-08 15:06:59 -0700583 if (cvt_gate_to_trap(in, entry, &traps[out]))
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700584 out++;
585 }
586 traps[out].address = 0;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700587}
588
589void xen_copy_trap_info(struct trap_info *traps)
590{
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100591 const struct desc_ptr *desc = &__get_cpu_var(idt_desc);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700592
593 xen_convert_trap_info(desc, traps);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700594}
595
596/* Load a new IDT into Xen. In principle this can be per-CPU, so we
597 hold a spinlock to protect the static traps[] array (static because
598 it avoids allocation, and saves stack space). */
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100599static void xen_load_idt(const struct desc_ptr *desc)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700600{
601 static DEFINE_SPINLOCK(lock);
602 static struct trap_info traps[257];
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700603
604 spin_lock(&lock);
605
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700606 __get_cpu_var(idt_desc) = *desc;
607
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700608 xen_convert_trap_info(desc, traps);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700609
610 xen_mc_flush();
611 if (HYPERVISOR_set_trap_table(traps))
612 BUG();
613
614 spin_unlock(&lock);
615}
616
617/* Write a GDT descriptor entry. Ignore LDT descriptors, since
618 they're handled differently. */
619static void xen_write_gdt_entry(struct desc_struct *dt, int entry,
Glauber de Oliveira Costa014b15b2008-01-30 13:31:13 +0100620 const void *desc, int type)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700621{
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700622 preempt_disable();
623
Glauber de Oliveira Costa014b15b2008-01-30 13:31:13 +0100624 switch (type) {
625 case DESC_LDT:
626 case DESC_TSS:
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700627 /* ignore */
628 break;
629
630 default: {
Jeremy Fitzhardinge9976b392009-02-27 09:19:26 -0800631 xmaddr_t maddr = arbitrary_virt_to_machine(&dt[entry]);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700632
633 xen_mc_flush();
Glauber de Oliveira Costa014b15b2008-01-30 13:31:13 +0100634 if (HYPERVISOR_update_descriptor(maddr.maddr, *(u64 *)desc))
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700635 BUG();
636 }
637
638 }
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700639
640 preempt_enable();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700641}
642
Jeremy Fitzhardinge577eebe2009-08-27 12:46:35 -0700643/*
644 * Version of write_gdt_entry for use at early boot-time needed to
645 * update an entry as simply as possible.
646 */
647static __init void xen_write_gdt_entry_boot(struct desc_struct *dt, int entry,
648 const void *desc, int type)
649{
650 switch (type) {
651 case DESC_LDT:
652 case DESC_TSS:
653 /* ignore */
654 break;
655
656 default: {
657 xmaddr_t maddr = virt_to_machine(&dt[entry]);
658
659 if (HYPERVISOR_update_descriptor(maddr.maddr, *(u64 *)desc))
660 dt[entry] = *(struct desc_struct *)desc;
661 }
662
663 }
664}
665
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100666static void xen_load_sp0(struct tss_struct *tss,
Jeremy Fitzhardingea05d2eb2008-07-27 08:45:02 -0700667 struct thread_struct *thread)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700668{
669 struct multicall_space mcs = xen_mc_entry(0);
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100670 MULTI_stack_switch(mcs.mc, __KERNEL_DS, thread->sp0);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700671 xen_mc_issue(PARAVIRT_LAZY_CPU);
672}
673
674static void xen_set_iopl_mask(unsigned mask)
675{
676 struct physdev_set_iopl set_iopl;
677
678 /* Force the change at ring 0. */
679 set_iopl.iopl = (mask == 0) ? 1 : (mask >> 12) & 3;
680 HYPERVISOR_physdev_op(PHYSDEVOP_set_iopl, &set_iopl);
681}
682
683static void xen_io_delay(void)
684{
685}
686
687#ifdef CONFIG_X86_LOCAL_APIC
Suresh Siddhaad66dd32008-07-11 13:11:56 -0700688static u32 xen_apic_read(u32 reg)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700689{
690 return 0;
691}
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700692
Suresh Siddhaad66dd32008-07-11 13:11:56 -0700693static void xen_apic_write(u32 reg, u32 val)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700694{
695 /* Warn to see if there's any stray references */
696 WARN_ON(1);
697}
Suresh Siddhaad66dd32008-07-11 13:11:56 -0700698
Suresh Siddhaad66dd32008-07-11 13:11:56 -0700699static u64 xen_apic_icr_read(void)
700{
701 return 0;
702}
703
704static void xen_apic_icr_write(u32 low, u32 id)
705{
706 /* Warn to see if there's any stray references */
707 WARN_ON(1);
708}
709
710static void xen_apic_wait_icr_idle(void)
711{
712 return;
713}
714
Yinghai Lu94a8c3c2008-07-13 22:19:35 -0700715static u32 xen_safe_apic_wait_icr_idle(void)
716{
717 return 0;
718}
719
Yinghai Luc1eeb2d2009-02-16 23:02:14 -0800720static void set_xen_basic_apic_ops(void)
721{
722 apic->read = xen_apic_read;
723 apic->write = xen_apic_write;
724 apic->icr_read = xen_apic_icr_read;
725 apic->icr_write = xen_apic_icr_write;
726 apic->wait_icr_idle = xen_apic_wait_icr_idle;
727 apic->safe_wait_icr_idle = xen_safe_apic_wait_icr_idle;
728}
Suresh Siddhaad66dd32008-07-11 13:11:56 -0700729
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700730#endif
731
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700732
Jeremy Fitzhardinge7b1333a2008-05-26 23:31:01 +0100733static void xen_clts(void)
734{
735 struct multicall_space mcs;
736
737 mcs = xen_mc_entry(0);
738
739 MULTI_fpu_taskswitch(mcs.mc, 0);
740
741 xen_mc_issue(PARAVIRT_LAZY_CPU);
742}
743
Jeremy Fitzhardingea789ed52009-04-24 00:26:50 -0700744static DEFINE_PER_CPU(unsigned long, xen_cr0_value);
745
746static unsigned long xen_read_cr0(void)
747{
748 unsigned long cr0 = percpu_read(xen_cr0_value);
749
750 if (unlikely(cr0 == 0)) {
751 cr0 = native_read_cr0();
752 percpu_write(xen_cr0_value, cr0);
753 }
754
755 return cr0;
756}
757
Jeremy Fitzhardinge7b1333a2008-05-26 23:31:01 +0100758static void xen_write_cr0(unsigned long cr0)
759{
760 struct multicall_space mcs;
761
Jeremy Fitzhardingea789ed52009-04-24 00:26:50 -0700762 percpu_write(xen_cr0_value, cr0);
763
Jeremy Fitzhardinge7b1333a2008-05-26 23:31:01 +0100764 /* Only pay attention to cr0.TS; everything else is
765 ignored. */
766 mcs = xen_mc_entry(0);
767
768 MULTI_fpu_taskswitch(mcs.mc, (cr0 & X86_CR0_TS) != 0);
769
770 xen_mc_issue(PARAVIRT_LAZY_CPU);
771}
772
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700773static void xen_write_cr4(unsigned long cr4)
774{
Jeremy Fitzhardinge2956a352008-05-26 23:31:04 +0100775 cr4 &= ~X86_CR4_PGE;
776 cr4 &= ~X86_CR4_PSE;
777
778 native_write_cr4(cr4);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700779}
780
Jeremy Fitzhardinge11539682008-07-08 15:07:16 -0700781static int xen_write_msr_safe(unsigned int msr, unsigned low, unsigned high)
782{
783 int ret;
784
785 ret = 0;
786
Tejf63c2f22008-12-16 11:56:06 -0800787 switch (msr) {
Jeremy Fitzhardinge11539682008-07-08 15:07:16 -0700788#ifdef CONFIG_X86_64
789 unsigned which;
790 u64 base;
791
792 case MSR_FS_BASE: which = SEGBASE_FS; goto set;
793 case MSR_KERNEL_GS_BASE: which = SEGBASE_GS_USER; goto set;
794 case MSR_GS_BASE: which = SEGBASE_GS_KERNEL; goto set;
795
796 set:
797 base = ((u64)high << 32) | low;
798 if (HYPERVISOR_set_segment_base(which, base) != 0)
H. Peter Anvin0cc02132009-08-31 14:23:29 -0700799 ret = -EIO;
Jeremy Fitzhardinge11539682008-07-08 15:07:16 -0700800 break;
801#endif
Jeremy Fitzhardinged89961e2008-07-24 13:48:58 -0700802
803 case MSR_STAR:
804 case MSR_CSTAR:
805 case MSR_LSTAR:
806 case MSR_SYSCALL_MASK:
807 case MSR_IA32_SYSENTER_CS:
808 case MSR_IA32_SYSENTER_ESP:
809 case MSR_IA32_SYSENTER_EIP:
810 /* Fast syscall setup is all done in hypercalls, so
811 these are all ignored. Stub them out here to stop
812 Xen console noise. */
813 break;
814
Jeremy Fitzhardinge11539682008-07-08 15:07:16 -0700815 default:
816 ret = native_write_msr_safe(msr, low, high);
817 }
818
819 return ret;
820}
821
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +0100822void xen_setup_shared_info(void)
Jeremy Fitzhardinge2e8fe712008-03-17 16:36:53 -0700823{
824 if (!xen_feature(XENFEAT_auto_translated_physmap)) {
Jeremy Fitzhardinge15664f92008-07-08 15:06:47 -0700825 set_fixmap(FIX_PARAVIRT_BOOTMAP,
826 xen_start_info->shared_info);
Jeremy Fitzhardinge2e8fe712008-03-17 16:36:53 -0700827
Jeremy Fitzhardinge15664f92008-07-08 15:06:47 -0700828 HYPERVISOR_shared_info =
829 (struct shared_info *)fix_to_virt(FIX_PARAVIRT_BOOTMAP);
Jeremy Fitzhardinge2e8fe712008-03-17 16:36:53 -0700830 } else
831 HYPERVISOR_shared_info =
832 (struct shared_info *)__va(xen_start_info->shared_info);
833
834#ifndef CONFIG_SMP
835 /* In UP this is as good a place as any to set up shared info */
836 xen_setup_vcpu_info_placement();
837#endif
Jeremy Fitzhardinged5edbc12008-05-26 23:31:22 +0100838
839 xen_setup_mfn_list_list();
Jeremy Fitzhardinge2e8fe712008-03-17 16:36:53 -0700840}
841
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700842/* This is called once we have the cpu_possible_map */
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +0100843void xen_setup_vcpu_info_placement(void)
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700844{
845 int cpu;
846
847 for_each_possible_cpu(cpu)
848 xen_vcpu_setup(cpu);
849
850 /* xen_vcpu_setup managed to place the vcpu_info within the
851 percpu area for all cpus, so make use of it */
852 if (have_vcpu_info_placement) {
853 printk(KERN_INFO "Xen: using vcpu_info placement\n");
854
Jeremy Fitzhardingeecb93d12009-01-28 14:35:05 -0800855 pv_irq_ops.save_fl = __PV_IS_CALLEE_SAVE(xen_save_fl_direct);
856 pv_irq_ops.restore_fl = __PV_IS_CALLEE_SAVE(xen_restore_fl_direct);
857 pv_irq_ops.irq_disable = __PV_IS_CALLEE_SAVE(xen_irq_disable_direct);
858 pv_irq_ops.irq_enable = __PV_IS_CALLEE_SAVE(xen_irq_enable_direct);
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700859 pv_mmu_ops.read_cr2 = xen_read_cr2_direct;
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700860 }
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700861}
862
Andi Kleenab144f52007-08-10 22:31:03 +0200863static unsigned xen_patch(u8 type, u16 clobbers, void *insnbuf,
864 unsigned long addr, unsigned len)
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700865{
866 char *start, *end, *reloc;
867 unsigned ret;
868
869 start = end = reloc = NULL;
870
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700871#define SITE(op, x) \
872 case PARAVIRT_PATCH(op.x): \
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700873 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
880 switch (type) {
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700881 SITE(pv_irq_ops, irq_enable);
882 SITE(pv_irq_ops, irq_disable);
883 SITE(pv_irq_ops, save_fl);
884 SITE(pv_irq_ops, restore_fl);
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700885#undef SITE
886
887 patch_site:
888 if (start == NULL || (end-start) > len)
889 goto default_patch;
890
Andi Kleenab144f52007-08-10 22:31:03 +0200891 ret = paravirt_patch_insns(insnbuf, len, start, end);
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700892
893 /* Note: because reloc is assigned from something that
894 appears to be an array, gcc assumes it's non-null,
895 but doesn't know its relationship with start and
896 end. */
897 if (reloc > start && reloc < end) {
898 int reloc_off = reloc - start;
Andi Kleenab144f52007-08-10 22:31:03 +0200899 long *relocp = (long *)(insnbuf + reloc_off);
900 long delta = start - (char *)addr;
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700901
902 *relocp += delta;
903 }
904 break;
905
906 default_patch:
907 default:
Andi Kleenab144f52007-08-10 22:31:03 +0200908 ret = paravirt_patch_default(type, clobbers, insnbuf,
909 addr, len);
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700910 break;
911 }
912
913 return ret;
914}
915
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700916static const struct pv_info xen_info __initdata = {
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700917 .paravirt_enabled = 1,
918 .shared_kernel_pmd = 0,
919
920 .name = "Xen",
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700921};
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700922
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700923static const struct pv_init_ops xen_init_ops __initdata = {
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700924 .patch = xen_patch,
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700925};
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700926
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700927static const struct pv_time_ops xen_time_ops __initdata = {
Jeremy Fitzhardingeab550282007-07-17 18:37:05 -0700928 .sched_clock = xen_sched_clock,
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700929};
Jeremy Fitzhardinge15c84732007-07-17 18:37:05 -0700930
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700931static const struct pv_cpu_ops xen_cpu_ops __initdata = {
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700932 .cpuid = xen_cpuid,
933
934 .set_debugreg = xen_set_debugreg,
935 .get_debugreg = xen_get_debugreg,
936
Jeremy Fitzhardinge7b1333a2008-05-26 23:31:01 +0100937 .clts = xen_clts,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700938
Jeremy Fitzhardingea789ed52009-04-24 00:26:50 -0700939 .read_cr0 = xen_read_cr0,
Jeremy Fitzhardinge7b1333a2008-05-26 23:31:01 +0100940 .write_cr0 = xen_write_cr0,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700941
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700942 .read_cr4 = native_read_cr4,
943 .read_cr4_safe = native_read_cr4_safe,
944 .write_cr4 = xen_write_cr4,
945
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700946 .wbinvd = native_wbinvd,
947
948 .read_msr = native_read_msr_safe,
Jeremy Fitzhardinge11539682008-07-08 15:07:16 -0700949 .write_msr = xen_write_msr_safe,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700950 .read_tsc = native_read_tsc,
951 .read_pmc = native_read_pmc,
952
Jeremy Fitzhardinge81e103f2008-04-17 17:40:51 +0200953 .iret = xen_iret,
Jeremy Fitzhardinged75cd222008-06-25 00:19:26 -0400954 .irq_enable_sysexit = xen_sysexit,
Jeremy Fitzhardinge6fcac6d2008-07-08 15:07:14 -0700955#ifdef CONFIG_X86_64
956 .usergs_sysret32 = xen_sysret32,
957 .usergs_sysret64 = xen_sysret64,
958#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700959
960 .load_tr_desc = paravirt_nop,
961 .set_ldt = xen_set_ldt,
962 .load_gdt = xen_load_gdt,
963 .load_idt = xen_load_idt,
964 .load_tls = xen_load_tls,
Eduardo Habkosta8fc1082008-07-08 15:07:05 -0700965#ifdef CONFIG_X86_64
966 .load_gs_index = xen_load_gs_index,
967#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700968
Jeremy Fitzhardinge38ffbe62008-07-23 14:21:18 -0700969 .alloc_ldt = xen_alloc_ldt,
970 .free_ldt = xen_free_ldt,
971
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700972 .store_gdt = native_store_gdt,
973 .store_idt = native_store_idt,
974 .store_tr = xen_store_tr,
975
976 .write_ldt_entry = xen_write_ldt_entry,
977 .write_gdt_entry = xen_write_gdt_entry,
978 .write_idt_entry = xen_write_idt_entry,
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100979 .load_sp0 = xen_load_sp0,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700980
981 .set_iopl_mask = xen_set_iopl_mask,
982 .io_delay = xen_io_delay,
983
Jeremy Fitzhardinge952d1d72008-07-08 15:07:01 -0700984 /* Xen takes care of %gs when switching to usermode for us */
985 .swapgs = paravirt_nop,
986
Jeremy Fitzhardinge224101e2009-02-18 11:18:57 -0800987 .start_context_switch = paravirt_start_context_switch,
988 .end_context_switch = xen_end_context_switch,
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700989};
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700990
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700991static const struct pv_apic_ops xen_apic_ops __initdata = {
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700992#ifdef CONFIG_X86_LOCAL_APIC
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700993 .startup_ipi_hook = paravirt_nop,
994#endif
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700995};
996
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -0700997static void xen_reboot(int reason)
998{
Jeremy Fitzhardinge349c709f2008-05-26 23:31:02 +0100999 struct sched_shutdown r = { .reason = reason };
1000
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -07001001#ifdef CONFIG_SMP
1002 smp_send_stop();
1003#endif
1004
Jeremy Fitzhardinge349c709f2008-05-26 23:31:02 +01001005 if (HYPERVISOR_sched_op(SCHEDOP_shutdown, &r))
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -07001006 BUG();
1007}
1008
1009static void xen_restart(char *msg)
1010{
1011 xen_reboot(SHUTDOWN_reboot);
1012}
1013
1014static void xen_emergency_restart(void)
1015{
1016 xen_reboot(SHUTDOWN_reboot);
1017}
1018
1019static void xen_machine_halt(void)
1020{
1021 xen_reboot(SHUTDOWN_poweroff);
1022}
1023
1024static void xen_crash_shutdown(struct pt_regs *regs)
1025{
1026 xen_reboot(SHUTDOWN_crash);
1027}
1028
1029static const struct machine_ops __initdata xen_machine_ops = {
1030 .restart = xen_restart,
1031 .halt = xen_machine_halt,
1032 .power_off = xen_machine_halt,
1033 .shutdown = xen_machine_halt,
1034 .crash_shutdown = xen_crash_shutdown,
1035 .emergency_restart = xen_emergency_restart,
1036};
1037
Jeremy Fitzhardinge577eebe2009-08-27 12:46:35 -07001038/*
1039 * Set up the GDT and segment registers for -fstack-protector. Until
1040 * we do this, we have to be careful not to call any stack-protected
1041 * function, which is most of the kernel.
1042 */
1043static void __init xen_setup_stackprotector(void)
1044{
1045 pv_cpu_ops.write_gdt_entry = xen_write_gdt_entry_boot;
1046 pv_cpu_ops.load_gdt = xen_load_gdt_boot;
1047
1048 setup_stack_canary_segment(0);
1049 switch_to_new_gdt(0);
1050
1051 pv_cpu_ops.write_gdt_entry = xen_write_gdt_entry;
1052 pv_cpu_ops.load_gdt = xen_load_gdt;
1053}
1054
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001055/* First C function to be called on Xen boot */
1056asmlinkage void __init xen_start_kernel(void)
1057{
1058 pgd_t *pgd;
1059
1060 if (!xen_start_info)
1061 return;
1062
Jeremy Fitzhardinge6e833582008-08-19 13:16:17 -07001063 xen_domain_type = XEN_PV_DOMAIN;
1064
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001065 /* Install Xen paravirt ops */
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001066 pv_info = xen_info;
1067 pv_init_ops = xen_init_ops;
1068 pv_time_ops = xen_time_ops;
1069 pv_cpu_ops = xen_cpu_ops;
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001070 pv_apic_ops = xen_apic_ops;
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001071
Thomas Gleixner6b18ae32009-08-20 10:19:54 +02001072 x86_init.resources.memory_setup = xen_memory_setup;
Thomas Gleixner42bbdb42009-08-20 13:04:10 +02001073 x86_init.oem.arch_setup = xen_arch_setup;
Thomas Gleixner6f30c1a2009-08-20 13:19:57 +02001074 x86_init.oem.banner = xen_banner;
Thomas Gleixner845b3942009-08-19 15:37:03 +02001075
1076 x86_init.timers.timer_init = xen_time_init;
Thomas Gleixner736deca2009-08-19 12:35:53 +02001077 x86_init.timers.setup_percpu_clockev = x86_init_noop;
1078 x86_cpuinit.setup_percpu_clockev = x86_init_noop;
Thomas Gleixner6b18ae32009-08-20 10:19:54 +02001079
Thomas Gleixner2d826402009-08-20 17:06:25 +02001080 x86_platform.calibrate_tsc = xen_tsc_khz;
Feng Tang7bd867d2009-09-10 10:48:56 +08001081 x86_platform.get_wallclock = xen_get_wallclock;
1082 x86_platform.set_wallclock = xen_set_wallclock;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001083
Jeremy Fitzhardingece2eef32009-08-17 12:26:53 -07001084 /*
Jeremy Fitzhardinge577eebe2009-08-27 12:46:35 -07001085 * Set up some pagetable state before starting to set any ptes.
Jeremy Fitzhardingece2eef32009-08-17 12:26:53 -07001086 */
Jeremy Fitzhardinge577eebe2009-08-27 12:46:35 -07001087
Jeremy Fitzhardinge973df352009-10-27 16:54:19 -07001088 xen_init_mmu_ops();
1089
Jeremy Fitzhardinge577eebe2009-08-27 12:46:35 -07001090 /* Prevent unwanted bits from being set in PTEs. */
1091 __supported_pte_mask &= ~_PAGE_GLOBAL;
1092 if (!xen_initial_domain())
1093 __supported_pte_mask &= ~(_PAGE_PWT | _PAGE_PCD);
1094
1095 __supported_pte_mask |= _PAGE_IOMAP;
1096
Jeremy Fitzhardingeb75fe4e2009-09-21 13:34:06 -07001097 /* Work out if we support NX */
H. Peter Anvin4763ed42009-11-13 15:28:16 -08001098 x86_configure_nx();
Jeremy Fitzhardingeb75fe4e2009-09-21 13:34:06 -07001099
Jeremy Fitzhardinge577eebe2009-08-27 12:46:35 -07001100 xen_setup_features();
1101
1102 /* Get mfn list */
1103 if (!xen_feature(XENFEAT_auto_translated_physmap))
1104 xen_build_dynamic_phys_to_machine();
1105
1106 /*
1107 * Set up kernel GDT and segment registers, mainly so that
1108 * -fstack-protector code can be executed.
1109 */
1110 xen_setup_stackprotector();
Jeremy Fitzhardinge0d1edf42008-07-28 11:53:57 -07001111
Jeremy Fitzhardingece2eef32009-08-17 12:26:53 -07001112 xen_init_irq_ops();
Jeremy Fitzhardingee826fe12009-03-07 17:09:27 -08001113 xen_init_cpuid_mask();
1114
Yinghai Lu94a8c3c2008-07-13 22:19:35 -07001115#ifdef CONFIG_X86_LOCAL_APIC
Suresh Siddhaad66dd32008-07-11 13:11:56 -07001116 /*
Yinghai Lu94a8c3c2008-07-13 22:19:35 -07001117 * set up the basic apic ops.
Suresh Siddhaad66dd32008-07-11 13:11:56 -07001118 */
Yinghai Luc1eeb2d2009-02-16 23:02:14 -08001119 set_xen_basic_apic_ops();
Suresh Siddhaad66dd32008-07-11 13:11:56 -07001120#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001121
Jeremy Fitzhardingee57778a2008-06-16 04:30:02 -07001122 if (xen_feature(XENFEAT_mmu_pt_update_preserve_ad)) {
1123 pv_mmu_ops.ptep_modify_prot_start = xen_ptep_modify_prot_start;
1124 pv_mmu_ops.ptep_modify_prot_commit = xen_ptep_modify_prot_commit;
1125 }
1126
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -07001127 machine_ops = xen_machine_ops;
1128
Jeremy Fitzhardinge38341432009-02-02 13:55:31 -08001129 /*
1130 * The only reliable way to retain the initial address of the
1131 * percpu gdt_page is to remember it here, so we can go and
1132 * mark it RW later, when the initial percpu area is freed.
1133 */
1134 xen_initial_gdt = &per_cpu(gdt_page, 0);
Jeremy Fitzhardinge795f99b2009-01-30 17:47:54 +09001135
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -07001136 xen_smp_init();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001137
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001138 pgd = (pgd_t *)xen_start_info->pt_base;
1139
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001140 /* Don't do the full vcpu_info placement stuff until we have a
1141 possible map and a non-dummy shared_info. */
1142 per_cpu(xen_vcpu, 0) = &HYPERVISOR_shared_info->vcpu_info[0];
1143
Jeremy Fitzhardinge55d80852009-02-25 09:42:25 -08001144 local_irq_disable();
1145 early_boot_irqs_off();
1146
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001147 xen_raw_console_write("mapping kernel into physical memory\n");
Jeremy Fitzhardinged114e1982008-07-08 15:06:52 -07001148 pgd = xen_setup_kernel_pagetable(pgd, xen_start_info->nr_pages);
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001149
1150 init_mm.pgd = pgd;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001151
1152 /* keep using Xen gdt for now; no urgent need to change it */
1153
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001154 pv_info.kernel_rpl = 1;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001155 if (xen_feature(XENFEAT_supervisor_mode_kernel))
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001156 pv_info.kernel_rpl = 0;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001157
1158 /* set the limit of our address space */
Jeremy Fitzhardingefb1d8402007-10-16 11:51:31 -07001159 xen_reserve_top();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001160
Jeremy Fitzhardinge7d087b62008-07-08 15:06:48 -07001161#ifdef CONFIG_X86_32
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001162 /* set up basic CPUID stuff */
1163 cpu_detect(&new_cpu_data);
1164 new_cpu_data.hard_math = 1;
Jeremy Fitzhardinged560bc62009-08-25 12:53:02 -07001165 new_cpu_data.wp_works_ok = 1;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001166 new_cpu_data.x86_capability[0] = cpuid_edx(1);
Jeremy Fitzhardinge7d087b62008-07-08 15:06:48 -07001167#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001168
1169 /* Poke various useful things into boot_params */
H. Peter Anvin30c82642007-10-15 17:13:22 -07001170 boot_params.hdr.type_of_loader = (9 << 4) | 0;
1171 boot_params.hdr.ramdisk_image = xen_start_info->mod_start
1172 ? __pa(xen_start_info->mod_start) : 0;
1173 boot_params.hdr.ramdisk_size = xen_start_info->mod_len;
Jeremy Fitzhardingeb7c3c5c2008-07-08 15:07:07 -07001174 boot_params.hdr.cmd_line_ptr = __pa(xen_start_info->cmd_line);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001175
Jeremy Fitzhardinge6e833582008-08-19 13:16:17 -07001176 if (!xen_initial_domain()) {
Jeremy Fitzhardinge83abc702008-05-26 23:31:12 +01001177 add_preferred_console("xenboot", 0, NULL);
Markus Armbruster9e124fe2008-05-26 23:31:07 +01001178 add_preferred_console("tty", 0, NULL);
Markus Armbrusterb8c2d3d2008-02-27 14:56:35 +01001179 add_preferred_console("hvc", 0, NULL);
Chris Wright5d990b62009-12-04 12:15:21 -08001180 } else {
1181 /* Make sure ACS will be enabled */
1182 pci_request_acs();
Markus Armbruster9e124fe2008-05-26 23:31:07 +01001183 }
Chris Wright5d990b62009-12-04 12:15:21 -08001184
Markus Armbrusterb8c2d3d2008-02-27 14:56:35 +01001185
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001186 xen_raw_console_write("about to get started...\n");
1187
Jeremy Fitzhardinge499d19b2009-11-24 09:38:25 -08001188 xen_setup_runstate_info(0);
1189
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001190 /* Start the world */
Jeremy Fitzhardingef5d36de2008-07-08 15:06:39 -07001191#ifdef CONFIG_X86_32
Yinghai Luf0d43102008-05-29 12:56:36 -07001192 i386_start_kernel();
Jeremy Fitzhardingef5d36de2008-07-08 15:06:39 -07001193#else
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001194 x86_64_start_reservations((char *)__pa_symbol(&boot_params));
Jeremy Fitzhardingef5d36de2008-07-08 15:06:39 -07001195#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001196}