]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - arch/x86/xen/enlighten.c
xen: drop xen_sched_clock in favour of using plain wallclock time
[mirror_ubuntu-bionic-kernel.git] / arch / x86 / xen / enlighten.c
CommitLineData
5ead97c8
JF
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>
f120f13e 18#include <linux/hardirq.h>
5ead97c8
JF
19#include <linux/percpu.h>
20#include <linux/delay.h>
21#include <linux/start_kernel.h>
22#include <linux/sched.h>
6cac5a92 23#include <linux/kprobes.h>
5ead97c8
JF
24#include <linux/bootmem.h>
25#include <linux/module.h>
f4f97b3e
JF
26#include <linux/mm.h>
27#include <linux/page-flags.h>
28#include <linux/highmem.h>
b8c2d3df 29#include <linux/console.h>
5d990b62 30#include <linux/pci.h>
5a0e3ad6 31#include <linux/gfp.h>
5ead97c8 32
1ccbf534 33#include <xen/xen.h>
5ead97c8 34#include <xen/interface/xen.h>
ecbf29cd 35#include <xen/interface/version.h>
5ead97c8
JF
36#include <xen/interface/physdev.h>
37#include <xen/interface/vcpu.h>
38#include <xen/features.h>
39#include <xen/page.h>
084a2a4e 40#include <xen/hvc-console.h>
5ead97c8
JF
41
42#include <asm/paravirt.h>
7b6aa335 43#include <asm/apic.h>
5ead97c8
JF
44#include <asm/page.h>
45#include <asm/xen/hypercall.h>
46#include <asm/xen/hypervisor.h>
47#include <asm/fixmap.h>
48#include <asm/processor.h>
707ebbc8 49#include <asm/proto.h>
1153968a 50#include <asm/msr-index.h>
6cac5a92 51#include <asm/traps.h>
5ead97c8
JF
52#include <asm/setup.h>
53#include <asm/desc.h>
817a824b 54#include <asm/pgalloc.h>
5ead97c8 55#include <asm/pgtable.h>
f87e4cac 56#include <asm/tlbflush.h>
fefa629a 57#include <asm/reboot.h>
577eebea 58#include <asm/stackprotector.h>
5ead97c8
JF
59
60#include "xen-ops.h"
3b827c1b 61#include "mmu.h"
5ead97c8
JF
62#include "multicalls.h"
63
64EXPORT_SYMBOL_GPL(hypercall_page);
65
5ead97c8
JF
66DEFINE_PER_CPU(struct vcpu_info *, xen_vcpu);
67DEFINE_PER_CPU(struct vcpu_info, xen_vcpu_info);
9f79991d 68
6e833587
JF
69enum xen_domain_type xen_domain_type = XEN_NATIVE;
70EXPORT_SYMBOL_GPL(xen_domain_type);
71
5ead97c8
JF
72struct start_info *xen_start_info;
73EXPORT_SYMBOL_GPL(xen_start_info);
74
a0d695c8 75struct shared_info xen_dummy_shared_info;
60223a32 76
38341432
JF
77void *xen_initial_gdt;
78
60223a32
JF
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 */
a0d695c8 83struct shared_info *HYPERVISOR_shared_info = (void *)&xen_dummy_shared_info;
60223a32
JF
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 */
e4d04071 98static int have_vcpu_info_placement = 1;
60223a32 99
9c7a7942 100static void xen_vcpu_setup(int cpu)
5ead97c8 101{
60223a32
JF
102 struct vcpu_register_vcpu_info info;
103 int err;
104 struct vcpu_info *vcpup;
105
a0d695c8 106 BUG_ON(HYPERVISOR_shared_info == &xen_dummy_shared_info);
5ead97c8 107 per_cpu(xen_vcpu, cpu) = &HYPERVISOR_shared_info->vcpu_info[cpu];
60223a32
JF
108
109 if (!have_vcpu_info_placement)
110 return; /* already tested, not available */
111
112 vcpup = &per_cpu(xen_vcpu_info, cpu);
113
9976b39b 114 info.mfn = arbitrary_virt_to_mfn(vcpup);
60223a32
JF
115 info.offset = offset_in_page(vcpup);
116
e3d26976 117 printk(KERN_DEBUG "trying to map vcpu_info %d at %p, mfn %llx, offset %d\n",
60223a32
JF
118 cpu, vcpup, info.mfn, info.offset);
119
120 /* Check to see if the hypervisor will put the vcpu_info
121 structure where we want it, which allows direct access via
122 a percpu-variable. */
123 err = HYPERVISOR_vcpu_op(VCPUOP_register_vcpu_info, cpu, &info);
124
125 if (err) {
126 printk(KERN_DEBUG "register_vcpu_info failed: err=%d\n", err);
127 have_vcpu_info_placement = 0;
128 } else {
129 /* This cpu is using the registered vcpu info, even if
130 later ones fail to. */
131 per_cpu(xen_vcpu, cpu) = vcpup;
6487673b 132
60223a32
JF
133 printk(KERN_DEBUG "cpu %d using vcpu_info at %p\n",
134 cpu, vcpup);
135 }
5ead97c8
JF
136}
137
9c7a7942
JF
138/*
139 * On restore, set the vcpu placement up again.
140 * If it fails, then we're in a bad state, since
141 * we can't back out from using it...
142 */
143void xen_vcpu_restore(void)
144{
3905bb2a 145 int cpu;
9c7a7942 146
3905bb2a
JF
147 for_each_online_cpu(cpu) {
148 bool other_cpu = (cpu != smp_processor_id());
9c7a7942 149
3905bb2a
JF
150 if (other_cpu &&
151 HYPERVISOR_vcpu_op(VCPUOP_down, cpu, NULL))
152 BUG();
9c7a7942 153
3905bb2a 154 xen_setup_runstate_info(cpu);
9c7a7942 155
3905bb2a 156 if (have_vcpu_info_placement)
9c7a7942 157 xen_vcpu_setup(cpu);
9c7a7942 158
3905bb2a
JF
159 if (other_cpu &&
160 HYPERVISOR_vcpu_op(VCPUOP_up, cpu, NULL))
161 BUG();
9c7a7942
JF
162 }
163}
164
5ead97c8
JF
165static void __init xen_banner(void)
166{
95c7c23b
JF
167 unsigned version = HYPERVISOR_xen_version(XENVER_version, NULL);
168 struct xen_extraversion extra;
169 HYPERVISOR_xen_version(XENVER_extraversion, &extra);
170
5ead97c8 171 printk(KERN_INFO "Booting paravirtualized kernel on %s\n",
93b1eab3 172 pv_info.name);
95c7c23b
JF
173 printk(KERN_INFO "Xen version: %d.%d%s%s\n",
174 version >> 16, version & 0xffff, extra.extraversion,
e57778a1 175 xen_feature(XENFEAT_mmu_pt_update_preserve_ad) ? " (preserve-AD)" : "");
5ead97c8
JF
176}
177
e826fe1b
JF
178static __read_mostly unsigned int cpuid_leaf1_edx_mask = ~0;
179static __read_mostly unsigned int cpuid_leaf1_ecx_mask = ~0;
180
65ea5b03
PA
181static void xen_cpuid(unsigned int *ax, unsigned int *bx,
182 unsigned int *cx, unsigned int *dx)
5ead97c8 183{
82d64699 184 unsigned maskebx = ~0;
e826fe1b 185 unsigned maskecx = ~0;
5ead97c8
JF
186 unsigned maskedx = ~0;
187
188 /*
189 * Mask out inconvenient features, to try and disable as many
190 * unsupported kernel subsystems as possible.
191 */
82d64699
JF
192 switch (*ax) {
193 case 1:
e826fe1b
JF
194 maskecx = cpuid_leaf1_ecx_mask;
195 maskedx = cpuid_leaf1_edx_mask;
82d64699
JF
196 break;
197
198 case 0xb:
199 /* Suppress extended topology stuff */
200 maskebx = 0;
201 break;
e826fe1b 202 }
5ead97c8
JF
203
204 asm(XEN_EMULATE_PREFIX "cpuid"
65ea5b03
PA
205 : "=a" (*ax),
206 "=b" (*bx),
207 "=c" (*cx),
208 "=d" (*dx)
209 : "0" (*ax), "2" (*cx));
e826fe1b 210
82d64699 211 *bx &= maskebx;
e826fe1b 212 *cx &= maskecx;
65ea5b03 213 *dx &= maskedx;
5ead97c8
JF
214}
215
e826fe1b
JF
216static __init void xen_init_cpuid_mask(void)
217{
218 unsigned int ax, bx, cx, dx;
219
220 cpuid_leaf1_edx_mask =
221 ~((1 << X86_FEATURE_MCE) | /* disable MCE */
222 (1 << X86_FEATURE_MCA) | /* disable MCA */
223 (1 << X86_FEATURE_ACC)); /* thermal monitoring */
224
225 if (!xen_initial_domain())
226 cpuid_leaf1_edx_mask &=
227 ~((1 << X86_FEATURE_APIC) | /* disable local APIC */
228 (1 << X86_FEATURE_ACPI)); /* disable ACPI */
229
230 ax = 1;
7adb4df4 231 cx = 0;
e826fe1b
JF
232 xen_cpuid(&ax, &bx, &cx, &dx);
233
234 /* cpuid claims we support xsave; try enabling it to see what happens */
235 if (cx & (1 << (X86_FEATURE_XSAVE % 32))) {
236 unsigned long cr4;
237
238 set_in_cr4(X86_CR4_OSXSAVE);
239
240 cr4 = read_cr4();
241
242 if ((cr4 & X86_CR4_OSXSAVE) == 0)
243 cpuid_leaf1_ecx_mask &= ~(1 << (X86_FEATURE_XSAVE % 32));
244
245 clear_in_cr4(X86_CR4_OSXSAVE);
246 }
247}
248
5ead97c8
JF
249static void xen_set_debugreg(int reg, unsigned long val)
250{
251 HYPERVISOR_set_debugreg(reg, val);
252}
253
254static unsigned long xen_get_debugreg(int reg)
255{
256 return HYPERVISOR_get_debugreg(reg);
257}
258
224101ed 259static void xen_end_context_switch(struct task_struct *next)
5ead97c8 260{
5ead97c8 261 xen_mc_flush();
224101ed 262 paravirt_end_context_switch(next);
5ead97c8
JF
263}
264
265static unsigned long xen_store_tr(void)
266{
267 return 0;
268}
269
a05d2eba 270/*
cef43bf6
JF
271 * Set the page permissions for a particular virtual address. If the
272 * address is a vmalloc mapping (or other non-linear mapping), then
273 * find the linear mapping of the page and also set its protections to
274 * match.
a05d2eba
JF
275 */
276static void set_aliased_prot(void *v, pgprot_t prot)
277{
278 int level;
279 pte_t *ptep;
280 pte_t pte;
281 unsigned long pfn;
282 struct page *page;
283
284 ptep = lookup_address((unsigned long)v, &level);
285 BUG_ON(ptep == NULL);
286
287 pfn = pte_pfn(*ptep);
288 page = pfn_to_page(pfn);
289
290 pte = pfn_pte(pfn, prot);
291
292 if (HYPERVISOR_update_va_mapping((unsigned long)v, pte, 0))
293 BUG();
294
295 if (!PageHighMem(page)) {
296 void *av = __va(PFN_PHYS(pfn));
297
298 if (av != v)
299 if (HYPERVISOR_update_va_mapping((unsigned long)av, pte, 0))
300 BUG();
301 } else
302 kmap_flush_unused();
303}
304
38ffbe66
JF
305static void xen_alloc_ldt(struct desc_struct *ldt, unsigned entries)
306{
a05d2eba 307 const unsigned entries_per_page = PAGE_SIZE / LDT_ENTRY_SIZE;
38ffbe66
JF
308 int i;
309
a05d2eba
JF
310 for(i = 0; i < entries; i += entries_per_page)
311 set_aliased_prot(ldt + i, PAGE_KERNEL_RO);
38ffbe66
JF
312}
313
314static void xen_free_ldt(struct desc_struct *ldt, unsigned entries)
315{
a05d2eba 316 const unsigned entries_per_page = PAGE_SIZE / LDT_ENTRY_SIZE;
38ffbe66
JF
317 int i;
318
a05d2eba
JF
319 for(i = 0; i < entries; i += entries_per_page)
320 set_aliased_prot(ldt + i, PAGE_KERNEL);
38ffbe66
JF
321}
322
5ead97c8
JF
323static void xen_set_ldt(const void *addr, unsigned entries)
324{
5ead97c8
JF
325 struct mmuext_op *op;
326 struct multicall_space mcs = xen_mc_entry(sizeof(*op));
327
328 op = mcs.args;
329 op->cmd = MMUEXT_SET_LDT;
4dbf7af6 330 op->arg1.linear_addr = (unsigned long)addr;
5ead97c8
JF
331 op->arg2.nr_ents = entries;
332
333 MULTI_mmuext_op(mcs.mc, op, 1, NULL, DOMID_SELF);
334
335 xen_mc_issue(PARAVIRT_LAZY_CPU);
336}
337
6b68f01b 338static void xen_load_gdt(const struct desc_ptr *dtr)
5ead97c8 339{
5ead97c8
JF
340 unsigned long va = dtr->address;
341 unsigned int size = dtr->size + 1;
342 unsigned pages = (size + PAGE_SIZE - 1) / PAGE_SIZE;
3ce5fa7e 343 unsigned long frames[pages];
5ead97c8 344 int f;
5ead97c8 345
577eebea
JF
346 /*
347 * A GDT can be up to 64k in size, which corresponds to 8192
348 * 8-byte entries, or 16 4k pages..
349 */
5ead97c8
JF
350
351 BUG_ON(size > 65536);
352 BUG_ON(va & ~PAGE_MASK);
353
5ead97c8 354 for (f = 0; va < dtr->address + size; va += PAGE_SIZE, f++) {
6ed6bf42 355 int level;
577eebea 356 pte_t *ptep;
6ed6bf42
JF
357 unsigned long pfn, mfn;
358 void *virt;
359
577eebea
JF
360 /*
361 * The GDT is per-cpu and is in the percpu data area.
362 * That can be virtually mapped, so we need to do a
363 * page-walk to get the underlying MFN for the
364 * hypercall. The page can also be in the kernel's
365 * linear range, so we need to RO that mapping too.
366 */
367 ptep = lookup_address(va, &level);
6ed6bf42
JF
368 BUG_ON(ptep == NULL);
369
370 pfn = pte_pfn(*ptep);
371 mfn = pfn_to_mfn(pfn);
372 virt = __va(PFN_PHYS(pfn));
373
374 frames[f] = mfn;
9976b39b 375
5ead97c8 376 make_lowmem_page_readonly((void *)va);
6ed6bf42 377 make_lowmem_page_readonly(virt);
5ead97c8
JF
378 }
379
3ce5fa7e
JF
380 if (HYPERVISOR_set_gdt(frames, size / sizeof(struct desc_struct)))
381 BUG();
5ead97c8
JF
382}
383
577eebea
JF
384/*
385 * load_gdt for early boot, when the gdt is only mapped once
386 */
387static __init void xen_load_gdt_boot(const struct desc_ptr *dtr)
388{
389 unsigned long va = dtr->address;
390 unsigned int size = dtr->size + 1;
391 unsigned pages = (size + PAGE_SIZE - 1) / PAGE_SIZE;
392 unsigned long frames[pages];
393 int f;
394
395 /*
396 * A GDT can be up to 64k in size, which corresponds to 8192
397 * 8-byte entries, or 16 4k pages..
398 */
399
400 BUG_ON(size > 65536);
401 BUG_ON(va & ~PAGE_MASK);
402
403 for (f = 0; va < dtr->address + size; va += PAGE_SIZE, f++) {
404 pte_t pte;
405 unsigned long pfn, mfn;
406
407 pfn = virt_to_pfn(va);
408 mfn = pfn_to_mfn(pfn);
409
410 pte = pfn_pte(pfn, PAGE_KERNEL_RO);
411
412 if (HYPERVISOR_update_va_mapping((unsigned long)va, pte, 0))
413 BUG();
414
415 frames[f] = mfn;
416 }
417
418 if (HYPERVISOR_set_gdt(frames, size / sizeof(struct desc_struct)))
419 BUG();
420}
421
5ead97c8
JF
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);
9976b39b 426 xmaddr_t maddr = arbitrary_virt_to_machine(&gdt[GDT_ENTRY_TLS_MIN+i]);
5ead97c8
JF
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{
8b84ad94 434 /*
ccbeed3a
TH
435 * XXX sleazy hack: If we're being called in a lazy-cpu zone
436 * and lazy gs handling is enabled, it means we're in a
437 * context switch, and %gs has just been saved. This means we
438 * can zero it out to prevent faults on exit from the
439 * hypervisor if the next process has no %gs. Either way, it
440 * has been saved, and the new value will get loaded properly.
441 * This will go away as soon as Xen has been modified to not
442 * save/restore %gs for normal hypercalls.
8a95408e
EH
443 *
444 * On x86_64, this hack is not used for %gs, because gs points
445 * to KERNEL_GS_BASE (and uses it for PDA references), so we
446 * must not zero %gs on x86_64
447 *
448 * For x86_64, we need to zero %fs, otherwise we may get an
449 * exception between the new %fs descriptor being loaded and
450 * %fs being effectively cleared at __switch_to().
8b84ad94 451 */
8a95408e
EH
452 if (paravirt_get_lazy_mode() == PARAVIRT_LAZY_CPU) {
453#ifdef CONFIG_X86_32
ccbeed3a 454 lazy_load_gs(0);
8a95408e
EH
455#else
456 loadsegment(fs, 0);
457#endif
458 }
459
460 xen_mc_batch();
461
462 load_TLS_descriptor(t, cpu, 0);
463 load_TLS_descriptor(t, cpu, 1);
464 load_TLS_descriptor(t, cpu, 2);
465
466 xen_mc_issue(PARAVIRT_LAZY_CPU);
5ead97c8
JF
467}
468
a8fc1089
EH
469#ifdef CONFIG_X86_64
470static void xen_load_gs_index(unsigned int idx)
471{
472 if (HYPERVISOR_set_segment_base(SEGBASE_GS_USER_SEL, idx))
473 BUG();
5ead97c8 474}
a8fc1089 475#endif
5ead97c8
JF
476
477static void xen_write_ldt_entry(struct desc_struct *dt, int entrynum,
75b8bb3e 478 const void *ptr)
5ead97c8 479{
cef43bf6 480 xmaddr_t mach_lp = arbitrary_virt_to_machine(&dt[entrynum]);
75b8bb3e 481 u64 entry = *(u64 *)ptr;
5ead97c8 482
f120f13e
JF
483 preempt_disable();
484
5ead97c8
JF
485 xen_mc_flush();
486 if (HYPERVISOR_update_descriptor(mach_lp.maddr, entry))
487 BUG();
f120f13e
JF
488
489 preempt_enable();
5ead97c8
JF
490}
491
e176d367 492static int cvt_gate_to_trap(int vector, const gate_desc *val,
5ead97c8
JF
493 struct trap_info *info)
494{
6cac5a92
JF
495 unsigned long addr;
496
6d02c426 497 if (val->type != GATE_TRAP && val->type != GATE_INTERRUPT)
5ead97c8
JF
498 return 0;
499
500 info->vector = vector;
6cac5a92
JF
501
502 addr = gate_offset(*val);
503#ifdef CONFIG_X86_64
b80119bb
JF
504 /*
505 * Look for known traps using IST, and substitute them
506 * appropriately. The debugger ones are the only ones we care
507 * about. Xen will handle faults like double_fault and
508 * machine_check, so we should never see them. Warn if
509 * there's an unexpected IST-using fault handler.
510 */
6cac5a92
JF
511 if (addr == (unsigned long)debug)
512 addr = (unsigned long)xen_debug;
513 else if (addr == (unsigned long)int3)
514 addr = (unsigned long)xen_int3;
515 else if (addr == (unsigned long)stack_segment)
516 addr = (unsigned long)xen_stack_segment;
b80119bb
JF
517 else if (addr == (unsigned long)double_fault ||
518 addr == (unsigned long)nmi) {
519 /* Don't need to handle these */
520 return 0;
521#ifdef CONFIG_X86_MCE
522 } else if (addr == (unsigned long)machine_check) {
523 return 0;
524#endif
525 } else {
526 /* Some other trap using IST? */
527 if (WARN_ON(val->ist != 0))
528 return 0;
529 }
6cac5a92
JF
530#endif /* CONFIG_X86_64 */
531 info->address = addr;
532
e176d367
EH
533 info->cs = gate_segment(*val);
534 info->flags = val->dpl;
5ead97c8 535 /* interrupt gates clear IF */
6d02c426
JF
536 if (val->type == GATE_INTERRUPT)
537 info->flags |= 1 << 2;
5ead97c8
JF
538
539 return 1;
540}
541
542/* Locations of each CPU's IDT */
6b68f01b 543static DEFINE_PER_CPU(struct desc_ptr, idt_desc);
5ead97c8
JF
544
545/* Set an IDT entry. If the entry is part of the current IDT, then
546 also update Xen. */
8d947344 547static void xen_write_idt_entry(gate_desc *dt, int entrynum, const gate_desc *g)
5ead97c8 548{
5ead97c8 549 unsigned long p = (unsigned long)&dt[entrynum];
f120f13e
JF
550 unsigned long start, end;
551
552 preempt_disable();
553
554 start = __get_cpu_var(idt_desc).address;
555 end = start + __get_cpu_var(idt_desc).size + 1;
5ead97c8
JF
556
557 xen_mc_flush();
558
8d947344 559 native_write_idt_entry(dt, entrynum, g);
5ead97c8
JF
560
561 if (p >= start && (p + 8) <= end) {
562 struct trap_info info[2];
563
564 info[1].address = 0;
565
e176d367 566 if (cvt_gate_to_trap(entrynum, g, &info[0]))
5ead97c8
JF
567 if (HYPERVISOR_set_trap_table(info))
568 BUG();
569 }
f120f13e
JF
570
571 preempt_enable();
5ead97c8
JF
572}
573
6b68f01b 574static void xen_convert_trap_info(const struct desc_ptr *desc,
f87e4cac 575 struct trap_info *traps)
5ead97c8 576{
5ead97c8
JF
577 unsigned in, out, count;
578
e176d367 579 count = (desc->size+1) / sizeof(gate_desc);
5ead97c8
JF
580 BUG_ON(count > 256);
581
5ead97c8 582 for (in = out = 0; in < count; in++) {
e176d367 583 gate_desc *entry = (gate_desc*)(desc->address) + in;
5ead97c8 584
e176d367 585 if (cvt_gate_to_trap(in, entry, &traps[out]))
5ead97c8
JF
586 out++;
587 }
588 traps[out].address = 0;
f87e4cac
JF
589}
590
591void xen_copy_trap_info(struct trap_info *traps)
592{
6b68f01b 593 const struct desc_ptr *desc = &__get_cpu_var(idt_desc);
f87e4cac
JF
594
595 xen_convert_trap_info(desc, traps);
f87e4cac
JF
596}
597
598/* Load a new IDT into Xen. In principle this can be per-CPU, so we
599 hold a spinlock to protect the static traps[] array (static because
600 it avoids allocation, and saves stack space). */
6b68f01b 601static void xen_load_idt(const struct desc_ptr *desc)
f87e4cac
JF
602{
603 static DEFINE_SPINLOCK(lock);
604 static struct trap_info traps[257];
f87e4cac
JF
605
606 spin_lock(&lock);
607
f120f13e
JF
608 __get_cpu_var(idt_desc) = *desc;
609
f87e4cac 610 xen_convert_trap_info(desc, traps);
5ead97c8
JF
611
612 xen_mc_flush();
613 if (HYPERVISOR_set_trap_table(traps))
614 BUG();
615
616 spin_unlock(&lock);
617}
618
619/* Write a GDT descriptor entry. Ignore LDT descriptors, since
620 they're handled differently. */
621static void xen_write_gdt_entry(struct desc_struct *dt, int entry,
014b15be 622 const void *desc, int type)
5ead97c8 623{
f120f13e
JF
624 preempt_disable();
625
014b15be
GOC
626 switch (type) {
627 case DESC_LDT:
628 case DESC_TSS:
5ead97c8
JF
629 /* ignore */
630 break;
631
632 default: {
9976b39b 633 xmaddr_t maddr = arbitrary_virt_to_machine(&dt[entry]);
5ead97c8
JF
634
635 xen_mc_flush();
014b15be 636 if (HYPERVISOR_update_descriptor(maddr.maddr, *(u64 *)desc))
5ead97c8
JF
637 BUG();
638 }
639
640 }
f120f13e
JF
641
642 preempt_enable();
5ead97c8
JF
643}
644
577eebea
JF
645/*
646 * Version of write_gdt_entry for use at early boot-time needed to
647 * update an entry as simply as possible.
648 */
649static __init void xen_write_gdt_entry_boot(struct desc_struct *dt, int entry,
650 const void *desc, int type)
651{
652 switch (type) {
653 case DESC_LDT:
654 case DESC_TSS:
655 /* ignore */
656 break;
657
658 default: {
659 xmaddr_t maddr = virt_to_machine(&dt[entry]);
660
661 if (HYPERVISOR_update_descriptor(maddr.maddr, *(u64 *)desc))
662 dt[entry] = *(struct desc_struct *)desc;
663 }
664
665 }
666}
667
faca6227 668static void xen_load_sp0(struct tss_struct *tss,
a05d2eba 669 struct thread_struct *thread)
5ead97c8
JF
670{
671 struct multicall_space mcs = xen_mc_entry(0);
faca6227 672 MULTI_stack_switch(mcs.mc, __KERNEL_DS, thread->sp0);
5ead97c8
JF
673 xen_mc_issue(PARAVIRT_LAZY_CPU);
674}
675
676static void xen_set_iopl_mask(unsigned mask)
677{
678 struct physdev_set_iopl set_iopl;
679
680 /* Force the change at ring 0. */
681 set_iopl.iopl = (mask == 0) ? 1 : (mask >> 12) & 3;
682 HYPERVISOR_physdev_op(PHYSDEVOP_set_iopl, &set_iopl);
683}
684
685static void xen_io_delay(void)
686{
687}
688
689#ifdef CONFIG_X86_LOCAL_APIC
ad66dd34 690static u32 xen_apic_read(u32 reg)
5ead97c8
JF
691{
692 return 0;
693}
f87e4cac 694
ad66dd34 695static void xen_apic_write(u32 reg, u32 val)
f87e4cac
JF
696{
697 /* Warn to see if there's any stray references */
698 WARN_ON(1);
699}
ad66dd34 700
ad66dd34
SS
701static u64 xen_apic_icr_read(void)
702{
703 return 0;
704}
705
706static void xen_apic_icr_write(u32 low, u32 id)
707{
708 /* Warn to see if there's any stray references */
709 WARN_ON(1);
710}
711
712static void xen_apic_wait_icr_idle(void)
713{
714 return;
715}
716
94a8c3c2
YL
717static u32 xen_safe_apic_wait_icr_idle(void)
718{
719 return 0;
720}
721
c1eeb2de
YL
722static void set_xen_basic_apic_ops(void)
723{
724 apic->read = xen_apic_read;
725 apic->write = xen_apic_write;
726 apic->icr_read = xen_apic_icr_read;
727 apic->icr_write = xen_apic_icr_write;
728 apic->wait_icr_idle = xen_apic_wait_icr_idle;
729 apic->safe_wait_icr_idle = xen_safe_apic_wait_icr_idle;
730}
ad66dd34 731
5ead97c8
JF
732#endif
733
7b1333aa
JF
734static void xen_clts(void)
735{
736 struct multicall_space mcs;
737
738 mcs = xen_mc_entry(0);
739
740 MULTI_fpu_taskswitch(mcs.mc, 0);
741
742 xen_mc_issue(PARAVIRT_LAZY_CPU);
743}
744
a789ed5f
JF
745static DEFINE_PER_CPU(unsigned long, xen_cr0_value);
746
747static unsigned long xen_read_cr0(void)
748{
749 unsigned long cr0 = percpu_read(xen_cr0_value);
750
751 if (unlikely(cr0 == 0)) {
752 cr0 = native_read_cr0();
753 percpu_write(xen_cr0_value, cr0);
754 }
755
756 return cr0;
757}
758
7b1333aa
JF
759static void xen_write_cr0(unsigned long cr0)
760{
761 struct multicall_space mcs;
762
a789ed5f
JF
763 percpu_write(xen_cr0_value, cr0);
764
7b1333aa
JF
765 /* Only pay attention to cr0.TS; everything else is
766 ignored. */
767 mcs = xen_mc_entry(0);
768
769 MULTI_fpu_taskswitch(mcs.mc, (cr0 & X86_CR0_TS) != 0);
770
771 xen_mc_issue(PARAVIRT_LAZY_CPU);
772}
773
5ead97c8
JF
774static void xen_write_cr4(unsigned long cr4)
775{
2956a351
JF
776 cr4 &= ~X86_CR4_PGE;
777 cr4 &= ~X86_CR4_PSE;
778
779 native_write_cr4(cr4);
5ead97c8
JF
780}
781
1153968a
JF
782static int xen_write_msr_safe(unsigned int msr, unsigned low, unsigned high)
783{
784 int ret;
785
786 ret = 0;
787
f63c2f24 788 switch (msr) {
1153968a
JF
789#ifdef CONFIG_X86_64
790 unsigned which;
791 u64 base;
792
793 case MSR_FS_BASE: which = SEGBASE_FS; goto set;
794 case MSR_KERNEL_GS_BASE: which = SEGBASE_GS_USER; goto set;
795 case MSR_GS_BASE: which = SEGBASE_GS_KERNEL; goto set;
796
797 set:
798 base = ((u64)high << 32) | low;
799 if (HYPERVISOR_set_segment_base(which, base) != 0)
0cc0213e 800 ret = -EIO;
1153968a
JF
801 break;
802#endif
d89961e2
JF
803
804 case MSR_STAR:
805 case MSR_CSTAR:
806 case MSR_LSTAR:
807 case MSR_SYSCALL_MASK:
808 case MSR_IA32_SYSENTER_CS:
809 case MSR_IA32_SYSENTER_ESP:
810 case MSR_IA32_SYSENTER_EIP:
811 /* Fast syscall setup is all done in hypercalls, so
812 these are all ignored. Stub them out here to stop
813 Xen console noise. */
814 break;
815
1153968a
JF
816 default:
817 ret = native_write_msr_safe(msr, low, high);
818 }
819
820 return ret;
821}
822
0e91398f 823void xen_setup_shared_info(void)
5ead97c8
JF
824{
825 if (!xen_feature(XENFEAT_auto_translated_physmap)) {
15664f96
JF
826 set_fixmap(FIX_PARAVIRT_BOOTMAP,
827 xen_start_info->shared_info);
828
829 HYPERVISOR_shared_info =
830 (struct shared_info *)fix_to_virt(FIX_PARAVIRT_BOOTMAP);
5ead97c8
JF
831 } else
832 HYPERVISOR_shared_info =
833 (struct shared_info *)__va(xen_start_info->shared_info);
834
2e8fe719
JF
835#ifndef CONFIG_SMP
836 /* In UP this is as good a place as any to set up shared info */
837 xen_setup_vcpu_info_placement();
838#endif
d5edbc1f
JF
839
840 xen_setup_mfn_list_list();
2e8fe719
JF
841}
842
60223a32 843/* This is called once we have the cpu_possible_map */
0e91398f 844void xen_setup_vcpu_info_placement(void)
60223a32
JF
845{
846 int cpu;
847
848 for_each_possible_cpu(cpu)
849 xen_vcpu_setup(cpu);
850
851 /* xen_vcpu_setup managed to place the vcpu_info within the
852 percpu area for all cpus, so make use of it */
853 if (have_vcpu_info_placement) {
854 printk(KERN_INFO "Xen: using vcpu_info placement\n");
855
ecb93d1c
JF
856 pv_irq_ops.save_fl = __PV_IS_CALLEE_SAVE(xen_save_fl_direct);
857 pv_irq_ops.restore_fl = __PV_IS_CALLEE_SAVE(xen_restore_fl_direct);
858 pv_irq_ops.irq_disable = __PV_IS_CALLEE_SAVE(xen_irq_disable_direct);
859 pv_irq_ops.irq_enable = __PV_IS_CALLEE_SAVE(xen_irq_enable_direct);
93b1eab3 860 pv_mmu_ops.read_cr2 = xen_read_cr2_direct;
60223a32 861 }
5ead97c8
JF
862}
863
ab144f5e
AK
864static unsigned xen_patch(u8 type, u16 clobbers, void *insnbuf,
865 unsigned long addr, unsigned len)
6487673b
JF
866{
867 char *start, *end, *reloc;
868 unsigned ret;
869
870 start = end = reloc = NULL;
871
93b1eab3
JF
872#define SITE(op, x) \
873 case PARAVIRT_PATCH(op.x): \
6487673b
JF
874 if (have_vcpu_info_placement) { \
875 start = (char *)xen_##x##_direct; \
876 end = xen_##x##_direct_end; \
877 reloc = xen_##x##_direct_reloc; \
878 } \
879 goto patch_site
880
881 switch (type) {
93b1eab3
JF
882 SITE(pv_irq_ops, irq_enable);
883 SITE(pv_irq_ops, irq_disable);
884 SITE(pv_irq_ops, save_fl);
885 SITE(pv_irq_ops, restore_fl);
6487673b
JF
886#undef SITE
887
888 patch_site:
889 if (start == NULL || (end-start) > len)
890 goto default_patch;
891
ab144f5e 892 ret = paravirt_patch_insns(insnbuf, len, start, end);
6487673b
JF
893
894 /* Note: because reloc is assigned from something that
895 appears to be an array, gcc assumes it's non-null,
896 but doesn't know its relationship with start and
897 end. */
898 if (reloc > start && reloc < end) {
899 int reloc_off = reloc - start;
ab144f5e
AK
900 long *relocp = (long *)(insnbuf + reloc_off);
901 long delta = start - (char *)addr;
6487673b
JF
902
903 *relocp += delta;
904 }
905 break;
906
907 default_patch:
908 default:
ab144f5e
AK
909 ret = paravirt_patch_default(type, clobbers, insnbuf,
910 addr, len);
6487673b
JF
911 break;
912 }
913
914 return ret;
915}
916
93b1eab3 917static const struct pv_info xen_info __initdata = {
5ead97c8
JF
918 .paravirt_enabled = 1,
919 .shared_kernel_pmd = 0,
920
921 .name = "Xen",
93b1eab3 922};
5ead97c8 923
93b1eab3 924static const struct pv_init_ops xen_init_ops __initdata = {
6487673b 925 .patch = xen_patch,
93b1eab3 926};
5ead97c8 927
93b1eab3 928static const struct pv_time_ops xen_time_ops __initdata = {
8a22b999 929 .sched_clock = xen_clocksource_read,
93b1eab3 930};
15c84731 931
93b1eab3 932static const struct pv_cpu_ops xen_cpu_ops __initdata = {
5ead97c8
JF
933 .cpuid = xen_cpuid,
934
935 .set_debugreg = xen_set_debugreg,
936 .get_debugreg = xen_get_debugreg,
937
7b1333aa 938 .clts = xen_clts,
5ead97c8 939
a789ed5f 940 .read_cr0 = xen_read_cr0,
7b1333aa 941 .write_cr0 = xen_write_cr0,
5ead97c8 942
5ead97c8
JF
943 .read_cr4 = native_read_cr4,
944 .read_cr4_safe = native_read_cr4_safe,
945 .write_cr4 = xen_write_cr4,
946
5ead97c8
JF
947 .wbinvd = native_wbinvd,
948
949 .read_msr = native_read_msr_safe,
1153968a 950 .write_msr = xen_write_msr_safe,
5ead97c8
JF
951 .read_tsc = native_read_tsc,
952 .read_pmc = native_read_pmc,
953
81e103f1 954 .iret = xen_iret,
d75cd22f 955 .irq_enable_sysexit = xen_sysexit,
6fcac6d3
JF
956#ifdef CONFIG_X86_64
957 .usergs_sysret32 = xen_sysret32,
958 .usergs_sysret64 = xen_sysret64,
959#endif
5ead97c8
JF
960
961 .load_tr_desc = paravirt_nop,
962 .set_ldt = xen_set_ldt,
963 .load_gdt = xen_load_gdt,
964 .load_idt = xen_load_idt,
965 .load_tls = xen_load_tls,
a8fc1089
EH
966#ifdef CONFIG_X86_64
967 .load_gs_index = xen_load_gs_index,
968#endif
5ead97c8 969
38ffbe66
JF
970 .alloc_ldt = xen_alloc_ldt,
971 .free_ldt = xen_free_ldt,
972
5ead97c8
JF
973 .store_gdt = native_store_gdt,
974 .store_idt = native_store_idt,
975 .store_tr = xen_store_tr,
976
977 .write_ldt_entry = xen_write_ldt_entry,
978 .write_gdt_entry = xen_write_gdt_entry,
979 .write_idt_entry = xen_write_idt_entry,
faca6227 980 .load_sp0 = xen_load_sp0,
5ead97c8
JF
981
982 .set_iopl_mask = xen_set_iopl_mask,
983 .io_delay = xen_io_delay,
984
952d1d70
JF
985 /* Xen takes care of %gs when switching to usermode for us */
986 .swapgs = paravirt_nop,
987
224101ed
JF
988 .start_context_switch = paravirt_start_context_switch,
989 .end_context_switch = xen_end_context_switch,
93b1eab3
JF
990};
991
93b1eab3 992static const struct pv_apic_ops xen_apic_ops __initdata = {
5ead97c8 993#ifdef CONFIG_X86_LOCAL_APIC
5ead97c8
JF
994 .startup_ipi_hook = paravirt_nop,
995#endif
93b1eab3
JF
996};
997
fefa629a
JF
998static void xen_reboot(int reason)
999{
349c709f
JF
1000 struct sched_shutdown r = { .reason = reason };
1001
fefa629a
JF
1002#ifdef CONFIG_SMP
1003 smp_send_stop();
1004#endif
1005
349c709f 1006 if (HYPERVISOR_sched_op(SCHEDOP_shutdown, &r))
fefa629a
JF
1007 BUG();
1008}
1009
1010static void xen_restart(char *msg)
1011{
1012 xen_reboot(SHUTDOWN_reboot);
1013}
1014
1015static void xen_emergency_restart(void)
1016{
1017 xen_reboot(SHUTDOWN_reboot);
1018}
1019
1020static void xen_machine_halt(void)
1021{
1022 xen_reboot(SHUTDOWN_poweroff);
1023}
1024
1025static void xen_crash_shutdown(struct pt_regs *regs)
1026{
1027 xen_reboot(SHUTDOWN_crash);
1028}
1029
1030static const struct machine_ops __initdata xen_machine_ops = {
1031 .restart = xen_restart,
1032 .halt = xen_machine_halt,
1033 .power_off = xen_machine_halt,
1034 .shutdown = xen_machine_halt,
1035 .crash_shutdown = xen_crash_shutdown,
1036 .emergency_restart = xen_emergency_restart,
1037};
1038
577eebea
JF
1039/*
1040 * Set up the GDT and segment registers for -fstack-protector. Until
1041 * we do this, we have to be careful not to call any stack-protected
1042 * function, which is most of the kernel.
1043 */
1044static void __init xen_setup_stackprotector(void)
1045{
1046 pv_cpu_ops.write_gdt_entry = xen_write_gdt_entry_boot;
1047 pv_cpu_ops.load_gdt = xen_load_gdt_boot;
1048
1049 setup_stack_canary_segment(0);
1050 switch_to_new_gdt(0);
1051
1052 pv_cpu_ops.write_gdt_entry = xen_write_gdt_entry;
1053 pv_cpu_ops.load_gdt = xen_load_gdt;
1054}
1055
5ead97c8
JF
1056/* First C function to be called on Xen boot */
1057asmlinkage void __init xen_start_kernel(void)
1058{
1059 pgd_t *pgd;
1060
1061 if (!xen_start_info)
1062 return;
1063
6e833587
JF
1064 xen_domain_type = XEN_PV_DOMAIN;
1065
5ead97c8 1066 /* Install Xen paravirt ops */
93b1eab3
JF
1067 pv_info = xen_info;
1068 pv_init_ops = xen_init_ops;
1069 pv_time_ops = xen_time_ops;
1070 pv_cpu_ops = xen_cpu_ops;
93b1eab3 1071 pv_apic_ops = xen_apic_ops;
93b1eab3 1072
6b18ae3e 1073 x86_init.resources.memory_setup = xen_memory_setup;
42bbdb43 1074 x86_init.oem.arch_setup = xen_arch_setup;
6f30c1ac 1075 x86_init.oem.banner = xen_banner;
845b3944
TG
1076
1077 x86_init.timers.timer_init = xen_time_init;
736decac
TG
1078 x86_init.timers.setup_percpu_clockev = x86_init_noop;
1079 x86_cpuinit.setup_percpu_clockev = x86_init_noop;
6b18ae3e 1080
2d826404 1081 x86_platform.calibrate_tsc = xen_tsc_khz;
7bd867df
FT
1082 x86_platform.get_wallclock = xen_get_wallclock;
1083 x86_platform.set_wallclock = xen_set_wallclock;
93b1eab3 1084
ce2eef33 1085 /*
577eebea 1086 * Set up some pagetable state before starting to set any ptes.
ce2eef33 1087 */
577eebea 1088
973df35e
JF
1089 xen_init_mmu_ops();
1090
577eebea
JF
1091 /* Prevent unwanted bits from being set in PTEs. */
1092 __supported_pte_mask &= ~_PAGE_GLOBAL;
1093 if (!xen_initial_domain())
1094 __supported_pte_mask &= ~(_PAGE_PWT | _PAGE_PCD);
1095
1096 __supported_pte_mask |= _PAGE_IOMAP;
1097
817a824b
IC
1098 /*
1099 * Prevent page tables from being allocated in highmem, even
1100 * if CONFIG_HIGHPTE is enabled.
1101 */
1102 __userpte_alloc_gfp &= ~__GFP_HIGHMEM;
1103
b75fe4e5 1104 /* Work out if we support NX */
4763ed4d 1105 x86_configure_nx();
b75fe4e5 1106
577eebea
JF
1107 xen_setup_features();
1108
1109 /* Get mfn list */
1110 if (!xen_feature(XENFEAT_auto_translated_physmap))
1111 xen_build_dynamic_phys_to_machine();
1112
1113 /*
1114 * Set up kernel GDT and segment registers, mainly so that
1115 * -fstack-protector code can be executed.
1116 */
1117 xen_setup_stackprotector();
0d1edf46 1118
ce2eef33 1119 xen_init_irq_ops();
e826fe1b
JF
1120 xen_init_cpuid_mask();
1121
94a8c3c2 1122#ifdef CONFIG_X86_LOCAL_APIC
ad66dd34 1123 /*
94a8c3c2 1124 * set up the basic apic ops.
ad66dd34 1125 */
c1eeb2de 1126 set_xen_basic_apic_ops();
ad66dd34 1127#endif
93b1eab3 1128
e57778a1
JF
1129 if (xen_feature(XENFEAT_mmu_pt_update_preserve_ad)) {
1130 pv_mmu_ops.ptep_modify_prot_start = xen_ptep_modify_prot_start;
1131 pv_mmu_ops.ptep_modify_prot_commit = xen_ptep_modify_prot_commit;
1132 }
1133
fefa629a
JF
1134 machine_ops = xen_machine_ops;
1135
38341432
JF
1136 /*
1137 * The only reliable way to retain the initial address of the
1138 * percpu gdt_page is to remember it here, so we can go and
1139 * mark it RW later, when the initial percpu area is freed.
1140 */
1141 xen_initial_gdt = &per_cpu(gdt_page, 0);
795f99b6 1142
a9e7062d 1143 xen_smp_init();
5ead97c8 1144
5ead97c8
JF
1145 pgd = (pgd_t *)xen_start_info->pt_base;
1146
60223a32 1147 /* Don't do the full vcpu_info placement stuff until we have a
2e8fe719 1148 possible map and a non-dummy shared_info. */
60223a32 1149 per_cpu(xen_vcpu, 0) = &HYPERVISOR_shared_info->vcpu_info[0];
5ead97c8 1150
55d80856
JF
1151 local_irq_disable();
1152 early_boot_irqs_off();
1153
084a2a4e 1154 xen_raw_console_write("mapping kernel into physical memory\n");
d114e198 1155 pgd = xen_setup_kernel_pagetable(pgd, xen_start_info->nr_pages);
5ead97c8 1156
084a2a4e 1157 init_mm.pgd = pgd;
5ead97c8
JF
1158
1159 /* keep using Xen gdt for now; no urgent need to change it */
1160
e68266b7 1161#ifdef CONFIG_X86_32
93b1eab3 1162 pv_info.kernel_rpl = 1;
5ead97c8 1163 if (xen_feature(XENFEAT_supervisor_mode_kernel))
93b1eab3 1164 pv_info.kernel_rpl = 0;
e68266b7
IC
1165#else
1166 pv_info.kernel_rpl = 0;
1167#endif
5ead97c8
JF
1168
1169 /* set the limit of our address space */
fb1d8404 1170 xen_reserve_top();
5ead97c8 1171
7d087b68 1172#ifdef CONFIG_X86_32
5ead97c8
JF
1173 /* set up basic CPUID stuff */
1174 cpu_detect(&new_cpu_data);
1175 new_cpu_data.hard_math = 1;
d560bc61 1176 new_cpu_data.wp_works_ok = 1;
5ead97c8 1177 new_cpu_data.x86_capability[0] = cpuid_edx(1);
7d087b68 1178#endif
5ead97c8
JF
1179
1180 /* Poke various useful things into boot_params */
30c82645
PA
1181 boot_params.hdr.type_of_loader = (9 << 4) | 0;
1182 boot_params.hdr.ramdisk_image = xen_start_info->mod_start
1183 ? __pa(xen_start_info->mod_start) : 0;
1184 boot_params.hdr.ramdisk_size = xen_start_info->mod_len;
b7c3c5c1 1185 boot_params.hdr.cmd_line_ptr = __pa(xen_start_info->cmd_line);
5ead97c8 1186
6e833587 1187 if (!xen_initial_domain()) {
83abc70a 1188 add_preferred_console("xenboot", 0, NULL);
9e124fe1 1189 add_preferred_console("tty", 0, NULL);
b8c2d3df 1190 add_preferred_console("hvc", 0, NULL);
5d990b62
CW
1191 } else {
1192 /* Make sure ACS will be enabled */
1193 pci_request_acs();
9e124fe1 1194 }
5d990b62 1195
b8c2d3df 1196
084a2a4e
JF
1197 xen_raw_console_write("about to get started...\n");
1198
499d19b8
JF
1199 xen_setup_runstate_info(0);
1200
5ead97c8 1201 /* Start the world */
f5d36de0 1202#ifdef CONFIG_X86_32
f0d43100 1203 i386_start_kernel();
f5d36de0 1204#else
084a2a4e 1205 x86_64_start_reservations((char *)__pa_symbol(&boot_params));
f5d36de0 1206#endif
5ead97c8 1207}