blob: 30822e8e64aceff30d0a8a6810b62fcf1cd62d57 [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
Sheng Yang38e20b02010-05-14 12:40:51 +010014#include <linux/cpu.h>
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070015#include <linux/kernel.h>
16#include <linux/init.h>
17#include <linux/smp.h>
18#include <linux/preempt.h>
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -070019#include <linux/hardirq.h>
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070020#include <linux/percpu.h>
21#include <linux/delay.h>
22#include <linux/start_kernel.h>
23#include <linux/sched.h>
Jeremy Fitzhardinge6cac5a92009-03-29 19:56:29 -070024#include <linux/kprobes.h>
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070025#include <linux/bootmem.h>
Paul Gortmaker7a2463d2016-07-13 20:18:59 -040026#include <linux/export.h>
Jeremy Fitzhardingef4f97b32007-07-17 18:37:05 -070027#include <linux/mm.h>
28#include <linux/page-flags.h>
29#include <linux/highmem.h>
Markus Armbrusterb8c2d3d2008-02-27 14:56:35 +010030#include <linux/console.h>
Chris Wright5d990b62009-12-04 12:15:21 -080031#include <linux/pci.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090032#include <linux/gfp.h>
Jeremy Fitzhardinge236260b2010-10-06 15:52:29 -070033#include <linux/memblock.h>
David Vrabel96f28bc2013-04-03 17:31:50 +010034#include <linux/edd.h>
Josh Poimboeuf983bb6d2016-02-28 22:22:36 -060035#include <linux/frame.h>
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070036
Vitaly Kuznetsov0b34a162015-09-25 11:59:52 +020037#include <linux/kexec.h>
Vitaly Kuznetsov0b34a162015-09-25 11:59:52 +020038
Jeremy Fitzhardinge1ccbf532009-10-06 15:11:14 -070039#include <xen/xen.h>
Stefano Stabellini0ec53ec2012-09-14 13:37:32 +000040#include <xen/events.h>
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070041#include <xen/interface/xen.h>
Jeremy Fitzhardingeecbf29c2008-12-16 12:37:07 -080042#include <xen/interface/version.h>
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070043#include <xen/interface/physdev.h>
44#include <xen/interface/vcpu.h>
Sheng Yangbee6ab532010-05-14 12:39:33 +010045#include <xen/interface/memory.h>
Jan Beulichf221b042015-01-13 07:40:05 +000046#include <xen/interface/nmi.h>
Liu, Jinsongcef12ee2012-06-07 19:56:51 +080047#include <xen/interface/xen-mca.h>
Boris Ostrovsky7243b932017-02-05 19:50:52 -050048#include <xen/interface/hvm/start_info.h>
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070049#include <xen/features.h>
50#include <xen/page.h>
Sheng Yang38e20b02010-05-14 12:40:51 +010051#include <xen/hvm.h>
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -070052#include <xen/hvc-console.h>
Konrad Rzeszutek Wilk211063d2011-12-08 17:32:23 +080053#include <xen/acpi.h>
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070054
55#include <asm/paravirt.h>
Ingo Molnar7b6aa332009-02-17 13:58:15 +010056#include <asm/apic.h>
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070057#include <asm/page.h>
Alex Nixonb5401a92010-03-18 16:31:34 -040058#include <asm/xen/pci.h>
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070059#include <asm/xen/hypercall.h>
60#include <asm/xen/hypervisor.h>
Vitaly Kuznetsov88e957d2016-06-30 17:56:37 +020061#include <asm/xen/cpuid.h>
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070062#include <asm/fixmap.h>
63#include <asm/processor.h>
Jeremy Fitzhardinge707ebbc2009-03-27 11:29:02 -070064#include <asm/proto.h>
Jeremy Fitzhardinge11539682008-07-08 15:07:16 -070065#include <asm/msr-index.h>
Jeremy Fitzhardinge6cac5a92009-03-29 19:56:29 -070066#include <asm/traps.h>
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070067#include <asm/setup.h>
68#include <asm/desc.h>
Ian Campbell817a8242010-02-26 17:16:00 +000069#include <asm/pgalloc.h>
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070070#include <asm/pgtable.h>
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -070071#include <asm/tlbflush.h>
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -070072#include <asm/reboot.h>
Jeremy Fitzhardinge577eebe2009-08-27 12:46:35 -070073#include <asm/stackprotector.h>
Sheng Yangbee6ab532010-05-14 12:39:33 +010074#include <asm/hypervisor.h>
Jan Beulichf221b042015-01-13 07:40:05 +000075#include <asm/mach_traps.h>
Konrad Rzeszutek Wilk73c154c2012-02-13 22:26:32 -050076#include <asm/mwait.h>
David Vrabel76a8df72012-05-04 14:29:46 +010077#include <asm/pci_x86.h>
Stefano Stabellinia314e3e2015-10-22 16:20:46 +000078#include <asm/cpu.h>
Ingo Molnar687d77a2017-03-01 08:49:47 +010079#include <asm/e820/api.h>
Konrad Rzeszutek Wilk73c154c2012-02-13 22:26:32 -050080
81#ifdef CONFIG_ACPI
82#include <linux/acpi.h>
83#include <asm/acpi.h>
84#include <acpi/pdc_intel.h>
85#include <acpi/processor.h>
86#include <xen/interface/platform.h>
87#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070088
89#include "xen-ops.h"
Jeremy Fitzhardinge3b827c12007-07-17 18:37:04 -070090#include "mmu.h"
Ben Guthrof447d562012-04-21 00:11:04 +080091#include "smp.h"
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070092#include "multicalls.h"
Boris Ostrovsky65d0cf02015-08-10 16:34:34 -040093#include "pmu.h"
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -070094
95EXPORT_SYMBOL_GPL(hypercall_page);
96
Konrad Rzeszutek Wilka5209962013-05-05 08:51:47 -040097/*
98 * Pointer to the xen_vcpu_info structure or
99 * &HYPERVISOR_shared_info->vcpu_info[cpu]. See xen_hvm_init_shared_info
100 * and xen_vcpu_setup for details. By default it points to share_info->vcpu_info
101 * but if the hypervisor supports VCPUOP_register_vcpu_info then it can point
102 * to xen_vcpu_info. The pointer is used in __xen_evtchn_do_upcall to
103 * acknowledge pending events.
104 * Also more subtly it is used by the patched version of irq enable/disable
105 * e.g. xen_irq_enable_direct and xen_iret in PV mode.
106 *
107 * The desire to be able to do those mask/unmask operations as a single
108 * instruction by using the per-cpu offset held in %gs is the real reason
109 * vcpu info is in a per-cpu pointer and the original reason for this
110 * hypercall.
111 *
112 */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700113DEFINE_PER_CPU(struct vcpu_info *, xen_vcpu);
Konrad Rzeszutek Wilka5209962013-05-05 08:51:47 -0400114
115/*
116 * Per CPU pages used if hypervisor supports VCPUOP_register_vcpu_info
117 * hypercall. This can be used both in PV and PVHVM mode. The structure
118 * overrides the default per_cpu(xen_vcpu, cpu) value.
119 */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700120DEFINE_PER_CPU(struct vcpu_info, xen_vcpu_info);
Jeremy Fitzhardinge9f799912007-10-16 11:51:30 -0700121
Vitaly Kuznetsov88e957d2016-06-30 17:56:37 +0200122/* Linux <-> Xen vCPU id mapping */
Vitaly Kuznetsov55467de2016-07-29 11:06:48 +0200123DEFINE_PER_CPU(uint32_t, xen_vcpu_id);
Vitaly Kuznetsov88e957d2016-06-30 17:56:37 +0200124EXPORT_PER_CPU_SYMBOL(xen_vcpu_id);
125
Jeremy Fitzhardinge6e833582008-08-19 13:16:17 -0700126enum xen_domain_type xen_domain_type = XEN_NATIVE;
127EXPORT_SYMBOL_GPL(xen_domain_type);
128
Ian Campbell7e775062010-09-30 12:37:26 +0100129unsigned long *machine_to_phys_mapping = (void *)MACH2PHYS_VIRT_START;
130EXPORT_SYMBOL(machine_to_phys_mapping);
Jan Beulichccbcdf72011-08-16 15:07:41 +0100131unsigned long machine_to_phys_nr;
132EXPORT_SYMBOL(machine_to_phys_nr);
Ian Campbell7e775062010-09-30 12:37:26 +0100133
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700134struct start_info *xen_start_info;
135EXPORT_SYMBOL_GPL(xen_start_info);
136
Jeremy Fitzhardingea0d695c2008-05-26 23:31:21 +0100137struct shared_info xen_dummy_shared_info;
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700138
Jeremy Fitzhardinge38341432009-02-02 13:55:31 -0800139void *xen_initial_gdt;
140
Sheng Yangbee6ab532010-05-14 12:39:33 +0100141RESERVE_BRK(shared_info_page_brk, PAGE_SIZE);
142
Boris Ostrovsky4d737042016-09-07 13:19:00 -0400143static int xen_cpu_up_prepare(unsigned int cpu);
144static int xen_cpu_up_online(unsigned int cpu);
145static int xen_cpu_dead(unsigned int cpu);
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700146
147/*
148 * Point at some empty memory to start with. We map the real shared_info
149 * page as soon as fixmap is up and running.
150 */
Olaf Hering4648da72012-07-17 11:57:41 +0200151struct shared_info *HYPERVISOR_shared_info = &xen_dummy_shared_info;
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700152
153/*
154 * Flag to determine whether vcpu info placement is available on all
155 * VCPUs. We assume it is to start with, and then set it to zero on
156 * the first failure. This is because it can succeed on some VCPUs
157 * and not others, since it can involve hypervisor memory allocation,
158 * or because the guest failed to guarantee all the appropriate
159 * constraints on all VCPUs (ie buffer can't cross a page boundary).
160 *
161 * Note that any particular CPU may be using a placed vcpu structure,
162 * but we can only optimise if the all are.
163 *
164 * 0: not available, 1: available
165 */
Jeremy Fitzhardingee4d04072009-02-02 13:55:54 -0800166static int have_vcpu_info_placement = 1;
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700167
David Vrabel1c32cdc2012-07-09 11:39:08 +0100168struct tls_descs {
169 struct desc_struct desc[3];
170};
171
172/*
173 * Updating the 3 TLS descriptors in the GDT on every task switch is
174 * surprisingly expensive so we avoid updating them if they haven't
175 * changed. Since Xen writes different descriptors than the one
176 * passed in the update_descriptor hypercall we keep shadow copies to
177 * compare against.
178 */
179static DEFINE_PER_CPU(struct tls_descs, shadow_tls_desc);
180
Boris Ostrovsky7243b932017-02-05 19:50:52 -0500181#ifdef CONFIG_XEN_PVH
182/*
183 * PVH variables.
184 *
185 * xen_pvh and pvh_bootparams need to live in data segment since they
186 * are used after startup_{32|64}, which clear .bss, are invoked.
187 */
188bool xen_pvh __attribute__((section(".data"))) = 0;
189struct boot_params pvh_bootparams __attribute__((section(".data")));
190
191struct hvm_start_info pvh_start_info;
192unsigned int pvh_start_info_sz = sizeof(pvh_start_info);
193#endif
194
Mukesh Rathorc06ee782010-07-19 10:25:08 -0700195static void clamp_max_cpus(void)
196{
197#ifdef CONFIG_SMP
198 if (setup_max_cpus > MAX_VIRT_CPUS)
199 setup_max_cpus = MAX_VIRT_CPUS;
200#endif
201}
202
Vitaly Kuznetsovee42d662016-06-30 17:56:43 +0200203void xen_vcpu_setup(int cpu)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700204{
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700205 struct vcpu_register_vcpu_info info;
206 int err;
207 struct vcpu_info *vcpup;
208
Jeremy Fitzhardingea0d695c2008-05-26 23:31:21 +0100209 BUG_ON(HYPERVISOR_shared_info == &xen_dummy_shared_info);
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700210
Konrad Rzeszutek Wilk7f1fc262013-05-05 09:30:09 -0400211 /*
212 * This path is called twice on PVHVM - first during bootup via
213 * smp_init -> xen_hvm_cpu_notify, and then if the VCPU is being
214 * hotplugged: cpu_up -> xen_hvm_cpu_notify.
215 * As we can only do the VCPUOP_register_vcpu_info once lets
216 * not over-write its result.
217 *
218 * For PV it is called during restore (xen_vcpu_restore) and bootup
219 * (xen_setup_vcpu_info_placement). The hotplug mechanism does not
220 * use this function.
221 */
222 if (xen_hvm_domain()) {
223 if (per_cpu(xen_vcpu, cpu) == &per_cpu(xen_vcpu_info, cpu))
224 return;
225 }
Vitaly Kuznetsove15a8622016-06-30 17:56:39 +0200226 if (xen_vcpu_nr(cpu) < MAX_VIRT_CPUS)
227 per_cpu(xen_vcpu, cpu) =
228 &HYPERVISOR_shared_info->vcpu_info[xen_vcpu_nr(cpu)];
Mukesh Rathorc06ee782010-07-19 10:25:08 -0700229
230 if (!have_vcpu_info_placement) {
231 if (cpu >= MAX_VIRT_CPUS)
232 clamp_max_cpus();
233 return;
234 }
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700235
236 vcpup = &per_cpu(xen_vcpu_info, cpu);
Jeremy Fitzhardinge9976b392009-02-27 09:19:26 -0800237 info.mfn = arbitrary_virt_to_mfn(vcpup);
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700238 info.offset = offset_in_page(vcpup);
239
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700240 /* Check to see if the hypervisor will put the vcpu_info
241 structure where we want it, which allows direct access via
Konrad Rzeszutek Wilka5209962013-05-05 08:51:47 -0400242 a percpu-variable.
243 N.B. This hypercall can _only_ be called once per CPU. Subsequent
244 calls will error out with -EINVAL. This is due to the fact that
245 hypervisor has no unregister variant and this hypercall does not
246 allow to over-write info.mfn and info.offset.
247 */
Vitaly Kuznetsovad5475f2016-06-30 17:56:38 +0200248 err = HYPERVISOR_vcpu_op(VCPUOP_register_vcpu_info, xen_vcpu_nr(cpu),
249 &info);
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700250
251 if (err) {
252 printk(KERN_DEBUG "register_vcpu_info failed: err=%d\n", err);
253 have_vcpu_info_placement = 0;
Mukesh Rathorc06ee782010-07-19 10:25:08 -0700254 clamp_max_cpus();
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700255 } else {
256 /* This cpu is using the registered vcpu info, even if
257 later ones fail to. */
258 per_cpu(xen_vcpu, cpu) = vcpup;
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -0700259 }
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700260}
261
Jeremy Fitzhardinge9c7a7942008-05-31 01:33:02 +0100262/*
263 * On restore, set the vcpu placement up again.
264 * If it fails, then we're in a bad state, since
265 * we can't back out from using it...
266 */
267void xen_vcpu_restore(void)
268{
Jeremy Fitzhardinge3905bb22009-11-21 08:46:29 +0800269 int cpu;
Jeremy Fitzhardinge9c7a7942008-05-31 01:33:02 +0100270
Wei Liu9d328a92012-12-13 15:33:05 +0000271 for_each_possible_cpu(cpu) {
Jeremy Fitzhardinge3905bb22009-11-21 08:46:29 +0800272 bool other_cpu = (cpu != smp_processor_id());
Vitaly Kuznetsovad5475f2016-06-30 17:56:38 +0200273 bool is_up = HYPERVISOR_vcpu_op(VCPUOP_is_up, xen_vcpu_nr(cpu),
274 NULL);
Jeremy Fitzhardinge9c7a7942008-05-31 01:33:02 +0100275
Wei Liu9d328a92012-12-13 15:33:05 +0000276 if (other_cpu && is_up &&
Vitaly Kuznetsovad5475f2016-06-30 17:56:38 +0200277 HYPERVISOR_vcpu_op(VCPUOP_down, xen_vcpu_nr(cpu), NULL))
Jeremy Fitzhardinge3905bb22009-11-21 08:46:29 +0800278 BUG();
Jeremy Fitzhardinge9c7a7942008-05-31 01:33:02 +0100279
Jeremy Fitzhardinge3905bb22009-11-21 08:46:29 +0800280 xen_setup_runstate_info(cpu);
Ian Campbellbe0129202009-11-21 08:35:55 +0800281
Jeremy Fitzhardinge3905bb22009-11-21 08:46:29 +0800282 if (have_vcpu_info_placement)
Jeremy Fitzhardinge9c7a7942008-05-31 01:33:02 +0100283 xen_vcpu_setup(cpu);
284
Wei Liu9d328a92012-12-13 15:33:05 +0000285 if (other_cpu && is_up &&
Vitaly Kuznetsovad5475f2016-06-30 17:56:38 +0200286 HYPERVISOR_vcpu_op(VCPUOP_up, xen_vcpu_nr(cpu), NULL))
Jeremy Fitzhardinge3905bb22009-11-21 08:46:29 +0800287 BUG();
Jeremy Fitzhardinge9c7a7942008-05-31 01:33:02 +0100288 }
289}
290
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700291static void __init xen_banner(void)
292{
Jeremy Fitzhardinge95c7c232008-07-15 13:42:34 -0700293 unsigned version = HYPERVISOR_xen_version(XENVER_version, NULL);
294 struct xen_extraversion extra;
295 HYPERVISOR_xen_version(XENVER_extraversion, &extra);
296
Mukesh Rathord285d682013-12-13 12:45:31 -0500297 pr_info("Booting paravirtualized kernel %son %s\n",
298 xen_feature(XENFEAT_auto_translated_physmap) ?
299 "with PVH extensions " : "", pv_info.name);
Jeremy Fitzhardinge95c7c232008-07-15 13:42:34 -0700300 printk(KERN_INFO "Xen version: %d.%d%s%s\n",
301 version >> 16, version & 0xffff, extra.extraversion,
Jeremy Fitzhardingee57778a2008-06-16 04:30:02 -0700302 xen_feature(XENFEAT_mmu_pt_update_preserve_ad) ? " (preserve-AD)" : "");
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700303}
Konrad Rzeszutek Wilk394b40f2012-11-27 11:39:40 -0500304/* Check if running on Xen version (major, minor) or later */
305bool
306xen_running_on_version_or_later(unsigned int major, unsigned int minor)
307{
308 unsigned int version;
309
310 if (!xen_domain())
311 return false;
312
313 version = HYPERVISOR_xen_version(XENVER_version, NULL);
314 if ((((version >> 16) == major) && ((version & 0xffff) >= minor)) ||
315 ((version >> 16) > major))
316 return true;
317 return false;
318}
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700319
Andre Przywara5e626252012-05-29 13:07:31 +0200320#define CPUID_THERM_POWER_LEAF 6
321#define APERFMPERF_PRESENT 0
322
Jeremy Fitzhardingee826fe12009-03-07 17:09:27 -0800323static __read_mostly unsigned int cpuid_leaf1_edx_mask = ~0;
324static __read_mostly unsigned int cpuid_leaf1_ecx_mask = ~0;
325
Konrad Rzeszutek Wilk73c154c2012-02-13 22:26:32 -0500326static __read_mostly unsigned int cpuid_leaf1_ecx_set_mask;
327static __read_mostly unsigned int cpuid_leaf5_ecx_val;
328static __read_mostly unsigned int cpuid_leaf5_edx_val;
329
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100330static void xen_cpuid(unsigned int *ax, unsigned int *bx,
331 unsigned int *cx, unsigned int *dx)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700332{
Jeremy Fitzhardinge82d64692009-10-22 16:41:15 -0700333 unsigned maskebx = ~0;
Jeremy Fitzhardingee826fe12009-03-07 17:09:27 -0800334 unsigned maskecx = ~0;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700335 unsigned maskedx = ~0;
Konrad Rzeszutek Wilk73c154c2012-02-13 22:26:32 -0500336 unsigned setecx = 0;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700337 /*
338 * Mask out inconvenient features, to try and disable as many
339 * unsupported kernel subsystems as possible.
340 */
Jeremy Fitzhardinge82d64692009-10-22 16:41:15 -0700341 switch (*ax) {
342 case 1:
Jeremy Fitzhardingee826fe12009-03-07 17:09:27 -0800343 maskecx = cpuid_leaf1_ecx_mask;
Konrad Rzeszutek Wilk73c154c2012-02-13 22:26:32 -0500344 setecx = cpuid_leaf1_ecx_set_mask;
Jeremy Fitzhardingee826fe12009-03-07 17:09:27 -0800345 maskedx = cpuid_leaf1_edx_mask;
Jeremy Fitzhardinge82d64692009-10-22 16:41:15 -0700346 break;
347
Konrad Rzeszutek Wilk73c154c2012-02-13 22:26:32 -0500348 case CPUID_MWAIT_LEAF:
349 /* Synthesize the values.. */
350 *ax = 0;
351 *bx = 0;
352 *cx = cpuid_leaf5_ecx_val;
353 *dx = cpuid_leaf5_edx_val;
354 return;
355
Andre Przywara5e626252012-05-29 13:07:31 +0200356 case CPUID_THERM_POWER_LEAF:
357 /* Disabling APERFMPERF for kernel usage */
358 maskecx = ~(1 << APERFMPERF_PRESENT);
359 break;
360
Jeremy Fitzhardinge82d64692009-10-22 16:41:15 -0700361 case 0xb:
362 /* Suppress extended topology stuff */
363 maskebx = 0;
364 break;
Jeremy Fitzhardingee826fe12009-03-07 17:09:27 -0800365 }
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700366
367 asm(XEN_EMULATE_PREFIX "cpuid"
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100368 : "=a" (*ax),
369 "=b" (*bx),
370 "=c" (*cx),
371 "=d" (*dx)
372 : "0" (*ax), "2" (*cx));
Jeremy Fitzhardingee826fe12009-03-07 17:09:27 -0800373
Jeremy Fitzhardinge82d64692009-10-22 16:41:15 -0700374 *bx &= maskebx;
Jeremy Fitzhardingee826fe12009-03-07 17:09:27 -0800375 *cx &= maskecx;
Konrad Rzeszutek Wilk73c154c2012-02-13 22:26:32 -0500376 *cx |= setecx;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100377 *dx &= maskedx;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700378}
Josh Poimboeuf983bb6d2016-02-28 22:22:36 -0600379STACK_FRAME_NON_STANDARD(xen_cpuid); /* XEN_EMULATE_PREFIX */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700380
Konrad Rzeszutek Wilk73c154c2012-02-13 22:26:32 -0500381static bool __init xen_check_mwait(void)
382{
Liu, Jinsonge3aa4e62012-11-08 05:44:28 +0000383#ifdef CONFIG_ACPI
Konrad Rzeszutek Wilk73c154c2012-02-13 22:26:32 -0500384 struct xen_platform_op op = {
385 .cmd = XENPF_set_processor_pminfo,
386 .u.set_pminfo.id = -1,
387 .u.set_pminfo.type = XEN_PM_PDC,
388 };
389 uint32_t buf[3];
390 unsigned int ax, bx, cx, dx;
391 unsigned int mwait_mask;
392
393 /* We need to determine whether it is OK to expose the MWAIT
394 * capability to the kernel to harvest deeper than C3 states from ACPI
395 * _CST using the processor_harvest_xen.c module. For this to work, we
396 * need to gather the MWAIT_LEAF values (which the cstate.c code
397 * checks against). The hypervisor won't expose the MWAIT flag because
398 * it would break backwards compatibility; so we will find out directly
399 * from the hardware and hypercall.
400 */
401 if (!xen_initial_domain())
402 return false;
403
Liu, Jinsonge3aa4e62012-11-08 05:44:28 +0000404 /*
405 * When running under platform earlier than Xen4.2, do not expose
406 * mwait, to avoid the risk of loading native acpi pad driver
407 */
408 if (!xen_running_on_version_or_later(4, 2))
409 return false;
410
Konrad Rzeszutek Wilk73c154c2012-02-13 22:26:32 -0500411 ax = 1;
412 cx = 0;
413
414 native_cpuid(&ax, &bx, &cx, &dx);
415
416 mwait_mask = (1 << (X86_FEATURE_EST % 32)) |
417 (1 << (X86_FEATURE_MWAIT % 32));
418
419 if ((cx & mwait_mask) != mwait_mask)
420 return false;
421
422 /* We need to emulate the MWAIT_LEAF and for that we need both
423 * ecx and edx. The hypercall provides only partial information.
424 */
425
426 ax = CPUID_MWAIT_LEAF;
427 bx = 0;
428 cx = 0;
429 dx = 0;
430
431 native_cpuid(&ax, &bx, &cx, &dx);
432
433 /* Ask the Hypervisor whether to clear ACPI_PDC_C_C2C3_FFH. If so,
434 * don't expose MWAIT_LEAF and let ACPI pick the IOPORT version of C3.
435 */
436 buf[0] = ACPI_PDC_REVISION_ID;
437 buf[1] = 1;
438 buf[2] = (ACPI_PDC_C_CAPABILITY_SMP | ACPI_PDC_EST_CAPABILITY_SWSMP);
439
440 set_xen_guest_handle(op.u.set_pminfo.pdc, buf);
441
Stefano Stabellinicfafae92015-11-23 10:36:12 +0000442 if ((HYPERVISOR_platform_op(&op) == 0) &&
Konrad Rzeszutek Wilk73c154c2012-02-13 22:26:32 -0500443 (buf[2] & (ACPI_PDC_C_C1_FFH | ACPI_PDC_C_C2C3_FFH))) {
444 cpuid_leaf5_ecx_val = cx;
445 cpuid_leaf5_edx_val = dx;
446 }
447 return true;
448#else
449 return false;
450#endif
451}
Daniel Kiperad3062a2011-05-04 20:15:18 +0200452static void __init xen_init_cpuid_mask(void)
Jeremy Fitzhardingee826fe12009-03-07 17:09:27 -0800453{
454 unsigned int ax, bx, cx, dx;
Shan Haitao947ccf92010-11-09 11:43:36 -0800455 unsigned int xsave_mask;
Jeremy Fitzhardingee826fe12009-03-07 17:09:27 -0800456
457 cpuid_leaf1_edx_mask =
Liu, Jinsongcef12ee2012-06-07 19:56:51 +0800458 ~((1 << X86_FEATURE_MTRR) | /* disable MTRR */
Jeremy Fitzhardingee826fe12009-03-07 17:09:27 -0800459 (1 << X86_FEATURE_ACC)); /* thermal monitoring */
460
461 if (!xen_initial_domain())
462 cpuid_leaf1_edx_mask &=
Konrad Rzeszutek Wilk6efa20e2013-07-19 11:51:31 -0400463 ~((1 << X86_FEATURE_ACPI)); /* disable ACPI */
Zhenzhong Duan4ea9b9a2013-03-29 09:14:00 +0800464
465 cpuid_leaf1_ecx_mask &= ~(1 << (X86_FEATURE_X2APIC % 32));
466
Shan Haitao947ccf92010-11-09 11:43:36 -0800467 ax = 1;
Konrad Rzeszutek Wilk5e287832011-09-29 13:06:42 -0400468 cx = 0;
Mukesh Rathord285d682013-12-13 12:45:31 -0500469 cpuid(1, &ax, &bx, &cx, &dx);
Jeremy Fitzhardingee826fe12009-03-07 17:09:27 -0800470
Shan Haitao947ccf92010-11-09 11:43:36 -0800471 xsave_mask =
472 (1 << (X86_FEATURE_XSAVE % 32)) |
473 (1 << (X86_FEATURE_OSXSAVE % 32));
474
475 /* Xen will set CR4.OSXSAVE if supported and not disabled by force */
476 if ((cx & xsave_mask) != xsave_mask)
477 cpuid_leaf1_ecx_mask &= ~xsave_mask; /* disable XSAVE & OSXSAVE */
Konrad Rzeszutek Wilk73c154c2012-02-13 22:26:32 -0500478 if (xen_check_mwait())
479 cpuid_leaf1_ecx_set_mask = (1 << (X86_FEATURE_MWAIT % 32));
Jeremy Fitzhardingee826fe12009-03-07 17:09:27 -0800480}
481
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700482static void xen_set_debugreg(int reg, unsigned long val)
483{
484 HYPERVISOR_set_debugreg(reg, val);
485}
486
487static unsigned long xen_get_debugreg(int reg)
488{
489 return HYPERVISOR_get_debugreg(reg);
490}
491
Jeremy Fitzhardinge224101e2009-02-18 11:18:57 -0800492static void xen_end_context_switch(struct task_struct *next)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700493{
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700494 xen_mc_flush();
Jeremy Fitzhardinge224101e2009-02-18 11:18:57 -0800495 paravirt_end_context_switch(next);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700496}
497
498static unsigned long xen_store_tr(void)
499{
500 return 0;
501}
502
Jeremy Fitzhardingea05d2eb2008-07-27 08:45:02 -0700503/*
Jeremy Fitzhardingecef43bf2008-07-28 13:33:44 -0700504 * Set the page permissions for a particular virtual address. If the
505 * address is a vmalloc mapping (or other non-linear mapping), then
506 * find the linear mapping of the page and also set its protections to
507 * match.
Jeremy Fitzhardingea05d2eb2008-07-27 08:45:02 -0700508 */
509static void set_aliased_prot(void *v, pgprot_t prot)
510{
511 int level;
512 pte_t *ptep;
513 pte_t pte;
514 unsigned long pfn;
515 struct page *page;
Andy Lutomirskiaa1acff2015-07-30 14:31:31 -0700516 unsigned char dummy;
Jeremy Fitzhardingea05d2eb2008-07-27 08:45:02 -0700517
518 ptep = lookup_address((unsigned long)v, &level);
519 BUG_ON(ptep == NULL);
520
521 pfn = pte_pfn(*ptep);
522 page = pfn_to_page(pfn);
523
524 pte = pfn_pte(pfn, prot);
525
Andy Lutomirskiaa1acff2015-07-30 14:31:31 -0700526 /*
527 * Careful: update_va_mapping() will fail if the virtual address
528 * we're poking isn't populated in the page tables. We don't
529 * need to worry about the direct map (that's always in the page
530 * tables), but we need to be careful about vmap space. In
531 * particular, the top level page table can lazily propagate
532 * entries between processes, so if we've switched mms since we
533 * vmapped the target in the first place, we might not have the
534 * top-level page table entry populated.
535 *
536 * We disable preemption because we want the same mm active when
537 * we probe the target and when we issue the hypercall. We'll
538 * have the same nominal mm, but if we're a kernel thread, lazy
539 * mm dropping could change our pgd.
540 *
541 * Out of an abundance of caution, this uses __get_user() to fault
542 * in the target address just in case there's some obscure case
543 * in which the target address isn't readable.
544 */
545
546 preempt_disable();
547
Andy Lutomirski99158f12016-05-24 15:48:38 -0700548 probe_kernel_read(&dummy, v, 1);
Andy Lutomirskiaa1acff2015-07-30 14:31:31 -0700549
Jeremy Fitzhardingea05d2eb2008-07-27 08:45:02 -0700550 if (HYPERVISOR_update_va_mapping((unsigned long)v, pte, 0))
551 BUG();
552
553 if (!PageHighMem(page)) {
554 void *av = __va(PFN_PHYS(pfn));
555
556 if (av != v)
557 if (HYPERVISOR_update_va_mapping((unsigned long)av, pte, 0))
558 BUG();
559 } else
560 kmap_flush_unused();
Andy Lutomirskiaa1acff2015-07-30 14:31:31 -0700561
562 preempt_enable();
Jeremy Fitzhardingea05d2eb2008-07-27 08:45:02 -0700563}
564
Jeremy Fitzhardinge38ffbe62008-07-23 14:21:18 -0700565static void xen_alloc_ldt(struct desc_struct *ldt, unsigned entries)
566{
Jeremy Fitzhardingea05d2eb2008-07-27 08:45:02 -0700567 const unsigned entries_per_page = PAGE_SIZE / LDT_ENTRY_SIZE;
Jeremy Fitzhardinge38ffbe62008-07-23 14:21:18 -0700568 int i;
569
Andy Lutomirskiaa1acff2015-07-30 14:31:31 -0700570 /*
571 * We need to mark the all aliases of the LDT pages RO. We
572 * don't need to call vm_flush_aliases(), though, since that's
573 * only responsible for flushing aliases out the TLBs, not the
574 * page tables, and Xen will flush the TLB for us if needed.
575 *
576 * To avoid confusing future readers: none of this is necessary
577 * to load the LDT. The hypervisor only checks this when the
578 * LDT is faulted in due to subsequent descriptor access.
579 */
580
Jeremy Fitzhardingea05d2eb2008-07-27 08:45:02 -0700581 for(i = 0; i < entries; i += entries_per_page)
582 set_aliased_prot(ldt + i, PAGE_KERNEL_RO);
Jeremy Fitzhardinge38ffbe62008-07-23 14:21:18 -0700583}
584
585static void xen_free_ldt(struct desc_struct *ldt, unsigned entries)
586{
Jeremy Fitzhardingea05d2eb2008-07-27 08:45:02 -0700587 const unsigned entries_per_page = PAGE_SIZE / LDT_ENTRY_SIZE;
Jeremy Fitzhardinge38ffbe62008-07-23 14:21:18 -0700588 int i;
589
Jeremy Fitzhardingea05d2eb2008-07-27 08:45:02 -0700590 for(i = 0; i < entries; i += entries_per_page)
591 set_aliased_prot(ldt + i, PAGE_KERNEL);
Jeremy Fitzhardinge38ffbe62008-07-23 14:21:18 -0700592}
593
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700594static void xen_set_ldt(const void *addr, unsigned entries)
595{
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700596 struct mmuext_op *op;
597 struct multicall_space mcs = xen_mc_entry(sizeof(*op));
598
Jeremy Fitzhardingeab78f7a2010-12-17 15:54:28 -0800599 trace_xen_cpu_set_ldt(addr, entries);
600
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700601 op = mcs.args;
602 op->cmd = MMUEXT_SET_LDT;
Jan Beulich4dbf7af2008-01-30 13:33:14 +0100603 op->arg1.linear_addr = (unsigned long)addr;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700604 op->arg2.nr_ents = entries;
605
606 MULTI_mmuext_op(mcs.mc, op, 1, NULL, DOMID_SELF);
607
608 xen_mc_issue(PARAVIRT_LAZY_CPU);
609}
610
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100611static void xen_load_gdt(const struct desc_ptr *dtr)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700612{
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700613 unsigned long va = dtr->address;
614 unsigned int size = dtr->size + 1;
Amitoj Kaur Chawla585423c2016-06-29 20:30:38 +0530615 unsigned pages = DIV_ROUND_UP(size, PAGE_SIZE);
Jeremy Fitzhardinge3ce5fa72009-03-04 15:26:00 -0800616 unsigned long frames[pages];
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700617 int f;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700618
Jeremy Fitzhardinge577eebe2009-08-27 12:46:35 -0700619 /*
620 * A GDT can be up to 64k in size, which corresponds to 8192
621 * 8-byte entries, or 16 4k pages..
622 */
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700623
624 BUG_ON(size > 65536);
625 BUG_ON(va & ~PAGE_MASK);
626
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700627 for (f = 0; va < dtr->address + size; va += PAGE_SIZE, f++) {
Jeremy Fitzhardinge6ed6bf422009-03-04 13:02:18 -0800628 int level;
Jeremy Fitzhardinge577eebe2009-08-27 12:46:35 -0700629 pte_t *ptep;
Jeremy Fitzhardinge6ed6bf422009-03-04 13:02:18 -0800630 unsigned long pfn, mfn;
631 void *virt;
632
Jeremy Fitzhardinge577eebe2009-08-27 12:46:35 -0700633 /*
634 * The GDT is per-cpu and is in the percpu data area.
635 * That can be virtually mapped, so we need to do a
636 * page-walk to get the underlying MFN for the
637 * hypercall. The page can also be in the kernel's
638 * linear range, so we need to RO that mapping too.
639 */
640 ptep = lookup_address(va, &level);
Jeremy Fitzhardinge6ed6bf422009-03-04 13:02:18 -0800641 BUG_ON(ptep == NULL);
642
643 pfn = pte_pfn(*ptep);
644 mfn = pfn_to_mfn(pfn);
645 virt = __va(PFN_PHYS(pfn));
646
647 frames[f] = mfn;
Jeremy Fitzhardinge9976b392009-02-27 09:19:26 -0800648
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700649 make_lowmem_page_readonly((void *)va);
Jeremy Fitzhardinge6ed6bf422009-03-04 13:02:18 -0800650 make_lowmem_page_readonly(virt);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700651 }
652
Jeremy Fitzhardinge3ce5fa72009-03-04 15:26:00 -0800653 if (HYPERVISOR_set_gdt(frames, size / sizeof(struct desc_struct)))
654 BUG();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700655}
656
Jeremy Fitzhardinge577eebe2009-08-27 12:46:35 -0700657/*
658 * load_gdt for early boot, when the gdt is only mapped once
659 */
Daniel Kiperad3062a2011-05-04 20:15:18 +0200660static void __init xen_load_gdt_boot(const struct desc_ptr *dtr)
Jeremy Fitzhardinge577eebe2009-08-27 12:46:35 -0700661{
662 unsigned long va = dtr->address;
663 unsigned int size = dtr->size + 1;
Amitoj Kaur Chawla585423c2016-06-29 20:30:38 +0530664 unsigned pages = DIV_ROUND_UP(size, PAGE_SIZE);
Jeremy Fitzhardinge577eebe2009-08-27 12:46:35 -0700665 unsigned long frames[pages];
666 int f;
667
668 /*
669 * A GDT can be up to 64k in size, which corresponds to 8192
670 * 8-byte entries, or 16 4k pages..
671 */
672
673 BUG_ON(size > 65536);
674 BUG_ON(va & ~PAGE_MASK);
675
676 for (f = 0; va < dtr->address + size; va += PAGE_SIZE, f++) {
677 pte_t pte;
678 unsigned long pfn, mfn;
679
680 pfn = virt_to_pfn(va);
681 mfn = pfn_to_mfn(pfn);
682
683 pte = pfn_pte(pfn, PAGE_KERNEL_RO);
684
685 if (HYPERVISOR_update_va_mapping((unsigned long)va, pte, 0))
686 BUG();
687
688 frames[f] = mfn;
689 }
690
691 if (HYPERVISOR_set_gdt(frames, size / sizeof(struct desc_struct)))
692 BUG();
693}
694
David Vrabel59290362012-07-09 11:39:07 +0100695static inline bool desc_equal(const struct desc_struct *d1,
696 const struct desc_struct *d2)
697{
698 return d1->a == d2->a && d1->b == d2->b;
699}
700
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700701static void load_TLS_descriptor(struct thread_struct *t,
702 unsigned int cpu, unsigned int i)
703{
David Vrabel1c32cdc2012-07-09 11:39:08 +0100704 struct desc_struct *shadow = &per_cpu(shadow_tls_desc, cpu).desc[i];
705 struct desc_struct *gdt;
706 xmaddr_t maddr;
707 struct multicall_space mc;
708
709 if (desc_equal(shadow, &t->tls_array[i]))
710 return;
711
712 *shadow = t->tls_array[i];
713
Thomas Garnier69218e42017-03-14 10:05:07 -0700714 gdt = get_cpu_gdt_rw(cpu);
David Vrabel1c32cdc2012-07-09 11:39:08 +0100715 maddr = arbitrary_virt_to_machine(&gdt[GDT_ENTRY_TLS_MIN+i]);
716 mc = __xen_mc_entry(0);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700717
718 MULTI_update_descriptor(mc.mc, maddr.maddr, t->tls_array[i]);
719}
720
721static void xen_load_tls(struct thread_struct *t, unsigned int cpu)
722{
Jeremy Fitzhardinge8b84ad92007-07-17 18:37:06 -0700723 /*
Tejun Heoccbeed32009-02-09 22:17:40 +0900724 * XXX sleazy hack: If we're being called in a lazy-cpu zone
725 * and lazy gs handling is enabled, it means we're in a
726 * context switch, and %gs has just been saved. This means we
727 * can zero it out to prevent faults on exit from the
728 * hypervisor if the next process has no %gs. Either way, it
729 * has been saved, and the new value will get loaded properly.
730 * This will go away as soon as Xen has been modified to not
731 * save/restore %gs for normal hypercalls.
Eduardo Habkost8a954082008-07-08 15:07:10 -0700732 *
733 * On x86_64, this hack is not used for %gs, because gs points
734 * to KERNEL_GS_BASE (and uses it for PDA references), so we
735 * must not zero %gs on x86_64
736 *
737 * For x86_64, we need to zero %fs, otherwise we may get an
738 * exception between the new %fs descriptor being loaded and
739 * %fs being effectively cleared at __switch_to().
Jeremy Fitzhardinge8b84ad92007-07-17 18:37:06 -0700740 */
Eduardo Habkost8a954082008-07-08 15:07:10 -0700741 if (paravirt_get_lazy_mode() == PARAVIRT_LAZY_CPU) {
742#ifdef CONFIG_X86_32
Tejun Heoccbeed32009-02-09 22:17:40 +0900743 lazy_load_gs(0);
Eduardo Habkost8a954082008-07-08 15:07:10 -0700744#else
745 loadsegment(fs, 0);
746#endif
747 }
748
749 xen_mc_batch();
750
751 load_TLS_descriptor(t, cpu, 0);
752 load_TLS_descriptor(t, cpu, 1);
753 load_TLS_descriptor(t, cpu, 2);
754
755 xen_mc_issue(PARAVIRT_LAZY_CPU);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700756}
757
Eduardo Habkosta8fc1082008-07-08 15:07:05 -0700758#ifdef CONFIG_X86_64
759static void xen_load_gs_index(unsigned int idx)
760{
761 if (HYPERVISOR_set_segment_base(SEGBASE_GS_USER_SEL, idx))
762 BUG();
763}
764#endif
765
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700766static void xen_write_ldt_entry(struct desc_struct *dt, int entrynum,
Glauber de Oliveira Costa75b8bb32008-01-30 13:31:13 +0100767 const void *ptr)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700768{
Jeremy Fitzhardingecef43bf2008-07-28 13:33:44 -0700769 xmaddr_t mach_lp = arbitrary_virt_to_machine(&dt[entrynum]);
Glauber de Oliveira Costa75b8bb32008-01-30 13:31:13 +0100770 u64 entry = *(u64 *)ptr;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700771
Jeremy Fitzhardingeab78f7a2010-12-17 15:54:28 -0800772 trace_xen_cpu_write_ldt_entry(dt, entrynum, entry);
773
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700774 preempt_disable();
775
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700776 xen_mc_flush();
777 if (HYPERVISOR_update_descriptor(mach_lp.maddr, entry))
778 BUG();
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700779
780 preempt_enable();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700781}
782
Eduardo Habkoste176d362008-07-08 15:06:59 -0700783static int cvt_gate_to_trap(int vector, const gate_desc *val,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700784 struct trap_info *info)
785{
Jeremy Fitzhardinge6cac5a92009-03-29 19:56:29 -0700786 unsigned long addr;
787
Jeremy Fitzhardinge6d02c422009-03-29 22:57:15 -0700788 if (val->type != GATE_TRAP && val->type != GATE_INTERRUPT)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700789 return 0;
790
791 info->vector = vector;
Jeremy Fitzhardinge6cac5a92009-03-29 19:56:29 -0700792
793 addr = gate_offset(*val);
794#ifdef CONFIG_X86_64
Jeremy Fitzhardingeb80119b2009-04-24 00:22:08 -0700795 /*
796 * Look for known traps using IST, and substitute them
797 * appropriately. The debugger ones are the only ones we care
Liu, Jinsong05e36006a2012-06-07 20:10:37 +0800798 * about. Xen will handle faults like double_fault,
799 * so we should never see them. Warn if
Jeremy Fitzhardingeb80119b2009-04-24 00:22:08 -0700800 * there's an unexpected IST-using fault handler.
801 */
Jeremy Fitzhardinge6cac5a92009-03-29 19:56:29 -0700802 if (addr == (unsigned long)debug)
803 addr = (unsigned long)xen_debug;
804 else if (addr == (unsigned long)int3)
805 addr = (unsigned long)xen_int3;
806 else if (addr == (unsigned long)stack_segment)
807 addr = (unsigned long)xen_stack_segment;
Konrad Rzeszutek Wilk6efa20e2013-07-19 11:51:31 -0400808 else if (addr == (unsigned long)double_fault) {
Jeremy Fitzhardingeb80119b2009-04-24 00:22:08 -0700809 /* Don't need to handle these */
810 return 0;
811#ifdef CONFIG_X86_MCE
812 } else if (addr == (unsigned long)machine_check) {
Liu, Jinsong05e36006a2012-06-07 20:10:37 +0800813 /*
814 * when xen hypervisor inject vMCE to guest,
815 * use native mce handler to handle it
816 */
817 ;
Jeremy Fitzhardingeb80119b2009-04-24 00:22:08 -0700818#endif
Konrad Rzeszutek Wilk6efa20e2013-07-19 11:51:31 -0400819 } else if (addr == (unsigned long)nmi)
820 /*
821 * Use the native version as well.
822 */
823 ;
824 else {
Jeremy Fitzhardingeb80119b2009-04-24 00:22:08 -0700825 /* Some other trap using IST? */
826 if (WARN_ON(val->ist != 0))
827 return 0;
828 }
Jeremy Fitzhardinge6cac5a92009-03-29 19:56:29 -0700829#endif /* CONFIG_X86_64 */
830 info->address = addr;
831
Eduardo Habkoste176d362008-07-08 15:06:59 -0700832 info->cs = gate_segment(*val);
833 info->flags = val->dpl;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700834 /* interrupt gates clear IF */
Jeremy Fitzhardinge6d02c422009-03-29 22:57:15 -0700835 if (val->type == GATE_INTERRUPT)
836 info->flags |= 1 << 2;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700837
838 return 1;
839}
840
841/* Locations of each CPU's IDT */
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100842static DEFINE_PER_CPU(struct desc_ptr, idt_desc);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700843
844/* Set an IDT entry. If the entry is part of the current IDT, then
845 also update Xen. */
Glauber de Oliveira Costa8d947342008-01-30 13:31:12 +0100846static void xen_write_idt_entry(gate_desc *dt, int entrynum, const gate_desc *g)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700847{
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700848 unsigned long p = (unsigned long)&dt[entrynum];
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700849 unsigned long start, end;
850
Jeremy Fitzhardingeab78f7a2010-12-17 15:54:28 -0800851 trace_xen_cpu_write_idt_entry(dt, entrynum, g);
852
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700853 preempt_disable();
854
Christoph Lameter780f36d2010-12-06 11:16:29 -0600855 start = __this_cpu_read(idt_desc.address);
856 end = start + __this_cpu_read(idt_desc.size) + 1;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700857
858 xen_mc_flush();
859
Glauber de Oliveira Costa8d947342008-01-30 13:31:12 +0100860 native_write_idt_entry(dt, entrynum, g);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700861
862 if (p >= start && (p + 8) <= end) {
863 struct trap_info info[2];
864
865 info[1].address = 0;
866
Eduardo Habkoste176d362008-07-08 15:06:59 -0700867 if (cvt_gate_to_trap(entrynum, g, &info[0]))
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700868 if (HYPERVISOR_set_trap_table(info))
869 BUG();
870 }
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700871
872 preempt_enable();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700873}
874
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100875static void xen_convert_trap_info(const struct desc_ptr *desc,
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700876 struct trap_info *traps)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700877{
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700878 unsigned in, out, count;
879
Eduardo Habkoste176d362008-07-08 15:06:59 -0700880 count = (desc->size+1) / sizeof(gate_desc);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700881 BUG_ON(count > 256);
882
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700883 for (in = out = 0; in < count; in++) {
Eduardo Habkoste176d362008-07-08 15:06:59 -0700884 gate_desc *entry = (gate_desc*)(desc->address) + in;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700885
Eduardo Habkoste176d362008-07-08 15:06:59 -0700886 if (cvt_gate_to_trap(in, entry, &traps[out]))
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700887 out++;
888 }
889 traps[out].address = 0;
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700890}
891
892void xen_copy_trap_info(struct trap_info *traps)
893{
Christoph Lameter89cbc762014-08-17 12:30:40 -0500894 const struct desc_ptr *desc = this_cpu_ptr(&idt_desc);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700895
896 xen_convert_trap_info(desc, traps);
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700897}
898
899/* Load a new IDT into Xen. In principle this can be per-CPU, so we
900 hold a spinlock to protect the static traps[] array (static because
901 it avoids allocation, and saves stack space). */
Glauber de Oliveira Costa6b68f012008-01-30 13:31:12 +0100902static void xen_load_idt(const struct desc_ptr *desc)
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700903{
904 static DEFINE_SPINLOCK(lock);
905 static struct trap_info traps[257];
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700906
Jeremy Fitzhardingeab78f7a2010-12-17 15:54:28 -0800907 trace_xen_cpu_load_idt(desc);
908
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700909 spin_lock(&lock);
910
Christoph Lameter89cbc762014-08-17 12:30:40 -0500911 memcpy(this_cpu_ptr(&idt_desc), desc, sizeof(idt_desc));
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700912
Jeremy Fitzhardingef87e4ca2007-07-17 18:37:06 -0700913 xen_convert_trap_info(desc, traps);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700914
915 xen_mc_flush();
916 if (HYPERVISOR_set_trap_table(traps))
917 BUG();
918
919 spin_unlock(&lock);
920}
921
922/* Write a GDT descriptor entry. Ignore LDT descriptors, since
923 they're handled differently. */
924static void xen_write_gdt_entry(struct desc_struct *dt, int entry,
Glauber de Oliveira Costa014b15b2008-01-30 13:31:13 +0100925 const void *desc, int type)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700926{
Jeremy Fitzhardingeab78f7a2010-12-17 15:54:28 -0800927 trace_xen_cpu_write_gdt_entry(dt, entry, desc, type);
928
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700929 preempt_disable();
930
Glauber de Oliveira Costa014b15b2008-01-30 13:31:13 +0100931 switch (type) {
932 case DESC_LDT:
933 case DESC_TSS:
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700934 /* ignore */
935 break;
936
937 default: {
Jeremy Fitzhardinge9976b392009-02-27 09:19:26 -0800938 xmaddr_t maddr = arbitrary_virt_to_machine(&dt[entry]);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700939
940 xen_mc_flush();
Glauber de Oliveira Costa014b15b2008-01-30 13:31:13 +0100941 if (HYPERVISOR_update_descriptor(maddr.maddr, *(u64 *)desc))
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700942 BUG();
943 }
944
945 }
Jeremy Fitzhardingef120f132007-07-17 18:37:06 -0700946
947 preempt_enable();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700948}
949
Jeremy Fitzhardinge577eebe2009-08-27 12:46:35 -0700950/*
951 * Version of write_gdt_entry for use at early boot-time needed to
952 * update an entry as simply as possible.
953 */
Daniel Kiperad3062a2011-05-04 20:15:18 +0200954static void __init xen_write_gdt_entry_boot(struct desc_struct *dt, int entry,
Jeremy Fitzhardinge577eebe2009-08-27 12:46:35 -0700955 const void *desc, int type)
956{
Jeremy Fitzhardingeab78f7a2010-12-17 15:54:28 -0800957 trace_xen_cpu_write_gdt_entry(dt, entry, desc, type);
958
Jeremy Fitzhardinge577eebe2009-08-27 12:46:35 -0700959 switch (type) {
960 case DESC_LDT:
961 case DESC_TSS:
962 /* ignore */
963 break;
964
965 default: {
966 xmaddr_t maddr = virt_to_machine(&dt[entry]);
967
968 if (HYPERVISOR_update_descriptor(maddr.maddr, *(u64 *)desc))
969 dt[entry] = *(struct desc_struct *)desc;
970 }
971
972 }
973}
974
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100975static void xen_load_sp0(struct tss_struct *tss,
Jeremy Fitzhardingea05d2eb2008-07-27 08:45:02 -0700976 struct thread_struct *thread)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700977{
Jeremy Fitzhardingeab78f7a2010-12-17 15:54:28 -0800978 struct multicall_space mcs;
979
980 mcs = xen_mc_entry(0);
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100981 MULTI_stack_switch(mcs.mc, __KERNEL_DS, thread->sp0);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700982 xen_mc_issue(PARAVIRT_LAZY_CPU);
Andy Lutomirski8ef46a62015-03-05 19:19:02 -0800983 tss->x86_tss.sp0 = thread->sp0;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700984}
985
Andy Lutomirskib7a584592016-03-16 14:14:21 -0700986void xen_set_iopl_mask(unsigned mask)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -0700987{
988 struct physdev_set_iopl set_iopl;
989
990 /* Force the change at ring 0. */
991 set_iopl.iopl = (mask == 0) ? 1 : (mask >> 12) & 3;
992 HYPERVISOR_physdev_op(PHYSDEVOP_set_iopl, &set_iopl);
993}
994
995static void xen_io_delay(void)
996{
997}
998
Jeremy Fitzhardingea789ed52009-04-24 00:26:50 -0700999static DEFINE_PER_CPU(unsigned long, xen_cr0_value);
1000
1001static unsigned long xen_read_cr0(void)
1002{
Alex Shi2113f462012-01-13 23:53:35 +08001003 unsigned long cr0 = this_cpu_read(xen_cr0_value);
Jeremy Fitzhardingea789ed52009-04-24 00:26:50 -07001004
1005 if (unlikely(cr0 == 0)) {
1006 cr0 = native_read_cr0();
Alex Shi2113f462012-01-13 23:53:35 +08001007 this_cpu_write(xen_cr0_value, cr0);
Jeremy Fitzhardingea789ed52009-04-24 00:26:50 -07001008 }
1009
1010 return cr0;
1011}
1012
Jeremy Fitzhardinge7b1333a2008-05-26 23:31:01 +01001013static void xen_write_cr0(unsigned long cr0)
1014{
1015 struct multicall_space mcs;
1016
Alex Shi2113f462012-01-13 23:53:35 +08001017 this_cpu_write(xen_cr0_value, cr0);
Jeremy Fitzhardingea789ed52009-04-24 00:26:50 -07001018
Jeremy Fitzhardinge7b1333a2008-05-26 23:31:01 +01001019 /* Only pay attention to cr0.TS; everything else is
1020 ignored. */
1021 mcs = xen_mc_entry(0);
1022
1023 MULTI_fpu_taskswitch(mcs.mc, (cr0 & X86_CR0_TS) != 0);
1024
1025 xen_mc_issue(PARAVIRT_LAZY_CPU);
1026}
1027
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001028static void xen_write_cr4(unsigned long cr4)
1029{
Boris Ostrovsky3375d822015-08-10 16:34:38 -04001030 cr4 &= ~(X86_CR4_PGE | X86_CR4_PSE | X86_CR4_PCE);
Jeremy Fitzhardinge2956a352008-05-26 23:31:04 +01001031
1032 native_write_cr4(cr4);
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001033}
Konrad Rzeszutek Wilk1a7bbda2012-10-10 13:25:48 -04001034#ifdef CONFIG_X86_64
1035static inline unsigned long xen_read_cr8(void)
1036{
1037 return 0;
1038}
1039static inline void xen_write_cr8(unsigned long val)
1040{
1041 BUG_ON(val);
1042}
1043#endif
Boris Ostrovsky31795b472015-02-11 14:39:18 -05001044
1045static u64 xen_read_msr_safe(unsigned int msr, int *err)
1046{
1047 u64 val;
1048
Boris Ostrovsky6b08cd62015-08-10 16:34:36 -04001049 if (pmu_msr_read(msr, &val, err))
1050 return val;
1051
Boris Ostrovsky31795b472015-02-11 14:39:18 -05001052 val = native_read_msr_safe(msr, err);
1053 switch (msr) {
1054 case MSR_IA32_APICBASE:
1055#ifdef CONFIG_X86_X2APIC
1056 if (!(cpuid_ecx(1) & (1 << (X86_FEATURE_X2APIC & 31))))
1057#endif
1058 val &= ~X2APIC_ENABLE;
1059 break;
1060 }
1061 return val;
1062}
1063
Jeremy Fitzhardinge11539682008-07-08 15:07:16 -07001064static int xen_write_msr_safe(unsigned int msr, unsigned low, unsigned high)
1065{
1066 int ret;
1067
1068 ret = 0;
1069
Tejf63c2f22008-12-16 11:56:06 -08001070 switch (msr) {
Jeremy Fitzhardinge11539682008-07-08 15:07:16 -07001071#ifdef CONFIG_X86_64
1072 unsigned which;
1073 u64 base;
1074
1075 case MSR_FS_BASE: which = SEGBASE_FS; goto set;
1076 case MSR_KERNEL_GS_BASE: which = SEGBASE_GS_USER; goto set;
1077 case MSR_GS_BASE: which = SEGBASE_GS_KERNEL; goto set;
1078
1079 set:
1080 base = ((u64)high << 32) | low;
1081 if (HYPERVISOR_set_segment_base(which, base) != 0)
H. Peter Anvin0cc02132009-08-31 14:23:29 -07001082 ret = -EIO;
Jeremy Fitzhardinge11539682008-07-08 15:07:16 -07001083 break;
1084#endif
Jeremy Fitzhardinged89961e2008-07-24 13:48:58 -07001085
1086 case MSR_STAR:
1087 case MSR_CSTAR:
1088 case MSR_LSTAR:
1089 case MSR_SYSCALL_MASK:
1090 case MSR_IA32_SYSENTER_CS:
1091 case MSR_IA32_SYSENTER_ESP:
1092 case MSR_IA32_SYSENTER_EIP:
1093 /* Fast syscall setup is all done in hypercalls, so
1094 these are all ignored. Stub them out here to stop
1095 Xen console noise. */
Boris Ostrovsky2ecf91b2015-09-21 09:09:28 -04001096 break;
Jeremy Fitzhardinge41f2e472010-03-30 11:47:40 -07001097
Jeremy Fitzhardinge11539682008-07-08 15:07:16 -07001098 default:
Boris Ostrovsky6b08cd62015-08-10 16:34:36 -04001099 if (!pmu_msr_write(msr, low, high, &ret))
1100 ret = native_write_msr_safe(msr, low, high);
Jeremy Fitzhardinge11539682008-07-08 15:07:16 -07001101 }
1102
1103 return ret;
1104}
1105
Andy Lutomirskidd2f4a02016-04-02 07:01:38 -07001106static u64 xen_read_msr(unsigned int msr)
1107{
1108 /*
1109 * This will silently swallow a #GP from RDMSR. It may be worth
1110 * changing that.
1111 */
1112 int err;
1113
1114 return xen_read_msr_safe(msr, &err);
1115}
1116
1117static void xen_write_msr(unsigned int msr, unsigned low, unsigned high)
1118{
1119 /*
1120 * This will silently swallow a #GP from WRMSR. It may be worth
1121 * changing that.
1122 */
1123 xen_write_msr_safe(msr, low, high);
1124}
1125
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +01001126void xen_setup_shared_info(void)
Jeremy Fitzhardinge2e8fe712008-03-17 16:36:53 -07001127{
1128 if (!xen_feature(XENFEAT_auto_translated_physmap)) {
Jeremy Fitzhardinge15664f92008-07-08 15:06:47 -07001129 set_fixmap(FIX_PARAVIRT_BOOTMAP,
1130 xen_start_info->shared_info);
Jeremy Fitzhardinge2e8fe712008-03-17 16:36:53 -07001131
Jeremy Fitzhardinge15664f92008-07-08 15:06:47 -07001132 HYPERVISOR_shared_info =
1133 (struct shared_info *)fix_to_virt(FIX_PARAVIRT_BOOTMAP);
Jeremy Fitzhardinge2e8fe712008-03-17 16:36:53 -07001134 } else
1135 HYPERVISOR_shared_info =
1136 (struct shared_info *)__va(xen_start_info->shared_info);
1137
1138#ifndef CONFIG_SMP
1139 /* In UP this is as good a place as any to set up shared info */
1140 xen_setup_vcpu_info_placement();
1141#endif
Jeremy Fitzhardinged5edbc1f2008-05-26 23:31:22 +01001142
1143 xen_setup_mfn_list_list();
Jeremy Fitzhardinge2e8fe712008-03-17 16:36:53 -07001144}
1145
Rusty Russell5f054e32012-03-29 15:38:31 +10301146/* This is called once we have the cpu_possible_mask */
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +01001147void xen_setup_vcpu_info_placement(void)
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -07001148{
1149 int cpu;
1150
Vitaly Kuznetsov88e957d2016-06-30 17:56:37 +02001151 for_each_possible_cpu(cpu) {
1152 /* Set up direct vCPU id mapping for PV guests. */
1153 per_cpu(xen_vcpu_id, cpu) = cpu;
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -07001154 xen_vcpu_setup(cpu);
Vitaly Kuznetsov88e957d2016-06-30 17:56:37 +02001155 }
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -07001156
Boris Ostrovsky063334f2017-02-03 16:57:22 -05001157 /*
1158 * xen_vcpu_setup managed to place the vcpu_info within the
1159 * percpu area for all cpus, so make use of it.
1160 */
1161 if (have_vcpu_info_placement) {
Jeremy Fitzhardingeecb93d12009-01-28 14:35:05 -08001162 pv_irq_ops.save_fl = __PV_IS_CALLEE_SAVE(xen_save_fl_direct);
1163 pv_irq_ops.restore_fl = __PV_IS_CALLEE_SAVE(xen_restore_fl_direct);
1164 pv_irq_ops.irq_disable = __PV_IS_CALLEE_SAVE(xen_irq_disable_direct);
1165 pv_irq_ops.irq_enable = __PV_IS_CALLEE_SAVE(xen_irq_enable_direct);
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001166 pv_mmu_ops.read_cr2 = xen_read_cr2_direct;
Jeremy Fitzhardinge60223a32007-07-17 18:37:07 -07001167 }
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001168}
1169
Andi Kleenab144f52007-08-10 22:31:03 +02001170static unsigned xen_patch(u8 type, u16 clobbers, void *insnbuf,
1171 unsigned long addr, unsigned len)
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -07001172{
1173 char *start, *end, *reloc;
1174 unsigned ret;
1175
1176 start = end = reloc = NULL;
1177
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001178#define SITE(op, x) \
1179 case PARAVIRT_PATCH(op.x): \
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -07001180 if (have_vcpu_info_placement) { \
1181 start = (char *)xen_##x##_direct; \
1182 end = xen_##x##_direct_end; \
1183 reloc = xen_##x##_direct_reloc; \
1184 } \
1185 goto patch_site
1186
1187 switch (type) {
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001188 SITE(pv_irq_ops, irq_enable);
1189 SITE(pv_irq_ops, irq_disable);
1190 SITE(pv_irq_ops, save_fl);
1191 SITE(pv_irq_ops, restore_fl);
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -07001192#undef SITE
1193
1194 patch_site:
1195 if (start == NULL || (end-start) > len)
1196 goto default_patch;
1197
Andi Kleenab144f52007-08-10 22:31:03 +02001198 ret = paravirt_patch_insns(insnbuf, len, start, end);
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -07001199
1200 /* Note: because reloc is assigned from something that
1201 appears to be an array, gcc assumes it's non-null,
1202 but doesn't know its relationship with start and
1203 end. */
1204 if (reloc > start && reloc < end) {
1205 int reloc_off = reloc - start;
Andi Kleenab144f52007-08-10 22:31:03 +02001206 long *relocp = (long *)(insnbuf + reloc_off);
1207 long delta = start - (char *)addr;
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -07001208
1209 *relocp += delta;
1210 }
1211 break;
1212
1213 default_patch:
1214 default:
Andi Kleenab144f52007-08-10 22:31:03 +02001215 ret = paravirt_patch_default(type, clobbers, insnbuf,
1216 addr, len);
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -07001217 break;
1218 }
1219
1220 return ret;
1221}
1222
Daniel Kiperad3062a2011-05-04 20:15:18 +02001223static const struct pv_info xen_info __initconst = {
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001224 .shared_kernel_pmd = 0,
1225
Andy Lutomirski318f5a22011-08-03 09:31:53 -04001226#ifdef CONFIG_X86_64
1227 .extra_user_64bit_cs = FLAT_USER_CS64,
1228#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001229 .name = "Xen",
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001230};
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001231
Daniel Kiperad3062a2011-05-04 20:15:18 +02001232static const struct pv_init_ops xen_init_ops __initconst = {
Jeremy Fitzhardinge64876732007-07-17 18:37:07 -07001233 .patch = xen_patch,
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001234};
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001235
Daniel Kiperad3062a2011-05-04 20:15:18 +02001236static const struct pv_cpu_ops xen_cpu_ops __initconst = {
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 Fitzhardingea789ed52009-04-24 00:26:50 -07001242 .read_cr0 = xen_read_cr0,
Jeremy Fitzhardinge7b1333a2008-05-26 23:31:01 +01001243 .write_cr0 = xen_write_cr0,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001244
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001245 .read_cr4 = native_read_cr4,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001246 .write_cr4 = xen_write_cr4,
1247
Konrad Rzeszutek Wilk1a7bbda2012-10-10 13:25:48 -04001248#ifdef CONFIG_X86_64
1249 .read_cr8 = xen_read_cr8,
1250 .write_cr8 = xen_write_cr8,
1251#endif
1252
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001253 .wbinvd = native_wbinvd,
1254
Andy Lutomirskidd2f4a02016-04-02 07:01:38 -07001255 .read_msr = xen_read_msr,
1256 .write_msr = xen_write_msr,
1257
Andy Lutomirskic2ee03b2016-04-02 07:01:36 -07001258 .read_msr_safe = xen_read_msr_safe,
1259 .write_msr_safe = xen_write_msr_safe,
Konrad Rzeszutek Wilk1ab46fd2012-05-30 18:23:56 -04001260
Boris Ostrovsky65d0cf02015-08-10 16:34:34 -04001261 .read_pmc = xen_read_pmc,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001262
Jeremy Fitzhardinge81e103f2008-04-17 17:40:51 +02001263 .iret = xen_iret,
Jeremy Fitzhardinge6fcac6d2008-07-08 15:07:14 -07001264#ifdef CONFIG_X86_64
Jeremy Fitzhardinge6fcac6d2008-07-08 15:07:14 -07001265 .usergs_sysret64 = xen_sysret64,
1266#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001267
1268 .load_tr_desc = paravirt_nop,
1269 .set_ldt = xen_set_ldt,
1270 .load_gdt = xen_load_gdt,
1271 .load_idt = xen_load_idt,
1272 .load_tls = xen_load_tls,
Eduardo Habkosta8fc1082008-07-08 15:07:05 -07001273#ifdef CONFIG_X86_64
1274 .load_gs_index = xen_load_gs_index,
1275#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001276
Jeremy Fitzhardinge38ffbe62008-07-23 14:21:18 -07001277 .alloc_ldt = xen_alloc_ldt,
1278 .free_ldt = xen_free_ldt,
1279
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001280 .store_idt = native_store_idt,
1281 .store_tr = xen_store_tr,
1282
1283 .write_ldt_entry = xen_write_ldt_entry,
1284 .write_gdt_entry = xen_write_gdt_entry,
1285 .write_idt_entry = xen_write_idt_entry,
H. Peter Anvinfaca6222008-01-30 13:31:02 +01001286 .load_sp0 = xen_load_sp0,
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001287
1288 .set_iopl_mask = xen_set_iopl_mask,
1289 .io_delay = xen_io_delay,
1290
Jeremy Fitzhardinge952d1d72008-07-08 15:07:01 -07001291 /* Xen takes care of %gs when switching to usermode for us */
1292 .swapgs = paravirt_nop,
1293
Jeremy Fitzhardinge224101e2009-02-18 11:18:57 -08001294 .start_context_switch = paravirt_start_context_switch,
1295 .end_context_switch = xen_end_context_switch,
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001296};
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001297
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -07001298static void xen_reboot(int reason)
1299{
Jeremy Fitzhardinge349c709f2008-05-26 23:31:02 +01001300 struct sched_shutdown r = { .reason = reason };
Boris Ostrovsky65d0cf02015-08-10 16:34:34 -04001301 int cpu;
1302
1303 for_each_online_cpu(cpu)
1304 xen_pmu_finish(cpu);
Jeremy Fitzhardinge349c709f2008-05-26 23:31:02 +01001305
Jeremy Fitzhardinge349c709f2008-05-26 23:31:02 +01001306 if (HYPERVISOR_sched_op(SCHEDOP_shutdown, &r))
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -07001307 BUG();
1308}
1309
1310static void xen_restart(char *msg)
1311{
1312 xen_reboot(SHUTDOWN_reboot);
1313}
1314
1315static void xen_emergency_restart(void)
1316{
1317 xen_reboot(SHUTDOWN_reboot);
1318}
1319
1320static void xen_machine_halt(void)
1321{
1322 xen_reboot(SHUTDOWN_poweroff);
1323}
1324
Tom Goetzb2abe502011-05-16 15:06:26 -04001325static void xen_machine_power_off(void)
1326{
1327 if (pm_power_off)
1328 pm_power_off();
1329 xen_reboot(SHUTDOWN_poweroff);
1330}
1331
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -07001332static void xen_crash_shutdown(struct pt_regs *regs)
1333{
1334 xen_reboot(SHUTDOWN_crash);
1335}
1336
Donald Dutilef09f6d12010-07-15 14:56:49 -04001337static int
1338xen_panic_event(struct notifier_block *this, unsigned long event, void *ptr)
1339{
Petr Tesarikc0253112016-08-02 14:06:19 -07001340 if (!kexec_crash_loaded())
1341 xen_reboot(SHUTDOWN_crash);
Donald Dutilef09f6d12010-07-15 14:56:49 -04001342 return NOTIFY_DONE;
1343}
1344
1345static struct notifier_block xen_panic_block = {
1346 .notifier_call= xen_panic_event,
Radim Krčmářbc5eb202014-05-13 18:56:25 +02001347 .priority = INT_MIN
Donald Dutilef09f6d12010-07-15 14:56:49 -04001348};
1349
1350int xen_panic_handler_init(void)
1351{
1352 atomic_notifier_chain_register(&panic_notifier_list, &xen_panic_block);
1353 return 0;
1354}
1355
Daniel Kiperad3062a2011-05-04 20:15:18 +02001356static const struct machine_ops xen_machine_ops __initconst = {
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -07001357 .restart = xen_restart,
1358 .halt = xen_machine_halt,
Tom Goetzb2abe502011-05-16 15:06:26 -04001359 .power_off = xen_machine_power_off,
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -07001360 .shutdown = xen_machine_halt,
1361 .crash_shutdown = xen_crash_shutdown,
1362 .emergency_restart = xen_emergency_restart,
1363};
1364
Jan Beulichf221b042015-01-13 07:40:05 +00001365static unsigned char xen_get_nmi_reason(void)
1366{
1367 unsigned char reason = 0;
1368
1369 /* Construct a value which looks like it came from port 0x61. */
1370 if (test_bit(_XEN_NMIREASON_io_error,
1371 &HYPERVISOR_shared_info->arch.nmi_reason))
1372 reason |= NMI_REASON_IOCHK;
1373 if (test_bit(_XEN_NMIREASON_pci_serr,
1374 &HYPERVISOR_shared_info->arch.nmi_reason))
1375 reason |= NMI_REASON_SERR;
1376
1377 return reason;
1378}
1379
David Vrabel96f28bc2013-04-03 17:31:50 +01001380static void __init xen_boot_params_init_edd(void)
1381{
1382#if IS_ENABLED(CONFIG_EDD)
1383 struct xen_platform_op op;
1384 struct edd_info *edd_info;
1385 u32 *mbr_signature;
1386 unsigned nr;
1387 int ret;
1388
1389 edd_info = boot_params.eddbuf;
1390 mbr_signature = boot_params.edd_mbr_sig_buffer;
1391
1392 op.cmd = XENPF_firmware_info;
1393
1394 op.u.firmware_info.type = XEN_FW_DISK_INFO;
1395 for (nr = 0; nr < EDDMAXNR; nr++) {
1396 struct edd_info *info = edd_info + nr;
1397
1398 op.u.firmware_info.index = nr;
1399 info->params.length = sizeof(info->params);
1400 set_xen_guest_handle(op.u.firmware_info.u.disk_info.edd_params,
1401 &info->params);
Stefano Stabellinicfafae92015-11-23 10:36:12 +00001402 ret = HYPERVISOR_platform_op(&op);
David Vrabel96f28bc2013-04-03 17:31:50 +01001403 if (ret)
1404 break;
1405
1406#define C(x) info->x = op.u.firmware_info.u.disk_info.x
1407 C(device);
1408 C(version);
1409 C(interface_support);
1410 C(legacy_max_cylinder);
1411 C(legacy_max_head);
1412 C(legacy_sectors_per_track);
1413#undef C
1414 }
1415 boot_params.eddbuf_entries = nr;
1416
1417 op.u.firmware_info.type = XEN_FW_DISK_MBR_SIGNATURE;
1418 for (nr = 0; nr < EDD_MBR_SIG_MAX; nr++) {
1419 op.u.firmware_info.index = nr;
Stefano Stabellinicfafae92015-11-23 10:36:12 +00001420 ret = HYPERVISOR_platform_op(&op);
David Vrabel96f28bc2013-04-03 17:31:50 +01001421 if (ret)
1422 break;
1423 mbr_signature[nr] = op.u.firmware_info.u.disk_mbr_signature.mbr_signature;
1424 }
1425 boot_params.edd_mbr_sig_buf_entries = nr;
1426#endif
1427}
1428
Jeremy Fitzhardinge577eebe2009-08-27 12:46:35 -07001429/*
1430 * Set up the GDT and segment registers for -fstack-protector. Until
1431 * we do this, we have to be careful not to call any stack-protected
1432 * function, which is most of the kernel.
1433 */
Boris Ostrovsky063334f2017-02-03 16:57:22 -05001434static void xen_setup_gdt(int cpu)
Jeremy Fitzhardinge577eebe2009-08-27 12:46:35 -07001435{
1436 pv_cpu_ops.write_gdt_entry = xen_write_gdt_entry_boot;
1437 pv_cpu_ops.load_gdt = xen_load_gdt_boot;
1438
1439 setup_stack_canary_segment(0);
1440 switch_to_new_gdt(0);
1441
1442 pv_cpu_ops.write_gdt_entry = xen_write_gdt_entry;
1443 pv_cpu_ops.load_gdt = xen_load_gdt;
1444}
1445
Luis R. Rodriguez8d152e72016-04-13 17:04:34 -07001446static void __init xen_dom0_set_legacy_features(void)
1447{
1448 x86_platform.legacy.rtc = 1;
1449}
1450
Boris Ostrovsky4d737042016-09-07 13:19:00 -04001451static int xen_cpuhp_setup(void)
1452{
1453 int rc;
1454
1455 rc = cpuhp_setup_state_nocalls(CPUHP_XEN_PREPARE,
Thomas Gleixner73c1b412016-12-21 20:19:54 +01001456 "x86/xen/hvm_guest:prepare",
Boris Ostrovsky4d737042016-09-07 13:19:00 -04001457 xen_cpu_up_prepare, xen_cpu_dead);
1458 if (rc >= 0) {
1459 rc = cpuhp_setup_state_nocalls(CPUHP_AP_ONLINE_DYN,
Thomas Gleixner73c1b412016-12-21 20:19:54 +01001460 "x86/xen/hvm_guest:online",
Boris Ostrovsky4d737042016-09-07 13:19:00 -04001461 xen_cpu_up_online, NULL);
1462 if (rc < 0)
1463 cpuhp_remove_state_nocalls(CPUHP_XEN_PREPARE);
1464 }
1465
1466 return rc >= 0 ? 0 : rc;
1467}
1468
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001469/* First C function to be called on Xen boot */
Andi Kleen2605fc22014-05-02 00:44:37 +02001470asmlinkage __visible void __init xen_start_kernel(void)
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001471{
Konrad Rzeszutek Wilkec35a692010-11-16 12:09:59 -05001472 struct physdev_set_iopl set_iopl;
Juergen Grossd1e9abd2014-09-17 06:12:36 +02001473 unsigned long initrd_start = 0;
Konrad Rzeszutek Wilkec35a692010-11-16 12:09:59 -05001474 int rc;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001475
1476 if (!xen_start_info)
1477 return;
1478
Jeremy Fitzhardinge6e833582008-08-19 13:16:17 -07001479 xen_domain_type = XEN_PV_DOMAIN;
1480
Mukesh Rathord285d682013-12-13 12:45:31 -05001481 xen_setup_features();
Boris Ostrovsky063334f2017-02-03 16:57:22 -05001482
Ian Campbell7e775062010-09-30 12:37:26 +01001483 xen_setup_machphys_mapping();
1484
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001485 /* Install Xen paravirt ops */
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001486 pv_info = xen_info;
1487 pv_init_ops = xen_init_ops;
Boris Ostrovsky063334f2017-02-03 16:57:22 -05001488 pv_cpu_ops = xen_cpu_ops;
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001489
Boris Ostrovsky063334f2017-02-03 16:57:22 -05001490 x86_platform.get_nmi_reason = xen_get_nmi_reason;
Jan Beulichf221b042015-01-13 07:40:05 +00001491
Boris Ostrovsky063334f2017-02-03 16:57:22 -05001492 x86_init.resources.memory_setup = xen_memory_setup;
Thomas Gleixner42bbdb42009-08-20 13:04:10 +02001493 x86_init.oem.arch_setup = xen_arch_setup;
Thomas Gleixner6f30c1a2009-08-20 13:19:57 +02001494 x86_init.oem.banner = xen_banner;
Thomas Gleixner845b3942009-08-19 15:37:03 +02001495
Stefano Stabellini409771d2010-05-14 12:48:19 +01001496 xen_init_time_ops();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001497
Jeremy Fitzhardingece2eef32009-08-17 12:26:53 -07001498 /*
Jeremy Fitzhardinge577eebe2009-08-27 12:46:35 -07001499 * Set up some pagetable state before starting to set any ptes.
Jeremy Fitzhardingece2eef32009-08-17 12:26:53 -07001500 */
Jeremy Fitzhardinge577eebe2009-08-27 12:46:35 -07001501
Jeremy Fitzhardinge973df352009-10-27 16:54:19 -07001502 xen_init_mmu_ops();
1503
Jeremy Fitzhardinge577eebe2009-08-27 12:46:35 -07001504 /* Prevent unwanted bits from being set in PTEs. */
1505 __supported_pte_mask &= ~_PAGE_GLOBAL;
Jeremy Fitzhardinge577eebe2009-08-27 12:46:35 -07001506
Ian Campbell817a8242010-02-26 17:16:00 +00001507 /*
1508 * Prevent page tables from being allocated in highmem, even
1509 * if CONFIG_HIGHPTE is enabled.
1510 */
1511 __userpte_alloc_gfp &= ~__GFP_HIGHMEM;
1512
Jeremy Fitzhardingeb75fe4e2009-09-21 13:34:06 -07001513 /* Work out if we support NX */
H. Peter Anvin4763ed42009-11-13 15:28:16 -08001514 x86_configure_nx();
Jeremy Fitzhardingeb75fe4e2009-09-21 13:34:06 -07001515
Jeremy Fitzhardinge577eebe2009-08-27 12:46:35 -07001516 /* Get mfn list */
Konrad Rzeszutek Wilk696fd7c2013-12-15 12:37:46 -05001517 xen_build_dynamic_phys_to_machine();
Jeremy Fitzhardinge577eebe2009-08-27 12:46:35 -07001518
1519 /*
1520 * Set up kernel GDT and segment registers, mainly so that
1521 * -fstack-protector code can be executed.
1522 */
Mukesh Rathor5840c842013-12-13 11:48:08 -05001523 xen_setup_gdt(0);
Jeremy Fitzhardinge0d1edf42008-07-28 11:53:57 -07001524
Jeremy Fitzhardingece2eef32009-08-17 12:26:53 -07001525 xen_init_irq_ops();
Jeremy Fitzhardingee826fe12009-03-07 17:09:27 -08001526 xen_init_cpuid_mask();
1527
Yinghai Lu94a8c3c2008-07-13 22:19:35 -07001528#ifdef CONFIG_X86_LOCAL_APIC
Suresh Siddhaad66dd32008-07-11 13:11:56 -07001529 /*
Yinghai Lu94a8c3c2008-07-13 22:19:35 -07001530 * set up the basic apic ops.
Suresh Siddhaad66dd32008-07-11 13:11:56 -07001531 */
Konrad Rzeszutek Wilkfeb44f12015-03-02 12:06:23 -05001532 xen_init_apic();
Suresh Siddhaad66dd32008-07-11 13:11:56 -07001533#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001534
Jeremy Fitzhardingee57778a2008-06-16 04:30:02 -07001535 if (xen_feature(XENFEAT_mmu_pt_update_preserve_ad)) {
1536 pv_mmu_ops.ptep_modify_prot_start = xen_ptep_modify_prot_start;
1537 pv_mmu_ops.ptep_modify_prot_commit = xen_ptep_modify_prot_commit;
1538 }
1539
Jeremy Fitzhardingefefa6292007-07-17 18:37:07 -07001540 machine_ops = xen_machine_ops;
1541
Jeremy Fitzhardinge38341432009-02-02 13:55:31 -08001542 /*
1543 * The only reliable way to retain the initial address of the
1544 * percpu gdt_page is to remember it here, so we can go and
1545 * mark it RW later, when the initial percpu area is freed.
1546 */
1547 xen_initial_gdt = &per_cpu(gdt_page, 0);
Jeremy Fitzhardinge795f99b2009-01-30 17:47:54 +09001548
Jeremy Fitzhardingea9e70622008-07-08 15:06:41 -07001549 xen_smp_init();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001550
Ian Campbellc1f5db12010-12-03 09:54:03 +00001551#ifdef CONFIG_ACPI_NUMA
1552 /*
1553 * The pages we from Xen are not related to machine pages, so
1554 * any NUMA information the kernel tries to get from ACPI will
1555 * be meaningless. Prevent it from trying.
1556 */
1557 acpi_numa = -1;
1558#endif
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001559 /* Don't do the full vcpu_info placement stuff until we have a
1560 possible map and a non-dummy shared_info. */
1561 per_cpu(xen_vcpu, 0) = &HYPERVISOR_shared_info->vcpu_info[0];
1562
Boris Ostrovsky565fdc62016-10-02 18:45:19 -04001563 WARN_ON(xen_cpuhp_setup());
1564
Jeremy Fitzhardinge55d80852009-02-25 09:42:25 -08001565 local_irq_disable();
Tejun Heo2ce802f2011-01-20 12:06:35 +01001566 early_boot_irqs_disabled = true;
Jeremy Fitzhardinge55d80852009-02-25 09:42:25 -08001567
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001568 xen_raw_console_write("mapping kernel into physical memory\n");
Juergen Gross6c2681c2015-07-17 06:51:34 +02001569 xen_setup_kernel_pagetable((pgd_t *)xen_start_info->pt_base,
1570 xen_start_info->nr_pages);
1571 xen_reserve_special_pages();
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001572
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001573 /* keep using Xen gdt for now; no urgent need to change it */
1574
Ian Campbelle68266b2010-01-13 10:16:08 +00001575#ifdef CONFIG_X86_32
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001576 pv_info.kernel_rpl = 1;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001577 if (xen_feature(XENFEAT_supervisor_mode_kernel))
Jeremy Fitzhardinge93b1eab2007-10-16 11:51:29 -07001578 pv_info.kernel_rpl = 0;
Ian Campbelle68266b2010-01-13 10:16:08 +00001579#else
1580 pv_info.kernel_rpl = 0;
1581#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001582 /* set the limit of our address space */
Jeremy Fitzhardingefb1d8402007-10-16 11:51:31 -07001583 xen_reserve_top();
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001584
Boris Ostrovsky063334f2017-02-03 16:57:22 -05001585 /*
1586 * We used to do this in xen_arch_setup, but that is too late
1587 * on AMD were early_cpu_init (run before ->arch_setup()) calls
1588 * early_amd_init which pokes 0xcf8 port.
1589 */
1590 set_iopl.iopl = 1;
1591 rc = HYPERVISOR_physdev_op(PHYSDEVOP_set_iopl, &set_iopl);
1592 if (rc != 0)
1593 xen_raw_printk("physdev_op failed %d\n", rc);
Konrad Rzeszutek Wilkec35a692010-11-16 12:09:59 -05001594
Jeremy Fitzhardinge7d087b62008-07-08 15:06:48 -07001595#ifdef CONFIG_X86_32
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001596 /* set up basic CPUID stuff */
1597 cpu_detect(&new_cpu_data);
H. Peter Anvin60e019e2013-04-29 16:04:20 +02001598 set_cpu_cap(&new_cpu_data, X86_FEATURE_FPU);
Huaitong Han16aaa532016-01-25 20:41:47 +01001599 new_cpu_data.x86_capability[CPUID_1_EDX] = cpuid_edx(1);
Jeremy Fitzhardinge7d087b62008-07-08 15:06:48 -07001600#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001601
Juergen Grossd1e9abd2014-09-17 06:12:36 +02001602 if (xen_start_info->mod_start) {
1603 if (xen_start_info->flags & SIF_MOD_START_PFN)
1604 initrd_start = PFN_PHYS(xen_start_info->mod_start);
1605 else
1606 initrd_start = __pa(xen_start_info->mod_start);
1607 }
1608
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001609 /* Poke various useful things into boot_params */
H. Peter Anvin30c82642007-10-15 17:13:22 -07001610 boot_params.hdr.type_of_loader = (9 << 4) | 0;
Juergen Grossd1e9abd2014-09-17 06:12:36 +02001611 boot_params.hdr.ramdisk_image = initrd_start;
H. Peter Anvin30c82642007-10-15 17:13:22 -07001612 boot_params.hdr.ramdisk_size = xen_start_info->mod_len;
Jeremy Fitzhardingeb7c3c5c2008-07-08 15:07:07 -07001613 boot_params.hdr.cmd_line_ptr = __pa(xen_start_info->cmd_line);
Luis R. Rodriguezea179482016-04-13 17:04:32 -07001614 boot_params.hdr.hardware_subarch = X86_SUBARCH_XEN;
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001615
Jeremy Fitzhardinge6e833582008-08-19 13:16:17 -07001616 if (!xen_initial_domain()) {
Jeremy Fitzhardinge83abc702008-05-26 23:31:12 +01001617 add_preferred_console("xenboot", 0, NULL);
Markus Armbruster9e124fe2008-05-26 23:31:07 +01001618 add_preferred_console("tty", 0, NULL);
Markus Armbrusterb8c2d3d2008-02-27 14:56:35 +01001619 add_preferred_console("hvc", 0, NULL);
Alex Nixonb5401a92010-03-18 16:31:34 -04001620 if (pci_xen)
1621 x86_init.pci.arch_init = pci_xen_init;
Chris Wright5d990b62009-12-04 12:15:21 -08001622 } else {
Jeremy Fitzhardingec2419b42011-05-31 10:50:10 -04001623 const struct dom0_vga_console_info *info =
1624 (void *)((char *)xen_start_info +
1625 xen_start_info->console.dom0.info_off);
Konrad Rzeszutek Wilkffb8b232012-09-21 12:30:35 -04001626 struct xen_platform_op op = {
1627 .cmd = XENPF_firmware_info,
1628 .interface_version = XENPF_INTERFACE_VERSION,
1629 .u.firmware_info.type = XEN_FW_KBD_SHIFT_FLAGS,
1630 };
Jeremy Fitzhardingec2419b42011-05-31 10:50:10 -04001631
Luis R. Rodriguez8d152e72016-04-13 17:04:34 -07001632 x86_platform.set_legacy_features =
1633 xen_dom0_set_legacy_features;
Jeremy Fitzhardingec2419b42011-05-31 10:50:10 -04001634 xen_init_vga(info, xen_start_info->console.dom0.info_size);
1635 xen_start_info->console.domU.mfn = 0;
1636 xen_start_info->console.domU.evtchn = 0;
1637
Stefano Stabellinicfafae92015-11-23 10:36:12 +00001638 if (HYPERVISOR_platform_op(&op) == 0)
Konrad Rzeszutek Wilkffb8b232012-09-21 12:30:35 -04001639 boot_params.kbd_status = op.u.firmware_info.u.kbd_shift_flags;
1640
Chris Wright5d990b62009-12-04 12:15:21 -08001641 /* Make sure ACS will be enabled */
1642 pci_request_acs();
Konrad Rzeszutek Wilk211063d2011-12-08 17:32:23 +08001643
1644 xen_acpi_sleep_register();
Konrad Rzeszutek Wilkbd499402012-09-19 08:30:55 -04001645
1646 /* Avoid searching for BIOS MP tables */
1647 x86_init.mpparse.find_smp_config = x86_init_noop;
1648 x86_init.mpparse.get_smp_config = x86_init_uint_noop;
David Vrabel96f28bc2013-04-03 17:31:50 +01001649
1650 xen_boot_params_init_edd();
Markus Armbruster9e124fe2008-05-26 23:31:07 +01001651 }
David Vrabel76a8df72012-05-04 14:29:46 +01001652#ifdef CONFIG_PCI
1653 /* PCI BIOS service won't work from a PV guest. */
1654 pci_probe &= ~PCI_PROBE_BIOS;
1655#endif
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001656 xen_raw_console_write("about to get started...\n");
1657
Vitaly Kuznetsov88e957d2016-06-30 17:56:37 +02001658 /* Let's presume PV guests always boot on vCPU with id 0. */
1659 per_cpu(xen_vcpu_id, 0) = 0;
1660
Jeremy Fitzhardinge499d19b2009-11-24 09:38:25 -08001661 xen_setup_runstate_info(0);
1662
Daniel Kiperc7341d62014-07-12 23:09:48 +02001663 xen_efi_init();
Daniel Kiperbe81c8a2014-06-30 19:53:02 +02001664
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001665 /* Start the world */
Jeremy Fitzhardingef5d36de2008-07-08 15:06:39 -07001666#ifdef CONFIG_X86_32
Yinghai Luf0d43102008-05-29 12:56:36 -07001667 i386_start_kernel();
Jeremy Fitzhardingef5d36de2008-07-08 15:06:39 -07001668#else
Boris Ostrovsky5054daa2015-02-23 11:01:00 -05001669 cr4_init_shadow(); /* 32b kernel does this in i386_start_kernel() */
Jeremy Fitzhardinge084a2a42008-07-08 15:06:50 -07001670 x86_64_start_reservations((char *)__pa_symbol(&boot_params));
Jeremy Fitzhardingef5d36de2008-07-08 15:06:39 -07001671#endif
Jeremy Fitzhardinge5ead97c2007-07-17 18:37:04 -07001672}
Sheng Yangbee6ab532010-05-14 12:39:33 +01001673
Boris Ostrovsky7243b932017-02-05 19:50:52 -05001674#ifdef CONFIG_XEN_PVH
Boris Ostrovsky5adad162017-02-05 19:50:58 -05001675
1676static void xen_pvh_arch_setup(void)
1677{
1678#ifdef CONFIG_ACPI
1679 /* Make sure we don't fall back to (default) ACPI_IRQ_MODEL_PIC. */
1680 if (nr_ioapics == 0)
1681 acpi_irq_model = ACPI_IRQ_MODEL_PLATFORM;
1682#endif
1683}
1684
Boris Ostrovsky7243b932017-02-05 19:50:52 -05001685static void __init init_pvh_bootparams(void)
1686{
1687 struct xen_memory_map memmap;
1688 unsigned int i;
1689 int rc;
1690
1691 memset(&pvh_bootparams, 0, sizeof(pvh_bootparams));
1692
Ingo Molnar687d77a2017-03-01 08:49:47 +01001693 memmap.nr_entries = ARRAY_SIZE(pvh_bootparams.e820_table);
1694 set_xen_guest_handle(memmap.buffer, pvh_bootparams.e820_table);
Boris Ostrovsky7243b932017-02-05 19:50:52 -05001695 rc = HYPERVISOR_memory_op(XENMEM_memory_map, &memmap);
1696 if (rc) {
1697 xen_raw_printk("XENMEM_memory_map failed (%d)\n", rc);
1698 BUG();
1699 }
1700
Ingo Molnar687d77a2017-03-01 08:49:47 +01001701 if (memmap.nr_entries < E820_MAX_ENTRIES_ZEROPAGE - 1) {
1702 pvh_bootparams.e820_table[memmap.nr_entries].addr =
Boris Ostrovsky7243b932017-02-05 19:50:52 -05001703 ISA_START_ADDRESS;
Ingo Molnar687d77a2017-03-01 08:49:47 +01001704 pvh_bootparams.e820_table[memmap.nr_entries].size =
Boris Ostrovsky7243b932017-02-05 19:50:52 -05001705 ISA_END_ADDRESS - ISA_START_ADDRESS;
Ingo Molnar687d77a2017-03-01 08:49:47 +01001706 pvh_bootparams.e820_table[memmap.nr_entries].type =
1707 E820_TYPE_RESERVED;
Boris Ostrovsky7243b932017-02-05 19:50:52 -05001708 memmap.nr_entries++;
1709 } else
1710 xen_raw_printk("Warning: Can fit ISA range into e820\n");
1711
Boris Ostrovsky7243b932017-02-05 19:50:52 -05001712 pvh_bootparams.e820_entries = memmap.nr_entries;
1713 for (i = 0; i < pvh_bootparams.e820_entries; i++)
Ingo Molnar687d77a2017-03-01 08:49:47 +01001714 e820__range_add(pvh_bootparams.e820_table[i].addr,
1715 pvh_bootparams.e820_table[i].size,
1716 pvh_bootparams.e820_table[i].type);
1717
1718 e820__update_table(e820_table);
Boris Ostrovsky7243b932017-02-05 19:50:52 -05001719
1720 pvh_bootparams.hdr.cmd_line_ptr =
1721 pvh_start_info.cmdline_paddr;
1722
1723 /* The first module is always ramdisk. */
1724 if (pvh_start_info.nr_modules) {
1725 struct hvm_modlist_entry *modaddr =
1726 __va(pvh_start_info.modlist_paddr);
1727 pvh_bootparams.hdr.ramdisk_image = modaddr->paddr;
1728 pvh_bootparams.hdr.ramdisk_size = modaddr->size;
1729 }
1730
1731 /*
1732 * See Documentation/x86/boot.txt.
1733 *
1734 * Version 2.12 supports Xen entry point but we will use default x86/PC
1735 * environment (i.e. hardware_subarch 0).
1736 */
1737 pvh_bootparams.hdr.version = 0x212;
1738 pvh_bootparams.hdr.type_of_loader = (9 << 4) | 0; /* Xen loader */
1739}
1740
1741/*
1742 * This routine (and those that it might call) should not use
1743 * anything that lives in .bss since that segment will be cleared later.
1744 */
1745void __init xen_prepare_pvh(void)
1746{
1747 u32 msr;
1748 u64 pfn;
1749
1750 if (pvh_start_info.magic != XEN_HVM_START_MAGIC_VALUE) {
1751 xen_raw_printk("Error: Unexpected magic value (0x%08x)\n",
1752 pvh_start_info.magic);
1753 BUG();
1754 }
1755
1756 xen_pvh = 1;
1757
1758 msr = cpuid_ebx(xen_cpuid_base() + 2);
1759 pfn = __pa(hypercall_page);
1760 wrmsr_safe(msr, (u32)pfn, (u32)(pfn >> 32));
1761
1762 init_pvh_bootparams();
Boris Ostrovsky5adad162017-02-05 19:50:58 -05001763
1764 x86_init.oem.arch_setup = xen_pvh_arch_setup;
Boris Ostrovsky7243b932017-02-05 19:50:52 -05001765}
1766#endif
1767
Konrad Rzeszutek Wilke9daff22013-02-14 21:29:31 -05001768void __ref xen_hvm_init_shared_info(void)
Olaf Hering9d02b432012-11-01 22:02:30 +01001769{
Konrad Rzeszutek Wilke9daff22013-02-14 21:29:31 -05001770 int cpu;
Olaf Hering9d02b432012-11-01 22:02:30 +01001771 struct xen_add_to_physmap xatp;
Konrad Rzeszutek Wilke9daff22013-02-14 21:29:31 -05001772 static struct shared_info *shared_info_page = 0;
Olaf Hering9d02b432012-11-01 22:02:30 +01001773
Konrad Rzeszutek Wilke9daff22013-02-14 21:29:31 -05001774 if (!shared_info_page)
1775 shared_info_page = (struct shared_info *)
1776 extend_brk(PAGE_SIZE, PAGE_SIZE);
Sheng Yangbee6ab532010-05-14 12:39:33 +01001777 xatp.domid = DOMID_SELF;
1778 xatp.idx = 0;
1779 xatp.space = XENMAPSPACE_shared_info;
Konrad Rzeszutek Wilke9daff22013-02-14 21:29:31 -05001780 xatp.gpfn = __pa(shared_info_page) >> PAGE_SHIFT;
Sheng Yangbee6ab532010-05-14 12:39:33 +01001781 if (HYPERVISOR_memory_op(XENMEM_add_to_physmap, &xatp))
1782 BUG();
1783
Konrad Rzeszutek Wilke9daff22013-02-14 21:29:31 -05001784 HYPERVISOR_shared_info = (struct shared_info *)shared_info_page;
Sheng Yangbee6ab532010-05-14 12:39:33 +01001785
Stefano Stabellini016b6f52010-05-14 12:45:07 +01001786 /* xen_vcpu is a pointer to the vcpu_info struct in the shared_info
1787 * page, we use it in the event channel upcall and in some pvclock
1788 * related functions. We don't need the vcpu_info placement
1789 * optimizations because we don't use any pv_mmu or pv_irq op on
Konrad Rzeszutek Wilke9daff22013-02-14 21:29:31 -05001790 * HVM.
1791 * When xen_hvm_init_shared_info is run at boot time only vcpu 0 is
1792 * online but xen_hvm_init_shared_info is run at resume time too and
1793 * in that case multiple vcpus might be online. */
1794 for_each_online_cpu(cpu) {
Konrad Rzeszutek Wilkd5b17db2013-05-05 09:24:07 -04001795 /* Leave it to be NULL. */
Vitaly Kuznetsove15a8622016-06-30 17:56:39 +02001796 if (xen_vcpu_nr(cpu) >= MAX_VIRT_CPUS)
Konrad Rzeszutek Wilkd5b17db2013-05-05 09:24:07 -04001797 continue;
Vitaly Kuznetsove15a8622016-06-30 17:56:39 +02001798 per_cpu(xen_vcpu, cpu) =
1799 &HYPERVISOR_shared_info->vcpu_info[xen_vcpu_nr(cpu)];
Olaf Hering9d02b432012-11-01 22:02:30 +01001800 }
Olaf Hering9d02b432012-11-01 22:02:30 +01001801}
1802
Konrad Rzeszutek Wilke9daff22013-02-14 21:29:31 -05001803#ifdef CONFIG_XEN_PVHVM
Olaf Hering4ff2d062012-07-17 11:59:15 +02001804static void __init init_hvm_pv_info(void)
1805{
Konrad Rzeszutek Wilke9daff22013-02-14 21:29:31 -05001806 int major, minor;
Boris Ostrovsky7243b932017-02-05 19:50:52 -05001807 uint32_t eax, ebx, ecx, edx, base;
Sheng Yangbee6ab532010-05-14 12:39:33 +01001808
1809 base = xen_cpuid_base();
Boris Ostrovsky7243b932017-02-05 19:50:52 -05001810 eax = cpuid_eax(base + 1);
Konrad Rzeszutek Wilke9daff22013-02-14 21:29:31 -05001811
1812 major = eax >> 16;
1813 minor = eax & 0xffff;
1814 printk(KERN_INFO "Xen version %d.%d.\n", major, minor);
1815
Boris Ostrovsky7243b932017-02-05 19:50:52 -05001816 xen_domain_type = XEN_HVM_DOMAIN;
Sheng Yangbee6ab532010-05-14 12:39:33 +01001817
Boris Ostrovsky7243b932017-02-05 19:50:52 -05001818 /* PVH set up hypercall page in xen_prepare_pvh(). */
1819 if (xen_pvh_domain())
1820 pv_info.name = "Xen PVH";
1821 else {
1822 u64 pfn;
1823 uint32_t msr;
1824
1825 pv_info.name = "Xen HVM";
1826 msr = cpuid_ebx(base + 2);
1827 pfn = __pa(hypercall_page);
1828 wrmsr_safe(msr, (u32)pfn, (u32)(pfn >> 32));
1829 }
Sheng Yangbee6ab532010-05-14 12:39:33 +01001830
1831 xen_setup_features();
1832
Vitaly Kuznetsov88e957d2016-06-30 17:56:37 +02001833 cpuid(base + 4, &eax, &ebx, &ecx, &edx);
1834 if (eax & XEN_HVM_CPUID_VCPU_ID_PRESENT)
1835 this_cpu_write(xen_vcpu_id, ebx);
1836 else
1837 this_cpu_write(xen_vcpu_id, smp_processor_id());
Sheng Yangbee6ab532010-05-14 12:39:33 +01001838}
Arnd Bergmanncb5f7e72016-10-12 17:20:38 +02001839#endif
Sheng Yangbee6ab532010-05-14 12:39:33 +01001840
Boris Ostrovsky4d737042016-09-07 13:19:00 -04001841static int xen_cpu_up_prepare(unsigned int cpu)
Sheng Yang38e20b02010-05-14 12:40:51 +01001842{
Boris Ostrovsky5fc509b2016-08-03 13:22:27 -04001843 int rc;
1844
Boris Ostrovsky4d737042016-09-07 13:19:00 -04001845 if (xen_hvm_domain()) {
1846 /*
1847 * This can happen if CPU was offlined earlier and
1848 * offlining timed out in common_cpu_die().
1849 */
1850 if (cpu_report_state(cpu) == CPU_DEAD_FROZEN) {
1851 xen_smp_intr_free(cpu);
1852 xen_uninit_lock_cpu(cpu);
Konrad Rzeszutek Wilk7918c922013-04-16 15:18:00 -04001853 }
Boris Ostrovsky5fc509b2016-08-03 13:22:27 -04001854
Vitaly Kuznetsov0b34a162015-09-25 11:59:52 +02001855 if (cpu_acpi_id(cpu) != U32_MAX)
1856 per_cpu(xen_vcpu_id, cpu) = cpu_acpi_id(cpu);
1857 else
1858 per_cpu(xen_vcpu_id, cpu) = cpu;
1859 xen_vcpu_setup(cpu);
Sheng Yang38e20b02010-05-14 12:40:51 +01001860 }
Boris Ostrovsky4d737042016-09-07 13:19:00 -04001861
KarimAllah Ahmed72a9b182016-08-26 23:55:36 +02001862 if (xen_pv_domain() || xen_feature(XENFEAT_hvm_safe_pvclock))
Boris Ostrovsky4d737042016-09-07 13:19:00 -04001863 xen_setup_timer(cpu);
1864
1865 rc = xen_smp_intr_init(cpu);
1866 if (rc) {
1867 WARN(1, "xen_smp_intr_init() for CPU %d failed: %d\n",
1868 cpu, rc);
1869 return rc;
1870 }
1871 return 0;
Sheng Yang38e20b02010-05-14 12:40:51 +01001872}
1873
Boris Ostrovsky4d737042016-09-07 13:19:00 -04001874static int xen_cpu_dead(unsigned int cpu)
1875{
1876 xen_smp_intr_free(cpu);
1877
KarimAllah Ahmed72a9b182016-08-26 23:55:36 +02001878 if (xen_pv_domain() || xen_feature(XENFEAT_hvm_safe_pvclock))
Boris Ostrovsky4d737042016-09-07 13:19:00 -04001879 xen_teardown_timer(cpu);
1880
1881 return 0;
1882}
1883
1884static int xen_cpu_up_online(unsigned int cpu)
1885{
1886 xen_init_lock_cpu(cpu);
1887 return 0;
1888}
Sheng Yang38e20b02010-05-14 12:40:51 +01001889
Arnd Bergmanncb5f7e72016-10-12 17:20:38 +02001890#ifdef CONFIG_XEN_PVHVM
Vitaly Kuznetsov0b34a162015-09-25 11:59:52 +02001891#ifdef CONFIG_KEXEC_CORE
1892static void xen_hvm_shutdown(void)
1893{
1894 native_machine_shutdown();
1895 if (kexec_in_progress)
1896 xen_reboot(SHUTDOWN_soft_reset);
1897}
1898
1899static void xen_hvm_crash_shutdown(struct pt_regs *regs)
1900{
1901 native_machine_crash_shutdown(regs);
1902 xen_reboot(SHUTDOWN_soft_reset);
1903}
1904#endif
1905
Sheng Yangbee6ab532010-05-14 12:39:33 +01001906static void __init xen_hvm_guest_init(void)
1907{
Boris Ostrovskya71dbda2015-05-04 11:02:15 -04001908 if (xen_pv_domain())
1909 return;
1910
Olaf Hering4ff2d062012-07-17 11:59:15 +02001911 init_hvm_pv_info();
Sheng Yangbee6ab532010-05-14 12:39:33 +01001912
Stefano Stabellini016b6f52010-05-14 12:45:07 +01001913 xen_hvm_init_shared_info();
Sheng Yang38e20b02010-05-14 12:40:51 +01001914
Vaughan Cao669b0ae2013-08-16 16:10:56 +08001915 xen_panic_handler_init();
1916
KarimAllah Ahmed72a9b182016-08-26 23:55:36 +02001917 BUG_ON(!xen_feature(XENFEAT_hvm_callback_vector));
1918
Stefano Stabellini99bbb3a2010-12-02 17:55:10 +00001919 xen_hvm_smp_init();
Boris Ostrovsky4d737042016-09-07 13:19:00 -04001920 WARN_ON(xen_cpuhp_setup());
Stefano Stabellinic1c54132010-05-14 12:44:30 +01001921 xen_unplug_emulated_devices();
Sheng Yang38e20b02010-05-14 12:40:51 +01001922 x86_init.irqs.intr_init = xen_init_IRQ;
Stefano Stabellini409771d2010-05-14 12:48:19 +01001923 xen_hvm_init_time_ops();
Stefano Stabellini59151002010-06-17 14:22:52 +01001924 xen_hvm_init_mmu_ops();
Boris Ostrovsky7a1c44e2017-02-06 10:58:06 -05001925
1926 if (xen_pvh_domain())
1927 machine_ops.emergency_restart = xen_emergency_restart;
Vitaly Kuznetsov0b34a162015-09-25 11:59:52 +02001928#ifdef CONFIG_KEXEC_CORE
1929 machine_ops.shutdown = xen_hvm_shutdown;
1930 machine_ops.crash_shutdown = xen_hvm_crash_shutdown;
1931#endif
Sheng Yangbee6ab532010-05-14 12:39:33 +01001932}
Boris Ostrovskya71dbda2015-05-04 11:02:15 -04001933#endif
Sheng Yangbee6ab532010-05-14 12:39:33 +01001934
Konrad Rzeszutek Wilk8d693b92014-07-11 11:51:35 -04001935static bool xen_nopv = false;
1936static __init int xen_parse_nopv(char *arg)
1937{
1938 xen_nopv = true;
1939 return 0;
1940}
1941early_param("xen_nopv", xen_parse_nopv);
1942
Boris Ostrovskya71dbda2015-05-04 11:02:15 -04001943static uint32_t __init xen_platform(void)
Sheng Yangbee6ab532010-05-14 12:39:33 +01001944{
Konrad Rzeszutek Wilk8d693b92014-07-11 11:51:35 -04001945 if (xen_nopv)
1946 return 0;
1947
Jason Wang9df56f12013-07-25 16:54:35 +08001948 return xen_cpuid_base();
Sheng Yangbee6ab532010-05-14 12:39:33 +01001949}
1950
Sheng Yangd9b8ca82010-12-21 14:18:49 +08001951bool xen_hvm_need_lapic(void)
1952{
Konrad Rzeszutek Wilk8d693b92014-07-11 11:51:35 -04001953 if (xen_nopv)
1954 return false;
Sheng Yangd9b8ca82010-12-21 14:18:49 +08001955 if (xen_pv_domain())
1956 return false;
1957 if (!xen_hvm_domain())
1958 return false;
KarimAllah Ahmed72a9b182016-08-26 23:55:36 +02001959 if (xen_feature(XENFEAT_hvm_pirqs))
Sheng Yangd9b8ca82010-12-21 14:18:49 +08001960 return false;
1961 return true;
1962}
1963EXPORT_SYMBOL_GPL(xen_hvm_need_lapic);
1964
Boris Ostrovskya71dbda2015-05-04 11:02:15 -04001965static void xen_set_cpu_features(struct cpuinfo_x86 *c)
1966{
Boris Ostrovsky91e2eea2015-11-19 16:55:45 -05001967 if (xen_pv_domain()) {
Boris Ostrovskya71dbda2015-05-04 11:02:15 -04001968 clear_cpu_bug(c, X86_BUG_SYSRET_SS_ATTRS);
Boris Ostrovsky91e2eea2015-11-19 16:55:45 -05001969 set_cpu_cap(c, X86_FEATURE_XENPV);
1970 }
Boris Ostrovskya71dbda2015-05-04 11:02:15 -04001971}
1972
Juergen Gross99bc6752016-08-29 08:48:45 +02001973static void xen_pin_vcpu(int cpu)
1974{
1975 static bool disable_pinning;
1976 struct sched_pin_override pin_override;
1977 int ret;
1978
1979 if (disable_pinning)
1980 return;
1981
1982 pin_override.pcpu = cpu;
1983 ret = HYPERVISOR_sched_op(SCHEDOP_pin_override, &pin_override);
1984
1985 /* Ignore errors when removing override. */
1986 if (cpu < 0)
1987 return;
1988
1989 switch (ret) {
1990 case -ENOSYS:
1991 pr_warn("Unable to pin on physical cpu %d. In case of problems consider vcpu pinning.\n",
1992 cpu);
1993 disable_pinning = true;
1994 break;
1995 case -EPERM:
1996 WARN(1, "Trying to pin vcpu without having privilege to do so\n");
1997 disable_pinning = true;
1998 break;
1999 case -EINVAL:
2000 case -EBUSY:
2001 pr_warn("Physical cpu %d not available for pinning. Check Xen cpu configuration.\n",
2002 cpu);
2003 break;
2004 case 0:
2005 break;
2006 default:
2007 WARN(1, "rc %d while trying to pin vcpu\n", ret);
2008 disable_pinning = true;
2009 }
2010}
2011
Boris Ostrovskya71dbda2015-05-04 11:02:15 -04002012const struct hypervisor_x86 x86_hyper_xen = {
2013 .name = "Xen",
2014 .detect = xen_platform,
2015#ifdef CONFIG_XEN_PVHVM
Sheng Yangbee6ab532010-05-14 12:39:33 +01002016 .init_platform = xen_hvm_guest_init,
Stefano Stabellinica65f9f2010-07-29 14:37:48 +01002017#endif
Boris Ostrovskya71dbda2015-05-04 11:02:15 -04002018 .x2apic_available = xen_x2apic_para_available,
2019 .set_cpu_features = xen_set_cpu_features,
Juergen Gross99bc6752016-08-29 08:48:45 +02002020 .pin_vcpu = xen_pin_vcpu,
Boris Ostrovskya71dbda2015-05-04 11:02:15 -04002021};
2022EXPORT_SYMBOL(x86_hyper_xen);
Stefano Stabellinia314e3e2015-10-22 16:20:46 +00002023
2024#ifdef CONFIG_HOTPLUG_CPU
2025void xen_arch_register_cpu(int num)
2026{
2027 arch_register_cpu(num);
2028}
2029EXPORT_SYMBOL(xen_arch_register_cpu);
2030
2031void xen_arch_unregister_cpu(int num)
2032{
2033 arch_unregister_cpu(num);
2034}
2035EXPORT_SYMBOL(xen_arch_unregister_cpu);
2036#endif