blob: e4d1459a63dfc635a642fd27446b326ba5440c16 [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>
31#include <xen/interface/physdev.h>
32#include <xen/interface/vcpu.h>
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -070033#include <xen/interface/sched.h>
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070034#include <xen/features.h>
35#include <xen/page.h>
36
37#include <asm/paravirt.h>
Ingo Molnarcaf43bf2008-07-20 14:06:50 +020038#include <asm/apic.h>
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070039#include <asm/page.h>
40#include <asm/xen/hypercall.h>
41#include <asm/xen/hypervisor.h>
42#include <asm/fixmap.h>
43#include <asm/processor.h>
44#include <asm/setup.h>
45#include <asm/desc.h>
46#include <asm/pgtable.h>
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070047#include <asm/tlbflush.h>
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -070048#include <asm/reboot.h>
Jeremy Fitzhardingeeba00452008-06-25 00:19:12 -040049#include <asm/pgalloc.h>
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070050
51#include "xen-ops.h"
Jeremy Fitzhardinge3b827c12007-07-17 18:37:04 -070052#include "mmu.h"
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070053#include "multicalls.h"
54
55EXPORT_SYMBOL_GPL(hypercall_page);
56
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070057DEFINE_PER_CPU(struct vcpu_info *, xen_vcpu);
58DEFINE_PER_CPU(struct vcpu_info, xen_vcpu_info);
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -070059
60/*
61 * Note about cr3 (pagetable base) values:
62 *
63 * xen_cr3 contains the current logical cr3 value; it contains the
64 * last set cr3. This may not be the current effective cr3, because
65 * its update may be being lazily deferred. However, a vcpu looking
66 * at its own cr3 can use this value knowing that it everything will
67 * be self-consistent.
68 *
69 * xen_current_cr3 contains the actual vcpu cr3; it is set once the
70 * hypercall to set the vcpu cr3 is complete (so it may be a little
71 * out of date, but it will never be set early). If one vcpu is
72 * looking at another vcpu's cr3 value, it should use this variable.
73 */
74DEFINE_PER_CPU(unsigned long, xen_cr3); /* cr3 stored as physaddr */
75DEFINE_PER_CPU(unsigned long, xen_current_cr3); /* actual vcpu cr3 */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070076
77struct start_info *xen_start_info;
78EXPORT_SYMBOL_GPL(xen_start_info);
79
Jeremy Fitzhardingea0d695c2008-05-26 23:31:21 +010080struct shared_info xen_dummy_shared_info;
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -070081
82/*
83 * Point at some empty memory to start with. We map the real shared_info
84 * page as soon as fixmap is up and running.
85 */
Jeremy Fitzhardingea0d695c2008-05-26 23:31:21 +010086struct shared_info *HYPERVISOR_shared_info = (void *)&xen_dummy_shared_info;
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -070087
88/*
89 * Flag to determine whether vcpu info placement is available on all
90 * VCPUs. We assume it is to start with, and then set it to zero on
91 * the first failure. This is because it can succeed on some VCPUs
92 * and not others, since it can involve hypervisor memory allocation,
93 * or because the guest failed to guarantee all the appropriate
94 * constraints on all VCPUs (ie buffer can't cross a page boundary).
95 *
96 * Note that any particular CPU may be using a placed vcpu structure,
97 * but we can only optimise if the all are.
98 *
99 * 0: not available, 1: available
100 */
Jeremy Fitzhardinge04c44a02008-03-17 16:36:52 -0700101static int have_vcpu_info_placement = 1;
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700102
Jeremy Fitzhardinge9c7a7942008-05-31 01:33:02 +0100103static void xen_vcpu_setup(int cpu)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700104{
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700105 struct vcpu_register_vcpu_info info;
106 int err;
107 struct vcpu_info *vcpup;
108
Jeremy Fitzhardingea0d695c2008-05-26 23:31:21 +0100109 BUG_ON(HYPERVISOR_shared_info == &xen_dummy_shared_info);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700110 per_cpu(xen_vcpu, cpu) = &HYPERVISOR_shared_info->vcpu_info[cpu];
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700111
112 if (!have_vcpu_info_placement)
113 return; /* already tested, not available */
114
115 vcpup = &per_cpu(xen_vcpu_info, cpu);
116
117 info.mfn = virt_to_mfn(vcpup);
118 info.offset = offset_in_page(vcpup);
119
Jeremy Fitzhardingee3d26972007-10-16 11:51:31 -0700120 printk(KERN_DEBUG "trying to map vcpu_info %d at %p, mfn %llx, offset %d\n",
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700121 cpu, vcpup, info.mfn, info.offset);
122
123 /* Check to see if the hypervisor will put the vcpu_info
124 structure where we want it, which allows direct access via
125 a percpu-variable. */
126 err = HYPERVISOR_vcpu_op(VCPUOP_register_vcpu_info, cpu, &info);
127
128 if (err) {
129 printk(KERN_DEBUG "register_vcpu_info failed: err=%d\n", err);
130 have_vcpu_info_placement = 0;
131 } else {
132 /* This cpu is using the registered vcpu info, even if
133 later ones fail to. */
134 per_cpu(xen_vcpu, cpu) = vcpup;
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700135
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700136 printk(KERN_DEBUG "cpu %d using vcpu_info at %p\n",
137 cpu, vcpup);
138 }
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700139}
140
Jeremy Fitzhardinge9c7a7942008-05-31 01:33:02 +0100141/*
142 * On restore, set the vcpu placement up again.
143 * If it fails, then we're in a bad state, since
144 * we can't back out from using it...
145 */
146void xen_vcpu_restore(void)
147{
148 if (have_vcpu_info_placement) {
149 int cpu;
150
151 for_each_online_cpu(cpu) {
152 bool other_cpu = (cpu != smp_processor_id());
153
154 if (other_cpu &&
155 HYPERVISOR_vcpu_op(VCPUOP_down, cpu, NULL))
156 BUG();
157
158 xen_vcpu_setup(cpu);
159
160 if (other_cpu &&
161 HYPERVISOR_vcpu_op(VCPUOP_up, cpu, NULL))
162 BUG();
163 }
164
165 BUG_ON(!have_vcpu_info_placement);
166 }
167}
168
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700169static void __init xen_banner(void)
170{
171 printk(KERN_INFO "Booting paravirtualized kernel on %s\n",
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700172 pv_info.name);
Jeremy Fitzhardingee57778a2008-06-16 04:30:02 -0700173 printk(KERN_INFO "Hypervisor signature: %s%s\n",
174 xen_start_info->magic,
175 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
213static unsigned long xen_save_fl(void)
214{
215 struct vcpu_info *vcpu;
216 unsigned long flags;
217
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700218 vcpu = x86_read_percpu(xen_vcpu);
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700219
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700220 /* flag has opposite sense of mask */
221 flags = !vcpu->evtchn_upcall_mask;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700222
223 /* convert to IF type flag
224 -0 -> 0x00000000
225 -1 -> 0xffffffff
226 */
227 return (-flags) & X86_EFLAGS_IF;
228}
229
230static void xen_restore_fl(unsigned long flags)
231{
232 struct vcpu_info *vcpu;
233
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700234 /* convert from IF type flag */
235 flags = !(flags & X86_EFLAGS_IF);
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700236
237 /* There's a one instruction preempt window here. We need to
238 make sure we're don't switch CPUs between getting the vcpu
239 pointer and updating the mask. */
240 preempt_disable();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700241 vcpu = x86_read_percpu(xen_vcpu);
242 vcpu->evtchn_upcall_mask = flags;
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700243 preempt_enable_no_resched();
244
245 /* Doesn't matter if we get preempted here, because any
246 pending event will get dealt with anyway. */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700247
248 if (flags == 0) {
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700249 preempt_check_resched();
250 barrier(); /* unmask then check (avoid races) */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700251 if (unlikely(vcpu->evtchn_upcall_pending))
252 force_evtchn_callback();
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700253 }
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700254}
255
256static void xen_irq_disable(void)
257{
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700258 /* There's a one instruction preempt window here. We need to
259 make sure we're don't switch CPUs between getting the vcpu
260 pointer and updating the mask. */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700261 preempt_disable();
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700262 x86_read_percpu(xen_vcpu)->evtchn_upcall_mask = 1;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700263 preempt_enable_no_resched();
264}
265
266static void xen_irq_enable(void)
267{
268 struct vcpu_info *vcpu;
269
Jeremy Fitzhardinge239d1fc2008-05-26 23:31:05 +0100270 /* We don't need to worry about being preempted here, since
271 either a) interrupts are disabled, so no preemption, or b)
272 the caller is confused and is trying to re-enable interrupts
273 on an indeterminate processor. */
274
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700275 vcpu = x86_read_percpu(xen_vcpu);
276 vcpu->evtchn_upcall_mask = 0;
277
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700278 /* Doesn't matter if we get preempted here, because any
279 pending event will get dealt with anyway. */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700280
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700281 barrier(); /* unmask then check (avoid races) */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700282 if (unlikely(vcpu->evtchn_upcall_pending))
283 force_evtchn_callback();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700284}
285
286static void xen_safe_halt(void)
287{
288 /* Blocking includes an implicit local_irq_enable(). */
Jeremy Fitzhardinge349c709f2008-05-26 23:31:02 +0100289 if (HYPERVISOR_sched_op(SCHEDOP_block, NULL) != 0)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700290 BUG();
291}
292
293static void xen_halt(void)
294{
295 if (irqs_disabled())
296 HYPERVISOR_vcpu_op(VCPUOP_down, smp_processor_id(), NULL);
297 else
298 xen_safe_halt();
299}
300
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -0700301static void xen_leave_lazy(void)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700302{
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -0700303 paravirt_leave_lazy(paravirt_get_lazy_mode());
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700304 xen_mc_flush();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700305}
306
307static unsigned long xen_store_tr(void)
308{
309 return 0;
310}
311
312static void xen_set_ldt(const void *addr, unsigned entries)
313{
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700314 struct mmuext_op *op;
315 struct multicall_space mcs = xen_mc_entry(sizeof(*op));
316
317 op = mcs.args;
318 op->cmd = MMUEXT_SET_LDT;
Jan Beulich4dbf7af2008-01-30 13:33:14 +0100319 op->arg1.linear_addr = (unsigned long)addr;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700320 op->arg2.nr_ents = entries;
321
322 MULTI_mmuext_op(mcs.mc, op, 1, NULL, DOMID_SELF);
323
324 xen_mc_issue(PARAVIRT_LAZY_CPU);
325}
326
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100327static void xen_load_gdt(const struct desc_ptr *dtr)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700328{
329 unsigned long *frames;
330 unsigned long va = dtr->address;
331 unsigned int size = dtr->size + 1;
332 unsigned pages = (size + PAGE_SIZE - 1) / PAGE_SIZE;
333 int f;
334 struct multicall_space mcs;
335
336 /* A GDT can be up to 64k in size, which corresponds to 8192
337 8-byte entries, or 16 4k pages.. */
338
339 BUG_ON(size > 65536);
340 BUG_ON(va & ~PAGE_MASK);
341
342 mcs = xen_mc_entry(sizeof(*frames) * pages);
343 frames = mcs.args;
344
345 for (f = 0; va < dtr->address + size; va += PAGE_SIZE, f++) {
346 frames[f] = virt_to_mfn(va);
347 make_lowmem_page_readonly((void *)va);
348 }
349
350 MULTI_set_gdt(mcs.mc, frames, size / sizeof(struct desc_struct));
351
352 xen_mc_issue(PARAVIRT_LAZY_CPU);
353}
354
355static void load_TLS_descriptor(struct thread_struct *t,
356 unsigned int cpu, unsigned int i)
357{
358 struct desc_struct *gdt = get_cpu_gdt_table(cpu);
359 xmaddr_t maddr = virt_to_machine(&gdt[GDT_ENTRY_TLS_MIN+i]);
360 struct multicall_space mc = __xen_mc_entry(0);
361
362 MULTI_update_descriptor(mc.mc, maddr.maddr, t->tls_array[i]);
363}
364
365static void xen_load_tls(struct thread_struct *t, unsigned int cpu)
366{
367 xen_mc_batch();
368
369 load_TLS_descriptor(t, cpu, 0);
370 load_TLS_descriptor(t, cpu, 1);
371 load_TLS_descriptor(t, cpu, 2);
372
373 xen_mc_issue(PARAVIRT_LAZY_CPU);
Jeremy Fitzhardinge8b84ad92007-07-17 18:37:06 -0700374
375 /*
376 * XXX sleazy hack: If we're being called in a lazy-cpu zone,
377 * it means we're in a context switch, and %gs has just been
378 * saved. This means we can zero it out to prevent faults on
379 * exit from the hypervisor if the next process has no %gs.
380 * Either way, it has been saved, and the new value will get
381 * loaded properly. This will go away as soon as Xen has been
382 * modified to not save/restore %gs for normal hypercalls.
383 */
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -0700384 if (paravirt_get_lazy_mode() == PARAVIRT_LAZY_CPU)
Jeremy Fitzhardinge8b84ad92007-07-17 18:37:06 -0700385 loadsegment(gs, 0);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700386}
387
388static void xen_write_ldt_entry(struct desc_struct *dt, int entrynum,
Glauber de Oliveira Costa75b8bb32008-01-30 13:31:13 +0100389 const void *ptr)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700390{
391 unsigned long lp = (unsigned long)&dt[entrynum];
392 xmaddr_t mach_lp = virt_to_machine(lp);
Glauber de Oliveira Costa75b8bb32008-01-30 13:31:13 +0100393 u64 entry = *(u64 *)ptr;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700394
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700395 preempt_disable();
396
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700397 xen_mc_flush();
398 if (HYPERVISOR_update_descriptor(mach_lp.maddr, entry))
399 BUG();
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700400
401 preempt_enable();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700402}
403
404static int cvt_gate_to_trap(int vector, u32 low, u32 high,
405 struct trap_info *info)
406{
407 u8 type, dpl;
408
409 type = (high >> 8) & 0x1f;
410 dpl = (high >> 13) & 3;
411
412 if (type != 0xf && type != 0xe)
413 return 0;
414
415 info->vector = vector;
416 info->address = (high & 0xffff0000) | (low & 0x0000ffff);
417 info->cs = low >> 16;
418 info->flags = dpl;
419 /* interrupt gates clear IF */
420 if (type == 0xe)
421 info->flags |= 4;
422
423 return 1;
424}
425
426/* Locations of each CPU's IDT */
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100427static DEFINE_PER_CPU(struct desc_ptr, idt_desc);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700428
429/* Set an IDT entry. If the entry is part of the current IDT, then
430 also update Xen. */
Glauber de Oliveira Costa8d947342008-01-30 13:31:12 +0100431static void xen_write_idt_entry(gate_desc *dt, int entrynum, const gate_desc *g)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700432{
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700433 unsigned long p = (unsigned long)&dt[entrynum];
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700434 unsigned long start, end;
435
436 preempt_disable();
437
438 start = __get_cpu_var(idt_desc).address;
439 end = start + __get_cpu_var(idt_desc).size + 1;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700440
441 xen_mc_flush();
442
Glauber de Oliveira Costa8d947342008-01-30 13:31:12 +0100443 native_write_idt_entry(dt, entrynum, g);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700444
445 if (p >= start && (p + 8) <= end) {
446 struct trap_info info[2];
Glauber de Oliveira Costa8d947342008-01-30 13:31:12 +0100447 u32 *desc = (u32 *)g;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700448
449 info[1].address = 0;
450
Glauber de Oliveira Costa8d947342008-01-30 13:31:12 +0100451 if (cvt_gate_to_trap(entrynum, desc[0], desc[1], &info[0]))
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700452 if (HYPERVISOR_set_trap_table(info))
453 BUG();
454 }
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700455
456 preempt_enable();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700457}
458
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100459static void xen_convert_trap_info(const struct desc_ptr *desc,
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700460 struct trap_info *traps)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700461{
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700462 unsigned in, out, count;
463
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700464 count = (desc->size+1) / 8;
465 BUG_ON(count > 256);
466
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700467 for (in = out = 0; in < count; in++) {
468 const u32 *entry = (u32 *)(desc->address + in * 8);
469
470 if (cvt_gate_to_trap(in, entry[0], entry[1], &traps[out]))
471 out++;
472 }
473 traps[out].address = 0;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700474}
475
476void xen_copy_trap_info(struct trap_info *traps)
477{
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100478 const struct desc_ptr *desc = &__get_cpu_var(idt_desc);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700479
480 xen_convert_trap_info(desc, traps);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700481}
482
483/* Load a new IDT into Xen. In principle this can be per-CPU, so we
484 hold a spinlock to protect the static traps[] array (static because
485 it avoids allocation, and saves stack space). */
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100486static void xen_load_idt(const struct desc_ptr *desc)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700487{
488 static DEFINE_SPINLOCK(lock);
489 static struct trap_info traps[257];
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700490
491 spin_lock(&lock);
492
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700493 __get_cpu_var(idt_desc) = *desc;
494
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700495 xen_convert_trap_info(desc, traps);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700496
497 xen_mc_flush();
498 if (HYPERVISOR_set_trap_table(traps))
499 BUG();
500
501 spin_unlock(&lock);
502}
503
504/* Write a GDT descriptor entry. Ignore LDT descriptors, since
505 they're handled differently. */
506static void xen_write_gdt_entry(struct desc_struct *dt, int entry,
Glauber de Oliveira Costa014b15b2008-01-30 13:31:13 +0100507 const void *desc, int type)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700508{
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700509 preempt_disable();
510
Glauber de Oliveira Costa014b15b2008-01-30 13:31:13 +0100511 switch (type) {
512 case DESC_LDT:
513 case DESC_TSS:
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700514 /* ignore */
515 break;
516
517 default: {
518 xmaddr_t maddr = virt_to_machine(&dt[entry]);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700519
520 xen_mc_flush();
Glauber de Oliveira Costa014b15b2008-01-30 13:31:13 +0100521 if (HYPERVISOR_update_descriptor(maddr.maddr, *(u64 *)desc))
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700522 BUG();
523 }
524
525 }
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700526
527 preempt_enable();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700528}
529
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100530static void xen_load_sp0(struct tss_struct *tss,
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700531 struct thread_struct *thread)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700532{
533 struct multicall_space mcs = xen_mc_entry(0);
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100534 MULTI_stack_switch(mcs.mc, __KERNEL_DS, thread->sp0);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700535 xen_mc_issue(PARAVIRT_LAZY_CPU);
536}
537
538static void xen_set_iopl_mask(unsigned mask)
539{
540 struct physdev_set_iopl set_iopl;
541
542 /* Force the change at ring 0. */
543 set_iopl.iopl = (mask == 0) ? 1 : (mask >> 12) & 3;
544 HYPERVISOR_physdev_op(PHYSDEVOP_set_iopl, &set_iopl);
545}
546
547static void xen_io_delay(void)
548{
549}
550
551#ifdef CONFIG_X86_LOCAL_APIC
Suresh Siddhaad66dd32008-07-11 13:11:56 -0700552static u32 xen_apic_read(u32 reg)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700553{
554 return 0;
555}
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700556
Suresh Siddhaad66dd32008-07-11 13:11:56 -0700557static void xen_apic_write(u32 reg, u32 val)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700558{
559 /* Warn to see if there's any stray references */
560 WARN_ON(1);
561}
Suresh Siddhaad66dd32008-07-11 13:11:56 -0700562
Suresh Siddhaad66dd32008-07-11 13:11:56 -0700563static u64 xen_apic_icr_read(void)
564{
565 return 0;
566}
567
568static void xen_apic_icr_write(u32 low, u32 id)
569{
570 /* Warn to see if there's any stray references */
571 WARN_ON(1);
572}
573
574static void xen_apic_wait_icr_idle(void)
575{
576 return;
577}
578
Yinghai Lu94a8c3c2008-07-13 22:19:35 -0700579static u32 xen_safe_apic_wait_icr_idle(void)
580{
581 return 0;
582}
583
Suresh Siddhaad66dd32008-07-11 13:11:56 -0700584static struct apic_ops xen_basic_apic_ops = {
585 .read = xen_apic_read,
586 .write = xen_apic_write,
Suresh Siddhaad66dd32008-07-11 13:11:56 -0700587 .icr_read = xen_apic_icr_read,
588 .icr_write = xen_apic_icr_write,
589 .wait_icr_idle = xen_apic_wait_icr_idle,
Yinghai Lu94a8c3c2008-07-13 22:19:35 -0700590 .safe_wait_icr_idle = xen_safe_apic_wait_icr_idle,
Suresh Siddhaad66dd32008-07-11 13:11:56 -0700591};
Suresh Siddhaad66dd32008-07-11 13:11:56 -0700592
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700593#endif
594
595static void xen_flush_tlb(void)
596{
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700597 struct mmuext_op *op;
Jeremy Fitzhardinge41e332b2008-04-02 10:54:09 -0700598 struct multicall_space mcs;
599
600 preempt_disable();
601
602 mcs = xen_mc_entry(sizeof(*op));
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700603
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700604 op = mcs.args;
605 op->cmd = MMUEXT_TLB_FLUSH_LOCAL;
606 MULTI_mmuext_op(mcs.mc, op, 1, NULL, DOMID_SELF);
607
608 xen_mc_issue(PARAVIRT_LAZY_MMU);
Jeremy Fitzhardinge41e332b2008-04-02 10:54:09 -0700609
610 preempt_enable();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700611}
612
613static void xen_flush_tlb_single(unsigned long addr)
614{
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700615 struct mmuext_op *op;
Jeremy Fitzhardinge41e332b2008-04-02 10:54:09 -0700616 struct multicall_space mcs;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700617
Jeremy Fitzhardinge41e332b2008-04-02 10:54:09 -0700618 preempt_disable();
619
620 mcs = xen_mc_entry(sizeof(*op));
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700621 op = mcs.args;
622 op->cmd = MMUEXT_INVLPG_LOCAL;
623 op->arg1.linear_addr = addr & PAGE_MASK;
624 MULTI_mmuext_op(mcs.mc, op, 1, NULL, DOMID_SELF);
625
626 xen_mc_issue(PARAVIRT_LAZY_MMU);
Jeremy Fitzhardinge41e332b2008-04-02 10:54:09 -0700627
628 preempt_enable();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700629}
630
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700631static void xen_flush_tlb_others(const cpumask_t *cpus, struct mm_struct *mm,
632 unsigned long va)
633{
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700634 struct {
635 struct mmuext_op op;
636 cpumask_t mask;
637 } *args;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700638 cpumask_t cpumask = *cpus;
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700639 struct multicall_space mcs;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700640
641 /*
642 * A couple of (to be removed) sanity checks:
643 *
644 * - current CPU must not be in mask
645 * - mask must exist :)
646 */
647 BUG_ON(cpus_empty(cpumask));
648 BUG_ON(cpu_isset(smp_processor_id(), cpumask));
649 BUG_ON(!mm);
650
651 /* If a CPU which we ran on has gone down, OK. */
652 cpus_and(cpumask, cpumask, cpu_online_map);
653 if (cpus_empty(cpumask))
654 return;
655
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700656 mcs = xen_mc_entry(sizeof(*args));
657 args = mcs.args;
658 args->mask = cpumask;
659 args->op.arg2.vcpumask = &args->mask;
660
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700661 if (va == TLB_FLUSH_ALL) {
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700662 args->op.cmd = MMUEXT_TLB_FLUSH_MULTI;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700663 } else {
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700664 args->op.cmd = MMUEXT_INVLPG_MULTI;
665 args->op.arg1.linear_addr = va;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700666 }
667
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700668 MULTI_mmuext_op(mcs.mc, &args->op, 1, NULL, DOMID_SELF);
669
670 xen_mc_issue(PARAVIRT_LAZY_MMU);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700671}
672
Jeremy Fitzhardinge7b1333a2008-05-26 23:31:01 +0100673static void xen_clts(void)
674{
675 struct multicall_space mcs;
676
677 mcs = xen_mc_entry(0);
678
679 MULTI_fpu_taskswitch(mcs.mc, 0);
680
681 xen_mc_issue(PARAVIRT_LAZY_CPU);
682}
683
684static void xen_write_cr0(unsigned long cr0)
685{
686 struct multicall_space mcs;
687
688 /* Only pay attention to cr0.TS; everything else is
689 ignored. */
690 mcs = xen_mc_entry(0);
691
692 MULTI_fpu_taskswitch(mcs.mc, (cr0 & X86_CR0_TS) != 0);
693
694 xen_mc_issue(PARAVIRT_LAZY_CPU);
695}
696
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700697static void xen_write_cr2(unsigned long cr2)
698{
699 x86_read_percpu(xen_vcpu)->arch.cr2 = cr2;
700}
701
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700702static unsigned long xen_read_cr2(void)
703{
704 return x86_read_percpu(xen_vcpu)->arch.cr2;
705}
706
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700707static unsigned long xen_read_cr2_direct(void)
708{
709 return x86_read_percpu(xen_vcpu_info.arch.cr2);
710}
711
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700712static void xen_write_cr4(unsigned long cr4)
713{
Jeremy Fitzhardinge2956a352008-05-26 23:31:04 +0100714 cr4 &= ~X86_CR4_PGE;
715 cr4 &= ~X86_CR4_PSE;
716
717 native_write_cr4(cr4);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700718}
719
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700720static unsigned long xen_read_cr3(void)
721{
722 return x86_read_percpu(xen_cr3);
723}
724
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -0700725static void set_current_cr3(void *v)
726{
727 x86_write_percpu(xen_current_cr3, (unsigned long)v);
728}
729
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700730static void xen_write_cr3(unsigned long cr3)
731{
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -0700732 struct mmuext_op *op;
733 struct multicall_space mcs;
734 unsigned long mfn = pfn_to_mfn(PFN_DOWN(cr3));
735
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700736 BUG_ON(preemptible());
737
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -0700738 mcs = xen_mc_entry(sizeof(*op)); /* disables interrupts */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700739
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -0700740 /* Update while interrupts are disabled, so its atomic with
741 respect to ipis */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700742 x86_write_percpu(xen_cr3, cr3);
743
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -0700744 op = mcs.args;
745 op->cmd = MMUEXT_NEW_BASEPTR;
746 op->arg1.mfn = mfn;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700747
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -0700748 MULTI_mmuext_op(mcs.mc, op, 1, NULL, DOMID_SELF);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700749
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -0700750 /* Update xen_update_cr3 once the batch has actually
751 been submitted. */
752 xen_mc_callback(set_current_cr3, (void *)cr3);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700753
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -0700754 xen_mc_issue(PARAVIRT_LAZY_CPU); /* interrupts restored */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700755}
756
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700757/* Early in boot, while setting up the initial pagetable, assume
758 everything is pinned. */
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700759static __init void xen_alloc_pte_init(struct mm_struct *mm, u32 pfn)
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700760{
Jeremy Fitzhardingeaf7ae3b2008-04-02 10:54:12 -0700761#ifdef CONFIG_FLATMEM
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700762 BUG_ON(mem_map); /* should only be used early */
Jeremy Fitzhardingeaf7ae3b2008-04-02 10:54:12 -0700763#endif
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700764 make_lowmem_page_readonly(__va(PFN_PHYS(pfn)));
765}
766
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700767/* Early release_pte assumes that all pts are pinned, since there's
Jeremy Fitzhardinge1c70e9b2008-01-30 13:33:39 +0100768 only init_mm and anything attached to that is pinned. */
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700769static void xen_release_pte_init(u32 pfn)
Jeremy Fitzhardinge1c70e9b2008-01-30 13:33:39 +0100770{
771 make_lowmem_page_readwrite(__va(PFN_PHYS(pfn)));
772}
773
Mark McLoughlinf6433702008-04-02 15:36:36 +0100774static void pin_pagetable_pfn(unsigned cmd, unsigned long pfn)
Jeremy Fitzhardinge74260712007-10-16 11:51:30 -0700775{
776 struct mmuext_op op;
Mark McLoughlinf6433702008-04-02 15:36:36 +0100777 op.cmd = cmd;
Jeremy Fitzhardinge74260712007-10-16 11:51:30 -0700778 op.arg1.mfn = pfn_to_mfn(pfn);
779 if (HYPERVISOR_mmuext_op(&op, 1, NULL, DOMID_SELF))
780 BUG();
781}
782
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700783/* This needs to make sure the new pte page is pinned iff its being
784 attached to a pinned pagetable. */
Jeremy Fitzhardinge1c70e9b2008-01-30 13:33:39 +0100785static void xen_alloc_ptpage(struct mm_struct *mm, u32 pfn, unsigned level)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700786{
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700787 struct page *page = pfn_to_page(pfn);
788
789 if (PagePinned(virt_to_page(mm->pgd))) {
790 SetPagePinned(page);
791
Jeremy Fitzhardinge74260712007-10-16 11:51:30 -0700792 if (!PageHighMem(page)) {
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700793 make_lowmem_page_readonly(__va(PFN_PHYS(pfn)));
Mark McLoughlinf6433702008-04-02 15:36:36 +0100794 if (level == PT_PTE)
795 pin_pagetable_pfn(MMUEXT_PIN_L1_TABLE, pfn);
Jeremy Fitzhardinge74260712007-10-16 11:51:30 -0700796 } else
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700797 /* make sure there are no stray mappings of
798 this page */
799 kmap_flush_unused();
800 }
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700801}
802
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700803static void xen_alloc_pte(struct mm_struct *mm, u32 pfn)
Jeremy Fitzhardinge1c70e9b2008-01-30 13:33:39 +0100804{
Mark McLoughlinf6433702008-04-02 15:36:36 +0100805 xen_alloc_ptpage(mm, pfn, PT_PTE);
Jeremy Fitzhardinge1c70e9b2008-01-30 13:33:39 +0100806}
807
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700808static void xen_alloc_pmd(struct mm_struct *mm, u32 pfn)
Jeremy Fitzhardinge1c70e9b2008-01-30 13:33:39 +0100809{
Mark McLoughlinf6433702008-04-02 15:36:36 +0100810 xen_alloc_ptpage(mm, pfn, PT_PMD);
Jeremy Fitzhardinge1c70e9b2008-01-30 13:33:39 +0100811}
812
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700813/* This should never happen until we're OK to use struct page */
Mark McLoughlinf6433702008-04-02 15:36:36 +0100814static void xen_release_ptpage(u32 pfn, unsigned level)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700815{
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700816 struct page *page = pfn_to_page(pfn);
817
818 if (PagePinned(page)) {
Jeremy Fitzhardinge74260712007-10-16 11:51:30 -0700819 if (!PageHighMem(page)) {
Mark McLoughlina684d692008-04-02 15:36:37 +0100820 if (level == PT_PTE)
821 pin_pagetable_pfn(MMUEXT_UNPIN_TABLE, pfn);
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700822 make_lowmem_page_readwrite(__va(PFN_PHYS(pfn)));
Jeremy Fitzhardinge74260712007-10-16 11:51:30 -0700823 }
Mark McLoughlinc946c7d2008-04-02 15:36:38 +0100824 ClearPagePinned(page);
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700825 }
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700826}
827
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700828static void xen_release_pte(u32 pfn)
Mark McLoughlinf6433702008-04-02 15:36:36 +0100829{
830 xen_release_ptpage(pfn, PT_PTE);
831}
832
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700833static void xen_release_pmd(u32 pfn)
Mark McLoughlinf6433702008-04-02 15:36:36 +0100834{
835 xen_release_ptpage(pfn, PT_PMD);
836}
837
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700838#ifdef CONFIG_HIGHPTE
839static void *xen_kmap_atomic_pte(struct page *page, enum km_type type)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700840{
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700841 pgprot_t prot = PAGE_KERNEL;
842
843 if (PagePinned(page))
844 prot = PAGE_KERNEL_RO;
845
846 if (0 && PageHighMem(page))
847 printk("mapping highpte %lx type %d prot %s\n",
848 page_to_pfn(page), type,
849 (unsigned long)pgprot_val(prot) & _PAGE_RW ? "WRITE" : "READ");
850
851 return kmap_atomic_prot(page, type, prot);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700852}
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700853#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700854
Jeremy Fitzhardinge9a4029f2007-07-17 18:37:05 -0700855static __init pte_t mask_rw_pte(pte_t *ptep, pte_t pte)
856{
857 /* If there's an existing pte, then don't allow _PAGE_RW to be set */
858 if (pte_val_ma(*ptep) & _PAGE_PRESENT)
859 pte = __pte_ma(((pte_val_ma(*ptep) & _PAGE_RW) | ~_PAGE_RW) &
860 pte_val_ma(pte));
861
862 return pte;
863}
864
865/* Init-time set_pte while constructing initial pagetables, which
866 doesn't allow RO pagetable pages to be remapped RW */
867static __init void xen_set_pte_init(pte_t *ptep, pte_t pte)
868{
869 pte = mask_rw_pte(ptep, pte);
870
871 xen_set_pte(ptep, pte);
872}
873
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700874static __init void xen_pagetable_setup_start(pgd_t *base)
875{
876 pgd_t *xen_pgd = (pgd_t *)xen_start_info->pt_base;
Jeremy Fitzhardinge3843fc22008-05-09 12:05:57 +0100877 int i;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700878
Jeremy Fitzhardinge9a4029f2007-07-17 18:37:05 -0700879 /* special set_pte for pagetable initialization */
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700880 pv_mmu_ops.set_pte = xen_set_pte_init;
Jeremy Fitzhardinge9a4029f2007-07-17 18:37:05 -0700881
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700882 init_mm.pgd = base;
883 /*
Jeremy Fitzhardinge3843fc22008-05-09 12:05:57 +0100884 * copy top-level of Xen-supplied pagetable into place. This
885 * is a stand-in while we copy the pmd pages.
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700886 */
887 memcpy(base, xen_pgd, PTRS_PER_PGD * sizeof(pgd_t));
888
Jeremy Fitzhardinge3843fc22008-05-09 12:05:57 +0100889 /*
890 * For PAE, need to allocate new pmds, rather than
891 * share Xen's, since Xen doesn't like pmd's being
892 * shared between address spaces.
893 */
894 for (i = 0; i < PTRS_PER_PGD; i++) {
895 if (pgd_val_ma(xen_pgd[i]) & _PAGE_PRESENT) {
896 pmd_t *pmd = (pmd_t *)alloc_bootmem_low_pages(PAGE_SIZE);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700897
Jeremy Fitzhardinge3843fc22008-05-09 12:05:57 +0100898 memcpy(pmd, (void *)pgd_page_vaddr(xen_pgd[i]),
899 PAGE_SIZE);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700900
Jeremy Fitzhardinge3843fc22008-05-09 12:05:57 +0100901 make_lowmem_page_readonly(pmd);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700902
Jeremy Fitzhardinge3843fc22008-05-09 12:05:57 +0100903 set_pgd(&base[i], __pgd(1 + __pa(pmd)));
904 } else
905 pgd_clear(&base[i]);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700906 }
907
908 /* make sure zero_page is mapped RO so we can use it in pagetables */
909 make_lowmem_page_readonly(empty_zero_page);
910 make_lowmem_page_readonly(base);
911 /*
912 * Switch to new pagetable. This is done before
913 * pagetable_init has done anything so that the new pages
914 * added to the table can be prepared properly for Xen.
915 */
916 xen_write_cr3(__pa(base));
Jeremy Fitzhardinge2b540782008-02-13 16:20:35 +0100917
918 /* Unpin initial Xen pagetable */
919 pin_pagetable_pfn(MMUEXT_UNPIN_TABLE,
920 PFN_DOWN(__pa(xen_start_info->pt_base)));
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700921}
922
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +0100923void xen_setup_shared_info(void)
Jeremy Fitzhardinge2e8fe712008-03-17 16:36:53 -0700924{
925 if (!xen_feature(XENFEAT_auto_translated_physmap)) {
926 unsigned long addr = fix_to_virt(FIX_PARAVIRT_BOOTMAP);
927
928 /*
929 * Create a mapping for the shared info page.
930 * Should be set_fixmap(), but shared_info is a machine
931 * address with no corresponding pseudo-phys address.
932 */
933 set_pte_mfn(addr,
934 PFN_DOWN(xen_start_info->shared_info),
935 PAGE_KERNEL);
936
937 HYPERVISOR_shared_info = (struct shared_info *)addr;
938 } else
939 HYPERVISOR_shared_info =
940 (struct shared_info *)__va(xen_start_info->shared_info);
941
942#ifndef CONFIG_SMP
943 /* In UP this is as good a place as any to set up shared info */
944 xen_setup_vcpu_info_placement();
945#endif
Jeremy Fitzhardinged5edbc12008-05-26 23:31:22 +0100946
947 xen_setup_mfn_list_list();
Jeremy Fitzhardinge2e8fe712008-03-17 16:36:53 -0700948}
949
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700950static __init void xen_pagetable_setup_done(pgd_t *base)
951{
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700952 /* This will work as long as patching hasn't happened yet
953 (which it hasn't) */
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700954 pv_mmu_ops.alloc_pte = xen_alloc_pte;
955 pv_mmu_ops.alloc_pmd = xen_alloc_pmd;
956 pv_mmu_ops.release_pte = xen_release_pte;
957 pv_mmu_ops.release_pmd = xen_release_pmd;
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700958 pv_mmu_ops.set_pte = xen_set_pte;
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700959
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +0100960 xen_setup_shared_info();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700961
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700962 /* Actually pin the pagetable down, but we can't set PG_pinned
963 yet because the page structures don't exist yet. */
Jeremy Fitzhardinge3843fc22008-05-09 12:05:57 +0100964 pin_pagetable_pfn(MMUEXT_PIN_L3_TABLE, PFN_DOWN(__pa(base)));
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700965}
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700966
Jeremy Fitzhardingee2426cf2008-05-31 01:24:27 +0100967static __init void xen_post_allocator_init(void)
968{
969 pv_mmu_ops.set_pmd = xen_set_pmd;
970 pv_mmu_ops.set_pud = xen_set_pud;
971
972 xen_mark_init_mm_pinned();
973}
974
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700975/* This is called once we have the cpu_possible_map */
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +0100976void xen_setup_vcpu_info_placement(void)
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700977{
978 int cpu;
979
980 for_each_possible_cpu(cpu)
981 xen_vcpu_setup(cpu);
982
983 /* xen_vcpu_setup managed to place the vcpu_info within the
984 percpu area for all cpus, so make use of it */
985 if (have_vcpu_info_placement) {
986 printk(KERN_INFO "Xen: using vcpu_info placement\n");
987
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700988 pv_irq_ops.save_fl = xen_save_fl_direct;
989 pv_irq_ops.restore_fl = xen_restore_fl_direct;
990 pv_irq_ops.irq_disable = xen_irq_disable_direct;
991 pv_irq_ops.irq_enable = xen_irq_enable_direct;
992 pv_mmu_ops.read_cr2 = xen_read_cr2_direct;
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700993 }
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700994}
995
Andi Kleenab144f52007-08-10 22:31:03 +0200996static unsigned xen_patch(u8 type, u16 clobbers, void *insnbuf,
997 unsigned long addr, unsigned len)
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700998{
999 char *start, *end, *reloc;
1000 unsigned ret;
1001
1002 start = end = reloc = NULL;
1003
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001004#define SITE(op, x) \
1005 case PARAVIRT_PATCH(op.x): \
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -07001006 if (have_vcpu_info_placement) { \
1007 start = (char *)xen_##x##_direct; \
1008 end = xen_##x##_direct_end; \
1009 reloc = xen_##x##_direct_reloc; \
1010 } \
1011 goto patch_site
1012
1013 switch (type) {
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001014 SITE(pv_irq_ops, irq_enable);
1015 SITE(pv_irq_ops, irq_disable);
1016 SITE(pv_irq_ops, save_fl);
1017 SITE(pv_irq_ops, restore_fl);
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -07001018#undef SITE
1019
1020 patch_site:
1021 if (start == NULL || (end-start) > len)
1022 goto default_patch;
1023
Andi Kleenab144f52007-08-10 22:31:03 +02001024 ret = paravirt_patch_insns(insnbuf, len, start, end);
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -07001025
1026 /* Note: because reloc is assigned from something that
1027 appears to be an array, gcc assumes it's non-null,
1028 but doesn't know its relationship with start and
1029 end. */
1030 if (reloc > start && reloc < end) {
1031 int reloc_off = reloc - start;
Andi Kleenab144f52007-08-10 22:31:03 +02001032 long *relocp = (long *)(insnbuf + reloc_off);
1033 long delta = start - (char *)addr;
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -07001034
1035 *relocp += delta;
1036 }
1037 break;
1038
1039 default_patch:
1040 default:
Andi Kleenab144f52007-08-10 22:31:03 +02001041 ret = paravirt_patch_default(type, clobbers, insnbuf,
1042 addr, len);
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -07001043 break;
1044 }
1045
1046 return ret;
1047}
1048
Jeremy Fitzhardingeaeaaa592008-06-17 11:42:01 -07001049static void xen_set_fixmap(unsigned idx, unsigned long phys, pgprot_t prot)
1050{
1051 pte_t pte;
1052
1053 phys >>= PAGE_SHIFT;
1054
1055 switch (idx) {
1056 case FIX_BTMAP_END ... FIX_BTMAP_BEGIN:
1057#ifdef CONFIG_X86_F00F_BUG
1058 case FIX_F00F_IDT:
1059#endif
1060 case FIX_WP_TEST:
1061 case FIX_VDSO:
1062#ifdef CONFIG_X86_LOCAL_APIC
1063 case FIX_APIC_BASE: /* maps dummy local APIC */
1064#endif
1065 pte = pfn_pte(phys, prot);
1066 break;
1067
1068 default:
1069 pte = mfn_pte(phys, prot);
1070 break;
1071 }
1072
1073 __native_set_fixmap(idx, pte);
1074}
1075
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001076static const struct pv_info xen_info __initdata = {
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001077 .paravirt_enabled = 1,
1078 .shared_kernel_pmd = 0,
1079
1080 .name = "Xen",
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001081};
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001082
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001083static const struct pv_init_ops xen_init_ops __initdata = {
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -07001084 .patch = xen_patch,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001085
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001086 .banner = xen_banner,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001087 .memory_setup = xen_memory_setup,
1088 .arch_setup = xen_arch_setup,
Jeremy Fitzhardingee2426cf2008-05-31 01:24:27 +01001089 .post_allocator_init = xen_post_allocator_init,
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001090};
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001091
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001092static const struct pv_time_ops xen_time_ops __initdata = {
Jeremy Fitzhardinge15c84732007-07-17 18:37:05 -07001093 .time_init = xen_time_init,
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001094
Jeremy Fitzhardinge15c84732007-07-17 18:37:05 -07001095 .set_wallclock = xen_set_wallclock,
1096 .get_wallclock = xen_get_wallclock,
Alok Katariae93ef942008-07-01 11:43:36 -07001097 .get_tsc_khz = xen_tsc_khz,
Jeremy Fitzhardingeab550282007-07-17 18:37:05 -07001098 .sched_clock = xen_sched_clock,
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001099};
Jeremy Fitzhardinge15c84732007-07-17 18:37:05 -07001100
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001101static const struct pv_cpu_ops xen_cpu_ops __initdata = {
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001102 .cpuid = xen_cpuid,
1103
1104 .set_debugreg = xen_set_debugreg,
1105 .get_debugreg = xen_get_debugreg,
1106
Jeremy Fitzhardinge7b1333a2008-05-26 23:31:01 +01001107 .clts = xen_clts,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001108
1109 .read_cr0 = native_read_cr0,
Jeremy Fitzhardinge7b1333a2008-05-26 23:31:01 +01001110 .write_cr0 = xen_write_cr0,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001111
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001112 .read_cr4 = native_read_cr4,
1113 .read_cr4_safe = native_read_cr4_safe,
1114 .write_cr4 = xen_write_cr4,
1115
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001116 .wbinvd = native_wbinvd,
1117
1118 .read_msr = native_read_msr_safe,
1119 .write_msr = native_write_msr_safe,
1120 .read_tsc = native_read_tsc,
1121 .read_pmc = native_read_pmc,
1122
Jeremy Fitzhardinge81e103f2008-04-17 17:40:51 +02001123 .iret = xen_iret,
Jeremy Fitzhardinged75cd222008-06-25 00:19:26 -04001124 .irq_enable_sysexit = xen_sysexit,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001125
1126 .load_tr_desc = paravirt_nop,
1127 .set_ldt = xen_set_ldt,
1128 .load_gdt = xen_load_gdt,
1129 .load_idt = xen_load_idt,
1130 .load_tls = xen_load_tls,
1131
1132 .store_gdt = native_store_gdt,
1133 .store_idt = native_store_idt,
1134 .store_tr = xen_store_tr,
1135
1136 .write_ldt_entry = xen_write_ldt_entry,
1137 .write_gdt_entry = xen_write_gdt_entry,
1138 .write_idt_entry = xen_write_idt_entry,
H. Peter Anvinfaca6222008-01-30 13:31:02 +01001139 .load_sp0 = xen_load_sp0,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001140
1141 .set_iopl_mask = xen_set_iopl_mask,
1142 .io_delay = xen_io_delay,
1143
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -07001144 .lazy_mode = {
1145 .enter = paravirt_enter_lazy_cpu,
1146 .leave = xen_leave_lazy,
1147 },
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001148};
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001149
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001150static const struct pv_irq_ops xen_irq_ops __initdata = {
1151 .init_IRQ = xen_init_IRQ,
1152 .save_fl = xen_save_fl,
1153 .restore_fl = xen_restore_fl,
1154 .irq_disable = xen_irq_disable,
1155 .irq_enable = xen_irq_enable,
1156 .safe_halt = xen_safe_halt,
1157 .halt = xen_halt,
Jeremy Fitzhardingefab58422008-06-25 00:19:31 -04001158#ifdef CONFIG_X86_64
1159 .adjust_exception_frame = paravirt_nop,
1160#endif
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001161};
1162
1163static const struct pv_apic_ops xen_apic_ops __initdata = {
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001164#ifdef CONFIG_X86_LOCAL_APIC
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001165 .setup_boot_clock = paravirt_nop,
1166 .setup_secondary_clock = paravirt_nop,
1167 .startup_ipi_hook = paravirt_nop,
1168#endif
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001169};
1170
1171static const struct pv_mmu_ops xen_mmu_ops __initdata = {
1172 .pagetable_setup_start = xen_pagetable_setup_start,
1173 .pagetable_setup_done = xen_pagetable_setup_done,
1174
1175 .read_cr2 = xen_read_cr2,
1176 .write_cr2 = xen_write_cr2,
1177
1178 .read_cr3 = xen_read_cr3,
1179 .write_cr3 = xen_write_cr3,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001180
1181 .flush_tlb_user = xen_flush_tlb,
1182 .flush_tlb_kernel = xen_flush_tlb,
1183 .flush_tlb_single = xen_flush_tlb_single,
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -07001184 .flush_tlb_others = xen_flush_tlb_others,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001185
1186 .pte_update = paravirt_nop,
1187 .pte_update_defer = paravirt_nop,
1188
Jeremy Fitzhardingeeba00452008-06-25 00:19:12 -04001189 .pgd_alloc = __paravirt_pgd_alloc,
1190 .pgd_free = paravirt_nop,
1191
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -07001192 .alloc_pte = xen_alloc_pte_init,
1193 .release_pte = xen_release_pte_init,
1194 .alloc_pmd = xen_alloc_pte_init,
1195 .alloc_pmd_clone = paravirt_nop,
1196 .release_pmd = xen_release_pte_init,
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -07001197
1198#ifdef CONFIG_HIGHPTE
1199 .kmap_atomic_pte = xen_kmap_atomic_pte,
1200#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001201
Jeremy Fitzhardinge9a4029f2007-07-17 18:37:05 -07001202 .set_pte = NULL, /* see xen_pagetable_setup_* */
Jeremy Fitzhardinge3b827c12007-07-17 18:37:04 -07001203 .set_pte_at = xen_set_pte_at,
Jeremy Fitzhardingee2426cf2008-05-31 01:24:27 +01001204 .set_pmd = xen_set_pmd_hyper,
Jeremy Fitzhardinge3b827c12007-07-17 18:37:04 -07001205
Jeremy Fitzhardinge08b882c2008-06-16 04:30:01 -07001206 .ptep_modify_prot_start = __ptep_modify_prot_start,
1207 .ptep_modify_prot_commit = __ptep_modify_prot_commit,
1208
Jeremy Fitzhardinge3b827c12007-07-17 18:37:04 -07001209 .pte_val = xen_pte_val,
Jeremy Fitzhardingea15af1c2008-05-26 23:31:06 +01001210 .pte_flags = native_pte_val,
Jeremy Fitzhardinge3b827c12007-07-17 18:37:04 -07001211 .pgd_val = xen_pgd_val,
1212
1213 .make_pte = xen_make_pte,
1214 .make_pgd = xen_make_pgd,
1215
Jeremy Fitzhardinge3b827c12007-07-17 18:37:04 -07001216 .set_pte_atomic = xen_set_pte_atomic,
1217 .set_pte_present = xen_set_pte_at,
Jeremy Fitzhardingee2426cf2008-05-31 01:24:27 +01001218 .set_pud = xen_set_pud_hyper,
Jeremy Fitzhardinge3b827c12007-07-17 18:37:04 -07001219 .pte_clear = xen_pte_clear,
1220 .pmd_clear = xen_pmd_clear,
1221
1222 .make_pmd = xen_make_pmd,
1223 .pmd_val = xen_pmd_val,
Jeremy Fitzhardinge3b827c12007-07-17 18:37:04 -07001224
1225 .activate_mm = xen_activate_mm,
1226 .dup_mmap = xen_dup_mmap,
1227 .exit_mmap = xen_exit_mmap,
1228
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -07001229 .lazy_mode = {
1230 .enter = paravirt_enter_lazy_mmu,
1231 .leave = xen_leave_lazy,
1232 },
Jeremy Fitzhardingeaeaaa592008-06-17 11:42:01 -07001233
1234 .set_fixmap = xen_set_fixmap,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001235};
1236
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -07001237#ifdef CONFIG_SMP
1238static const struct smp_ops xen_smp_ops __initdata = {
1239 .smp_prepare_boot_cpu = xen_smp_prepare_boot_cpu,
1240 .smp_prepare_cpus = xen_smp_prepare_cpus,
1241 .cpu_up = xen_cpu_up,
1242 .smp_cpus_done = xen_smp_cpus_done,
1243
1244 .smp_send_stop = xen_smp_send_stop,
1245 .smp_send_reschedule = xen_smp_send_reschedule,
Jens Axboe3b16cf82008-06-26 11:21:54 +02001246
1247 .send_call_func_ipi = xen_smp_send_call_function_ipi,
1248 .send_call_func_single_ipi = xen_smp_send_call_function_single_ipi,
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -07001249};
1250#endif /* CONFIG_SMP */
1251
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -07001252static void xen_reboot(int reason)
1253{
Jeremy Fitzhardinge349c709f2008-05-26 23:31:02 +01001254 struct sched_shutdown r = { .reason = reason };
1255
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -07001256#ifdef CONFIG_SMP
1257 smp_send_stop();
1258#endif
1259
Jeremy Fitzhardinge349c709f2008-05-26 23:31:02 +01001260 if (HYPERVISOR_sched_op(SCHEDOP_shutdown, &r))
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -07001261 BUG();
1262}
1263
1264static void xen_restart(char *msg)
1265{
1266 xen_reboot(SHUTDOWN_reboot);
1267}
1268
1269static void xen_emergency_restart(void)
1270{
1271 xen_reboot(SHUTDOWN_reboot);
1272}
1273
1274static void xen_machine_halt(void)
1275{
1276 xen_reboot(SHUTDOWN_poweroff);
1277}
1278
1279static void xen_crash_shutdown(struct pt_regs *regs)
1280{
1281 xen_reboot(SHUTDOWN_crash);
1282}
1283
1284static const struct machine_ops __initdata xen_machine_ops = {
1285 .restart = xen_restart,
1286 .halt = xen_machine_halt,
1287 .power_off = xen_machine_halt,
1288 .shutdown = xen_machine_halt,
1289 .crash_shutdown = xen_crash_shutdown,
1290 .emergency_restart = xen_emergency_restart,
1291};
1292
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -07001293
Jeremy Fitzhardingefb1d8402007-10-16 11:51:31 -07001294static void __init xen_reserve_top(void)
1295{
1296 unsigned long top = HYPERVISOR_VIRT_START;
1297 struct xen_platform_parameters pp;
1298
1299 if (HYPERVISOR_xen_version(XENVER_platform_parameters, &pp) == 0)
1300 top = pp.virt_start;
1301
1302 reserve_top_address(-top + 2 * PAGE_SIZE);
1303}
1304
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001305/* First C function to be called on Xen boot */
1306asmlinkage void __init xen_start_kernel(void)
1307{
1308 pgd_t *pgd;
1309
1310 if (!xen_start_info)
1311 return;
1312
Jeremy Fitzhardinge7999f4b2007-12-10 13:00:41 -08001313 BUG_ON(memcmp(xen_start_info->magic, "xen-3", 5) != 0);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001314
Jeremy Fitzhardingee57778a2008-06-16 04:30:02 -07001315 xen_setup_features();
1316
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001317 /* Install Xen paravirt ops */
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001318 pv_info = xen_info;
1319 pv_init_ops = xen_init_ops;
1320 pv_time_ops = xen_time_ops;
1321 pv_cpu_ops = xen_cpu_ops;
1322 pv_irq_ops = xen_irq_ops;
1323 pv_apic_ops = xen_apic_ops;
1324 pv_mmu_ops = xen_mmu_ops;
Yinghai Lu94a8c3c2008-07-13 22:19:35 -07001325
1326#ifdef CONFIG_X86_LOCAL_APIC
Suresh Siddhaad66dd32008-07-11 13:11:56 -07001327 /*
Yinghai Lu94a8c3c2008-07-13 22:19:35 -07001328 * set up the basic apic ops.
Suresh Siddhaad66dd32008-07-11 13:11:56 -07001329 */
1330 apic_ops = &xen_basic_apic_ops;
1331#endif
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001332
Jeremy Fitzhardingee57778a2008-06-16 04:30:02 -07001333 if (xen_feature(XENFEAT_mmu_pt_update_preserve_ad)) {
1334 pv_mmu_ops.ptep_modify_prot_start = xen_ptep_modify_prot_start;
1335 pv_mmu_ops.ptep_modify_prot_commit = xen_ptep_modify_prot_commit;
1336 }
1337
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -07001338 machine_ops = xen_machine_ops;
1339
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -07001340#ifdef CONFIG_SMP
1341 smp_ops = xen_smp_ops;
1342#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001343
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001344 /* Get mfn list */
1345 if (!xen_feature(XENFEAT_auto_translated_physmap))
Jeremy Fitzhardinged451bb72008-05-26 23:31:18 +01001346 xen_build_dynamic_phys_to_machine();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001347
1348 pgd = (pgd_t *)xen_start_info->pt_base;
1349
Yinghai Luf0d43102008-05-29 12:56:36 -07001350 init_pg_tables_start = __pa(pgd);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001351 init_pg_tables_end = __pa(pgd) + xen_start_info->nr_pt_frames*PAGE_SIZE;
Jeremy Fitzhardinge88a68462008-06-16 14:54:51 -07001352 max_pfn_mapped = (init_pg_tables_end + 512*1024) >> PAGE_SHIFT;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001353
1354 init_mm.pgd = pgd; /* use the Xen pagetables to start */
1355
1356 /* keep using Xen gdt for now; no urgent need to change it */
1357
1358 x86_write_percpu(xen_cr3, __pa(pgd));
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -07001359 x86_write_percpu(xen_current_cr3, __pa(pgd));
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -07001360
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -07001361 /* Don't do the full vcpu_info placement stuff until we have a
Jeremy Fitzhardinge2e8fe712008-03-17 16:36:53 -07001362 possible map and a non-dummy shared_info. */
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -07001363 per_cpu(xen_vcpu, 0) = &HYPERVISOR_shared_info->vcpu_info[0];
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001364
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001365 pv_info.kernel_rpl = 1;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001366 if (xen_feature(XENFEAT_supervisor_mode_kernel))
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001367 pv_info.kernel_rpl = 0;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001368
Jeremy Fitzhardingeeb179e42008-06-16 15:01:53 -07001369 /* Prevent unwanted bits from being set in PTEs. */
1370 __supported_pte_mask &= ~_PAGE_GLOBAL;
1371 if (!is_initial_xendomain())
1372 __supported_pte_mask &= ~(_PAGE_PWT | _PAGE_PCD);
1373
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001374 /* set the limit of our address space */
Jeremy Fitzhardingefb1d8402007-10-16 11:51:31 -07001375 xen_reserve_top();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001376
1377 /* set up basic CPUID stuff */
1378 cpu_detect(&new_cpu_data);
1379 new_cpu_data.hard_math = 1;
1380 new_cpu_data.x86_capability[0] = cpuid_edx(1);
1381
1382 /* Poke various useful things into boot_params */
H. Peter Anvin30c82642007-10-15 17:13:22 -07001383 boot_params.hdr.type_of_loader = (9 << 4) | 0;
1384 boot_params.hdr.ramdisk_image = xen_start_info->mod_start
1385 ? __pa(xen_start_info->mod_start) : 0;
1386 boot_params.hdr.ramdisk_size = xen_start_info->mod_len;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001387
Markus Armbruster9e124fe2008-05-26 23:31:07 +01001388 if (!is_initial_xendomain()) {
Jeremy Fitzhardinge83abc702008-05-26 23:31:12 +01001389 add_preferred_console("xenboot", 0, NULL);
Markus Armbruster9e124fe2008-05-26 23:31:07 +01001390 add_preferred_console("tty", 0, NULL);
Markus Armbrusterb8c2d3d2008-02-27 14:56:35 +01001391 add_preferred_console("hvc", 0, NULL);
Markus Armbruster9e124fe2008-05-26 23:31:07 +01001392 }
Markus Armbrusterb8c2d3d2008-02-27 14:56:35 +01001393
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001394 /* Start the world */
Yinghai Luf0d43102008-05-29 12:56:36 -07001395 i386_start_kernel();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001396}