blob: c13698faae54b30e24ec28deda512136bdf7d2db [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>
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -070036#include <xen/hvc-console.h>
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070037
38#include <asm/paravirt.h>
39#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 Fitzhardinge8965c1c02007-10-16 11:51:29 -0700301static void xen_leave_lazy(void)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700302{
Jeremy Fitzhardinge8965c1c02007-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{
Jeremy Fitzhardinge8b84ad92007-07-17 18:37:06 -0700367 /*
368 * XXX sleazy hack: If we're being called in a lazy-cpu zone,
369 * it means we're in a context switch, and %gs has just been
370 * saved. This means we can zero it out to prevent faults on
371 * exit from the hypervisor if the next process has no %gs.
372 * Either way, it has been saved, and the new value will get
373 * loaded properly. This will go away as soon as Xen has been
374 * modified to not save/restore %gs for normal hypercalls.
Eduardo Habkost8a954082008-07-08 15:07:10 -0700375 *
376 * On x86_64, this hack is not used for %gs, because gs points
377 * to KERNEL_GS_BASE (and uses it for PDA references), so we
378 * must not zero %gs on x86_64
379 *
380 * For x86_64, we need to zero %fs, otherwise we may get an
381 * exception between the new %fs descriptor being loaded and
382 * %fs being effectively cleared at __switch_to().
Jeremy Fitzhardinge8b84ad92007-07-17 18:37:06 -0700383 */
Eduardo Habkost8a954082008-07-08 15:07:10 -0700384 if (paravirt_get_lazy_mode() == PARAVIRT_LAZY_CPU) {
385#ifdef CONFIG_X86_32
Jeremy Fitzhardinge8b84ad92007-07-17 18:37:06 -0700386 loadsegment(gs, 0);
Eduardo Habkost8a954082008-07-08 15:07:10 -0700387#else
388 loadsegment(fs, 0);
389#endif
390 }
391
392 xen_mc_batch();
393
394 load_TLS_descriptor(t, cpu, 0);
395 load_TLS_descriptor(t, cpu, 1);
396 load_TLS_descriptor(t, cpu, 2);
397
398 xen_mc_issue(PARAVIRT_LAZY_CPU);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700399}
400
Eduardo Habkosta8fc1082008-07-08 15:07:05 -0700401#ifdef CONFIG_X86_64
402static void xen_load_gs_index(unsigned int idx)
403{
404 if (HYPERVISOR_set_segment_base(SEGBASE_GS_USER_SEL, idx))
405 BUG();
406}
407#endif
408
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700409static void xen_write_ldt_entry(struct desc_struct *dt, int entrynum,
Glauber de Oliveira Costa75b8bb32008-01-30 13:31:13 +0100410 const void *ptr)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700411{
412 unsigned long lp = (unsigned long)&dt[entrynum];
413 xmaddr_t mach_lp = virt_to_machine(lp);
Glauber de Oliveira Costa75b8bb32008-01-30 13:31:13 +0100414 u64 entry = *(u64 *)ptr;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700415
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700416 preempt_disable();
417
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700418 xen_mc_flush();
419 if (HYPERVISOR_update_descriptor(mach_lp.maddr, entry))
420 BUG();
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700421
422 preempt_enable();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700423}
424
Eduardo Habkoste176d362008-07-08 15:06:59 -0700425static int cvt_gate_to_trap(int vector, const gate_desc *val,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700426 struct trap_info *info)
427{
Eduardo Habkoste176d362008-07-08 15:06:59 -0700428 if (val->type != 0xf && val->type != 0xe)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700429 return 0;
430
431 info->vector = vector;
Eduardo Habkoste176d362008-07-08 15:06:59 -0700432 info->address = gate_offset(*val);
433 info->cs = gate_segment(*val);
434 info->flags = val->dpl;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700435 /* interrupt gates clear IF */
Eduardo Habkoste176d362008-07-08 15:06:59 -0700436 if (val->type == 0xe)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700437 info->flags |= 4;
438
439 return 1;
440}
441
442/* Locations of each CPU's IDT */
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100443static DEFINE_PER_CPU(struct desc_ptr, idt_desc);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700444
445/* Set an IDT entry. If the entry is part of the current IDT, then
446 also update Xen. */
Glauber de Oliveira Costa8d947342008-01-30 13:31:12 +0100447static void xen_write_idt_entry(gate_desc *dt, int entrynum, const gate_desc *g)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700448{
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700449 unsigned long p = (unsigned long)&dt[entrynum];
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700450 unsigned long start, end;
451
452 preempt_disable();
453
454 start = __get_cpu_var(idt_desc).address;
455 end = start + __get_cpu_var(idt_desc).size + 1;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700456
457 xen_mc_flush();
458
Glauber de Oliveira Costa8d947342008-01-30 13:31:12 +0100459 native_write_idt_entry(dt, entrynum, g);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700460
461 if (p >= start && (p + 8) <= end) {
462 struct trap_info info[2];
463
464 info[1].address = 0;
465
Eduardo Habkoste176d362008-07-08 15:06:59 -0700466 if (cvt_gate_to_trap(entrynum, g, &info[0]))
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700467 if (HYPERVISOR_set_trap_table(info))
468 BUG();
469 }
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700470
471 preempt_enable();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700472}
473
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100474static void xen_convert_trap_info(const struct desc_ptr *desc,
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700475 struct trap_info *traps)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700476{
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700477 unsigned in, out, count;
478
Eduardo Habkoste176d362008-07-08 15:06:59 -0700479 count = (desc->size+1) / sizeof(gate_desc);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700480 BUG_ON(count > 256);
481
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700482 for (in = out = 0; in < count; in++) {
Eduardo Habkoste176d362008-07-08 15:06:59 -0700483 gate_desc *entry = (gate_desc*)(desc->address) + in;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700484
Eduardo Habkoste176d362008-07-08 15:06:59 -0700485 if (cvt_gate_to_trap(in, entry, &traps[out]))
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700486 out++;
487 }
488 traps[out].address = 0;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700489}
490
491void xen_copy_trap_info(struct trap_info *traps)
492{
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100493 const struct desc_ptr *desc = &__get_cpu_var(idt_desc);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700494
495 xen_convert_trap_info(desc, traps);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700496}
497
498/* Load a new IDT into Xen. In principle this can be per-CPU, so we
499 hold a spinlock to protect the static traps[] array (static because
500 it avoids allocation, and saves stack space). */
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100501static void xen_load_idt(const struct desc_ptr *desc)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700502{
503 static DEFINE_SPINLOCK(lock);
504 static struct trap_info traps[257];
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700505
506 spin_lock(&lock);
507
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700508 __get_cpu_var(idt_desc) = *desc;
509
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700510 xen_convert_trap_info(desc, traps);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700511
512 xen_mc_flush();
513 if (HYPERVISOR_set_trap_table(traps))
514 BUG();
515
516 spin_unlock(&lock);
517}
518
519/* Write a GDT descriptor entry. Ignore LDT descriptors, since
520 they're handled differently. */
521static void xen_write_gdt_entry(struct desc_struct *dt, int entry,
Glauber de Oliveira Costa014b15b2008-01-30 13:31:13 +0100522 const void *desc, int type)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700523{
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700524 preempt_disable();
525
Glauber de Oliveira Costa014b15b2008-01-30 13:31:13 +0100526 switch (type) {
527 case DESC_LDT:
528 case DESC_TSS:
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700529 /* ignore */
530 break;
531
532 default: {
533 xmaddr_t maddr = virt_to_machine(&dt[entry]);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700534
535 xen_mc_flush();
Glauber de Oliveira Costa014b15b2008-01-30 13:31:13 +0100536 if (HYPERVISOR_update_descriptor(maddr.maddr, *(u64 *)desc))
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700537 BUG();
538 }
539
540 }
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700541
542 preempt_enable();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700543}
544
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100545static void xen_load_sp0(struct tss_struct *tss,
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700546 struct thread_struct *thread)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700547{
548 struct multicall_space mcs = xen_mc_entry(0);
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100549 MULTI_stack_switch(mcs.mc, __KERNEL_DS, thread->sp0);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700550 xen_mc_issue(PARAVIRT_LAZY_CPU);
551}
552
553static void xen_set_iopl_mask(unsigned mask)
554{
555 struct physdev_set_iopl set_iopl;
556
557 /* Force the change at ring 0. */
558 set_iopl.iopl = (mask == 0) ? 1 : (mask >> 12) & 3;
559 HYPERVISOR_physdev_op(PHYSDEVOP_set_iopl, &set_iopl);
560}
561
562static void xen_io_delay(void)
563{
564}
565
566#ifdef CONFIG_X86_LOCAL_APIC
Thomas Gleixner42e0a9aa2008-01-30 13:30:15 +0100567static u32 xen_apic_read(unsigned long reg)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700568{
569 return 0;
570}
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700571
Thomas Gleixner42e0a9aa2008-01-30 13:30:15 +0100572static void xen_apic_write(unsigned long reg, u32 val)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700573{
574 /* Warn to see if there's any stray references */
575 WARN_ON(1);
576}
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700577#endif
578
579static void xen_flush_tlb(void)
580{
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700581 struct mmuext_op *op;
Jeremy Fitzhardinge41e332b2008-04-02 10:54:09 -0700582 struct multicall_space mcs;
583
584 preempt_disable();
585
586 mcs = xen_mc_entry(sizeof(*op));
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700587
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700588 op = mcs.args;
589 op->cmd = MMUEXT_TLB_FLUSH_LOCAL;
590 MULTI_mmuext_op(mcs.mc, op, 1, NULL, DOMID_SELF);
591
592 xen_mc_issue(PARAVIRT_LAZY_MMU);
Jeremy Fitzhardinge41e332b2008-04-02 10:54:09 -0700593
594 preempt_enable();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700595}
596
597static void xen_flush_tlb_single(unsigned long addr)
598{
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700599 struct mmuext_op *op;
Jeremy Fitzhardinge41e332b2008-04-02 10:54:09 -0700600 struct multicall_space mcs;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700601
Jeremy Fitzhardinge41e332b2008-04-02 10:54:09 -0700602 preempt_disable();
603
604 mcs = xen_mc_entry(sizeof(*op));
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700605 op = mcs.args;
606 op->cmd = MMUEXT_INVLPG_LOCAL;
607 op->arg1.linear_addr = addr & PAGE_MASK;
608 MULTI_mmuext_op(mcs.mc, op, 1, NULL, DOMID_SELF);
609
610 xen_mc_issue(PARAVIRT_LAZY_MMU);
Jeremy Fitzhardinge41e332b2008-04-02 10:54:09 -0700611
612 preempt_enable();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700613}
614
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700615static void xen_flush_tlb_others(const cpumask_t *cpus, struct mm_struct *mm,
616 unsigned long va)
617{
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700618 struct {
619 struct mmuext_op op;
620 cpumask_t mask;
621 } *args;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700622 cpumask_t cpumask = *cpus;
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700623 struct multicall_space mcs;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700624
625 /*
626 * A couple of (to be removed) sanity checks:
627 *
628 * - current CPU must not be in mask
629 * - mask must exist :)
630 */
631 BUG_ON(cpus_empty(cpumask));
632 BUG_ON(cpu_isset(smp_processor_id(), cpumask));
633 BUG_ON(!mm);
634
635 /* If a CPU which we ran on has gone down, OK. */
636 cpus_and(cpumask, cpumask, cpu_online_map);
637 if (cpus_empty(cpumask))
638 return;
639
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700640 mcs = xen_mc_entry(sizeof(*args));
641 args = mcs.args;
642 args->mask = cpumask;
643 args->op.arg2.vcpumask = &args->mask;
644
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700645 if (va == TLB_FLUSH_ALL) {
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700646 args->op.cmd = MMUEXT_TLB_FLUSH_MULTI;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700647 } else {
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700648 args->op.cmd = MMUEXT_INVLPG_MULTI;
649 args->op.arg1.linear_addr = va;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700650 }
651
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700652 MULTI_mmuext_op(mcs.mc, &args->op, 1, NULL, DOMID_SELF);
653
654 xen_mc_issue(PARAVIRT_LAZY_MMU);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700655}
656
Jeremy Fitzhardinge7b1333a2008-05-26 23:31:01 +0100657static void xen_clts(void)
658{
659 struct multicall_space mcs;
660
661 mcs = xen_mc_entry(0);
662
663 MULTI_fpu_taskswitch(mcs.mc, 0);
664
665 xen_mc_issue(PARAVIRT_LAZY_CPU);
666}
667
668static void xen_write_cr0(unsigned long cr0)
669{
670 struct multicall_space mcs;
671
672 /* Only pay attention to cr0.TS; everything else is
673 ignored. */
674 mcs = xen_mc_entry(0);
675
676 MULTI_fpu_taskswitch(mcs.mc, (cr0 & X86_CR0_TS) != 0);
677
678 xen_mc_issue(PARAVIRT_LAZY_CPU);
679}
680
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700681static void xen_write_cr2(unsigned long cr2)
682{
683 x86_read_percpu(xen_vcpu)->arch.cr2 = cr2;
684}
685
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700686static unsigned long xen_read_cr2(void)
687{
688 return x86_read_percpu(xen_vcpu)->arch.cr2;
689}
690
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700691static unsigned long xen_read_cr2_direct(void)
692{
693 return x86_read_percpu(xen_vcpu_info.arch.cr2);
694}
695
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700696static void xen_write_cr4(unsigned long cr4)
697{
Jeremy Fitzhardinge2956a352008-05-26 23:31:04 +0100698 cr4 &= ~X86_CR4_PGE;
699 cr4 &= ~X86_CR4_PSE;
700
701 native_write_cr4(cr4);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700702}
703
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700704static unsigned long xen_read_cr3(void)
705{
706 return x86_read_percpu(xen_cr3);
707}
708
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -0700709static void set_current_cr3(void *v)
710{
711 x86_write_percpu(xen_current_cr3, (unsigned long)v);
712}
713
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700714static void xen_write_cr3(unsigned long cr3)
715{
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -0700716 struct mmuext_op *op;
717 struct multicall_space mcs;
718 unsigned long mfn = pfn_to_mfn(PFN_DOWN(cr3));
719
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700720 BUG_ON(preemptible());
721
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -0700722 mcs = xen_mc_entry(sizeof(*op)); /* disables interrupts */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700723
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -0700724 /* Update while interrupts are disabled, so its atomic with
725 respect to ipis */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700726 x86_write_percpu(xen_cr3, cr3);
727
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -0700728 op = mcs.args;
729 op->cmd = MMUEXT_NEW_BASEPTR;
730 op->arg1.mfn = mfn;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700731
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -0700732 MULTI_mmuext_op(mcs.mc, op, 1, NULL, DOMID_SELF);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700733
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -0700734 /* Update xen_update_cr3 once the batch has actually
735 been submitted. */
736 xen_mc_callback(set_current_cr3, (void *)cr3);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700737
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -0700738 xen_mc_issue(PARAVIRT_LAZY_CPU); /* interrupts restored */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700739}
740
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700741/* Early in boot, while setting up the initial pagetable, assume
742 everything is pinned. */
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700743static __init void xen_alloc_pte_init(struct mm_struct *mm, u32 pfn)
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700744{
Jeremy Fitzhardingeaf7ae3b2008-04-02 10:54:12 -0700745#ifdef CONFIG_FLATMEM
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700746 BUG_ON(mem_map); /* should only be used early */
Jeremy Fitzhardingeaf7ae3b2008-04-02 10:54:12 -0700747#endif
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700748 make_lowmem_page_readonly(__va(PFN_PHYS(pfn)));
749}
750
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700751/* Early release_pte assumes that all pts are pinned, since there's
Jeremy Fitzhardinge1c70e9b2008-01-30 13:33:39 +0100752 only init_mm and anything attached to that is pinned. */
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700753static void xen_release_pte_init(u32 pfn)
Jeremy Fitzhardinge1c70e9b2008-01-30 13:33:39 +0100754{
755 make_lowmem_page_readwrite(__va(PFN_PHYS(pfn)));
756}
757
Mark McLoughlinf6433702008-04-02 15:36:36 +0100758static void pin_pagetable_pfn(unsigned cmd, unsigned long pfn)
Jeremy Fitzhardinge74260712007-10-16 11:51:30 -0700759{
760 struct mmuext_op op;
Mark McLoughlinf6433702008-04-02 15:36:36 +0100761 op.cmd = cmd;
Jeremy Fitzhardinge74260712007-10-16 11:51:30 -0700762 op.arg1.mfn = pfn_to_mfn(pfn);
763 if (HYPERVISOR_mmuext_op(&op, 1, NULL, DOMID_SELF))
764 BUG();
765}
766
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700767/* This needs to make sure the new pte page is pinned iff its being
768 attached to a pinned pagetable. */
Jeremy Fitzhardinge1c70e9b2008-01-30 13:33:39 +0100769static void xen_alloc_ptpage(struct mm_struct *mm, u32 pfn, unsigned level)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700770{
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700771 struct page *page = pfn_to_page(pfn);
772
773 if (PagePinned(virt_to_page(mm->pgd))) {
774 SetPagePinned(page);
775
Jeremy Fitzhardinge74260712007-10-16 11:51:30 -0700776 if (!PageHighMem(page)) {
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700777 make_lowmem_page_readonly(__va(PFN_PHYS(pfn)));
Mark McLoughlinf6433702008-04-02 15:36:36 +0100778 if (level == PT_PTE)
779 pin_pagetable_pfn(MMUEXT_PIN_L1_TABLE, pfn);
Jeremy Fitzhardinge74260712007-10-16 11:51:30 -0700780 } else
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700781 /* make sure there are no stray mappings of
782 this page */
783 kmap_flush_unused();
784 }
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700785}
786
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700787static void xen_alloc_pte(struct mm_struct *mm, u32 pfn)
Jeremy Fitzhardinge1c70e9b2008-01-30 13:33:39 +0100788{
Mark McLoughlinf6433702008-04-02 15:36:36 +0100789 xen_alloc_ptpage(mm, pfn, PT_PTE);
Jeremy Fitzhardinge1c70e9b2008-01-30 13:33:39 +0100790}
791
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700792static void xen_alloc_pmd(struct mm_struct *mm, u32 pfn)
Jeremy Fitzhardinge1c70e9b2008-01-30 13:33:39 +0100793{
Mark McLoughlinf6433702008-04-02 15:36:36 +0100794 xen_alloc_ptpage(mm, pfn, PT_PMD);
Jeremy Fitzhardinge1c70e9b2008-01-30 13:33:39 +0100795}
796
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700797/* This should never happen until we're OK to use struct page */
Mark McLoughlinf6433702008-04-02 15:36:36 +0100798static void xen_release_ptpage(u32 pfn, unsigned level)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700799{
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700800 struct page *page = pfn_to_page(pfn);
801
802 if (PagePinned(page)) {
Jeremy Fitzhardinge74260712007-10-16 11:51:30 -0700803 if (!PageHighMem(page)) {
Mark McLoughlina684d692008-04-02 15:36:37 +0100804 if (level == PT_PTE)
805 pin_pagetable_pfn(MMUEXT_UNPIN_TABLE, pfn);
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700806 make_lowmem_page_readwrite(__va(PFN_PHYS(pfn)));
Jeremy Fitzhardinge74260712007-10-16 11:51:30 -0700807 }
Mark McLoughlinc946c7d2008-04-02 15:36:38 +0100808 ClearPagePinned(page);
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700809 }
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700810}
811
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700812static void xen_release_pte(u32 pfn)
Mark McLoughlinf6433702008-04-02 15:36:36 +0100813{
814 xen_release_ptpage(pfn, PT_PTE);
815}
816
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700817static void xen_release_pmd(u32 pfn)
Mark McLoughlinf6433702008-04-02 15:36:36 +0100818{
819 xen_release_ptpage(pfn, PT_PMD);
820}
821
Jeremy Fitzhardingef6e58732008-07-08 15:06:38 -0700822#if PAGETABLE_LEVELS == 4
823static void xen_alloc_pud(struct mm_struct *mm, u32 pfn)
824{
825 xen_alloc_ptpage(mm, pfn, PT_PUD);
826}
827
828static void xen_release_pud(u32 pfn)
829{
830 xen_release_ptpage(pfn, PT_PUD);
831}
832#endif
833
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700834#ifdef CONFIG_HIGHPTE
835static void *xen_kmap_atomic_pte(struct page *page, enum km_type type)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700836{
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700837 pgprot_t prot = PAGE_KERNEL;
838
839 if (PagePinned(page))
840 prot = PAGE_KERNEL_RO;
841
842 if (0 && PageHighMem(page))
843 printk("mapping highpte %lx type %d prot %s\n",
844 page_to_pfn(page), type,
845 (unsigned long)pgprot_val(prot) & _PAGE_RW ? "WRITE" : "READ");
846
847 return kmap_atomic_prot(page, type, prot);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700848}
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700849#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700850
Jeremy Fitzhardinge9a4029f2007-07-17 18:37:05 -0700851static __init pte_t mask_rw_pte(pte_t *ptep, pte_t pte)
852{
853 /* If there's an existing pte, then don't allow _PAGE_RW to be set */
854 if (pte_val_ma(*ptep) & _PAGE_PRESENT)
855 pte = __pte_ma(((pte_val_ma(*ptep) & _PAGE_RW) | ~_PAGE_RW) &
856 pte_val_ma(pte));
857
858 return pte;
859}
860
861/* Init-time set_pte while constructing initial pagetables, which
862 doesn't allow RO pagetable pages to be remapped RW */
863static __init void xen_set_pte_init(pte_t *ptep, pte_t pte)
864{
865 pte = mask_rw_pte(ptep, pte);
866
867 xen_set_pte(ptep, pte);
868}
869
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700870static __init void xen_pagetable_setup_start(pgd_t *base)
871{
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700872}
873
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +0100874void xen_setup_shared_info(void)
Jeremy Fitzhardinge2e8fe712008-03-17 16:36:53 -0700875{
876 if (!xen_feature(XENFEAT_auto_translated_physmap)) {
Jeremy Fitzhardinge15664f92008-07-08 15:06:47 -0700877 set_fixmap(FIX_PARAVIRT_BOOTMAP,
878 xen_start_info->shared_info);
Jeremy Fitzhardinge2e8fe712008-03-17 16:36:53 -0700879
Jeremy Fitzhardinge15664f92008-07-08 15:06:47 -0700880 HYPERVISOR_shared_info =
881 (struct shared_info *)fix_to_virt(FIX_PARAVIRT_BOOTMAP);
Jeremy Fitzhardinge2e8fe712008-03-17 16:36:53 -0700882 } else
883 HYPERVISOR_shared_info =
884 (struct shared_info *)__va(xen_start_info->shared_info);
885
886#ifndef CONFIG_SMP
887 /* In UP this is as good a place as any to set up shared info */
888 xen_setup_vcpu_info_placement();
889#endif
Jeremy Fitzhardinged5edbc1f2008-05-26 23:31:22 +0100890
891 xen_setup_mfn_list_list();
Jeremy Fitzhardinge2e8fe712008-03-17 16:36:53 -0700892}
893
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700894static __init void xen_pagetable_setup_done(pgd_t *base)
895{
Jeremy Fitzhardinge8745f8b2008-07-08 15:06:57 -0700896 xen_setup_shared_info();
897}
898
899static __init void xen_post_allocator_init(void)
900{
901 pv_mmu_ops.set_pte = xen_set_pte;
902 pv_mmu_ops.set_pmd = xen_set_pmd;
903 pv_mmu_ops.set_pud = xen_set_pud;
904#if PAGETABLE_LEVELS == 4
905 pv_mmu_ops.set_pgd = xen_set_pgd;
906#endif
907
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700908 /* This will work as long as patching hasn't happened yet
909 (which it hasn't) */
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700910 pv_mmu_ops.alloc_pte = xen_alloc_pte;
911 pv_mmu_ops.alloc_pmd = xen_alloc_pmd;
912 pv_mmu_ops.release_pte = xen_release_pte;
913 pv_mmu_ops.release_pmd = xen_release_pmd;
Jeremy Fitzhardingef6e58732008-07-08 15:06:38 -0700914#if PAGETABLE_LEVELS == 4
915 pv_mmu_ops.alloc_pud = xen_alloc_pud;
916 pv_mmu_ops.release_pud = xen_release_pud;
917#endif
918
Jeremy Fitzhardingee2426cf2008-05-31 01:24:27 +0100919 xen_mark_init_mm_pinned();
920}
921
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700922/* This is called once we have the cpu_possible_map */
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +0100923void xen_setup_vcpu_info_placement(void)
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700924{
925 int cpu;
926
927 for_each_possible_cpu(cpu)
928 xen_vcpu_setup(cpu);
929
930 /* xen_vcpu_setup managed to place the vcpu_info within the
931 percpu area for all cpus, so make use of it */
Jeremy Fitzhardinge5b09b282008-07-08 15:06:42 -0700932#ifdef CONFIG_X86_32
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700933 if (have_vcpu_info_placement) {
934 printk(KERN_INFO "Xen: using vcpu_info placement\n");
935
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700936 pv_irq_ops.save_fl = xen_save_fl_direct;
937 pv_irq_ops.restore_fl = xen_restore_fl_direct;
938 pv_irq_ops.irq_disable = xen_irq_disable_direct;
939 pv_irq_ops.irq_enable = xen_irq_enable_direct;
940 pv_mmu_ops.read_cr2 = xen_read_cr2_direct;
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700941 }
Jeremy Fitzhardinge5b09b282008-07-08 15:06:42 -0700942#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700943}
944
Andi Kleenab144f52007-08-10 22:31:03 +0200945static unsigned xen_patch(u8 type, u16 clobbers, void *insnbuf,
946 unsigned long addr, unsigned len)
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700947{
948 char *start, *end, *reloc;
949 unsigned ret;
950
951 start = end = reloc = NULL;
952
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700953#define SITE(op, x) \
954 case PARAVIRT_PATCH(op.x): \
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700955 if (have_vcpu_info_placement) { \
956 start = (char *)xen_##x##_direct; \
957 end = xen_##x##_direct_end; \
958 reloc = xen_##x##_direct_reloc; \
959 } \
960 goto patch_site
961
962 switch (type) {
Jeremy Fitzhardinge5b09b282008-07-08 15:06:42 -0700963#ifdef CONFIG_X86_32
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700964 SITE(pv_irq_ops, irq_enable);
965 SITE(pv_irq_ops, irq_disable);
966 SITE(pv_irq_ops, save_fl);
967 SITE(pv_irq_ops, restore_fl);
Jeremy Fitzhardinge5b09b282008-07-08 15:06:42 -0700968#endif /* CONFIG_X86_32 */
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700969#undef SITE
970
971 patch_site:
972 if (start == NULL || (end-start) > len)
973 goto default_patch;
974
Andi Kleenab144f52007-08-10 22:31:03 +0200975 ret = paravirt_patch_insns(insnbuf, len, start, end);
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700976
977 /* Note: because reloc is assigned from something that
978 appears to be an array, gcc assumes it's non-null,
979 but doesn't know its relationship with start and
980 end. */
981 if (reloc > start && reloc < end) {
982 int reloc_off = reloc - start;
Andi Kleenab144f52007-08-10 22:31:03 +0200983 long *relocp = (long *)(insnbuf + reloc_off);
984 long delta = start - (char *)addr;
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700985
986 *relocp += delta;
987 }
988 break;
989
990 default_patch:
991 default:
Andi Kleenab144f52007-08-10 22:31:03 +0200992 ret = paravirt_patch_default(type, clobbers, insnbuf,
993 addr, len);
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700994 break;
995 }
996
997 return ret;
998}
999
Jeremy Fitzhardingeaeaaa592008-06-17 11:42:01 -07001000static void xen_set_fixmap(unsigned idx, unsigned long phys, pgprot_t prot)
1001{
1002 pte_t pte;
1003
1004 phys >>= PAGE_SHIFT;
1005
1006 switch (idx) {
1007 case FIX_BTMAP_END ... FIX_BTMAP_BEGIN:
1008#ifdef CONFIG_X86_F00F_BUG
1009 case FIX_F00F_IDT:
1010#endif
Jeremy Fitzhardinge15664f92008-07-08 15:06:47 -07001011#ifdef CONFIG_X86_32
Jeremy Fitzhardingeaeaaa592008-06-17 11:42:01 -07001012 case FIX_WP_TEST:
1013 case FIX_VDSO:
Jeremy Fitzhardinge15664f92008-07-08 15:06:47 -07001014 case FIX_KMAP_BEGIN ... FIX_KMAP_END:
1015#else
1016 case VSYSCALL_LAST_PAGE ... VSYSCALL_FIRST_PAGE:
1017#endif
Jeremy Fitzhardingeaeaaa592008-06-17 11:42:01 -07001018#ifdef CONFIG_X86_LOCAL_APIC
1019 case FIX_APIC_BASE: /* maps dummy local APIC */
1020#endif
1021 pte = pfn_pte(phys, prot);
1022 break;
1023
1024 default:
1025 pte = mfn_pte(phys, prot);
1026 break;
1027 }
1028
1029 __native_set_fixmap(idx, pte);
1030}
1031
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001032static const struct pv_info xen_info __initdata = {
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001033 .paravirt_enabled = 1,
1034 .shared_kernel_pmd = 0,
1035
1036 .name = "Xen",
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001037};
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001038
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001039static const struct pv_init_ops xen_init_ops __initdata = {
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -07001040 .patch = xen_patch,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001041
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001042 .banner = xen_banner,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001043 .memory_setup = xen_memory_setup,
1044 .arch_setup = xen_arch_setup,
Jeremy Fitzhardingee2426cf2008-05-31 01:24:27 +01001045 .post_allocator_init = xen_post_allocator_init,
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001046};
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001047
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001048static const struct pv_time_ops xen_time_ops __initdata = {
Jeremy Fitzhardinge15c84732007-07-17 18:37:05 -07001049 .time_init = xen_time_init,
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001050
Jeremy Fitzhardinge15c84732007-07-17 18:37:05 -07001051 .set_wallclock = xen_set_wallclock,
1052 .get_wallclock = xen_get_wallclock,
Alok Katariae93ef942008-07-01 11:43:36 -07001053 .get_tsc_khz = xen_tsc_khz,
Jeremy Fitzhardingeab550282007-07-17 18:37:05 -07001054 .sched_clock = xen_sched_clock,
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001055};
Jeremy Fitzhardinge15c84732007-07-17 18:37:05 -07001056
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001057static const struct pv_cpu_ops xen_cpu_ops __initdata = {
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001058 .cpuid = xen_cpuid,
1059
1060 .set_debugreg = xen_set_debugreg,
1061 .get_debugreg = xen_get_debugreg,
1062
Jeremy Fitzhardinge7b1333a2008-05-26 23:31:01 +01001063 .clts = xen_clts,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001064
1065 .read_cr0 = native_read_cr0,
Jeremy Fitzhardinge7b1333a2008-05-26 23:31:01 +01001066 .write_cr0 = xen_write_cr0,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001067
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001068 .read_cr4 = native_read_cr4,
1069 .read_cr4_safe = native_read_cr4_safe,
1070 .write_cr4 = xen_write_cr4,
1071
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001072 .wbinvd = native_wbinvd,
1073
1074 .read_msr = native_read_msr_safe,
1075 .write_msr = native_write_msr_safe,
1076 .read_tsc = native_read_tsc,
1077 .read_pmc = native_read_pmc,
1078
Jeremy Fitzhardinge81e103f2008-04-17 17:40:51 +02001079 .iret = xen_iret,
Jeremy Fitzhardinged75cd222008-06-25 00:19:26 -04001080 .irq_enable_sysexit = xen_sysexit,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001081
1082 .load_tr_desc = paravirt_nop,
1083 .set_ldt = xen_set_ldt,
1084 .load_gdt = xen_load_gdt,
1085 .load_idt = xen_load_idt,
1086 .load_tls = xen_load_tls,
Eduardo Habkosta8fc1082008-07-08 15:07:05 -07001087#ifdef CONFIG_X86_64
1088 .load_gs_index = xen_load_gs_index,
1089#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001090
1091 .store_gdt = native_store_gdt,
1092 .store_idt = native_store_idt,
1093 .store_tr = xen_store_tr,
1094
1095 .write_ldt_entry = xen_write_ldt_entry,
1096 .write_gdt_entry = xen_write_gdt_entry,
1097 .write_idt_entry = xen_write_idt_entry,
H. Peter Anvinfaca6222008-01-30 13:31:02 +01001098 .load_sp0 = xen_load_sp0,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001099
1100 .set_iopl_mask = xen_set_iopl_mask,
1101 .io_delay = xen_io_delay,
1102
Jeremy Fitzhardinge952d1d72008-07-08 15:07:01 -07001103 /* Xen takes care of %gs when switching to usermode for us */
1104 .swapgs = paravirt_nop,
1105
Jeremy Fitzhardinge8965c1c02007-10-16 11:51:29 -07001106 .lazy_mode = {
1107 .enter = paravirt_enter_lazy_cpu,
1108 .leave = xen_leave_lazy,
1109 },
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001110};
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001111
Jeremy Fitzhardinge0725cbb2008-07-08 15:07:03 -07001112static void __init __xen_init_IRQ(void)
1113{
1114#ifdef CONFIG_X86_64
1115 int i;
1116
1117 /* Create identity vector->irq map */
1118 for(i = 0; i < NR_VECTORS; i++) {
1119 int cpu;
1120
1121 for_each_possible_cpu(cpu)
1122 per_cpu(vector_irq, cpu)[i] = i;
1123 }
1124#endif /* CONFIG_X86_64 */
1125
1126 xen_init_IRQ();
1127}
1128
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001129static const struct pv_irq_ops xen_irq_ops __initdata = {
Jeremy Fitzhardinge0725cbb2008-07-08 15:07:03 -07001130 .init_IRQ = __xen_init_IRQ,
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001131 .save_fl = xen_save_fl,
1132 .restore_fl = xen_restore_fl,
1133 .irq_disable = xen_irq_disable,
1134 .irq_enable = xen_irq_enable,
1135 .safe_halt = xen_safe_halt,
1136 .halt = xen_halt,
Jeremy Fitzhardingefab58422008-06-25 00:19:31 -04001137#ifdef CONFIG_X86_64
Jeremy Fitzhardinge997409d2008-07-08 15:07:00 -07001138 .adjust_exception_frame = xen_adjust_exception_frame,
Jeremy Fitzhardingefab58422008-06-25 00:19:31 -04001139#endif
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001140};
1141
1142static const struct pv_apic_ops xen_apic_ops __initdata = {
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001143#ifdef CONFIG_X86_LOCAL_APIC
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -07001144 .apic_write = xen_apic_write,
1145 .apic_write_atomic = xen_apic_write,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001146 .apic_read = xen_apic_read,
1147 .setup_boot_clock = paravirt_nop,
1148 .setup_secondary_clock = paravirt_nop,
1149 .startup_ipi_hook = paravirt_nop,
1150#endif
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001151};
1152
1153static const struct pv_mmu_ops xen_mmu_ops __initdata = {
1154 .pagetable_setup_start = xen_pagetable_setup_start,
1155 .pagetable_setup_done = xen_pagetable_setup_done,
1156
1157 .read_cr2 = xen_read_cr2,
1158 .write_cr2 = xen_write_cr2,
1159
1160 .read_cr3 = xen_read_cr3,
1161 .write_cr3 = xen_write_cr3,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001162
1163 .flush_tlb_user = xen_flush_tlb,
1164 .flush_tlb_kernel = xen_flush_tlb,
1165 .flush_tlb_single = xen_flush_tlb_single,
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -07001166 .flush_tlb_others = xen_flush_tlb_others,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001167
1168 .pte_update = paravirt_nop,
1169 .pte_update_defer = paravirt_nop,
1170
Jeremy Fitzhardingeeba00452008-06-25 00:19:12 -04001171 .pgd_alloc = __paravirt_pgd_alloc,
1172 .pgd_free = paravirt_nop,
1173
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -07001174 .alloc_pte = xen_alloc_pte_init,
1175 .release_pte = xen_release_pte_init,
1176 .alloc_pmd = xen_alloc_pte_init,
1177 .alloc_pmd_clone = paravirt_nop,
1178 .release_pmd = xen_release_pte_init,
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -07001179
1180#ifdef CONFIG_HIGHPTE
1181 .kmap_atomic_pte = xen_kmap_atomic_pte,
1182#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001183
Jeremy Fitzhardinge22911b32008-07-08 15:06:51 -07001184#ifdef CONFIG_X86_64
1185 .set_pte = xen_set_pte,
1186#else
Jeremy Fitzhardinge851fa3c2008-07-08 15:06:33 -07001187 .set_pte = xen_set_pte_init,
Jeremy Fitzhardinge22911b32008-07-08 15:06:51 -07001188#endif
Jeremy Fitzhardinge3b827c12007-07-17 18:37:04 -07001189 .set_pte_at = xen_set_pte_at,
Jeremy Fitzhardingee2426cf2008-05-31 01:24:27 +01001190 .set_pmd = xen_set_pmd_hyper,
Jeremy Fitzhardinge3b827c12007-07-17 18:37:04 -07001191
Jeremy Fitzhardinge08b882c2008-06-16 04:30:01 -07001192 .ptep_modify_prot_start = __ptep_modify_prot_start,
1193 .ptep_modify_prot_commit = __ptep_modify_prot_commit,
1194
Jeremy Fitzhardinge3b827c12007-07-17 18:37:04 -07001195 .pte_val = xen_pte_val,
Jeremy Fitzhardingea15af1c2008-05-26 23:31:06 +01001196 .pte_flags = native_pte_val,
Jeremy Fitzhardinge3b827c12007-07-17 18:37:04 -07001197 .pgd_val = xen_pgd_val,
1198
1199 .make_pte = xen_make_pte,
1200 .make_pgd = xen_make_pgd,
1201
Jeremy Fitzhardingef6e58732008-07-08 15:06:38 -07001202#ifdef CONFIG_X86_PAE
Jeremy Fitzhardinge3b827c12007-07-17 18:37:04 -07001203 .set_pte_atomic = xen_set_pte_atomic,
1204 .set_pte_present = xen_set_pte_at,
Jeremy Fitzhardinge3b827c12007-07-17 18:37:04 -07001205 .pte_clear = xen_pte_clear,
1206 .pmd_clear = xen_pmd_clear,
Jeremy Fitzhardingef6e58732008-07-08 15:06:38 -07001207#endif /* CONFIG_X86_PAE */
1208 .set_pud = xen_set_pud_hyper,
Jeremy Fitzhardinge3b827c12007-07-17 18:37:04 -07001209
1210 .make_pmd = xen_make_pmd,
1211 .pmd_val = xen_pmd_val,
Jeremy Fitzhardinge3b827c12007-07-17 18:37:04 -07001212
Jeremy Fitzhardingef6e58732008-07-08 15:06:38 -07001213#if PAGETABLE_LEVELS == 4
1214 .pud_val = xen_pud_val,
1215 .make_pud = xen_make_pud,
1216 .set_pgd = xen_set_pgd_hyper,
1217
1218 .alloc_pud = xen_alloc_pte_init,
1219 .release_pud = xen_release_pte_init,
1220#endif /* PAGETABLE_LEVELS == 4 */
1221
Jeremy Fitzhardinge3b827c12007-07-17 18:37:04 -07001222 .activate_mm = xen_activate_mm,
1223 .dup_mmap = xen_dup_mmap,
1224 .exit_mmap = xen_exit_mmap,
1225
Jeremy Fitzhardinge8965c1c02007-10-16 11:51:29 -07001226 .lazy_mode = {
1227 .enter = paravirt_enter_lazy_mmu,
1228 .leave = xen_leave_lazy,
1229 },
Jeremy Fitzhardingeaeaaa592008-06-17 11:42:01 -07001230
1231 .set_fixmap = xen_set_fixmap,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001232};
1233
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -07001234static void xen_reboot(int reason)
1235{
Jeremy Fitzhardinge349c709f2008-05-26 23:31:02 +01001236 struct sched_shutdown r = { .reason = reason };
1237
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -07001238#ifdef CONFIG_SMP
1239 smp_send_stop();
1240#endif
1241
Jeremy Fitzhardinge349c709f2008-05-26 23:31:02 +01001242 if (HYPERVISOR_sched_op(SCHEDOP_shutdown, &r))
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -07001243 BUG();
1244}
1245
1246static void xen_restart(char *msg)
1247{
1248 xen_reboot(SHUTDOWN_reboot);
1249}
1250
1251static void xen_emergency_restart(void)
1252{
1253 xen_reboot(SHUTDOWN_reboot);
1254}
1255
1256static void xen_machine_halt(void)
1257{
1258 xen_reboot(SHUTDOWN_poweroff);
1259}
1260
1261static void xen_crash_shutdown(struct pt_regs *regs)
1262{
1263 xen_reboot(SHUTDOWN_crash);
1264}
1265
1266static const struct machine_ops __initdata xen_machine_ops = {
1267 .restart = xen_restart,
1268 .halt = xen_machine_halt,
1269 .power_off = xen_machine_halt,
1270 .shutdown = xen_machine_halt,
1271 .crash_shutdown = xen_crash_shutdown,
1272 .emergency_restart = xen_emergency_restart,
1273};
1274
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -07001275
Jeremy Fitzhardingefb1d8402007-10-16 11:51:31 -07001276static void __init xen_reserve_top(void)
1277{
Jeremy Fitzhardingef5d36de2008-07-08 15:06:39 -07001278#ifdef CONFIG_X86_32
Jeremy Fitzhardingefb1d8402007-10-16 11:51:31 -07001279 unsigned long top = HYPERVISOR_VIRT_START;
1280 struct xen_platform_parameters pp;
1281
1282 if (HYPERVISOR_xen_version(XENVER_platform_parameters, &pp) == 0)
1283 top = pp.virt_start;
1284
1285 reserve_top_address(-top + 2 * PAGE_SIZE);
Jeremy Fitzhardingef5d36de2008-07-08 15:06:39 -07001286#endif /* CONFIG_X86_32 */
Jeremy Fitzhardingefb1d8402007-10-16 11:51:31 -07001287}
1288
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001289/*
1290 * Like __va(), but returns address in the kernel mapping (which is
1291 * all we have until the physical memory mapping has been set up.
1292 */
1293static void *__ka(phys_addr_t paddr)
1294{
Jeremy Fitzhardinge39dbc5b2008-07-08 15:06:53 -07001295#ifdef CONFIG_X86_64
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001296 return (void *)(paddr + __START_KERNEL_map);
Jeremy Fitzhardinge39dbc5b2008-07-08 15:06:53 -07001297#else
1298 return __va(paddr);
1299#endif
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001300}
1301
1302/* Convert a machine address to physical address */
1303static unsigned long m2p(phys_addr_t maddr)
1304{
1305 phys_addr_t paddr;
1306
1307 maddr &= PTE_MASK;
1308 paddr = mfn_to_pfn(maddr >> PAGE_SHIFT) << PAGE_SHIFT;
1309
1310 return paddr;
1311}
1312
1313/* Convert a machine address to kernel virtual */
1314static void *m2v(phys_addr_t maddr)
1315{
1316 return __ka(m2p(maddr));
1317}
1318
Jeremy Fitzhardinge39dbc5b2008-07-08 15:06:53 -07001319#ifdef CONFIG_X86_64
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001320static void walk(pgd_t *pgd, unsigned long addr)
1321{
1322 unsigned l4idx = pgd_index(addr);
1323 unsigned l3idx = pud_index(addr);
1324 unsigned l2idx = pmd_index(addr);
1325 unsigned l1idx = pte_index(addr);
1326 pgd_t l4;
1327 pud_t l3;
1328 pmd_t l2;
1329 pte_t l1;
1330
1331 xen_raw_printk("walk %p, %lx -> %d %d %d %d\n",
1332 pgd, addr, l4idx, l3idx, l2idx, l1idx);
1333
1334 l4 = pgd[l4idx];
1335 xen_raw_printk(" l4: %016lx\n", l4.pgd);
1336 xen_raw_printk(" %016lx\n", pgd_val(l4));
1337
1338 l3 = ((pud_t *)(m2v(l4.pgd)))[l3idx];
1339 xen_raw_printk(" l3: %016lx\n", l3.pud);
1340 xen_raw_printk(" %016lx\n", pud_val(l3));
1341
1342 l2 = ((pmd_t *)(m2v(l3.pud)))[l2idx];
1343 xen_raw_printk(" l2: %016lx\n", l2.pmd);
1344 xen_raw_printk(" %016lx\n", pmd_val(l2));
1345
1346 l1 = ((pte_t *)(m2v(l2.pmd)))[l1idx];
1347 xen_raw_printk(" l1: %016lx\n", l1.pte);
1348 xen_raw_printk(" %016lx\n", pte_val(l1));
1349}
Jeremy Fitzhardinge39dbc5b2008-07-08 15:06:53 -07001350#endif
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001351
1352static void set_page_prot(void *addr, pgprot_t prot)
1353{
1354 unsigned long pfn = __pa(addr) >> PAGE_SHIFT;
1355 pte_t pte = pfn_pte(pfn, prot);
1356
Jeremy Fitzhardinge39dbc5b2008-07-08 15:06:53 -07001357 xen_raw_printk("addr=%p pfn=%lx mfn=%lx prot=%016llx pte=%016llx\n",
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001358 addr, pfn, get_phys_to_machine(pfn),
1359 pgprot_val(prot), pte.pte);
1360
1361 if (HYPERVISOR_update_va_mapping((unsigned long)addr, pte, 0))
1362 BUG();
1363}
1364
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001365/*
Jeremy Fitzhardinged114e1982008-07-08 15:06:52 -07001366 * Identity map, in addition to plain kernel map. This needs to be
1367 * large enough to allocate page table pages to allocate the rest.
1368 * Each page can map 2MB.
1369 */
1370static pte_t level1_ident_pgt[PTRS_PER_PTE * 4] __page_aligned_bss;
1371
Jeremy Fitzhardinge39dbc5b2008-07-08 15:06:53 -07001372static __init void xen_map_identity_early(pmd_t *pmd, unsigned long max_pfn)
Jeremy Fitzhardinged114e1982008-07-08 15:06:52 -07001373{
1374 unsigned pmdidx, pteidx;
1375 unsigned ident_pte;
1376 unsigned long pfn;
1377
1378 ident_pte = 0;
1379 pfn = 0;
1380 for(pmdidx = 0; pmdidx < PTRS_PER_PMD && pfn < max_pfn; pmdidx++) {
1381 pte_t *pte_page;
1382
Jeremy Fitzhardinged114e1982008-07-08 15:06:52 -07001383 /* Reuse or allocate a page of ptes */
Jeremy Fitzhardinge39dbc5b2008-07-08 15:06:53 -07001384 if (pmd_present(pmd[pmdidx]))
1385 pte_page = m2v(pmd[pmdidx].pmd);
Jeremy Fitzhardinged114e1982008-07-08 15:06:52 -07001386 else {
1387 /* Check for free pte pages */
1388 if (ident_pte == ARRAY_SIZE(level1_ident_pgt))
1389 break;
1390
1391 pte_page = &level1_ident_pgt[ident_pte];
1392 ident_pte += PTRS_PER_PTE;
1393
Jeremy Fitzhardinge39dbc5b2008-07-08 15:06:53 -07001394 pmd[pmdidx] = __pmd(__pa(pte_page) | _PAGE_TABLE);
Jeremy Fitzhardinged114e1982008-07-08 15:06:52 -07001395 }
1396
1397 /* Install mappings */
1398 for(pteidx = 0; pteidx < PTRS_PER_PTE; pteidx++, pfn++) {
1399 pte_t pte;
1400
1401 if (pfn > max_pfn_mapped)
1402 max_pfn_mapped = pfn;
1403
1404 if (!pte_none(pte_page[pteidx]))
1405 continue;
1406
1407 pte = pfn_pte(pfn, PAGE_KERNEL_EXEC);
1408 pte_page[pteidx] = pte;
1409 }
1410 }
1411
1412 for(pteidx = 0; pteidx < ident_pte; pteidx += PTRS_PER_PTE)
1413 set_page_prot(&level1_ident_pgt[pteidx], PAGE_KERNEL_RO);
Jeremy Fitzhardinge39dbc5b2008-07-08 15:06:53 -07001414
1415 set_page_prot(pmd, PAGE_KERNEL_RO);
1416}
1417
1418#ifdef CONFIG_X86_64
1419static void convert_pfn_mfn(void *v)
1420{
1421 pte_t *pte = v;
1422 int i;
1423
1424 /* All levels are converted the same way, so just treat them
1425 as ptes. */
1426 for(i = 0; i < PTRS_PER_PTE; i++)
1427 pte[i] = xen_make_pte(pte[i].pte);
Jeremy Fitzhardinged114e1982008-07-08 15:06:52 -07001428}
1429
1430/*
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001431 * Set up the inital kernel pagetable.
1432 *
1433 * We can construct this by grafting the Xen provided pagetable into
1434 * head_64.S's preconstructed pagetables. We copy the Xen L2's into
1435 * level2_ident_pgt, level2_kernel_pgt and level2_fixmap_pgt. This
1436 * means that only the kernel has a physical mapping to start with -
1437 * but that's enough to get __va working. We need to fill in the rest
1438 * of the physical mapping once some sort of allocator has been set
1439 * up.
1440 */
Jeremy Fitzhardinged114e1982008-07-08 15:06:52 -07001441static __init pgd_t *xen_setup_kernel_pagetable(pgd_t *pgd, unsigned long max_pfn)
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001442{
1443 pud_t *l3;
1444 pmd_t *l2;
1445
1446 /* Zap identity mapping */
1447 init_level4_pgt[0] = __pgd(0);
1448
1449 /* Pre-constructed entries are in pfn, so convert to mfn */
1450 convert_pfn_mfn(init_level4_pgt);
1451 convert_pfn_mfn(level3_ident_pgt);
1452 convert_pfn_mfn(level3_kernel_pgt);
1453
1454 l3 = m2v(pgd[pgd_index(__START_KERNEL_map)].pgd);
1455 l2 = m2v(l3[pud_index(__START_KERNEL_map)].pud);
1456
1457 memcpy(level2_ident_pgt, l2, sizeof(pmd_t) * PTRS_PER_PMD);
1458 memcpy(level2_kernel_pgt, l2, sizeof(pmd_t) * PTRS_PER_PMD);
1459
1460 l3 = m2v(pgd[pgd_index(__START_KERNEL_map + PMD_SIZE)].pgd);
1461 l2 = m2v(l3[pud_index(__START_KERNEL_map + PMD_SIZE)].pud);
1462 memcpy(level2_fixmap_pgt, l2, sizeof(pmd_t) * PTRS_PER_PMD);
1463
Jeremy Fitzhardinged114e1982008-07-08 15:06:52 -07001464 /* Set up identity map */
Jeremy Fitzhardinge39dbc5b2008-07-08 15:06:53 -07001465 xen_map_identity_early(level2_ident_pgt, max_pfn);
Jeremy Fitzhardinged114e1982008-07-08 15:06:52 -07001466
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001467 /* Make pagetable pieces RO */
1468 set_page_prot(init_level4_pgt, PAGE_KERNEL_RO);
1469 set_page_prot(level3_ident_pgt, PAGE_KERNEL_RO);
1470 set_page_prot(level3_kernel_pgt, PAGE_KERNEL_RO);
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001471 set_page_prot(level2_kernel_pgt, PAGE_KERNEL_RO);
1472 set_page_prot(level2_fixmap_pgt, PAGE_KERNEL_RO);
1473
1474 /* Pin down new L4 */
Jeremy Fitzhardinge39dbc5b2008-07-08 15:06:53 -07001475 pin_pagetable_pfn(MMUEXT_PIN_L4_TABLE,
1476 PFN_DOWN(__pa_symbol(init_level4_pgt)));
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001477
1478 /* Unpin Xen-provided one */
1479 pin_pagetable_pfn(MMUEXT_UNPIN_TABLE, PFN_DOWN(__pa(pgd)));
1480
1481 /* Switch over */
1482 pgd = init_level4_pgt;
1483 xen_write_cr3(__pa(pgd));
1484
Jeremy Fitzhardinged114e1982008-07-08 15:06:52 -07001485 reserve_early(__pa(xen_start_info->pt_base),
1486 __pa(xen_start_info->pt_base +
1487 xen_start_info->nr_pt_frames * PAGE_SIZE),
1488 "XEN PAGETABLES");
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001489
1490 return pgd;
1491}
Jeremy Fitzhardinge39dbc5b2008-07-08 15:06:53 -07001492#else /* !CONFIG_X86_64 */
1493static pmd_t level2_kernel_pgt[PTRS_PER_PMD] __page_aligned_bss;
1494
Jeremy Fitzhardinged114e1982008-07-08 15:06:52 -07001495static __init pgd_t *xen_setup_kernel_pagetable(pgd_t *pgd, unsigned long max_pfn)
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001496{
Jeremy Fitzhardinge39dbc5b2008-07-08 15:06:53 -07001497 pmd_t *kernel_pmd;
1498
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001499 init_pg_tables_start = __pa(pgd);
1500 init_pg_tables_end = __pa(pgd) + xen_start_info->nr_pt_frames*PAGE_SIZE;
1501 max_pfn_mapped = PFN_DOWN(init_pg_tables_end + 512*1024);
1502
Jeremy Fitzhardinge39dbc5b2008-07-08 15:06:53 -07001503 kernel_pmd = m2v(pgd[KERNEL_PGD_BOUNDARY].pgd);
1504 memcpy(level2_kernel_pgt, kernel_pmd, sizeof(pmd_t) * PTRS_PER_PMD);
Jeremy Fitzhardinged114e1982008-07-08 15:06:52 -07001505
Jeremy Fitzhardinge39dbc5b2008-07-08 15:06:53 -07001506 xen_map_identity_early(level2_kernel_pgt, max_pfn);
1507
1508 memcpy(swapper_pg_dir, pgd, sizeof(pgd_t) * PTRS_PER_PGD);
1509 set_pgd(&swapper_pg_dir[KERNEL_PGD_BOUNDARY],
1510 __pgd(__pa(level2_kernel_pgt) | _PAGE_PRESENT));
1511
1512 set_page_prot(level2_kernel_pgt, PAGE_KERNEL_RO);
1513 set_page_prot(swapper_pg_dir, PAGE_KERNEL_RO);
1514 set_page_prot(empty_zero_page, PAGE_KERNEL_RO);
1515
1516 pin_pagetable_pfn(MMUEXT_UNPIN_TABLE, PFN_DOWN(__pa(pgd)));
1517
1518 xen_write_cr3(__pa(swapper_pg_dir));
1519
1520 pin_pagetable_pfn(MMUEXT_PIN_L3_TABLE, PFN_DOWN(__pa(swapper_pg_dir)));
1521
1522 return swapper_pg_dir;
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001523}
1524#endif /* CONFIG_X86_64 */
1525
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001526/* First C function to be called on Xen boot */
1527asmlinkage void __init xen_start_kernel(void)
1528{
1529 pgd_t *pgd;
1530
1531 if (!xen_start_info)
1532 return;
1533
Jeremy Fitzhardinge7999f4b2007-12-10 13:00:41 -08001534 BUG_ON(memcmp(xen_start_info->magic, "xen-3", 5) != 0);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001535
Jeremy Fitzhardingee57778a2008-06-16 04:30:02 -07001536 xen_setup_features();
1537
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001538 /* Install Xen paravirt ops */
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001539 pv_info = xen_info;
1540 pv_init_ops = xen_init_ops;
1541 pv_time_ops = xen_time_ops;
1542 pv_cpu_ops = xen_cpu_ops;
1543 pv_irq_ops = xen_irq_ops;
1544 pv_apic_ops = xen_apic_ops;
1545 pv_mmu_ops = xen_mmu_ops;
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001546
Jeremy Fitzhardingee57778a2008-06-16 04:30:02 -07001547 if (xen_feature(XENFEAT_mmu_pt_update_preserve_ad)) {
1548 pv_mmu_ops.ptep_modify_prot_start = xen_ptep_modify_prot_start;
1549 pv_mmu_ops.ptep_modify_prot_commit = xen_ptep_modify_prot_commit;
1550 }
1551
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -07001552 machine_ops = xen_machine_ops;
1553
Jeremy Fitzhardingef5d36de2008-07-08 15:06:39 -07001554#ifdef CONFIG_X86_64
1555 /* Disable until direct per-cpu data access. */
1556 have_vcpu_info_placement = 0;
Jeremy Fitzhardinge5b09b282008-07-08 15:06:42 -07001557 x86_64_init_pda();
Jeremy Fitzhardingef5d36de2008-07-08 15:06:39 -07001558#endif
1559
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -07001560 xen_smp_init();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001561
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001562 /* Get mfn list */
1563 if (!xen_feature(XENFEAT_auto_translated_physmap))
Jeremy Fitzhardinged451bb72008-05-26 23:31:18 +01001564 xen_build_dynamic_phys_to_machine();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001565
1566 pgd = (pgd_t *)xen_start_info->pt_base;
1567
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001568 /* Prevent unwanted bits from being set in PTEs. */
1569 __supported_pte_mask &= ~_PAGE_GLOBAL;
1570 if (!is_initial_xendomain())
1571 __supported_pte_mask &= ~(_PAGE_PWT | _PAGE_PCD);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001572
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001573 /* Don't do the full vcpu_info placement stuff until we have a
1574 possible map and a non-dummy shared_info. */
1575 per_cpu(xen_vcpu, 0) = &HYPERVISOR_shared_info->vcpu_info[0];
1576
1577 xen_raw_console_write("mapping kernel into physical memory\n");
Jeremy Fitzhardinged114e1982008-07-08 15:06:52 -07001578 pgd = xen_setup_kernel_pagetable(pgd, xen_start_info->nr_pages);
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001579
1580 init_mm.pgd = pgd;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001581
1582 /* keep using Xen gdt for now; no urgent need to change it */
1583
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001584 pv_info.kernel_rpl = 1;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001585 if (xen_feature(XENFEAT_supervisor_mode_kernel))
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001586 pv_info.kernel_rpl = 0;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001587
1588 /* set the limit of our address space */
Jeremy Fitzhardingefb1d8402007-10-16 11:51:31 -07001589 xen_reserve_top();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001590
Jeremy Fitzhardinge7d087b62008-07-08 15:06:48 -07001591#ifdef CONFIG_X86_32
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001592 /* set up basic CPUID stuff */
1593 cpu_detect(&new_cpu_data);
1594 new_cpu_data.hard_math = 1;
1595 new_cpu_data.x86_capability[0] = cpuid_edx(1);
Jeremy Fitzhardinge7d087b62008-07-08 15:06:48 -07001596#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001597
1598 /* Poke various useful things into boot_params */
H. Peter Anvin30c82642007-10-15 17:13:22 -07001599 boot_params.hdr.type_of_loader = (9 << 4) | 0;
1600 boot_params.hdr.ramdisk_image = xen_start_info->mod_start
1601 ? __pa(xen_start_info->mod_start) : 0;
1602 boot_params.hdr.ramdisk_size = xen_start_info->mod_len;
Jeremy Fitzhardingeb7c3c5c2008-07-08 15:07:07 -07001603 boot_params.hdr.cmd_line_ptr = __pa(xen_start_info->cmd_line);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001604
Markus Armbruster9e124fe2008-05-26 23:31:07 +01001605 if (!is_initial_xendomain()) {
Jeremy Fitzhardinge83abc702008-05-26 23:31:12 +01001606 add_preferred_console("xenboot", 0, NULL);
Markus Armbruster9e124fe2008-05-26 23:31:07 +01001607 add_preferred_console("tty", 0, NULL);
Markus Armbrusterb8c2d3d2008-02-27 14:56:35 +01001608 add_preferred_console("hvc", 0, NULL);
Markus Armbruster9e124fe2008-05-26 23:31:07 +01001609 }
Markus Armbrusterb8c2d3d2008-02-27 14:56:35 +01001610
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001611 xen_raw_console_write("about to get started...\n");
1612
1613#if 0
1614 xen_raw_printk("&boot_params=%p __pa(&boot_params)=%lx __va(__pa(&boot_params))=%lx\n",
1615 &boot_params, __pa_symbol(&boot_params),
1616 __va(__pa_symbol(&boot_params)));
1617
1618 walk(pgd, &boot_params);
1619 walk(pgd, __va(__pa(&boot_params)));
1620#endif
1621
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001622 /* Start the world */
Jeremy Fitzhardingef5d36de2008-07-08 15:06:39 -07001623#ifdef CONFIG_X86_32
Yinghai Luf0d43102008-05-29 12:56:36 -07001624 i386_start_kernel();
Jeremy Fitzhardingef5d36de2008-07-08 15:06:39 -07001625#else
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001626 x86_64_start_reservations((char *)__pa_symbol(&boot_params));
Jeremy Fitzhardingef5d36de2008-07-08 15:06:39 -07001627#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001628}