blob: 73c7b1d610f3f150002d6b96ffd06cf23c491aae [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>
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070030
31#include <xen/interface/xen.h>
Jeremy Fitzhardingeecbf29c2008-12-16 12:37:07 -080032#include <xen/interface/version.h>
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070033#include <xen/interface/physdev.h>
34#include <xen/interface/vcpu.h>
35#include <xen/features.h>
36#include <xen/page.h>
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -070037#include <xen/hvc-console.h>
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070038
39#include <asm/paravirt.h>
Ingo Molnar7b6aa332009-02-17 13:58:15 +010040#include <asm/apic.h>
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070041#include <asm/page.h>
42#include <asm/xen/hypercall.h>
43#include <asm/xen/hypervisor.h>
44#include <asm/fixmap.h>
45#include <asm/processor.h>
Jeremy Fitzhardinge707ebbc2009-03-27 11:29:02 -070046#include <asm/proto.h>
Jeremy Fitzhardinge11539682008-07-08 15:07:16 -070047#include <asm/msr-index.h>
Jeremy Fitzhardinge6cac5a92009-03-29 19:56:29 -070048#include <asm/traps.h>
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070049#include <asm/setup.h>
50#include <asm/desc.h>
51#include <asm/pgtable.h>
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070052#include <asm/tlbflush.h>
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -070053#include <asm/reboot.h>
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070054
55#include "xen-ops.h"
Jeremy Fitzhardinge3b827c12007-07-17 18:37:04 -070056#include "mmu.h"
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070057#include "multicalls.h"
58
59EXPORT_SYMBOL_GPL(hypercall_page);
60
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070061DEFINE_PER_CPU(struct vcpu_info *, xen_vcpu);
62DEFINE_PER_CPU(struct vcpu_info, xen_vcpu_info);
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -070063
Jeremy Fitzhardinge6e833582008-08-19 13:16:17 -070064enum xen_domain_type xen_domain_type = XEN_NATIVE;
65EXPORT_SYMBOL_GPL(xen_domain_type);
66
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070067struct start_info *xen_start_info;
68EXPORT_SYMBOL_GPL(xen_start_info);
69
Jeremy Fitzhardingea0d695c2008-05-26 23:31:21 +010070struct shared_info xen_dummy_shared_info;
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -070071
Jeremy Fitzhardinge38341432009-02-02 13:55:31 -080072void *xen_initial_gdt;
73
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -070074/*
75 * Point at some empty memory to start with. We map the real shared_info
76 * page as soon as fixmap is up and running.
77 */
Jeremy Fitzhardingea0d695c2008-05-26 23:31:21 +010078struct shared_info *HYPERVISOR_shared_info = (void *)&xen_dummy_shared_info;
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -070079
80/*
81 * Flag to determine whether vcpu info placement is available on all
82 * VCPUs. We assume it is to start with, and then set it to zero on
83 * the first failure. This is because it can succeed on some VCPUs
84 * and not others, since it can involve hypervisor memory allocation,
85 * or because the guest failed to guarantee all the appropriate
86 * constraints on all VCPUs (ie buffer can't cross a page boundary).
87 *
88 * Note that any particular CPU may be using a placed vcpu structure,
89 * but we can only optimise if the all are.
90 *
91 * 0: not available, 1: available
92 */
Jeremy Fitzhardingee4d04072009-02-02 13:55:54 -080093static int have_vcpu_info_placement = 1;
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -070094
Jeremy Fitzhardinge9c7a7942008-05-31 01:33:02 +010095static void xen_vcpu_setup(int cpu)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070096{
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -070097 struct vcpu_register_vcpu_info info;
98 int err;
99 struct vcpu_info *vcpup;
100
Jeremy Fitzhardingea0d695c2008-05-26 23:31:21 +0100101 BUG_ON(HYPERVISOR_shared_info == &xen_dummy_shared_info);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700102 per_cpu(xen_vcpu, cpu) = &HYPERVISOR_shared_info->vcpu_info[cpu];
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700103
104 if (!have_vcpu_info_placement)
105 return; /* already tested, not available */
106
107 vcpup = &per_cpu(xen_vcpu_info, cpu);
108
Jeremy Fitzhardinge9976b392009-02-27 09:19:26 -0800109 info.mfn = arbitrary_virt_to_mfn(vcpup);
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700110 info.offset = offset_in_page(vcpup);
111
Jeremy Fitzhardingee3d26972007-10-16 11:51:31 -0700112 printk(KERN_DEBUG "trying to map vcpu_info %d at %p, mfn %llx, offset %d\n",
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700113 cpu, vcpup, info.mfn, info.offset);
114
115 /* Check to see if the hypervisor will put the vcpu_info
116 structure where we want it, which allows direct access via
117 a percpu-variable. */
118 err = HYPERVISOR_vcpu_op(VCPUOP_register_vcpu_info, cpu, &info);
119
120 if (err) {
121 printk(KERN_DEBUG "register_vcpu_info failed: err=%d\n", err);
122 have_vcpu_info_placement = 0;
123 } else {
124 /* This cpu is using the registered vcpu info, even if
125 later ones fail to. */
126 per_cpu(xen_vcpu, cpu) = vcpup;
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700127
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700128 printk(KERN_DEBUG "cpu %d using vcpu_info at %p\n",
129 cpu, vcpup);
130 }
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700131}
132
Jeremy Fitzhardinge9c7a7942008-05-31 01:33:02 +0100133/*
134 * On restore, set the vcpu placement up again.
135 * If it fails, then we're in a bad state, since
136 * we can't back out from using it...
137 */
138void xen_vcpu_restore(void)
139{
140 if (have_vcpu_info_placement) {
141 int cpu;
142
143 for_each_online_cpu(cpu) {
144 bool other_cpu = (cpu != smp_processor_id());
145
146 if (other_cpu &&
147 HYPERVISOR_vcpu_op(VCPUOP_down, cpu, NULL))
148 BUG();
149
150 xen_vcpu_setup(cpu);
151
152 if (other_cpu &&
153 HYPERVISOR_vcpu_op(VCPUOP_up, cpu, NULL))
154 BUG();
155 }
156
157 BUG_ON(!have_vcpu_info_placement);
158 }
159}
160
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700161static void __init xen_banner(void)
162{
Jeremy Fitzhardinge95c7c232008-07-15 13:42:34 -0700163 unsigned version = HYPERVISOR_xen_version(XENVER_version, NULL);
164 struct xen_extraversion extra;
165 HYPERVISOR_xen_version(XENVER_extraversion, &extra);
166
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700167 printk(KERN_INFO "Booting paravirtualized kernel on %s\n",
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700168 pv_info.name);
Jeremy Fitzhardinge95c7c232008-07-15 13:42:34 -0700169 printk(KERN_INFO "Xen version: %d.%d%s%s\n",
170 version >> 16, version & 0xffff, extra.extraversion,
Jeremy Fitzhardingee57778a2008-06-16 04:30:02 -0700171 xen_feature(XENFEAT_mmu_pt_update_preserve_ad) ? " (preserve-AD)" : "");
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700172}
173
Jeremy Fitzhardingee826fe12009-03-07 17:09:27 -0800174static __read_mostly unsigned int cpuid_leaf1_edx_mask = ~0;
175static __read_mostly unsigned int cpuid_leaf1_ecx_mask = ~0;
176
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100177static void xen_cpuid(unsigned int *ax, unsigned int *bx,
178 unsigned int *cx, unsigned int *dx)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700179{
Jeremy Fitzhardingee826fe12009-03-07 17:09:27 -0800180 unsigned maskecx = ~0;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700181 unsigned maskedx = ~0;
182
183 /*
184 * Mask out inconvenient features, to try and disable as many
185 * unsupported kernel subsystems as possible.
186 */
Jeremy Fitzhardingee826fe12009-03-07 17:09:27 -0800187 if (*ax == 1) {
188 maskecx = cpuid_leaf1_ecx_mask;
189 maskedx = cpuid_leaf1_edx_mask;
190 }
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700191
192 asm(XEN_EMULATE_PREFIX "cpuid"
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100193 : "=a" (*ax),
194 "=b" (*bx),
195 "=c" (*cx),
196 "=d" (*dx)
197 : "0" (*ax), "2" (*cx));
Jeremy Fitzhardingee826fe12009-03-07 17:09:27 -0800198
199 *cx &= maskecx;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100200 *dx &= maskedx;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700201}
202
Jeremy Fitzhardingee826fe12009-03-07 17:09:27 -0800203static __init void xen_init_cpuid_mask(void)
204{
205 unsigned int ax, bx, cx, dx;
206
207 cpuid_leaf1_edx_mask =
208 ~((1 << X86_FEATURE_MCE) | /* disable MCE */
209 (1 << X86_FEATURE_MCA) | /* disable MCA */
210 (1 << X86_FEATURE_ACC)); /* thermal monitoring */
211
212 if (!xen_initial_domain())
213 cpuid_leaf1_edx_mask &=
214 ~((1 << X86_FEATURE_APIC) | /* disable local APIC */
215 (1 << X86_FEATURE_ACPI)); /* disable ACPI */
216
217 ax = 1;
218 xen_cpuid(&ax, &bx, &cx, &dx);
219
220 /* cpuid claims we support xsave; try enabling it to see what happens */
221 if (cx & (1 << (X86_FEATURE_XSAVE % 32))) {
222 unsigned long cr4;
223
224 set_in_cr4(X86_CR4_OSXSAVE);
225
226 cr4 = read_cr4();
227
228 if ((cr4 & X86_CR4_OSXSAVE) == 0)
229 cpuid_leaf1_ecx_mask &= ~(1 << (X86_FEATURE_XSAVE % 32));
230
231 clear_in_cr4(X86_CR4_OSXSAVE);
232 }
233}
234
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700235static void xen_set_debugreg(int reg, unsigned long val)
236{
237 HYPERVISOR_set_debugreg(reg, val);
238}
239
240static unsigned long xen_get_debugreg(int reg)
241{
242 return HYPERVISOR_get_debugreg(reg);
243}
244
Jeremy Fitzhardinge224101e2009-02-18 11:18:57 -0800245static void xen_end_context_switch(struct task_struct *next)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700246{
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700247 xen_mc_flush();
Jeremy Fitzhardinge224101e2009-02-18 11:18:57 -0800248 paravirt_end_context_switch(next);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700249}
250
251static unsigned long xen_store_tr(void)
252{
253 return 0;
254}
255
Jeremy Fitzhardingea05d2eb2008-07-27 08:45:02 -0700256/*
Jeremy Fitzhardingecef43bf2008-07-28 13:33:44 -0700257 * Set the page permissions for a particular virtual address. If the
258 * address is a vmalloc mapping (or other non-linear mapping), then
259 * find the linear mapping of the page and also set its protections to
260 * match.
Jeremy Fitzhardingea05d2eb2008-07-27 08:45:02 -0700261 */
262static void set_aliased_prot(void *v, pgprot_t prot)
263{
264 int level;
265 pte_t *ptep;
266 pte_t pte;
267 unsigned long pfn;
268 struct page *page;
269
270 ptep = lookup_address((unsigned long)v, &level);
271 BUG_ON(ptep == NULL);
272
273 pfn = pte_pfn(*ptep);
274 page = pfn_to_page(pfn);
275
276 pte = pfn_pte(pfn, prot);
277
278 if (HYPERVISOR_update_va_mapping((unsigned long)v, pte, 0))
279 BUG();
280
281 if (!PageHighMem(page)) {
282 void *av = __va(PFN_PHYS(pfn));
283
284 if (av != v)
285 if (HYPERVISOR_update_va_mapping((unsigned long)av, pte, 0))
286 BUG();
287 } else
288 kmap_flush_unused();
289}
290
Jeremy Fitzhardinge38ffbe62008-07-23 14:21:18 -0700291static void xen_alloc_ldt(struct desc_struct *ldt, unsigned entries)
292{
Jeremy Fitzhardingea05d2eb2008-07-27 08:45:02 -0700293 const unsigned entries_per_page = PAGE_SIZE / LDT_ENTRY_SIZE;
Jeremy Fitzhardinge38ffbe62008-07-23 14:21:18 -0700294 int i;
295
Jeremy Fitzhardingea05d2eb2008-07-27 08:45:02 -0700296 for(i = 0; i < entries; i += entries_per_page)
297 set_aliased_prot(ldt + i, PAGE_KERNEL_RO);
Jeremy Fitzhardinge38ffbe62008-07-23 14:21:18 -0700298}
299
300static void xen_free_ldt(struct desc_struct *ldt, unsigned entries)
301{
Jeremy Fitzhardingea05d2eb2008-07-27 08:45:02 -0700302 const unsigned entries_per_page = PAGE_SIZE / LDT_ENTRY_SIZE;
Jeremy Fitzhardinge38ffbe62008-07-23 14:21:18 -0700303 int i;
304
Jeremy Fitzhardingea05d2eb2008-07-27 08:45:02 -0700305 for(i = 0; i < entries; i += entries_per_page)
306 set_aliased_prot(ldt + i, PAGE_KERNEL);
Jeremy Fitzhardinge38ffbe62008-07-23 14:21:18 -0700307}
308
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700309static void xen_set_ldt(const void *addr, unsigned entries)
310{
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700311 struct mmuext_op *op;
312 struct multicall_space mcs = xen_mc_entry(sizeof(*op));
313
314 op = mcs.args;
315 op->cmd = MMUEXT_SET_LDT;
Jan Beulich4dbf7af2008-01-30 13:33:14 +0100316 op->arg1.linear_addr = (unsigned long)addr;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700317 op->arg2.nr_ents = entries;
318
319 MULTI_mmuext_op(mcs.mc, op, 1, NULL, DOMID_SELF);
320
321 xen_mc_issue(PARAVIRT_LAZY_CPU);
322}
323
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100324static void xen_load_gdt(const struct desc_ptr *dtr)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700325{
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700326 unsigned long va = dtr->address;
327 unsigned int size = dtr->size + 1;
328 unsigned pages = (size + PAGE_SIZE - 1) / PAGE_SIZE;
Jeremy Fitzhardinge3ce5fa72009-03-04 15:26:00 -0800329 unsigned long frames[pages];
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700330 int f;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700331
332 /* A GDT can be up to 64k in size, which corresponds to 8192
333 8-byte entries, or 16 4k pages.. */
334
335 BUG_ON(size > 65536);
336 BUG_ON(va & ~PAGE_MASK);
337
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700338 for (f = 0; va < dtr->address + size; va += PAGE_SIZE, f++) {
Jeremy Fitzhardinge6ed6bf422009-03-04 13:02:18 -0800339 int level;
340 pte_t *ptep = lookup_address(va, &level);
341 unsigned long pfn, mfn;
342 void *virt;
343
344 BUG_ON(ptep == NULL);
345
346 pfn = pte_pfn(*ptep);
347 mfn = pfn_to_mfn(pfn);
348 virt = __va(PFN_PHYS(pfn));
349
350 frames[f] = mfn;
Jeremy Fitzhardinge9976b392009-02-27 09:19:26 -0800351
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700352 make_lowmem_page_readonly((void *)va);
Jeremy Fitzhardinge6ed6bf422009-03-04 13:02:18 -0800353 make_lowmem_page_readonly(virt);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700354 }
355
Jeremy Fitzhardinge3ce5fa72009-03-04 15:26:00 -0800356 if (HYPERVISOR_set_gdt(frames, size / sizeof(struct desc_struct)))
357 BUG();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700358}
359
360static void load_TLS_descriptor(struct thread_struct *t,
361 unsigned int cpu, unsigned int i)
362{
363 struct desc_struct *gdt = get_cpu_gdt_table(cpu);
Jeremy Fitzhardinge9976b392009-02-27 09:19:26 -0800364 xmaddr_t maddr = arbitrary_virt_to_machine(&gdt[GDT_ENTRY_TLS_MIN+i]);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700365 struct multicall_space mc = __xen_mc_entry(0);
366
367 MULTI_update_descriptor(mc.mc, maddr.maddr, t->tls_array[i]);
368}
369
370static void xen_load_tls(struct thread_struct *t, unsigned int cpu)
371{
Jeremy Fitzhardinge8b84ad92007-07-17 18:37:06 -0700372 /*
Tejun Heoccbeed32009-02-09 22:17:40 +0900373 * XXX sleazy hack: If we're being called in a lazy-cpu zone
374 * and lazy gs handling is enabled, it means we're in a
375 * context switch, and %gs has just been saved. This means we
376 * can zero it out to prevent faults on exit from the
377 * hypervisor if the next process has no %gs. Either way, it
378 * has been saved, and the new value will get loaded properly.
379 * This will go away as soon as Xen has been modified to not
380 * save/restore %gs for normal hypercalls.
Eduardo Habkost8a954082008-07-08 15:07:10 -0700381 *
382 * On x86_64, this hack is not used for %gs, because gs points
383 * to KERNEL_GS_BASE (and uses it for PDA references), so we
384 * must not zero %gs on x86_64
385 *
386 * For x86_64, we need to zero %fs, otherwise we may get an
387 * exception between the new %fs descriptor being loaded and
388 * %fs being effectively cleared at __switch_to().
Jeremy Fitzhardinge8b84ad92007-07-17 18:37:06 -0700389 */
Eduardo Habkost8a954082008-07-08 15:07:10 -0700390 if (paravirt_get_lazy_mode() == PARAVIRT_LAZY_CPU) {
391#ifdef CONFIG_X86_32
Tejun Heoccbeed32009-02-09 22:17:40 +0900392 lazy_load_gs(0);
Eduardo Habkost8a954082008-07-08 15:07:10 -0700393#else
394 loadsegment(fs, 0);
395#endif
396 }
397
398 xen_mc_batch();
399
400 load_TLS_descriptor(t, cpu, 0);
401 load_TLS_descriptor(t, cpu, 1);
402 load_TLS_descriptor(t, cpu, 2);
403
404 xen_mc_issue(PARAVIRT_LAZY_CPU);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700405}
406
Eduardo Habkosta8fc1082008-07-08 15:07:05 -0700407#ifdef CONFIG_X86_64
408static void xen_load_gs_index(unsigned int idx)
409{
410 if (HYPERVISOR_set_segment_base(SEGBASE_GS_USER_SEL, idx))
411 BUG();
412}
413#endif
414
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700415static void xen_write_ldt_entry(struct desc_struct *dt, int entrynum,
Glauber de Oliveira Costa75b8bb32008-01-30 13:31:13 +0100416 const void *ptr)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700417{
Jeremy Fitzhardingecef43bf2008-07-28 13:33:44 -0700418 xmaddr_t mach_lp = arbitrary_virt_to_machine(&dt[entrynum]);
Glauber de Oliveira Costa75b8bb32008-01-30 13:31:13 +0100419 u64 entry = *(u64 *)ptr;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700420
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700421 preempt_disable();
422
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700423 xen_mc_flush();
424 if (HYPERVISOR_update_descriptor(mach_lp.maddr, entry))
425 BUG();
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700426
427 preempt_enable();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700428}
429
Eduardo Habkoste176d362008-07-08 15:06:59 -0700430static int cvt_gate_to_trap(int vector, const gate_desc *val,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700431 struct trap_info *info)
432{
Jeremy Fitzhardinge6cac5a92009-03-29 19:56:29 -0700433 unsigned long addr;
434
Jeremy Fitzhardinge6d02c422009-03-29 22:57:15 -0700435 if (val->type != GATE_TRAP && val->type != GATE_INTERRUPT)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700436 return 0;
437
438 info->vector = vector;
Jeremy Fitzhardinge6cac5a92009-03-29 19:56:29 -0700439
440 addr = gate_offset(*val);
441#ifdef CONFIG_X86_64
Jeremy Fitzhardingeb80119b2009-04-24 00:22:08 -0700442 /*
443 * Look for known traps using IST, and substitute them
444 * appropriately. The debugger ones are the only ones we care
445 * about. Xen will handle faults like double_fault and
446 * machine_check, so we should never see them. Warn if
447 * there's an unexpected IST-using fault handler.
448 */
Jeremy Fitzhardinge6cac5a92009-03-29 19:56:29 -0700449 if (addr == (unsigned long)debug)
450 addr = (unsigned long)xen_debug;
451 else if (addr == (unsigned long)int3)
452 addr = (unsigned long)xen_int3;
453 else if (addr == (unsigned long)stack_segment)
454 addr = (unsigned long)xen_stack_segment;
Jeremy Fitzhardingeb80119b2009-04-24 00:22:08 -0700455 else if (addr == (unsigned long)double_fault ||
456 addr == (unsigned long)nmi) {
457 /* Don't need to handle these */
458 return 0;
459#ifdef CONFIG_X86_MCE
460 } else if (addr == (unsigned long)machine_check) {
461 return 0;
462#endif
463 } else {
464 /* Some other trap using IST? */
465 if (WARN_ON(val->ist != 0))
466 return 0;
467 }
Jeremy Fitzhardinge6cac5a92009-03-29 19:56:29 -0700468#endif /* CONFIG_X86_64 */
469 info->address = addr;
470
Eduardo Habkoste176d362008-07-08 15:06:59 -0700471 info->cs = gate_segment(*val);
472 info->flags = val->dpl;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700473 /* interrupt gates clear IF */
Jeremy Fitzhardinge6d02c422009-03-29 22:57:15 -0700474 if (val->type == GATE_INTERRUPT)
475 info->flags |= 1 << 2;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700476
477 return 1;
478}
479
480/* Locations of each CPU's IDT */
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100481static DEFINE_PER_CPU(struct desc_ptr, idt_desc);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700482
483/* Set an IDT entry. If the entry is part of the current IDT, then
484 also update Xen. */
Glauber de Oliveira Costa8d947342008-01-30 13:31:12 +0100485static void xen_write_idt_entry(gate_desc *dt, int entrynum, const gate_desc *g)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700486{
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700487 unsigned long p = (unsigned long)&dt[entrynum];
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700488 unsigned long start, end;
489
490 preempt_disable();
491
492 start = __get_cpu_var(idt_desc).address;
493 end = start + __get_cpu_var(idt_desc).size + 1;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700494
495 xen_mc_flush();
496
Glauber de Oliveira Costa8d947342008-01-30 13:31:12 +0100497 native_write_idt_entry(dt, entrynum, g);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700498
499 if (p >= start && (p + 8) <= end) {
500 struct trap_info info[2];
501
502 info[1].address = 0;
503
Eduardo Habkoste176d362008-07-08 15:06:59 -0700504 if (cvt_gate_to_trap(entrynum, g, &info[0]))
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700505 if (HYPERVISOR_set_trap_table(info))
506 BUG();
507 }
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700508
509 preempt_enable();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700510}
511
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100512static void xen_convert_trap_info(const struct desc_ptr *desc,
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700513 struct trap_info *traps)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700514{
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700515 unsigned in, out, count;
516
Eduardo Habkoste176d362008-07-08 15:06:59 -0700517 count = (desc->size+1) / sizeof(gate_desc);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700518 BUG_ON(count > 256);
519
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700520 for (in = out = 0; in < count; in++) {
Eduardo Habkoste176d362008-07-08 15:06:59 -0700521 gate_desc *entry = (gate_desc*)(desc->address) + in;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700522
Eduardo Habkoste176d362008-07-08 15:06:59 -0700523 if (cvt_gate_to_trap(in, entry, &traps[out]))
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700524 out++;
525 }
526 traps[out].address = 0;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700527}
528
529void xen_copy_trap_info(struct trap_info *traps)
530{
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100531 const struct desc_ptr *desc = &__get_cpu_var(idt_desc);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700532
533 xen_convert_trap_info(desc, traps);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700534}
535
536/* Load a new IDT into Xen. In principle this can be per-CPU, so we
537 hold a spinlock to protect the static traps[] array (static because
538 it avoids allocation, and saves stack space). */
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100539static void xen_load_idt(const struct desc_ptr *desc)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700540{
541 static DEFINE_SPINLOCK(lock);
542 static struct trap_info traps[257];
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700543
544 spin_lock(&lock);
545
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700546 __get_cpu_var(idt_desc) = *desc;
547
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700548 xen_convert_trap_info(desc, traps);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700549
550 xen_mc_flush();
551 if (HYPERVISOR_set_trap_table(traps))
552 BUG();
553
554 spin_unlock(&lock);
555}
556
557/* Write a GDT descriptor entry. Ignore LDT descriptors, since
558 they're handled differently. */
559static void xen_write_gdt_entry(struct desc_struct *dt, int entry,
Glauber de Oliveira Costa014b15b2008-01-30 13:31:13 +0100560 const void *desc, int type)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700561{
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700562 preempt_disable();
563
Glauber de Oliveira Costa014b15b2008-01-30 13:31:13 +0100564 switch (type) {
565 case DESC_LDT:
566 case DESC_TSS:
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700567 /* ignore */
568 break;
569
570 default: {
Jeremy Fitzhardinge9976b392009-02-27 09:19:26 -0800571 xmaddr_t maddr = arbitrary_virt_to_machine(&dt[entry]);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700572
573 xen_mc_flush();
Glauber de Oliveira Costa014b15b2008-01-30 13:31:13 +0100574 if (HYPERVISOR_update_descriptor(maddr.maddr, *(u64 *)desc))
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700575 BUG();
576 }
577
578 }
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700579
580 preempt_enable();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700581}
582
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100583static void xen_load_sp0(struct tss_struct *tss,
Jeremy Fitzhardingea05d2eb2008-07-27 08:45:02 -0700584 struct thread_struct *thread)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700585{
586 struct multicall_space mcs = xen_mc_entry(0);
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100587 MULTI_stack_switch(mcs.mc, __KERNEL_DS, thread->sp0);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700588 xen_mc_issue(PARAVIRT_LAZY_CPU);
589}
590
591static void xen_set_iopl_mask(unsigned mask)
592{
593 struct physdev_set_iopl set_iopl;
594
595 /* Force the change at ring 0. */
596 set_iopl.iopl = (mask == 0) ? 1 : (mask >> 12) & 3;
597 HYPERVISOR_physdev_op(PHYSDEVOP_set_iopl, &set_iopl);
598}
599
600static void xen_io_delay(void)
601{
602}
603
604#ifdef CONFIG_X86_LOCAL_APIC
Suresh Siddhaad66dd32008-07-11 13:11:56 -0700605static u32 xen_apic_read(u32 reg)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700606{
607 return 0;
608}
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700609
Suresh Siddhaad66dd32008-07-11 13:11:56 -0700610static void xen_apic_write(u32 reg, u32 val)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700611{
612 /* Warn to see if there's any stray references */
613 WARN_ON(1);
614}
Suresh Siddhaad66dd32008-07-11 13:11:56 -0700615
Suresh Siddhaad66dd32008-07-11 13:11:56 -0700616static u64 xen_apic_icr_read(void)
617{
618 return 0;
619}
620
621static void xen_apic_icr_write(u32 low, u32 id)
622{
623 /* Warn to see if there's any stray references */
624 WARN_ON(1);
625}
626
627static void xen_apic_wait_icr_idle(void)
628{
629 return;
630}
631
Yinghai Lu94a8c3c2008-07-13 22:19:35 -0700632static u32 xen_safe_apic_wait_icr_idle(void)
633{
634 return 0;
635}
636
Yinghai Luc1eeb2d2009-02-16 23:02:14 -0800637static void set_xen_basic_apic_ops(void)
638{
639 apic->read = xen_apic_read;
640 apic->write = xen_apic_write;
641 apic->icr_read = xen_apic_icr_read;
642 apic->icr_write = xen_apic_icr_write;
643 apic->wait_icr_idle = xen_apic_wait_icr_idle;
644 apic->safe_wait_icr_idle = xen_safe_apic_wait_icr_idle;
645}
Suresh Siddhaad66dd32008-07-11 13:11:56 -0700646
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700647#endif
648
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700649
Jeremy Fitzhardinge7b1333a2008-05-26 23:31:01 +0100650static void xen_clts(void)
651{
652 struct multicall_space mcs;
653
654 mcs = xen_mc_entry(0);
655
656 MULTI_fpu_taskswitch(mcs.mc, 0);
657
658 xen_mc_issue(PARAVIRT_LAZY_CPU);
659}
660
Jeremy Fitzhardingea789ed52009-04-24 00:26:50 -0700661static DEFINE_PER_CPU(unsigned long, xen_cr0_value);
662
663static unsigned long xen_read_cr0(void)
664{
665 unsigned long cr0 = percpu_read(xen_cr0_value);
666
667 if (unlikely(cr0 == 0)) {
668 cr0 = native_read_cr0();
669 percpu_write(xen_cr0_value, cr0);
670 }
671
672 return cr0;
673}
674
Jeremy Fitzhardinge7b1333a2008-05-26 23:31:01 +0100675static void xen_write_cr0(unsigned long cr0)
676{
677 struct multicall_space mcs;
678
Jeremy Fitzhardingea789ed52009-04-24 00:26:50 -0700679 percpu_write(xen_cr0_value, cr0);
680
Jeremy Fitzhardinge7b1333a2008-05-26 23:31:01 +0100681 /* Only pay attention to cr0.TS; everything else is
682 ignored. */
683 mcs = xen_mc_entry(0);
684
685 MULTI_fpu_taskswitch(mcs.mc, (cr0 & X86_CR0_TS) != 0);
686
687 xen_mc_issue(PARAVIRT_LAZY_CPU);
688}
689
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700690static void xen_write_cr4(unsigned long cr4)
691{
Jeremy Fitzhardinge2956a352008-05-26 23:31:04 +0100692 cr4 &= ~X86_CR4_PGE;
693 cr4 &= ~X86_CR4_PSE;
694
695 native_write_cr4(cr4);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700696}
697
Jeremy Fitzhardinge11539682008-07-08 15:07:16 -0700698static int xen_write_msr_safe(unsigned int msr, unsigned low, unsigned high)
699{
700 int ret;
701
702 ret = 0;
703
Tejf63c2f22008-12-16 11:56:06 -0800704 switch (msr) {
Jeremy Fitzhardinge11539682008-07-08 15:07:16 -0700705#ifdef CONFIG_X86_64
706 unsigned which;
707 u64 base;
708
709 case MSR_FS_BASE: which = SEGBASE_FS; goto set;
710 case MSR_KERNEL_GS_BASE: which = SEGBASE_GS_USER; goto set;
711 case MSR_GS_BASE: which = SEGBASE_GS_KERNEL; goto set;
712
713 set:
714 base = ((u64)high << 32) | low;
715 if (HYPERVISOR_set_segment_base(which, base) != 0)
716 ret = -EFAULT;
717 break;
718#endif
Jeremy Fitzhardinged89961e2008-07-24 13:48:58 -0700719
720 case MSR_STAR:
721 case MSR_CSTAR:
722 case MSR_LSTAR:
723 case MSR_SYSCALL_MASK:
724 case MSR_IA32_SYSENTER_CS:
725 case MSR_IA32_SYSENTER_ESP:
726 case MSR_IA32_SYSENTER_EIP:
727 /* Fast syscall setup is all done in hypercalls, so
728 these are all ignored. Stub them out here to stop
729 Xen console noise. */
730 break;
731
Jeremy Fitzhardinge11539682008-07-08 15:07:16 -0700732 default:
733 ret = native_write_msr_safe(msr, low, high);
734 }
735
736 return ret;
737}
738
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +0100739void xen_setup_shared_info(void)
Jeremy Fitzhardinge2e8fe712008-03-17 16:36:53 -0700740{
741 if (!xen_feature(XENFEAT_auto_translated_physmap)) {
Jeremy Fitzhardinge15664f92008-07-08 15:06:47 -0700742 set_fixmap(FIX_PARAVIRT_BOOTMAP,
743 xen_start_info->shared_info);
Jeremy Fitzhardinge2e8fe712008-03-17 16:36:53 -0700744
Jeremy Fitzhardinge15664f92008-07-08 15:06:47 -0700745 HYPERVISOR_shared_info =
746 (struct shared_info *)fix_to_virt(FIX_PARAVIRT_BOOTMAP);
Jeremy Fitzhardinge2e8fe712008-03-17 16:36:53 -0700747 } else
748 HYPERVISOR_shared_info =
749 (struct shared_info *)__va(xen_start_info->shared_info);
750
751#ifndef CONFIG_SMP
752 /* In UP this is as good a place as any to set up shared info */
753 xen_setup_vcpu_info_placement();
754#endif
Jeremy Fitzhardinged5edbc12008-05-26 23:31:22 +0100755
756 xen_setup_mfn_list_list();
Jeremy Fitzhardinge2e8fe712008-03-17 16:36:53 -0700757}
758
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700759/* This is called once we have the cpu_possible_map */
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +0100760void xen_setup_vcpu_info_placement(void)
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700761{
762 int cpu;
763
764 for_each_possible_cpu(cpu)
765 xen_vcpu_setup(cpu);
766
767 /* xen_vcpu_setup managed to place the vcpu_info within the
768 percpu area for all cpus, so make use of it */
769 if (have_vcpu_info_placement) {
770 printk(KERN_INFO "Xen: using vcpu_info placement\n");
771
Jeremy Fitzhardingeecb93d12009-01-28 14:35:05 -0800772 pv_irq_ops.save_fl = __PV_IS_CALLEE_SAVE(xen_save_fl_direct);
773 pv_irq_ops.restore_fl = __PV_IS_CALLEE_SAVE(xen_restore_fl_direct);
774 pv_irq_ops.irq_disable = __PV_IS_CALLEE_SAVE(xen_irq_disable_direct);
775 pv_irq_ops.irq_enable = __PV_IS_CALLEE_SAVE(xen_irq_enable_direct);
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700776 pv_mmu_ops.read_cr2 = xen_read_cr2_direct;
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700777 }
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700778}
779
Andi Kleenab144f52007-08-10 22:31:03 +0200780static unsigned xen_patch(u8 type, u16 clobbers, void *insnbuf,
781 unsigned long addr, unsigned len)
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700782{
783 char *start, *end, *reloc;
784 unsigned ret;
785
786 start = end = reloc = NULL;
787
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700788#define SITE(op, x) \
789 case PARAVIRT_PATCH(op.x): \
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700790 if (have_vcpu_info_placement) { \
791 start = (char *)xen_##x##_direct; \
792 end = xen_##x##_direct_end; \
793 reloc = xen_##x##_direct_reloc; \
794 } \
795 goto patch_site
796
797 switch (type) {
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700798 SITE(pv_irq_ops, irq_enable);
799 SITE(pv_irq_ops, irq_disable);
800 SITE(pv_irq_ops, save_fl);
801 SITE(pv_irq_ops, restore_fl);
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700802#undef SITE
803
804 patch_site:
805 if (start == NULL || (end-start) > len)
806 goto default_patch;
807
Andi Kleenab144f52007-08-10 22:31:03 +0200808 ret = paravirt_patch_insns(insnbuf, len, start, end);
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700809
810 /* Note: because reloc is assigned from something that
811 appears to be an array, gcc assumes it's non-null,
812 but doesn't know its relationship with start and
813 end. */
814 if (reloc > start && reloc < end) {
815 int reloc_off = reloc - start;
Andi Kleenab144f52007-08-10 22:31:03 +0200816 long *relocp = (long *)(insnbuf + reloc_off);
817 long delta = start - (char *)addr;
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700818
819 *relocp += delta;
820 }
821 break;
822
823 default_patch:
824 default:
Andi Kleenab144f52007-08-10 22:31:03 +0200825 ret = paravirt_patch_default(type, clobbers, insnbuf,
826 addr, len);
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700827 break;
828 }
829
830 return ret;
831}
832
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700833static const struct pv_info xen_info __initdata = {
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700834 .paravirt_enabled = 1,
835 .shared_kernel_pmd = 0,
836
837 .name = "Xen",
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700838};
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700839
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700840static const struct pv_init_ops xen_init_ops __initdata = {
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700841 .patch = xen_patch,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700842
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700843 .banner = xen_banner,
Jeremy Fitzhardingee2426cf2008-05-31 01:24:27 +0100844 .post_allocator_init = xen_post_allocator_init,
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700845};
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700846
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700847static const struct pv_time_ops xen_time_ops __initdata = {
Jeremy Fitzhardinge15c84732007-07-17 18:37:05 -0700848 .time_init = xen_time_init,
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700849
Jeremy Fitzhardinge15c84732007-07-17 18:37:05 -0700850 .set_wallclock = xen_set_wallclock,
851 .get_wallclock = xen_get_wallclock,
Alok Katariae93ef942008-07-01 11:43:36 -0700852 .get_tsc_khz = xen_tsc_khz,
Jeremy Fitzhardingeab550282007-07-17 18:37:05 -0700853 .sched_clock = xen_sched_clock,
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700854};
Jeremy Fitzhardinge15c84732007-07-17 18:37:05 -0700855
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700856static const struct pv_cpu_ops xen_cpu_ops __initdata = {
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700857 .cpuid = xen_cpuid,
858
859 .set_debugreg = xen_set_debugreg,
860 .get_debugreg = xen_get_debugreg,
861
Jeremy Fitzhardinge7b1333a2008-05-26 23:31:01 +0100862 .clts = xen_clts,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700863
Jeremy Fitzhardingea789ed52009-04-24 00:26:50 -0700864 .read_cr0 = xen_read_cr0,
Jeremy Fitzhardinge7b1333a2008-05-26 23:31:01 +0100865 .write_cr0 = xen_write_cr0,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700866
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700867 .read_cr4 = native_read_cr4,
868 .read_cr4_safe = native_read_cr4_safe,
869 .write_cr4 = xen_write_cr4,
870
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700871 .wbinvd = native_wbinvd,
872
873 .read_msr = native_read_msr_safe,
Jeremy Fitzhardinge11539682008-07-08 15:07:16 -0700874 .write_msr = xen_write_msr_safe,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700875 .read_tsc = native_read_tsc,
876 .read_pmc = native_read_pmc,
877
Jeremy Fitzhardinge81e103f2008-04-17 17:40:51 +0200878 .iret = xen_iret,
Jeremy Fitzhardinged75cd22f2008-06-25 00:19:26 -0400879 .irq_enable_sysexit = xen_sysexit,
Jeremy Fitzhardinge6fcac6d2008-07-08 15:07:14 -0700880#ifdef CONFIG_X86_64
881 .usergs_sysret32 = xen_sysret32,
882 .usergs_sysret64 = xen_sysret64,
883#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700884
885 .load_tr_desc = paravirt_nop,
886 .set_ldt = xen_set_ldt,
887 .load_gdt = xen_load_gdt,
888 .load_idt = xen_load_idt,
889 .load_tls = xen_load_tls,
Eduardo Habkosta8fc1082008-07-08 15:07:05 -0700890#ifdef CONFIG_X86_64
891 .load_gs_index = xen_load_gs_index,
892#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700893
Jeremy Fitzhardinge38ffbe62008-07-23 14:21:18 -0700894 .alloc_ldt = xen_alloc_ldt,
895 .free_ldt = xen_free_ldt,
896
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700897 .store_gdt = native_store_gdt,
898 .store_idt = native_store_idt,
899 .store_tr = xen_store_tr,
900
901 .write_ldt_entry = xen_write_ldt_entry,
902 .write_gdt_entry = xen_write_gdt_entry,
903 .write_idt_entry = xen_write_idt_entry,
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100904 .load_sp0 = xen_load_sp0,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700905
906 .set_iopl_mask = xen_set_iopl_mask,
907 .io_delay = xen_io_delay,
908
Jeremy Fitzhardinge952d1d72008-07-08 15:07:01 -0700909 /* Xen takes care of %gs when switching to usermode for us */
910 .swapgs = paravirt_nop,
911
Jeremy Fitzhardinge224101e2009-02-18 11:18:57 -0800912 .start_context_switch = paravirt_start_context_switch,
913 .end_context_switch = xen_end_context_switch,
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700914};
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700915
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700916static const struct pv_apic_ops xen_apic_ops __initdata = {
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700917#ifdef CONFIG_X86_LOCAL_APIC
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700918 .setup_boot_clock = paravirt_nop,
919 .setup_secondary_clock = paravirt_nop,
920 .startup_ipi_hook = paravirt_nop,
921#endif
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700922};
923
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -0700924static void xen_reboot(int reason)
925{
Jeremy Fitzhardinge349c7092008-05-26 23:31:02 +0100926 struct sched_shutdown r = { .reason = reason };
927
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -0700928#ifdef CONFIG_SMP
929 smp_send_stop();
930#endif
931
Jeremy Fitzhardinge349c7092008-05-26 23:31:02 +0100932 if (HYPERVISOR_sched_op(SCHEDOP_shutdown, &r))
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -0700933 BUG();
934}
935
936static void xen_restart(char *msg)
937{
938 xen_reboot(SHUTDOWN_reboot);
939}
940
941static void xen_emergency_restart(void)
942{
943 xen_reboot(SHUTDOWN_reboot);
944}
945
946static void xen_machine_halt(void)
947{
948 xen_reboot(SHUTDOWN_poweroff);
949}
950
951static void xen_crash_shutdown(struct pt_regs *regs)
952{
953 xen_reboot(SHUTDOWN_crash);
954}
955
956static const struct machine_ops __initdata xen_machine_ops = {
957 .restart = xen_restart,
958 .halt = xen_machine_halt,
959 .power_off = xen_machine_halt,
960 .shutdown = xen_machine_halt,
961 .crash_shutdown = xen_crash_shutdown,
962 .emergency_restart = xen_emergency_restart,
963};
964
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700965/* First C function to be called on Xen boot */
966asmlinkage void __init xen_start_kernel(void)
967{
968 pgd_t *pgd;
969
970 if (!xen_start_info)
971 return;
972
Jeremy Fitzhardinge6e833582008-08-19 13:16:17 -0700973 xen_domain_type = XEN_PV_DOMAIN;
974
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700975 /* Install Xen paravirt ops */
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700976 pv_info = xen_info;
977 pv_init_ops = xen_init_ops;
978 pv_time_ops = xen_time_ops;
979 pv_cpu_ops = xen_cpu_ops;
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700980 pv_apic_ops = xen_apic_ops;
981 pv_mmu_ops = xen_mmu_ops;
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700982
Thomas Gleixner6b18ae32009-08-20 10:19:54 +0200983 x86_init.resources.memory_setup = xen_memory_setup;
Thomas Gleixner42bbdb42009-08-20 13:04:10 +0200984 x86_init.oem.arch_setup = xen_arch_setup;
Thomas Gleixner6b18ae32009-08-20 10:19:54 +0200985
Jeremy Fitzhardingece2eef32009-08-17 12:26:53 -0700986#ifdef CONFIG_X86_64
987 /*
988 * Setup percpu state. We only need to do this for 64-bit
989 * because 32-bit already has %fs set properly.
990 */
991 load_percpu_segment(0);
992#endif
Jeremy Fitzhardinge0d1edf42008-07-28 11:53:57 -0700993
Jeremy Fitzhardingece2eef32009-08-17 12:26:53 -0700994 xen_init_irq_ops();
Jeremy Fitzhardingee826fe12009-03-07 17:09:27 -0800995 xen_init_cpuid_mask();
996
Yinghai Lu94a8c3c2008-07-13 22:19:35 -0700997#ifdef CONFIG_X86_LOCAL_APIC
Suresh Siddhaad66dd32008-07-11 13:11:56 -0700998 /*
Yinghai Lu94a8c3c2008-07-13 22:19:35 -0700999 * set up the basic apic ops.
Suresh Siddhaad66dd32008-07-11 13:11:56 -07001000 */
Yinghai Luc1eeb2d2009-02-16 23:02:14 -08001001 set_xen_basic_apic_ops();
Suresh Siddhaad66dd32008-07-11 13:11:56 -07001002#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001003
Jeremy Fitzhardingece2eef32009-08-17 12:26:53 -07001004 xen_setup_features();
1005
Jeremy Fitzhardingee57778a2008-06-16 04:30:02 -07001006 if (xen_feature(XENFEAT_mmu_pt_update_preserve_ad)) {
1007 pv_mmu_ops.ptep_modify_prot_start = xen_ptep_modify_prot_start;
1008 pv_mmu_ops.ptep_modify_prot_commit = xen_ptep_modify_prot_commit;
1009 }
1010
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -07001011 machine_ops = xen_machine_ops;
1012
Jeremy Fitzhardinge38341432009-02-02 13:55:31 -08001013 /*
1014 * The only reliable way to retain the initial address of the
1015 * percpu gdt_page is to remember it here, so we can go and
1016 * mark it RW later, when the initial percpu area is freed.
1017 */
1018 xen_initial_gdt = &per_cpu(gdt_page, 0);
Jeremy Fitzhardinge795f99b2009-01-30 17:47:54 +09001019
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -07001020 xen_smp_init();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001021
1022 /* Get mfn list */
1023 if (!xen_feature(XENFEAT_auto_translated_physmap))
Jeremy Fitzhardinged451bb72008-05-26 23:31:18 +01001024 xen_build_dynamic_phys_to_machine();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001025
1026 pgd = (pgd_t *)xen_start_info->pt_base;
1027
Jeremy Fitzhardingeeb179e42008-06-16 15:01:53 -07001028 /* Prevent unwanted bits from being set in PTEs. */
1029 __supported_pte_mask &= ~_PAGE_GLOBAL;
Jeremy Fitzhardinge6e833582008-08-19 13:16:17 -07001030 if (!xen_initial_domain())
Jeremy Fitzhardingeeb179e42008-06-16 15:01:53 -07001031 __supported_pte_mask &= ~(_PAGE_PWT | _PAGE_PCD);
1032
Jeremy Fitzhardinge707ebbc2009-03-27 11:29:02 -07001033#ifdef CONFIG_X86_64
1034 /* Work out if we support NX */
1035 check_efer();
1036#endif
1037
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001038 /* Don't do the full vcpu_info placement stuff until we have a
1039 possible map and a non-dummy shared_info. */
1040 per_cpu(xen_vcpu, 0) = &HYPERVISOR_shared_info->vcpu_info[0];
1041
Jeremy Fitzhardinge55d80852009-02-25 09:42:25 -08001042 local_irq_disable();
1043 early_boot_irqs_off();
1044
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001045 xen_raw_console_write("mapping kernel into physical memory\n");
Jeremy Fitzhardinged114e1982008-07-08 15:06:52 -07001046 pgd = xen_setup_kernel_pagetable(pgd, xen_start_info->nr_pages);
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001047
1048 init_mm.pgd = pgd;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001049
1050 /* keep using Xen gdt for now; no urgent need to change it */
1051
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001052 pv_info.kernel_rpl = 1;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001053 if (xen_feature(XENFEAT_supervisor_mode_kernel))
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001054 pv_info.kernel_rpl = 0;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001055
1056 /* set the limit of our address space */
Jeremy Fitzhardingefb1d8402007-10-16 11:51:31 -07001057 xen_reserve_top();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001058
Jeremy Fitzhardinge7d087b62008-07-08 15:06:48 -07001059#ifdef CONFIG_X86_32
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001060 /* set up basic CPUID stuff */
1061 cpu_detect(&new_cpu_data);
1062 new_cpu_data.hard_math = 1;
1063 new_cpu_data.x86_capability[0] = cpuid_edx(1);
Jeremy Fitzhardinge7d087b62008-07-08 15:06:48 -07001064#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001065
1066 /* Poke various useful things into boot_params */
H. Peter Anvin30c82642007-10-15 17:13:22 -07001067 boot_params.hdr.type_of_loader = (9 << 4) | 0;
1068 boot_params.hdr.ramdisk_image = xen_start_info->mod_start
1069 ? __pa(xen_start_info->mod_start) : 0;
1070 boot_params.hdr.ramdisk_size = xen_start_info->mod_len;
Jeremy Fitzhardingeb7c3c5c2008-07-08 15:07:07 -07001071 boot_params.hdr.cmd_line_ptr = __pa(xen_start_info->cmd_line);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001072
Jeremy Fitzhardinge6e833582008-08-19 13:16:17 -07001073 if (!xen_initial_domain()) {
Jeremy Fitzhardinge83abc702008-05-26 23:31:12 +01001074 add_preferred_console("xenboot", 0, NULL);
Markus Armbruster9e124fe2008-05-26 23:31:07 +01001075 add_preferred_console("tty", 0, NULL);
Markus Armbrusterb8c2d3d2008-02-27 14:56:35 +01001076 add_preferred_console("hvc", 0, NULL);
Markus Armbruster9e124fe2008-05-26 23:31:07 +01001077 }
Markus Armbrusterb8c2d3d2008-02-27 14:56:35 +01001078
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001079 xen_raw_console_write("about to get started...\n");
1080
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001081 /* Start the world */
Jeremy Fitzhardingef5d36de2008-07-08 15:06:39 -07001082#ifdef CONFIG_X86_32
Yinghai Luf0d43102008-05-29 12:56:36 -07001083 i386_start_kernel();
Jeremy Fitzhardingef5d36de2008-07-08 15:06:39 -07001084#else
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001085 x86_64_start_reservations((char *)__pa_symbol(&boot_params));
Jeremy Fitzhardingef5d36de2008-07-08 15:06:39 -07001086#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001087}