blob: dbe3549fad40f386730d8f5e3854f83afe467edd [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>
38#include <asm/page.h>
39#include <asm/xen/hypercall.h>
40#include <asm/xen/hypervisor.h>
41#include <asm/fixmap.h>
42#include <asm/processor.h>
43#include <asm/setup.h>
44#include <asm/desc.h>
45#include <asm/pgtable.h>
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070046#include <asm/tlbflush.h>
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -070047#include <asm/reboot.h>
Jeremy Fitzhardingeeba00452008-06-25 00:19:12 -040048#include <asm/pgalloc.h>
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070049
50#include "xen-ops.h"
Jeremy Fitzhardinge3b827c12007-07-17 18:37:04 -070051#include "mmu.h"
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070052#include "multicalls.h"
53
54EXPORT_SYMBOL_GPL(hypercall_page);
55
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070056DEFINE_PER_CPU(struct vcpu_info *, xen_vcpu);
57DEFINE_PER_CPU(struct vcpu_info, xen_vcpu_info);
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -070058
59/*
60 * Note about cr3 (pagetable base) values:
61 *
62 * xen_cr3 contains the current logical cr3 value; it contains the
63 * last set cr3. This may not be the current effective cr3, because
64 * its update may be being lazily deferred. However, a vcpu looking
65 * at its own cr3 can use this value knowing that it everything will
66 * be self-consistent.
67 *
68 * xen_current_cr3 contains the actual vcpu cr3; it is set once the
69 * hypercall to set the vcpu cr3 is complete (so it may be a little
70 * out of date, but it will never be set early). If one vcpu is
71 * looking at another vcpu's cr3 value, it should use this variable.
72 */
73DEFINE_PER_CPU(unsigned long, xen_cr3); /* cr3 stored as physaddr */
74DEFINE_PER_CPU(unsigned long, xen_current_cr3); /* actual vcpu cr3 */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070075
76struct start_info *xen_start_info;
77EXPORT_SYMBOL_GPL(xen_start_info);
78
Jeremy Fitzhardingea0d695c2008-05-26 23:31:21 +010079struct shared_info xen_dummy_shared_info;
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -070080
81/*
82 * Point at some empty memory to start with. We map the real shared_info
83 * page as soon as fixmap is up and running.
84 */
Jeremy Fitzhardingea0d695c2008-05-26 23:31:21 +010085struct shared_info *HYPERVISOR_shared_info = (void *)&xen_dummy_shared_info;
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -070086
87/*
88 * Flag to determine whether vcpu info placement is available on all
89 * VCPUs. We assume it is to start with, and then set it to zero on
90 * the first failure. This is because it can succeed on some VCPUs
91 * and not others, since it can involve hypervisor memory allocation,
92 * or because the guest failed to guarantee all the appropriate
93 * constraints on all VCPUs (ie buffer can't cross a page boundary).
94 *
95 * Note that any particular CPU may be using a placed vcpu structure,
96 * but we can only optimise if the all are.
97 *
98 * 0: not available, 1: available
99 */
Jeremy Fitzhardinge04c44a02008-03-17 16:36:52 -0700100static int have_vcpu_info_placement = 1;
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700101
Jeremy Fitzhardinge9c7a7942008-05-31 01:33:02 +0100102static void xen_vcpu_setup(int cpu)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700103{
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700104 struct vcpu_register_vcpu_info info;
105 int err;
106 struct vcpu_info *vcpup;
107
Jeremy Fitzhardingea0d695c2008-05-26 23:31:21 +0100108 BUG_ON(HYPERVISOR_shared_info == &xen_dummy_shared_info);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700109 per_cpu(xen_vcpu, cpu) = &HYPERVISOR_shared_info->vcpu_info[cpu];
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700110
111 if (!have_vcpu_info_placement)
112 return; /* already tested, not available */
113
114 vcpup = &per_cpu(xen_vcpu_info, cpu);
115
116 info.mfn = virt_to_mfn(vcpup);
117 info.offset = offset_in_page(vcpup);
118
Jeremy Fitzhardingee3d26972007-10-16 11:51:31 -0700119 printk(KERN_DEBUG "trying to map vcpu_info %d at %p, mfn %llx, offset %d\n",
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700120 cpu, vcpup, info.mfn, info.offset);
121
122 /* Check to see if the hypervisor will put the vcpu_info
123 structure where we want it, which allows direct access via
124 a percpu-variable. */
125 err = HYPERVISOR_vcpu_op(VCPUOP_register_vcpu_info, cpu, &info);
126
127 if (err) {
128 printk(KERN_DEBUG "register_vcpu_info failed: err=%d\n", err);
129 have_vcpu_info_placement = 0;
130 } else {
131 /* This cpu is using the registered vcpu info, even if
132 later ones fail to. */
133 per_cpu(xen_vcpu, cpu) = vcpup;
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700134
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700135 printk(KERN_DEBUG "cpu %d using vcpu_info at %p\n",
136 cpu, vcpup);
137 }
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700138}
139
Jeremy Fitzhardinge9c7a7942008-05-31 01:33:02 +0100140/*
141 * On restore, set the vcpu placement up again.
142 * If it fails, then we're in a bad state, since
143 * we can't back out from using it...
144 */
145void xen_vcpu_restore(void)
146{
147 if (have_vcpu_info_placement) {
148 int cpu;
149
150 for_each_online_cpu(cpu) {
151 bool other_cpu = (cpu != smp_processor_id());
152
153 if (other_cpu &&
154 HYPERVISOR_vcpu_op(VCPUOP_down, cpu, NULL))
155 BUG();
156
157 xen_vcpu_setup(cpu);
158
159 if (other_cpu &&
160 HYPERVISOR_vcpu_op(VCPUOP_up, cpu, NULL))
161 BUG();
162 }
163
164 BUG_ON(!have_vcpu_info_placement);
165 }
166}
167
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700168static void __init xen_banner(void)
169{
170 printk(KERN_INFO "Booting paravirtualized kernel on %s\n",
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700171 pv_info.name);
Jeremy Fitzhardingee57778a2008-06-16 04:30:02 -0700172 printk(KERN_INFO "Hypervisor signature: %s%s\n",
173 xen_start_info->magic,
174 xen_feature(XENFEAT_mmu_pt_update_preserve_ad) ? " (preserve-AD)" : "");
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700175}
176
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100177static void xen_cpuid(unsigned int *ax, unsigned int *bx,
178 unsigned int *cx, unsigned int *dx)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700179{
180 unsigned maskedx = ~0;
181
182 /*
183 * Mask out inconvenient features, to try and disable as many
184 * unsupported kernel subsystems as possible.
185 */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100186 if (*ax == 1)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700187 maskedx = ~((1 << X86_FEATURE_APIC) | /* disable APIC */
188 (1 << X86_FEATURE_ACPI) | /* disable ACPI */
Jeremy Fitzhardingedbe9e992008-03-17 16:37:21 -0700189 (1 << X86_FEATURE_MCE) | /* disable MCE */
190 (1 << X86_FEATURE_MCA) | /* disable MCA */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700191 (1 << X86_FEATURE_ACC)); /* thermal monitoring */
192
193 asm(XEN_EMULATE_PREFIX "cpuid"
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100194 : "=a" (*ax),
195 "=b" (*bx),
196 "=c" (*cx),
197 "=d" (*dx)
198 : "0" (*ax), "2" (*cx));
199 *dx &= maskedx;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700200}
201
202static void xen_set_debugreg(int reg, unsigned long val)
203{
204 HYPERVISOR_set_debugreg(reg, val);
205}
206
207static unsigned long xen_get_debugreg(int reg)
208{
209 return HYPERVISOR_get_debugreg(reg);
210}
211
212static unsigned long xen_save_fl(void)
213{
214 struct vcpu_info *vcpu;
215 unsigned long flags;
216
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700217 vcpu = x86_read_percpu(xen_vcpu);
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700218
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700219 /* flag has opposite sense of mask */
220 flags = !vcpu->evtchn_upcall_mask;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700221
222 /* convert to IF type flag
223 -0 -> 0x00000000
224 -1 -> 0xffffffff
225 */
226 return (-flags) & X86_EFLAGS_IF;
227}
228
229static void xen_restore_fl(unsigned long flags)
230{
231 struct vcpu_info *vcpu;
232
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700233 /* convert from IF type flag */
234 flags = !(flags & X86_EFLAGS_IF);
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700235
236 /* There's a one instruction preempt window here. We need to
237 make sure we're don't switch CPUs between getting the vcpu
238 pointer and updating the mask. */
239 preempt_disable();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700240 vcpu = x86_read_percpu(xen_vcpu);
241 vcpu->evtchn_upcall_mask = flags;
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700242 preempt_enable_no_resched();
243
244 /* Doesn't matter if we get preempted here, because any
245 pending event will get dealt with anyway. */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700246
247 if (flags == 0) {
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700248 preempt_check_resched();
249 barrier(); /* unmask then check (avoid races) */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700250 if (unlikely(vcpu->evtchn_upcall_pending))
251 force_evtchn_callback();
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700252 }
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700253}
254
255static void xen_irq_disable(void)
256{
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700257 /* There's a one instruction preempt window here. We need to
258 make sure we're don't switch CPUs between getting the vcpu
259 pointer and updating the mask. */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700260 preempt_disable();
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700261 x86_read_percpu(xen_vcpu)->evtchn_upcall_mask = 1;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700262 preempt_enable_no_resched();
263}
264
265static void xen_irq_enable(void)
266{
267 struct vcpu_info *vcpu;
268
Jeremy Fitzhardinge239d1fc2008-05-26 23:31:05 +0100269 /* We don't need to worry about being preempted here, since
270 either a) interrupts are disabled, so no preemption, or b)
271 the caller is confused and is trying to re-enable interrupts
272 on an indeterminate processor. */
273
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700274 vcpu = x86_read_percpu(xen_vcpu);
275 vcpu->evtchn_upcall_mask = 0;
276
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700277 /* Doesn't matter if we get preempted here, because any
278 pending event will get dealt with anyway. */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700279
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700280 barrier(); /* unmask then check (avoid races) */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700281 if (unlikely(vcpu->evtchn_upcall_pending))
282 force_evtchn_callback();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700283}
284
285static void xen_safe_halt(void)
286{
287 /* Blocking includes an implicit local_irq_enable(). */
Jeremy Fitzhardinge349c7092008-05-26 23:31:02 +0100288 if (HYPERVISOR_sched_op(SCHEDOP_block, NULL) != 0)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700289 BUG();
290}
291
292static void xen_halt(void)
293{
294 if (irqs_disabled())
295 HYPERVISOR_vcpu_op(VCPUOP_down, smp_processor_id(), NULL);
296 else
297 xen_safe_halt();
298}
299
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -0700300static void xen_leave_lazy(void)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700301{
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -0700302 paravirt_leave_lazy(paravirt_get_lazy_mode());
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700303 xen_mc_flush();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700304}
305
306static unsigned long xen_store_tr(void)
307{
308 return 0;
309}
310
311static void xen_set_ldt(const void *addr, unsigned entries)
312{
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700313 struct mmuext_op *op;
314 struct multicall_space mcs = xen_mc_entry(sizeof(*op));
315
316 op = mcs.args;
317 op->cmd = MMUEXT_SET_LDT;
Jan Beulich4dbf7af2008-01-30 13:33:14 +0100318 op->arg1.linear_addr = (unsigned long)addr;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700319 op->arg2.nr_ents = entries;
320
321 MULTI_mmuext_op(mcs.mc, op, 1, NULL, DOMID_SELF);
322
323 xen_mc_issue(PARAVIRT_LAZY_CPU);
324}
325
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100326static void xen_load_gdt(const struct desc_ptr *dtr)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700327{
328 unsigned long *frames;
329 unsigned long va = dtr->address;
330 unsigned int size = dtr->size + 1;
331 unsigned pages = (size + PAGE_SIZE - 1) / PAGE_SIZE;
332 int f;
333 struct multicall_space mcs;
334
335 /* A GDT can be up to 64k in size, which corresponds to 8192
336 8-byte entries, or 16 4k pages.. */
337
338 BUG_ON(size > 65536);
339 BUG_ON(va & ~PAGE_MASK);
340
341 mcs = xen_mc_entry(sizeof(*frames) * pages);
342 frames = mcs.args;
343
344 for (f = 0; va < dtr->address + size; va += PAGE_SIZE, f++) {
345 frames[f] = virt_to_mfn(va);
346 make_lowmem_page_readonly((void *)va);
347 }
348
349 MULTI_set_gdt(mcs.mc, frames, size / sizeof(struct desc_struct));
350
351 xen_mc_issue(PARAVIRT_LAZY_CPU);
352}
353
354static void load_TLS_descriptor(struct thread_struct *t,
355 unsigned int cpu, unsigned int i)
356{
357 struct desc_struct *gdt = get_cpu_gdt_table(cpu);
358 xmaddr_t maddr = virt_to_machine(&gdt[GDT_ENTRY_TLS_MIN+i]);
359 struct multicall_space mc = __xen_mc_entry(0);
360
361 MULTI_update_descriptor(mc.mc, maddr.maddr, t->tls_array[i]);
362}
363
364static void xen_load_tls(struct thread_struct *t, unsigned int cpu)
365{
366 xen_mc_batch();
367
368 load_TLS_descriptor(t, cpu, 0);
369 load_TLS_descriptor(t, cpu, 1);
370 load_TLS_descriptor(t, cpu, 2);
371
372 xen_mc_issue(PARAVIRT_LAZY_CPU);
Jeremy Fitzhardinge8b84ad92007-07-17 18:37:06 -0700373
374 /*
375 * XXX sleazy hack: If we're being called in a lazy-cpu zone,
376 * it means we're in a context switch, and %gs has just been
377 * saved. This means we can zero it out to prevent faults on
378 * exit from the hypervisor if the next process has no %gs.
379 * Either way, it has been saved, and the new value will get
380 * loaded properly. This will go away as soon as Xen has been
381 * modified to not save/restore %gs for normal hypercalls.
382 */
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -0700383 if (paravirt_get_lazy_mode() == PARAVIRT_LAZY_CPU)
Jeremy Fitzhardinge8b84ad92007-07-17 18:37:06 -0700384 loadsegment(gs, 0);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700385}
386
387static void xen_write_ldt_entry(struct desc_struct *dt, int entrynum,
Glauber de Oliveira Costa75b8bb32008-01-30 13:31:13 +0100388 const void *ptr)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700389{
390 unsigned long lp = (unsigned long)&dt[entrynum];
391 xmaddr_t mach_lp = virt_to_machine(lp);
Glauber de Oliveira Costa75b8bb32008-01-30 13:31:13 +0100392 u64 entry = *(u64 *)ptr;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700393
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700394 preempt_disable();
395
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700396 xen_mc_flush();
397 if (HYPERVISOR_update_descriptor(mach_lp.maddr, entry))
398 BUG();
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700399
400 preempt_enable();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700401}
402
403static int cvt_gate_to_trap(int vector, u32 low, u32 high,
404 struct trap_info *info)
405{
406 u8 type, dpl;
407
408 type = (high >> 8) & 0x1f;
409 dpl = (high >> 13) & 3;
410
411 if (type != 0xf && type != 0xe)
412 return 0;
413
414 info->vector = vector;
415 info->address = (high & 0xffff0000) | (low & 0x0000ffff);
416 info->cs = low >> 16;
417 info->flags = dpl;
418 /* interrupt gates clear IF */
419 if (type == 0xe)
420 info->flags |= 4;
421
422 return 1;
423}
424
425/* Locations of each CPU's IDT */
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100426static DEFINE_PER_CPU(struct desc_ptr, idt_desc);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700427
428/* Set an IDT entry. If the entry is part of the current IDT, then
429 also update Xen. */
Glauber de Oliveira Costa8d947342008-01-30 13:31:12 +0100430static void xen_write_idt_entry(gate_desc *dt, int entrynum, const gate_desc *g)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700431{
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700432 unsigned long p = (unsigned long)&dt[entrynum];
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700433 unsigned long start, end;
434
435 preempt_disable();
436
437 start = __get_cpu_var(idt_desc).address;
438 end = start + __get_cpu_var(idt_desc).size + 1;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700439
440 xen_mc_flush();
441
Glauber de Oliveira Costa8d947342008-01-30 13:31:12 +0100442 native_write_idt_entry(dt, entrynum, g);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700443
444 if (p >= start && (p + 8) <= end) {
445 struct trap_info info[2];
Glauber de Oliveira Costa8d947342008-01-30 13:31:12 +0100446 u32 *desc = (u32 *)g;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700447
448 info[1].address = 0;
449
Glauber de Oliveira Costa8d947342008-01-30 13:31:12 +0100450 if (cvt_gate_to_trap(entrynum, desc[0], desc[1], &info[0]))
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700451 if (HYPERVISOR_set_trap_table(info))
452 BUG();
453 }
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700454
455 preempt_enable();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700456}
457
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100458static void xen_convert_trap_info(const struct desc_ptr *desc,
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700459 struct trap_info *traps)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700460{
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700461 unsigned in, out, count;
462
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700463 count = (desc->size+1) / 8;
464 BUG_ON(count > 256);
465
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700466 for (in = out = 0; in < count; in++) {
467 const u32 *entry = (u32 *)(desc->address + in * 8);
468
469 if (cvt_gate_to_trap(in, entry[0], entry[1], &traps[out]))
470 out++;
471 }
472 traps[out].address = 0;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700473}
474
475void xen_copy_trap_info(struct trap_info *traps)
476{
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100477 const struct desc_ptr *desc = &__get_cpu_var(idt_desc);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700478
479 xen_convert_trap_info(desc, traps);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700480}
481
482/* Load a new IDT into Xen. In principle this can be per-CPU, so we
483 hold a spinlock to protect the static traps[] array (static because
484 it avoids allocation, and saves stack space). */
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100485static void xen_load_idt(const struct desc_ptr *desc)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700486{
487 static DEFINE_SPINLOCK(lock);
488 static struct trap_info traps[257];
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700489
490 spin_lock(&lock);
491
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700492 __get_cpu_var(idt_desc) = *desc;
493
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700494 xen_convert_trap_info(desc, traps);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700495
496 xen_mc_flush();
497 if (HYPERVISOR_set_trap_table(traps))
498 BUG();
499
500 spin_unlock(&lock);
501}
502
503/* Write a GDT descriptor entry. Ignore LDT descriptors, since
504 they're handled differently. */
505static void xen_write_gdt_entry(struct desc_struct *dt, int entry,
Glauber de Oliveira Costa014b15b2008-01-30 13:31:13 +0100506 const void *desc, int type)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700507{
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700508 preempt_disable();
509
Glauber de Oliveira Costa014b15b2008-01-30 13:31:13 +0100510 switch (type) {
511 case DESC_LDT:
512 case DESC_TSS:
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700513 /* ignore */
514 break;
515
516 default: {
517 xmaddr_t maddr = virt_to_machine(&dt[entry]);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700518
519 xen_mc_flush();
Glauber de Oliveira Costa014b15b2008-01-30 13:31:13 +0100520 if (HYPERVISOR_update_descriptor(maddr.maddr, *(u64 *)desc))
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700521 BUG();
522 }
523
524 }
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700525
526 preempt_enable();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700527}
528
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100529static void xen_load_sp0(struct tss_struct *tss,
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700530 struct thread_struct *thread)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700531{
532 struct multicall_space mcs = xen_mc_entry(0);
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100533 MULTI_stack_switch(mcs.mc, __KERNEL_DS, thread->sp0);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700534 xen_mc_issue(PARAVIRT_LAZY_CPU);
535}
536
537static void xen_set_iopl_mask(unsigned mask)
538{
539 struct physdev_set_iopl set_iopl;
540
541 /* Force the change at ring 0. */
542 set_iopl.iopl = (mask == 0) ? 1 : (mask >> 12) & 3;
543 HYPERVISOR_physdev_op(PHYSDEVOP_set_iopl, &set_iopl);
544}
545
546static void xen_io_delay(void)
547{
548}
549
550#ifdef CONFIG_X86_LOCAL_APIC
Thomas Gleixner42e0a9a2008-01-30 13:30:15 +0100551static u32 xen_apic_read(unsigned long reg)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700552{
553 return 0;
554}
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700555
Thomas Gleixner42e0a9a2008-01-30 13:30:15 +0100556static void xen_apic_write(unsigned long reg, u32 val)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700557{
558 /* Warn to see if there's any stray references */
559 WARN_ON(1);
560}
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700561#endif
562
563static void xen_flush_tlb(void)
564{
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700565 struct mmuext_op *op;
Jeremy Fitzhardinge41e332b2008-04-02 10:54:09 -0700566 struct multicall_space mcs;
567
568 preempt_disable();
569
570 mcs = xen_mc_entry(sizeof(*op));
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700571
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700572 op = mcs.args;
573 op->cmd = MMUEXT_TLB_FLUSH_LOCAL;
574 MULTI_mmuext_op(mcs.mc, op, 1, NULL, DOMID_SELF);
575
576 xen_mc_issue(PARAVIRT_LAZY_MMU);
Jeremy Fitzhardinge41e332b2008-04-02 10:54:09 -0700577
578 preempt_enable();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700579}
580
581static void xen_flush_tlb_single(unsigned long addr)
582{
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700583 struct mmuext_op *op;
Jeremy Fitzhardinge41e332b2008-04-02 10:54:09 -0700584 struct multicall_space mcs;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700585
Jeremy Fitzhardinge41e332b2008-04-02 10:54:09 -0700586 preempt_disable();
587
588 mcs = xen_mc_entry(sizeof(*op));
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700589 op = mcs.args;
590 op->cmd = MMUEXT_INVLPG_LOCAL;
591 op->arg1.linear_addr = addr & PAGE_MASK;
592 MULTI_mmuext_op(mcs.mc, op, 1, NULL, DOMID_SELF);
593
594 xen_mc_issue(PARAVIRT_LAZY_MMU);
Jeremy Fitzhardinge41e332b2008-04-02 10:54:09 -0700595
596 preempt_enable();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700597}
598
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700599static void xen_flush_tlb_others(const cpumask_t *cpus, struct mm_struct *mm,
600 unsigned long va)
601{
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700602 struct {
603 struct mmuext_op op;
604 cpumask_t mask;
605 } *args;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700606 cpumask_t cpumask = *cpus;
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700607 struct multicall_space mcs;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700608
609 /*
610 * A couple of (to be removed) sanity checks:
611 *
612 * - current CPU must not be in mask
613 * - mask must exist :)
614 */
615 BUG_ON(cpus_empty(cpumask));
616 BUG_ON(cpu_isset(smp_processor_id(), cpumask));
617 BUG_ON(!mm);
618
619 /* If a CPU which we ran on has gone down, OK. */
620 cpus_and(cpumask, cpumask, cpu_online_map);
621 if (cpus_empty(cpumask))
622 return;
623
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700624 mcs = xen_mc_entry(sizeof(*args));
625 args = mcs.args;
626 args->mask = cpumask;
627 args->op.arg2.vcpumask = &args->mask;
628
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700629 if (va == TLB_FLUSH_ALL) {
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700630 args->op.cmd = MMUEXT_TLB_FLUSH_MULTI;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700631 } else {
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700632 args->op.cmd = MMUEXT_INVLPG_MULTI;
633 args->op.arg1.linear_addr = va;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700634 }
635
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700636 MULTI_mmuext_op(mcs.mc, &args->op, 1, NULL, DOMID_SELF);
637
638 xen_mc_issue(PARAVIRT_LAZY_MMU);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700639}
640
Jeremy Fitzhardinge7b1333a2008-05-26 23:31:01 +0100641static void xen_clts(void)
642{
643 struct multicall_space mcs;
644
645 mcs = xen_mc_entry(0);
646
647 MULTI_fpu_taskswitch(mcs.mc, 0);
648
649 xen_mc_issue(PARAVIRT_LAZY_CPU);
650}
651
652static void xen_write_cr0(unsigned long cr0)
653{
654 struct multicall_space mcs;
655
656 /* Only pay attention to cr0.TS; everything else is
657 ignored. */
658 mcs = xen_mc_entry(0);
659
660 MULTI_fpu_taskswitch(mcs.mc, (cr0 & X86_CR0_TS) != 0);
661
662 xen_mc_issue(PARAVIRT_LAZY_CPU);
663}
664
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700665static void xen_write_cr2(unsigned long cr2)
666{
667 x86_read_percpu(xen_vcpu)->arch.cr2 = cr2;
668}
669
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700670static unsigned long xen_read_cr2(void)
671{
672 return x86_read_percpu(xen_vcpu)->arch.cr2;
673}
674
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700675static unsigned long xen_read_cr2_direct(void)
676{
677 return x86_read_percpu(xen_vcpu_info.arch.cr2);
678}
679
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700680static void xen_write_cr4(unsigned long cr4)
681{
Jeremy Fitzhardinge2956a352008-05-26 23:31:04 +0100682 cr4 &= ~X86_CR4_PGE;
683 cr4 &= ~X86_CR4_PSE;
684
685 native_write_cr4(cr4);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700686}
687
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700688static unsigned long xen_read_cr3(void)
689{
690 return x86_read_percpu(xen_cr3);
691}
692
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -0700693static void set_current_cr3(void *v)
694{
695 x86_write_percpu(xen_current_cr3, (unsigned long)v);
696}
697
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700698static void xen_write_cr3(unsigned long cr3)
699{
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -0700700 struct mmuext_op *op;
701 struct multicall_space mcs;
702 unsigned long mfn = pfn_to_mfn(PFN_DOWN(cr3));
703
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700704 BUG_ON(preemptible());
705
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -0700706 mcs = xen_mc_entry(sizeof(*op)); /* disables interrupts */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700707
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -0700708 /* Update while interrupts are disabled, so its atomic with
709 respect to ipis */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700710 x86_write_percpu(xen_cr3, cr3);
711
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -0700712 op = mcs.args;
713 op->cmd = MMUEXT_NEW_BASEPTR;
714 op->arg1.mfn = mfn;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700715
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -0700716 MULTI_mmuext_op(mcs.mc, op, 1, NULL, DOMID_SELF);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700717
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -0700718 /* Update xen_update_cr3 once the batch has actually
719 been submitted. */
720 xen_mc_callback(set_current_cr3, (void *)cr3);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700721
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -0700722 xen_mc_issue(PARAVIRT_LAZY_CPU); /* interrupts restored */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700723}
724
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700725/* Early in boot, while setting up the initial pagetable, assume
726 everything is pinned. */
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700727static __init void xen_alloc_pte_init(struct mm_struct *mm, u32 pfn)
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700728{
Jeremy Fitzhardingeaf7ae3b2008-04-02 10:54:12 -0700729#ifdef CONFIG_FLATMEM
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700730 BUG_ON(mem_map); /* should only be used early */
Jeremy Fitzhardingeaf7ae3b2008-04-02 10:54:12 -0700731#endif
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700732 make_lowmem_page_readonly(__va(PFN_PHYS(pfn)));
733}
734
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700735/* Early release_pte assumes that all pts are pinned, since there's
Jeremy Fitzhardinge1c70e9b2008-01-30 13:33:39 +0100736 only init_mm and anything attached to that is pinned. */
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700737static void xen_release_pte_init(u32 pfn)
Jeremy Fitzhardinge1c70e9b2008-01-30 13:33:39 +0100738{
739 make_lowmem_page_readwrite(__va(PFN_PHYS(pfn)));
740}
741
Mark McLoughlinf6433702008-04-02 15:36:36 +0100742static void pin_pagetable_pfn(unsigned cmd, unsigned long pfn)
Jeremy Fitzhardinge74260712007-10-16 11:51:30 -0700743{
744 struct mmuext_op op;
Mark McLoughlinf6433702008-04-02 15:36:36 +0100745 op.cmd = cmd;
Jeremy Fitzhardinge74260712007-10-16 11:51:30 -0700746 op.arg1.mfn = pfn_to_mfn(pfn);
747 if (HYPERVISOR_mmuext_op(&op, 1, NULL, DOMID_SELF))
748 BUG();
749}
750
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700751/* This needs to make sure the new pte page is pinned iff its being
752 attached to a pinned pagetable. */
Jeremy Fitzhardinge1c70e9b2008-01-30 13:33:39 +0100753static void xen_alloc_ptpage(struct mm_struct *mm, u32 pfn, unsigned level)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700754{
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700755 struct page *page = pfn_to_page(pfn);
756
757 if (PagePinned(virt_to_page(mm->pgd))) {
758 SetPagePinned(page);
759
Jeremy Fitzhardinge74260712007-10-16 11:51:30 -0700760 if (!PageHighMem(page)) {
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700761 make_lowmem_page_readonly(__va(PFN_PHYS(pfn)));
Mark McLoughlinf6433702008-04-02 15:36:36 +0100762 if (level == PT_PTE)
763 pin_pagetable_pfn(MMUEXT_PIN_L1_TABLE, pfn);
Jeremy Fitzhardinge74260712007-10-16 11:51:30 -0700764 } else
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700765 /* make sure there are no stray mappings of
766 this page */
767 kmap_flush_unused();
768 }
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700769}
770
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700771static void xen_alloc_pte(struct mm_struct *mm, u32 pfn)
Jeremy Fitzhardinge1c70e9b2008-01-30 13:33:39 +0100772{
Mark McLoughlinf6433702008-04-02 15:36:36 +0100773 xen_alloc_ptpage(mm, pfn, PT_PTE);
Jeremy Fitzhardinge1c70e9b2008-01-30 13:33:39 +0100774}
775
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700776static void xen_alloc_pmd(struct mm_struct *mm, u32 pfn)
Jeremy Fitzhardinge1c70e9b2008-01-30 13:33:39 +0100777{
Mark McLoughlinf6433702008-04-02 15:36:36 +0100778 xen_alloc_ptpage(mm, pfn, PT_PMD);
Jeremy Fitzhardinge1c70e9b2008-01-30 13:33:39 +0100779}
780
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700781/* This should never happen until we're OK to use struct page */
Mark McLoughlinf6433702008-04-02 15:36:36 +0100782static void xen_release_ptpage(u32 pfn, unsigned level)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700783{
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700784 struct page *page = pfn_to_page(pfn);
785
786 if (PagePinned(page)) {
Jeremy Fitzhardinge74260712007-10-16 11:51:30 -0700787 if (!PageHighMem(page)) {
Mark McLoughlina684d692008-04-02 15:36:37 +0100788 if (level == PT_PTE)
789 pin_pagetable_pfn(MMUEXT_UNPIN_TABLE, pfn);
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700790 make_lowmem_page_readwrite(__va(PFN_PHYS(pfn)));
Jeremy Fitzhardinge74260712007-10-16 11:51:30 -0700791 }
Mark McLoughlinc946c7d2008-04-02 15:36:38 +0100792 ClearPagePinned(page);
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700793 }
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700794}
795
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700796static void xen_release_pte(u32 pfn)
Mark McLoughlinf6433702008-04-02 15:36:36 +0100797{
798 xen_release_ptpage(pfn, PT_PTE);
799}
800
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700801static void xen_release_pmd(u32 pfn)
Mark McLoughlinf6433702008-04-02 15:36:36 +0100802{
803 xen_release_ptpage(pfn, PT_PMD);
804}
805
Jeremy Fitzhardingef6e58732008-07-08 15:06:38 -0700806#if PAGETABLE_LEVELS == 4
807static void xen_alloc_pud(struct mm_struct *mm, u32 pfn)
808{
809 xen_alloc_ptpage(mm, pfn, PT_PUD);
810}
811
812static void xen_release_pud(u32 pfn)
813{
814 xen_release_ptpage(pfn, PT_PUD);
815}
816#endif
817
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700818#ifdef CONFIG_HIGHPTE
819static void *xen_kmap_atomic_pte(struct page *page, enum km_type type)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700820{
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700821 pgprot_t prot = PAGE_KERNEL;
822
823 if (PagePinned(page))
824 prot = PAGE_KERNEL_RO;
825
826 if (0 && PageHighMem(page))
827 printk("mapping highpte %lx type %d prot %s\n",
828 page_to_pfn(page), type,
829 (unsigned long)pgprot_val(prot) & _PAGE_RW ? "WRITE" : "READ");
830
831 return kmap_atomic_prot(page, type, prot);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700832}
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700833#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700834
Jeremy Fitzhardinge9a4029f2007-07-17 18:37:05 -0700835static __init pte_t mask_rw_pte(pte_t *ptep, pte_t pte)
836{
837 /* If there's an existing pte, then don't allow _PAGE_RW to be set */
838 if (pte_val_ma(*ptep) & _PAGE_PRESENT)
839 pte = __pte_ma(((pte_val_ma(*ptep) & _PAGE_RW) | ~_PAGE_RW) &
840 pte_val_ma(pte));
841
842 return pte;
843}
844
845/* Init-time set_pte while constructing initial pagetables, which
846 doesn't allow RO pagetable pages to be remapped RW */
847static __init void xen_set_pte_init(pte_t *ptep, pte_t pte)
848{
849 pte = mask_rw_pte(ptep, pte);
850
851 xen_set_pte(ptep, pte);
852}
853
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700854static __init void xen_pagetable_setup_start(pgd_t *base)
855{
Eduardo Habkosta312b372008-07-08 15:06:23 -0700856#ifdef CONFIG_X86_32
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700857 pgd_t *xen_pgd = (pgd_t *)xen_start_info->pt_base;
Jeremy Fitzhardinge3843fc22008-05-09 12:05:57 +0100858 int i;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700859
860 init_mm.pgd = base;
861 /*
Jeremy Fitzhardinge3843fc22008-05-09 12:05:57 +0100862 * copy top-level of Xen-supplied pagetable into place. This
863 * is a stand-in while we copy the pmd pages.
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700864 */
865 memcpy(base, xen_pgd, PTRS_PER_PGD * sizeof(pgd_t));
866
Jeremy Fitzhardinge3843fc22008-05-09 12:05:57 +0100867 /*
868 * For PAE, need to allocate new pmds, rather than
869 * share Xen's, since Xen doesn't like pmd's being
870 * shared between address spaces.
871 */
872 for (i = 0; i < PTRS_PER_PGD; i++) {
873 if (pgd_val_ma(xen_pgd[i]) & _PAGE_PRESENT) {
874 pmd_t *pmd = (pmd_t *)alloc_bootmem_low_pages(PAGE_SIZE);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700875
Jeremy Fitzhardinge3843fc22008-05-09 12:05:57 +0100876 memcpy(pmd, (void *)pgd_page_vaddr(xen_pgd[i]),
877 PAGE_SIZE);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700878
Jeremy Fitzhardinge3843fc22008-05-09 12:05:57 +0100879 make_lowmem_page_readonly(pmd);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700880
Jeremy Fitzhardinge3843fc22008-05-09 12:05:57 +0100881 set_pgd(&base[i], __pgd(1 + __pa(pmd)));
882 } else
883 pgd_clear(&base[i]);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700884 }
885
886 /* make sure zero_page is mapped RO so we can use it in pagetables */
887 make_lowmem_page_readonly(empty_zero_page);
888 make_lowmem_page_readonly(base);
889 /*
890 * Switch to new pagetable. This is done before
891 * pagetable_init has done anything so that the new pages
892 * added to the table can be prepared properly for Xen.
893 */
894 xen_write_cr3(__pa(base));
Jeremy Fitzhardinge2b540782008-02-13 16:20:35 +0100895
896 /* Unpin initial Xen pagetable */
897 pin_pagetable_pfn(MMUEXT_UNPIN_TABLE,
898 PFN_DOWN(__pa(xen_start_info->pt_base)));
Eduardo Habkosta312b372008-07-08 15:06:23 -0700899#endif /* CONFIG_X86_32 */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700900}
901
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +0100902void xen_setup_shared_info(void)
Jeremy Fitzhardinge2e8fe712008-03-17 16:36:53 -0700903{
904 if (!xen_feature(XENFEAT_auto_translated_physmap)) {
Jeremy Fitzhardinge15664f92008-07-08 15:06:47 -0700905 set_fixmap(FIX_PARAVIRT_BOOTMAP,
906 xen_start_info->shared_info);
Jeremy Fitzhardinge2e8fe712008-03-17 16:36:53 -0700907
Jeremy Fitzhardinge15664f92008-07-08 15:06:47 -0700908 HYPERVISOR_shared_info =
909 (struct shared_info *)fix_to_virt(FIX_PARAVIRT_BOOTMAP);
Jeremy Fitzhardinge2e8fe712008-03-17 16:36:53 -0700910 } else
911 HYPERVISOR_shared_info =
912 (struct shared_info *)__va(xen_start_info->shared_info);
913
914#ifndef CONFIG_SMP
915 /* In UP this is as good a place as any to set up shared info */
916 xen_setup_vcpu_info_placement();
917#endif
Jeremy Fitzhardinged5edbc12008-05-26 23:31:22 +0100918
919 xen_setup_mfn_list_list();
Jeremy Fitzhardinge2e8fe712008-03-17 16:36:53 -0700920}
921
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700922static __init void xen_pagetable_setup_done(pgd_t *base)
923{
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700924 /* This will work as long as patching hasn't happened yet
925 (which it hasn't) */
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700926 pv_mmu_ops.alloc_pte = xen_alloc_pte;
927 pv_mmu_ops.alloc_pmd = xen_alloc_pmd;
928 pv_mmu_ops.release_pte = xen_release_pte;
929 pv_mmu_ops.release_pmd = xen_release_pmd;
Jeremy Fitzhardingef6e58732008-07-08 15:06:38 -0700930#if PAGETABLE_LEVELS == 4
931 pv_mmu_ops.alloc_pud = xen_alloc_pud;
932 pv_mmu_ops.release_pud = xen_release_pud;
933#endif
934
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700935 pv_mmu_ops.set_pte = xen_set_pte;
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700936
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +0100937 xen_setup_shared_info();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700938
Eduardo Habkosta312b372008-07-08 15:06:23 -0700939#ifdef CONFIG_X86_32
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700940 /* Actually pin the pagetable down, but we can't set PG_pinned
941 yet because the page structures don't exist yet. */
Jeremy Fitzhardinge3843fc22008-05-09 12:05:57 +0100942 pin_pagetable_pfn(MMUEXT_PIN_L3_TABLE, PFN_DOWN(__pa(base)));
Eduardo Habkosta312b372008-07-08 15:06:23 -0700943#endif
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700944}
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700945
Jeremy Fitzhardingee2426cf2008-05-31 01:24:27 +0100946static __init void xen_post_allocator_init(void)
947{
948 pv_mmu_ops.set_pmd = xen_set_pmd;
949 pv_mmu_ops.set_pud = xen_set_pud;
Jeremy Fitzhardingef6e58732008-07-08 15:06:38 -0700950#if PAGETABLE_LEVELS == 4
951 pv_mmu_ops.set_pgd = xen_set_pgd;
952#endif
Jeremy Fitzhardingee2426cf2008-05-31 01:24:27 +0100953
954 xen_mark_init_mm_pinned();
955}
956
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700957/* This is called once we have the cpu_possible_map */
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +0100958void xen_setup_vcpu_info_placement(void)
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700959{
960 int cpu;
961
962 for_each_possible_cpu(cpu)
963 xen_vcpu_setup(cpu);
964
965 /* xen_vcpu_setup managed to place the vcpu_info within the
966 percpu area for all cpus, so make use of it */
Jeremy Fitzhardinge5b09b282008-07-08 15:06:42 -0700967#ifdef CONFIG_X86_32
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700968 if (have_vcpu_info_placement) {
969 printk(KERN_INFO "Xen: using vcpu_info placement\n");
970
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700971 pv_irq_ops.save_fl = xen_save_fl_direct;
972 pv_irq_ops.restore_fl = xen_restore_fl_direct;
973 pv_irq_ops.irq_disable = xen_irq_disable_direct;
974 pv_irq_ops.irq_enable = xen_irq_enable_direct;
975 pv_mmu_ops.read_cr2 = xen_read_cr2_direct;
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700976 }
Jeremy Fitzhardinge5b09b282008-07-08 15:06:42 -0700977#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700978}
979
Andi Kleenab144f52007-08-10 22:31:03 +0200980static unsigned xen_patch(u8 type, u16 clobbers, void *insnbuf,
981 unsigned long addr, unsigned len)
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700982{
983 char *start, *end, *reloc;
984 unsigned ret;
985
986 start = end = reloc = NULL;
987
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700988#define SITE(op, x) \
989 case PARAVIRT_PATCH(op.x): \
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700990 if (have_vcpu_info_placement) { \
991 start = (char *)xen_##x##_direct; \
992 end = xen_##x##_direct_end; \
993 reloc = xen_##x##_direct_reloc; \
994 } \
995 goto patch_site
996
997 switch (type) {
Jeremy Fitzhardinge5b09b282008-07-08 15:06:42 -0700998#ifdef CONFIG_X86_32
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700999 SITE(pv_irq_ops, irq_enable);
1000 SITE(pv_irq_ops, irq_disable);
1001 SITE(pv_irq_ops, save_fl);
1002 SITE(pv_irq_ops, restore_fl);
Jeremy Fitzhardinge5b09b282008-07-08 15:06:42 -07001003#endif /* CONFIG_X86_32 */
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -07001004#undef SITE
1005
1006 patch_site:
1007 if (start == NULL || (end-start) > len)
1008 goto default_patch;
1009
Andi Kleenab144f52007-08-10 22:31:03 +02001010 ret = paravirt_patch_insns(insnbuf, len, start, end);
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -07001011
1012 /* Note: because reloc is assigned from something that
1013 appears to be an array, gcc assumes it's non-null,
1014 but doesn't know its relationship with start and
1015 end. */
1016 if (reloc > start && reloc < end) {
1017 int reloc_off = reloc - start;
Andi Kleenab144f52007-08-10 22:31:03 +02001018 long *relocp = (long *)(insnbuf + reloc_off);
1019 long delta = start - (char *)addr;
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -07001020
1021 *relocp += delta;
1022 }
1023 break;
1024
1025 default_patch:
1026 default:
Andi Kleenab144f52007-08-10 22:31:03 +02001027 ret = paravirt_patch_default(type, clobbers, insnbuf,
1028 addr, len);
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -07001029 break;
1030 }
1031
1032 return ret;
1033}
1034
Jeremy Fitzhardingeaeaaa592008-06-17 11:42:01 -07001035static void xen_set_fixmap(unsigned idx, unsigned long phys, pgprot_t prot)
1036{
1037 pte_t pte;
1038
1039 phys >>= PAGE_SHIFT;
1040
1041 switch (idx) {
1042 case FIX_BTMAP_END ... FIX_BTMAP_BEGIN:
1043#ifdef CONFIG_X86_F00F_BUG
1044 case FIX_F00F_IDT:
1045#endif
Jeremy Fitzhardinge15664f92008-07-08 15:06:47 -07001046#ifdef CONFIG_X86_32
Jeremy Fitzhardingeaeaaa592008-06-17 11:42:01 -07001047 case FIX_WP_TEST:
1048 case FIX_VDSO:
Jeremy Fitzhardinge15664f92008-07-08 15:06:47 -07001049 case FIX_KMAP_BEGIN ... FIX_KMAP_END:
1050#else
1051 case VSYSCALL_LAST_PAGE ... VSYSCALL_FIRST_PAGE:
1052#endif
Jeremy Fitzhardingeaeaaa592008-06-17 11:42:01 -07001053#ifdef CONFIG_X86_LOCAL_APIC
1054 case FIX_APIC_BASE: /* maps dummy local APIC */
1055#endif
1056 pte = pfn_pte(phys, prot);
1057 break;
1058
1059 default:
1060 pte = mfn_pte(phys, prot);
1061 break;
1062 }
1063
1064 __native_set_fixmap(idx, pte);
1065}
1066
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001067static const struct pv_info xen_info __initdata = {
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001068 .paravirt_enabled = 1,
1069 .shared_kernel_pmd = 0,
1070
1071 .name = "Xen",
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001072};
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001073
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001074static const struct pv_init_ops xen_init_ops __initdata = {
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -07001075 .patch = xen_patch,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001076
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001077 .banner = xen_banner,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001078 .memory_setup = xen_memory_setup,
1079 .arch_setup = xen_arch_setup,
Jeremy Fitzhardingee2426cf2008-05-31 01:24:27 +01001080 .post_allocator_init = xen_post_allocator_init,
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_time_ops xen_time_ops __initdata = {
Jeremy Fitzhardinge15c84732007-07-17 18:37:05 -07001084 .time_init = xen_time_init,
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001085
Jeremy Fitzhardinge15c84732007-07-17 18:37:05 -07001086 .set_wallclock = xen_set_wallclock,
1087 .get_wallclock = xen_get_wallclock,
Alok Katariae93ef942008-07-01 11:43:36 -07001088 .get_tsc_khz = xen_tsc_khz,
Jeremy Fitzhardingeab550282007-07-17 18:37:05 -07001089 .sched_clock = xen_sched_clock,
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001090};
Jeremy Fitzhardinge15c84732007-07-17 18:37:05 -07001091
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001092static const struct pv_cpu_ops xen_cpu_ops __initdata = {
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001093 .cpuid = xen_cpuid,
1094
1095 .set_debugreg = xen_set_debugreg,
1096 .get_debugreg = xen_get_debugreg,
1097
Jeremy Fitzhardinge7b1333a2008-05-26 23:31:01 +01001098 .clts = xen_clts,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001099
1100 .read_cr0 = native_read_cr0,
Jeremy Fitzhardinge7b1333a2008-05-26 23:31:01 +01001101 .write_cr0 = xen_write_cr0,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001102
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001103 .read_cr4 = native_read_cr4,
1104 .read_cr4_safe = native_read_cr4_safe,
1105 .write_cr4 = xen_write_cr4,
1106
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001107 .wbinvd = native_wbinvd,
1108
1109 .read_msr = native_read_msr_safe,
1110 .write_msr = native_write_msr_safe,
1111 .read_tsc = native_read_tsc,
1112 .read_pmc = native_read_pmc,
1113
Jeremy Fitzhardinge81e103f2008-04-17 17:40:51 +02001114 .iret = xen_iret,
Jeremy Fitzhardinged75cd222008-06-25 00:19:26 -04001115 .irq_enable_sysexit = xen_sysexit,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001116
1117 .load_tr_desc = paravirt_nop,
1118 .set_ldt = xen_set_ldt,
1119 .load_gdt = xen_load_gdt,
1120 .load_idt = xen_load_idt,
1121 .load_tls = xen_load_tls,
1122
1123 .store_gdt = native_store_gdt,
1124 .store_idt = native_store_idt,
1125 .store_tr = xen_store_tr,
1126
1127 .write_ldt_entry = xen_write_ldt_entry,
1128 .write_gdt_entry = xen_write_gdt_entry,
1129 .write_idt_entry = xen_write_idt_entry,
H. Peter Anvinfaca6222008-01-30 13:31:02 +01001130 .load_sp0 = xen_load_sp0,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001131
1132 .set_iopl_mask = xen_set_iopl_mask,
1133 .io_delay = xen_io_delay,
1134
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -07001135 .lazy_mode = {
1136 .enter = paravirt_enter_lazy_cpu,
1137 .leave = xen_leave_lazy,
1138 },
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001139};
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001140
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001141static const struct pv_irq_ops xen_irq_ops __initdata = {
1142 .init_IRQ = xen_init_IRQ,
1143 .save_fl = xen_save_fl,
1144 .restore_fl = xen_restore_fl,
1145 .irq_disable = xen_irq_disable,
1146 .irq_enable = xen_irq_enable,
1147 .safe_halt = xen_safe_halt,
1148 .halt = xen_halt,
Jeremy Fitzhardingefab58422008-06-25 00:19:31 -04001149#ifdef CONFIG_X86_64
1150 .adjust_exception_frame = paravirt_nop,
1151#endif
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001152};
1153
1154static const struct pv_apic_ops xen_apic_ops __initdata = {
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001155#ifdef CONFIG_X86_LOCAL_APIC
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -07001156 .apic_write = xen_apic_write,
1157 .apic_write_atomic = xen_apic_write,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001158 .apic_read = xen_apic_read,
1159 .setup_boot_clock = paravirt_nop,
1160 .setup_secondary_clock = paravirt_nop,
1161 .startup_ipi_hook = paravirt_nop,
1162#endif
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001163};
1164
1165static const struct pv_mmu_ops xen_mmu_ops __initdata = {
1166 .pagetable_setup_start = xen_pagetable_setup_start,
1167 .pagetable_setup_done = xen_pagetable_setup_done,
1168
1169 .read_cr2 = xen_read_cr2,
1170 .write_cr2 = xen_write_cr2,
1171
1172 .read_cr3 = xen_read_cr3,
1173 .write_cr3 = xen_write_cr3,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001174
1175 .flush_tlb_user = xen_flush_tlb,
1176 .flush_tlb_kernel = xen_flush_tlb,
1177 .flush_tlb_single = xen_flush_tlb_single,
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -07001178 .flush_tlb_others = xen_flush_tlb_others,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001179
1180 .pte_update = paravirt_nop,
1181 .pte_update_defer = paravirt_nop,
1182
Jeremy Fitzhardingeeba00452008-06-25 00:19:12 -04001183 .pgd_alloc = __paravirt_pgd_alloc,
1184 .pgd_free = paravirt_nop,
1185
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -07001186 .alloc_pte = xen_alloc_pte_init,
1187 .release_pte = xen_release_pte_init,
1188 .alloc_pmd = xen_alloc_pte_init,
1189 .alloc_pmd_clone = paravirt_nop,
1190 .release_pmd = xen_release_pte_init,
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -07001191
1192#ifdef CONFIG_HIGHPTE
1193 .kmap_atomic_pte = xen_kmap_atomic_pte,
1194#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001195
Jeremy Fitzhardinge851fa3c2008-07-08 15:06:33 -07001196 .set_pte = xen_set_pte_init,
Jeremy Fitzhardinge3b827c12007-07-17 18:37:04 -07001197 .set_pte_at = xen_set_pte_at,
Jeremy Fitzhardingee2426cf2008-05-31 01:24:27 +01001198 .set_pmd = xen_set_pmd_hyper,
Jeremy Fitzhardinge3b827c12007-07-17 18:37:04 -07001199
Jeremy Fitzhardinge08b882c2008-06-16 04:30:01 -07001200 .ptep_modify_prot_start = __ptep_modify_prot_start,
1201 .ptep_modify_prot_commit = __ptep_modify_prot_commit,
1202
Jeremy Fitzhardinge3b827c12007-07-17 18:37:04 -07001203 .pte_val = xen_pte_val,
Jeremy Fitzhardingea15af1c2008-05-26 23:31:06 +01001204 .pte_flags = native_pte_val,
Jeremy Fitzhardinge3b827c12007-07-17 18:37:04 -07001205 .pgd_val = xen_pgd_val,
1206
1207 .make_pte = xen_make_pte,
1208 .make_pgd = xen_make_pgd,
1209
Jeremy Fitzhardingef6e58732008-07-08 15:06:38 -07001210#ifdef CONFIG_X86_PAE
Jeremy Fitzhardinge3b827c12007-07-17 18:37:04 -07001211 .set_pte_atomic = xen_set_pte_atomic,
1212 .set_pte_present = xen_set_pte_at,
Jeremy Fitzhardinge3b827c12007-07-17 18:37:04 -07001213 .pte_clear = xen_pte_clear,
1214 .pmd_clear = xen_pmd_clear,
Jeremy Fitzhardingef6e58732008-07-08 15:06:38 -07001215#endif /* CONFIG_X86_PAE */
1216 .set_pud = xen_set_pud_hyper,
Jeremy Fitzhardinge3b827c12007-07-17 18:37:04 -07001217
1218 .make_pmd = xen_make_pmd,
1219 .pmd_val = xen_pmd_val,
Jeremy Fitzhardinge3b827c12007-07-17 18:37:04 -07001220
Jeremy Fitzhardingef6e58732008-07-08 15:06:38 -07001221#if PAGETABLE_LEVELS == 4
1222 .pud_val = xen_pud_val,
1223 .make_pud = xen_make_pud,
1224 .set_pgd = xen_set_pgd_hyper,
1225
1226 .alloc_pud = xen_alloc_pte_init,
1227 .release_pud = xen_release_pte_init,
1228#endif /* PAGETABLE_LEVELS == 4 */
1229
Jeremy Fitzhardinge3b827c12007-07-17 18:37:04 -07001230 .activate_mm = xen_activate_mm,
1231 .dup_mmap = xen_dup_mmap,
1232 .exit_mmap = xen_exit_mmap,
1233
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -07001234 .lazy_mode = {
1235 .enter = paravirt_enter_lazy_mmu,
1236 .leave = xen_leave_lazy,
1237 },
Jeremy Fitzhardingeaeaaa592008-06-17 11:42:01 -07001238
1239 .set_fixmap = xen_set_fixmap,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001240};
1241
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -07001242static void xen_reboot(int reason)
1243{
Jeremy Fitzhardinge349c7092008-05-26 23:31:02 +01001244 struct sched_shutdown r = { .reason = reason };
1245
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -07001246#ifdef CONFIG_SMP
1247 smp_send_stop();
1248#endif
1249
Jeremy Fitzhardinge349c7092008-05-26 23:31:02 +01001250 if (HYPERVISOR_sched_op(SCHEDOP_shutdown, &r))
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -07001251 BUG();
1252}
1253
1254static void xen_restart(char *msg)
1255{
1256 xen_reboot(SHUTDOWN_reboot);
1257}
1258
1259static void xen_emergency_restart(void)
1260{
1261 xen_reboot(SHUTDOWN_reboot);
1262}
1263
1264static void xen_machine_halt(void)
1265{
1266 xen_reboot(SHUTDOWN_poweroff);
1267}
1268
1269static void xen_crash_shutdown(struct pt_regs *regs)
1270{
1271 xen_reboot(SHUTDOWN_crash);
1272}
1273
1274static const struct machine_ops __initdata xen_machine_ops = {
1275 .restart = xen_restart,
1276 .halt = xen_machine_halt,
1277 .power_off = xen_machine_halt,
1278 .shutdown = xen_machine_halt,
1279 .crash_shutdown = xen_crash_shutdown,
1280 .emergency_restart = xen_emergency_restart,
1281};
1282
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -07001283
Jeremy Fitzhardingefb1d8402007-10-16 11:51:31 -07001284static void __init xen_reserve_top(void)
1285{
Jeremy Fitzhardingef5d36de2008-07-08 15:06:39 -07001286#ifdef CONFIG_X86_32
Jeremy Fitzhardingefb1d8402007-10-16 11:51:31 -07001287 unsigned long top = HYPERVISOR_VIRT_START;
1288 struct xen_platform_parameters pp;
1289
1290 if (HYPERVISOR_xen_version(XENVER_platform_parameters, &pp) == 0)
1291 top = pp.virt_start;
1292
1293 reserve_top_address(-top + 2 * PAGE_SIZE);
Jeremy Fitzhardingef5d36de2008-07-08 15:06:39 -07001294#endif /* CONFIG_X86_32 */
Jeremy Fitzhardingefb1d8402007-10-16 11:51:31 -07001295}
1296
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001297/* First C function to be called on Xen boot */
1298asmlinkage void __init xen_start_kernel(void)
1299{
1300 pgd_t *pgd;
1301
1302 if (!xen_start_info)
1303 return;
1304
Jeremy Fitzhardinge7999f4b2007-12-10 13:00:41 -08001305 BUG_ON(memcmp(xen_start_info->magic, "xen-3", 5) != 0);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001306
Jeremy Fitzhardingee57778a2008-06-16 04:30:02 -07001307 xen_setup_features();
1308
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001309 /* Install Xen paravirt ops */
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001310 pv_info = xen_info;
1311 pv_init_ops = xen_init_ops;
1312 pv_time_ops = xen_time_ops;
1313 pv_cpu_ops = xen_cpu_ops;
1314 pv_irq_ops = xen_irq_ops;
1315 pv_apic_ops = xen_apic_ops;
1316 pv_mmu_ops = xen_mmu_ops;
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001317
Jeremy Fitzhardingee57778a2008-06-16 04:30:02 -07001318 if (xen_feature(XENFEAT_mmu_pt_update_preserve_ad)) {
1319 pv_mmu_ops.ptep_modify_prot_start = xen_ptep_modify_prot_start;
1320 pv_mmu_ops.ptep_modify_prot_commit = xen_ptep_modify_prot_commit;
1321 }
1322
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -07001323 machine_ops = xen_machine_ops;
1324
Jeremy Fitzhardingef5d36de2008-07-08 15:06:39 -07001325#ifdef CONFIG_X86_64
1326 /* Disable until direct per-cpu data access. */
1327 have_vcpu_info_placement = 0;
Jeremy Fitzhardinge5b09b282008-07-08 15:06:42 -07001328 x86_64_init_pda();
Jeremy Fitzhardingef5d36de2008-07-08 15:06:39 -07001329#endif
1330
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -07001331 xen_smp_init();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001332
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001333 /* Get mfn list */
1334 if (!xen_feature(XENFEAT_auto_translated_physmap))
Jeremy Fitzhardinged451bb72008-05-26 23:31:18 +01001335 xen_build_dynamic_phys_to_machine();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001336
1337 pgd = (pgd_t *)xen_start_info->pt_base;
1338
Jeremy Fitzhardingef5d36de2008-07-08 15:06:39 -07001339#ifdef CONFIG_X86_32
Yinghai Luf0d43102008-05-29 12:56:36 -07001340 init_pg_tables_start = __pa(pgd);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001341 init_pg_tables_end = __pa(pgd) + xen_start_info->nr_pt_frames*PAGE_SIZE;
Jeremy Fitzhardinge88a68462008-06-16 14:54:51 -07001342 max_pfn_mapped = (init_pg_tables_end + 512*1024) >> PAGE_SHIFT;
Jeremy Fitzhardingef5d36de2008-07-08 15:06:39 -07001343#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001344
1345 init_mm.pgd = pgd; /* use the Xen pagetables to start */
1346
1347 /* keep using Xen gdt for now; no urgent need to change it */
1348
1349 x86_write_percpu(xen_cr3, __pa(pgd));
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -07001350 x86_write_percpu(xen_current_cr3, __pa(pgd));
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -07001351
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -07001352 /* Don't do the full vcpu_info placement stuff until we have a
Jeremy Fitzhardinge2e8fe712008-03-17 16:36:53 -07001353 possible map and a non-dummy shared_info. */
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -07001354 per_cpu(xen_vcpu, 0) = &HYPERVISOR_shared_info->vcpu_info[0];
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001355
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001356 pv_info.kernel_rpl = 1;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001357 if (xen_feature(XENFEAT_supervisor_mode_kernel))
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001358 pv_info.kernel_rpl = 0;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001359
Jeremy Fitzhardingeeb179e42008-06-16 15:01:53 -07001360 /* Prevent unwanted bits from being set in PTEs. */
1361 __supported_pte_mask &= ~_PAGE_GLOBAL;
1362 if (!is_initial_xendomain())
1363 __supported_pte_mask &= ~(_PAGE_PWT | _PAGE_PCD);
1364
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001365 /* set the limit of our address space */
Jeremy Fitzhardingefb1d8402007-10-16 11:51:31 -07001366 xen_reserve_top();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001367
1368 /* set up basic CPUID stuff */
1369 cpu_detect(&new_cpu_data);
Jeremy Fitzhardingef5d36de2008-07-08 15:06:39 -07001370#ifdef CONFIG_X86_32
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001371 new_cpu_data.hard_math = 1;
Jeremy Fitzhardingef5d36de2008-07-08 15:06:39 -07001372#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001373 new_cpu_data.x86_capability[0] = cpuid_edx(1);
1374
1375 /* Poke various useful things into boot_params */
H. Peter Anvin30c82642007-10-15 17:13:22 -07001376 boot_params.hdr.type_of_loader = (9 << 4) | 0;
1377 boot_params.hdr.ramdisk_image = xen_start_info->mod_start
1378 ? __pa(xen_start_info->mod_start) : 0;
1379 boot_params.hdr.ramdisk_size = xen_start_info->mod_len;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001380
Markus Armbruster9e124fe2008-05-26 23:31:07 +01001381 if (!is_initial_xendomain()) {
Jeremy Fitzhardinge83abc702008-05-26 23:31:12 +01001382 add_preferred_console("xenboot", 0, NULL);
Markus Armbruster9e124fe2008-05-26 23:31:07 +01001383 add_preferred_console("tty", 0, NULL);
Markus Armbrusterb8c2d3d2008-02-27 14:56:35 +01001384 add_preferred_console("hvc", 0, NULL);
Markus Armbruster9e124fe2008-05-26 23:31:07 +01001385 }
Markus Armbrusterb8c2d3d2008-02-27 14:56:35 +01001386
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001387 /* Start the world */
Jeremy Fitzhardingef5d36de2008-07-08 15:06:39 -07001388#ifdef CONFIG_X86_32
Yinghai Luf0d43102008-05-29 12:56:36 -07001389 i386_start_kernel();
Jeremy Fitzhardingef5d36de2008-07-08 15:06:39 -07001390#else
1391 x86_64_start_kernel((char *)&boot_params);
1392#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001393}