blob: aed7ceeb4b65d10091dbc59a51598a80c7141ead [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 Molnarcaf43bf2008-07-20 14:06:50 +020039#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 Fitzhardingedb053b82008-10-02 16:41:31 -070090static int have_vcpu_info_placement =
91#ifdef CONFIG_X86_32
92 1
93#else
94 0
95#endif
96 ;
97
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -070098
Jeremy Fitzhardinge9c7a7942008-05-31 01:33:02 +010099static void xen_vcpu_setup(int cpu)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700100{
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700101 struct vcpu_register_vcpu_info info;
102 int err;
103 struct vcpu_info *vcpup;
104
Jeremy Fitzhardingea0d695c2008-05-26 23:31:21 +0100105 BUG_ON(HYPERVISOR_shared_info == &xen_dummy_shared_info);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700106 per_cpu(xen_vcpu, cpu) = &HYPERVISOR_shared_info->vcpu_info[cpu];
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700107
108 if (!have_vcpu_info_placement)
109 return; /* already tested, not available */
110
111 vcpup = &per_cpu(xen_vcpu_info, cpu);
112
113 info.mfn = virt_to_mfn(vcpup);
114 info.offset = offset_in_page(vcpup);
115
Jeremy Fitzhardingee3d26972007-10-16 11:51:31 -0700116 printk(KERN_DEBUG "trying to map vcpu_info %d at %p, mfn %llx, offset %d\n",
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700117 cpu, vcpup, info.mfn, info.offset);
118
119 /* Check to see if the hypervisor will put the vcpu_info
120 structure where we want it, which allows direct access via
121 a percpu-variable. */
122 err = HYPERVISOR_vcpu_op(VCPUOP_register_vcpu_info, cpu, &info);
123
124 if (err) {
125 printk(KERN_DEBUG "register_vcpu_info failed: err=%d\n", err);
126 have_vcpu_info_placement = 0;
127 } else {
128 /* This cpu is using the registered vcpu info, even if
129 later ones fail to. */
130 per_cpu(xen_vcpu, cpu) = vcpup;
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700131
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700132 printk(KERN_DEBUG "cpu %d using vcpu_info at %p\n",
133 cpu, vcpup);
134 }
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700135}
136
Jeremy Fitzhardinge9c7a7942008-05-31 01:33:02 +0100137/*
138 * On restore, set the vcpu placement up again.
139 * If it fails, then we're in a bad state, since
140 * we can't back out from using it...
141 */
142void xen_vcpu_restore(void)
143{
144 if (have_vcpu_info_placement) {
145 int cpu;
146
147 for_each_online_cpu(cpu) {
148 bool other_cpu = (cpu != smp_processor_id());
149
150 if (other_cpu &&
151 HYPERVISOR_vcpu_op(VCPUOP_down, cpu, NULL))
152 BUG();
153
154 xen_vcpu_setup(cpu);
155
156 if (other_cpu &&
157 HYPERVISOR_vcpu_op(VCPUOP_up, cpu, NULL))
158 BUG();
159 }
160
161 BUG_ON(!have_vcpu_info_placement);
162 }
163}
164
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700165static void __init xen_banner(void)
166{
Jeremy Fitzhardinge95c7c232008-07-15 13:42:34 -0700167 unsigned version = HYPERVISOR_xen_version(XENVER_version, NULL);
168 struct xen_extraversion extra;
169 HYPERVISOR_xen_version(XENVER_extraversion, &extra);
170
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700171 printk(KERN_INFO "Booting paravirtualized kernel on %s\n",
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700172 pv_info.name);
Jeremy Fitzhardinge95c7c232008-07-15 13:42:34 -0700173 printk(KERN_INFO "Xen version: %d.%d%s%s\n",
174 version >> 16, version & 0xffff, extra.extraversion,
Jeremy Fitzhardingee57778a2008-06-16 04:30:02 -0700175 xen_feature(XENFEAT_mmu_pt_update_preserve_ad) ? " (preserve-AD)" : "");
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700176}
177
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100178static void xen_cpuid(unsigned int *ax, unsigned int *bx,
179 unsigned int *cx, unsigned int *dx)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700180{
181 unsigned maskedx = ~0;
182
183 /*
184 * Mask out inconvenient features, to try and disable as many
185 * unsupported kernel subsystems as possible.
186 */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100187 if (*ax == 1)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700188 maskedx = ~((1 << X86_FEATURE_APIC) | /* disable APIC */
189 (1 << X86_FEATURE_ACPI) | /* disable ACPI */
Jeremy Fitzhardingedbe9e992008-03-17 16:37:21 -0700190 (1 << X86_FEATURE_MCE) | /* disable MCE */
191 (1 << X86_FEATURE_MCA) | /* disable MCA */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700192 (1 << X86_FEATURE_ACC)); /* thermal monitoring */
193
194 asm(XEN_EMULATE_PREFIX "cpuid"
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100195 : "=a" (*ax),
196 "=b" (*bx),
197 "=c" (*cx),
198 "=d" (*dx)
199 : "0" (*ax), "2" (*cx));
200 *dx &= maskedx;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700201}
202
203static void xen_set_debugreg(int reg, unsigned long val)
204{
205 HYPERVISOR_set_debugreg(reg, val);
206}
207
208static unsigned long xen_get_debugreg(int reg)
209{
210 return HYPERVISOR_get_debugreg(reg);
211}
212
Jeremy Fitzhardinge319f3ba2009-01-28 14:35:01 -0800213void xen_leave_lazy(void)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700214{
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -0700215 paravirt_leave_lazy(paravirt_get_lazy_mode());
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700216 xen_mc_flush();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700217}
218
219static unsigned long xen_store_tr(void)
220{
221 return 0;
222}
223
Jeremy Fitzhardingea05d2eb2008-07-27 08:45:02 -0700224/*
Jeremy Fitzhardingecef43bf2008-07-28 13:33:44 -0700225 * Set the page permissions for a particular virtual address. If the
226 * address is a vmalloc mapping (or other non-linear mapping), then
227 * find the linear mapping of the page and also set its protections to
228 * match.
Jeremy Fitzhardingea05d2eb2008-07-27 08:45:02 -0700229 */
230static void set_aliased_prot(void *v, pgprot_t prot)
231{
232 int level;
233 pte_t *ptep;
234 pte_t pte;
235 unsigned long pfn;
236 struct page *page;
237
238 ptep = lookup_address((unsigned long)v, &level);
239 BUG_ON(ptep == NULL);
240
241 pfn = pte_pfn(*ptep);
242 page = pfn_to_page(pfn);
243
244 pte = pfn_pte(pfn, prot);
245
246 if (HYPERVISOR_update_va_mapping((unsigned long)v, pte, 0))
247 BUG();
248
249 if (!PageHighMem(page)) {
250 void *av = __va(PFN_PHYS(pfn));
251
252 if (av != v)
253 if (HYPERVISOR_update_va_mapping((unsigned long)av, pte, 0))
254 BUG();
255 } else
256 kmap_flush_unused();
257}
258
Jeremy Fitzhardinge38ffbe62008-07-23 14:21:18 -0700259static void xen_alloc_ldt(struct desc_struct *ldt, unsigned entries)
260{
Jeremy Fitzhardingea05d2eb2008-07-27 08:45:02 -0700261 const unsigned entries_per_page = PAGE_SIZE / LDT_ENTRY_SIZE;
Jeremy Fitzhardinge38ffbe62008-07-23 14:21:18 -0700262 int i;
263
Jeremy Fitzhardingea05d2eb2008-07-27 08:45:02 -0700264 for(i = 0; i < entries; i += entries_per_page)
265 set_aliased_prot(ldt + i, PAGE_KERNEL_RO);
Jeremy Fitzhardinge38ffbe62008-07-23 14:21:18 -0700266}
267
268static void xen_free_ldt(struct desc_struct *ldt, unsigned entries)
269{
Jeremy Fitzhardingea05d2eb2008-07-27 08:45:02 -0700270 const unsigned entries_per_page = PAGE_SIZE / LDT_ENTRY_SIZE;
Jeremy Fitzhardinge38ffbe62008-07-23 14:21:18 -0700271 int i;
272
Jeremy Fitzhardingea05d2eb2008-07-27 08:45:02 -0700273 for(i = 0; i < entries; i += entries_per_page)
274 set_aliased_prot(ldt + i, PAGE_KERNEL);
Jeremy Fitzhardinge38ffbe62008-07-23 14:21:18 -0700275}
276
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700277static void xen_set_ldt(const void *addr, unsigned entries)
278{
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700279 struct mmuext_op *op;
280 struct multicall_space mcs = xen_mc_entry(sizeof(*op));
281
282 op = mcs.args;
283 op->cmd = MMUEXT_SET_LDT;
Jan Beulich4dbf7af2008-01-30 13:33:14 +0100284 op->arg1.linear_addr = (unsigned long)addr;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700285 op->arg2.nr_ents = entries;
286
287 MULTI_mmuext_op(mcs.mc, op, 1, NULL, DOMID_SELF);
288
289 xen_mc_issue(PARAVIRT_LAZY_CPU);
290}
291
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100292static void xen_load_gdt(const struct desc_ptr *dtr)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700293{
294 unsigned long *frames;
295 unsigned long va = dtr->address;
296 unsigned int size = dtr->size + 1;
297 unsigned pages = (size + PAGE_SIZE - 1) / PAGE_SIZE;
298 int f;
299 struct multicall_space mcs;
300
301 /* A GDT can be up to 64k in size, which corresponds to 8192
302 8-byte entries, or 16 4k pages.. */
303
304 BUG_ON(size > 65536);
305 BUG_ON(va & ~PAGE_MASK);
306
307 mcs = xen_mc_entry(sizeof(*frames) * pages);
308 frames = mcs.args;
309
310 for (f = 0; va < dtr->address + size; va += PAGE_SIZE, f++) {
311 frames[f] = virt_to_mfn(va);
312 make_lowmem_page_readonly((void *)va);
313 }
314
315 MULTI_set_gdt(mcs.mc, frames, size / sizeof(struct desc_struct));
316
317 xen_mc_issue(PARAVIRT_LAZY_CPU);
318}
319
320static void load_TLS_descriptor(struct thread_struct *t,
321 unsigned int cpu, unsigned int i)
322{
323 struct desc_struct *gdt = get_cpu_gdt_table(cpu);
324 xmaddr_t maddr = virt_to_machine(&gdt[GDT_ENTRY_TLS_MIN+i]);
325 struct multicall_space mc = __xen_mc_entry(0);
326
327 MULTI_update_descriptor(mc.mc, maddr.maddr, t->tls_array[i]);
328}
329
330static void xen_load_tls(struct thread_struct *t, unsigned int cpu)
331{
Jeremy Fitzhardinge8b84ad92007-07-17 18:37:06 -0700332 /*
333 * XXX sleazy hack: If we're being called in a lazy-cpu zone,
334 * it means we're in a context switch, and %gs has just been
335 * saved. This means we can zero it out to prevent faults on
336 * exit from the hypervisor if the next process has no %gs.
337 * Either way, it has been saved, and the new value will get
338 * loaded properly. This will go away as soon as Xen has been
339 * modified to not save/restore %gs for normal hypercalls.
Eduardo Habkost8a954082008-07-08 15:07:10 -0700340 *
341 * On x86_64, this hack is not used for %gs, because gs points
342 * to KERNEL_GS_BASE (and uses it for PDA references), so we
343 * must not zero %gs on x86_64
344 *
345 * For x86_64, we need to zero %fs, otherwise we may get an
346 * exception between the new %fs descriptor being loaded and
347 * %fs being effectively cleared at __switch_to().
Jeremy Fitzhardinge8b84ad92007-07-17 18:37:06 -0700348 */
Eduardo Habkost8a954082008-07-08 15:07:10 -0700349 if (paravirt_get_lazy_mode() == PARAVIRT_LAZY_CPU) {
350#ifdef CONFIG_X86_32
Jeremy Fitzhardinge8b84ad92007-07-17 18:37:06 -0700351 loadsegment(gs, 0);
Eduardo Habkost8a954082008-07-08 15:07:10 -0700352#else
353 loadsegment(fs, 0);
354#endif
355 }
356
357 xen_mc_batch();
358
359 load_TLS_descriptor(t, cpu, 0);
360 load_TLS_descriptor(t, cpu, 1);
361 load_TLS_descriptor(t, cpu, 2);
362
363 xen_mc_issue(PARAVIRT_LAZY_CPU);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700364}
365
Eduardo Habkosta8fc1082008-07-08 15:07:05 -0700366#ifdef CONFIG_X86_64
367static void xen_load_gs_index(unsigned int idx)
368{
369 if (HYPERVISOR_set_segment_base(SEGBASE_GS_USER_SEL, idx))
370 BUG();
371}
372#endif
373
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700374static void xen_write_ldt_entry(struct desc_struct *dt, int entrynum,
Glauber de Oliveira Costa75b8bb32008-01-30 13:31:13 +0100375 const void *ptr)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700376{
Jeremy Fitzhardingecef43bf2008-07-28 13:33:44 -0700377 xmaddr_t mach_lp = arbitrary_virt_to_machine(&dt[entrynum]);
Glauber de Oliveira Costa75b8bb32008-01-30 13:31:13 +0100378 u64 entry = *(u64 *)ptr;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700379
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700380 preempt_disable();
381
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700382 xen_mc_flush();
383 if (HYPERVISOR_update_descriptor(mach_lp.maddr, entry))
384 BUG();
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700385
386 preempt_enable();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700387}
388
Eduardo Habkoste176d362008-07-08 15:06:59 -0700389static int cvt_gate_to_trap(int vector, const gate_desc *val,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700390 struct trap_info *info)
391{
Eduardo Habkoste176d362008-07-08 15:06:59 -0700392 if (val->type != 0xf && val->type != 0xe)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700393 return 0;
394
395 info->vector = vector;
Eduardo Habkoste176d362008-07-08 15:06:59 -0700396 info->address = gate_offset(*val);
397 info->cs = gate_segment(*val);
398 info->flags = val->dpl;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700399 /* interrupt gates clear IF */
Eduardo Habkoste176d362008-07-08 15:06:59 -0700400 if (val->type == 0xe)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700401 info->flags |= 4;
402
403 return 1;
404}
405
406/* Locations of each CPU's IDT */
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100407static DEFINE_PER_CPU(struct desc_ptr, idt_desc);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700408
409/* Set an IDT entry. If the entry is part of the current IDT, then
410 also update Xen. */
Glauber de Oliveira Costa8d947342008-01-30 13:31:12 +0100411static void xen_write_idt_entry(gate_desc *dt, int entrynum, const gate_desc *g)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700412{
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700413 unsigned long p = (unsigned long)&dt[entrynum];
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700414 unsigned long start, end;
415
416 preempt_disable();
417
418 start = __get_cpu_var(idt_desc).address;
419 end = start + __get_cpu_var(idt_desc).size + 1;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700420
421 xen_mc_flush();
422
Glauber de Oliveira Costa8d947342008-01-30 13:31:12 +0100423 native_write_idt_entry(dt, entrynum, g);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700424
425 if (p >= start && (p + 8) <= end) {
426 struct trap_info info[2];
427
428 info[1].address = 0;
429
Eduardo Habkoste176d362008-07-08 15:06:59 -0700430 if (cvt_gate_to_trap(entrynum, g, &info[0]))
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700431 if (HYPERVISOR_set_trap_table(info))
432 BUG();
433 }
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700434
435 preempt_enable();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700436}
437
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100438static void xen_convert_trap_info(const struct desc_ptr *desc,
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700439 struct trap_info *traps)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700440{
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700441 unsigned in, out, count;
442
Eduardo Habkoste176d362008-07-08 15:06:59 -0700443 count = (desc->size+1) / sizeof(gate_desc);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700444 BUG_ON(count > 256);
445
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700446 for (in = out = 0; in < count; in++) {
Eduardo Habkoste176d362008-07-08 15:06:59 -0700447 gate_desc *entry = (gate_desc*)(desc->address) + in;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700448
Eduardo Habkoste176d362008-07-08 15:06:59 -0700449 if (cvt_gate_to_trap(in, entry, &traps[out]))
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700450 out++;
451 }
452 traps[out].address = 0;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700453}
454
455void xen_copy_trap_info(struct trap_info *traps)
456{
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100457 const struct desc_ptr *desc = &__get_cpu_var(idt_desc);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700458
459 xen_convert_trap_info(desc, traps);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700460}
461
462/* Load a new IDT into Xen. In principle this can be per-CPU, so we
463 hold a spinlock to protect the static traps[] array (static because
464 it avoids allocation, and saves stack space). */
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100465static void xen_load_idt(const struct desc_ptr *desc)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700466{
467 static DEFINE_SPINLOCK(lock);
468 static struct trap_info traps[257];
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700469
470 spin_lock(&lock);
471
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700472 __get_cpu_var(idt_desc) = *desc;
473
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700474 xen_convert_trap_info(desc, traps);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700475
476 xen_mc_flush();
477 if (HYPERVISOR_set_trap_table(traps))
478 BUG();
479
480 spin_unlock(&lock);
481}
482
483/* Write a GDT descriptor entry. Ignore LDT descriptors, since
484 they're handled differently. */
485static void xen_write_gdt_entry(struct desc_struct *dt, int entry,
Glauber de Oliveira Costa014b15b2008-01-30 13:31:13 +0100486 const void *desc, int type)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700487{
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700488 preempt_disable();
489
Glauber de Oliveira Costa014b15b2008-01-30 13:31:13 +0100490 switch (type) {
491 case DESC_LDT:
492 case DESC_TSS:
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700493 /* ignore */
494 break;
495
496 default: {
497 xmaddr_t maddr = virt_to_machine(&dt[entry]);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700498
499 xen_mc_flush();
Glauber de Oliveira Costa014b15b2008-01-30 13:31:13 +0100500 if (HYPERVISOR_update_descriptor(maddr.maddr, *(u64 *)desc))
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700501 BUG();
502 }
503
504 }
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700505
506 preempt_enable();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700507}
508
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100509static void xen_load_sp0(struct tss_struct *tss,
Jeremy Fitzhardingea05d2eb2008-07-27 08:45:02 -0700510 struct thread_struct *thread)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700511{
512 struct multicall_space mcs = xen_mc_entry(0);
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100513 MULTI_stack_switch(mcs.mc, __KERNEL_DS, thread->sp0);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700514 xen_mc_issue(PARAVIRT_LAZY_CPU);
515}
516
517static void xen_set_iopl_mask(unsigned mask)
518{
519 struct physdev_set_iopl set_iopl;
520
521 /* Force the change at ring 0. */
522 set_iopl.iopl = (mask == 0) ? 1 : (mask >> 12) & 3;
523 HYPERVISOR_physdev_op(PHYSDEVOP_set_iopl, &set_iopl);
524}
525
526static void xen_io_delay(void)
527{
528}
529
530#ifdef CONFIG_X86_LOCAL_APIC
Suresh Siddhaad66dd32008-07-11 13:11:56 -0700531static u32 xen_apic_read(u32 reg)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700532{
533 return 0;
534}
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700535
Suresh Siddhaad66dd32008-07-11 13:11:56 -0700536static void xen_apic_write(u32 reg, u32 val)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700537{
538 /* Warn to see if there's any stray references */
539 WARN_ON(1);
540}
Suresh Siddhaad66dd32008-07-11 13:11:56 -0700541
Suresh Siddhaad66dd32008-07-11 13:11:56 -0700542static u64 xen_apic_icr_read(void)
543{
544 return 0;
545}
546
547static void xen_apic_icr_write(u32 low, u32 id)
548{
549 /* Warn to see if there's any stray references */
550 WARN_ON(1);
551}
552
553static void xen_apic_wait_icr_idle(void)
554{
555 return;
556}
557
Yinghai Lu94a8c3c2008-07-13 22:19:35 -0700558static u32 xen_safe_apic_wait_icr_idle(void)
559{
560 return 0;
561}
562
Suresh Siddhaad66dd32008-07-11 13:11:56 -0700563static struct apic_ops xen_basic_apic_ops = {
564 .read = xen_apic_read,
565 .write = xen_apic_write,
Suresh Siddhaad66dd32008-07-11 13:11:56 -0700566 .icr_read = xen_apic_icr_read,
567 .icr_write = xen_apic_icr_write,
568 .wait_icr_idle = xen_apic_wait_icr_idle,
Yinghai Lu94a8c3c2008-07-13 22:19:35 -0700569 .safe_wait_icr_idle = xen_safe_apic_wait_icr_idle,
Suresh Siddhaad66dd32008-07-11 13:11:56 -0700570};
Suresh Siddhaad66dd32008-07-11 13:11:56 -0700571
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700572#endif
573
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700574
Jeremy Fitzhardinge7b1333a2008-05-26 23:31:01 +0100575static void xen_clts(void)
576{
577 struct multicall_space mcs;
578
579 mcs = xen_mc_entry(0);
580
581 MULTI_fpu_taskswitch(mcs.mc, 0);
582
583 xen_mc_issue(PARAVIRT_LAZY_CPU);
584}
585
586static void xen_write_cr0(unsigned long cr0)
587{
588 struct multicall_space mcs;
589
590 /* Only pay attention to cr0.TS; everything else is
591 ignored. */
592 mcs = xen_mc_entry(0);
593
594 MULTI_fpu_taskswitch(mcs.mc, (cr0 & X86_CR0_TS) != 0);
595
596 xen_mc_issue(PARAVIRT_LAZY_CPU);
597}
598
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700599static void xen_write_cr4(unsigned long cr4)
600{
Jeremy Fitzhardinge2956a352008-05-26 23:31:04 +0100601 cr4 &= ~X86_CR4_PGE;
602 cr4 &= ~X86_CR4_PSE;
603
604 native_write_cr4(cr4);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700605}
606
Jeremy Fitzhardinge11539682008-07-08 15:07:16 -0700607static int xen_write_msr_safe(unsigned int msr, unsigned low, unsigned high)
608{
609 int ret;
610
611 ret = 0;
612
Tejf63c2f22008-12-16 11:56:06 -0800613 switch (msr) {
Jeremy Fitzhardinge11539682008-07-08 15:07:16 -0700614#ifdef CONFIG_X86_64
615 unsigned which;
616 u64 base;
617
618 case MSR_FS_BASE: which = SEGBASE_FS; goto set;
619 case MSR_KERNEL_GS_BASE: which = SEGBASE_GS_USER; goto set;
620 case MSR_GS_BASE: which = SEGBASE_GS_KERNEL; goto set;
621
622 set:
623 base = ((u64)high << 32) | low;
624 if (HYPERVISOR_set_segment_base(which, base) != 0)
625 ret = -EFAULT;
626 break;
627#endif
Jeremy Fitzhardinged89961e2008-07-24 13:48:58 -0700628
629 case MSR_STAR:
630 case MSR_CSTAR:
631 case MSR_LSTAR:
632 case MSR_SYSCALL_MASK:
633 case MSR_IA32_SYSENTER_CS:
634 case MSR_IA32_SYSENTER_ESP:
635 case MSR_IA32_SYSENTER_EIP:
636 /* Fast syscall setup is all done in hypercalls, so
637 these are all ignored. Stub them out here to stop
638 Xen console noise. */
639 break;
640
Jeremy Fitzhardinge11539682008-07-08 15:07:16 -0700641 default:
642 ret = native_write_msr_safe(msr, low, high);
643 }
644
645 return ret;
646}
647
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +0100648void xen_setup_shared_info(void)
Jeremy Fitzhardinge2e8fe712008-03-17 16:36:53 -0700649{
650 if (!xen_feature(XENFEAT_auto_translated_physmap)) {
Jeremy Fitzhardinge15664f92008-07-08 15:06:47 -0700651 set_fixmap(FIX_PARAVIRT_BOOTMAP,
652 xen_start_info->shared_info);
Jeremy Fitzhardinge2e8fe712008-03-17 16:36:53 -0700653
Jeremy Fitzhardinge15664f92008-07-08 15:06:47 -0700654 HYPERVISOR_shared_info =
655 (struct shared_info *)fix_to_virt(FIX_PARAVIRT_BOOTMAP);
Jeremy Fitzhardinge2e8fe712008-03-17 16:36:53 -0700656 } else
657 HYPERVISOR_shared_info =
658 (struct shared_info *)__va(xen_start_info->shared_info);
659
660#ifndef CONFIG_SMP
661 /* In UP this is as good a place as any to set up shared info */
662 xen_setup_vcpu_info_placement();
663#endif
Jeremy Fitzhardinged5edbc12008-05-26 23:31:22 +0100664
665 xen_setup_mfn_list_list();
Jeremy Fitzhardinge2e8fe712008-03-17 16:36:53 -0700666}
667
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700668/* This is called once we have the cpu_possible_map */
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +0100669void xen_setup_vcpu_info_placement(void)
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700670{
671 int cpu;
672
673 for_each_possible_cpu(cpu)
674 xen_vcpu_setup(cpu);
675
676 /* xen_vcpu_setup managed to place the vcpu_info within the
677 percpu area for all cpus, so make use of it */
678 if (have_vcpu_info_placement) {
679 printk(KERN_INFO "Xen: using vcpu_info placement\n");
680
Jeremy Fitzhardingeecb93d12009-01-28 14:35:05 -0800681 pv_irq_ops.save_fl = __PV_IS_CALLEE_SAVE(xen_save_fl_direct);
682 pv_irq_ops.restore_fl = __PV_IS_CALLEE_SAVE(xen_restore_fl_direct);
683 pv_irq_ops.irq_disable = __PV_IS_CALLEE_SAVE(xen_irq_disable_direct);
684 pv_irq_ops.irq_enable = __PV_IS_CALLEE_SAVE(xen_irq_enable_direct);
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700685 pv_mmu_ops.read_cr2 = xen_read_cr2_direct;
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700686 }
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700687}
688
Andi Kleenab144f52007-08-10 22:31:03 +0200689static unsigned xen_patch(u8 type, u16 clobbers, void *insnbuf,
690 unsigned long addr, unsigned len)
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700691{
692 char *start, *end, *reloc;
693 unsigned ret;
694
695 start = end = reloc = NULL;
696
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700697#define SITE(op, x) \
698 case PARAVIRT_PATCH(op.x): \
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700699 if (have_vcpu_info_placement) { \
700 start = (char *)xen_##x##_direct; \
701 end = xen_##x##_direct_end; \
702 reloc = xen_##x##_direct_reloc; \
703 } \
704 goto patch_site
705
706 switch (type) {
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700707 SITE(pv_irq_ops, irq_enable);
708 SITE(pv_irq_ops, irq_disable);
709 SITE(pv_irq_ops, save_fl);
710 SITE(pv_irq_ops, restore_fl);
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700711#undef SITE
712
713 patch_site:
714 if (start == NULL || (end-start) > len)
715 goto default_patch;
716
Andi Kleenab144f52007-08-10 22:31:03 +0200717 ret = paravirt_patch_insns(insnbuf, len, start, end);
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700718
719 /* Note: because reloc is assigned from something that
720 appears to be an array, gcc assumes it's non-null,
721 but doesn't know its relationship with start and
722 end. */
723 if (reloc > start && reloc < end) {
724 int reloc_off = reloc - start;
Andi Kleenab144f52007-08-10 22:31:03 +0200725 long *relocp = (long *)(insnbuf + reloc_off);
726 long delta = start - (char *)addr;
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700727
728 *relocp += delta;
729 }
730 break;
731
732 default_patch:
733 default:
Andi Kleenab144f52007-08-10 22:31:03 +0200734 ret = paravirt_patch_default(type, clobbers, insnbuf,
735 addr, len);
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700736 break;
737 }
738
739 return ret;
740}
741
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700742static const struct pv_info xen_info __initdata = {
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700743 .paravirt_enabled = 1,
744 .shared_kernel_pmd = 0,
745
746 .name = "Xen",
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700747};
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700748
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700749static const struct pv_init_ops xen_init_ops __initdata = {
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700750 .patch = xen_patch,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700751
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700752 .banner = xen_banner,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700753 .memory_setup = xen_memory_setup,
754 .arch_setup = xen_arch_setup,
Jeremy Fitzhardingee2426cf2008-05-31 01:24:27 +0100755 .post_allocator_init = xen_post_allocator_init,
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700756};
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700757
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700758static const struct pv_time_ops xen_time_ops __initdata = {
Jeremy Fitzhardinge15c84732007-07-17 18:37:05 -0700759 .time_init = xen_time_init,
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700760
Jeremy Fitzhardinge15c84732007-07-17 18:37:05 -0700761 .set_wallclock = xen_set_wallclock,
762 .get_wallclock = xen_get_wallclock,
Alok Katariae93ef942008-07-01 11:43:36 -0700763 .get_tsc_khz = xen_tsc_khz,
Jeremy Fitzhardingeab550282007-07-17 18:37:05 -0700764 .sched_clock = xen_sched_clock,
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700765};
Jeremy Fitzhardinge15c84732007-07-17 18:37:05 -0700766
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700767static const struct pv_cpu_ops xen_cpu_ops __initdata = {
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700768 .cpuid = xen_cpuid,
769
770 .set_debugreg = xen_set_debugreg,
771 .get_debugreg = xen_get_debugreg,
772
Jeremy Fitzhardinge7b1333a2008-05-26 23:31:01 +0100773 .clts = xen_clts,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700774
775 .read_cr0 = native_read_cr0,
Jeremy Fitzhardinge7b1333a2008-05-26 23:31:01 +0100776 .write_cr0 = xen_write_cr0,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700777
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700778 .read_cr4 = native_read_cr4,
779 .read_cr4_safe = native_read_cr4_safe,
780 .write_cr4 = xen_write_cr4,
781
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700782 .wbinvd = native_wbinvd,
783
784 .read_msr = native_read_msr_safe,
Jeremy Fitzhardinge11539682008-07-08 15:07:16 -0700785 .write_msr = xen_write_msr_safe,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700786 .read_tsc = native_read_tsc,
787 .read_pmc = native_read_pmc,
788
Jeremy Fitzhardinge81e103f2008-04-17 17:40:51 +0200789 .iret = xen_iret,
Jeremy Fitzhardinged75cd222008-06-25 00:19:26 -0400790 .irq_enable_sysexit = xen_sysexit,
Jeremy Fitzhardinge6fcac6d2008-07-08 15:07:14 -0700791#ifdef CONFIG_X86_64
792 .usergs_sysret32 = xen_sysret32,
793 .usergs_sysret64 = xen_sysret64,
794#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700795
796 .load_tr_desc = paravirt_nop,
797 .set_ldt = xen_set_ldt,
798 .load_gdt = xen_load_gdt,
799 .load_idt = xen_load_idt,
800 .load_tls = xen_load_tls,
Eduardo Habkosta8fc1082008-07-08 15:07:05 -0700801#ifdef CONFIG_X86_64
802 .load_gs_index = xen_load_gs_index,
803#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700804
Jeremy Fitzhardinge38ffbe62008-07-23 14:21:18 -0700805 .alloc_ldt = xen_alloc_ldt,
806 .free_ldt = xen_free_ldt,
807
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700808 .store_gdt = native_store_gdt,
809 .store_idt = native_store_idt,
810 .store_tr = xen_store_tr,
811
812 .write_ldt_entry = xen_write_ldt_entry,
813 .write_gdt_entry = xen_write_gdt_entry,
814 .write_idt_entry = xen_write_idt_entry,
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100815 .load_sp0 = xen_load_sp0,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700816
817 .set_iopl_mask = xen_set_iopl_mask,
818 .io_delay = xen_io_delay,
819
Jeremy Fitzhardinge952d1d72008-07-08 15:07:01 -0700820 /* Xen takes care of %gs when switching to usermode for us */
821 .swapgs = paravirt_nop,
822
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -0700823 .lazy_mode = {
824 .enter = paravirt_enter_lazy_cpu,
825 .leave = xen_leave_lazy,
826 },
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700827};
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700828
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700829static const struct pv_apic_ops xen_apic_ops __initdata = {
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700830#ifdef CONFIG_X86_LOCAL_APIC
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700831 .setup_boot_clock = paravirt_nop,
832 .setup_secondary_clock = paravirt_nop,
833 .startup_ipi_hook = paravirt_nop,
834#endif
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700835};
836
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -0700837static void xen_reboot(int reason)
838{
Jeremy Fitzhardinge349c7092008-05-26 23:31:02 +0100839 struct sched_shutdown r = { .reason = reason };
840
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -0700841#ifdef CONFIG_SMP
842 smp_send_stop();
843#endif
844
Jeremy Fitzhardinge349c7092008-05-26 23:31:02 +0100845 if (HYPERVISOR_sched_op(SCHEDOP_shutdown, &r))
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -0700846 BUG();
847}
848
849static void xen_restart(char *msg)
850{
851 xen_reboot(SHUTDOWN_reboot);
852}
853
854static void xen_emergency_restart(void)
855{
856 xen_reboot(SHUTDOWN_reboot);
857}
858
859static void xen_machine_halt(void)
860{
861 xen_reboot(SHUTDOWN_poweroff);
862}
863
864static void xen_crash_shutdown(struct pt_regs *regs)
865{
866 xen_reboot(SHUTDOWN_crash);
867}
868
869static const struct machine_ops __initdata xen_machine_ops = {
870 .restart = xen_restart,
871 .halt = xen_machine_halt,
872 .power_off = xen_machine_halt,
873 .shutdown = xen_machine_halt,
874 .crash_shutdown = xen_crash_shutdown,
875 .emergency_restart = xen_emergency_restart,
876};
877
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700878
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700879/* First C function to be called on Xen boot */
880asmlinkage void __init xen_start_kernel(void)
881{
882 pgd_t *pgd;
883
884 if (!xen_start_info)
885 return;
886
Jeremy Fitzhardinge6e833582008-08-19 13:16:17 -0700887 xen_domain_type = XEN_PV_DOMAIN;
888
Jeremy Fitzhardinge7999f4b2007-12-10 13:00:41 -0800889 BUG_ON(memcmp(xen_start_info->magic, "xen-3", 5) != 0);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700890
Jeremy Fitzhardingee57778a2008-06-16 04:30:02 -0700891 xen_setup_features();
892
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700893 /* Install Xen paravirt ops */
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700894 pv_info = xen_info;
895 pv_init_ops = xen_init_ops;
896 pv_time_ops = xen_time_ops;
897 pv_cpu_ops = xen_cpu_ops;
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700898 pv_apic_ops = xen_apic_ops;
899 pv_mmu_ops = xen_mmu_ops;
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700900
Jeremy Fitzhardinge0d1edf42008-07-28 11:53:57 -0700901 xen_init_irq_ops();
902
Yinghai Lu94a8c3c2008-07-13 22:19:35 -0700903#ifdef CONFIG_X86_LOCAL_APIC
Suresh Siddhaad66dd32008-07-11 13:11:56 -0700904 /*
Yinghai Lu94a8c3c2008-07-13 22:19:35 -0700905 * set up the basic apic ops.
Suresh Siddhaad66dd32008-07-11 13:11:56 -0700906 */
907 apic_ops = &xen_basic_apic_ops;
908#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700909
Jeremy Fitzhardingee57778a2008-06-16 04:30:02 -0700910 if (xen_feature(XENFEAT_mmu_pt_update_preserve_ad)) {
911 pv_mmu_ops.ptep_modify_prot_start = xen_ptep_modify_prot_start;
912 pv_mmu_ops.ptep_modify_prot_commit = xen_ptep_modify_prot_commit;
913 }
914
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -0700915 machine_ops = xen_machine_ops;
916
Jeremy Fitzhardingef5d36de2008-07-08 15:06:39 -0700917#ifdef CONFIG_X86_64
918 /* Disable until direct per-cpu data access. */
919 have_vcpu_info_placement = 0;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700920#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700921
Jeremy Fitzhardinge38341432009-02-02 13:55:31 -0800922#ifdef CONFIG_X86_64
923 /*
924 * Setup percpu state. We only need to do this for 64-bit
925 * because 32-bit already has %fs set properly.
926 */
Jeremy Fitzhardinge795f99b2009-01-30 17:47:54 +0900927 load_percpu_segment(0);
Jeremy Fitzhardinge38341432009-02-02 13:55:31 -0800928#endif
929 /*
930 * The only reliable way to retain the initial address of the
931 * percpu gdt_page is to remember it here, so we can go and
932 * mark it RW later, when the initial percpu area is freed.
933 */
934 xen_initial_gdt = &per_cpu(gdt_page, 0);
Jeremy Fitzhardinge795f99b2009-01-30 17:47:54 +0900935
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700936 xen_smp_init();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700937
938 /* Get mfn list */
939 if (!xen_feature(XENFEAT_auto_translated_physmap))
Jeremy Fitzhardinged451bb72008-05-26 23:31:18 +0100940 xen_build_dynamic_phys_to_machine();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700941
942 pgd = (pgd_t *)xen_start_info->pt_base;
943
Jeremy Fitzhardingeeb179e42008-06-16 15:01:53 -0700944 /* Prevent unwanted bits from being set in PTEs. */
945 __supported_pte_mask &= ~_PAGE_GLOBAL;
Jeremy Fitzhardinge6e833582008-08-19 13:16:17 -0700946 if (!xen_initial_domain())
Jeremy Fitzhardingeeb179e42008-06-16 15:01:53 -0700947 __supported_pte_mask &= ~(_PAGE_PWT | _PAGE_PCD);
948
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -0700949 /* Don't do the full vcpu_info placement stuff until we have a
950 possible map and a non-dummy shared_info. */
951 per_cpu(xen_vcpu, 0) = &HYPERVISOR_shared_info->vcpu_info[0];
952
953 xen_raw_console_write("mapping kernel into physical memory\n");
Jeremy Fitzhardinged114e1982008-07-08 15:06:52 -0700954 pgd = xen_setup_kernel_pagetable(pgd, xen_start_info->nr_pages);
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -0700955
956 init_mm.pgd = pgd;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700957
958 /* keep using Xen gdt for now; no urgent need to change it */
959
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700960 pv_info.kernel_rpl = 1;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700961 if (xen_feature(XENFEAT_supervisor_mode_kernel))
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700962 pv_info.kernel_rpl = 0;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700963
964 /* set the limit of our address space */
Jeremy Fitzhardingefb1d8402007-10-16 11:51:31 -0700965 xen_reserve_top();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700966
Jeremy Fitzhardinge7d087b62008-07-08 15:06:48 -0700967#ifdef CONFIG_X86_32
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700968 /* set up basic CPUID stuff */
969 cpu_detect(&new_cpu_data);
970 new_cpu_data.hard_math = 1;
971 new_cpu_data.x86_capability[0] = cpuid_edx(1);
Jeremy Fitzhardinge7d087b62008-07-08 15:06:48 -0700972#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700973
974 /* Poke various useful things into boot_params */
H. Peter Anvin30c82642007-10-15 17:13:22 -0700975 boot_params.hdr.type_of_loader = (9 << 4) | 0;
976 boot_params.hdr.ramdisk_image = xen_start_info->mod_start
977 ? __pa(xen_start_info->mod_start) : 0;
978 boot_params.hdr.ramdisk_size = xen_start_info->mod_len;
Jeremy Fitzhardingeb7c3c5c2008-07-08 15:07:07 -0700979 boot_params.hdr.cmd_line_ptr = __pa(xen_start_info->cmd_line);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700980
Jeremy Fitzhardinge6e833582008-08-19 13:16:17 -0700981 if (!xen_initial_domain()) {
Jeremy Fitzhardinge83abc702008-05-26 23:31:12 +0100982 add_preferred_console("xenboot", 0, NULL);
Markus Armbruster9e124fe2008-05-26 23:31:07 +0100983 add_preferred_console("tty", 0, NULL);
Markus Armbrusterb8c2d3d2008-02-27 14:56:35 +0100984 add_preferred_console("hvc", 0, NULL);
Markus Armbruster9e124fe2008-05-26 23:31:07 +0100985 }
Markus Armbrusterb8c2d3d2008-02-27 14:56:35 +0100986
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -0700987 xen_raw_console_write("about to get started...\n");
988
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700989 /* Start the world */
Jeremy Fitzhardingef5d36de2008-07-08 15:06:39 -0700990#ifdef CONFIG_X86_32
Yinghai Luf0d43102008-05-29 12:56:36 -0700991 i386_start_kernel();
Jeremy Fitzhardingef5d36de2008-07-08 15:06:39 -0700992#else
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -0700993 x86_64_start_reservations((char *)__pa_symbol(&boot_params));
Jeremy Fitzhardingef5d36de2008-07-08 15:06:39 -0700994#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700995}