blob: 87d36044054d7f90976bb6c53ef0d45adc75dacf [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 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 Fitzhardinge349c709f2008-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 Fitzhardinge8965c1c02007-10-16 11:51:29 -0700300static void xen_leave_lazy(void)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700301{
Jeremy Fitzhardinge8965c1c02007-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{
Jeremy Fitzhardinge8b84ad92007-07-17 18:37:06 -0700366 /*
367 * XXX sleazy hack: If we're being called in a lazy-cpu zone,
368 * it means we're in a context switch, and %gs has just been
369 * saved. This means we can zero it out to prevent faults on
370 * exit from the hypervisor if the next process has no %gs.
371 * Either way, it has been saved, and the new value will get
372 * loaded properly. This will go away as soon as Xen has been
373 * modified to not save/restore %gs for normal hypercalls.
Eduardo Habkost8a954082008-07-08 15:07:10 -0700374 *
375 * On x86_64, this hack is not used for %gs, because gs points
376 * to KERNEL_GS_BASE (and uses it for PDA references), so we
377 * must not zero %gs on x86_64
378 *
379 * For x86_64, we need to zero %fs, otherwise we may get an
380 * exception between the new %fs descriptor being loaded and
381 * %fs being effectively cleared at __switch_to().
Jeremy Fitzhardinge8b84ad92007-07-17 18:37:06 -0700382 */
Eduardo Habkost8a954082008-07-08 15:07:10 -0700383 if (paravirt_get_lazy_mode() == PARAVIRT_LAZY_CPU) {
384#ifdef CONFIG_X86_32
Jeremy Fitzhardinge8b84ad92007-07-17 18:37:06 -0700385 loadsegment(gs, 0);
Eduardo Habkost8a954082008-07-08 15:07:10 -0700386#else
387 loadsegment(fs, 0);
388#endif
389 }
390
391 xen_mc_batch();
392
393 load_TLS_descriptor(t, cpu, 0);
394 load_TLS_descriptor(t, cpu, 1);
395 load_TLS_descriptor(t, cpu, 2);
396
397 xen_mc_issue(PARAVIRT_LAZY_CPU);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700398}
399
Eduardo Habkosta8fc1082008-07-08 15:07:05 -0700400#ifdef CONFIG_X86_64
401static void xen_load_gs_index(unsigned int idx)
402{
403 if (HYPERVISOR_set_segment_base(SEGBASE_GS_USER_SEL, idx))
404 BUG();
405}
406#endif
407
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700408static void xen_write_ldt_entry(struct desc_struct *dt, int entrynum,
Glauber de Oliveira Costa75b8bb32008-01-30 13:31:13 +0100409 const void *ptr)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700410{
411 unsigned long lp = (unsigned long)&dt[entrynum];
412 xmaddr_t mach_lp = virt_to_machine(lp);
Glauber de Oliveira Costa75b8bb32008-01-30 13:31:13 +0100413 u64 entry = *(u64 *)ptr;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700414
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700415 preempt_disable();
416
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700417 xen_mc_flush();
418 if (HYPERVISOR_update_descriptor(mach_lp.maddr, entry))
419 BUG();
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700420
421 preempt_enable();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700422}
423
Eduardo Habkoste176d362008-07-08 15:06:59 -0700424static int cvt_gate_to_trap(int vector, const gate_desc *val,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700425 struct trap_info *info)
426{
Eduardo Habkoste176d362008-07-08 15:06:59 -0700427 if (val->type != 0xf && val->type != 0xe)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700428 return 0;
429
430 info->vector = vector;
Eduardo Habkoste176d362008-07-08 15:06:59 -0700431 info->address = gate_offset(*val);
432 info->cs = gate_segment(*val);
433 info->flags = val->dpl;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700434 /* interrupt gates clear IF */
Eduardo Habkoste176d362008-07-08 15:06:59 -0700435 if (val->type == 0xe)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700436 info->flags |= 4;
437
438 return 1;
439}
440
441/* Locations of each CPU's IDT */
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100442static DEFINE_PER_CPU(struct desc_ptr, idt_desc);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700443
444/* Set an IDT entry. If the entry is part of the current IDT, then
445 also update Xen. */
Glauber de Oliveira Costa8d947342008-01-30 13:31:12 +0100446static void xen_write_idt_entry(gate_desc *dt, int entrynum, const gate_desc *g)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700447{
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700448 unsigned long p = (unsigned long)&dt[entrynum];
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700449 unsigned long start, end;
450
451 preempt_disable();
452
453 start = __get_cpu_var(idt_desc).address;
454 end = start + __get_cpu_var(idt_desc).size + 1;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700455
456 xen_mc_flush();
457
Glauber de Oliveira Costa8d947342008-01-30 13:31:12 +0100458 native_write_idt_entry(dt, entrynum, g);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700459
460 if (p >= start && (p + 8) <= end) {
461 struct trap_info info[2];
462
463 info[1].address = 0;
464
Eduardo Habkoste176d362008-07-08 15:06:59 -0700465 if (cvt_gate_to_trap(entrynum, g, &info[0]))
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700466 if (HYPERVISOR_set_trap_table(info))
467 BUG();
468 }
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700469
470 preempt_enable();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700471}
472
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100473static void xen_convert_trap_info(const struct desc_ptr *desc,
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700474 struct trap_info *traps)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700475{
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700476 unsigned in, out, count;
477
Eduardo Habkoste176d362008-07-08 15:06:59 -0700478 count = (desc->size+1) / sizeof(gate_desc);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700479 BUG_ON(count > 256);
480
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700481 for (in = out = 0; in < count; in++) {
Eduardo Habkoste176d362008-07-08 15:06:59 -0700482 gate_desc *entry = (gate_desc*)(desc->address) + in;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700483
Eduardo Habkoste176d362008-07-08 15:06:59 -0700484 if (cvt_gate_to_trap(in, entry, &traps[out]))
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700485 out++;
486 }
487 traps[out].address = 0;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700488}
489
490void xen_copy_trap_info(struct trap_info *traps)
491{
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100492 const struct desc_ptr *desc = &__get_cpu_var(idt_desc);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700493
494 xen_convert_trap_info(desc, traps);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700495}
496
497/* Load a new IDT into Xen. In principle this can be per-CPU, so we
498 hold a spinlock to protect the static traps[] array (static because
499 it avoids allocation, and saves stack space). */
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100500static void xen_load_idt(const struct desc_ptr *desc)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700501{
502 static DEFINE_SPINLOCK(lock);
503 static struct trap_info traps[257];
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700504
505 spin_lock(&lock);
506
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700507 __get_cpu_var(idt_desc) = *desc;
508
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700509 xen_convert_trap_info(desc, traps);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700510
511 xen_mc_flush();
512 if (HYPERVISOR_set_trap_table(traps))
513 BUG();
514
515 spin_unlock(&lock);
516}
517
518/* Write a GDT descriptor entry. Ignore LDT descriptors, since
519 they're handled differently. */
520static void xen_write_gdt_entry(struct desc_struct *dt, int entry,
Glauber de Oliveira Costa014b15b2008-01-30 13:31:13 +0100521 const void *desc, int type)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700522{
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700523 preempt_disable();
524
Glauber de Oliveira Costa014b15b2008-01-30 13:31:13 +0100525 switch (type) {
526 case DESC_LDT:
527 case DESC_TSS:
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700528 /* ignore */
529 break;
530
531 default: {
532 xmaddr_t maddr = virt_to_machine(&dt[entry]);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700533
534 xen_mc_flush();
Glauber de Oliveira Costa014b15b2008-01-30 13:31:13 +0100535 if (HYPERVISOR_update_descriptor(maddr.maddr, *(u64 *)desc))
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700536 BUG();
537 }
538
539 }
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700540
541 preempt_enable();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700542}
543
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100544static void xen_load_sp0(struct tss_struct *tss,
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700545 struct thread_struct *thread)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700546{
547 struct multicall_space mcs = xen_mc_entry(0);
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100548 MULTI_stack_switch(mcs.mc, __KERNEL_DS, thread->sp0);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700549 xen_mc_issue(PARAVIRT_LAZY_CPU);
550}
551
552static void xen_set_iopl_mask(unsigned mask)
553{
554 struct physdev_set_iopl set_iopl;
555
556 /* Force the change at ring 0. */
557 set_iopl.iopl = (mask == 0) ? 1 : (mask >> 12) & 3;
558 HYPERVISOR_physdev_op(PHYSDEVOP_set_iopl, &set_iopl);
559}
560
561static void xen_io_delay(void)
562{
563}
564
565#ifdef CONFIG_X86_LOCAL_APIC
Thomas Gleixner42e0a9aa2008-01-30 13:30:15 +0100566static u32 xen_apic_read(unsigned long reg)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700567{
568 return 0;
569}
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700570
Thomas Gleixner42e0a9aa2008-01-30 13:30:15 +0100571static void xen_apic_write(unsigned long reg, u32 val)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700572{
573 /* Warn to see if there's any stray references */
574 WARN_ON(1);
575}
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700576#endif
577
578static void xen_flush_tlb(void)
579{
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700580 struct mmuext_op *op;
Jeremy Fitzhardinge41e332b2008-04-02 10:54:09 -0700581 struct multicall_space mcs;
582
583 preempt_disable();
584
585 mcs = xen_mc_entry(sizeof(*op));
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700586
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700587 op = mcs.args;
588 op->cmd = MMUEXT_TLB_FLUSH_LOCAL;
589 MULTI_mmuext_op(mcs.mc, op, 1, NULL, DOMID_SELF);
590
591 xen_mc_issue(PARAVIRT_LAZY_MMU);
Jeremy Fitzhardinge41e332b2008-04-02 10:54:09 -0700592
593 preempt_enable();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700594}
595
596static void xen_flush_tlb_single(unsigned long addr)
597{
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700598 struct mmuext_op *op;
Jeremy Fitzhardinge41e332b2008-04-02 10:54:09 -0700599 struct multicall_space mcs;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700600
Jeremy Fitzhardinge41e332b2008-04-02 10:54:09 -0700601 preempt_disable();
602
603 mcs = xen_mc_entry(sizeof(*op));
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700604 op = mcs.args;
605 op->cmd = MMUEXT_INVLPG_LOCAL;
606 op->arg1.linear_addr = addr & PAGE_MASK;
607 MULTI_mmuext_op(mcs.mc, op, 1, NULL, DOMID_SELF);
608
609 xen_mc_issue(PARAVIRT_LAZY_MMU);
Jeremy Fitzhardinge41e332b2008-04-02 10:54:09 -0700610
611 preempt_enable();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700612}
613
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700614static void xen_flush_tlb_others(const cpumask_t *cpus, struct mm_struct *mm,
615 unsigned long va)
616{
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700617 struct {
618 struct mmuext_op op;
619 cpumask_t mask;
620 } *args;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700621 cpumask_t cpumask = *cpus;
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700622 struct multicall_space mcs;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700623
624 /*
625 * A couple of (to be removed) sanity checks:
626 *
627 * - current CPU must not be in mask
628 * - mask must exist :)
629 */
630 BUG_ON(cpus_empty(cpumask));
631 BUG_ON(cpu_isset(smp_processor_id(), cpumask));
632 BUG_ON(!mm);
633
634 /* If a CPU which we ran on has gone down, OK. */
635 cpus_and(cpumask, cpumask, cpu_online_map);
636 if (cpus_empty(cpumask))
637 return;
638
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700639 mcs = xen_mc_entry(sizeof(*args));
640 args = mcs.args;
641 args->mask = cpumask;
642 args->op.arg2.vcpumask = &args->mask;
643
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700644 if (va == TLB_FLUSH_ALL) {
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700645 args->op.cmd = MMUEXT_TLB_FLUSH_MULTI;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700646 } else {
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700647 args->op.cmd = MMUEXT_INVLPG_MULTI;
648 args->op.arg1.linear_addr = va;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700649 }
650
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700651 MULTI_mmuext_op(mcs.mc, &args->op, 1, NULL, DOMID_SELF);
652
653 xen_mc_issue(PARAVIRT_LAZY_MMU);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700654}
655
Jeremy Fitzhardinge7b1333a2008-05-26 23:31:01 +0100656static void xen_clts(void)
657{
658 struct multicall_space mcs;
659
660 mcs = xen_mc_entry(0);
661
662 MULTI_fpu_taskswitch(mcs.mc, 0);
663
664 xen_mc_issue(PARAVIRT_LAZY_CPU);
665}
666
667static void xen_write_cr0(unsigned long cr0)
668{
669 struct multicall_space mcs;
670
671 /* Only pay attention to cr0.TS; everything else is
672 ignored. */
673 mcs = xen_mc_entry(0);
674
675 MULTI_fpu_taskswitch(mcs.mc, (cr0 & X86_CR0_TS) != 0);
676
677 xen_mc_issue(PARAVIRT_LAZY_CPU);
678}
679
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700680static void xen_write_cr2(unsigned long cr2)
681{
682 x86_read_percpu(xen_vcpu)->arch.cr2 = cr2;
683}
684
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700685static unsigned long xen_read_cr2(void)
686{
687 return x86_read_percpu(xen_vcpu)->arch.cr2;
688}
689
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700690static unsigned long xen_read_cr2_direct(void)
691{
692 return x86_read_percpu(xen_vcpu_info.arch.cr2);
693}
694
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700695static void xen_write_cr4(unsigned long cr4)
696{
Jeremy Fitzhardinge2956a352008-05-26 23:31:04 +0100697 cr4 &= ~X86_CR4_PGE;
698 cr4 &= ~X86_CR4_PSE;
699
700 native_write_cr4(cr4);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700701}
702
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700703static unsigned long xen_read_cr3(void)
704{
705 return x86_read_percpu(xen_cr3);
706}
707
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -0700708static void set_current_cr3(void *v)
709{
710 x86_write_percpu(xen_current_cr3, (unsigned long)v);
711}
712
Jeremy Fitzhardinged6182fb2008-07-08 15:07:13 -0700713static void __xen_write_cr3(bool kernel, unsigned long cr3)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700714{
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -0700715 struct mmuext_op *op;
716 struct multicall_space mcs;
Jeremy Fitzhardinged6182fb2008-07-08 15:07:13 -0700717 unsigned long mfn;
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -0700718
Jeremy Fitzhardinged6182fb2008-07-08 15:07:13 -0700719 if (cr3)
720 mfn = pfn_to_mfn(PFN_DOWN(cr3));
721 else
722 mfn = 0;
723
724 WARN_ON(mfn == 0 && kernel);
725
726 mcs = __xen_mc_entry(sizeof(*op));
727
728 op = mcs.args;
729 op->cmd = kernel ? MMUEXT_NEW_BASEPTR : MMUEXT_NEW_USER_BASEPTR;
730 op->arg1.mfn = mfn;
731
732 MULTI_mmuext_op(mcs.mc, op, 1, NULL, DOMID_SELF);
733
734 if (kernel) {
735 x86_write_percpu(xen_cr3, cr3);
736
737 /* Update xen_current_cr3 once the batch has actually
738 been submitted. */
739 xen_mc_callback(set_current_cr3, (void *)cr3);
740 }
741}
742
743static void xen_write_cr3(unsigned long cr3)
744{
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700745 BUG_ON(preemptible());
746
Jeremy Fitzhardinged6182fb2008-07-08 15:07:13 -0700747 xen_mc_batch(); /* disables interrupts */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700748
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -0700749 /* Update while interrupts are disabled, so its atomic with
750 respect to ipis */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700751 x86_write_percpu(xen_cr3, cr3);
752
Jeremy Fitzhardinged6182fb2008-07-08 15:07:13 -0700753 __xen_write_cr3(true, cr3);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700754
Jeremy Fitzhardinged6182fb2008-07-08 15:07:13 -0700755#ifdef CONFIG_X86_64
756 {
757 pgd_t *user_pgd = xen_get_user_pgd(__va(cr3));
758 if (user_pgd)
759 __xen_write_cr3(false, __pa(user_pgd));
760 else
761 __xen_write_cr3(false, 0);
762 }
763#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700764
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -0700765 xen_mc_issue(PARAVIRT_LAZY_CPU); /* interrupts restored */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700766}
767
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700768/* Early in boot, while setting up the initial pagetable, assume
769 everything is pinned. */
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700770static __init void xen_alloc_pte_init(struct mm_struct *mm, u32 pfn)
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700771{
Jeremy Fitzhardingeaf7ae3b2008-04-02 10:54:12 -0700772#ifdef CONFIG_FLATMEM
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700773 BUG_ON(mem_map); /* should only be used early */
Jeremy Fitzhardingeaf7ae3b2008-04-02 10:54:12 -0700774#endif
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700775 make_lowmem_page_readonly(__va(PFN_PHYS(pfn)));
776}
777
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700778/* Early release_pte assumes that all pts are pinned, since there's
Jeremy Fitzhardinge1c70e9b2008-01-30 13:33:39 +0100779 only init_mm and anything attached to that is pinned. */
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700780static void xen_release_pte_init(u32 pfn)
Jeremy Fitzhardinge1c70e9b2008-01-30 13:33:39 +0100781{
782 make_lowmem_page_readwrite(__va(PFN_PHYS(pfn)));
783}
784
Mark McLoughlinf6433702008-04-02 15:36:36 +0100785static void pin_pagetable_pfn(unsigned cmd, unsigned long pfn)
Jeremy Fitzhardinge74260712007-10-16 11:51:30 -0700786{
787 struct mmuext_op op;
Mark McLoughlinf6433702008-04-02 15:36:36 +0100788 op.cmd = cmd;
Jeremy Fitzhardinge74260712007-10-16 11:51:30 -0700789 op.arg1.mfn = pfn_to_mfn(pfn);
790 if (HYPERVISOR_mmuext_op(&op, 1, NULL, DOMID_SELF))
791 BUG();
792}
793
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700794/* This needs to make sure the new pte page is pinned iff its being
795 attached to a pinned pagetable. */
Jeremy Fitzhardinge1c70e9b2008-01-30 13:33:39 +0100796static void xen_alloc_ptpage(struct mm_struct *mm, u32 pfn, unsigned level)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700797{
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700798 struct page *page = pfn_to_page(pfn);
799
800 if (PagePinned(virt_to_page(mm->pgd))) {
801 SetPagePinned(page);
802
Jeremy Fitzhardinge74260712007-10-16 11:51:30 -0700803 if (!PageHighMem(page)) {
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700804 make_lowmem_page_readonly(__va(PFN_PHYS(pfn)));
Mark McLoughlinf6433702008-04-02 15:36:36 +0100805 if (level == PT_PTE)
806 pin_pagetable_pfn(MMUEXT_PIN_L1_TABLE, pfn);
Jeremy Fitzhardinge74260712007-10-16 11:51:30 -0700807 } else
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700808 /* make sure there are no stray mappings of
809 this page */
810 kmap_flush_unused();
811 }
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700812}
813
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700814static void xen_alloc_pte(struct mm_struct *mm, u32 pfn)
Jeremy Fitzhardinge1c70e9b2008-01-30 13:33:39 +0100815{
Mark McLoughlinf6433702008-04-02 15:36:36 +0100816 xen_alloc_ptpage(mm, pfn, PT_PTE);
Jeremy Fitzhardinge1c70e9b2008-01-30 13:33:39 +0100817}
818
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700819static void xen_alloc_pmd(struct mm_struct *mm, u32 pfn)
Jeremy Fitzhardinge1c70e9b2008-01-30 13:33:39 +0100820{
Mark McLoughlinf6433702008-04-02 15:36:36 +0100821 xen_alloc_ptpage(mm, pfn, PT_PMD);
Jeremy Fitzhardinge1c70e9b2008-01-30 13:33:39 +0100822}
823
Jeremy Fitzhardinged6182fb2008-07-08 15:07:13 -0700824static int xen_pgd_alloc(struct mm_struct *mm)
825{
826 pgd_t *pgd = mm->pgd;
827 int ret = 0;
828
829 BUG_ON(PagePinned(virt_to_page(pgd)));
830
831#ifdef CONFIG_X86_64
832 {
833 struct page *page = virt_to_page(pgd);
834
835 BUG_ON(page->private != 0);
836
837 page->private = __get_free_page(GFP_KERNEL | __GFP_ZERO);
838 if (page->private == 0)
839 ret = -ENOMEM;
840
841 BUG_ON(PagePinned(virt_to_page(xen_get_user_pgd(pgd))));
842 }
843#endif
844
845 return ret;
846}
847
848static void xen_pgd_free(struct mm_struct *mm, pgd_t *pgd)
849{
850#ifdef CONFIG_X86_64
851 pgd_t *user_pgd = xen_get_user_pgd(pgd);
852
853 if (user_pgd)
854 free_page((unsigned long)user_pgd);
855#endif
856}
857
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700858/* This should never happen until we're OK to use struct page */
Mark McLoughlinf6433702008-04-02 15:36:36 +0100859static void xen_release_ptpage(u32 pfn, unsigned level)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700860{
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700861 struct page *page = pfn_to_page(pfn);
862
863 if (PagePinned(page)) {
Jeremy Fitzhardinge74260712007-10-16 11:51:30 -0700864 if (!PageHighMem(page)) {
Mark McLoughlina684d692008-04-02 15:36:37 +0100865 if (level == PT_PTE)
866 pin_pagetable_pfn(MMUEXT_UNPIN_TABLE, pfn);
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700867 make_lowmem_page_readwrite(__va(PFN_PHYS(pfn)));
Jeremy Fitzhardinge74260712007-10-16 11:51:30 -0700868 }
Mark McLoughlinc946c7d2008-04-02 15:36:38 +0100869 ClearPagePinned(page);
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700870 }
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700871}
872
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700873static void xen_release_pte(u32 pfn)
Mark McLoughlinf6433702008-04-02 15:36:36 +0100874{
875 xen_release_ptpage(pfn, PT_PTE);
876}
877
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700878static void xen_release_pmd(u32 pfn)
Mark McLoughlinf6433702008-04-02 15:36:36 +0100879{
880 xen_release_ptpage(pfn, PT_PMD);
881}
882
Jeremy Fitzhardingef6e58732008-07-08 15:06:38 -0700883#if PAGETABLE_LEVELS == 4
884static void xen_alloc_pud(struct mm_struct *mm, u32 pfn)
885{
886 xen_alloc_ptpage(mm, pfn, PT_PUD);
887}
888
889static void xen_release_pud(u32 pfn)
890{
891 xen_release_ptpage(pfn, PT_PUD);
892}
893#endif
894
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700895#ifdef CONFIG_HIGHPTE
896static void *xen_kmap_atomic_pte(struct page *page, enum km_type type)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700897{
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700898 pgprot_t prot = PAGE_KERNEL;
899
900 if (PagePinned(page))
901 prot = PAGE_KERNEL_RO;
902
903 if (0 && PageHighMem(page))
904 printk("mapping highpte %lx type %d prot %s\n",
905 page_to_pfn(page), type,
906 (unsigned long)pgprot_val(prot) & _PAGE_RW ? "WRITE" : "READ");
907
908 return kmap_atomic_prot(page, type, prot);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700909}
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700910#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700911
Jeremy Fitzhardinge9a4029f2007-07-17 18:37:05 -0700912static __init pte_t mask_rw_pte(pte_t *ptep, pte_t pte)
913{
914 /* If there's an existing pte, then don't allow _PAGE_RW to be set */
915 if (pte_val_ma(*ptep) & _PAGE_PRESENT)
916 pte = __pte_ma(((pte_val_ma(*ptep) & _PAGE_RW) | ~_PAGE_RW) &
917 pte_val_ma(pte));
918
919 return pte;
920}
921
922/* Init-time set_pte while constructing initial pagetables, which
923 doesn't allow RO pagetable pages to be remapped RW */
924static __init void xen_set_pte_init(pte_t *ptep, pte_t pte)
925{
926 pte = mask_rw_pte(ptep, pte);
927
928 xen_set_pte(ptep, pte);
929}
930
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700931static __init void xen_pagetable_setup_start(pgd_t *base)
932{
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700933}
934
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +0100935void xen_setup_shared_info(void)
Jeremy Fitzhardinge2e8fe712008-03-17 16:36:53 -0700936{
937 if (!xen_feature(XENFEAT_auto_translated_physmap)) {
Jeremy Fitzhardinge15664f92008-07-08 15:06:47 -0700938 set_fixmap(FIX_PARAVIRT_BOOTMAP,
939 xen_start_info->shared_info);
Jeremy Fitzhardinge2e8fe712008-03-17 16:36:53 -0700940
Jeremy Fitzhardinge15664f92008-07-08 15:06:47 -0700941 HYPERVISOR_shared_info =
942 (struct shared_info *)fix_to_virt(FIX_PARAVIRT_BOOTMAP);
Jeremy Fitzhardinge2e8fe712008-03-17 16:36:53 -0700943 } else
944 HYPERVISOR_shared_info =
945 (struct shared_info *)__va(xen_start_info->shared_info);
946
947#ifndef CONFIG_SMP
948 /* In UP this is as good a place as any to set up shared info */
949 xen_setup_vcpu_info_placement();
950#endif
Jeremy Fitzhardinged5edbc1f2008-05-26 23:31:22 +0100951
952 xen_setup_mfn_list_list();
Jeremy Fitzhardinge2e8fe712008-03-17 16:36:53 -0700953}
954
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700955static __init void xen_pagetable_setup_done(pgd_t *base)
956{
Jeremy Fitzhardinge8745f8b2008-07-08 15:06:57 -0700957 xen_setup_shared_info();
958}
959
960static __init void xen_post_allocator_init(void)
961{
962 pv_mmu_ops.set_pte = xen_set_pte;
963 pv_mmu_ops.set_pmd = xen_set_pmd;
964 pv_mmu_ops.set_pud = xen_set_pud;
965#if PAGETABLE_LEVELS == 4
966 pv_mmu_ops.set_pgd = xen_set_pgd;
967#endif
968
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700969 /* This will work as long as patching hasn't happened yet
970 (which it hasn't) */
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700971 pv_mmu_ops.alloc_pte = xen_alloc_pte;
972 pv_mmu_ops.alloc_pmd = xen_alloc_pmd;
973 pv_mmu_ops.release_pte = xen_release_pte;
974 pv_mmu_ops.release_pmd = xen_release_pmd;
Jeremy Fitzhardingef6e58732008-07-08 15:06:38 -0700975#if PAGETABLE_LEVELS == 4
976 pv_mmu_ops.alloc_pud = xen_alloc_pud;
977 pv_mmu_ops.release_pud = xen_release_pud;
978#endif
979
Jeremy Fitzhardingee2426cf2008-05-31 01:24:27 +0100980 xen_mark_init_mm_pinned();
981}
982
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700983/* This is called once we have the cpu_possible_map */
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +0100984void xen_setup_vcpu_info_placement(void)
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700985{
986 int cpu;
987
988 for_each_possible_cpu(cpu)
989 xen_vcpu_setup(cpu);
990
991 /* xen_vcpu_setup managed to place the vcpu_info within the
992 percpu area for all cpus, so make use of it */
Jeremy Fitzhardinge5b09b282008-07-08 15:06:42 -0700993#ifdef CONFIG_X86_32
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700994 if (have_vcpu_info_placement) {
995 printk(KERN_INFO "Xen: using vcpu_info placement\n");
996
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700997 pv_irq_ops.save_fl = xen_save_fl_direct;
998 pv_irq_ops.restore_fl = xen_restore_fl_direct;
999 pv_irq_ops.irq_disable = xen_irq_disable_direct;
1000 pv_irq_ops.irq_enable = xen_irq_enable_direct;
1001 pv_mmu_ops.read_cr2 = xen_read_cr2_direct;
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -07001002 }
Jeremy Fitzhardinge5b09b282008-07-08 15:06:42 -07001003#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001004}
1005
Andi Kleenab144f52007-08-10 22:31:03 +02001006static unsigned xen_patch(u8 type, u16 clobbers, void *insnbuf,
1007 unsigned long addr, unsigned len)
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -07001008{
1009 char *start, *end, *reloc;
1010 unsigned ret;
1011
1012 start = end = reloc = NULL;
1013
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001014#define SITE(op, x) \
1015 case PARAVIRT_PATCH(op.x): \
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -07001016 if (have_vcpu_info_placement) { \
1017 start = (char *)xen_##x##_direct; \
1018 end = xen_##x##_direct_end; \
1019 reloc = xen_##x##_direct_reloc; \
1020 } \
1021 goto patch_site
1022
1023 switch (type) {
Jeremy Fitzhardinge5b09b282008-07-08 15:06:42 -07001024#ifdef CONFIG_X86_32
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001025 SITE(pv_irq_ops, irq_enable);
1026 SITE(pv_irq_ops, irq_disable);
1027 SITE(pv_irq_ops, save_fl);
1028 SITE(pv_irq_ops, restore_fl);
Jeremy Fitzhardinge5b09b282008-07-08 15:06:42 -07001029#endif /* CONFIG_X86_32 */
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -07001030#undef SITE
1031
1032 patch_site:
1033 if (start == NULL || (end-start) > len)
1034 goto default_patch;
1035
Andi Kleenab144f52007-08-10 22:31:03 +02001036 ret = paravirt_patch_insns(insnbuf, len, start, end);
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -07001037
1038 /* Note: because reloc is assigned from something that
1039 appears to be an array, gcc assumes it's non-null,
1040 but doesn't know its relationship with start and
1041 end. */
1042 if (reloc > start && reloc < end) {
1043 int reloc_off = reloc - start;
Andi Kleenab144f52007-08-10 22:31:03 +02001044 long *relocp = (long *)(insnbuf + reloc_off);
1045 long delta = start - (char *)addr;
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -07001046
1047 *relocp += delta;
1048 }
1049 break;
1050
1051 default_patch:
1052 default:
Andi Kleenab144f52007-08-10 22:31:03 +02001053 ret = paravirt_patch_default(type, clobbers, insnbuf,
1054 addr, len);
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -07001055 break;
1056 }
1057
1058 return ret;
1059}
1060
Jeremy Fitzhardingeaeaaa592008-06-17 11:42:01 -07001061static void xen_set_fixmap(unsigned idx, unsigned long phys, pgprot_t prot)
1062{
1063 pte_t pte;
1064
1065 phys >>= PAGE_SHIFT;
1066
1067 switch (idx) {
1068 case FIX_BTMAP_END ... FIX_BTMAP_BEGIN:
1069#ifdef CONFIG_X86_F00F_BUG
1070 case FIX_F00F_IDT:
1071#endif
Jeremy Fitzhardinge15664f92008-07-08 15:06:47 -07001072#ifdef CONFIG_X86_32
Jeremy Fitzhardingeaeaaa592008-06-17 11:42:01 -07001073 case FIX_WP_TEST:
1074 case FIX_VDSO:
Jeremy Fitzhardinge15664f92008-07-08 15:06:47 -07001075 case FIX_KMAP_BEGIN ... FIX_KMAP_END:
1076#else
1077 case VSYSCALL_LAST_PAGE ... VSYSCALL_FIRST_PAGE:
1078#endif
Jeremy Fitzhardingeaeaaa592008-06-17 11:42:01 -07001079#ifdef CONFIG_X86_LOCAL_APIC
1080 case FIX_APIC_BASE: /* maps dummy local APIC */
1081#endif
1082 pte = pfn_pte(phys, prot);
1083 break;
1084
1085 default:
1086 pte = mfn_pte(phys, prot);
1087 break;
1088 }
1089
1090 __native_set_fixmap(idx, pte);
1091}
1092
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001093static const struct pv_info xen_info __initdata = {
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001094 .paravirt_enabled = 1,
1095 .shared_kernel_pmd = 0,
1096
1097 .name = "Xen",
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001098};
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001099
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001100static const struct pv_init_ops xen_init_ops __initdata = {
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -07001101 .patch = xen_patch,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001102
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001103 .banner = xen_banner,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001104 .memory_setup = xen_memory_setup,
1105 .arch_setup = xen_arch_setup,
Jeremy Fitzhardingee2426cf2008-05-31 01:24:27 +01001106 .post_allocator_init = xen_post_allocator_init,
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001107};
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001108
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001109static const struct pv_time_ops xen_time_ops __initdata = {
Jeremy Fitzhardinge15c84732007-07-17 18:37:05 -07001110 .time_init = xen_time_init,
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001111
Jeremy Fitzhardinge15c84732007-07-17 18:37:05 -07001112 .set_wallclock = xen_set_wallclock,
1113 .get_wallclock = xen_get_wallclock,
Alok Katariae93ef942008-07-01 11:43:36 -07001114 .get_tsc_khz = xen_tsc_khz,
Jeremy Fitzhardingeab550282007-07-17 18:37:05 -07001115 .sched_clock = xen_sched_clock,
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001116};
Jeremy Fitzhardinge15c84732007-07-17 18:37:05 -07001117
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001118static const struct pv_cpu_ops xen_cpu_ops __initdata = {
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001119 .cpuid = xen_cpuid,
1120
1121 .set_debugreg = xen_set_debugreg,
1122 .get_debugreg = xen_get_debugreg,
1123
Jeremy Fitzhardinge7b1333a2008-05-26 23:31:01 +01001124 .clts = xen_clts,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001125
1126 .read_cr0 = native_read_cr0,
Jeremy Fitzhardinge7b1333a2008-05-26 23:31:01 +01001127 .write_cr0 = xen_write_cr0,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001128
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001129 .read_cr4 = native_read_cr4,
1130 .read_cr4_safe = native_read_cr4_safe,
1131 .write_cr4 = xen_write_cr4,
1132
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001133 .wbinvd = native_wbinvd,
1134
1135 .read_msr = native_read_msr_safe,
1136 .write_msr = native_write_msr_safe,
1137 .read_tsc = native_read_tsc,
1138 .read_pmc = native_read_pmc,
1139
Jeremy Fitzhardinge81e103f2008-04-17 17:40:51 +02001140 .iret = xen_iret,
Jeremy Fitzhardinged75cd222008-06-25 00:19:26 -04001141 .irq_enable_sysexit = xen_sysexit,
Jeremy Fitzhardinge6fcac6d2008-07-08 15:07:14 -07001142#ifdef CONFIG_X86_64
1143 .usergs_sysret32 = xen_sysret32,
1144 .usergs_sysret64 = xen_sysret64,
1145#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001146
1147 .load_tr_desc = paravirt_nop,
1148 .set_ldt = xen_set_ldt,
1149 .load_gdt = xen_load_gdt,
1150 .load_idt = xen_load_idt,
1151 .load_tls = xen_load_tls,
Eduardo Habkosta8fc1082008-07-08 15:07:05 -07001152#ifdef CONFIG_X86_64
1153 .load_gs_index = xen_load_gs_index,
1154#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001155
1156 .store_gdt = native_store_gdt,
1157 .store_idt = native_store_idt,
1158 .store_tr = xen_store_tr,
1159
1160 .write_ldt_entry = xen_write_ldt_entry,
1161 .write_gdt_entry = xen_write_gdt_entry,
1162 .write_idt_entry = xen_write_idt_entry,
H. Peter Anvinfaca6222008-01-30 13:31:02 +01001163 .load_sp0 = xen_load_sp0,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001164
1165 .set_iopl_mask = xen_set_iopl_mask,
1166 .io_delay = xen_io_delay,
1167
Jeremy Fitzhardinge952d1d72008-07-08 15:07:01 -07001168 /* Xen takes care of %gs when switching to usermode for us */
1169 .swapgs = paravirt_nop,
1170
Jeremy Fitzhardinge8965c1c02007-10-16 11:51:29 -07001171 .lazy_mode = {
1172 .enter = paravirt_enter_lazy_cpu,
1173 .leave = xen_leave_lazy,
1174 },
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001175};
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001176
Jeremy Fitzhardinge0725cbb2008-07-08 15:07:03 -07001177static void __init __xen_init_IRQ(void)
1178{
1179#ifdef CONFIG_X86_64
1180 int i;
1181
1182 /* Create identity vector->irq map */
1183 for(i = 0; i < NR_VECTORS; i++) {
1184 int cpu;
1185
1186 for_each_possible_cpu(cpu)
1187 per_cpu(vector_irq, cpu)[i] = i;
1188 }
1189#endif /* CONFIG_X86_64 */
1190
1191 xen_init_IRQ();
1192}
1193
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001194static const struct pv_irq_ops xen_irq_ops __initdata = {
Jeremy Fitzhardinge0725cbb2008-07-08 15:07:03 -07001195 .init_IRQ = __xen_init_IRQ,
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001196 .save_fl = xen_save_fl,
1197 .restore_fl = xen_restore_fl,
1198 .irq_disable = xen_irq_disable,
1199 .irq_enable = xen_irq_enable,
1200 .safe_halt = xen_safe_halt,
1201 .halt = xen_halt,
Jeremy Fitzhardingefab58422008-06-25 00:19:31 -04001202#ifdef CONFIG_X86_64
Jeremy Fitzhardinge997409d2008-07-08 15:07:00 -07001203 .adjust_exception_frame = xen_adjust_exception_frame,
Jeremy Fitzhardingefab58422008-06-25 00:19:31 -04001204#endif
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001205};
1206
1207static const struct pv_apic_ops xen_apic_ops __initdata = {
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001208#ifdef CONFIG_X86_LOCAL_APIC
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -07001209 .apic_write = xen_apic_write,
1210 .apic_write_atomic = xen_apic_write,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001211 .apic_read = xen_apic_read,
1212 .setup_boot_clock = paravirt_nop,
1213 .setup_secondary_clock = paravirt_nop,
1214 .startup_ipi_hook = paravirt_nop,
1215#endif
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001216};
1217
1218static const struct pv_mmu_ops xen_mmu_ops __initdata = {
1219 .pagetable_setup_start = xen_pagetable_setup_start,
1220 .pagetable_setup_done = xen_pagetable_setup_done,
1221
1222 .read_cr2 = xen_read_cr2,
1223 .write_cr2 = xen_write_cr2,
1224
1225 .read_cr3 = xen_read_cr3,
1226 .write_cr3 = xen_write_cr3,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001227
1228 .flush_tlb_user = xen_flush_tlb,
1229 .flush_tlb_kernel = xen_flush_tlb,
1230 .flush_tlb_single = xen_flush_tlb_single,
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -07001231 .flush_tlb_others = xen_flush_tlb_others,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001232
1233 .pte_update = paravirt_nop,
1234 .pte_update_defer = paravirt_nop,
1235
Jeremy Fitzhardinged6182fb2008-07-08 15:07:13 -07001236 .pgd_alloc = xen_pgd_alloc,
1237 .pgd_free = xen_pgd_free,
Jeremy Fitzhardingeeba00452008-06-25 00:19:12 -04001238
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -07001239 .alloc_pte = xen_alloc_pte_init,
1240 .release_pte = xen_release_pte_init,
1241 .alloc_pmd = xen_alloc_pte_init,
1242 .alloc_pmd_clone = paravirt_nop,
1243 .release_pmd = xen_release_pte_init,
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -07001244
1245#ifdef CONFIG_HIGHPTE
1246 .kmap_atomic_pte = xen_kmap_atomic_pte,
1247#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001248
Jeremy Fitzhardinge22911b32008-07-08 15:06:51 -07001249#ifdef CONFIG_X86_64
1250 .set_pte = xen_set_pte,
1251#else
Jeremy Fitzhardinge851fa3c2008-07-08 15:06:33 -07001252 .set_pte = xen_set_pte_init,
Jeremy Fitzhardinge22911b32008-07-08 15:06:51 -07001253#endif
Jeremy Fitzhardinge3b827c12007-07-17 18:37:04 -07001254 .set_pte_at = xen_set_pte_at,
Jeremy Fitzhardingee2426cf2008-05-31 01:24:27 +01001255 .set_pmd = xen_set_pmd_hyper,
Jeremy Fitzhardinge3b827c12007-07-17 18:37:04 -07001256
Jeremy Fitzhardinge08b882c2008-06-16 04:30:01 -07001257 .ptep_modify_prot_start = __ptep_modify_prot_start,
1258 .ptep_modify_prot_commit = __ptep_modify_prot_commit,
1259
Jeremy Fitzhardinge3b827c12007-07-17 18:37:04 -07001260 .pte_val = xen_pte_val,
Jeremy Fitzhardingea15af1c2008-05-26 23:31:06 +01001261 .pte_flags = native_pte_val,
Jeremy Fitzhardinge3b827c12007-07-17 18:37:04 -07001262 .pgd_val = xen_pgd_val,
1263
1264 .make_pte = xen_make_pte,
1265 .make_pgd = xen_make_pgd,
1266
Jeremy Fitzhardingef6e58732008-07-08 15:06:38 -07001267#ifdef CONFIG_X86_PAE
Jeremy Fitzhardinge3b827c12007-07-17 18:37:04 -07001268 .set_pte_atomic = xen_set_pte_atomic,
1269 .set_pte_present = xen_set_pte_at,
Jeremy Fitzhardinge3b827c12007-07-17 18:37:04 -07001270 .pte_clear = xen_pte_clear,
1271 .pmd_clear = xen_pmd_clear,
Jeremy Fitzhardingef6e58732008-07-08 15:06:38 -07001272#endif /* CONFIG_X86_PAE */
1273 .set_pud = xen_set_pud_hyper,
Jeremy Fitzhardinge3b827c12007-07-17 18:37:04 -07001274
1275 .make_pmd = xen_make_pmd,
1276 .pmd_val = xen_pmd_val,
Jeremy Fitzhardinge3b827c12007-07-17 18:37:04 -07001277
Jeremy Fitzhardingef6e58732008-07-08 15:06:38 -07001278#if PAGETABLE_LEVELS == 4
1279 .pud_val = xen_pud_val,
1280 .make_pud = xen_make_pud,
1281 .set_pgd = xen_set_pgd_hyper,
1282
1283 .alloc_pud = xen_alloc_pte_init,
1284 .release_pud = xen_release_pte_init,
1285#endif /* PAGETABLE_LEVELS == 4 */
1286
Jeremy Fitzhardinge3b827c12007-07-17 18:37:04 -07001287 .activate_mm = xen_activate_mm,
1288 .dup_mmap = xen_dup_mmap,
1289 .exit_mmap = xen_exit_mmap,
1290
Jeremy Fitzhardinge8965c1c02007-10-16 11:51:29 -07001291 .lazy_mode = {
1292 .enter = paravirt_enter_lazy_mmu,
1293 .leave = xen_leave_lazy,
1294 },
Jeremy Fitzhardingeaeaaa592008-06-17 11:42:01 -07001295
1296 .set_fixmap = xen_set_fixmap,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001297};
1298
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -07001299static void xen_reboot(int reason)
1300{
Jeremy Fitzhardinge349c709f2008-05-26 23:31:02 +01001301 struct sched_shutdown r = { .reason = reason };
1302
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -07001303#ifdef CONFIG_SMP
1304 smp_send_stop();
1305#endif
1306
Jeremy Fitzhardinge349c709f2008-05-26 23:31:02 +01001307 if (HYPERVISOR_sched_op(SCHEDOP_shutdown, &r))
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -07001308 BUG();
1309}
1310
1311static void xen_restart(char *msg)
1312{
1313 xen_reboot(SHUTDOWN_reboot);
1314}
1315
1316static void xen_emergency_restart(void)
1317{
1318 xen_reboot(SHUTDOWN_reboot);
1319}
1320
1321static void xen_machine_halt(void)
1322{
1323 xen_reboot(SHUTDOWN_poweroff);
1324}
1325
1326static void xen_crash_shutdown(struct pt_regs *regs)
1327{
1328 xen_reboot(SHUTDOWN_crash);
1329}
1330
1331static const struct machine_ops __initdata xen_machine_ops = {
1332 .restart = xen_restart,
1333 .halt = xen_machine_halt,
1334 .power_off = xen_machine_halt,
1335 .shutdown = xen_machine_halt,
1336 .crash_shutdown = xen_crash_shutdown,
1337 .emergency_restart = xen_emergency_restart,
1338};
1339
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -07001340
Jeremy Fitzhardingefb1d8402007-10-16 11:51:31 -07001341static void __init xen_reserve_top(void)
1342{
Jeremy Fitzhardingef5d36de2008-07-08 15:06:39 -07001343#ifdef CONFIG_X86_32
Jeremy Fitzhardingefb1d8402007-10-16 11:51:31 -07001344 unsigned long top = HYPERVISOR_VIRT_START;
1345 struct xen_platform_parameters pp;
1346
1347 if (HYPERVISOR_xen_version(XENVER_platform_parameters, &pp) == 0)
1348 top = pp.virt_start;
1349
1350 reserve_top_address(-top + 2 * PAGE_SIZE);
Jeremy Fitzhardingef5d36de2008-07-08 15:06:39 -07001351#endif /* CONFIG_X86_32 */
Jeremy Fitzhardingefb1d8402007-10-16 11:51:31 -07001352}
1353
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001354/*
1355 * Like __va(), but returns address in the kernel mapping (which is
1356 * all we have until the physical memory mapping has been set up.
1357 */
1358static void *__ka(phys_addr_t paddr)
1359{
Jeremy Fitzhardinge39dbc5b2008-07-08 15:06:53 -07001360#ifdef CONFIG_X86_64
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001361 return (void *)(paddr + __START_KERNEL_map);
Jeremy Fitzhardinge39dbc5b2008-07-08 15:06:53 -07001362#else
1363 return __va(paddr);
1364#endif
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001365}
1366
1367/* Convert a machine address to physical address */
1368static unsigned long m2p(phys_addr_t maddr)
1369{
1370 phys_addr_t paddr;
1371
1372 maddr &= PTE_MASK;
1373 paddr = mfn_to_pfn(maddr >> PAGE_SHIFT) << PAGE_SHIFT;
1374
1375 return paddr;
1376}
1377
1378/* Convert a machine address to kernel virtual */
1379static void *m2v(phys_addr_t maddr)
1380{
1381 return __ka(m2p(maddr));
1382}
1383
Jeremy Fitzhardinge39dbc5b2008-07-08 15:06:53 -07001384#ifdef CONFIG_X86_64
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001385static void walk(pgd_t *pgd, unsigned long addr)
1386{
1387 unsigned l4idx = pgd_index(addr);
1388 unsigned l3idx = pud_index(addr);
1389 unsigned l2idx = pmd_index(addr);
1390 unsigned l1idx = pte_index(addr);
1391 pgd_t l4;
1392 pud_t l3;
1393 pmd_t l2;
1394 pte_t l1;
1395
1396 xen_raw_printk("walk %p, %lx -> %d %d %d %d\n",
1397 pgd, addr, l4idx, l3idx, l2idx, l1idx);
1398
1399 l4 = pgd[l4idx];
1400 xen_raw_printk(" l4: %016lx\n", l4.pgd);
1401 xen_raw_printk(" %016lx\n", pgd_val(l4));
1402
1403 l3 = ((pud_t *)(m2v(l4.pgd)))[l3idx];
1404 xen_raw_printk(" l3: %016lx\n", l3.pud);
1405 xen_raw_printk(" %016lx\n", pud_val(l3));
1406
1407 l2 = ((pmd_t *)(m2v(l3.pud)))[l2idx];
1408 xen_raw_printk(" l2: %016lx\n", l2.pmd);
1409 xen_raw_printk(" %016lx\n", pmd_val(l2));
1410
1411 l1 = ((pte_t *)(m2v(l2.pmd)))[l1idx];
1412 xen_raw_printk(" l1: %016lx\n", l1.pte);
1413 xen_raw_printk(" %016lx\n", pte_val(l1));
1414}
Jeremy Fitzhardinge39dbc5b2008-07-08 15:06:53 -07001415#endif
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001416
1417static void set_page_prot(void *addr, pgprot_t prot)
1418{
1419 unsigned long pfn = __pa(addr) >> PAGE_SHIFT;
1420 pte_t pte = pfn_pte(pfn, prot);
1421
Jeremy Fitzhardinge39dbc5b2008-07-08 15:06:53 -07001422 xen_raw_printk("addr=%p pfn=%lx mfn=%lx prot=%016llx pte=%016llx\n",
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001423 addr, pfn, get_phys_to_machine(pfn),
1424 pgprot_val(prot), pte.pte);
1425
1426 if (HYPERVISOR_update_va_mapping((unsigned long)addr, pte, 0))
1427 BUG();
1428}
1429
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001430/*
Jeremy Fitzhardinged114e1982008-07-08 15:06:52 -07001431 * Identity map, in addition to plain kernel map. This needs to be
1432 * large enough to allocate page table pages to allocate the rest.
1433 * Each page can map 2MB.
1434 */
1435static pte_t level1_ident_pgt[PTRS_PER_PTE * 4] __page_aligned_bss;
1436
Jeremy Fitzhardinge39dbc5b2008-07-08 15:06:53 -07001437static __init void xen_map_identity_early(pmd_t *pmd, unsigned long max_pfn)
Jeremy Fitzhardinged114e1982008-07-08 15:06:52 -07001438{
1439 unsigned pmdidx, pteidx;
1440 unsigned ident_pte;
1441 unsigned long pfn;
1442
1443 ident_pte = 0;
1444 pfn = 0;
1445 for(pmdidx = 0; pmdidx < PTRS_PER_PMD && pfn < max_pfn; pmdidx++) {
1446 pte_t *pte_page;
1447
Jeremy Fitzhardinged114e1982008-07-08 15:06:52 -07001448 /* Reuse or allocate a page of ptes */
Jeremy Fitzhardinge39dbc5b2008-07-08 15:06:53 -07001449 if (pmd_present(pmd[pmdidx]))
1450 pte_page = m2v(pmd[pmdidx].pmd);
Jeremy Fitzhardinged114e1982008-07-08 15:06:52 -07001451 else {
1452 /* Check for free pte pages */
1453 if (ident_pte == ARRAY_SIZE(level1_ident_pgt))
1454 break;
1455
1456 pte_page = &level1_ident_pgt[ident_pte];
1457 ident_pte += PTRS_PER_PTE;
1458
Jeremy Fitzhardinge39dbc5b2008-07-08 15:06:53 -07001459 pmd[pmdidx] = __pmd(__pa(pte_page) | _PAGE_TABLE);
Jeremy Fitzhardinged114e1982008-07-08 15:06:52 -07001460 }
1461
1462 /* Install mappings */
1463 for(pteidx = 0; pteidx < PTRS_PER_PTE; pteidx++, pfn++) {
1464 pte_t pte;
1465
1466 if (pfn > max_pfn_mapped)
1467 max_pfn_mapped = pfn;
1468
1469 if (!pte_none(pte_page[pteidx]))
1470 continue;
1471
1472 pte = pfn_pte(pfn, PAGE_KERNEL_EXEC);
1473 pte_page[pteidx] = pte;
1474 }
1475 }
1476
1477 for(pteidx = 0; pteidx < ident_pte; pteidx += PTRS_PER_PTE)
1478 set_page_prot(&level1_ident_pgt[pteidx], PAGE_KERNEL_RO);
Jeremy Fitzhardinge39dbc5b2008-07-08 15:06:53 -07001479
1480 set_page_prot(pmd, PAGE_KERNEL_RO);
1481}
1482
1483#ifdef CONFIG_X86_64
1484static void convert_pfn_mfn(void *v)
1485{
1486 pte_t *pte = v;
1487 int i;
1488
1489 /* All levels are converted the same way, so just treat them
1490 as ptes. */
1491 for(i = 0; i < PTRS_PER_PTE; i++)
1492 pte[i] = xen_make_pte(pte[i].pte);
Jeremy Fitzhardinged114e1982008-07-08 15:06:52 -07001493}
1494
1495/*
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001496 * Set up the inital kernel pagetable.
1497 *
1498 * We can construct this by grafting the Xen provided pagetable into
1499 * head_64.S's preconstructed pagetables. We copy the Xen L2's into
1500 * level2_ident_pgt, level2_kernel_pgt and level2_fixmap_pgt. This
1501 * means that only the kernel has a physical mapping to start with -
1502 * but that's enough to get __va working. We need to fill in the rest
1503 * of the physical mapping once some sort of allocator has been set
1504 * up.
1505 */
Jeremy Fitzhardinged114e1982008-07-08 15:06:52 -07001506static __init pgd_t *xen_setup_kernel_pagetable(pgd_t *pgd, unsigned long max_pfn)
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001507{
1508 pud_t *l3;
1509 pmd_t *l2;
1510
1511 /* Zap identity mapping */
1512 init_level4_pgt[0] = __pgd(0);
1513
1514 /* Pre-constructed entries are in pfn, so convert to mfn */
1515 convert_pfn_mfn(init_level4_pgt);
1516 convert_pfn_mfn(level3_ident_pgt);
1517 convert_pfn_mfn(level3_kernel_pgt);
1518
1519 l3 = m2v(pgd[pgd_index(__START_KERNEL_map)].pgd);
1520 l2 = m2v(l3[pud_index(__START_KERNEL_map)].pud);
1521
1522 memcpy(level2_ident_pgt, l2, sizeof(pmd_t) * PTRS_PER_PMD);
1523 memcpy(level2_kernel_pgt, l2, sizeof(pmd_t) * PTRS_PER_PMD);
1524
1525 l3 = m2v(pgd[pgd_index(__START_KERNEL_map + PMD_SIZE)].pgd);
1526 l2 = m2v(l3[pud_index(__START_KERNEL_map + PMD_SIZE)].pud);
1527 memcpy(level2_fixmap_pgt, l2, sizeof(pmd_t) * PTRS_PER_PMD);
1528
Jeremy Fitzhardinged114e1982008-07-08 15:06:52 -07001529 /* Set up identity map */
Jeremy Fitzhardinge39dbc5b2008-07-08 15:06:53 -07001530 xen_map_identity_early(level2_ident_pgt, max_pfn);
Jeremy Fitzhardinged114e1982008-07-08 15:06:52 -07001531
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001532 /* Make pagetable pieces RO */
1533 set_page_prot(init_level4_pgt, PAGE_KERNEL_RO);
1534 set_page_prot(level3_ident_pgt, PAGE_KERNEL_RO);
1535 set_page_prot(level3_kernel_pgt, PAGE_KERNEL_RO);
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001536 set_page_prot(level2_kernel_pgt, PAGE_KERNEL_RO);
1537 set_page_prot(level2_fixmap_pgt, PAGE_KERNEL_RO);
1538
1539 /* Pin down new L4 */
Jeremy Fitzhardinge39dbc5b2008-07-08 15:06:53 -07001540 pin_pagetable_pfn(MMUEXT_PIN_L4_TABLE,
1541 PFN_DOWN(__pa_symbol(init_level4_pgt)));
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001542
1543 /* Unpin Xen-provided one */
1544 pin_pagetable_pfn(MMUEXT_UNPIN_TABLE, PFN_DOWN(__pa(pgd)));
1545
1546 /* Switch over */
1547 pgd = init_level4_pgt;
Jeremy Fitzhardinged6182fb2008-07-08 15:07:13 -07001548
1549 /*
1550 * At this stage there can be no user pgd, and no page
1551 * structure to attach it to, so make sure we just set kernel
1552 * pgd.
1553 */
1554 xen_mc_batch();
1555 __xen_write_cr3(true, __pa(pgd));
1556 xen_mc_issue(PARAVIRT_LAZY_CPU);
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001557
Jeremy Fitzhardinged114e1982008-07-08 15:06:52 -07001558 reserve_early(__pa(xen_start_info->pt_base),
1559 __pa(xen_start_info->pt_base +
1560 xen_start_info->nr_pt_frames * PAGE_SIZE),
1561 "XEN PAGETABLES");
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001562
1563 return pgd;
1564}
Jeremy Fitzhardinge39dbc5b2008-07-08 15:06:53 -07001565#else /* !CONFIG_X86_64 */
1566static pmd_t level2_kernel_pgt[PTRS_PER_PMD] __page_aligned_bss;
1567
Jeremy Fitzhardinged114e1982008-07-08 15:06:52 -07001568static __init pgd_t *xen_setup_kernel_pagetable(pgd_t *pgd, unsigned long max_pfn)
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001569{
Jeremy Fitzhardinge39dbc5b2008-07-08 15:06:53 -07001570 pmd_t *kernel_pmd;
1571
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001572 init_pg_tables_start = __pa(pgd);
1573 init_pg_tables_end = __pa(pgd) + xen_start_info->nr_pt_frames*PAGE_SIZE;
1574 max_pfn_mapped = PFN_DOWN(init_pg_tables_end + 512*1024);
1575
Jeremy Fitzhardinge39dbc5b2008-07-08 15:06:53 -07001576 kernel_pmd = m2v(pgd[KERNEL_PGD_BOUNDARY].pgd);
1577 memcpy(level2_kernel_pgt, kernel_pmd, sizeof(pmd_t) * PTRS_PER_PMD);
Jeremy Fitzhardinged114e1982008-07-08 15:06:52 -07001578
Jeremy Fitzhardinge39dbc5b2008-07-08 15:06:53 -07001579 xen_map_identity_early(level2_kernel_pgt, max_pfn);
1580
1581 memcpy(swapper_pg_dir, pgd, sizeof(pgd_t) * PTRS_PER_PGD);
1582 set_pgd(&swapper_pg_dir[KERNEL_PGD_BOUNDARY],
1583 __pgd(__pa(level2_kernel_pgt) | _PAGE_PRESENT));
1584
1585 set_page_prot(level2_kernel_pgt, PAGE_KERNEL_RO);
1586 set_page_prot(swapper_pg_dir, PAGE_KERNEL_RO);
1587 set_page_prot(empty_zero_page, PAGE_KERNEL_RO);
1588
1589 pin_pagetable_pfn(MMUEXT_UNPIN_TABLE, PFN_DOWN(__pa(pgd)));
1590
1591 xen_write_cr3(__pa(swapper_pg_dir));
1592
1593 pin_pagetable_pfn(MMUEXT_PIN_L3_TABLE, PFN_DOWN(__pa(swapper_pg_dir)));
1594
1595 return swapper_pg_dir;
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001596}
1597#endif /* CONFIG_X86_64 */
1598
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001599/* First C function to be called on Xen boot */
1600asmlinkage void __init xen_start_kernel(void)
1601{
1602 pgd_t *pgd;
1603
1604 if (!xen_start_info)
1605 return;
1606
Jeremy Fitzhardinge7999f4b2007-12-10 13:00:41 -08001607 BUG_ON(memcmp(xen_start_info->magic, "xen-3", 5) != 0);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001608
Jeremy Fitzhardingee57778a2008-06-16 04:30:02 -07001609 xen_setup_features();
1610
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001611 /* Install Xen paravirt ops */
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001612 pv_info = xen_info;
1613 pv_init_ops = xen_init_ops;
1614 pv_time_ops = xen_time_ops;
1615 pv_cpu_ops = xen_cpu_ops;
1616 pv_irq_ops = xen_irq_ops;
1617 pv_apic_ops = xen_apic_ops;
1618 pv_mmu_ops = xen_mmu_ops;
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001619
Jeremy Fitzhardingee57778a2008-06-16 04:30:02 -07001620 if (xen_feature(XENFEAT_mmu_pt_update_preserve_ad)) {
1621 pv_mmu_ops.ptep_modify_prot_start = xen_ptep_modify_prot_start;
1622 pv_mmu_ops.ptep_modify_prot_commit = xen_ptep_modify_prot_commit;
1623 }
1624
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -07001625 machine_ops = xen_machine_ops;
1626
Jeremy Fitzhardingef5d36de2008-07-08 15:06:39 -07001627#ifdef CONFIG_X86_64
1628 /* Disable until direct per-cpu data access. */
1629 have_vcpu_info_placement = 0;
Jeremy Fitzhardinge5b09b282008-07-08 15:06:42 -07001630 x86_64_init_pda();
Jeremy Fitzhardingef5d36de2008-07-08 15:06:39 -07001631#endif
1632
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -07001633 xen_smp_init();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001634
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001635 /* Get mfn list */
1636 if (!xen_feature(XENFEAT_auto_translated_physmap))
Jeremy Fitzhardinged451bb72008-05-26 23:31:18 +01001637 xen_build_dynamic_phys_to_machine();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001638
1639 pgd = (pgd_t *)xen_start_info->pt_base;
1640
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001641 /* Prevent unwanted bits from being set in PTEs. */
1642 __supported_pte_mask &= ~_PAGE_GLOBAL;
1643 if (!is_initial_xendomain())
1644 __supported_pte_mask &= ~(_PAGE_PWT | _PAGE_PCD);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001645
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001646 /* Don't do the full vcpu_info placement stuff until we have a
1647 possible map and a non-dummy shared_info. */
1648 per_cpu(xen_vcpu, 0) = &HYPERVISOR_shared_info->vcpu_info[0];
1649
1650 xen_raw_console_write("mapping kernel into physical memory\n");
Jeremy Fitzhardinged114e1982008-07-08 15:06:52 -07001651 pgd = xen_setup_kernel_pagetable(pgd, xen_start_info->nr_pages);
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001652
1653 init_mm.pgd = pgd;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001654
1655 /* keep using Xen gdt for now; no urgent need to change it */
1656
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001657 pv_info.kernel_rpl = 1;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001658 if (xen_feature(XENFEAT_supervisor_mode_kernel))
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001659 pv_info.kernel_rpl = 0;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001660
1661 /* set the limit of our address space */
Jeremy Fitzhardingefb1d8402007-10-16 11:51:31 -07001662 xen_reserve_top();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001663
Jeremy Fitzhardinge7d087b62008-07-08 15:06:48 -07001664#ifdef CONFIG_X86_32
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001665 /* set up basic CPUID stuff */
1666 cpu_detect(&new_cpu_data);
1667 new_cpu_data.hard_math = 1;
1668 new_cpu_data.x86_capability[0] = cpuid_edx(1);
Jeremy Fitzhardinge7d087b62008-07-08 15:06:48 -07001669#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001670
1671 /* Poke various useful things into boot_params */
H. Peter Anvin30c82642007-10-15 17:13:22 -07001672 boot_params.hdr.type_of_loader = (9 << 4) | 0;
1673 boot_params.hdr.ramdisk_image = xen_start_info->mod_start
1674 ? __pa(xen_start_info->mod_start) : 0;
1675 boot_params.hdr.ramdisk_size = xen_start_info->mod_len;
Jeremy Fitzhardingeb7c3c5c2008-07-08 15:07:07 -07001676 boot_params.hdr.cmd_line_ptr = __pa(xen_start_info->cmd_line);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001677
Markus Armbruster9e124fe2008-05-26 23:31:07 +01001678 if (!is_initial_xendomain()) {
Jeremy Fitzhardinge83abc702008-05-26 23:31:12 +01001679 add_preferred_console("xenboot", 0, NULL);
Markus Armbruster9e124fe2008-05-26 23:31:07 +01001680 add_preferred_console("tty", 0, NULL);
Markus Armbrusterb8c2d3d2008-02-27 14:56:35 +01001681 add_preferred_console("hvc", 0, NULL);
Markus Armbruster9e124fe2008-05-26 23:31:07 +01001682 }
Markus Armbrusterb8c2d3d2008-02-27 14:56:35 +01001683
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001684 xen_raw_console_write("about to get started...\n");
1685
1686#if 0
1687 xen_raw_printk("&boot_params=%p __pa(&boot_params)=%lx __va(__pa(&boot_params))=%lx\n",
1688 &boot_params, __pa_symbol(&boot_params),
1689 __va(__pa_symbol(&boot_params)));
1690
1691 walk(pgd, &boot_params);
1692 walk(pgd, __va(__pa(&boot_params)));
1693#endif
1694
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001695 /* Start the world */
Jeremy Fitzhardingef5d36de2008-07-08 15:06:39 -07001696#ifdef CONFIG_X86_32
Yinghai Luf0d43102008-05-29 12:56:36 -07001697 i386_start_kernel();
Jeremy Fitzhardingef5d36de2008-07-08 15:06:39 -07001698#else
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001699 x86_64_start_reservations((char *)__pa_symbol(&boot_params));
Jeremy Fitzhardingef5d36de2008-07-08 15:06:39 -07001700#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001701}