1 // SPDX-License-Identifier: GPL-2.0
3 #include <linux/acpi.h>
5 #include <linux/kexec.h>
6 #include <linux/memblock.h>
8 #include <xen/features.h>
9 #include <xen/events.h>
10 #include <xen/interface/memory.h>
14 #include <asm/reboot.h>
15 #include <asm/setup.h>
16 #include <asm/hypervisor.h>
17 #include <asm/e820/api.h>
18 #include <asm/early_ioremap.h>
20 #include <asm/xen/cpuid.h>
21 #include <asm/xen/hypervisor.h>
22 #include <asm/xen/page.h>
28 static unsigned long shared_info_pfn
;
30 void xen_hvm_init_shared_info(void)
32 struct xen_add_to_physmap xatp
;
34 xatp
.domid
= DOMID_SELF
;
36 xatp
.space
= XENMAPSPACE_shared_info
;
37 xatp
.gpfn
= shared_info_pfn
;
38 if (HYPERVISOR_memory_op(XENMEM_add_to_physmap
, &xatp
))
42 static void __init
reserve_shared_info(void)
47 * Search for a free page starting at 4kB physical address.
48 * Low memory is preferred to avoid an EPT large page split up
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.
55 !e820__mapped_all(pa
, pa
+ PAGE_SIZE
, E820_TYPE_RAM
) ||
56 memblock_is_reserved(pa
);
60 shared_info_pfn
= PHYS_PFN(pa
);
62 memblock_reserve(pa
, PAGE_SIZE
);
63 HYPERVISOR_shared_info
= early_memremap(pa
, PAGE_SIZE
);
66 static void __init
xen_hvm_init_mem_mapping(void)
68 early_memunmap(HYPERVISOR_shared_info
, PAGE_SIZE
);
69 HYPERVISOR_shared_info
= __va(PFN_PHYS(shared_info_pfn
));
72 * The virtual address of the shared_info page has changed, so
73 * the vcpu_info pointer for VCPU 0 is now stale.
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).
79 * It is, in any case, bad to have a stale vcpu_info pointer
82 xen_vcpu_info_reset(0);
85 static void __init
init_hvm_pv_info(void)
88 uint32_t eax
, ebx
, ecx
, edx
, base
;
90 base
= xen_cpuid_base();
91 eax
= cpuid_eax(base
+ 1);
95 printk(KERN_INFO
"Xen version %d.%d.\n", major
, minor
);
97 xen_domain_type
= XEN_HVM_DOMAIN
;
99 /* PVH set up hypercall page in xen_prepare_pvh(). */
100 if (xen_pvh_domain())
101 pv_info
.name
= "Xen PVH";
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));
112 xen_setup_features();
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
);
118 this_cpu_write(xen_vcpu_id
, smp_processor_id());
121 #ifdef CONFIG_KEXEC_CORE
122 static void xen_hvm_shutdown(void)
124 native_machine_shutdown();
125 if (kexec_in_progress
)
126 xen_reboot(SHUTDOWN_soft_reset
);
129 static void xen_hvm_crash_shutdown(struct pt_regs
*regs
)
131 native_machine_crash_shutdown(regs
);
132 xen_reboot(SHUTDOWN_soft_reset
);
136 static int xen_cpu_up_prepare_hvm(unsigned int cpu
)
141 * This can happen if CPU was offlined earlier and
142 * offlining timed out in common_cpu_die().
144 if (cpu_report_state(cpu
) == CPU_DEAD_FROZEN
) {
145 xen_smp_intr_free(cpu
);
146 xen_uninit_lock_cpu(cpu
);
149 if (cpu_acpi_id(cpu
) != U32_MAX
)
150 per_cpu(xen_vcpu_id
, cpu
) = cpu_acpi_id(cpu
);
152 per_cpu(xen_vcpu_id
, cpu
) = cpu
;
153 rc
= xen_vcpu_setup(cpu
);
157 if (xen_have_vector_callback
&& xen_feature(XENFEAT_hvm_safe_pvclock
))
158 xen_setup_timer(cpu
);
160 rc
= xen_smp_intr_init(cpu
);
162 WARN(1, "xen_smp_intr_init() for CPU %d failed: %d\n",
168 static int xen_cpu_dead_hvm(unsigned int cpu
)
170 xen_smp_intr_free(cpu
);
172 if (xen_have_vector_callback
&& xen_feature(XENFEAT_hvm_safe_pvclock
))
173 xen_teardown_timer(cpu
);
178 static void __init
xen_hvm_guest_init(void)
185 reserve_shared_info();
186 xen_hvm_init_shared_info();
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
193 xen_vcpu_info_reset(0);
195 xen_panic_handler_init();
197 if (xen_feature(XENFEAT_hvm_callback_vector
))
198 xen_have_vector_callback
= 1;
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();
207 #ifdef CONFIG_KEXEC_CORE
208 machine_ops
.shutdown
= xen_hvm_shutdown
;
209 machine_ops
.crash_shutdown
= xen_hvm_crash_shutdown
;
213 static __init
int xen_parse_nopv(char *arg
)
215 pr_notice("\"xen_nopv\" is deprecated, please use \"nopv\" instead\n");
217 if (xen_cpuid_base())
221 early_param("xen_nopv", xen_parse_nopv
);
223 bool __init
xen_hvm_need_lapic(void)
227 if (!xen_hvm_domain())
229 if (xen_feature(XENFEAT_hvm_pirqs
) && xen_have_vector_callback
)
234 static __init
void xen_hvm_guest_late_init(void)
236 #ifdef CONFIG_XEN_PVH
237 /* Test for PVH domain (PVH boot path taken overrides ACPI flags). */
239 (x86_platform
.legacy
.rtc
|| !x86_platform
.legacy
.no_vga
))
246 panic("\"nopv\" and \"xen_nopv\" parameters are unsupported in PVH guest.");
248 /* Make sure we don't fall back to (default) ACPI_IRQ_MODEL_PIC. */
249 if (!nr_ioapics
&& acpi_irq_model
== ACPI_IRQ_MODEL_PIC
)
250 acpi_irq_model
= ACPI_IRQ_MODEL_PLATFORM
;
252 machine_ops
.emergency_restart
= xen_emergency_restart
;
253 pv_info
.name
= "Xen PVH";
257 static uint32_t __init
xen_platform_hvm(void)
259 uint32_t xen_domain
= xen_cpuid_base();
260 struct x86_hyper_init
*h
= &x86_hyper_xen_hvm
.init
;
265 if (xen_pvh_domain() && nopv
) {
266 /* Guest booting via the Xen-PVH boot entry goes here */
267 pr_info("\"nopv\" parameter is ignored in PVH guest\n");
269 } else if (nopv
&& xen_domain
) {
271 * Guest booting via normal boot entry (like via grub2) goes
274 * Use interface functions for bare hardware if nopv,
275 * xen_hvm_guest_late_init is an exception as we need to
276 * detect PVH and panic there.
278 h
->init_platform
= x86_init_noop
;
279 h
->x2apic_available
= bool_x86_init_noop
;
280 h
->init_mem_mapping
= x86_init_noop
;
281 h
->init_after_bootmem
= x86_init_noop
;
282 h
->guest_late_init
= xen_hvm_guest_late_init
;
283 x86_hyper_xen_hvm
.runtime
.pin_vcpu
= x86_op_int_noop
;
288 struct hypervisor_x86 x86_hyper_xen_hvm __initdata
= {
290 .detect
= xen_platform_hvm
,
291 .type
= X86_HYPER_XEN_HVM
,
292 .init
.init_platform
= xen_hvm_guest_init
,
293 .init
.x2apic_available
= xen_x2apic_para_available
,
294 .init
.init_mem_mapping
= xen_hvm_init_mem_mapping
,
295 .init
.guest_late_init
= xen_hvm_guest_late_init
,
296 .runtime
.pin_vcpu
= xen_pin_vcpu
,