blob: da33e0c5870d94b9c8828e1ca0d511ac7c43deee [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>
23#include <linux/bootmem.h>
24#include <linux/module.h>
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -070025#include <linux/mm.h>
26#include <linux/page-flags.h>
27#include <linux/highmem.h>
Markus Armbrusterb8c2d3d2008-02-27 14:56:35 +010028#include <linux/console.h>
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070029
30#include <xen/interface/xen.h>
Jeremy Fitzhardingeecbf29c2008-12-16 12:37:07 -080031#include <xen/interface/version.h>
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070032#include <xen/interface/physdev.h>
33#include <xen/interface/vcpu.h>
34#include <xen/features.h>
35#include <xen/page.h>
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -070036#include <xen/hvc-console.h>
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070037
38#include <asm/paravirt.h>
Ingo Molnar7b6aa332009-02-17 13:58:15 +010039#include <asm/apic.h>
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070040#include <asm/page.h>
41#include <asm/xen/hypercall.h>
42#include <asm/xen/hypervisor.h>
43#include <asm/fixmap.h>
44#include <asm/processor.h>
Jeremy Fitzhardinge11539682008-07-08 15:07:16 -070045#include <asm/msr-index.h>
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070046#include <asm/setup.h>
47#include <asm/desc.h>
48#include <asm/pgtable.h>
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070049#include <asm/tlbflush.h>
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -070050#include <asm/reboot.h>
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070051
52#include "xen-ops.h"
Jeremy Fitzhardinge3b827c12007-07-17 18:37:04 -070053#include "mmu.h"
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070054#include "multicalls.h"
55
56EXPORT_SYMBOL_GPL(hypercall_page);
57
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070058DEFINE_PER_CPU(struct vcpu_info *, xen_vcpu);
59DEFINE_PER_CPU(struct vcpu_info, xen_vcpu_info);
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -070060
Jeremy Fitzhardinge6e833582008-08-19 13:16:17 -070061enum xen_domain_type xen_domain_type = XEN_NATIVE;
62EXPORT_SYMBOL_GPL(xen_domain_type);
63
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070064struct start_info *xen_start_info;
65EXPORT_SYMBOL_GPL(xen_start_info);
66
Jeremy Fitzhardingea0d695c2008-05-26 23:31:21 +010067struct shared_info xen_dummy_shared_info;
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -070068
Jeremy Fitzhardinge38341432009-02-02 13:55:31 -080069void *xen_initial_gdt;
70
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -070071/*
72 * Point at some empty memory to start with. We map the real shared_info
73 * page as soon as fixmap is up and running.
74 */
Jeremy Fitzhardingea0d695c2008-05-26 23:31:21 +010075struct shared_info *HYPERVISOR_shared_info = (void *)&xen_dummy_shared_info;
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -070076
77/*
78 * Flag to determine whether vcpu info placement is available on all
79 * VCPUs. We assume it is to start with, and then set it to zero on
80 * the first failure. This is because it can succeed on some VCPUs
81 * and not others, since it can involve hypervisor memory allocation,
82 * or because the guest failed to guarantee all the appropriate
83 * constraints on all VCPUs (ie buffer can't cross a page boundary).
84 *
85 * Note that any particular CPU may be using a placed vcpu structure,
86 * but we can only optimise if the all are.
87 *
88 * 0: not available, 1: available
89 */
Jeremy Fitzhardingee4d04072009-02-02 13:55:54 -080090static int have_vcpu_info_placement = 1;
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -070091
Jeremy Fitzhardinge9c7a7942008-05-31 01:33:02 +010092static void xen_vcpu_setup(int cpu)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070093{
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -070094 struct vcpu_register_vcpu_info info;
95 int err;
96 struct vcpu_info *vcpup;
97
Jeremy Fitzhardingea0d695c2008-05-26 23:31:21 +010098 BUG_ON(HYPERVISOR_shared_info == &xen_dummy_shared_info);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070099 per_cpu(xen_vcpu, cpu) = &HYPERVISOR_shared_info->vcpu_info[cpu];
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700100
101 if (!have_vcpu_info_placement)
102 return; /* already tested, not available */
103
104 vcpup = &per_cpu(xen_vcpu_info, cpu);
105
Jeremy Fitzhardinge9976b392009-02-27 09:19:26 -0800106 info.mfn = arbitrary_virt_to_mfn(vcpup);
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700107 info.offset = offset_in_page(vcpup);
108
Jeremy Fitzhardingee3d26972007-10-16 11:51:31 -0700109 printk(KERN_DEBUG "trying to map vcpu_info %d at %p, mfn %llx, offset %d\n",
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700110 cpu, vcpup, info.mfn, info.offset);
111
112 /* Check to see if the hypervisor will put the vcpu_info
113 structure where we want it, which allows direct access via
114 a percpu-variable. */
115 err = HYPERVISOR_vcpu_op(VCPUOP_register_vcpu_info, cpu, &info);
116
117 if (err) {
118 printk(KERN_DEBUG "register_vcpu_info failed: err=%d\n", err);
119 have_vcpu_info_placement = 0;
120 } else {
121 /* This cpu is using the registered vcpu info, even if
122 later ones fail to. */
123 per_cpu(xen_vcpu, cpu) = vcpup;
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700124
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700125 printk(KERN_DEBUG "cpu %d using vcpu_info at %p\n",
126 cpu, vcpup);
127 }
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700128}
129
Jeremy Fitzhardinge9c7a7942008-05-31 01:33:02 +0100130/*
131 * On restore, set the vcpu placement up again.
132 * If it fails, then we're in a bad state, since
133 * we can't back out from using it...
134 */
135void xen_vcpu_restore(void)
136{
137 if (have_vcpu_info_placement) {
138 int cpu;
139
140 for_each_online_cpu(cpu) {
141 bool other_cpu = (cpu != smp_processor_id());
142
143 if (other_cpu &&
144 HYPERVISOR_vcpu_op(VCPUOP_down, cpu, NULL))
145 BUG();
146
147 xen_vcpu_setup(cpu);
148
149 if (other_cpu &&
150 HYPERVISOR_vcpu_op(VCPUOP_up, cpu, NULL))
151 BUG();
152 }
153
154 BUG_ON(!have_vcpu_info_placement);
155 }
156}
157
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700158static void __init xen_banner(void)
159{
Jeremy Fitzhardinge95c7c232008-07-15 13:42:34 -0700160 unsigned version = HYPERVISOR_xen_version(XENVER_version, NULL);
161 struct xen_extraversion extra;
162 HYPERVISOR_xen_version(XENVER_extraversion, &extra);
163
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700164 printk(KERN_INFO "Booting paravirtualized kernel on %s\n",
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700165 pv_info.name);
Jeremy Fitzhardinge95c7c232008-07-15 13:42:34 -0700166 printk(KERN_INFO "Xen version: %d.%d%s%s\n",
167 version >> 16, version & 0xffff, extra.extraversion,
Jeremy Fitzhardingee57778a2008-06-16 04:30:02 -0700168 xen_feature(XENFEAT_mmu_pt_update_preserve_ad) ? " (preserve-AD)" : "");
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700169}
170
Jeremy Fitzhardingee826fe12009-03-07 17:09:27 -0800171static __read_mostly unsigned int cpuid_leaf1_edx_mask = ~0;
172static __read_mostly unsigned int cpuid_leaf1_ecx_mask = ~0;
173
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100174static void xen_cpuid(unsigned int *ax, unsigned int *bx,
175 unsigned int *cx, unsigned int *dx)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700176{
Jeremy Fitzhardingee826fe12009-03-07 17:09:27 -0800177 unsigned maskecx = ~0;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700178 unsigned maskedx = ~0;
179
180 /*
181 * Mask out inconvenient features, to try and disable as many
182 * unsupported kernel subsystems as possible.
183 */
Jeremy Fitzhardingee826fe12009-03-07 17:09:27 -0800184 if (*ax == 1) {
185 maskecx = cpuid_leaf1_ecx_mask;
186 maskedx = cpuid_leaf1_edx_mask;
187 }
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700188
189 asm(XEN_EMULATE_PREFIX "cpuid"
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100190 : "=a" (*ax),
191 "=b" (*bx),
192 "=c" (*cx),
193 "=d" (*dx)
194 : "0" (*ax), "2" (*cx));
Jeremy Fitzhardingee826fe12009-03-07 17:09:27 -0800195
196 *cx &= maskecx;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100197 *dx &= maskedx;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700198}
199
Jeremy Fitzhardingee826fe12009-03-07 17:09:27 -0800200static __init void xen_init_cpuid_mask(void)
201{
202 unsigned int ax, bx, cx, dx;
203
204 cpuid_leaf1_edx_mask =
205 ~((1 << X86_FEATURE_MCE) | /* disable MCE */
206 (1 << X86_FEATURE_MCA) | /* disable MCA */
207 (1 << X86_FEATURE_ACC)); /* thermal monitoring */
208
209 if (!xen_initial_domain())
210 cpuid_leaf1_edx_mask &=
211 ~((1 << X86_FEATURE_APIC) | /* disable local APIC */
212 (1 << X86_FEATURE_ACPI)); /* disable ACPI */
213
214 ax = 1;
215 xen_cpuid(&ax, &bx, &cx, &dx);
216
217 /* cpuid claims we support xsave; try enabling it to see what happens */
218 if (cx & (1 << (X86_FEATURE_XSAVE % 32))) {
219 unsigned long cr4;
220
221 set_in_cr4(X86_CR4_OSXSAVE);
222
223 cr4 = read_cr4();
224
225 if ((cr4 & X86_CR4_OSXSAVE) == 0)
226 cpuid_leaf1_ecx_mask &= ~(1 << (X86_FEATURE_XSAVE % 32));
227
228 clear_in_cr4(X86_CR4_OSXSAVE);
229 }
230}
231
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700232static void xen_set_debugreg(int reg, unsigned long val)
233{
234 HYPERVISOR_set_debugreg(reg, val);
235}
236
237static unsigned long xen_get_debugreg(int reg)
238{
239 return HYPERVISOR_get_debugreg(reg);
240}
241
Jeremy Fitzhardinge224101e2009-02-18 11:18:57 -0800242static void xen_end_context_switch(struct task_struct *next)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700243{
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700244 xen_mc_flush();
Jeremy Fitzhardinge224101e2009-02-18 11:18:57 -0800245 paravirt_end_context_switch(next);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700246}
247
248static unsigned long xen_store_tr(void)
249{
250 return 0;
251}
252
Jeremy Fitzhardingea05d2eb2008-07-27 08:45:02 -0700253/*
Jeremy Fitzhardingecef43bf2008-07-28 13:33:44 -0700254 * Set the page permissions for a particular virtual address. If the
255 * address is a vmalloc mapping (or other non-linear mapping), then
256 * find the linear mapping of the page and also set its protections to
257 * match.
Jeremy Fitzhardingea05d2eb2008-07-27 08:45:02 -0700258 */
259static void set_aliased_prot(void *v, pgprot_t prot)
260{
261 int level;
262 pte_t *ptep;
263 pte_t pte;
264 unsigned long pfn;
265 struct page *page;
266
267 ptep = lookup_address((unsigned long)v, &level);
268 BUG_ON(ptep == NULL);
269
270 pfn = pte_pfn(*ptep);
271 page = pfn_to_page(pfn);
272
273 pte = pfn_pte(pfn, prot);
274
275 if (HYPERVISOR_update_va_mapping((unsigned long)v, pte, 0))
276 BUG();
277
278 if (!PageHighMem(page)) {
279 void *av = __va(PFN_PHYS(pfn));
280
281 if (av != v)
282 if (HYPERVISOR_update_va_mapping((unsigned long)av, pte, 0))
283 BUG();
284 } else
285 kmap_flush_unused();
286}
287
Jeremy Fitzhardinge38ffbe62008-07-23 14:21:18 -0700288static void xen_alloc_ldt(struct desc_struct *ldt, unsigned entries)
289{
Jeremy Fitzhardingea05d2eb2008-07-27 08:45:02 -0700290 const unsigned entries_per_page = PAGE_SIZE / LDT_ENTRY_SIZE;
Jeremy Fitzhardinge38ffbe62008-07-23 14:21:18 -0700291 int i;
292
Jeremy Fitzhardingea05d2eb2008-07-27 08:45:02 -0700293 for(i = 0; i < entries; i += entries_per_page)
294 set_aliased_prot(ldt + i, PAGE_KERNEL_RO);
Jeremy Fitzhardinge38ffbe62008-07-23 14:21:18 -0700295}
296
297static void xen_free_ldt(struct desc_struct *ldt, unsigned entries)
298{
Jeremy Fitzhardingea05d2eb2008-07-27 08:45:02 -0700299 const unsigned entries_per_page = PAGE_SIZE / LDT_ENTRY_SIZE;
Jeremy Fitzhardinge38ffbe62008-07-23 14:21:18 -0700300 int i;
301
Jeremy Fitzhardingea05d2eb2008-07-27 08:45:02 -0700302 for(i = 0; i < entries; i += entries_per_page)
303 set_aliased_prot(ldt + i, PAGE_KERNEL);
Jeremy Fitzhardinge38ffbe62008-07-23 14:21:18 -0700304}
305
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700306static void xen_set_ldt(const void *addr, unsigned entries)
307{
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700308 struct mmuext_op *op;
309 struct multicall_space mcs = xen_mc_entry(sizeof(*op));
310
311 op = mcs.args;
312 op->cmd = MMUEXT_SET_LDT;
Jan Beulich4dbf7af2008-01-30 13:33:14 +0100313 op->arg1.linear_addr = (unsigned long)addr;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700314 op->arg2.nr_ents = entries;
315
316 MULTI_mmuext_op(mcs.mc, op, 1, NULL, DOMID_SELF);
317
318 xen_mc_issue(PARAVIRT_LAZY_CPU);
319}
320
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100321static void xen_load_gdt(const struct desc_ptr *dtr)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700322{
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700323 unsigned long va = dtr->address;
324 unsigned int size = dtr->size + 1;
325 unsigned pages = (size + PAGE_SIZE - 1) / PAGE_SIZE;
Jeremy Fitzhardinge3ce5fa72009-03-04 15:26:00 -0800326 unsigned long frames[pages];
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700327 int f;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700328
329 /* A GDT can be up to 64k in size, which corresponds to 8192
330 8-byte entries, or 16 4k pages.. */
331
332 BUG_ON(size > 65536);
333 BUG_ON(va & ~PAGE_MASK);
334
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700335 for (f = 0; va < dtr->address + size; va += PAGE_SIZE, f++) {
Jeremy Fitzhardinge6ed6bf42009-03-04 13:02:18 -0800336 int level;
337 pte_t *ptep = lookup_address(va, &level);
338 unsigned long pfn, mfn;
339 void *virt;
340
341 BUG_ON(ptep == NULL);
342
343 pfn = pte_pfn(*ptep);
344 mfn = pfn_to_mfn(pfn);
345 virt = __va(PFN_PHYS(pfn));
346
347 frames[f] = mfn;
Jeremy Fitzhardinge9976b392009-02-27 09:19:26 -0800348
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700349 make_lowmem_page_readonly((void *)va);
Jeremy Fitzhardinge6ed6bf42009-03-04 13:02:18 -0800350 make_lowmem_page_readonly(virt);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700351 }
352
Jeremy Fitzhardinge3ce5fa72009-03-04 15:26:00 -0800353 if (HYPERVISOR_set_gdt(frames, size / sizeof(struct desc_struct)))
354 BUG();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700355}
356
357static void load_TLS_descriptor(struct thread_struct *t,
358 unsigned int cpu, unsigned int i)
359{
360 struct desc_struct *gdt = get_cpu_gdt_table(cpu);
Jeremy Fitzhardinge9976b392009-02-27 09:19:26 -0800361 xmaddr_t maddr = arbitrary_virt_to_machine(&gdt[GDT_ENTRY_TLS_MIN+i]);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700362 struct multicall_space mc = __xen_mc_entry(0);
363
364 MULTI_update_descriptor(mc.mc, maddr.maddr, t->tls_array[i]);
365}
366
367static void xen_load_tls(struct thread_struct *t, unsigned int cpu)
368{
Jeremy Fitzhardinge8b84ad92007-07-17 18:37:06 -0700369 /*
Tejun Heoccbeed32009-02-09 22:17:40 +0900370 * XXX sleazy hack: If we're being called in a lazy-cpu zone
371 * and lazy gs handling is enabled, it means we're in a
372 * context switch, and %gs has just been saved. This means we
373 * can zero it out to prevent faults on exit from the
374 * hypervisor if the next process has no %gs. Either way, it
375 * has been saved, and the new value will get loaded properly.
376 * This will go away as soon as Xen has been modified to not
377 * save/restore %gs for normal hypercalls.
Eduardo Habkost8a954082008-07-08 15:07:10 -0700378 *
379 * On x86_64, this hack is not used for %gs, because gs points
380 * to KERNEL_GS_BASE (and uses it for PDA references), so we
381 * must not zero %gs on x86_64
382 *
383 * For x86_64, we need to zero %fs, otherwise we may get an
384 * exception between the new %fs descriptor being loaded and
385 * %fs being effectively cleared at __switch_to().
Jeremy Fitzhardinge8b84ad92007-07-17 18:37:06 -0700386 */
Eduardo Habkost8a954082008-07-08 15:07:10 -0700387 if (paravirt_get_lazy_mode() == PARAVIRT_LAZY_CPU) {
388#ifdef CONFIG_X86_32
Tejun Heoccbeed32009-02-09 22:17:40 +0900389 lazy_load_gs(0);
Eduardo Habkost8a954082008-07-08 15:07:10 -0700390#else
391 loadsegment(fs, 0);
392#endif
393 }
394
395 xen_mc_batch();
396
397 load_TLS_descriptor(t, cpu, 0);
398 load_TLS_descriptor(t, cpu, 1);
399 load_TLS_descriptor(t, cpu, 2);
400
401 xen_mc_issue(PARAVIRT_LAZY_CPU);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700402}
403
Eduardo Habkosta8fc1082008-07-08 15:07:05 -0700404#ifdef CONFIG_X86_64
405static void xen_load_gs_index(unsigned int idx)
406{
407 if (HYPERVISOR_set_segment_base(SEGBASE_GS_USER_SEL, idx))
408 BUG();
409}
410#endif
411
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700412static void xen_write_ldt_entry(struct desc_struct *dt, int entrynum,
Glauber de Oliveira Costa75b8bb32008-01-30 13:31:13 +0100413 const void *ptr)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700414{
Jeremy Fitzhardingecef43bf2008-07-28 13:33:44 -0700415 xmaddr_t mach_lp = arbitrary_virt_to_machine(&dt[entrynum]);
Glauber de Oliveira Costa75b8bb32008-01-30 13:31:13 +0100416 u64 entry = *(u64 *)ptr;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700417
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700418 preempt_disable();
419
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700420 xen_mc_flush();
421 if (HYPERVISOR_update_descriptor(mach_lp.maddr, entry))
422 BUG();
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700423
424 preempt_enable();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700425}
426
Eduardo Habkoste176d362008-07-08 15:06:59 -0700427static int cvt_gate_to_trap(int vector, const gate_desc *val,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700428 struct trap_info *info)
429{
Eduardo Habkoste176d362008-07-08 15:06:59 -0700430 if (val->type != 0xf && val->type != 0xe)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700431 return 0;
432
433 info->vector = vector;
Eduardo Habkoste176d362008-07-08 15:06:59 -0700434 info->address = gate_offset(*val);
435 info->cs = gate_segment(*val);
436 info->flags = val->dpl;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700437 /* interrupt gates clear IF */
Eduardo Habkoste176d362008-07-08 15:06:59 -0700438 if (val->type == 0xe)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700439 info->flags |= 4;
440
441 return 1;
442}
443
444/* Locations of each CPU's IDT */
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100445static DEFINE_PER_CPU(struct desc_ptr, idt_desc);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700446
447/* Set an IDT entry. If the entry is part of the current IDT, then
448 also update Xen. */
Glauber de Oliveira Costa8d947342008-01-30 13:31:12 +0100449static void xen_write_idt_entry(gate_desc *dt, int entrynum, const gate_desc *g)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700450{
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700451 unsigned long p = (unsigned long)&dt[entrynum];
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700452 unsigned long start, end;
453
454 preempt_disable();
455
456 start = __get_cpu_var(idt_desc).address;
457 end = start + __get_cpu_var(idt_desc).size + 1;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700458
459 xen_mc_flush();
460
Glauber de Oliveira Costa8d947342008-01-30 13:31:12 +0100461 native_write_idt_entry(dt, entrynum, g);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700462
463 if (p >= start && (p + 8) <= end) {
464 struct trap_info info[2];
465
466 info[1].address = 0;
467
Eduardo Habkoste176d362008-07-08 15:06:59 -0700468 if (cvt_gate_to_trap(entrynum, g, &info[0]))
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700469 if (HYPERVISOR_set_trap_table(info))
470 BUG();
471 }
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700472
473 preempt_enable();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700474}
475
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100476static void xen_convert_trap_info(const struct desc_ptr *desc,
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700477 struct trap_info *traps)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700478{
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700479 unsigned in, out, count;
480
Eduardo Habkoste176d362008-07-08 15:06:59 -0700481 count = (desc->size+1) / sizeof(gate_desc);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700482 BUG_ON(count > 256);
483
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700484 for (in = out = 0; in < count; in++) {
Eduardo Habkoste176d362008-07-08 15:06:59 -0700485 gate_desc *entry = (gate_desc*)(desc->address) + in;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700486
Eduardo Habkoste176d362008-07-08 15:06:59 -0700487 if (cvt_gate_to_trap(in, entry, &traps[out]))
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700488 out++;
489 }
490 traps[out].address = 0;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700491}
492
493void xen_copy_trap_info(struct trap_info *traps)
494{
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100495 const struct desc_ptr *desc = &__get_cpu_var(idt_desc);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700496
497 xen_convert_trap_info(desc, traps);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700498}
499
500/* Load a new IDT into Xen. In principle this can be per-CPU, so we
501 hold a spinlock to protect the static traps[] array (static because
502 it avoids allocation, and saves stack space). */
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100503static void xen_load_idt(const struct desc_ptr *desc)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700504{
505 static DEFINE_SPINLOCK(lock);
506 static struct trap_info traps[257];
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700507
508 spin_lock(&lock);
509
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700510 __get_cpu_var(idt_desc) = *desc;
511
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700512 xen_convert_trap_info(desc, traps);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700513
514 xen_mc_flush();
515 if (HYPERVISOR_set_trap_table(traps))
516 BUG();
517
518 spin_unlock(&lock);
519}
520
521/* Write a GDT descriptor entry. Ignore LDT descriptors, since
522 they're handled differently. */
523static void xen_write_gdt_entry(struct desc_struct *dt, int entry,
Glauber de Oliveira Costa014b15b2008-01-30 13:31:13 +0100524 const void *desc, int type)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700525{
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700526 preempt_disable();
527
Glauber de Oliveira Costa014b15b2008-01-30 13:31:13 +0100528 switch (type) {
529 case DESC_LDT:
530 case DESC_TSS:
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700531 /* ignore */
532 break;
533
534 default: {
Jeremy Fitzhardinge9976b392009-02-27 09:19:26 -0800535 xmaddr_t maddr = arbitrary_virt_to_machine(&dt[entry]);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700536
537 xen_mc_flush();
Glauber de Oliveira Costa014b15b2008-01-30 13:31:13 +0100538 if (HYPERVISOR_update_descriptor(maddr.maddr, *(u64 *)desc))
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700539 BUG();
540 }
541
542 }
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700543
544 preempt_enable();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700545}
546
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100547static void xen_load_sp0(struct tss_struct *tss,
Jeremy Fitzhardingea05d2eb2008-07-27 08:45:02 -0700548 struct thread_struct *thread)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700549{
550 struct multicall_space mcs = xen_mc_entry(0);
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100551 MULTI_stack_switch(mcs.mc, __KERNEL_DS, thread->sp0);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700552 xen_mc_issue(PARAVIRT_LAZY_CPU);
553}
554
555static void xen_set_iopl_mask(unsigned mask)
556{
557 struct physdev_set_iopl set_iopl;
558
559 /* Force the change at ring 0. */
560 set_iopl.iopl = (mask == 0) ? 1 : (mask >> 12) & 3;
561 HYPERVISOR_physdev_op(PHYSDEVOP_set_iopl, &set_iopl);
562}
563
564static void xen_io_delay(void)
565{
566}
567
568#ifdef CONFIG_X86_LOCAL_APIC
Suresh Siddhaad66dd32008-07-11 13:11:56 -0700569static u32 xen_apic_read(u32 reg)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700570{
571 return 0;
572}
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700573
Suresh Siddhaad66dd32008-07-11 13:11:56 -0700574static void xen_apic_write(u32 reg, u32 val)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700575{
576 /* Warn to see if there's any stray references */
577 WARN_ON(1);
578}
Suresh Siddhaad66dd32008-07-11 13:11:56 -0700579
Suresh Siddhaad66dd32008-07-11 13:11:56 -0700580static u64 xen_apic_icr_read(void)
581{
582 return 0;
583}
584
585static void xen_apic_icr_write(u32 low, u32 id)
586{
587 /* Warn to see if there's any stray references */
588 WARN_ON(1);
589}
590
591static void xen_apic_wait_icr_idle(void)
592{
593 return;
594}
595
Yinghai Lu94a8c3c2008-07-13 22:19:35 -0700596static u32 xen_safe_apic_wait_icr_idle(void)
597{
598 return 0;
599}
600
Yinghai Luc1eeb2d2009-02-16 23:02:14 -0800601static void set_xen_basic_apic_ops(void)
602{
603 apic->read = xen_apic_read;
604 apic->write = xen_apic_write;
605 apic->icr_read = xen_apic_icr_read;
606 apic->icr_write = xen_apic_icr_write;
607 apic->wait_icr_idle = xen_apic_wait_icr_idle;
608 apic->safe_wait_icr_idle = xen_safe_apic_wait_icr_idle;
609}
Suresh Siddhaad66dd32008-07-11 13:11:56 -0700610
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700611#endif
612
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700613
Jeremy Fitzhardinge7b1333a2008-05-26 23:31:01 +0100614static void xen_clts(void)
615{
616 struct multicall_space mcs;
617
618 mcs = xen_mc_entry(0);
619
620 MULTI_fpu_taskswitch(mcs.mc, 0);
621
622 xen_mc_issue(PARAVIRT_LAZY_CPU);
623}
624
625static void xen_write_cr0(unsigned long cr0)
626{
627 struct multicall_space mcs;
628
629 /* Only pay attention to cr0.TS; everything else is
630 ignored. */
631 mcs = xen_mc_entry(0);
632
633 MULTI_fpu_taskswitch(mcs.mc, (cr0 & X86_CR0_TS) != 0);
634
635 xen_mc_issue(PARAVIRT_LAZY_CPU);
636}
637
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700638static void xen_write_cr4(unsigned long cr4)
639{
Jeremy Fitzhardinge2956a352008-05-26 23:31:04 +0100640 cr4 &= ~X86_CR4_PGE;
641 cr4 &= ~X86_CR4_PSE;
642
643 native_write_cr4(cr4);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700644}
645
Jeremy Fitzhardinge11539682008-07-08 15:07:16 -0700646static int xen_write_msr_safe(unsigned int msr, unsigned low, unsigned high)
647{
648 int ret;
649
650 ret = 0;
651
Tejf63c2f22008-12-16 11:56:06 -0800652 switch (msr) {
Jeremy Fitzhardinge11539682008-07-08 15:07:16 -0700653#ifdef CONFIG_X86_64
654 unsigned which;
655 u64 base;
656
657 case MSR_FS_BASE: which = SEGBASE_FS; goto set;
658 case MSR_KERNEL_GS_BASE: which = SEGBASE_GS_USER; goto set;
659 case MSR_GS_BASE: which = SEGBASE_GS_KERNEL; goto set;
660
661 set:
662 base = ((u64)high << 32) | low;
663 if (HYPERVISOR_set_segment_base(which, base) != 0)
664 ret = -EFAULT;
665 break;
666#endif
Jeremy Fitzhardinged89961e2008-07-24 13:48:58 -0700667
668 case MSR_STAR:
669 case MSR_CSTAR:
670 case MSR_LSTAR:
671 case MSR_SYSCALL_MASK:
672 case MSR_IA32_SYSENTER_CS:
673 case MSR_IA32_SYSENTER_ESP:
674 case MSR_IA32_SYSENTER_EIP:
675 /* Fast syscall setup is all done in hypercalls, so
676 these are all ignored. Stub them out here to stop
677 Xen console noise. */
678 break;
679
Jeremy Fitzhardinge11539682008-07-08 15:07:16 -0700680 default:
681 ret = native_write_msr_safe(msr, low, high);
682 }
683
684 return ret;
685}
686
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +0100687void xen_setup_shared_info(void)
Jeremy Fitzhardinge2e8fe712008-03-17 16:36:53 -0700688{
689 if (!xen_feature(XENFEAT_auto_translated_physmap)) {
Jeremy Fitzhardinge15664f92008-07-08 15:06:47 -0700690 set_fixmap(FIX_PARAVIRT_BOOTMAP,
691 xen_start_info->shared_info);
Jeremy Fitzhardinge2e8fe712008-03-17 16:36:53 -0700692
Jeremy Fitzhardinge15664f92008-07-08 15:06:47 -0700693 HYPERVISOR_shared_info =
694 (struct shared_info *)fix_to_virt(FIX_PARAVIRT_BOOTMAP);
Jeremy Fitzhardinge2e8fe712008-03-17 16:36:53 -0700695 } else
696 HYPERVISOR_shared_info =
697 (struct shared_info *)__va(xen_start_info->shared_info);
698
699#ifndef CONFIG_SMP
700 /* In UP this is as good a place as any to set up shared info */
701 xen_setup_vcpu_info_placement();
702#endif
Jeremy Fitzhardinged5edbc12008-05-26 23:31:22 +0100703
704 xen_setup_mfn_list_list();
Jeremy Fitzhardinge2e8fe712008-03-17 16:36:53 -0700705}
706
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700707/* This is called once we have the cpu_possible_map */
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +0100708void xen_setup_vcpu_info_placement(void)
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700709{
710 int cpu;
711
712 for_each_possible_cpu(cpu)
713 xen_vcpu_setup(cpu);
714
715 /* xen_vcpu_setup managed to place the vcpu_info within the
716 percpu area for all cpus, so make use of it */
717 if (have_vcpu_info_placement) {
718 printk(KERN_INFO "Xen: using vcpu_info placement\n");
719
Jeremy Fitzhardingeecb93d12009-01-28 14:35:05 -0800720 pv_irq_ops.save_fl = __PV_IS_CALLEE_SAVE(xen_save_fl_direct);
721 pv_irq_ops.restore_fl = __PV_IS_CALLEE_SAVE(xen_restore_fl_direct);
722 pv_irq_ops.irq_disable = __PV_IS_CALLEE_SAVE(xen_irq_disable_direct);
723 pv_irq_ops.irq_enable = __PV_IS_CALLEE_SAVE(xen_irq_enable_direct);
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700724 pv_mmu_ops.read_cr2 = xen_read_cr2_direct;
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700725 }
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700726}
727
Andi Kleenab144f52007-08-10 22:31:03 +0200728static unsigned xen_patch(u8 type, u16 clobbers, void *insnbuf,
729 unsigned long addr, unsigned len)
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700730{
731 char *start, *end, *reloc;
732 unsigned ret;
733
734 start = end = reloc = NULL;
735
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700736#define SITE(op, x) \
737 case PARAVIRT_PATCH(op.x): \
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700738 if (have_vcpu_info_placement) { \
739 start = (char *)xen_##x##_direct; \
740 end = xen_##x##_direct_end; \
741 reloc = xen_##x##_direct_reloc; \
742 } \
743 goto patch_site
744
745 switch (type) {
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700746 SITE(pv_irq_ops, irq_enable);
747 SITE(pv_irq_ops, irq_disable);
748 SITE(pv_irq_ops, save_fl);
749 SITE(pv_irq_ops, restore_fl);
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700750#undef SITE
751
752 patch_site:
753 if (start == NULL || (end-start) > len)
754 goto default_patch;
755
Andi Kleenab144f52007-08-10 22:31:03 +0200756 ret = paravirt_patch_insns(insnbuf, len, start, end);
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700757
758 /* Note: because reloc is assigned from something that
759 appears to be an array, gcc assumes it's non-null,
760 but doesn't know its relationship with start and
761 end. */
762 if (reloc > start && reloc < end) {
763 int reloc_off = reloc - start;
Andi Kleenab144f52007-08-10 22:31:03 +0200764 long *relocp = (long *)(insnbuf + reloc_off);
765 long delta = start - (char *)addr;
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700766
767 *relocp += delta;
768 }
769 break;
770
771 default_patch:
772 default:
Andi Kleenab144f52007-08-10 22:31:03 +0200773 ret = paravirt_patch_default(type, clobbers, insnbuf,
774 addr, len);
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700775 break;
776 }
777
778 return ret;
779}
780
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700781static const struct pv_info xen_info __initdata = {
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700782 .paravirt_enabled = 1,
783 .shared_kernel_pmd = 0,
784
785 .name = "Xen",
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700786};
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700787
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700788static const struct pv_init_ops xen_init_ops __initdata = {
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700789 .patch = xen_patch,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700790
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700791 .banner = xen_banner,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700792 .memory_setup = xen_memory_setup,
793 .arch_setup = xen_arch_setup,
Jeremy Fitzhardingee2426cf2008-05-31 01:24:27 +0100794 .post_allocator_init = xen_post_allocator_init,
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700795};
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700796
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700797static const struct pv_time_ops xen_time_ops __initdata = {
Jeremy Fitzhardinge15c84732007-07-17 18:37:05 -0700798 .time_init = xen_time_init,
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700799
Jeremy Fitzhardinge15c84732007-07-17 18:37:05 -0700800 .set_wallclock = xen_set_wallclock,
801 .get_wallclock = xen_get_wallclock,
Alok Katariae93ef942008-07-01 11:43:36 -0700802 .get_tsc_khz = xen_tsc_khz,
Jeremy Fitzhardingeab550282007-07-17 18:37:05 -0700803 .sched_clock = xen_sched_clock,
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700804};
Jeremy Fitzhardinge15c84732007-07-17 18:37:05 -0700805
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700806static const struct pv_cpu_ops xen_cpu_ops __initdata = {
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700807 .cpuid = xen_cpuid,
808
809 .set_debugreg = xen_set_debugreg,
810 .get_debugreg = xen_get_debugreg,
811
Jeremy Fitzhardinge7b1333a2008-05-26 23:31:01 +0100812 .clts = xen_clts,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700813
814 .read_cr0 = native_read_cr0,
Jeremy Fitzhardinge7b1333a2008-05-26 23:31:01 +0100815 .write_cr0 = xen_write_cr0,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700816
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700817 .read_cr4 = native_read_cr4,
818 .read_cr4_safe = native_read_cr4_safe,
819 .write_cr4 = xen_write_cr4,
820
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700821 .wbinvd = native_wbinvd,
822
823 .read_msr = native_read_msr_safe,
Jeremy Fitzhardinge11539682008-07-08 15:07:16 -0700824 .write_msr = xen_write_msr_safe,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700825 .read_tsc = native_read_tsc,
826 .read_pmc = native_read_pmc,
827
Jeremy Fitzhardinge81e103f2008-04-17 17:40:51 +0200828 .iret = xen_iret,
Jeremy Fitzhardinged75cd222008-06-25 00:19:26 -0400829 .irq_enable_sysexit = xen_sysexit,
Jeremy Fitzhardinge6fcac6d2008-07-08 15:07:14 -0700830#ifdef CONFIG_X86_64
831 .usergs_sysret32 = xen_sysret32,
832 .usergs_sysret64 = xen_sysret64,
833#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700834
835 .load_tr_desc = paravirt_nop,
836 .set_ldt = xen_set_ldt,
837 .load_gdt = xen_load_gdt,
838 .load_idt = xen_load_idt,
839 .load_tls = xen_load_tls,
Eduardo Habkosta8fc1082008-07-08 15:07:05 -0700840#ifdef CONFIG_X86_64
841 .load_gs_index = xen_load_gs_index,
842#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700843
Jeremy Fitzhardinge38ffbe62008-07-23 14:21:18 -0700844 .alloc_ldt = xen_alloc_ldt,
845 .free_ldt = xen_free_ldt,
846
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700847 .store_gdt = native_store_gdt,
848 .store_idt = native_store_idt,
849 .store_tr = xen_store_tr,
850
851 .write_ldt_entry = xen_write_ldt_entry,
852 .write_gdt_entry = xen_write_gdt_entry,
853 .write_idt_entry = xen_write_idt_entry,
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100854 .load_sp0 = xen_load_sp0,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700855
856 .set_iopl_mask = xen_set_iopl_mask,
857 .io_delay = xen_io_delay,
858
Jeremy Fitzhardinge952d1d72008-07-08 15:07:01 -0700859 /* Xen takes care of %gs when switching to usermode for us */
860 .swapgs = paravirt_nop,
861
Jeremy Fitzhardinge224101e2009-02-18 11:18:57 -0800862 .start_context_switch = paravirt_start_context_switch,
863 .end_context_switch = xen_end_context_switch,
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700864};
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700865
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700866static const struct pv_apic_ops xen_apic_ops __initdata = {
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700867#ifdef CONFIG_X86_LOCAL_APIC
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700868 .setup_boot_clock = paravirt_nop,
869 .setup_secondary_clock = paravirt_nop,
870 .startup_ipi_hook = paravirt_nop,
871#endif
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700872};
873
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -0700874static void xen_reboot(int reason)
875{
Jeremy Fitzhardinge349c7092008-05-26 23:31:02 +0100876 struct sched_shutdown r = { .reason = reason };
877
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -0700878#ifdef CONFIG_SMP
879 smp_send_stop();
880#endif
881
Jeremy Fitzhardinge349c7092008-05-26 23:31:02 +0100882 if (HYPERVISOR_sched_op(SCHEDOP_shutdown, &r))
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -0700883 BUG();
884}
885
886static void xen_restart(char *msg)
887{
888 xen_reboot(SHUTDOWN_reboot);
889}
890
891static void xen_emergency_restart(void)
892{
893 xen_reboot(SHUTDOWN_reboot);
894}
895
896static void xen_machine_halt(void)
897{
898 xen_reboot(SHUTDOWN_poweroff);
899}
900
901static void xen_crash_shutdown(struct pt_regs *regs)
902{
903 xen_reboot(SHUTDOWN_crash);
904}
905
906static const struct machine_ops __initdata xen_machine_ops = {
907 .restart = xen_restart,
908 .halt = xen_machine_halt,
909 .power_off = xen_machine_halt,
910 .shutdown = xen_machine_halt,
911 .crash_shutdown = xen_crash_shutdown,
912 .emergency_restart = xen_emergency_restart,
913};
914
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700915
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700916/* First C function to be called on Xen boot */
917asmlinkage void __init xen_start_kernel(void)
918{
919 pgd_t *pgd;
920
921 if (!xen_start_info)
922 return;
923
Jeremy Fitzhardinge6e833582008-08-19 13:16:17 -0700924 xen_domain_type = XEN_PV_DOMAIN;
925
Jeremy Fitzhardinge7999f4b2007-12-10 13:00:41 -0800926 BUG_ON(memcmp(xen_start_info->magic, "xen-3", 5) != 0);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700927
Jeremy Fitzhardingee57778a2008-06-16 04:30:02 -0700928 xen_setup_features();
929
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700930 /* Install Xen paravirt ops */
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700931 pv_info = xen_info;
932 pv_init_ops = xen_init_ops;
933 pv_time_ops = xen_time_ops;
934 pv_cpu_ops = xen_cpu_ops;
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700935 pv_apic_ops = xen_apic_ops;
936 pv_mmu_ops = xen_mmu_ops;
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700937
Jeremy Fitzhardinge0d1edf42008-07-28 11:53:57 -0700938 xen_init_irq_ops();
939
Jeremy Fitzhardingee826fe12009-03-07 17:09:27 -0800940 xen_init_cpuid_mask();
941
Yinghai Lu94a8c3c2008-07-13 22:19:35 -0700942#ifdef CONFIG_X86_LOCAL_APIC
Suresh Siddhaad66dd32008-07-11 13:11:56 -0700943 /*
Yinghai Lu94a8c3c2008-07-13 22:19:35 -0700944 * set up the basic apic ops.
Suresh Siddhaad66dd32008-07-11 13:11:56 -0700945 */
Yinghai Luc1eeb2d2009-02-16 23:02:14 -0800946 set_xen_basic_apic_ops();
Suresh Siddhaad66dd32008-07-11 13:11:56 -0700947#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700948
Jeremy Fitzhardingee57778a2008-06-16 04:30:02 -0700949 if (xen_feature(XENFEAT_mmu_pt_update_preserve_ad)) {
950 pv_mmu_ops.ptep_modify_prot_start = xen_ptep_modify_prot_start;
951 pv_mmu_ops.ptep_modify_prot_commit = xen_ptep_modify_prot_commit;
952 }
953
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -0700954 machine_ops = xen_machine_ops;
955
Jeremy Fitzhardingef5d36de2008-07-08 15:06:39 -0700956#ifdef CONFIG_X86_64
Jeremy Fitzhardinge38341432009-02-02 13:55:31 -0800957 /*
958 * Setup percpu state. We only need to do this for 64-bit
959 * because 32-bit already has %fs set properly.
960 */
Jeremy Fitzhardinge795f99b2009-01-30 17:47:54 +0900961 load_percpu_segment(0);
Jeremy Fitzhardinge38341432009-02-02 13:55:31 -0800962#endif
963 /*
964 * The only reliable way to retain the initial address of the
965 * percpu gdt_page is to remember it here, so we can go and
966 * mark it RW later, when the initial percpu area is freed.
967 */
968 xen_initial_gdt = &per_cpu(gdt_page, 0);
Jeremy Fitzhardinge795f99b2009-01-30 17:47:54 +0900969
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700970 xen_smp_init();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700971
972 /* Get mfn list */
973 if (!xen_feature(XENFEAT_auto_translated_physmap))
Jeremy Fitzhardinged451bb72008-05-26 23:31:18 +0100974 xen_build_dynamic_phys_to_machine();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700975
976 pgd = (pgd_t *)xen_start_info->pt_base;
977
Jeremy Fitzhardingeeb179e42008-06-16 15:01:53 -0700978 /* Prevent unwanted bits from being set in PTEs. */
979 __supported_pte_mask &= ~_PAGE_GLOBAL;
Jeremy Fitzhardinge6e833582008-08-19 13:16:17 -0700980 if (!xen_initial_domain())
Jeremy Fitzhardingeeb179e42008-06-16 15:01:53 -0700981 __supported_pte_mask &= ~(_PAGE_PWT | _PAGE_PCD);
982
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -0700983 /* Don't do the full vcpu_info placement stuff until we have a
984 possible map and a non-dummy shared_info. */
985 per_cpu(xen_vcpu, 0) = &HYPERVISOR_shared_info->vcpu_info[0];
986
Jeremy Fitzhardinge55d80852009-02-25 09:42:25 -0800987 local_irq_disable();
988 early_boot_irqs_off();
989
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -0700990 xen_raw_console_write("mapping kernel into physical memory\n");
Jeremy Fitzhardinged114e1982008-07-08 15:06:52 -0700991 pgd = xen_setup_kernel_pagetable(pgd, xen_start_info->nr_pages);
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -0700992
993 init_mm.pgd = pgd;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700994
995 /* keep using Xen gdt for now; no urgent need to change it */
996
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700997 pv_info.kernel_rpl = 1;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700998 if (xen_feature(XENFEAT_supervisor_mode_kernel))
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700999 pv_info.kernel_rpl = 0;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001000
1001 /* set the limit of our address space */
Jeremy Fitzhardingefb1d8402007-10-16 11:51:31 -07001002 xen_reserve_top();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001003
Jeremy Fitzhardinge7d087b62008-07-08 15:06:48 -07001004#ifdef CONFIG_X86_32
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001005 /* set up basic CPUID stuff */
1006 cpu_detect(&new_cpu_data);
1007 new_cpu_data.hard_math = 1;
1008 new_cpu_data.x86_capability[0] = cpuid_edx(1);
Jeremy Fitzhardinge7d087b62008-07-08 15:06:48 -07001009#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001010
1011 /* Poke various useful things into boot_params */
H. Peter Anvin30c82642007-10-15 17:13:22 -07001012 boot_params.hdr.type_of_loader = (9 << 4) | 0;
1013 boot_params.hdr.ramdisk_image = xen_start_info->mod_start
1014 ? __pa(xen_start_info->mod_start) : 0;
1015 boot_params.hdr.ramdisk_size = xen_start_info->mod_len;
Jeremy Fitzhardingeb7c3c5c2008-07-08 15:07:07 -07001016 boot_params.hdr.cmd_line_ptr = __pa(xen_start_info->cmd_line);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001017
Jeremy Fitzhardinge6e833582008-08-19 13:16:17 -07001018 if (!xen_initial_domain()) {
Jeremy Fitzhardinge83abc702008-05-26 23:31:12 +01001019 add_preferred_console("xenboot", 0, NULL);
Markus Armbruster9e124fe2008-05-26 23:31:07 +01001020 add_preferred_console("tty", 0, NULL);
Markus Armbrusterb8c2d3d2008-02-27 14:56:35 +01001021 add_preferred_console("hvc", 0, NULL);
Markus Armbruster9e124fe2008-05-26 23:31:07 +01001022 }
Markus Armbrusterb8c2d3d2008-02-27 14:56:35 +01001023
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001024 xen_raw_console_write("about to get started...\n");
1025
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001026 /* Start the world */
Jeremy Fitzhardingef5d36de2008-07-08 15:06:39 -07001027#ifdef CONFIG_X86_32
Yinghai Luf0d43102008-05-29 12:56:36 -07001028 i386_start_kernel();
Jeremy Fitzhardingef5d36de2008-07-08 15:06:39 -07001029#else
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001030 x86_64_start_reservations((char *)__pa_symbol(&boot_params));
Jeremy Fitzhardingef5d36de2008-07-08 15:06:39 -07001031#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001032}