blob: 0cd2a165f179695eec4b91f38309544855e93288 [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
69/*
70 * Point at some empty memory to start with. We map the real shared_info
71 * page as soon as fixmap is up and running.
72 */
Jeremy Fitzhardingea0d695c2008-05-26 23:31:21 +010073struct shared_info *HYPERVISOR_shared_info = (void *)&xen_dummy_shared_info;
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -070074
75/*
76 * Flag to determine whether vcpu info placement is available on all
77 * VCPUs. We assume it is to start with, and then set it to zero on
78 * the first failure. This is because it can succeed on some VCPUs
79 * and not others, since it can involve hypervisor memory allocation,
80 * or because the guest failed to guarantee all the appropriate
81 * constraints on all VCPUs (ie buffer can't cross a page boundary).
82 *
83 * Note that any particular CPU may be using a placed vcpu structure,
84 * but we can only optimise if the all are.
85 *
86 * 0: not available, 1: available
87 */
Jeremy Fitzhardingedb053b82008-10-02 16:41:31 -070088static int have_vcpu_info_placement =
89#ifdef CONFIG_X86_32
90 1
91#else
92 0
93#endif
94 ;
95
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -070096
Jeremy Fitzhardinge9c7a7942008-05-31 01:33:02 +010097static void xen_vcpu_setup(int cpu)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070098{
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -070099 struct vcpu_register_vcpu_info info;
100 int err;
101 struct vcpu_info *vcpup;
102
Jeremy Fitzhardingea0d695c2008-05-26 23:31:21 +0100103 BUG_ON(HYPERVISOR_shared_info == &xen_dummy_shared_info);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700104 per_cpu(xen_vcpu, cpu) = &HYPERVISOR_shared_info->vcpu_info[cpu];
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700105
106 if (!have_vcpu_info_placement)
107 return; /* already tested, not available */
108
109 vcpup = &per_cpu(xen_vcpu_info, cpu);
110
111 info.mfn = virt_to_mfn(vcpup);
112 info.offset = offset_in_page(vcpup);
113
Jeremy Fitzhardingee3d26972007-10-16 11:51:31 -0700114 printk(KERN_DEBUG "trying to map vcpu_info %d at %p, mfn %llx, offset %d\n",
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700115 cpu, vcpup, info.mfn, info.offset);
116
117 /* Check to see if the hypervisor will put the vcpu_info
118 structure where we want it, which allows direct access via
119 a percpu-variable. */
120 err = HYPERVISOR_vcpu_op(VCPUOP_register_vcpu_info, cpu, &info);
121
122 if (err) {
123 printk(KERN_DEBUG "register_vcpu_info failed: err=%d\n", err);
124 have_vcpu_info_placement = 0;
125 } else {
126 /* This cpu is using the registered vcpu info, even if
127 later ones fail to. */
128 per_cpu(xen_vcpu, cpu) = vcpup;
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700129
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700130 printk(KERN_DEBUG "cpu %d using vcpu_info at %p\n",
131 cpu, vcpup);
132 }
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700133}
134
Jeremy Fitzhardinge9c7a7942008-05-31 01:33:02 +0100135/*
136 * On restore, set the vcpu placement up again.
137 * If it fails, then we're in a bad state, since
138 * we can't back out from using it...
139 */
140void xen_vcpu_restore(void)
141{
142 if (have_vcpu_info_placement) {
143 int cpu;
144
145 for_each_online_cpu(cpu) {
146 bool other_cpu = (cpu != smp_processor_id());
147
148 if (other_cpu &&
149 HYPERVISOR_vcpu_op(VCPUOP_down, cpu, NULL))
150 BUG();
151
152 xen_vcpu_setup(cpu);
153
154 if (other_cpu &&
155 HYPERVISOR_vcpu_op(VCPUOP_up, cpu, NULL))
156 BUG();
157 }
158
159 BUG_ON(!have_vcpu_info_placement);
160 }
161}
162
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700163static void __init xen_banner(void)
164{
Jeremy Fitzhardinge95c7c232008-07-15 13:42:34 -0700165 unsigned version = HYPERVISOR_xen_version(XENVER_version, NULL);
166 struct xen_extraversion extra;
167 HYPERVISOR_xen_version(XENVER_extraversion, &extra);
168
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700169 printk(KERN_INFO "Booting paravirtualized kernel on %s\n",
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700170 pv_info.name);
Jeremy Fitzhardinge95c7c232008-07-15 13:42:34 -0700171 printk(KERN_INFO "Xen version: %d.%d%s%s\n",
172 version >> 16, version & 0xffff, extra.extraversion,
Jeremy Fitzhardingee57778a2008-06-16 04:30:02 -0700173 xen_feature(XENFEAT_mmu_pt_update_preserve_ad) ? " (preserve-AD)" : "");
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700174}
175
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100176static void xen_cpuid(unsigned int *ax, unsigned int *bx,
177 unsigned int *cx, unsigned int *dx)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700178{
179 unsigned maskedx = ~0;
180
181 /*
182 * Mask out inconvenient features, to try and disable as many
183 * unsupported kernel subsystems as possible.
184 */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100185 if (*ax == 1)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700186 maskedx = ~((1 << X86_FEATURE_APIC) | /* disable APIC */
187 (1 << X86_FEATURE_ACPI) | /* disable ACPI */
Jeremy Fitzhardingedbe9e992008-03-17 16:37:21 -0700188 (1 << X86_FEATURE_MCE) | /* disable MCE */
189 (1 << X86_FEATURE_MCA) | /* disable MCA */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700190 (1 << X86_FEATURE_ACC)); /* thermal monitoring */
191
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));
198 *dx &= maskedx;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700199}
200
201static void xen_set_debugreg(int reg, unsigned long val)
202{
203 HYPERVISOR_set_debugreg(reg, val);
204}
205
206static unsigned long xen_get_debugreg(int reg)
207{
208 return HYPERVISOR_get_debugreg(reg);
209}
210
Jeremy Fitzhardinge319f3ba2009-01-28 14:35:01 -0800211void xen_leave_lazy(void)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700212{
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -0700213 paravirt_leave_lazy(paravirt_get_lazy_mode());
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700214 xen_mc_flush();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700215}
216
217static unsigned long xen_store_tr(void)
218{
219 return 0;
220}
221
Jeremy Fitzhardingea05d2eb2008-07-27 08:45:02 -0700222/*
Jeremy Fitzhardingecef43bf2008-07-28 13:33:44 -0700223 * Set the page permissions for a particular virtual address. If the
224 * address is a vmalloc mapping (or other non-linear mapping), then
225 * find the linear mapping of the page and also set its protections to
226 * match.
Jeremy Fitzhardingea05d2eb2008-07-27 08:45:02 -0700227 */
228static void set_aliased_prot(void *v, pgprot_t prot)
229{
230 int level;
231 pte_t *ptep;
232 pte_t pte;
233 unsigned long pfn;
234 struct page *page;
235
236 ptep = lookup_address((unsigned long)v, &level);
237 BUG_ON(ptep == NULL);
238
239 pfn = pte_pfn(*ptep);
240 page = pfn_to_page(pfn);
241
242 pte = pfn_pte(pfn, prot);
243
244 if (HYPERVISOR_update_va_mapping((unsigned long)v, pte, 0))
245 BUG();
246
247 if (!PageHighMem(page)) {
248 void *av = __va(PFN_PHYS(pfn));
249
250 if (av != v)
251 if (HYPERVISOR_update_va_mapping((unsigned long)av, pte, 0))
252 BUG();
253 } else
254 kmap_flush_unused();
255}
256
Jeremy Fitzhardinge38ffbe62008-07-23 14:21:18 -0700257static void xen_alloc_ldt(struct desc_struct *ldt, unsigned entries)
258{
Jeremy Fitzhardingea05d2eb2008-07-27 08:45:02 -0700259 const unsigned entries_per_page = PAGE_SIZE / LDT_ENTRY_SIZE;
Jeremy Fitzhardinge38ffbe62008-07-23 14:21:18 -0700260 int i;
261
Jeremy Fitzhardingea05d2eb2008-07-27 08:45:02 -0700262 for(i = 0; i < entries; i += entries_per_page)
263 set_aliased_prot(ldt + i, PAGE_KERNEL_RO);
Jeremy Fitzhardinge38ffbe62008-07-23 14:21:18 -0700264}
265
266static void xen_free_ldt(struct desc_struct *ldt, unsigned entries)
267{
Jeremy Fitzhardingea05d2eb2008-07-27 08:45:02 -0700268 const unsigned entries_per_page = PAGE_SIZE / LDT_ENTRY_SIZE;
Jeremy Fitzhardinge38ffbe62008-07-23 14:21:18 -0700269 int i;
270
Jeremy Fitzhardingea05d2eb2008-07-27 08:45:02 -0700271 for(i = 0; i < entries; i += entries_per_page)
272 set_aliased_prot(ldt + i, PAGE_KERNEL);
Jeremy Fitzhardinge38ffbe62008-07-23 14:21:18 -0700273}
274
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700275static void xen_set_ldt(const void *addr, unsigned entries)
276{
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700277 struct mmuext_op *op;
278 struct multicall_space mcs = xen_mc_entry(sizeof(*op));
279
280 op = mcs.args;
281 op->cmd = MMUEXT_SET_LDT;
Jan Beulich4dbf7af2008-01-30 13:33:14 +0100282 op->arg1.linear_addr = (unsigned long)addr;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700283 op->arg2.nr_ents = entries;
284
285 MULTI_mmuext_op(mcs.mc, op, 1, NULL, DOMID_SELF);
286
287 xen_mc_issue(PARAVIRT_LAZY_CPU);
288}
289
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100290static void xen_load_gdt(const struct desc_ptr *dtr)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700291{
292 unsigned long *frames;
293 unsigned long va = dtr->address;
294 unsigned int size = dtr->size + 1;
295 unsigned pages = (size + PAGE_SIZE - 1) / PAGE_SIZE;
296 int f;
297 struct multicall_space mcs;
298
299 /* A GDT can be up to 64k in size, which corresponds to 8192
300 8-byte entries, or 16 4k pages.. */
301
302 BUG_ON(size > 65536);
303 BUG_ON(va & ~PAGE_MASK);
304
305 mcs = xen_mc_entry(sizeof(*frames) * pages);
306 frames = mcs.args;
307
308 for (f = 0; va < dtr->address + size; va += PAGE_SIZE, f++) {
309 frames[f] = virt_to_mfn(va);
310 make_lowmem_page_readonly((void *)va);
311 }
312
313 MULTI_set_gdt(mcs.mc, frames, size / sizeof(struct desc_struct));
314
315 xen_mc_issue(PARAVIRT_LAZY_CPU);
316}
317
318static void load_TLS_descriptor(struct thread_struct *t,
319 unsigned int cpu, unsigned int i)
320{
321 struct desc_struct *gdt = get_cpu_gdt_table(cpu);
322 xmaddr_t maddr = virt_to_machine(&gdt[GDT_ENTRY_TLS_MIN+i]);
323 struct multicall_space mc = __xen_mc_entry(0);
324
325 MULTI_update_descriptor(mc.mc, maddr.maddr, t->tls_array[i]);
326}
327
328static void xen_load_tls(struct thread_struct *t, unsigned int cpu)
329{
Jeremy Fitzhardinge8b84ad92007-07-17 18:37:06 -0700330 /*
331 * XXX sleazy hack: If we're being called in a lazy-cpu zone,
332 * it means we're in a context switch, and %gs has just been
333 * saved. This means we can zero it out to prevent faults on
334 * exit from the hypervisor if the next process has no %gs.
335 * Either way, it has been saved, and the new value will get
336 * loaded properly. This will go away as soon as Xen has been
337 * modified to not save/restore %gs for normal hypercalls.
Eduardo Habkost8a954082008-07-08 15:07:10 -0700338 *
339 * On x86_64, this hack is not used for %gs, because gs points
340 * to KERNEL_GS_BASE (and uses it for PDA references), so we
341 * must not zero %gs on x86_64
342 *
343 * For x86_64, we need to zero %fs, otherwise we may get an
344 * exception between the new %fs descriptor being loaded and
345 * %fs being effectively cleared at __switch_to().
Jeremy Fitzhardinge8b84ad92007-07-17 18:37:06 -0700346 */
Eduardo Habkost8a954082008-07-08 15:07:10 -0700347 if (paravirt_get_lazy_mode() == PARAVIRT_LAZY_CPU) {
348#ifdef CONFIG_X86_32
Jeremy Fitzhardinge8b84ad92007-07-17 18:37:06 -0700349 loadsegment(gs, 0);
Eduardo Habkost8a954082008-07-08 15:07:10 -0700350#else
351 loadsegment(fs, 0);
352#endif
353 }
354
355 xen_mc_batch();
356
357 load_TLS_descriptor(t, cpu, 0);
358 load_TLS_descriptor(t, cpu, 1);
359 load_TLS_descriptor(t, cpu, 2);
360
361 xen_mc_issue(PARAVIRT_LAZY_CPU);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700362}
363
Eduardo Habkosta8fc1082008-07-08 15:07:05 -0700364#ifdef CONFIG_X86_64
365static void xen_load_gs_index(unsigned int idx)
366{
367 if (HYPERVISOR_set_segment_base(SEGBASE_GS_USER_SEL, idx))
368 BUG();
369}
370#endif
371
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700372static void xen_write_ldt_entry(struct desc_struct *dt, int entrynum,
Glauber de Oliveira Costa75b8bb32008-01-30 13:31:13 +0100373 const void *ptr)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700374{
Jeremy Fitzhardingecef43bf2008-07-28 13:33:44 -0700375 xmaddr_t mach_lp = arbitrary_virt_to_machine(&dt[entrynum]);
Glauber de Oliveira Costa75b8bb32008-01-30 13:31:13 +0100376 u64 entry = *(u64 *)ptr;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700377
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700378 preempt_disable();
379
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700380 xen_mc_flush();
381 if (HYPERVISOR_update_descriptor(mach_lp.maddr, entry))
382 BUG();
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700383
384 preempt_enable();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700385}
386
Eduardo Habkoste176d362008-07-08 15:06:59 -0700387static int cvt_gate_to_trap(int vector, const gate_desc *val,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700388 struct trap_info *info)
389{
Eduardo Habkoste176d362008-07-08 15:06:59 -0700390 if (val->type != 0xf && val->type != 0xe)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700391 return 0;
392
393 info->vector = vector;
Eduardo Habkoste176d362008-07-08 15:06:59 -0700394 info->address = gate_offset(*val);
395 info->cs = gate_segment(*val);
396 info->flags = val->dpl;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700397 /* interrupt gates clear IF */
Eduardo Habkoste176d362008-07-08 15:06:59 -0700398 if (val->type == 0xe)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700399 info->flags |= 4;
400
401 return 1;
402}
403
404/* Locations of each CPU's IDT */
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100405static DEFINE_PER_CPU(struct desc_ptr, idt_desc);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700406
407/* Set an IDT entry. If the entry is part of the current IDT, then
408 also update Xen. */
Glauber de Oliveira Costa8d947342008-01-30 13:31:12 +0100409static void xen_write_idt_entry(gate_desc *dt, int entrynum, const gate_desc *g)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700410{
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700411 unsigned long p = (unsigned long)&dt[entrynum];
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700412 unsigned long start, end;
413
414 preempt_disable();
415
416 start = __get_cpu_var(idt_desc).address;
417 end = start + __get_cpu_var(idt_desc).size + 1;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700418
419 xen_mc_flush();
420
Glauber de Oliveira Costa8d947342008-01-30 13:31:12 +0100421 native_write_idt_entry(dt, entrynum, g);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700422
423 if (p >= start && (p + 8) <= end) {
424 struct trap_info info[2];
425
426 info[1].address = 0;
427
Eduardo Habkoste176d362008-07-08 15:06:59 -0700428 if (cvt_gate_to_trap(entrynum, g, &info[0]))
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700429 if (HYPERVISOR_set_trap_table(info))
430 BUG();
431 }
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700432
433 preempt_enable();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700434}
435
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100436static void xen_convert_trap_info(const struct desc_ptr *desc,
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700437 struct trap_info *traps)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700438{
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700439 unsigned in, out, count;
440
Eduardo Habkoste176d362008-07-08 15:06:59 -0700441 count = (desc->size+1) / sizeof(gate_desc);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700442 BUG_ON(count > 256);
443
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700444 for (in = out = 0; in < count; in++) {
Eduardo Habkoste176d362008-07-08 15:06:59 -0700445 gate_desc *entry = (gate_desc*)(desc->address) + in;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700446
Eduardo Habkoste176d362008-07-08 15:06:59 -0700447 if (cvt_gate_to_trap(in, entry, &traps[out]))
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700448 out++;
449 }
450 traps[out].address = 0;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700451}
452
453void xen_copy_trap_info(struct trap_info *traps)
454{
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100455 const struct desc_ptr *desc = &__get_cpu_var(idt_desc);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700456
457 xen_convert_trap_info(desc, traps);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700458}
459
460/* Load a new IDT into Xen. In principle this can be per-CPU, so we
461 hold a spinlock to protect the static traps[] array (static because
462 it avoids allocation, and saves stack space). */
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100463static void xen_load_idt(const struct desc_ptr *desc)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700464{
465 static DEFINE_SPINLOCK(lock);
466 static struct trap_info traps[257];
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700467
468 spin_lock(&lock);
469
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700470 __get_cpu_var(idt_desc) = *desc;
471
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700472 xen_convert_trap_info(desc, traps);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700473
474 xen_mc_flush();
475 if (HYPERVISOR_set_trap_table(traps))
476 BUG();
477
478 spin_unlock(&lock);
479}
480
481/* Write a GDT descriptor entry. Ignore LDT descriptors, since
482 they're handled differently. */
483static void xen_write_gdt_entry(struct desc_struct *dt, int entry,
Glauber de Oliveira Costa014b15b2008-01-30 13:31:13 +0100484 const void *desc, int type)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700485{
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700486 preempt_disable();
487
Glauber de Oliveira Costa014b15b2008-01-30 13:31:13 +0100488 switch (type) {
489 case DESC_LDT:
490 case DESC_TSS:
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700491 /* ignore */
492 break;
493
494 default: {
495 xmaddr_t maddr = virt_to_machine(&dt[entry]);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700496
497 xen_mc_flush();
Glauber de Oliveira Costa014b15b2008-01-30 13:31:13 +0100498 if (HYPERVISOR_update_descriptor(maddr.maddr, *(u64 *)desc))
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700499 BUG();
500 }
501
502 }
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700503
504 preempt_enable();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700505}
506
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100507static void xen_load_sp0(struct tss_struct *tss,
Jeremy Fitzhardingea05d2eb2008-07-27 08:45:02 -0700508 struct thread_struct *thread)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700509{
510 struct multicall_space mcs = xen_mc_entry(0);
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100511 MULTI_stack_switch(mcs.mc, __KERNEL_DS, thread->sp0);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700512 xen_mc_issue(PARAVIRT_LAZY_CPU);
513}
514
515static void xen_set_iopl_mask(unsigned mask)
516{
517 struct physdev_set_iopl set_iopl;
518
519 /* Force the change at ring 0. */
520 set_iopl.iopl = (mask == 0) ? 1 : (mask >> 12) & 3;
521 HYPERVISOR_physdev_op(PHYSDEVOP_set_iopl, &set_iopl);
522}
523
524static void xen_io_delay(void)
525{
526}
527
528#ifdef CONFIG_X86_LOCAL_APIC
Suresh Siddhaad66dd32008-07-11 13:11:56 -0700529static u32 xen_apic_read(u32 reg)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700530{
531 return 0;
532}
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700533
Suresh Siddhaad66dd32008-07-11 13:11:56 -0700534static void xen_apic_write(u32 reg, u32 val)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700535{
536 /* Warn to see if there's any stray references */
537 WARN_ON(1);
538}
Suresh Siddhaad66dd32008-07-11 13:11:56 -0700539
Suresh Siddhaad66dd32008-07-11 13:11:56 -0700540static u64 xen_apic_icr_read(void)
541{
542 return 0;
543}
544
545static void xen_apic_icr_write(u32 low, u32 id)
546{
547 /* Warn to see if there's any stray references */
548 WARN_ON(1);
549}
550
551static void xen_apic_wait_icr_idle(void)
552{
553 return;
554}
555
Yinghai Lu94a8c3c2008-07-13 22:19:35 -0700556static u32 xen_safe_apic_wait_icr_idle(void)
557{
558 return 0;
559}
560
Suresh Siddhaad66dd32008-07-11 13:11:56 -0700561static struct apic_ops xen_basic_apic_ops = {
562 .read = xen_apic_read,
563 .write = xen_apic_write,
Suresh Siddhaad66dd32008-07-11 13:11:56 -0700564 .icr_read = xen_apic_icr_read,
565 .icr_write = xen_apic_icr_write,
566 .wait_icr_idle = xen_apic_wait_icr_idle,
Yinghai Lu94a8c3c2008-07-13 22:19:35 -0700567 .safe_wait_icr_idle = xen_safe_apic_wait_icr_idle,
Suresh Siddhaad66dd32008-07-11 13:11:56 -0700568};
Suresh Siddhaad66dd32008-07-11 13:11:56 -0700569
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700570#endif
571
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700572
Jeremy Fitzhardinge7b1333a2008-05-26 23:31:01 +0100573static void xen_clts(void)
574{
575 struct multicall_space mcs;
576
577 mcs = xen_mc_entry(0);
578
579 MULTI_fpu_taskswitch(mcs.mc, 0);
580
581 xen_mc_issue(PARAVIRT_LAZY_CPU);
582}
583
584static void xen_write_cr0(unsigned long cr0)
585{
586 struct multicall_space mcs;
587
588 /* Only pay attention to cr0.TS; everything else is
589 ignored. */
590 mcs = xen_mc_entry(0);
591
592 MULTI_fpu_taskswitch(mcs.mc, (cr0 & X86_CR0_TS) != 0);
593
594 xen_mc_issue(PARAVIRT_LAZY_CPU);
595}
596
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700597static void xen_write_cr4(unsigned long cr4)
598{
Jeremy Fitzhardinge2956a352008-05-26 23:31:04 +0100599 cr4 &= ~X86_CR4_PGE;
600 cr4 &= ~X86_CR4_PSE;
601
602 native_write_cr4(cr4);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700603}
604
Jeremy Fitzhardinge11539682008-07-08 15:07:16 -0700605static int xen_write_msr_safe(unsigned int msr, unsigned low, unsigned high)
606{
607 int ret;
608
609 ret = 0;
610
Tejf63c2f22008-12-16 11:56:06 -0800611 switch (msr) {
Jeremy Fitzhardinge11539682008-07-08 15:07:16 -0700612#ifdef CONFIG_X86_64
613 unsigned which;
614 u64 base;
615
616 case MSR_FS_BASE: which = SEGBASE_FS; goto set;
617 case MSR_KERNEL_GS_BASE: which = SEGBASE_GS_USER; goto set;
618 case MSR_GS_BASE: which = SEGBASE_GS_KERNEL; goto set;
619
620 set:
621 base = ((u64)high << 32) | low;
622 if (HYPERVISOR_set_segment_base(which, base) != 0)
623 ret = -EFAULT;
624 break;
625#endif
Jeremy Fitzhardinged89961e2008-07-24 13:48:58 -0700626
627 case MSR_STAR:
628 case MSR_CSTAR:
629 case MSR_LSTAR:
630 case MSR_SYSCALL_MASK:
631 case MSR_IA32_SYSENTER_CS:
632 case MSR_IA32_SYSENTER_ESP:
633 case MSR_IA32_SYSENTER_EIP:
634 /* Fast syscall setup is all done in hypercalls, so
635 these are all ignored. Stub them out here to stop
636 Xen console noise. */
637 break;
638
Jeremy Fitzhardinge11539682008-07-08 15:07:16 -0700639 default:
640 ret = native_write_msr_safe(msr, low, high);
641 }
642
643 return ret;
644}
645
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +0100646void xen_setup_shared_info(void)
Jeremy Fitzhardinge2e8fe712008-03-17 16:36:53 -0700647{
648 if (!xen_feature(XENFEAT_auto_translated_physmap)) {
Jeremy Fitzhardinge15664f92008-07-08 15:06:47 -0700649 set_fixmap(FIX_PARAVIRT_BOOTMAP,
650 xen_start_info->shared_info);
Jeremy Fitzhardinge2e8fe712008-03-17 16:36:53 -0700651
Jeremy Fitzhardinge15664f92008-07-08 15:06:47 -0700652 HYPERVISOR_shared_info =
653 (struct shared_info *)fix_to_virt(FIX_PARAVIRT_BOOTMAP);
Jeremy Fitzhardinge2e8fe712008-03-17 16:36:53 -0700654 } else
655 HYPERVISOR_shared_info =
656 (struct shared_info *)__va(xen_start_info->shared_info);
657
658#ifndef CONFIG_SMP
659 /* In UP this is as good a place as any to set up shared info */
660 xen_setup_vcpu_info_placement();
661#endif
Jeremy Fitzhardinged5edbc12008-05-26 23:31:22 +0100662
663 xen_setup_mfn_list_list();
Jeremy Fitzhardinge2e8fe712008-03-17 16:36:53 -0700664}
665
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700666/* This is called once we have the cpu_possible_map */
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +0100667void xen_setup_vcpu_info_placement(void)
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700668{
669 int cpu;
670
671 for_each_possible_cpu(cpu)
672 xen_vcpu_setup(cpu);
673
674 /* xen_vcpu_setup managed to place the vcpu_info within the
675 percpu area for all cpus, so make use of it */
676 if (have_vcpu_info_placement) {
677 printk(KERN_INFO "Xen: using vcpu_info placement\n");
678
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700679 pv_irq_ops.save_fl = xen_save_fl_direct;
680 pv_irq_ops.restore_fl = xen_restore_fl_direct;
681 pv_irq_ops.irq_disable = xen_irq_disable_direct;
682 pv_irq_ops.irq_enable = xen_irq_enable_direct;
683 pv_mmu_ops.read_cr2 = xen_read_cr2_direct;
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700684 }
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700685}
686
Andi Kleenab144f52007-08-10 22:31:03 +0200687static unsigned xen_patch(u8 type, u16 clobbers, void *insnbuf,
688 unsigned long addr, unsigned len)
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700689{
690 char *start, *end, *reloc;
691 unsigned ret;
692
693 start = end = reloc = NULL;
694
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700695#define SITE(op, x) \
696 case PARAVIRT_PATCH(op.x): \
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700697 if (have_vcpu_info_placement) { \
698 start = (char *)xen_##x##_direct; \
699 end = xen_##x##_direct_end; \
700 reloc = xen_##x##_direct_reloc; \
701 } \
702 goto patch_site
703
704 switch (type) {
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700705 SITE(pv_irq_ops, irq_enable);
706 SITE(pv_irq_ops, irq_disable);
707 SITE(pv_irq_ops, save_fl);
708 SITE(pv_irq_ops, restore_fl);
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700709#undef SITE
710
711 patch_site:
712 if (start == NULL || (end-start) > len)
713 goto default_patch;
714
Andi Kleenab144f52007-08-10 22:31:03 +0200715 ret = paravirt_patch_insns(insnbuf, len, start, end);
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700716
717 /* Note: because reloc is assigned from something that
718 appears to be an array, gcc assumes it's non-null,
719 but doesn't know its relationship with start and
720 end. */
721 if (reloc > start && reloc < end) {
722 int reloc_off = reloc - start;
Andi Kleenab144f52007-08-10 22:31:03 +0200723 long *relocp = (long *)(insnbuf + reloc_off);
724 long delta = start - (char *)addr;
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700725
726 *relocp += delta;
727 }
728 break;
729
730 default_patch:
731 default:
Andi Kleenab144f52007-08-10 22:31:03 +0200732 ret = paravirt_patch_default(type, clobbers, insnbuf,
733 addr, len);
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700734 break;
735 }
736
737 return ret;
738}
739
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700740static const struct pv_info xen_info __initdata = {
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700741 .paravirt_enabled = 1,
742 .shared_kernel_pmd = 0,
743
744 .name = "Xen",
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700745};
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700746
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700747static const struct pv_init_ops xen_init_ops __initdata = {
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700748 .patch = xen_patch,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700749
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700750 .banner = xen_banner,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700751 .memory_setup = xen_memory_setup,
752 .arch_setup = xen_arch_setup,
Jeremy Fitzhardingee2426cf2008-05-31 01:24:27 +0100753 .post_allocator_init = xen_post_allocator_init,
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700754};
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700755
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700756static const struct pv_time_ops xen_time_ops __initdata = {
Jeremy Fitzhardinge15c84732007-07-17 18:37:05 -0700757 .time_init = xen_time_init,
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700758
Jeremy Fitzhardinge15c84732007-07-17 18:37:05 -0700759 .set_wallclock = xen_set_wallclock,
760 .get_wallclock = xen_get_wallclock,
Alok Katariae93ef942008-07-01 11:43:36 -0700761 .get_tsc_khz = xen_tsc_khz,
Jeremy Fitzhardingeab550282007-07-17 18:37:05 -0700762 .sched_clock = xen_sched_clock,
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700763};
Jeremy Fitzhardinge15c84732007-07-17 18:37:05 -0700764
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700765static const struct pv_cpu_ops xen_cpu_ops __initdata = {
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700766 .cpuid = xen_cpuid,
767
768 .set_debugreg = xen_set_debugreg,
769 .get_debugreg = xen_get_debugreg,
770
Jeremy Fitzhardinge7b1333a2008-05-26 23:31:01 +0100771 .clts = xen_clts,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700772
773 .read_cr0 = native_read_cr0,
Jeremy Fitzhardinge7b1333a2008-05-26 23:31:01 +0100774 .write_cr0 = xen_write_cr0,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700775
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700776 .read_cr4 = native_read_cr4,
777 .read_cr4_safe = native_read_cr4_safe,
778 .write_cr4 = xen_write_cr4,
779
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700780 .wbinvd = native_wbinvd,
781
782 .read_msr = native_read_msr_safe,
Jeremy Fitzhardinge11539682008-07-08 15:07:16 -0700783 .write_msr = xen_write_msr_safe,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700784 .read_tsc = native_read_tsc,
785 .read_pmc = native_read_pmc,
786
Jeremy Fitzhardinge81e103f2008-04-17 17:40:51 +0200787 .iret = xen_iret,
Jeremy Fitzhardinged75cd222008-06-25 00:19:26 -0400788 .irq_enable_sysexit = xen_sysexit,
Jeremy Fitzhardinge6fcac6d2008-07-08 15:07:14 -0700789#ifdef CONFIG_X86_64
790 .usergs_sysret32 = xen_sysret32,
791 .usergs_sysret64 = xen_sysret64,
792#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700793
794 .load_tr_desc = paravirt_nop,
795 .set_ldt = xen_set_ldt,
796 .load_gdt = xen_load_gdt,
797 .load_idt = xen_load_idt,
798 .load_tls = xen_load_tls,
Eduardo Habkosta8fc1082008-07-08 15:07:05 -0700799#ifdef CONFIG_X86_64
800 .load_gs_index = xen_load_gs_index,
801#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700802
Jeremy Fitzhardinge38ffbe62008-07-23 14:21:18 -0700803 .alloc_ldt = xen_alloc_ldt,
804 .free_ldt = xen_free_ldt,
805
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700806 .store_gdt = native_store_gdt,
807 .store_idt = native_store_idt,
808 .store_tr = xen_store_tr,
809
810 .write_ldt_entry = xen_write_ldt_entry,
811 .write_gdt_entry = xen_write_gdt_entry,
812 .write_idt_entry = xen_write_idt_entry,
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100813 .load_sp0 = xen_load_sp0,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700814
815 .set_iopl_mask = xen_set_iopl_mask,
816 .io_delay = xen_io_delay,
817
Jeremy Fitzhardinge952d1d72008-07-08 15:07:01 -0700818 /* Xen takes care of %gs when switching to usermode for us */
819 .swapgs = paravirt_nop,
820
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -0700821 .lazy_mode = {
822 .enter = paravirt_enter_lazy_cpu,
823 .leave = xen_leave_lazy,
824 },
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700825};
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700826
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700827static const struct pv_apic_ops xen_apic_ops __initdata = {
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700828#ifdef CONFIG_X86_LOCAL_APIC
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700829 .setup_boot_clock = paravirt_nop,
830 .setup_secondary_clock = paravirt_nop,
831 .startup_ipi_hook = paravirt_nop,
832#endif
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700833};
834
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -0700835static void xen_reboot(int reason)
836{
Jeremy Fitzhardinge349c7092008-05-26 23:31:02 +0100837 struct sched_shutdown r = { .reason = reason };
838
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -0700839#ifdef CONFIG_SMP
840 smp_send_stop();
841#endif
842
Jeremy Fitzhardinge349c7092008-05-26 23:31:02 +0100843 if (HYPERVISOR_sched_op(SCHEDOP_shutdown, &r))
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -0700844 BUG();
845}
846
847static void xen_restart(char *msg)
848{
849 xen_reboot(SHUTDOWN_reboot);
850}
851
852static void xen_emergency_restart(void)
853{
854 xen_reboot(SHUTDOWN_reboot);
855}
856
857static void xen_machine_halt(void)
858{
859 xen_reboot(SHUTDOWN_poweroff);
860}
861
862static void xen_crash_shutdown(struct pt_regs *regs)
863{
864 xen_reboot(SHUTDOWN_crash);
865}
866
867static const struct machine_ops __initdata xen_machine_ops = {
868 .restart = xen_restart,
869 .halt = xen_machine_halt,
870 .power_off = xen_machine_halt,
871 .shutdown = xen_machine_halt,
872 .crash_shutdown = xen_crash_shutdown,
873 .emergency_restart = xen_emergency_restart,
874};
875
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700876
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700877/* First C function to be called on Xen boot */
878asmlinkage void __init xen_start_kernel(void)
879{
880 pgd_t *pgd;
881
882 if (!xen_start_info)
883 return;
884
Jeremy Fitzhardinge6e833582008-08-19 13:16:17 -0700885 xen_domain_type = XEN_PV_DOMAIN;
886
Jeremy Fitzhardinge7999f4b2007-12-10 13:00:41 -0800887 BUG_ON(memcmp(xen_start_info->magic, "xen-3", 5) != 0);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700888
Jeremy Fitzhardingee57778a2008-06-16 04:30:02 -0700889 xen_setup_features();
890
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700891 /* Install Xen paravirt ops */
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700892 pv_info = xen_info;
893 pv_init_ops = xen_init_ops;
894 pv_time_ops = xen_time_ops;
895 pv_cpu_ops = xen_cpu_ops;
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700896 pv_apic_ops = xen_apic_ops;
897 pv_mmu_ops = xen_mmu_ops;
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700898
Jeremy Fitzhardinge0d1edf42008-07-28 11:53:57 -0700899 xen_init_irq_ops();
900
Yinghai Lu94a8c3c2008-07-13 22:19:35 -0700901#ifdef CONFIG_X86_LOCAL_APIC
Suresh Siddhaad66dd32008-07-11 13:11:56 -0700902 /*
Yinghai Lu94a8c3c2008-07-13 22:19:35 -0700903 * set up the basic apic ops.
Suresh Siddhaad66dd32008-07-11 13:11:56 -0700904 */
905 apic_ops = &xen_basic_apic_ops;
906#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700907
Jeremy Fitzhardingee57778a2008-06-16 04:30:02 -0700908 if (xen_feature(XENFEAT_mmu_pt_update_preserve_ad)) {
909 pv_mmu_ops.ptep_modify_prot_start = xen_ptep_modify_prot_start;
910 pv_mmu_ops.ptep_modify_prot_commit = xen_ptep_modify_prot_commit;
911 }
912
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -0700913 machine_ops = xen_machine_ops;
914
Jeremy Fitzhardingef5d36de2008-07-08 15:06:39 -0700915#ifdef CONFIG_X86_64
916 /* Disable until direct per-cpu data access. */
917 have_vcpu_info_placement = 0;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700918#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700919
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -0700920 xen_smp_init();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700921
922 /* Get mfn list */
923 if (!xen_feature(XENFEAT_auto_translated_physmap))
Jeremy Fitzhardinged451bb72008-05-26 23:31:18 +0100924 xen_build_dynamic_phys_to_machine();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700925
926 pgd = (pgd_t *)xen_start_info->pt_base;
927
Jeremy Fitzhardingeeb179e42008-06-16 15:01:53 -0700928 /* Prevent unwanted bits from being set in PTEs. */
929 __supported_pte_mask &= ~_PAGE_GLOBAL;
Jeremy Fitzhardinge6e833582008-08-19 13:16:17 -0700930 if (!xen_initial_domain())
Jeremy Fitzhardingeeb179e42008-06-16 15:01:53 -0700931 __supported_pte_mask &= ~(_PAGE_PWT | _PAGE_PCD);
932
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -0700933 /* Don't do the full vcpu_info placement stuff until we have a
934 possible map and a non-dummy shared_info. */
935 per_cpu(xen_vcpu, 0) = &HYPERVISOR_shared_info->vcpu_info[0];
936
937 xen_raw_console_write("mapping kernel into physical memory\n");
Jeremy Fitzhardinged114e1982008-07-08 15:06:52 -0700938 pgd = xen_setup_kernel_pagetable(pgd, xen_start_info->nr_pages);
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -0700939
940 init_mm.pgd = pgd;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700941
942 /* keep using Xen gdt for now; no urgent need to change it */
943
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700944 pv_info.kernel_rpl = 1;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700945 if (xen_feature(XENFEAT_supervisor_mode_kernel))
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700946 pv_info.kernel_rpl = 0;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700947
948 /* set the limit of our address space */
Jeremy Fitzhardingefb1d8402007-10-16 11:51:31 -0700949 xen_reserve_top();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700950
Jeremy Fitzhardinge7d087b62008-07-08 15:06:48 -0700951#ifdef CONFIG_X86_32
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700952 /* set up basic CPUID stuff */
953 cpu_detect(&new_cpu_data);
954 new_cpu_data.hard_math = 1;
955 new_cpu_data.x86_capability[0] = cpuid_edx(1);
Jeremy Fitzhardinge7d087b62008-07-08 15:06:48 -0700956#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700957
958 /* Poke various useful things into boot_params */
H. Peter Anvin30c82642007-10-15 17:13:22 -0700959 boot_params.hdr.type_of_loader = (9 << 4) | 0;
960 boot_params.hdr.ramdisk_image = xen_start_info->mod_start
961 ? __pa(xen_start_info->mod_start) : 0;
962 boot_params.hdr.ramdisk_size = xen_start_info->mod_len;
Jeremy Fitzhardingeb7c3c5c2008-07-08 15:07:07 -0700963 boot_params.hdr.cmd_line_ptr = __pa(xen_start_info->cmd_line);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700964
Jeremy Fitzhardinge6e833582008-08-19 13:16:17 -0700965 if (!xen_initial_domain()) {
Jeremy Fitzhardinge83abc702008-05-26 23:31:12 +0100966 add_preferred_console("xenboot", 0, NULL);
Markus Armbruster9e124fe2008-05-26 23:31:07 +0100967 add_preferred_console("tty", 0, NULL);
Markus Armbrusterb8c2d3d2008-02-27 14:56:35 +0100968 add_preferred_console("hvc", 0, NULL);
Markus Armbruster9e124fe2008-05-26 23:31:07 +0100969 }
Markus Armbrusterb8c2d3d2008-02-27 14:56:35 +0100970
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -0700971 xen_raw_console_write("about to get started...\n");
972
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700973 /* Start the world */
Jeremy Fitzhardingef5d36de2008-07-08 15:06:39 -0700974#ifdef CONFIG_X86_32
Yinghai Luf0d43102008-05-29 12:56:36 -0700975 i386_start_kernel();
Jeremy Fitzhardingef5d36de2008-07-08 15:06:39 -0700976#else
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -0700977 x86_64_start_reservations((char *)__pa_symbol(&boot_params));
Jeremy Fitzhardingef5d36de2008-07-08 15:06:39 -0700978#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700979}