blob: b011e4a5dbbe6c1fed33053a077a094ded4313af [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>
Jeremy Fitzhardinge11539682008-07-08 15:07:16 -070044#include <asm/msr-index.h>
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070045#include <asm/setup.h>
46#include <asm/desc.h>
47#include <asm/pgtable.h>
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070048#include <asm/tlbflush.h>
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -070049#include <asm/reboot.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/*
Jeremy Fitzhardingebf18bf92008-07-08 15:07:15 -070061 * Identity map, in addition to plain kernel map. This needs to be
62 * large enough to allocate page table pages to allocate the rest.
63 * Each page can map 2MB.
64 */
65static pte_t level1_ident_pgt[PTRS_PER_PTE * 4] __page_aligned_bss;
66
67#ifdef CONFIG_X86_64
68/* l3 pud for userspace vsyscall mapping */
69static pud_t level3_user_vsyscall[PTRS_PER_PUD] __page_aligned_bss;
70#endif /* CONFIG_X86_64 */
71
72/*
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -070073 * Note about cr3 (pagetable base) values:
74 *
75 * xen_cr3 contains the current logical cr3 value; it contains the
76 * last set cr3. This may not be the current effective cr3, because
77 * its update may be being lazily deferred. However, a vcpu looking
78 * at its own cr3 can use this value knowing that it everything will
79 * be self-consistent.
80 *
81 * xen_current_cr3 contains the actual vcpu cr3; it is set once the
82 * hypercall to set the vcpu cr3 is complete (so it may be a little
83 * out of date, but it will never be set early). If one vcpu is
84 * looking at another vcpu's cr3 value, it should use this variable.
85 */
86DEFINE_PER_CPU(unsigned long, xen_cr3); /* cr3 stored as physaddr */
87DEFINE_PER_CPU(unsigned long, xen_current_cr3); /* actual vcpu cr3 */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070088
89struct start_info *xen_start_info;
90EXPORT_SYMBOL_GPL(xen_start_info);
91
Jeremy Fitzhardingea0d695c2008-05-26 23:31:21 +010092struct shared_info xen_dummy_shared_info;
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -070093
94/*
95 * Point at some empty memory to start with. We map the real shared_info
96 * page as soon as fixmap is up and running.
97 */
Jeremy Fitzhardingea0d695c2008-05-26 23:31:21 +010098struct shared_info *HYPERVISOR_shared_info = (void *)&xen_dummy_shared_info;
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -070099
100/*
101 * Flag to determine whether vcpu info placement is available on all
102 * VCPUs. We assume it is to start with, and then set it to zero on
103 * the first failure. This is because it can succeed on some VCPUs
104 * and not others, since it can involve hypervisor memory allocation,
105 * or because the guest failed to guarantee all the appropriate
106 * constraints on all VCPUs (ie buffer can't cross a page boundary).
107 *
108 * Note that any particular CPU may be using a placed vcpu structure,
109 * but we can only optimise if the all are.
110 *
111 * 0: not available, 1: available
112 */
Jeremy Fitzhardinge04c44a02008-03-17 16:36:52 -0700113static int have_vcpu_info_placement = 1;
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700114
Jeremy Fitzhardinge9c7a7942008-05-31 01:33:02 +0100115static void xen_vcpu_setup(int cpu)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700116{
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700117 struct vcpu_register_vcpu_info info;
118 int err;
119 struct vcpu_info *vcpup;
120
Jeremy Fitzhardingea0d695c2008-05-26 23:31:21 +0100121 BUG_ON(HYPERVISOR_shared_info == &xen_dummy_shared_info);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700122 per_cpu(xen_vcpu, cpu) = &HYPERVISOR_shared_info->vcpu_info[cpu];
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700123
124 if (!have_vcpu_info_placement)
125 return; /* already tested, not available */
126
127 vcpup = &per_cpu(xen_vcpu_info, cpu);
128
129 info.mfn = virt_to_mfn(vcpup);
130 info.offset = offset_in_page(vcpup);
131
Jeremy Fitzhardingee3d26972007-10-16 11:51:31 -0700132 printk(KERN_DEBUG "trying to map vcpu_info %d at %p, mfn %llx, offset %d\n",
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700133 cpu, vcpup, info.mfn, info.offset);
134
135 /* Check to see if the hypervisor will put the vcpu_info
136 structure where we want it, which allows direct access via
137 a percpu-variable. */
138 err = HYPERVISOR_vcpu_op(VCPUOP_register_vcpu_info, cpu, &info);
139
140 if (err) {
141 printk(KERN_DEBUG "register_vcpu_info failed: err=%d\n", err);
142 have_vcpu_info_placement = 0;
143 } else {
144 /* This cpu is using the registered vcpu info, even if
145 later ones fail to. */
146 per_cpu(xen_vcpu, cpu) = vcpup;
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -0700147
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700148 printk(KERN_DEBUG "cpu %d using vcpu_info at %p\n",
149 cpu, vcpup);
150 }
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700151}
152
Jeremy Fitzhardinge9c7a7942008-05-31 01:33:02 +0100153/*
154 * On restore, set the vcpu placement up again.
155 * If it fails, then we're in a bad state, since
156 * we can't back out from using it...
157 */
158void xen_vcpu_restore(void)
159{
160 if (have_vcpu_info_placement) {
161 int cpu;
162
163 for_each_online_cpu(cpu) {
164 bool other_cpu = (cpu != smp_processor_id());
165
166 if (other_cpu &&
167 HYPERVISOR_vcpu_op(VCPUOP_down, cpu, NULL))
168 BUG();
169
170 xen_vcpu_setup(cpu);
171
172 if (other_cpu &&
173 HYPERVISOR_vcpu_op(VCPUOP_up, cpu, NULL))
174 BUG();
175 }
176
177 BUG_ON(!have_vcpu_info_placement);
178 }
179}
180
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700181static void __init xen_banner(void)
182{
Jeremy Fitzhardinge95c7c232008-07-15 13:42:34 -0700183 unsigned version = HYPERVISOR_xen_version(XENVER_version, NULL);
184 struct xen_extraversion extra;
185 HYPERVISOR_xen_version(XENVER_extraversion, &extra);
186
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700187 printk(KERN_INFO "Booting paravirtualized kernel on %s\n",
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -0700188 pv_info.name);
Jeremy Fitzhardinge95c7c232008-07-15 13:42:34 -0700189 printk(KERN_INFO "Xen version: %d.%d%s%s\n",
190 version >> 16, version & 0xffff, extra.extraversion,
Jeremy Fitzhardingee57778a2008-06-16 04:30:02 -0700191 xen_feature(XENFEAT_mmu_pt_update_preserve_ad) ? " (preserve-AD)" : "");
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700192}
193
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100194static void xen_cpuid(unsigned int *ax, unsigned int *bx,
195 unsigned int *cx, unsigned int *dx)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700196{
197 unsigned maskedx = ~0;
198
199 /*
200 * Mask out inconvenient features, to try and disable as many
201 * unsupported kernel subsystems as possible.
202 */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100203 if (*ax == 1)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700204 maskedx = ~((1 << X86_FEATURE_APIC) | /* disable APIC */
205 (1 << X86_FEATURE_ACPI) | /* disable ACPI */
Jeremy Fitzhardingedbe9e992008-03-17 16:37:21 -0700206 (1 << X86_FEATURE_MCE) | /* disable MCE */
207 (1 << X86_FEATURE_MCA) | /* disable MCA */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700208 (1 << X86_FEATURE_ACC)); /* thermal monitoring */
209
210 asm(XEN_EMULATE_PREFIX "cpuid"
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100211 : "=a" (*ax),
212 "=b" (*bx),
213 "=c" (*cx),
214 "=d" (*dx)
215 : "0" (*ax), "2" (*cx));
216 *dx &= maskedx;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700217}
218
219static void xen_set_debugreg(int reg, unsigned long val)
220{
221 HYPERVISOR_set_debugreg(reg, val);
222}
223
224static unsigned long xen_get_debugreg(int reg)
225{
226 return HYPERVISOR_get_debugreg(reg);
227}
228
229static unsigned long xen_save_fl(void)
230{
231 struct vcpu_info *vcpu;
232 unsigned long flags;
233
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700234 vcpu = x86_read_percpu(xen_vcpu);
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700235
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700236 /* flag has opposite sense of mask */
237 flags = !vcpu->evtchn_upcall_mask;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700238
239 /* convert to IF type flag
240 -0 -> 0x00000000
241 -1 -> 0xffffffff
242 */
243 return (-flags) & X86_EFLAGS_IF;
244}
245
246static void xen_restore_fl(unsigned long flags)
247{
248 struct vcpu_info *vcpu;
249
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700250 /* convert from IF type flag */
251 flags = !(flags & X86_EFLAGS_IF);
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700252
253 /* There's a one instruction preempt window here. We need to
254 make sure we're don't switch CPUs between getting the vcpu
255 pointer and updating the mask. */
256 preempt_disable();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700257 vcpu = x86_read_percpu(xen_vcpu);
258 vcpu->evtchn_upcall_mask = flags;
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700259 preempt_enable_no_resched();
260
261 /* Doesn't matter if we get preempted here, because any
262 pending event will get dealt with anyway. */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700263
264 if (flags == 0) {
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700265 preempt_check_resched();
266 barrier(); /* unmask then check (avoid races) */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700267 if (unlikely(vcpu->evtchn_upcall_pending))
268 force_evtchn_callback();
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700269 }
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700270}
271
272static void xen_irq_disable(void)
273{
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700274 /* There's a one instruction preempt window here. We need to
275 make sure we're don't switch CPUs between getting the vcpu
276 pointer and updating the mask. */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700277 preempt_disable();
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700278 x86_read_percpu(xen_vcpu)->evtchn_upcall_mask = 1;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700279 preempt_enable_no_resched();
280}
281
282static void xen_irq_enable(void)
283{
284 struct vcpu_info *vcpu;
285
Jeremy Fitzhardinge239d1fc2008-05-26 23:31:05 +0100286 /* We don't need to worry about being preempted here, since
287 either a) interrupts are disabled, so no preemption, or b)
288 the caller is confused and is trying to re-enable interrupts
289 on an indeterminate processor. */
290
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700291 vcpu = x86_read_percpu(xen_vcpu);
292 vcpu->evtchn_upcall_mask = 0;
293
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700294 /* Doesn't matter if we get preempted here, because any
295 pending event will get dealt with anyway. */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700296
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700297 barrier(); /* unmask then check (avoid races) */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700298 if (unlikely(vcpu->evtchn_upcall_pending))
299 force_evtchn_callback();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700300}
301
302static void xen_safe_halt(void)
303{
304 /* Blocking includes an implicit local_irq_enable(). */
Jeremy Fitzhardinge349c7092008-05-26 23:31:02 +0100305 if (HYPERVISOR_sched_op(SCHEDOP_block, NULL) != 0)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700306 BUG();
307}
308
309static void xen_halt(void)
310{
311 if (irqs_disabled())
312 HYPERVISOR_vcpu_op(VCPUOP_down, smp_processor_id(), NULL);
313 else
314 xen_safe_halt();
315}
316
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -0700317static void xen_leave_lazy(void)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700318{
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -0700319 paravirt_leave_lazy(paravirt_get_lazy_mode());
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700320 xen_mc_flush();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700321}
322
323static unsigned long xen_store_tr(void)
324{
325 return 0;
326}
327
Jeremy Fitzhardingea05d2eb2008-07-27 08:45:02 -0700328/*
329 * If 'v' is a vmalloc mapping, then find the linear mapping of the
330 * page (if any) and also set its protections to match:
331 */
332static void set_aliased_prot(void *v, pgprot_t prot)
333{
334 int level;
335 pte_t *ptep;
336 pte_t pte;
337 unsigned long pfn;
338 struct page *page;
339
340 ptep = lookup_address((unsigned long)v, &level);
341 BUG_ON(ptep == NULL);
342
343 pfn = pte_pfn(*ptep);
344 page = pfn_to_page(pfn);
345
346 pte = pfn_pte(pfn, prot);
347
348 if (HYPERVISOR_update_va_mapping((unsigned long)v, pte, 0))
349 BUG();
350
351 if (!PageHighMem(page)) {
352 void *av = __va(PFN_PHYS(pfn));
353
354 if (av != v)
355 if (HYPERVISOR_update_va_mapping((unsigned long)av, pte, 0))
356 BUG();
357 } else
358 kmap_flush_unused();
359}
360
Jeremy Fitzhardinge38ffbe62008-07-23 14:21:18 -0700361static void xen_alloc_ldt(struct desc_struct *ldt, unsigned entries)
362{
Jeremy Fitzhardingea05d2eb2008-07-27 08:45:02 -0700363 const unsigned entries_per_page = PAGE_SIZE / LDT_ENTRY_SIZE;
Jeremy Fitzhardinge38ffbe62008-07-23 14:21:18 -0700364 int i;
365
Jeremy Fitzhardingea05d2eb2008-07-27 08:45:02 -0700366 for(i = 0; i < entries; i += entries_per_page)
367 set_aliased_prot(ldt + i, PAGE_KERNEL_RO);
Jeremy Fitzhardinge38ffbe62008-07-23 14:21:18 -0700368}
369
370static void xen_free_ldt(struct desc_struct *ldt, unsigned entries)
371{
Jeremy Fitzhardingea05d2eb2008-07-27 08:45:02 -0700372 const unsigned entries_per_page = PAGE_SIZE / LDT_ENTRY_SIZE;
Jeremy Fitzhardinge38ffbe62008-07-23 14:21:18 -0700373 int i;
374
Jeremy Fitzhardingea05d2eb2008-07-27 08:45:02 -0700375 for(i = 0; i < entries; i += entries_per_page)
376 set_aliased_prot(ldt + i, PAGE_KERNEL);
Jeremy Fitzhardinge38ffbe62008-07-23 14:21:18 -0700377}
378
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700379static void xen_set_ldt(const void *addr, unsigned entries)
380{
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700381 struct mmuext_op *op;
382 struct multicall_space mcs = xen_mc_entry(sizeof(*op));
383
384 op = mcs.args;
385 op->cmd = MMUEXT_SET_LDT;
Jan Beulich4dbf7af2008-01-30 13:33:14 +0100386 op->arg1.linear_addr = (unsigned long)addr;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700387 op->arg2.nr_ents = entries;
388
389 MULTI_mmuext_op(mcs.mc, op, 1, NULL, DOMID_SELF);
390
391 xen_mc_issue(PARAVIRT_LAZY_CPU);
392}
393
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100394static void xen_load_gdt(const struct desc_ptr *dtr)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700395{
396 unsigned long *frames;
397 unsigned long va = dtr->address;
398 unsigned int size = dtr->size + 1;
399 unsigned pages = (size + PAGE_SIZE - 1) / PAGE_SIZE;
400 int f;
401 struct multicall_space mcs;
402
403 /* A GDT can be up to 64k in size, which corresponds to 8192
404 8-byte entries, or 16 4k pages.. */
405
406 BUG_ON(size > 65536);
407 BUG_ON(va & ~PAGE_MASK);
408
409 mcs = xen_mc_entry(sizeof(*frames) * pages);
410 frames = mcs.args;
411
412 for (f = 0; va < dtr->address + size; va += PAGE_SIZE, f++) {
413 frames[f] = virt_to_mfn(va);
414 make_lowmem_page_readonly((void *)va);
415 }
416
417 MULTI_set_gdt(mcs.mc, frames, size / sizeof(struct desc_struct));
418
419 xen_mc_issue(PARAVIRT_LAZY_CPU);
420}
421
422static void load_TLS_descriptor(struct thread_struct *t,
423 unsigned int cpu, unsigned int i)
424{
425 struct desc_struct *gdt = get_cpu_gdt_table(cpu);
426 xmaddr_t maddr = virt_to_machine(&gdt[GDT_ENTRY_TLS_MIN+i]);
427 struct multicall_space mc = __xen_mc_entry(0);
428
429 MULTI_update_descriptor(mc.mc, maddr.maddr, t->tls_array[i]);
430}
431
432static void xen_load_tls(struct thread_struct *t, unsigned int cpu)
433{
Jeremy Fitzhardinge8b84ad92007-07-17 18:37:06 -0700434 /*
435 * XXX sleazy hack: If we're being called in a lazy-cpu zone,
436 * it means we're in a context switch, and %gs has just been
437 * saved. This means we can zero it out to prevent faults on
438 * exit from the hypervisor if the next process has no %gs.
439 * Either way, it has been saved, and the new value will get
440 * loaded properly. This will go away as soon as Xen has been
441 * modified to not save/restore %gs for normal hypercalls.
Eduardo Habkost8a954082008-07-08 15:07:10 -0700442 *
443 * On x86_64, this hack is not used for %gs, because gs points
444 * to KERNEL_GS_BASE (and uses it for PDA references), so we
445 * must not zero %gs on x86_64
446 *
447 * For x86_64, we need to zero %fs, otherwise we may get an
448 * exception between the new %fs descriptor being loaded and
449 * %fs being effectively cleared at __switch_to().
Jeremy Fitzhardinge8b84ad92007-07-17 18:37:06 -0700450 */
Eduardo Habkost8a954082008-07-08 15:07:10 -0700451 if (paravirt_get_lazy_mode() == PARAVIRT_LAZY_CPU) {
452#ifdef CONFIG_X86_32
Jeremy Fitzhardinge8b84ad92007-07-17 18:37:06 -0700453 loadsegment(gs, 0);
Eduardo Habkost8a954082008-07-08 15:07:10 -0700454#else
455 loadsegment(fs, 0);
456#endif
457 }
458
459 xen_mc_batch();
460
461 load_TLS_descriptor(t, cpu, 0);
462 load_TLS_descriptor(t, cpu, 1);
463 load_TLS_descriptor(t, cpu, 2);
464
465 xen_mc_issue(PARAVIRT_LAZY_CPU);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700466}
467
Eduardo Habkosta8fc1082008-07-08 15:07:05 -0700468#ifdef CONFIG_X86_64
469static void xen_load_gs_index(unsigned int idx)
470{
471 if (HYPERVISOR_set_segment_base(SEGBASE_GS_USER_SEL, idx))
472 BUG();
473}
474#endif
475
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700476static void xen_write_ldt_entry(struct desc_struct *dt, int entrynum,
Glauber de Oliveira Costa75b8bb32008-01-30 13:31:13 +0100477 const void *ptr)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700478{
479 unsigned long lp = (unsigned long)&dt[entrynum];
Jeremy Fitzhardingea05d2eb2008-07-27 08:45:02 -0700480 xmaddr_t mach_lp = arbitrary_virt_to_machine(lp);
Glauber de Oliveira Costa75b8bb32008-01-30 13:31:13 +0100481 u64 entry = *(u64 *)ptr;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700482
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700483 preempt_disable();
484
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700485 xen_mc_flush();
486 if (HYPERVISOR_update_descriptor(mach_lp.maddr, entry))
487 BUG();
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700488
489 preempt_enable();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700490}
491
Eduardo Habkoste176d362008-07-08 15:06:59 -0700492static int cvt_gate_to_trap(int vector, const gate_desc *val,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700493 struct trap_info *info)
494{
Eduardo Habkoste176d362008-07-08 15:06:59 -0700495 if (val->type != 0xf && val->type != 0xe)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700496 return 0;
497
498 info->vector = vector;
Eduardo Habkoste176d362008-07-08 15:06:59 -0700499 info->address = gate_offset(*val);
500 info->cs = gate_segment(*val);
501 info->flags = val->dpl;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700502 /* interrupt gates clear IF */
Eduardo Habkoste176d362008-07-08 15:06:59 -0700503 if (val->type == 0xe)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700504 info->flags |= 4;
505
506 return 1;
507}
508
509/* Locations of each CPU's IDT */
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100510static DEFINE_PER_CPU(struct desc_ptr, idt_desc);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700511
512/* Set an IDT entry. If the entry is part of the current IDT, then
513 also update Xen. */
Glauber de Oliveira Costa8d947342008-01-30 13:31:12 +0100514static void xen_write_idt_entry(gate_desc *dt, int entrynum, const gate_desc *g)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700515{
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700516 unsigned long p = (unsigned long)&dt[entrynum];
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700517 unsigned long start, end;
518
519 preempt_disable();
520
521 start = __get_cpu_var(idt_desc).address;
522 end = start + __get_cpu_var(idt_desc).size + 1;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700523
524 xen_mc_flush();
525
Glauber de Oliveira Costa8d947342008-01-30 13:31:12 +0100526 native_write_idt_entry(dt, entrynum, g);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700527
528 if (p >= start && (p + 8) <= end) {
529 struct trap_info info[2];
530
531 info[1].address = 0;
532
Eduardo Habkoste176d362008-07-08 15:06:59 -0700533 if (cvt_gate_to_trap(entrynum, g, &info[0]))
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700534 if (HYPERVISOR_set_trap_table(info))
535 BUG();
536 }
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700537
538 preempt_enable();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700539}
540
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100541static void xen_convert_trap_info(const struct desc_ptr *desc,
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700542 struct trap_info *traps)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700543{
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700544 unsigned in, out, count;
545
Eduardo Habkoste176d362008-07-08 15:06:59 -0700546 count = (desc->size+1) / sizeof(gate_desc);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700547 BUG_ON(count > 256);
548
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700549 for (in = out = 0; in < count; in++) {
Eduardo Habkoste176d362008-07-08 15:06:59 -0700550 gate_desc *entry = (gate_desc*)(desc->address) + in;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700551
Eduardo Habkoste176d362008-07-08 15:06:59 -0700552 if (cvt_gate_to_trap(in, entry, &traps[out]))
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700553 out++;
554 }
555 traps[out].address = 0;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700556}
557
558void xen_copy_trap_info(struct trap_info *traps)
559{
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100560 const struct desc_ptr *desc = &__get_cpu_var(idt_desc);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700561
562 xen_convert_trap_info(desc, traps);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700563}
564
565/* Load a new IDT into Xen. In principle this can be per-CPU, so we
566 hold a spinlock to protect the static traps[] array (static because
567 it avoids allocation, and saves stack space). */
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100568static void xen_load_idt(const struct desc_ptr *desc)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700569{
570 static DEFINE_SPINLOCK(lock);
571 static struct trap_info traps[257];
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700572
573 spin_lock(&lock);
574
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700575 __get_cpu_var(idt_desc) = *desc;
576
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700577 xen_convert_trap_info(desc, traps);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700578
579 xen_mc_flush();
580 if (HYPERVISOR_set_trap_table(traps))
581 BUG();
582
583 spin_unlock(&lock);
584}
585
586/* Write a GDT descriptor entry. Ignore LDT descriptors, since
587 they're handled differently. */
588static void xen_write_gdt_entry(struct desc_struct *dt, int entry,
Glauber de Oliveira Costa014b15b2008-01-30 13:31:13 +0100589 const void *desc, int type)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700590{
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700591 preempt_disable();
592
Glauber de Oliveira Costa014b15b2008-01-30 13:31:13 +0100593 switch (type) {
594 case DESC_LDT:
595 case DESC_TSS:
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700596 /* ignore */
597 break;
598
599 default: {
600 xmaddr_t maddr = virt_to_machine(&dt[entry]);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700601
602 xen_mc_flush();
Glauber de Oliveira Costa014b15b2008-01-30 13:31:13 +0100603 if (HYPERVISOR_update_descriptor(maddr.maddr, *(u64 *)desc))
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700604 BUG();
605 }
606
607 }
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700608
609 preempt_enable();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700610}
611
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100612static void xen_load_sp0(struct tss_struct *tss,
Jeremy Fitzhardingea05d2eb2008-07-27 08:45:02 -0700613 struct thread_struct *thread)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700614{
615 struct multicall_space mcs = xen_mc_entry(0);
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100616 MULTI_stack_switch(mcs.mc, __KERNEL_DS, thread->sp0);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700617 xen_mc_issue(PARAVIRT_LAZY_CPU);
618}
619
620static void xen_set_iopl_mask(unsigned mask)
621{
622 struct physdev_set_iopl set_iopl;
623
624 /* Force the change at ring 0. */
625 set_iopl.iopl = (mask == 0) ? 1 : (mask >> 12) & 3;
626 HYPERVISOR_physdev_op(PHYSDEVOP_set_iopl, &set_iopl);
627}
628
629static void xen_io_delay(void)
630{
631}
632
633#ifdef CONFIG_X86_LOCAL_APIC
Thomas Gleixner42e0a9a2008-01-30 13:30:15 +0100634static u32 xen_apic_read(unsigned long reg)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700635{
636 return 0;
637}
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700638
Thomas Gleixner42e0a9a2008-01-30 13:30:15 +0100639static void xen_apic_write(unsigned long reg, u32 val)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700640{
641 /* Warn to see if there's any stray references */
642 WARN_ON(1);
643}
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700644#endif
645
646static void xen_flush_tlb(void)
647{
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700648 struct mmuext_op *op;
Jeremy Fitzhardinge41e332b2008-04-02 10:54:09 -0700649 struct multicall_space mcs;
650
651 preempt_disable();
652
653 mcs = xen_mc_entry(sizeof(*op));
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700654
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700655 op = mcs.args;
656 op->cmd = MMUEXT_TLB_FLUSH_LOCAL;
657 MULTI_mmuext_op(mcs.mc, op, 1, NULL, DOMID_SELF);
658
659 xen_mc_issue(PARAVIRT_LAZY_MMU);
Jeremy Fitzhardinge41e332b2008-04-02 10:54:09 -0700660
661 preempt_enable();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700662}
663
664static void xen_flush_tlb_single(unsigned long addr)
665{
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700666 struct mmuext_op *op;
Jeremy Fitzhardinge41e332b2008-04-02 10:54:09 -0700667 struct multicall_space mcs;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700668
Jeremy Fitzhardinge41e332b2008-04-02 10:54:09 -0700669 preempt_disable();
670
671 mcs = xen_mc_entry(sizeof(*op));
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700672 op = mcs.args;
673 op->cmd = MMUEXT_INVLPG_LOCAL;
674 op->arg1.linear_addr = addr & PAGE_MASK;
675 MULTI_mmuext_op(mcs.mc, op, 1, NULL, DOMID_SELF);
676
677 xen_mc_issue(PARAVIRT_LAZY_MMU);
Jeremy Fitzhardinge41e332b2008-04-02 10:54:09 -0700678
679 preempt_enable();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700680}
681
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700682static void xen_flush_tlb_others(const cpumask_t *cpus, struct mm_struct *mm,
683 unsigned long va)
684{
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700685 struct {
686 struct mmuext_op op;
687 cpumask_t mask;
688 } *args;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700689 cpumask_t cpumask = *cpus;
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700690 struct multicall_space mcs;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700691
692 /*
693 * A couple of (to be removed) sanity checks:
694 *
695 * - current CPU must not be in mask
696 * - mask must exist :)
697 */
698 BUG_ON(cpus_empty(cpumask));
699 BUG_ON(cpu_isset(smp_processor_id(), cpumask));
700 BUG_ON(!mm);
701
702 /* If a CPU which we ran on has gone down, OK. */
703 cpus_and(cpumask, cpumask, cpu_online_map);
704 if (cpus_empty(cpumask))
705 return;
706
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700707 mcs = xen_mc_entry(sizeof(*args));
708 args = mcs.args;
709 args->mask = cpumask;
710 args->op.arg2.vcpumask = &args->mask;
711
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700712 if (va == TLB_FLUSH_ALL) {
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700713 args->op.cmd = MMUEXT_TLB_FLUSH_MULTI;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700714 } else {
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700715 args->op.cmd = MMUEXT_INVLPG_MULTI;
716 args->op.arg1.linear_addr = va;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700717 }
718
Jeremy Fitzhardinged66bf8f2007-07-17 18:37:06 -0700719 MULTI_mmuext_op(mcs.mc, &args->op, 1, NULL, DOMID_SELF);
720
721 xen_mc_issue(PARAVIRT_LAZY_MMU);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700722}
723
Jeremy Fitzhardinge7b1333a2008-05-26 23:31:01 +0100724static void xen_clts(void)
725{
726 struct multicall_space mcs;
727
728 mcs = xen_mc_entry(0);
729
730 MULTI_fpu_taskswitch(mcs.mc, 0);
731
732 xen_mc_issue(PARAVIRT_LAZY_CPU);
733}
734
735static void xen_write_cr0(unsigned long cr0)
736{
737 struct multicall_space mcs;
738
739 /* Only pay attention to cr0.TS; everything else is
740 ignored. */
741 mcs = xen_mc_entry(0);
742
743 MULTI_fpu_taskswitch(mcs.mc, (cr0 & X86_CR0_TS) != 0);
744
745 xen_mc_issue(PARAVIRT_LAZY_CPU);
746}
747
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700748static void xen_write_cr2(unsigned long cr2)
749{
750 x86_read_percpu(xen_vcpu)->arch.cr2 = cr2;
751}
752
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700753static unsigned long xen_read_cr2(void)
754{
755 return x86_read_percpu(xen_vcpu)->arch.cr2;
756}
757
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700758static unsigned long xen_read_cr2_direct(void)
759{
760 return x86_read_percpu(xen_vcpu_info.arch.cr2);
761}
762
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700763static void xen_write_cr4(unsigned long cr4)
764{
Jeremy Fitzhardinge2956a352008-05-26 23:31:04 +0100765 cr4 &= ~X86_CR4_PGE;
766 cr4 &= ~X86_CR4_PSE;
767
768 native_write_cr4(cr4);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700769}
770
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700771static unsigned long xen_read_cr3(void)
772{
773 return x86_read_percpu(xen_cr3);
774}
775
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -0700776static void set_current_cr3(void *v)
777{
778 x86_write_percpu(xen_current_cr3, (unsigned long)v);
779}
780
Jeremy Fitzhardinged6182fb2008-07-08 15:07:13 -0700781static void __xen_write_cr3(bool kernel, unsigned long cr3)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700782{
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -0700783 struct mmuext_op *op;
784 struct multicall_space mcs;
Jeremy Fitzhardinged6182fb2008-07-08 15:07:13 -0700785 unsigned long mfn;
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -0700786
Jeremy Fitzhardinged6182fb2008-07-08 15:07:13 -0700787 if (cr3)
788 mfn = pfn_to_mfn(PFN_DOWN(cr3));
789 else
790 mfn = 0;
791
792 WARN_ON(mfn == 0 && kernel);
793
794 mcs = __xen_mc_entry(sizeof(*op));
795
796 op = mcs.args;
797 op->cmd = kernel ? MMUEXT_NEW_BASEPTR : MMUEXT_NEW_USER_BASEPTR;
798 op->arg1.mfn = mfn;
799
800 MULTI_mmuext_op(mcs.mc, op, 1, NULL, DOMID_SELF);
801
802 if (kernel) {
803 x86_write_percpu(xen_cr3, cr3);
804
805 /* Update xen_current_cr3 once the batch has actually
806 been submitted. */
807 xen_mc_callback(set_current_cr3, (void *)cr3);
808 }
809}
810
811static void xen_write_cr3(unsigned long cr3)
812{
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700813 BUG_ON(preemptible());
814
Jeremy Fitzhardinged6182fb2008-07-08 15:07:13 -0700815 xen_mc_batch(); /* disables interrupts */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700816
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -0700817 /* Update while interrupts are disabled, so its atomic with
818 respect to ipis */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700819 x86_write_percpu(xen_cr3, cr3);
820
Jeremy Fitzhardinged6182fb2008-07-08 15:07:13 -0700821 __xen_write_cr3(true, cr3);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700822
Jeremy Fitzhardinged6182fb2008-07-08 15:07:13 -0700823#ifdef CONFIG_X86_64
824 {
825 pgd_t *user_pgd = xen_get_user_pgd(__va(cr3));
826 if (user_pgd)
827 __xen_write_cr3(false, __pa(user_pgd));
828 else
829 __xen_write_cr3(false, 0);
830 }
831#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700832
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -0700833 xen_mc_issue(PARAVIRT_LAZY_CPU); /* interrupts restored */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700834}
835
Jeremy Fitzhardinge11539682008-07-08 15:07:16 -0700836static int xen_write_msr_safe(unsigned int msr, unsigned low, unsigned high)
837{
838 int ret;
839
840 ret = 0;
841
842 switch(msr) {
843#ifdef CONFIG_X86_64
844 unsigned which;
845 u64 base;
846
847 case MSR_FS_BASE: which = SEGBASE_FS; goto set;
848 case MSR_KERNEL_GS_BASE: which = SEGBASE_GS_USER; goto set;
849 case MSR_GS_BASE: which = SEGBASE_GS_KERNEL; goto set;
850
851 set:
852 base = ((u64)high << 32) | low;
853 if (HYPERVISOR_set_segment_base(which, base) != 0)
854 ret = -EFAULT;
855 break;
856#endif
857 default:
858 ret = native_write_msr_safe(msr, low, high);
859 }
860
861 return ret;
862}
863
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700864/* Early in boot, while setting up the initial pagetable, assume
865 everything is pinned. */
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700866static __init void xen_alloc_pte_init(struct mm_struct *mm, u32 pfn)
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700867{
Jeremy Fitzhardingeaf7ae3b2008-04-02 10:54:12 -0700868#ifdef CONFIG_FLATMEM
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700869 BUG_ON(mem_map); /* should only be used early */
Jeremy Fitzhardingeaf7ae3b2008-04-02 10:54:12 -0700870#endif
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700871 make_lowmem_page_readonly(__va(PFN_PHYS(pfn)));
872}
873
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700874/* Early release_pte assumes that all pts are pinned, since there's
Jeremy Fitzhardinge1c70e9b2008-01-30 13:33:39 +0100875 only init_mm and anything attached to that is pinned. */
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700876static void xen_release_pte_init(u32 pfn)
Jeremy Fitzhardinge1c70e9b2008-01-30 13:33:39 +0100877{
878 make_lowmem_page_readwrite(__va(PFN_PHYS(pfn)));
879}
880
Mark McLoughlinf6433702008-04-02 15:36:36 +0100881static void pin_pagetable_pfn(unsigned cmd, unsigned long pfn)
Jeremy Fitzhardinge74260712007-10-16 11:51:30 -0700882{
883 struct mmuext_op op;
Mark McLoughlinf6433702008-04-02 15:36:36 +0100884 op.cmd = cmd;
Jeremy Fitzhardinge74260712007-10-16 11:51:30 -0700885 op.arg1.mfn = pfn_to_mfn(pfn);
886 if (HYPERVISOR_mmuext_op(&op, 1, NULL, DOMID_SELF))
887 BUG();
888}
889
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700890/* This needs to make sure the new pte page is pinned iff its being
891 attached to a pinned pagetable. */
Jeremy Fitzhardinge1c70e9b2008-01-30 13:33:39 +0100892static void xen_alloc_ptpage(struct mm_struct *mm, u32 pfn, unsigned level)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700893{
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700894 struct page *page = pfn_to_page(pfn);
895
896 if (PagePinned(virt_to_page(mm->pgd))) {
897 SetPagePinned(page);
898
Jeremy Fitzhardinge74260712007-10-16 11:51:30 -0700899 if (!PageHighMem(page)) {
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700900 make_lowmem_page_readonly(__va(PFN_PHYS(pfn)));
Mark McLoughlinf6433702008-04-02 15:36:36 +0100901 if (level == PT_PTE)
902 pin_pagetable_pfn(MMUEXT_PIN_L1_TABLE, pfn);
Jeremy Fitzhardinge74260712007-10-16 11:51:30 -0700903 } else
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700904 /* make sure there are no stray mappings of
905 this page */
906 kmap_flush_unused();
907 }
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700908}
909
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700910static void xen_alloc_pte(struct mm_struct *mm, u32 pfn)
Jeremy Fitzhardinge1c70e9b2008-01-30 13:33:39 +0100911{
Mark McLoughlinf6433702008-04-02 15:36:36 +0100912 xen_alloc_ptpage(mm, pfn, PT_PTE);
Jeremy Fitzhardinge1c70e9b2008-01-30 13:33:39 +0100913}
914
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700915static void xen_alloc_pmd(struct mm_struct *mm, u32 pfn)
Jeremy Fitzhardinge1c70e9b2008-01-30 13:33:39 +0100916{
Mark McLoughlinf6433702008-04-02 15:36:36 +0100917 xen_alloc_ptpage(mm, pfn, PT_PMD);
Jeremy Fitzhardinge1c70e9b2008-01-30 13:33:39 +0100918}
919
Jeremy Fitzhardinged6182fb2008-07-08 15:07:13 -0700920static int xen_pgd_alloc(struct mm_struct *mm)
921{
922 pgd_t *pgd = mm->pgd;
923 int ret = 0;
924
925 BUG_ON(PagePinned(virt_to_page(pgd)));
926
927#ifdef CONFIG_X86_64
928 {
929 struct page *page = virt_to_page(pgd);
Jeremy Fitzhardingebf18bf92008-07-08 15:07:15 -0700930 pgd_t *user_pgd;
Jeremy Fitzhardinged6182fb2008-07-08 15:07:13 -0700931
932 BUG_ON(page->private != 0);
933
Jeremy Fitzhardingebf18bf92008-07-08 15:07:15 -0700934 ret = -ENOMEM;
935
936 user_pgd = (pgd_t *)__get_free_page(GFP_KERNEL | __GFP_ZERO);
937 page->private = (unsigned long)user_pgd;
938
939 if (user_pgd != NULL) {
940 user_pgd[pgd_index(VSYSCALL_START)] =
941 __pgd(__pa(level3_user_vsyscall) | _PAGE_TABLE);
942 ret = 0;
943 }
Jeremy Fitzhardinged6182fb2008-07-08 15:07:13 -0700944
945 BUG_ON(PagePinned(virt_to_page(xen_get_user_pgd(pgd))));
946 }
947#endif
948
949 return ret;
950}
951
952static void xen_pgd_free(struct mm_struct *mm, pgd_t *pgd)
953{
954#ifdef CONFIG_X86_64
955 pgd_t *user_pgd = xen_get_user_pgd(pgd);
956
957 if (user_pgd)
958 free_page((unsigned long)user_pgd);
959#endif
960}
961
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700962/* This should never happen until we're OK to use struct page */
Mark McLoughlinf6433702008-04-02 15:36:36 +0100963static void xen_release_ptpage(u32 pfn, unsigned level)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700964{
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700965 struct page *page = pfn_to_page(pfn);
966
967 if (PagePinned(page)) {
Jeremy Fitzhardinge74260712007-10-16 11:51:30 -0700968 if (!PageHighMem(page)) {
Mark McLoughlina684d692008-04-02 15:36:37 +0100969 if (level == PT_PTE)
970 pin_pagetable_pfn(MMUEXT_UNPIN_TABLE, pfn);
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700971 make_lowmem_page_readwrite(__va(PFN_PHYS(pfn)));
Jeremy Fitzhardinge74260712007-10-16 11:51:30 -0700972 }
Mark McLoughlinc946c7d2008-04-02 15:36:38 +0100973 ClearPagePinned(page);
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700974 }
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700975}
976
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700977static void xen_release_pte(u32 pfn)
Mark McLoughlinf6433702008-04-02 15:36:36 +0100978{
979 xen_release_ptpage(pfn, PT_PTE);
980}
981
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -0700982static void xen_release_pmd(u32 pfn)
Mark McLoughlinf6433702008-04-02 15:36:36 +0100983{
984 xen_release_ptpage(pfn, PT_PMD);
985}
986
Jeremy Fitzhardingef6e58732008-07-08 15:06:38 -0700987#if PAGETABLE_LEVELS == 4
988static void xen_alloc_pud(struct mm_struct *mm, u32 pfn)
989{
990 xen_alloc_ptpage(mm, pfn, PT_PUD);
991}
992
993static void xen_release_pud(u32 pfn)
994{
995 xen_release_ptpage(pfn, PT_PUD);
996}
997#endif
998
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -0700999#ifdef CONFIG_HIGHPTE
1000static void *xen_kmap_atomic_pte(struct page *page, enum km_type type)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001001{
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -07001002 pgprot_t prot = PAGE_KERNEL;
1003
1004 if (PagePinned(page))
1005 prot = PAGE_KERNEL_RO;
1006
1007 if (0 && PageHighMem(page))
1008 printk("mapping highpte %lx type %d prot %s\n",
1009 page_to_pfn(page), type,
1010 (unsigned long)pgprot_val(prot) & _PAGE_RW ? "WRITE" : "READ");
1011
1012 return kmap_atomic_prot(page, type, prot);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001013}
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -07001014#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001015
Jeremy Fitzhardinge9a4029f2007-07-17 18:37:05 -07001016static __init pte_t mask_rw_pte(pte_t *ptep, pte_t pte)
1017{
1018 /* If there's an existing pte, then don't allow _PAGE_RW to be set */
1019 if (pte_val_ma(*ptep) & _PAGE_PRESENT)
1020 pte = __pte_ma(((pte_val_ma(*ptep) & _PAGE_RW) | ~_PAGE_RW) &
1021 pte_val_ma(pte));
1022
1023 return pte;
1024}
1025
1026/* Init-time set_pte while constructing initial pagetables, which
1027 doesn't allow RO pagetable pages to be remapped RW */
1028static __init void xen_set_pte_init(pte_t *ptep, pte_t pte)
1029{
1030 pte = mask_rw_pte(ptep, pte);
1031
1032 xen_set_pte(ptep, pte);
1033}
1034
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001035static __init void xen_pagetable_setup_start(pgd_t *base)
1036{
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001037}
1038
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +01001039void xen_setup_shared_info(void)
Jeremy Fitzhardinge2e8fe712008-03-17 16:36:53 -07001040{
1041 if (!xen_feature(XENFEAT_auto_translated_physmap)) {
Jeremy Fitzhardinge15664f92008-07-08 15:06:47 -07001042 set_fixmap(FIX_PARAVIRT_BOOTMAP,
1043 xen_start_info->shared_info);
Jeremy Fitzhardinge2e8fe712008-03-17 16:36:53 -07001044
Jeremy Fitzhardinge15664f92008-07-08 15:06:47 -07001045 HYPERVISOR_shared_info =
1046 (struct shared_info *)fix_to_virt(FIX_PARAVIRT_BOOTMAP);
Jeremy Fitzhardinge2e8fe712008-03-17 16:36:53 -07001047 } else
1048 HYPERVISOR_shared_info =
1049 (struct shared_info *)__va(xen_start_info->shared_info);
1050
1051#ifndef CONFIG_SMP
1052 /* In UP this is as good a place as any to set up shared info */
1053 xen_setup_vcpu_info_placement();
1054#endif
Jeremy Fitzhardinged5edbc12008-05-26 23:31:22 +01001055
1056 xen_setup_mfn_list_list();
Jeremy Fitzhardinge2e8fe712008-03-17 16:36:53 -07001057}
1058
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001059static __init void xen_pagetable_setup_done(pgd_t *base)
1060{
Jeremy Fitzhardinge8745f8b2008-07-08 15:06:57 -07001061 xen_setup_shared_info();
1062}
1063
1064static __init void xen_post_allocator_init(void)
1065{
1066 pv_mmu_ops.set_pte = xen_set_pte;
1067 pv_mmu_ops.set_pmd = xen_set_pmd;
1068 pv_mmu_ops.set_pud = xen_set_pud;
1069#if PAGETABLE_LEVELS == 4
1070 pv_mmu_ops.set_pgd = xen_set_pgd;
1071#endif
1072
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -07001073 /* This will work as long as patching hasn't happened yet
1074 (which it hasn't) */
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -07001075 pv_mmu_ops.alloc_pte = xen_alloc_pte;
1076 pv_mmu_ops.alloc_pmd = xen_alloc_pmd;
1077 pv_mmu_ops.release_pte = xen_release_pte;
1078 pv_mmu_ops.release_pmd = xen_release_pmd;
Jeremy Fitzhardingef6e58732008-07-08 15:06:38 -07001079#if PAGETABLE_LEVELS == 4
1080 pv_mmu_ops.alloc_pud = xen_alloc_pud;
1081 pv_mmu_ops.release_pud = xen_release_pud;
1082#endif
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -07001083
Jeremy Fitzhardingebf18bf92008-07-08 15:07:15 -07001084#ifdef CONFIG_X86_64
1085 SetPagePinned(virt_to_page(level3_user_vsyscall));
1086#endif
Jeremy Fitzhardingee2426cf2008-05-31 01:24:27 +01001087 xen_mark_init_mm_pinned();
1088}
1089
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -07001090/* This is called once we have the cpu_possible_map */
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +01001091void xen_setup_vcpu_info_placement(void)
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -07001092{
1093 int cpu;
1094
1095 for_each_possible_cpu(cpu)
1096 xen_vcpu_setup(cpu);
1097
1098 /* xen_vcpu_setup managed to place the vcpu_info within the
1099 percpu area for all cpus, so make use of it */
Jeremy Fitzhardinge5b09b282008-07-08 15:06:42 -07001100#ifdef CONFIG_X86_32
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -07001101 if (have_vcpu_info_placement) {
1102 printk(KERN_INFO "Xen: using vcpu_info placement\n");
1103
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001104 pv_irq_ops.save_fl = xen_save_fl_direct;
1105 pv_irq_ops.restore_fl = xen_restore_fl_direct;
1106 pv_irq_ops.irq_disable = xen_irq_disable_direct;
1107 pv_irq_ops.irq_enable = xen_irq_enable_direct;
1108 pv_mmu_ops.read_cr2 = xen_read_cr2_direct;
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -07001109 }
Jeremy Fitzhardinge5b09b282008-07-08 15:06:42 -07001110#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001111}
1112
Andi Kleenab144f52007-08-10 22:31:03 +02001113static unsigned xen_patch(u8 type, u16 clobbers, void *insnbuf,
1114 unsigned long addr, unsigned len)
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -07001115{
1116 char *start, *end, *reloc;
1117 unsigned ret;
1118
1119 start = end = reloc = NULL;
1120
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001121#define SITE(op, x) \
1122 case PARAVIRT_PATCH(op.x): \
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -07001123 if (have_vcpu_info_placement) { \
1124 start = (char *)xen_##x##_direct; \
1125 end = xen_##x##_direct_end; \
1126 reloc = xen_##x##_direct_reloc; \
1127 } \
1128 goto patch_site
1129
1130 switch (type) {
Jeremy Fitzhardinge5b09b282008-07-08 15:06:42 -07001131#ifdef CONFIG_X86_32
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001132 SITE(pv_irq_ops, irq_enable);
1133 SITE(pv_irq_ops, irq_disable);
1134 SITE(pv_irq_ops, save_fl);
1135 SITE(pv_irq_ops, restore_fl);
Jeremy Fitzhardinge5b09b282008-07-08 15:06:42 -07001136#endif /* CONFIG_X86_32 */
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -07001137#undef SITE
1138
1139 patch_site:
1140 if (start == NULL || (end-start) > len)
1141 goto default_patch;
1142
Andi Kleenab144f52007-08-10 22:31:03 +02001143 ret = paravirt_patch_insns(insnbuf, len, start, end);
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -07001144
1145 /* Note: because reloc is assigned from something that
1146 appears to be an array, gcc assumes it's non-null,
1147 but doesn't know its relationship with start and
1148 end. */
1149 if (reloc > start && reloc < end) {
1150 int reloc_off = reloc - start;
Andi Kleenab144f52007-08-10 22:31:03 +02001151 long *relocp = (long *)(insnbuf + reloc_off);
1152 long delta = start - (char *)addr;
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -07001153
1154 *relocp += delta;
1155 }
1156 break;
1157
1158 default_patch:
1159 default:
Andi Kleenab144f52007-08-10 22:31:03 +02001160 ret = paravirt_patch_default(type, clobbers, insnbuf,
1161 addr, len);
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -07001162 break;
1163 }
1164
1165 return ret;
1166}
1167
Jeremy Fitzhardingeaeaaa592008-06-17 11:42:01 -07001168static void xen_set_fixmap(unsigned idx, unsigned long phys, pgprot_t prot)
1169{
1170 pte_t pte;
1171
1172 phys >>= PAGE_SHIFT;
1173
1174 switch (idx) {
1175 case FIX_BTMAP_END ... FIX_BTMAP_BEGIN:
1176#ifdef CONFIG_X86_F00F_BUG
1177 case FIX_F00F_IDT:
1178#endif
Jeremy Fitzhardinge15664f92008-07-08 15:06:47 -07001179#ifdef CONFIG_X86_32
Jeremy Fitzhardingeaeaaa592008-06-17 11:42:01 -07001180 case FIX_WP_TEST:
1181 case FIX_VDSO:
Ingo Molnarb3fe1242008-07-09 13:45:33 +02001182# ifdef CONFIG_HIGHMEM
Jeremy Fitzhardinge15664f92008-07-08 15:06:47 -07001183 case FIX_KMAP_BEGIN ... FIX_KMAP_END:
Ingo Molnarb3fe1242008-07-09 13:45:33 +02001184# endif
Jeremy Fitzhardinge15664f92008-07-08 15:06:47 -07001185#else
1186 case VSYSCALL_LAST_PAGE ... VSYSCALL_FIRST_PAGE:
1187#endif
Jeremy Fitzhardingeaeaaa592008-06-17 11:42:01 -07001188#ifdef CONFIG_X86_LOCAL_APIC
1189 case FIX_APIC_BASE: /* maps dummy local APIC */
1190#endif
1191 pte = pfn_pte(phys, prot);
1192 break;
1193
1194 default:
1195 pte = mfn_pte(phys, prot);
1196 break;
1197 }
1198
1199 __native_set_fixmap(idx, pte);
Jeremy Fitzhardingebf18bf92008-07-08 15:07:15 -07001200
1201#ifdef CONFIG_X86_64
1202 /* Replicate changes to map the vsyscall page into the user
1203 pagetable vsyscall mapping. */
1204 if (idx >= VSYSCALL_LAST_PAGE && idx <= VSYSCALL_FIRST_PAGE) {
1205 unsigned long vaddr = __fix_to_virt(idx);
1206 set_pte_vaddr_pud(level3_user_vsyscall, vaddr, pte);
1207 }
1208#endif
Jeremy Fitzhardingeaeaaa592008-06-17 11:42:01 -07001209}
1210
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001211static const struct pv_info xen_info __initdata = {
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001212 .paravirt_enabled = 1,
1213 .shared_kernel_pmd = 0,
1214
1215 .name = "Xen",
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001216};
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001217
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001218static const struct pv_init_ops xen_init_ops __initdata = {
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -07001219 .patch = xen_patch,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001220
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001221 .banner = xen_banner,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001222 .memory_setup = xen_memory_setup,
1223 .arch_setup = xen_arch_setup,
Jeremy Fitzhardingee2426cf2008-05-31 01:24:27 +01001224 .post_allocator_init = xen_post_allocator_init,
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001225};
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001226
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001227static const struct pv_time_ops xen_time_ops __initdata = {
Jeremy Fitzhardinge15c84732007-07-17 18:37:05 -07001228 .time_init = xen_time_init,
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001229
Jeremy Fitzhardinge15c84732007-07-17 18:37:05 -07001230 .set_wallclock = xen_set_wallclock,
1231 .get_wallclock = xen_get_wallclock,
Alok Katariae93ef942008-07-01 11:43:36 -07001232 .get_tsc_khz = xen_tsc_khz,
Jeremy Fitzhardingeab550282007-07-17 18:37:05 -07001233 .sched_clock = xen_sched_clock,
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001234};
Jeremy Fitzhardinge15c84732007-07-17 18:37:05 -07001235
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001236static const struct pv_cpu_ops xen_cpu_ops __initdata = {
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001237 .cpuid = xen_cpuid,
1238
1239 .set_debugreg = xen_set_debugreg,
1240 .get_debugreg = xen_get_debugreg,
1241
Jeremy Fitzhardinge7b1333a2008-05-26 23:31:01 +01001242 .clts = xen_clts,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001243
1244 .read_cr0 = native_read_cr0,
Jeremy Fitzhardinge7b1333a2008-05-26 23:31:01 +01001245 .write_cr0 = xen_write_cr0,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001246
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001247 .read_cr4 = native_read_cr4,
1248 .read_cr4_safe = native_read_cr4_safe,
1249 .write_cr4 = xen_write_cr4,
1250
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001251 .wbinvd = native_wbinvd,
1252
1253 .read_msr = native_read_msr_safe,
Jeremy Fitzhardinge11539682008-07-08 15:07:16 -07001254 .write_msr = xen_write_msr_safe,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001255 .read_tsc = native_read_tsc,
1256 .read_pmc = native_read_pmc,
1257
Jeremy Fitzhardinge81e103f2008-04-17 17:40:51 +02001258 .iret = xen_iret,
Jeremy Fitzhardinged75cd222008-06-25 00:19:26 -04001259 .irq_enable_sysexit = xen_sysexit,
Jeremy Fitzhardinge6fcac6d2008-07-08 15:07:14 -07001260#ifdef CONFIG_X86_64
1261 .usergs_sysret32 = xen_sysret32,
1262 .usergs_sysret64 = xen_sysret64,
1263#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001264
1265 .load_tr_desc = paravirt_nop,
1266 .set_ldt = xen_set_ldt,
1267 .load_gdt = xen_load_gdt,
1268 .load_idt = xen_load_idt,
1269 .load_tls = xen_load_tls,
Eduardo Habkosta8fc1082008-07-08 15:07:05 -07001270#ifdef CONFIG_X86_64
1271 .load_gs_index = xen_load_gs_index,
1272#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001273
Jeremy Fitzhardinge38ffbe62008-07-23 14:21:18 -07001274 .alloc_ldt = xen_alloc_ldt,
1275 .free_ldt = xen_free_ldt,
1276
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001277 .store_gdt = native_store_gdt,
1278 .store_idt = native_store_idt,
1279 .store_tr = xen_store_tr,
1280
1281 .write_ldt_entry = xen_write_ldt_entry,
1282 .write_gdt_entry = xen_write_gdt_entry,
1283 .write_idt_entry = xen_write_idt_entry,
H. Peter Anvinfaca6222008-01-30 13:31:02 +01001284 .load_sp0 = xen_load_sp0,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001285
1286 .set_iopl_mask = xen_set_iopl_mask,
1287 .io_delay = xen_io_delay,
1288
Jeremy Fitzhardinge952d1d72008-07-08 15:07:01 -07001289 /* Xen takes care of %gs when switching to usermode for us */
1290 .swapgs = paravirt_nop,
1291
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -07001292 .lazy_mode = {
1293 .enter = paravirt_enter_lazy_cpu,
1294 .leave = xen_leave_lazy,
1295 },
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001296};
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001297
Jeremy Fitzhardinge0725cbb2008-07-08 15:07:03 -07001298static void __init __xen_init_IRQ(void)
1299{
1300#ifdef CONFIG_X86_64
1301 int i;
1302
1303 /* Create identity vector->irq map */
1304 for(i = 0; i < NR_VECTORS; i++) {
1305 int cpu;
1306
1307 for_each_possible_cpu(cpu)
1308 per_cpu(vector_irq, cpu)[i] = i;
1309 }
1310#endif /* CONFIG_X86_64 */
1311
1312 xen_init_IRQ();
1313}
1314
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001315static const struct pv_irq_ops xen_irq_ops __initdata = {
Jeremy Fitzhardinge0725cbb2008-07-08 15:07:03 -07001316 .init_IRQ = __xen_init_IRQ,
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001317 .save_fl = xen_save_fl,
1318 .restore_fl = xen_restore_fl,
1319 .irq_disable = xen_irq_disable,
1320 .irq_enable = xen_irq_enable,
1321 .safe_halt = xen_safe_halt,
1322 .halt = xen_halt,
Jeremy Fitzhardingefab58422008-06-25 00:19:31 -04001323#ifdef CONFIG_X86_64
Jeremy Fitzhardinge997409d2008-07-08 15:07:00 -07001324 .adjust_exception_frame = xen_adjust_exception_frame,
Jeremy Fitzhardingefab58422008-06-25 00:19:31 -04001325#endif
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001326};
1327
1328static const struct pv_apic_ops xen_apic_ops __initdata = {
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001329#ifdef CONFIG_X86_LOCAL_APIC
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -07001330 .apic_write = xen_apic_write,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001331 .apic_read = xen_apic_read,
1332 .setup_boot_clock = paravirt_nop,
1333 .setup_secondary_clock = paravirt_nop,
1334 .startup_ipi_hook = paravirt_nop,
1335#endif
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001336};
1337
1338static const struct pv_mmu_ops xen_mmu_ops __initdata = {
1339 .pagetable_setup_start = xen_pagetable_setup_start,
1340 .pagetable_setup_done = xen_pagetable_setup_done,
1341
1342 .read_cr2 = xen_read_cr2,
1343 .write_cr2 = xen_write_cr2,
1344
1345 .read_cr3 = xen_read_cr3,
1346 .write_cr3 = xen_write_cr3,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001347
1348 .flush_tlb_user = xen_flush_tlb,
1349 .flush_tlb_kernel = xen_flush_tlb,
1350 .flush_tlb_single = xen_flush_tlb_single,
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -07001351 .flush_tlb_others = xen_flush_tlb_others,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001352
1353 .pte_update = paravirt_nop,
1354 .pte_update_defer = paravirt_nop,
1355
Jeremy Fitzhardinged6182fb2008-07-08 15:07:13 -07001356 .pgd_alloc = xen_pgd_alloc,
1357 .pgd_free = xen_pgd_free,
Jeremy Fitzhardingeeba00452008-06-25 00:19:12 -04001358
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -07001359 .alloc_pte = xen_alloc_pte_init,
1360 .release_pte = xen_release_pte_init,
1361 .alloc_pmd = xen_alloc_pte_init,
1362 .alloc_pmd_clone = paravirt_nop,
1363 .release_pmd = xen_release_pte_init,
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -07001364
1365#ifdef CONFIG_HIGHPTE
1366 .kmap_atomic_pte = xen_kmap_atomic_pte,
1367#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001368
Jeremy Fitzhardinge22911b32008-07-08 15:06:51 -07001369#ifdef CONFIG_X86_64
1370 .set_pte = xen_set_pte,
1371#else
Jeremy Fitzhardinge851fa3c2008-07-08 15:06:33 -07001372 .set_pte = xen_set_pte_init,
Jeremy Fitzhardinge22911b32008-07-08 15:06:51 -07001373#endif
Jeremy Fitzhardinge3b827c12007-07-17 18:37:04 -07001374 .set_pte_at = xen_set_pte_at,
Jeremy Fitzhardingee2426cf2008-05-31 01:24:27 +01001375 .set_pmd = xen_set_pmd_hyper,
Jeremy Fitzhardinge3b827c12007-07-17 18:37:04 -07001376
Jeremy Fitzhardinge08b882c2008-06-16 04:30:01 -07001377 .ptep_modify_prot_start = __ptep_modify_prot_start,
1378 .ptep_modify_prot_commit = __ptep_modify_prot_commit,
1379
Jeremy Fitzhardinge3b827c12007-07-17 18:37:04 -07001380 .pte_val = xen_pte_val,
Eduardo Habkostb56afe12008-07-24 12:15:45 -03001381 .pte_flags = native_pte_flags,
Jeremy Fitzhardinge3b827c12007-07-17 18:37:04 -07001382 .pgd_val = xen_pgd_val,
1383
1384 .make_pte = xen_make_pte,
1385 .make_pgd = xen_make_pgd,
1386
Jeremy Fitzhardingef6e58732008-07-08 15:06:38 -07001387#ifdef CONFIG_X86_PAE
Jeremy Fitzhardinge3b827c12007-07-17 18:37:04 -07001388 .set_pte_atomic = xen_set_pte_atomic,
1389 .set_pte_present = xen_set_pte_at,
Jeremy Fitzhardinge3b827c12007-07-17 18:37:04 -07001390 .pte_clear = xen_pte_clear,
1391 .pmd_clear = xen_pmd_clear,
Jeremy Fitzhardingef6e58732008-07-08 15:06:38 -07001392#endif /* CONFIG_X86_PAE */
1393 .set_pud = xen_set_pud_hyper,
Jeremy Fitzhardinge3b827c12007-07-17 18:37:04 -07001394
1395 .make_pmd = xen_make_pmd,
1396 .pmd_val = xen_pmd_val,
Jeremy Fitzhardinge3b827c12007-07-17 18:37:04 -07001397
Jeremy Fitzhardingef6e58732008-07-08 15:06:38 -07001398#if PAGETABLE_LEVELS == 4
1399 .pud_val = xen_pud_val,
1400 .make_pud = xen_make_pud,
1401 .set_pgd = xen_set_pgd_hyper,
1402
1403 .alloc_pud = xen_alloc_pte_init,
1404 .release_pud = xen_release_pte_init,
1405#endif /* PAGETABLE_LEVELS == 4 */
1406
Jeremy Fitzhardinge3b827c12007-07-17 18:37:04 -07001407 .activate_mm = xen_activate_mm,
1408 .dup_mmap = xen_dup_mmap,
1409 .exit_mmap = xen_exit_mmap,
1410
Jeremy Fitzhardinge8965c1c2007-10-16 11:51:29 -07001411 .lazy_mode = {
1412 .enter = paravirt_enter_lazy_mmu,
1413 .leave = xen_leave_lazy,
1414 },
Jeremy Fitzhardingeaeaaa592008-06-17 11:42:01 -07001415
1416 .set_fixmap = xen_set_fixmap,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001417};
1418
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -07001419static void xen_reboot(int reason)
1420{
Jeremy Fitzhardinge349c7092008-05-26 23:31:02 +01001421 struct sched_shutdown r = { .reason = reason };
1422
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -07001423#ifdef CONFIG_SMP
1424 smp_send_stop();
1425#endif
1426
Jeremy Fitzhardinge349c7092008-05-26 23:31:02 +01001427 if (HYPERVISOR_sched_op(SCHEDOP_shutdown, &r))
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -07001428 BUG();
1429}
1430
1431static void xen_restart(char *msg)
1432{
1433 xen_reboot(SHUTDOWN_reboot);
1434}
1435
1436static void xen_emergency_restart(void)
1437{
1438 xen_reboot(SHUTDOWN_reboot);
1439}
1440
1441static void xen_machine_halt(void)
1442{
1443 xen_reboot(SHUTDOWN_poweroff);
1444}
1445
1446static void xen_crash_shutdown(struct pt_regs *regs)
1447{
1448 xen_reboot(SHUTDOWN_crash);
1449}
1450
1451static const struct machine_ops __initdata xen_machine_ops = {
1452 .restart = xen_restart,
1453 .halt = xen_machine_halt,
1454 .power_off = xen_machine_halt,
1455 .shutdown = xen_machine_halt,
1456 .crash_shutdown = xen_crash_shutdown,
1457 .emergency_restart = xen_emergency_restart,
1458};
1459
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -07001460
Jeremy Fitzhardingefb1d8402007-10-16 11:51:31 -07001461static void __init xen_reserve_top(void)
1462{
Jeremy Fitzhardingef5d36de2008-07-08 15:06:39 -07001463#ifdef CONFIG_X86_32
Jeremy Fitzhardingefb1d8402007-10-16 11:51:31 -07001464 unsigned long top = HYPERVISOR_VIRT_START;
1465 struct xen_platform_parameters pp;
1466
1467 if (HYPERVISOR_xen_version(XENVER_platform_parameters, &pp) == 0)
1468 top = pp.virt_start;
1469
1470 reserve_top_address(-top + 2 * PAGE_SIZE);
Jeremy Fitzhardingef5d36de2008-07-08 15:06:39 -07001471#endif /* CONFIG_X86_32 */
Jeremy Fitzhardingefb1d8402007-10-16 11:51:31 -07001472}
1473
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001474/*
1475 * Like __va(), but returns address in the kernel mapping (which is
1476 * all we have until the physical memory mapping has been set up.
1477 */
1478static void *__ka(phys_addr_t paddr)
1479{
Jeremy Fitzhardinge39dbc5b2008-07-08 15:06:53 -07001480#ifdef CONFIG_X86_64
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001481 return (void *)(paddr + __START_KERNEL_map);
Jeremy Fitzhardinge39dbc5b2008-07-08 15:06:53 -07001482#else
1483 return __va(paddr);
1484#endif
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001485}
1486
1487/* Convert a machine address to physical address */
1488static unsigned long m2p(phys_addr_t maddr)
1489{
1490 phys_addr_t paddr;
1491
Jeremy Fitzhardinge59438c92008-07-21 22:59:42 -07001492 maddr &= PTE_PFN_MASK;
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001493 paddr = mfn_to_pfn(maddr >> PAGE_SHIFT) << PAGE_SHIFT;
1494
1495 return paddr;
1496}
1497
1498/* Convert a machine address to kernel virtual */
1499static void *m2v(phys_addr_t maddr)
1500{
1501 return __ka(m2p(maddr));
1502}
1503
Jeremy Fitzhardinge39dbc5b2008-07-08 15:06:53 -07001504#ifdef CONFIG_X86_64
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001505static void walk(pgd_t *pgd, unsigned long addr)
1506{
1507 unsigned l4idx = pgd_index(addr);
1508 unsigned l3idx = pud_index(addr);
1509 unsigned l2idx = pmd_index(addr);
1510 unsigned l1idx = pte_index(addr);
1511 pgd_t l4;
1512 pud_t l3;
1513 pmd_t l2;
1514 pte_t l1;
1515
1516 xen_raw_printk("walk %p, %lx -> %d %d %d %d\n",
1517 pgd, addr, l4idx, l3idx, l2idx, l1idx);
1518
1519 l4 = pgd[l4idx];
1520 xen_raw_printk(" l4: %016lx\n", l4.pgd);
1521 xen_raw_printk(" %016lx\n", pgd_val(l4));
1522
1523 l3 = ((pud_t *)(m2v(l4.pgd)))[l3idx];
1524 xen_raw_printk(" l3: %016lx\n", l3.pud);
1525 xen_raw_printk(" %016lx\n", pud_val(l3));
1526
1527 l2 = ((pmd_t *)(m2v(l3.pud)))[l2idx];
1528 xen_raw_printk(" l2: %016lx\n", l2.pmd);
1529 xen_raw_printk(" %016lx\n", pmd_val(l2));
1530
1531 l1 = ((pte_t *)(m2v(l2.pmd)))[l1idx];
1532 xen_raw_printk(" l1: %016lx\n", l1.pte);
1533 xen_raw_printk(" %016lx\n", pte_val(l1));
1534}
Jeremy Fitzhardinge39dbc5b2008-07-08 15:06:53 -07001535#endif
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001536
1537static void set_page_prot(void *addr, pgprot_t prot)
1538{
1539 unsigned long pfn = __pa(addr) >> PAGE_SHIFT;
1540 pte_t pte = pfn_pte(pfn, prot);
1541
Jeremy Fitzhardinge39dbc5b2008-07-08 15:06:53 -07001542 xen_raw_printk("addr=%p pfn=%lx mfn=%lx prot=%016llx pte=%016llx\n",
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001543 addr, pfn, get_phys_to_machine(pfn),
1544 pgprot_val(prot), pte.pte);
1545
1546 if (HYPERVISOR_update_va_mapping((unsigned long)addr, pte, 0))
1547 BUG();
1548}
1549
Jeremy Fitzhardinge39dbc5b2008-07-08 15:06:53 -07001550static __init void xen_map_identity_early(pmd_t *pmd, unsigned long max_pfn)
Jeremy Fitzhardinged114e1982008-07-08 15:06:52 -07001551{
1552 unsigned pmdidx, pteidx;
1553 unsigned ident_pte;
1554 unsigned long pfn;
1555
1556 ident_pte = 0;
1557 pfn = 0;
1558 for(pmdidx = 0; pmdidx < PTRS_PER_PMD && pfn < max_pfn; pmdidx++) {
1559 pte_t *pte_page;
1560
Jeremy Fitzhardinged114e1982008-07-08 15:06:52 -07001561 /* Reuse or allocate a page of ptes */
Jeremy Fitzhardinge39dbc5b2008-07-08 15:06:53 -07001562 if (pmd_present(pmd[pmdidx]))
1563 pte_page = m2v(pmd[pmdidx].pmd);
Jeremy Fitzhardinged114e1982008-07-08 15:06:52 -07001564 else {
1565 /* Check for free pte pages */
1566 if (ident_pte == ARRAY_SIZE(level1_ident_pgt))
1567 break;
1568
1569 pte_page = &level1_ident_pgt[ident_pte];
1570 ident_pte += PTRS_PER_PTE;
1571
Jeremy Fitzhardinge39dbc5b2008-07-08 15:06:53 -07001572 pmd[pmdidx] = __pmd(__pa(pte_page) | _PAGE_TABLE);
Jeremy Fitzhardinged114e1982008-07-08 15:06:52 -07001573 }
1574
1575 /* Install mappings */
1576 for(pteidx = 0; pteidx < PTRS_PER_PTE; pteidx++, pfn++) {
1577 pte_t pte;
1578
1579 if (pfn > max_pfn_mapped)
1580 max_pfn_mapped = pfn;
1581
1582 if (!pte_none(pte_page[pteidx]))
1583 continue;
1584
1585 pte = pfn_pte(pfn, PAGE_KERNEL_EXEC);
1586 pte_page[pteidx] = pte;
1587 }
1588 }
1589
1590 for(pteidx = 0; pteidx < ident_pte; pteidx += PTRS_PER_PTE)
1591 set_page_prot(&level1_ident_pgt[pteidx], PAGE_KERNEL_RO);
Jeremy Fitzhardinge39dbc5b2008-07-08 15:06:53 -07001592
1593 set_page_prot(pmd, PAGE_KERNEL_RO);
1594}
1595
1596#ifdef CONFIG_X86_64
1597static void convert_pfn_mfn(void *v)
1598{
1599 pte_t *pte = v;
1600 int i;
1601
1602 /* All levels are converted the same way, so just treat them
1603 as ptes. */
1604 for(i = 0; i < PTRS_PER_PTE; i++)
1605 pte[i] = xen_make_pte(pte[i].pte);
Jeremy Fitzhardinged114e1982008-07-08 15:06:52 -07001606}
1607
1608/*
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001609 * Set up the inital kernel pagetable.
1610 *
1611 * We can construct this by grafting the Xen provided pagetable into
1612 * head_64.S's preconstructed pagetables. We copy the Xen L2's into
1613 * level2_ident_pgt, level2_kernel_pgt and level2_fixmap_pgt. This
1614 * means that only the kernel has a physical mapping to start with -
1615 * but that's enough to get __va working. We need to fill in the rest
1616 * of the physical mapping once some sort of allocator has been set
1617 * up.
1618 */
Jeremy Fitzhardinged114e1982008-07-08 15:06:52 -07001619static __init pgd_t *xen_setup_kernel_pagetable(pgd_t *pgd, unsigned long max_pfn)
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001620{
1621 pud_t *l3;
1622 pmd_t *l2;
1623
1624 /* Zap identity mapping */
1625 init_level4_pgt[0] = __pgd(0);
1626
1627 /* Pre-constructed entries are in pfn, so convert to mfn */
1628 convert_pfn_mfn(init_level4_pgt);
1629 convert_pfn_mfn(level3_ident_pgt);
1630 convert_pfn_mfn(level3_kernel_pgt);
1631
1632 l3 = m2v(pgd[pgd_index(__START_KERNEL_map)].pgd);
1633 l2 = m2v(l3[pud_index(__START_KERNEL_map)].pud);
1634
1635 memcpy(level2_ident_pgt, l2, sizeof(pmd_t) * PTRS_PER_PMD);
1636 memcpy(level2_kernel_pgt, l2, sizeof(pmd_t) * PTRS_PER_PMD);
1637
1638 l3 = m2v(pgd[pgd_index(__START_KERNEL_map + PMD_SIZE)].pgd);
1639 l2 = m2v(l3[pud_index(__START_KERNEL_map + PMD_SIZE)].pud);
1640 memcpy(level2_fixmap_pgt, l2, sizeof(pmd_t) * PTRS_PER_PMD);
1641
Jeremy Fitzhardinged114e1982008-07-08 15:06:52 -07001642 /* Set up identity map */
Jeremy Fitzhardinge39dbc5b2008-07-08 15:06:53 -07001643 xen_map_identity_early(level2_ident_pgt, max_pfn);
Jeremy Fitzhardinged114e1982008-07-08 15:06:52 -07001644
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001645 /* Make pagetable pieces RO */
1646 set_page_prot(init_level4_pgt, PAGE_KERNEL_RO);
1647 set_page_prot(level3_ident_pgt, PAGE_KERNEL_RO);
1648 set_page_prot(level3_kernel_pgt, PAGE_KERNEL_RO);
Jeremy Fitzhardingebf18bf92008-07-08 15:07:15 -07001649 set_page_prot(level3_user_vsyscall, PAGE_KERNEL_RO);
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001650 set_page_prot(level2_kernel_pgt, PAGE_KERNEL_RO);
1651 set_page_prot(level2_fixmap_pgt, PAGE_KERNEL_RO);
1652
1653 /* Pin down new L4 */
Jeremy Fitzhardinge39dbc5b2008-07-08 15:06:53 -07001654 pin_pagetable_pfn(MMUEXT_PIN_L4_TABLE,
1655 PFN_DOWN(__pa_symbol(init_level4_pgt)));
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001656
1657 /* Unpin Xen-provided one */
1658 pin_pagetable_pfn(MMUEXT_UNPIN_TABLE, PFN_DOWN(__pa(pgd)));
1659
1660 /* Switch over */
1661 pgd = init_level4_pgt;
Jeremy Fitzhardinged6182fb2008-07-08 15:07:13 -07001662
1663 /*
1664 * At this stage there can be no user pgd, and no page
1665 * structure to attach it to, so make sure we just set kernel
1666 * pgd.
1667 */
1668 xen_mc_batch();
1669 __xen_write_cr3(true, __pa(pgd));
1670 xen_mc_issue(PARAVIRT_LAZY_CPU);
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001671
Jeremy Fitzhardinged114e1982008-07-08 15:06:52 -07001672 reserve_early(__pa(xen_start_info->pt_base),
1673 __pa(xen_start_info->pt_base +
1674 xen_start_info->nr_pt_frames * PAGE_SIZE),
1675 "XEN PAGETABLES");
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001676
1677 return pgd;
1678}
Jeremy Fitzhardinge39dbc5b2008-07-08 15:06:53 -07001679#else /* !CONFIG_X86_64 */
1680static pmd_t level2_kernel_pgt[PTRS_PER_PMD] __page_aligned_bss;
1681
Jeremy Fitzhardinged114e1982008-07-08 15:06:52 -07001682static __init pgd_t *xen_setup_kernel_pagetable(pgd_t *pgd, unsigned long max_pfn)
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001683{
Jeremy Fitzhardinge39dbc5b2008-07-08 15:06:53 -07001684 pmd_t *kernel_pmd;
1685
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001686 init_pg_tables_start = __pa(pgd);
1687 init_pg_tables_end = __pa(pgd) + xen_start_info->nr_pt_frames*PAGE_SIZE;
1688 max_pfn_mapped = PFN_DOWN(init_pg_tables_end + 512*1024);
1689
Jeremy Fitzhardinge39dbc5b2008-07-08 15:06:53 -07001690 kernel_pmd = m2v(pgd[KERNEL_PGD_BOUNDARY].pgd);
1691 memcpy(level2_kernel_pgt, kernel_pmd, sizeof(pmd_t) * PTRS_PER_PMD);
Jeremy Fitzhardinged114e1982008-07-08 15:06:52 -07001692
Jeremy Fitzhardinge39dbc5b2008-07-08 15:06:53 -07001693 xen_map_identity_early(level2_kernel_pgt, max_pfn);
1694
1695 memcpy(swapper_pg_dir, pgd, sizeof(pgd_t) * PTRS_PER_PGD);
1696 set_pgd(&swapper_pg_dir[KERNEL_PGD_BOUNDARY],
1697 __pgd(__pa(level2_kernel_pgt) | _PAGE_PRESENT));
1698
1699 set_page_prot(level2_kernel_pgt, PAGE_KERNEL_RO);
1700 set_page_prot(swapper_pg_dir, PAGE_KERNEL_RO);
1701 set_page_prot(empty_zero_page, PAGE_KERNEL_RO);
1702
1703 pin_pagetable_pfn(MMUEXT_UNPIN_TABLE, PFN_DOWN(__pa(pgd)));
1704
1705 xen_write_cr3(__pa(swapper_pg_dir));
1706
1707 pin_pagetable_pfn(MMUEXT_PIN_L3_TABLE, PFN_DOWN(__pa(swapper_pg_dir)));
1708
1709 return swapper_pg_dir;
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001710}
1711#endif /* CONFIG_X86_64 */
1712
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001713/* First C function to be called on Xen boot */
1714asmlinkage void __init xen_start_kernel(void)
1715{
1716 pgd_t *pgd;
1717
1718 if (!xen_start_info)
1719 return;
1720
Jeremy Fitzhardinge7999f4b2007-12-10 13:00:41 -08001721 BUG_ON(memcmp(xen_start_info->magic, "xen-3", 5) != 0);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001722
Jeremy Fitzhardingee57778a2008-06-16 04:30:02 -07001723 xen_setup_features();
1724
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001725 /* Install Xen paravirt ops */
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001726 pv_info = xen_info;
1727 pv_init_ops = xen_init_ops;
1728 pv_time_ops = xen_time_ops;
1729 pv_cpu_ops = xen_cpu_ops;
1730 pv_irq_ops = xen_irq_ops;
1731 pv_apic_ops = xen_apic_ops;
1732 pv_mmu_ops = xen_mmu_ops;
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001733
Jeremy Fitzhardingee57778a2008-06-16 04:30:02 -07001734 if (xen_feature(XENFEAT_mmu_pt_update_preserve_ad)) {
1735 pv_mmu_ops.ptep_modify_prot_start = xen_ptep_modify_prot_start;
1736 pv_mmu_ops.ptep_modify_prot_commit = xen_ptep_modify_prot_commit;
1737 }
1738
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -07001739 machine_ops = xen_machine_ops;
1740
Jeremy Fitzhardingef5d36de2008-07-08 15:06:39 -07001741#ifdef CONFIG_X86_64
1742 /* Disable until direct per-cpu data access. */
1743 have_vcpu_info_placement = 0;
Jeremy Fitzhardinge5b09b282008-07-08 15:06:42 -07001744 x86_64_init_pda();
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -07001745#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001746
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -07001747 xen_smp_init();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001748
1749 /* Get mfn list */
1750 if (!xen_feature(XENFEAT_auto_translated_physmap))
Jeremy Fitzhardinged451bb72008-05-26 23:31:18 +01001751 xen_build_dynamic_phys_to_machine();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001752
1753 pgd = (pgd_t *)xen_start_info->pt_base;
1754
Jeremy Fitzhardingeeb179e42008-06-16 15:01:53 -07001755 /* Prevent unwanted bits from being set in PTEs. */
1756 __supported_pte_mask &= ~_PAGE_GLOBAL;
1757 if (!is_initial_xendomain())
1758 __supported_pte_mask &= ~(_PAGE_PWT | _PAGE_PCD);
1759
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001760 /* Don't do the full vcpu_info placement stuff until we have a
1761 possible map and a non-dummy shared_info. */
1762 per_cpu(xen_vcpu, 0) = &HYPERVISOR_shared_info->vcpu_info[0];
1763
1764 xen_raw_console_write("mapping kernel into physical memory\n");
Jeremy Fitzhardinged114e1982008-07-08 15:06:52 -07001765 pgd = xen_setup_kernel_pagetable(pgd, xen_start_info->nr_pages);
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001766
1767 init_mm.pgd = pgd;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001768
1769 /* keep using Xen gdt for now; no urgent need to change it */
1770
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001771 pv_info.kernel_rpl = 1;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001772 if (xen_feature(XENFEAT_supervisor_mode_kernel))
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001773 pv_info.kernel_rpl = 0;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001774
1775 /* set the limit of our address space */
Jeremy Fitzhardingefb1d8402007-10-16 11:51:31 -07001776 xen_reserve_top();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001777
Jeremy Fitzhardinge7d087b62008-07-08 15:06:48 -07001778#ifdef CONFIG_X86_32
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001779 /* set up basic CPUID stuff */
1780 cpu_detect(&new_cpu_data);
1781 new_cpu_data.hard_math = 1;
1782 new_cpu_data.x86_capability[0] = cpuid_edx(1);
Jeremy Fitzhardinge7d087b62008-07-08 15:06:48 -07001783#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001784
1785 /* Poke various useful things into boot_params */
H. Peter Anvin30c82642007-10-15 17:13:22 -07001786 boot_params.hdr.type_of_loader = (9 << 4) | 0;
1787 boot_params.hdr.ramdisk_image = xen_start_info->mod_start
1788 ? __pa(xen_start_info->mod_start) : 0;
1789 boot_params.hdr.ramdisk_size = xen_start_info->mod_len;
Jeremy Fitzhardingeb7c3c5c2008-07-08 15:07:07 -07001790 boot_params.hdr.cmd_line_ptr = __pa(xen_start_info->cmd_line);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001791
Markus Armbruster9e124fe2008-05-26 23:31:07 +01001792 if (!is_initial_xendomain()) {
Jeremy Fitzhardinge83abc702008-05-26 23:31:12 +01001793 add_preferred_console("xenboot", 0, NULL);
Markus Armbruster9e124fe2008-05-26 23:31:07 +01001794 add_preferred_console("tty", 0, NULL);
Markus Armbrusterb8c2d3d2008-02-27 14:56:35 +01001795 add_preferred_console("hvc", 0, NULL);
Markus Armbruster9e124fe2008-05-26 23:31:07 +01001796 }
Markus Armbrusterb8c2d3d2008-02-27 14:56:35 +01001797
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001798 xen_raw_console_write("about to get started...\n");
1799
1800#if 0
1801 xen_raw_printk("&boot_params=%p __pa(&boot_params)=%lx __va(__pa(&boot_params))=%lx\n",
1802 &boot_params, __pa_symbol(&boot_params),
1803 __va(__pa_symbol(&boot_params)));
1804
1805 walk(pgd, &boot_params);
1806 walk(pgd, __va(__pa(&boot_params)));
1807#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001808
1809 /* Start the world */
Jeremy Fitzhardingef5d36de2008-07-08 15:06:39 -07001810#ifdef CONFIG_X86_32
Yinghai Luf0d43102008-05-29 12:56:36 -07001811 i386_start_kernel();
Jeremy Fitzhardingef5d36de2008-07-08 15:06:39 -07001812#else
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001813 x86_64_start_reservations((char *)__pa_symbol(&boot_params));
Jeremy Fitzhardingef5d36de2008-07-08 15:06:39 -07001814#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001815}