blob: 0e75642d42a358ac3d23d8ccc932f255e833ecc8 [file] [log] [blame]
Juergen Gross901d2092018-08-28 09:40:15 +02001// SPDX-License-Identifier: GPL-2.0
2
Juergen Gross418492b2017-11-09 14:27:39 +01003#include <linux/acpi.h>
Vitaly Kuznetsov98f2a472017-03-14 18:35:40 +01004#include <linux/cpu.h>
5#include <linux/kexec.h>
Juergen Grossa5d5f322017-06-12 13:53:56 +02006#include <linux/memblock.h>
Vitaly Kuznetsov98f2a472017-03-14 18:35:40 +01007
8#include <xen/features.h>
9#include <xen/events.h>
10#include <xen/interface/memory.h>
11
12#include <asm/cpu.h>
13#include <asm/smp.h>
14#include <asm/reboot.h>
15#include <asm/setup.h>
16#include <asm/hypervisor.h>
Juergen Grossa5d5f322017-06-12 13:53:56 +020017#include <asm/e820/api.h>
Juergen Gross4ca83dc2017-07-28 12:23:14 +020018#include <asm/early_ioremap.h>
Vitaly Kuznetsov98f2a472017-03-14 18:35:40 +010019
20#include <asm/xen/cpuid.h>
21#include <asm/xen/hypervisor.h>
Juergen Grossa5d5f322017-06-12 13:53:56 +020022#include <asm/xen/page.h>
Vitaly Kuznetsov98f2a472017-03-14 18:35:40 +010023
24#include "xen-ops.h"
25#include "mmu.h"
26#include "smp.h"
27
Juergen Gross4ca83dc2017-07-28 12:23:14 +020028static unsigned long shared_info_pfn;
29
Juergen Gross10231f62017-07-28 12:23:13 +020030void xen_hvm_init_shared_info(void)
Vitaly Kuznetsov98f2a472017-03-14 18:35:40 +010031{
Vitaly Kuznetsov98f2a472017-03-14 18:35:40 +010032 struct xen_add_to_physmap xatp;
Juergen Grossa5d5f322017-06-12 13:53:56 +020033
Vitaly Kuznetsov98f2a472017-03-14 18:35:40 +010034 xatp.domid = DOMID_SELF;
35 xatp.idx = 0;
36 xatp.space = XENMAPSPACE_shared_info;
Juergen Gross4ca83dc2017-07-28 12:23:14 +020037 xatp.gpfn = shared_info_pfn;
Vitaly Kuznetsov98f2a472017-03-14 18:35:40 +010038 if (HYPERVISOR_memory_op(XENMEM_add_to_physmap, &xatp))
39 BUG();
Vitaly Kuznetsov98f2a472017-03-14 18:35:40 +010040}
41
Juergen Gross10231f62017-07-28 12:23:13 +020042static void __init reserve_shared_info(void)
43{
44 u64 pa;
45
46 /*
47 * Search for a free page starting at 4kB physical address.
48 * Low memory is preferred to avoid an EPT large page split up
49 * by the mapping.
50 * Starting below X86_RESERVE_LOW (usually 64kB) is fine as
51 * the BIOS used for HVM guests is well behaved and won't
52 * clobber memory other than the first 4kB.
53 */
54 for (pa = PAGE_SIZE;
55 !e820__mapped_all(pa, pa + PAGE_SIZE, E820_TYPE_RAM) ||
56 memblock_is_reserved(pa);
57 pa += PAGE_SIZE)
58 ;
59
Juergen Gross4ca83dc2017-07-28 12:23:14 +020060 shared_info_pfn = PHYS_PFN(pa);
61
Juergen Gross10231f62017-07-28 12:23:13 +020062 memblock_reserve(pa, PAGE_SIZE);
Juergen Gross4ca83dc2017-07-28 12:23:14 +020063 HYPERVISOR_shared_info = early_memremap(pa, PAGE_SIZE);
64}
65
66static void __init xen_hvm_init_mem_mapping(void)
67{
68 early_memunmap(HYPERVISOR_shared_info, PAGE_SIZE);
69 HYPERVISOR_shared_info = __va(PFN_PHYS(shared_info_pfn));
van der Linden, Frankd1ecfa92018-05-04 16:11:00 -040070
71 /*
72 * The virtual address of the shared_info page has changed, so
73 * the vcpu_info pointer for VCPU 0 is now stale.
74 *
75 * The prepare_boot_cpu callback will re-initialize it via
76 * xen_vcpu_setup, but we can't rely on that to be called for
77 * old Xen versions (xen_have_vector_callback == 0).
78 *
79 * It is, in any case, bad to have a stale vcpu_info pointer
80 * so reset it now.
81 */
82 xen_vcpu_info_reset(0);
Juergen Gross10231f62017-07-28 12:23:13 +020083}
84
Vitaly Kuznetsov98f2a472017-03-14 18:35:40 +010085static void __init init_hvm_pv_info(void)
86{
87 int major, minor;
88 uint32_t eax, ebx, ecx, edx, base;
89
90 base = xen_cpuid_base();
91 eax = cpuid_eax(base + 1);
92
93 major = eax >> 16;
94 minor = eax & 0xffff;
95 printk(KERN_INFO "Xen version %d.%d.\n", major, minor);
96
97 xen_domain_type = XEN_HVM_DOMAIN;
98
99 /* PVH set up hypercall page in xen_prepare_pvh(). */
100 if (xen_pvh_domain())
101 pv_info.name = "Xen PVH";
102 else {
103 u64 pfn;
104 uint32_t msr;
105
106 pv_info.name = "Xen HVM";
107 msr = cpuid_ebx(base + 2);
108 pfn = __pa(hypercall_page);
109 wrmsr_safe(msr, (u32)pfn, (u32)(pfn >> 32));
110 }
111
112 xen_setup_features();
113
114 cpuid(base + 4, &eax, &ebx, &ecx, &edx);
115 if (eax & XEN_HVM_CPUID_VCPU_ID_PRESENT)
116 this_cpu_write(xen_vcpu_id, ebx);
117 else
118 this_cpu_write(xen_vcpu_id, smp_processor_id());
119}
120
121#ifdef CONFIG_KEXEC_CORE
122static void xen_hvm_shutdown(void)
123{
124 native_machine_shutdown();
125 if (kexec_in_progress)
126 xen_reboot(SHUTDOWN_soft_reset);
127}
128
129static void xen_hvm_crash_shutdown(struct pt_regs *regs)
130{
131 native_machine_crash_shutdown(regs);
132 xen_reboot(SHUTDOWN_soft_reset);
133}
134#endif
135
136static int xen_cpu_up_prepare_hvm(unsigned int cpu)
137{
Ankur Arorac9b5d982017-06-02 17:06:01 -0700138 int rc = 0;
Vitaly Kuznetsov98f2a472017-03-14 18:35:40 +0100139
140 /*
141 * This can happen if CPU was offlined earlier and
142 * offlining timed out in common_cpu_die().
143 */
144 if (cpu_report_state(cpu) == CPU_DEAD_FROZEN) {
145 xen_smp_intr_free(cpu);
146 xen_uninit_lock_cpu(cpu);
147 }
148
149 if (cpu_acpi_id(cpu) != U32_MAX)
150 per_cpu(xen_vcpu_id, cpu) = cpu_acpi_id(cpu);
151 else
152 per_cpu(xen_vcpu_id, cpu) = cpu;
Ankur Arorac9b5d982017-06-02 17:06:01 -0700153 rc = xen_vcpu_setup(cpu);
154 if (rc)
155 return rc;
Vitaly Kuznetsov98f2a472017-03-14 18:35:40 +0100156
Boris Ostrovsky84d582d2017-04-24 15:04:53 -0400157 if (xen_have_vector_callback && xen_feature(XENFEAT_hvm_safe_pvclock))
Vitaly Kuznetsov98f2a472017-03-14 18:35:40 +0100158 xen_setup_timer(cpu);
159
160 rc = xen_smp_intr_init(cpu);
161 if (rc) {
162 WARN(1, "xen_smp_intr_init() for CPU %d failed: %d\n",
163 cpu, rc);
Vitaly Kuznetsov98f2a472017-03-14 18:35:40 +0100164 }
Ankur Arorac9b5d982017-06-02 17:06:01 -0700165 return rc;
Vitaly Kuznetsov98f2a472017-03-14 18:35:40 +0100166}
167
168static int xen_cpu_dead_hvm(unsigned int cpu)
169{
170 xen_smp_intr_free(cpu);
171
Boris Ostrovsky84d582d2017-04-24 15:04:53 -0400172 if (xen_have_vector_callback && xen_feature(XENFEAT_hvm_safe_pvclock))
Vitaly Kuznetsov98f2a472017-03-14 18:35:40 +0100173 xen_teardown_timer(cpu);
174
175 return 0;
176}
177
178static void __init xen_hvm_guest_init(void)
179{
180 if (xen_pv_domain())
181 return;
182
183 init_hvm_pv_info();
184
Juergen Gross10231f62017-07-28 12:23:13 +0200185 reserve_shared_info();
Vitaly Kuznetsov98f2a472017-03-14 18:35:40 +0100186 xen_hvm_init_shared_info();
187
Ankur Arora0b64ffb2017-06-02 17:05:59 -0700188 /*
189 * xen_vcpu is a pointer to the vcpu_info struct in the shared_info
190 * page, we use it in the event channel upcall and in some pvclock
191 * related functions.
192 */
193 xen_vcpu_info_reset(0);
194
Vitaly Kuznetsov98f2a472017-03-14 18:35:40 +0100195 xen_panic_handler_init();
196
Boris Ostrovsky84d582d2017-04-24 15:04:53 -0400197 if (xen_feature(XENFEAT_hvm_callback_vector))
198 xen_have_vector_callback = 1;
Vitaly Kuznetsov98f2a472017-03-14 18:35:40 +0100199
200 xen_hvm_smp_init();
201 WARN_ON(xen_cpuhp_setup(xen_cpu_up_prepare_hvm, xen_cpu_dead_hvm));
202 xen_unplug_emulated_devices();
203 x86_init.irqs.intr_init = xen_init_IRQ;
204 xen_hvm_init_time_ops();
205 xen_hvm_init_mmu_ops();
206
Vitaly Kuznetsov98f2a472017-03-14 18:35:40 +0100207#ifdef CONFIG_KEXEC_CORE
208 machine_ops.shutdown = xen_hvm_shutdown;
209 machine_ops.crash_shutdown = xen_hvm_crash_shutdown;
210#endif
211}
212
213static bool xen_nopv;
214static __init int xen_parse_nopv(char *arg)
215{
216 xen_nopv = true;
217 return 0;
218}
219early_param("xen_nopv", xen_parse_nopv);
220
221bool xen_hvm_need_lapic(void)
222{
223 if (xen_nopv)
224 return false;
225 if (xen_pv_domain())
226 return false;
227 if (!xen_hvm_domain())
228 return false;
Boris Ostrovsky84d582d2017-04-24 15:04:53 -0400229 if (xen_feature(XENFEAT_hvm_pirqs) && xen_have_vector_callback)
Vitaly Kuznetsov98f2a472017-03-14 18:35:40 +0100230 return false;
231 return true;
232}
233EXPORT_SYMBOL_GPL(xen_hvm_need_lapic);
234
235static uint32_t __init xen_platform_hvm(void)
236{
237 if (xen_pv_domain() || xen_nopv)
238 return 0;
239
240 return xen_cpuid_base();
241}
242
Juergen Gross418492b2017-11-09 14:27:39 +0100243static __init void xen_hvm_guest_late_init(void)
244{
245#ifdef CONFIG_XEN_PVH
246 /* Test for PVH domain (PVH boot path taken overrides ACPI flags). */
247 if (!xen_pvh &&
248 (x86_platform.legacy.rtc || !x86_platform.legacy.no_vga))
249 return;
250
251 /* PVH detected. */
252 xen_pvh = true;
253
254 /* Make sure we don't fall back to (default) ACPI_IRQ_MODEL_PIC. */
255 if (!nr_ioapics && acpi_irq_model == ACPI_IRQ_MODEL_PIC)
256 acpi_irq_model = ACPI_IRQ_MODEL_PLATFORM;
257
258 machine_ops.emergency_restart = xen_emergency_restart;
259 pv_info.name = "Xen PVH";
260#endif
261}
262
Juergen Gross03b2a322017-11-09 14:27:36 +0100263const __initconst struct hypervisor_x86 x86_hyper_xen_hvm = {
Vitaly Kuznetsov98f2a472017-03-14 18:35:40 +0100264 .name = "Xen HVM",
265 .detect = xen_platform_hvm,
Juergen Gross03b2a322017-11-09 14:27:36 +0100266 .type = X86_HYPER_XEN_HVM,
Juergen Grossf72e38e2017-11-09 14:27:35 +0100267 .init.init_platform = xen_hvm_guest_init,
268 .init.x2apic_available = xen_x2apic_para_available,
269 .init.init_mem_mapping = xen_hvm_init_mem_mapping,
Juergen Gross418492b2017-11-09 14:27:39 +0100270 .init.guest_late_init = xen_hvm_guest_late_init,
Juergen Grossf72e38e2017-11-09 14:27:35 +0100271 .runtime.pin_vcpu = xen_pin_vcpu,
Vitaly Kuznetsov98f2a472017-03-14 18:35:40 +0100272};