x86: change write_gdt_entry signature.
[safe/jmp/linux-2.6] / arch / x86 / xen / enlighten.c
1 /*
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>
18 #include <linux/hardirq.h>
19 #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>
25 #include <linux/mm.h>
26 #include <linux/page-flags.h>
27 #include <linux/highmem.h>
28
29 #include <xen/interface/xen.h>
30 #include <xen/interface/physdev.h>
31 #include <xen/interface/vcpu.h>
32 #include <xen/interface/sched.h>
33 #include <xen/features.h>
34 #include <xen/page.h>
35
36 #include <asm/paravirt.h>
37 #include <asm/page.h>
38 #include <asm/xen/hypercall.h>
39 #include <asm/xen/hypervisor.h>
40 #include <asm/fixmap.h>
41 #include <asm/processor.h>
42 #include <asm/setup.h>
43 #include <asm/desc.h>
44 #include <asm/pgtable.h>
45 #include <asm/tlbflush.h>
46 #include <asm/reboot.h>
47
48 #include "xen-ops.h"
49 #include "mmu.h"
50 #include "multicalls.h"
51
52 EXPORT_SYMBOL_GPL(hypercall_page);
53
54 DEFINE_PER_CPU(struct vcpu_info *, xen_vcpu);
55 DEFINE_PER_CPU(struct vcpu_info, xen_vcpu_info);
56
57 /*
58  * Note about cr3 (pagetable base) values:
59  *
60  * xen_cr3 contains the current logical cr3 value; it contains the
61  * last set cr3.  This may not be the current effective cr3, because
62  * its update may be being lazily deferred.  However, a vcpu looking
63  * at its own cr3 can use this value knowing that it everything will
64  * be self-consistent.
65  *
66  * xen_current_cr3 contains the actual vcpu cr3; it is set once the
67  * hypercall to set the vcpu cr3 is complete (so it may be a little
68  * out of date, but it will never be set early).  If one vcpu is
69  * looking at another vcpu's cr3 value, it should use this variable.
70  */
71 DEFINE_PER_CPU(unsigned long, xen_cr3);  /* cr3 stored as physaddr */
72 DEFINE_PER_CPU(unsigned long, xen_current_cr3);  /* actual vcpu cr3 */
73
74 struct start_info *xen_start_info;
75 EXPORT_SYMBOL_GPL(xen_start_info);
76
77 static /* __initdata */ struct shared_info dummy_shared_info;
78
79 /*
80  * Point at some empty memory to start with. We map the real shared_info
81  * page as soon as fixmap is up and running.
82  */
83 struct shared_info *HYPERVISOR_shared_info = (void *)&dummy_shared_info;
84
85 /*
86  * Flag to determine whether vcpu info placement is available on all
87  * VCPUs.  We assume it is to start with, and then set it to zero on
88  * the first failure.  This is because it can succeed on some VCPUs
89  * and not others, since it can involve hypervisor memory allocation,
90  * or because the guest failed to guarantee all the appropriate
91  * constraints on all VCPUs (ie buffer can't cross a page boundary).
92  *
93  * Note that any particular CPU may be using a placed vcpu structure,
94  * but we can only optimise if the all are.
95  *
96  * 0: not available, 1: available
97  */
98 static int have_vcpu_info_placement = 0;
99
100 static void __init xen_vcpu_setup(int cpu)
101 {
102         struct vcpu_register_vcpu_info info;
103         int err;
104         struct vcpu_info *vcpup;
105
106         per_cpu(xen_vcpu, cpu) = &HYPERVISOR_shared_info->vcpu_info[cpu];
107
108         if (!have_vcpu_info_placement)
109                 return;         /* already tested, not available */
110
111         vcpup = &per_cpu(xen_vcpu_info, cpu);
112
113         info.mfn = virt_to_mfn(vcpup);
114         info.offset = offset_in_page(vcpup);
115
116         printk(KERN_DEBUG "trying to map vcpu_info %d at %p, mfn %llx, offset %d\n",
117                cpu, vcpup, info.mfn, info.offset);
118
119         /* Check to see if the hypervisor will put the vcpu_info
120            structure where we want it, which allows direct access via
121            a percpu-variable. */
122         err = HYPERVISOR_vcpu_op(VCPUOP_register_vcpu_info, cpu, &info);
123
124         if (err) {
125                 printk(KERN_DEBUG "register_vcpu_info failed: err=%d\n", err);
126                 have_vcpu_info_placement = 0;
127         } else {
128                 /* This cpu is using the registered vcpu info, even if
129                    later ones fail to. */
130                 per_cpu(xen_vcpu, cpu) = vcpup;
131
132                 printk(KERN_DEBUG "cpu %d using vcpu_info at %p\n",
133                        cpu, vcpup);
134         }
135 }
136
137 static void __init xen_banner(void)
138 {
139         printk(KERN_INFO "Booting paravirtualized kernel on %s\n",
140                pv_info.name);
141         printk(KERN_INFO "Hypervisor signature: %s\n", xen_start_info->magic);
142 }
143
144 static void xen_cpuid(unsigned int *ax, unsigned int *bx,
145                       unsigned int *cx, unsigned int *dx)
146 {
147         unsigned maskedx = ~0;
148
149         /*
150          * Mask out inconvenient features, to try and disable as many
151          * unsupported kernel subsystems as possible.
152          */
153         if (*ax == 1)
154                 maskedx = ~((1 << X86_FEATURE_APIC) |  /* disable APIC */
155                             (1 << X86_FEATURE_ACPI) |  /* disable ACPI */
156                             (1 << X86_FEATURE_ACC));   /* thermal monitoring */
157
158         asm(XEN_EMULATE_PREFIX "cpuid"
159                 : "=a" (*ax),
160                   "=b" (*bx),
161                   "=c" (*cx),
162                   "=d" (*dx)
163                 : "0" (*ax), "2" (*cx));
164         *dx &= maskedx;
165 }
166
167 static void xen_set_debugreg(int reg, unsigned long val)
168 {
169         HYPERVISOR_set_debugreg(reg, val);
170 }
171
172 static unsigned long xen_get_debugreg(int reg)
173 {
174         return HYPERVISOR_get_debugreg(reg);
175 }
176
177 static unsigned long xen_save_fl(void)
178 {
179         struct vcpu_info *vcpu;
180         unsigned long flags;
181
182         vcpu = x86_read_percpu(xen_vcpu);
183
184         /* flag has opposite sense of mask */
185         flags = !vcpu->evtchn_upcall_mask;
186
187         /* convert to IF type flag
188            -0 -> 0x00000000
189            -1 -> 0xffffffff
190         */
191         return (-flags) & X86_EFLAGS_IF;
192 }
193
194 static void xen_restore_fl(unsigned long flags)
195 {
196         struct vcpu_info *vcpu;
197
198         /* convert from IF type flag */
199         flags = !(flags & X86_EFLAGS_IF);
200
201         /* There's a one instruction preempt window here.  We need to
202            make sure we're don't switch CPUs between getting the vcpu
203            pointer and updating the mask. */
204         preempt_disable();
205         vcpu = x86_read_percpu(xen_vcpu);
206         vcpu->evtchn_upcall_mask = flags;
207         preempt_enable_no_resched();
208
209         /* Doesn't matter if we get preempted here, because any
210            pending event will get dealt with anyway. */
211
212         if (flags == 0) {
213                 preempt_check_resched();
214                 barrier(); /* unmask then check (avoid races) */
215                 if (unlikely(vcpu->evtchn_upcall_pending))
216                         force_evtchn_callback();
217         }
218 }
219
220 static void xen_irq_disable(void)
221 {
222         /* There's a one instruction preempt window here.  We need to
223            make sure we're don't switch CPUs between getting the vcpu
224            pointer and updating the mask. */
225         preempt_disable();
226         x86_read_percpu(xen_vcpu)->evtchn_upcall_mask = 1;
227         preempt_enable_no_resched();
228 }
229
230 static void xen_irq_enable(void)
231 {
232         struct vcpu_info *vcpu;
233
234         /* There's a one instruction preempt window here.  We need to
235            make sure we're don't switch CPUs between getting the vcpu
236            pointer and updating the mask. */
237         preempt_disable();
238         vcpu = x86_read_percpu(xen_vcpu);
239         vcpu->evtchn_upcall_mask = 0;
240         preempt_enable_no_resched();
241
242         /* Doesn't matter if we get preempted here, because any
243            pending event will get dealt with anyway. */
244
245         barrier(); /* unmask then check (avoid races) */
246         if (unlikely(vcpu->evtchn_upcall_pending))
247                 force_evtchn_callback();
248 }
249
250 static void xen_safe_halt(void)
251 {
252         /* Blocking includes an implicit local_irq_enable(). */
253         if (HYPERVISOR_sched_op(SCHEDOP_block, 0) != 0)
254                 BUG();
255 }
256
257 static void xen_halt(void)
258 {
259         if (irqs_disabled())
260                 HYPERVISOR_vcpu_op(VCPUOP_down, smp_processor_id(), NULL);
261         else
262                 xen_safe_halt();
263 }
264
265 static void xen_leave_lazy(void)
266 {
267         paravirt_leave_lazy(paravirt_get_lazy_mode());
268         xen_mc_flush();
269 }
270
271 static unsigned long xen_store_tr(void)
272 {
273         return 0;
274 }
275
276 static void xen_set_ldt(const void *addr, unsigned entries)
277 {
278         unsigned long linear_addr = (unsigned long)addr;
279         struct mmuext_op *op;
280         struct multicall_space mcs = xen_mc_entry(sizeof(*op));
281
282         op = mcs.args;
283         op->cmd = MMUEXT_SET_LDT;
284         if (linear_addr) {
285                 /* ldt my be vmalloced, use arbitrary_virt_to_machine */
286                 xmaddr_t maddr;
287                 maddr = arbitrary_virt_to_machine((unsigned long)addr);
288                 linear_addr = (unsigned long)maddr.maddr;
289         }
290         op->arg1.linear_addr = linear_addr;
291         op->arg2.nr_ents = entries;
292
293         MULTI_mmuext_op(mcs.mc, op, 1, NULL, DOMID_SELF);
294
295         xen_mc_issue(PARAVIRT_LAZY_CPU);
296 }
297
298 static void xen_load_gdt(const struct desc_ptr *dtr)
299 {
300         unsigned long *frames;
301         unsigned long va = dtr->address;
302         unsigned int size = dtr->size + 1;
303         unsigned pages = (size + PAGE_SIZE - 1) / PAGE_SIZE;
304         int f;
305         struct multicall_space mcs;
306
307         /* A GDT can be up to 64k in size, which corresponds to 8192
308            8-byte entries, or 16 4k pages.. */
309
310         BUG_ON(size > 65536);
311         BUG_ON(va & ~PAGE_MASK);
312
313         mcs = xen_mc_entry(sizeof(*frames) * pages);
314         frames = mcs.args;
315
316         for (f = 0; va < dtr->address + size; va += PAGE_SIZE, f++) {
317                 frames[f] = virt_to_mfn(va);
318                 make_lowmem_page_readonly((void *)va);
319         }
320
321         MULTI_set_gdt(mcs.mc, frames, size / sizeof(struct desc_struct));
322
323         xen_mc_issue(PARAVIRT_LAZY_CPU);
324 }
325
326 static void load_TLS_descriptor(struct thread_struct *t,
327                                 unsigned int cpu, unsigned int i)
328 {
329         struct desc_struct *gdt = get_cpu_gdt_table(cpu);
330         xmaddr_t maddr = virt_to_machine(&gdt[GDT_ENTRY_TLS_MIN+i]);
331         struct multicall_space mc = __xen_mc_entry(0);
332
333         MULTI_update_descriptor(mc.mc, maddr.maddr, t->tls_array[i]);
334 }
335
336 static void xen_load_tls(struct thread_struct *t, unsigned int cpu)
337 {
338         xen_mc_batch();
339
340         load_TLS_descriptor(t, cpu, 0);
341         load_TLS_descriptor(t, cpu, 1);
342         load_TLS_descriptor(t, cpu, 2);
343
344         xen_mc_issue(PARAVIRT_LAZY_CPU);
345
346         /*
347          * XXX sleazy hack: If we're being called in a lazy-cpu zone,
348          * it means we're in a context switch, and %gs has just been
349          * saved.  This means we can zero it out to prevent faults on
350          * exit from the hypervisor if the next process has no %gs.
351          * Either way, it has been saved, and the new value will get
352          * loaded properly.  This will go away as soon as Xen has been
353          * modified to not save/restore %gs for normal hypercalls.
354          */
355         if (paravirt_get_lazy_mode() == PARAVIRT_LAZY_CPU)
356                 loadsegment(gs, 0);
357 }
358
359 static void xen_write_ldt_entry(struct desc_struct *dt, int entrynum,
360                                 u32 low, u32 high)
361 {
362         unsigned long lp = (unsigned long)&dt[entrynum];
363         xmaddr_t mach_lp = virt_to_machine(lp);
364         u64 entry = (u64)high << 32 | low;
365
366         preempt_disable();
367
368         xen_mc_flush();
369         if (HYPERVISOR_update_descriptor(mach_lp.maddr, entry))
370                 BUG();
371
372         preempt_enable();
373 }
374
375 static int cvt_gate_to_trap(int vector, u32 low, u32 high,
376                             struct trap_info *info)
377 {
378         u8 type, dpl;
379
380         type = (high >> 8) & 0x1f;
381         dpl = (high >> 13) & 3;
382
383         if (type != 0xf && type != 0xe)
384                 return 0;
385
386         info->vector = vector;
387         info->address = (high & 0xffff0000) | (low & 0x0000ffff);
388         info->cs = low >> 16;
389         info->flags = dpl;
390         /* interrupt gates clear IF */
391         if (type == 0xe)
392                 info->flags |= 4;
393
394         return 1;
395 }
396
397 /* Locations of each CPU's IDT */
398 static DEFINE_PER_CPU(struct desc_ptr, idt_desc);
399
400 /* Set an IDT entry.  If the entry is part of the current IDT, then
401    also update Xen. */
402 static void xen_write_idt_entry(gate_desc *dt, int entrynum, const gate_desc *g)
403 {
404         unsigned long p = (unsigned long)&dt[entrynum];
405         unsigned long start, end;
406
407         preempt_disable();
408
409         start = __get_cpu_var(idt_desc).address;
410         end = start + __get_cpu_var(idt_desc).size + 1;
411
412         xen_mc_flush();
413
414         native_write_idt_entry(dt, entrynum, g);
415
416         if (p >= start && (p + 8) <= end) {
417                 struct trap_info info[2];
418                 u32 *desc = (u32 *)g;
419
420                 info[1].address = 0;
421
422                 if (cvt_gate_to_trap(entrynum, desc[0], desc[1], &info[0]))
423                         if (HYPERVISOR_set_trap_table(info))
424                                 BUG();
425         }
426
427         preempt_enable();
428 }
429
430 static void xen_convert_trap_info(const struct desc_ptr *desc,
431                                   struct trap_info *traps)
432 {
433         unsigned in, out, count;
434
435         count = (desc->size+1) / 8;
436         BUG_ON(count > 256);
437
438         for (in = out = 0; in < count; in++) {
439                 const u32 *entry = (u32 *)(desc->address + in * 8);
440
441                 if (cvt_gate_to_trap(in, entry[0], entry[1], &traps[out]))
442                         out++;
443         }
444         traps[out].address = 0;
445 }
446
447 void xen_copy_trap_info(struct trap_info *traps)
448 {
449         const struct desc_ptr *desc = &__get_cpu_var(idt_desc);
450
451         xen_convert_trap_info(desc, traps);
452 }
453
454 /* Load a new IDT into Xen.  In principle this can be per-CPU, so we
455    hold a spinlock to protect the static traps[] array (static because
456    it avoids allocation, and saves stack space). */
457 static void xen_load_idt(const struct desc_ptr *desc)
458 {
459         static DEFINE_SPINLOCK(lock);
460         static struct trap_info traps[257];
461
462         spin_lock(&lock);
463
464         __get_cpu_var(idt_desc) = *desc;
465
466         xen_convert_trap_info(desc, traps);
467
468         xen_mc_flush();
469         if (HYPERVISOR_set_trap_table(traps))
470                 BUG();
471
472         spin_unlock(&lock);
473 }
474
475 /* Write a GDT descriptor entry.  Ignore LDT descriptors, since
476    they're handled differently. */
477 static void xen_write_gdt_entry(struct desc_struct *dt, int entry,
478                                 const void *desc, int type)
479 {
480         preempt_disable();
481
482         switch (type) {
483         case DESC_LDT:
484         case DESC_TSS:
485                 /* ignore */
486                 break;
487
488         default: {
489                 xmaddr_t maddr = virt_to_machine(&dt[entry]);
490
491                 xen_mc_flush();
492                 if (HYPERVISOR_update_descriptor(maddr.maddr, *(u64 *)desc))
493                         BUG();
494         }
495
496         }
497
498         preempt_enable();
499 }
500
501 static void xen_load_sp0(struct tss_struct *tss,
502                           struct thread_struct *thread)
503 {
504         struct multicall_space mcs = xen_mc_entry(0);
505         MULTI_stack_switch(mcs.mc, __KERNEL_DS, thread->sp0);
506         xen_mc_issue(PARAVIRT_LAZY_CPU);
507 }
508
509 static void xen_set_iopl_mask(unsigned mask)
510 {
511         struct physdev_set_iopl set_iopl;
512
513         /* Force the change at ring 0. */
514         set_iopl.iopl = (mask == 0) ? 1 : (mask >> 12) & 3;
515         HYPERVISOR_physdev_op(PHYSDEVOP_set_iopl, &set_iopl);
516 }
517
518 static void xen_io_delay(void)
519 {
520 }
521
522 #ifdef CONFIG_X86_LOCAL_APIC
523 static u32 xen_apic_read(unsigned long reg)
524 {
525         return 0;
526 }
527
528 static void xen_apic_write(unsigned long reg, u32 val)
529 {
530         /* Warn to see if there's any stray references */
531         WARN_ON(1);
532 }
533 #endif
534
535 static void xen_flush_tlb(void)
536 {
537         struct mmuext_op *op;
538         struct multicall_space mcs = xen_mc_entry(sizeof(*op));
539
540         op = mcs.args;
541         op->cmd = MMUEXT_TLB_FLUSH_LOCAL;
542         MULTI_mmuext_op(mcs.mc, op, 1, NULL, DOMID_SELF);
543
544         xen_mc_issue(PARAVIRT_LAZY_MMU);
545 }
546
547 static void xen_flush_tlb_single(unsigned long addr)
548 {
549         struct mmuext_op *op;
550         struct multicall_space mcs = xen_mc_entry(sizeof(*op));
551
552         op = mcs.args;
553         op->cmd = MMUEXT_INVLPG_LOCAL;
554         op->arg1.linear_addr = addr & PAGE_MASK;
555         MULTI_mmuext_op(mcs.mc, op, 1, NULL, DOMID_SELF);
556
557         xen_mc_issue(PARAVIRT_LAZY_MMU);
558 }
559
560 static void xen_flush_tlb_others(const cpumask_t *cpus, struct mm_struct *mm,
561                                  unsigned long va)
562 {
563         struct {
564                 struct mmuext_op op;
565                 cpumask_t mask;
566         } *args;
567         cpumask_t cpumask = *cpus;
568         struct multicall_space mcs;
569
570         /*
571          * A couple of (to be removed) sanity checks:
572          *
573          * - current CPU must not be in mask
574          * - mask must exist :)
575          */
576         BUG_ON(cpus_empty(cpumask));
577         BUG_ON(cpu_isset(smp_processor_id(), cpumask));
578         BUG_ON(!mm);
579
580         /* If a CPU which we ran on has gone down, OK. */
581         cpus_and(cpumask, cpumask, cpu_online_map);
582         if (cpus_empty(cpumask))
583                 return;
584
585         mcs = xen_mc_entry(sizeof(*args));
586         args = mcs.args;
587         args->mask = cpumask;
588         args->op.arg2.vcpumask = &args->mask;
589
590         if (va == TLB_FLUSH_ALL) {
591                 args->op.cmd = MMUEXT_TLB_FLUSH_MULTI;
592         } else {
593                 args->op.cmd = MMUEXT_INVLPG_MULTI;
594                 args->op.arg1.linear_addr = va;
595         }
596
597         MULTI_mmuext_op(mcs.mc, &args->op, 1, NULL, DOMID_SELF);
598
599         xen_mc_issue(PARAVIRT_LAZY_MMU);
600 }
601
602 static void xen_write_cr2(unsigned long cr2)
603 {
604         x86_read_percpu(xen_vcpu)->arch.cr2 = cr2;
605 }
606
607 static unsigned long xen_read_cr2(void)
608 {
609         return x86_read_percpu(xen_vcpu)->arch.cr2;
610 }
611
612 static unsigned long xen_read_cr2_direct(void)
613 {
614         return x86_read_percpu(xen_vcpu_info.arch.cr2);
615 }
616
617 static void xen_write_cr4(unsigned long cr4)
618 {
619         /* Just ignore cr4 changes; Xen doesn't allow us to do
620            anything anyway. */
621 }
622
623 static unsigned long xen_read_cr3(void)
624 {
625         return x86_read_percpu(xen_cr3);
626 }
627
628 static void set_current_cr3(void *v)
629 {
630         x86_write_percpu(xen_current_cr3, (unsigned long)v);
631 }
632
633 static void xen_write_cr3(unsigned long cr3)
634 {
635         struct mmuext_op *op;
636         struct multicall_space mcs;
637         unsigned long mfn = pfn_to_mfn(PFN_DOWN(cr3));
638
639         BUG_ON(preemptible());
640
641         mcs = xen_mc_entry(sizeof(*op));  /* disables interrupts */
642
643         /* Update while interrupts are disabled, so its atomic with
644            respect to ipis */
645         x86_write_percpu(xen_cr3, cr3);
646
647         op = mcs.args;
648         op->cmd = MMUEXT_NEW_BASEPTR;
649         op->arg1.mfn = mfn;
650
651         MULTI_mmuext_op(mcs.mc, op, 1, NULL, DOMID_SELF);
652
653         /* Update xen_update_cr3 once the batch has actually
654            been submitted. */
655         xen_mc_callback(set_current_cr3, (void *)cr3);
656
657         xen_mc_issue(PARAVIRT_LAZY_CPU);  /* interrupts restored */
658 }
659
660 /* Early in boot, while setting up the initial pagetable, assume
661    everything is pinned. */
662 static __init void xen_alloc_pt_init(struct mm_struct *mm, u32 pfn)
663 {
664         BUG_ON(mem_map);        /* should only be used early */
665         make_lowmem_page_readonly(__va(PFN_PHYS(pfn)));
666 }
667
668 static void pin_pagetable_pfn(unsigned level, unsigned long pfn)
669 {
670         struct mmuext_op op;
671         op.cmd = level;
672         op.arg1.mfn = pfn_to_mfn(pfn);
673         if (HYPERVISOR_mmuext_op(&op, 1, NULL, DOMID_SELF))
674                 BUG();
675 }
676
677 /* This needs to make sure the new pte page is pinned iff its being
678    attached to a pinned pagetable. */
679 static void xen_alloc_pt(struct mm_struct *mm, u32 pfn)
680 {
681         struct page *page = pfn_to_page(pfn);
682
683         if (PagePinned(virt_to_page(mm->pgd))) {
684                 SetPagePinned(page);
685
686                 if (!PageHighMem(page)) {
687                         make_lowmem_page_readonly(__va(PFN_PHYS(pfn)));
688                         pin_pagetable_pfn(MMUEXT_PIN_L1_TABLE, pfn);
689                 } else
690                         /* make sure there are no stray mappings of
691                            this page */
692                         kmap_flush_unused();
693         }
694 }
695
696 /* This should never happen until we're OK to use struct page */
697 static void xen_release_pt(u32 pfn)
698 {
699         struct page *page = pfn_to_page(pfn);
700
701         if (PagePinned(page)) {
702                 if (!PageHighMem(page)) {
703                         pin_pagetable_pfn(MMUEXT_UNPIN_TABLE, pfn);
704                         make_lowmem_page_readwrite(__va(PFN_PHYS(pfn)));
705                 }
706         }
707 }
708
709 #ifdef CONFIG_HIGHPTE
710 static void *xen_kmap_atomic_pte(struct page *page, enum km_type type)
711 {
712         pgprot_t prot = PAGE_KERNEL;
713
714         if (PagePinned(page))
715                 prot = PAGE_KERNEL_RO;
716
717         if (0 && PageHighMem(page))
718                 printk("mapping highpte %lx type %d prot %s\n",
719                        page_to_pfn(page), type,
720                        (unsigned long)pgprot_val(prot) & _PAGE_RW ? "WRITE" : "READ");
721
722         return kmap_atomic_prot(page, type, prot);
723 }
724 #endif
725
726 static __init pte_t mask_rw_pte(pte_t *ptep, pte_t pte)
727 {
728         /* If there's an existing pte, then don't allow _PAGE_RW to be set */
729         if (pte_val_ma(*ptep) & _PAGE_PRESENT)
730                 pte = __pte_ma(((pte_val_ma(*ptep) & _PAGE_RW) | ~_PAGE_RW) &
731                                pte_val_ma(pte));
732
733         return pte;
734 }
735
736 /* Init-time set_pte while constructing initial pagetables, which
737    doesn't allow RO pagetable pages to be remapped RW */
738 static __init void xen_set_pte_init(pte_t *ptep, pte_t pte)
739 {
740         pte = mask_rw_pte(ptep, pte);
741
742         xen_set_pte(ptep, pte);
743 }
744
745 static __init void xen_pagetable_setup_start(pgd_t *base)
746 {
747         pgd_t *xen_pgd = (pgd_t *)xen_start_info->pt_base;
748
749         /* special set_pte for pagetable initialization */
750         pv_mmu_ops.set_pte = xen_set_pte_init;
751
752         init_mm.pgd = base;
753         /*
754          * copy top-level of Xen-supplied pagetable into place.  For
755          * !PAE we can use this as-is, but for PAE it is a stand-in
756          * while we copy the pmd pages.
757          */
758         memcpy(base, xen_pgd, PTRS_PER_PGD * sizeof(pgd_t));
759
760         if (PTRS_PER_PMD > 1) {
761                 int i;
762                 /*
763                  * For PAE, need to allocate new pmds, rather than
764                  * share Xen's, since Xen doesn't like pmd's being
765                  * shared between address spaces.
766                  */
767                 for (i = 0; i < PTRS_PER_PGD; i++) {
768                         if (pgd_val_ma(xen_pgd[i]) & _PAGE_PRESENT) {
769                                 pmd_t *pmd = (pmd_t *)alloc_bootmem_low_pages(PAGE_SIZE);
770
771                                 memcpy(pmd, (void *)pgd_page_vaddr(xen_pgd[i]),
772                                        PAGE_SIZE);
773
774                                 make_lowmem_page_readonly(pmd);
775
776                                 set_pgd(&base[i], __pgd(1 + __pa(pmd)));
777                         } else
778                                 pgd_clear(&base[i]);
779                 }
780         }
781
782         /* make sure zero_page is mapped RO so we can use it in pagetables */
783         make_lowmem_page_readonly(empty_zero_page);
784         make_lowmem_page_readonly(base);
785         /*
786          * Switch to new pagetable.  This is done before
787          * pagetable_init has done anything so that the new pages
788          * added to the table can be prepared properly for Xen.
789          */
790         xen_write_cr3(__pa(base));
791 }
792
793 static __init void xen_pagetable_setup_done(pgd_t *base)
794 {
795         /* This will work as long as patching hasn't happened yet
796            (which it hasn't) */
797         pv_mmu_ops.alloc_pt = xen_alloc_pt;
798         pv_mmu_ops.set_pte = xen_set_pte;
799
800         if (!xen_feature(XENFEAT_auto_translated_physmap)) {
801                 /*
802                  * Create a mapping for the shared info page.
803                  * Should be set_fixmap(), but shared_info is a machine
804                  * address with no corresponding pseudo-phys address.
805                  */
806                 set_pte_mfn(fix_to_virt(FIX_PARAVIRT_BOOTMAP),
807                             PFN_DOWN(xen_start_info->shared_info),
808                             PAGE_KERNEL);
809
810                 HYPERVISOR_shared_info =
811                         (struct shared_info *)fix_to_virt(FIX_PARAVIRT_BOOTMAP);
812
813         } else
814                 HYPERVISOR_shared_info =
815                         (struct shared_info *)__va(xen_start_info->shared_info);
816
817         /* Actually pin the pagetable down, but we can't set PG_pinned
818            yet because the page structures don't exist yet. */
819         {
820                 unsigned level;
821
822 #ifdef CONFIG_X86_PAE
823                 level = MMUEXT_PIN_L3_TABLE;
824 #else
825                 level = MMUEXT_PIN_L2_TABLE;
826 #endif
827
828                 pin_pagetable_pfn(level, PFN_DOWN(__pa(base)));
829         }
830 }
831
832 /* This is called once we have the cpu_possible_map */
833 void __init xen_setup_vcpu_info_placement(void)
834 {
835         int cpu;
836
837         for_each_possible_cpu(cpu)
838                 xen_vcpu_setup(cpu);
839
840         /* xen_vcpu_setup managed to place the vcpu_info within the
841            percpu area for all cpus, so make use of it */
842         if (have_vcpu_info_placement) {
843                 printk(KERN_INFO "Xen: using vcpu_info placement\n");
844
845                 pv_irq_ops.save_fl = xen_save_fl_direct;
846                 pv_irq_ops.restore_fl = xen_restore_fl_direct;
847                 pv_irq_ops.irq_disable = xen_irq_disable_direct;
848                 pv_irq_ops.irq_enable = xen_irq_enable_direct;
849                 pv_mmu_ops.read_cr2 = xen_read_cr2_direct;
850                 pv_cpu_ops.iret = xen_iret_direct;
851         }
852 }
853
854 static unsigned xen_patch(u8 type, u16 clobbers, void *insnbuf,
855                           unsigned long addr, unsigned len)
856 {
857         char *start, *end, *reloc;
858         unsigned ret;
859
860         start = end = reloc = NULL;
861
862 #define SITE(op, x)                                                     \
863         case PARAVIRT_PATCH(op.x):                                      \
864         if (have_vcpu_info_placement) {                                 \
865                 start = (char *)xen_##x##_direct;                       \
866                 end = xen_##x##_direct_end;                             \
867                 reloc = xen_##x##_direct_reloc;                         \
868         }                                                               \
869         goto patch_site
870
871         switch (type) {
872                 SITE(pv_irq_ops, irq_enable);
873                 SITE(pv_irq_ops, irq_disable);
874                 SITE(pv_irq_ops, save_fl);
875                 SITE(pv_irq_ops, restore_fl);
876 #undef SITE
877
878         patch_site:
879                 if (start == NULL || (end-start) > len)
880                         goto default_patch;
881
882                 ret = paravirt_patch_insns(insnbuf, len, start, end);
883
884                 /* Note: because reloc is assigned from something that
885                    appears to be an array, gcc assumes it's non-null,
886                    but doesn't know its relationship with start and
887                    end. */
888                 if (reloc > start && reloc < end) {
889                         int reloc_off = reloc - start;
890                         long *relocp = (long *)(insnbuf + reloc_off);
891                         long delta = start - (char *)addr;
892
893                         *relocp += delta;
894                 }
895                 break;
896
897         default_patch:
898         default:
899                 ret = paravirt_patch_default(type, clobbers, insnbuf,
900                                              addr, len);
901                 break;
902         }
903
904         return ret;
905 }
906
907 static const struct pv_info xen_info __initdata = {
908         .paravirt_enabled = 1,
909         .shared_kernel_pmd = 0,
910
911         .name = "Xen",
912 };
913
914 static const struct pv_init_ops xen_init_ops __initdata = {
915         .patch = xen_patch,
916
917         .banner = xen_banner,
918         .memory_setup = xen_memory_setup,
919         .arch_setup = xen_arch_setup,
920         .post_allocator_init = xen_mark_init_mm_pinned,
921 };
922
923 static const struct pv_time_ops xen_time_ops __initdata = {
924         .time_init = xen_time_init,
925
926         .set_wallclock = xen_set_wallclock,
927         .get_wallclock = xen_get_wallclock,
928         .get_cpu_khz = xen_cpu_khz,
929         .sched_clock = xen_sched_clock,
930 };
931
932 static const struct pv_cpu_ops xen_cpu_ops __initdata = {
933         .cpuid = xen_cpuid,
934
935         .set_debugreg = xen_set_debugreg,
936         .get_debugreg = xen_get_debugreg,
937
938         .clts = native_clts,
939
940         .read_cr0 = native_read_cr0,
941         .write_cr0 = native_write_cr0,
942
943         .read_cr4 = native_read_cr4,
944         .read_cr4_safe = native_read_cr4_safe,
945         .write_cr4 = xen_write_cr4,
946
947         .wbinvd = native_wbinvd,
948
949         .read_msr = native_read_msr_safe,
950         .write_msr = native_write_msr_safe,
951         .read_tsc = native_read_tsc,
952         .read_pmc = native_read_pmc,
953
954         .iret = (void *)&hypercall_page[__HYPERVISOR_iret],
955         .irq_enable_syscall_ret = NULL,  /* never called */
956
957         .load_tr_desc = paravirt_nop,
958         .set_ldt = xen_set_ldt,
959         .load_gdt = xen_load_gdt,
960         .load_idt = xen_load_idt,
961         .load_tls = xen_load_tls,
962
963         .store_gdt = native_store_gdt,
964         .store_idt = native_store_idt,
965         .store_tr = xen_store_tr,
966
967         .write_ldt_entry = xen_write_ldt_entry,
968         .write_gdt_entry = xen_write_gdt_entry,
969         .write_idt_entry = xen_write_idt_entry,
970         .load_sp0 = xen_load_sp0,
971
972         .set_iopl_mask = xen_set_iopl_mask,
973         .io_delay = xen_io_delay,
974
975         .lazy_mode = {
976                 .enter = paravirt_enter_lazy_cpu,
977                 .leave = xen_leave_lazy,
978         },
979 };
980
981 static const struct pv_irq_ops xen_irq_ops __initdata = {
982         .init_IRQ = xen_init_IRQ,
983         .save_fl = xen_save_fl,
984         .restore_fl = xen_restore_fl,
985         .irq_disable = xen_irq_disable,
986         .irq_enable = xen_irq_enable,
987         .safe_halt = xen_safe_halt,
988         .halt = xen_halt,
989 };
990
991 static const struct pv_apic_ops xen_apic_ops __initdata = {
992 #ifdef CONFIG_X86_LOCAL_APIC
993         .apic_write = xen_apic_write,
994         .apic_write_atomic = xen_apic_write,
995         .apic_read = xen_apic_read,
996         .setup_boot_clock = paravirt_nop,
997         .setup_secondary_clock = paravirt_nop,
998         .startup_ipi_hook = paravirt_nop,
999 #endif
1000 };
1001
1002 static const struct pv_mmu_ops xen_mmu_ops __initdata = {
1003         .pagetable_setup_start = xen_pagetable_setup_start,
1004         .pagetable_setup_done = xen_pagetable_setup_done,
1005
1006         .read_cr2 = xen_read_cr2,
1007         .write_cr2 = xen_write_cr2,
1008
1009         .read_cr3 = xen_read_cr3,
1010         .write_cr3 = xen_write_cr3,
1011
1012         .flush_tlb_user = xen_flush_tlb,
1013         .flush_tlb_kernel = xen_flush_tlb,
1014         .flush_tlb_single = xen_flush_tlb_single,
1015         .flush_tlb_others = xen_flush_tlb_others,
1016
1017         .pte_update = paravirt_nop,
1018         .pte_update_defer = paravirt_nop,
1019
1020         .alloc_pt = xen_alloc_pt_init,
1021         .release_pt = xen_release_pt,
1022         .alloc_pd = paravirt_nop,
1023         .alloc_pd_clone = paravirt_nop,
1024         .release_pd = paravirt_nop,
1025
1026 #ifdef CONFIG_HIGHPTE
1027         .kmap_atomic_pte = xen_kmap_atomic_pte,
1028 #endif
1029
1030         .set_pte = NULL,        /* see xen_pagetable_setup_* */
1031         .set_pte_at = xen_set_pte_at,
1032         .set_pmd = xen_set_pmd,
1033
1034         .pte_val = xen_pte_val,
1035         .pgd_val = xen_pgd_val,
1036
1037         .make_pte = xen_make_pte,
1038         .make_pgd = xen_make_pgd,
1039
1040 #ifdef CONFIG_X86_PAE
1041         .set_pte_atomic = xen_set_pte_atomic,
1042         .set_pte_present = xen_set_pte_at,
1043         .set_pud = xen_set_pud,
1044         .pte_clear = xen_pte_clear,
1045         .pmd_clear = xen_pmd_clear,
1046
1047         .make_pmd = xen_make_pmd,
1048         .pmd_val = xen_pmd_val,
1049 #endif  /* PAE */
1050
1051         .activate_mm = xen_activate_mm,
1052         .dup_mmap = xen_dup_mmap,
1053         .exit_mmap = xen_exit_mmap,
1054
1055         .lazy_mode = {
1056                 .enter = paravirt_enter_lazy_mmu,
1057                 .leave = xen_leave_lazy,
1058         },
1059 };
1060
1061 #ifdef CONFIG_SMP
1062 static const struct smp_ops xen_smp_ops __initdata = {
1063         .smp_prepare_boot_cpu = xen_smp_prepare_boot_cpu,
1064         .smp_prepare_cpus = xen_smp_prepare_cpus,
1065         .cpu_up = xen_cpu_up,
1066         .smp_cpus_done = xen_smp_cpus_done,
1067
1068         .smp_send_stop = xen_smp_send_stop,
1069         .smp_send_reschedule = xen_smp_send_reschedule,
1070         .smp_call_function_mask = xen_smp_call_function_mask,
1071 };
1072 #endif  /* CONFIG_SMP */
1073
1074 static void xen_reboot(int reason)
1075 {
1076 #ifdef CONFIG_SMP
1077         smp_send_stop();
1078 #endif
1079
1080         if (HYPERVISOR_sched_op(SCHEDOP_shutdown, reason))
1081                 BUG();
1082 }
1083
1084 static void xen_restart(char *msg)
1085 {
1086         xen_reboot(SHUTDOWN_reboot);
1087 }
1088
1089 static void xen_emergency_restart(void)
1090 {
1091         xen_reboot(SHUTDOWN_reboot);
1092 }
1093
1094 static void xen_machine_halt(void)
1095 {
1096         xen_reboot(SHUTDOWN_poweroff);
1097 }
1098
1099 static void xen_crash_shutdown(struct pt_regs *regs)
1100 {
1101         xen_reboot(SHUTDOWN_crash);
1102 }
1103
1104 static const struct machine_ops __initdata xen_machine_ops = {
1105         .restart = xen_restart,
1106         .halt = xen_machine_halt,
1107         .power_off = xen_machine_halt,
1108         .shutdown = xen_machine_halt,
1109         .crash_shutdown = xen_crash_shutdown,
1110         .emergency_restart = xen_emergency_restart,
1111 };
1112
1113
1114 static void __init xen_reserve_top(void)
1115 {
1116         unsigned long top = HYPERVISOR_VIRT_START;
1117         struct xen_platform_parameters pp;
1118
1119         if (HYPERVISOR_xen_version(XENVER_platform_parameters, &pp) == 0)
1120                 top = pp.virt_start;
1121
1122         reserve_top_address(-top + 2 * PAGE_SIZE);
1123 }
1124
1125 /* First C function to be called on Xen boot */
1126 asmlinkage void __init xen_start_kernel(void)
1127 {
1128         pgd_t *pgd;
1129
1130         if (!xen_start_info)
1131                 return;
1132
1133         BUG_ON(memcmp(xen_start_info->magic, "xen-3", 5) != 0);
1134
1135         /* Install Xen paravirt ops */
1136         pv_info = xen_info;
1137         pv_init_ops = xen_init_ops;
1138         pv_time_ops = xen_time_ops;
1139         pv_cpu_ops = xen_cpu_ops;
1140         pv_irq_ops = xen_irq_ops;
1141         pv_apic_ops = xen_apic_ops;
1142         pv_mmu_ops = xen_mmu_ops;
1143
1144         machine_ops = xen_machine_ops;
1145
1146 #ifdef CONFIG_SMP
1147         smp_ops = xen_smp_ops;
1148 #endif
1149
1150         xen_setup_features();
1151
1152         /* Get mfn list */
1153         if (!xen_feature(XENFEAT_auto_translated_physmap))
1154                 phys_to_machine_mapping = (unsigned long *)xen_start_info->mfn_list;
1155
1156         pgd = (pgd_t *)xen_start_info->pt_base;
1157
1158         init_pg_tables_end = __pa(pgd) + xen_start_info->nr_pt_frames*PAGE_SIZE;
1159
1160         init_mm.pgd = pgd; /* use the Xen pagetables to start */
1161
1162         /* keep using Xen gdt for now; no urgent need to change it */
1163
1164         x86_write_percpu(xen_cr3, __pa(pgd));
1165         x86_write_percpu(xen_current_cr3, __pa(pgd));
1166
1167 #ifdef CONFIG_SMP
1168         /* Don't do the full vcpu_info placement stuff until we have a
1169            possible map. */
1170         per_cpu(xen_vcpu, 0) = &HYPERVISOR_shared_info->vcpu_info[0];
1171 #else
1172         /* May as well do it now, since there's no good time to call
1173            it later on UP. */
1174         xen_setup_vcpu_info_placement();
1175 #endif
1176
1177         pv_info.kernel_rpl = 1;
1178         if (xen_feature(XENFEAT_supervisor_mode_kernel))
1179                 pv_info.kernel_rpl = 0;
1180
1181         /* set the limit of our address space */
1182         xen_reserve_top();
1183
1184         /* set up basic CPUID stuff */
1185         cpu_detect(&new_cpu_data);
1186         new_cpu_data.hard_math = 1;
1187         new_cpu_data.x86_capability[0] = cpuid_edx(1);
1188
1189         /* Poke various useful things into boot_params */
1190         boot_params.hdr.type_of_loader = (9 << 4) | 0;
1191         boot_params.hdr.ramdisk_image = xen_start_info->mod_start
1192                 ? __pa(xen_start_info->mod_start) : 0;
1193         boot_params.hdr.ramdisk_size = xen_start_info->mod_len;
1194
1195         /* Start the world */
1196         start_kernel();
1197 }