Juergen Gross | 901d209 | 2018-08-28 09:40:15 +0200 | [diff] [blame^] | 1 | // SPDX-License-Identifier: GPL-2.0 |
| 2 | |
Juergen Gross | 418492b | 2017-11-09 14:27:39 +0100 | [diff] [blame] | 3 | #include <linux/acpi.h> |
Vitaly Kuznetsov | 98f2a47 | 2017-03-14 18:35:40 +0100 | [diff] [blame] | 4 | #include <linux/cpu.h> |
| 5 | #include <linux/kexec.h> |
Juergen Gross | a5d5f32 | 2017-06-12 13:53:56 +0200 | [diff] [blame] | 6 | #include <linux/memblock.h> |
Vitaly Kuznetsov | 98f2a47 | 2017-03-14 18:35:40 +0100 | [diff] [blame] | 7 | |
| 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 Gross | a5d5f32 | 2017-06-12 13:53:56 +0200 | [diff] [blame] | 17 | #include <asm/e820/api.h> |
Juergen Gross | 4ca83dc | 2017-07-28 12:23:14 +0200 | [diff] [blame] | 18 | #include <asm/early_ioremap.h> |
Vitaly Kuznetsov | 98f2a47 | 2017-03-14 18:35:40 +0100 | [diff] [blame] | 19 | |
| 20 | #include <asm/xen/cpuid.h> |
| 21 | #include <asm/xen/hypervisor.h> |
Juergen Gross | a5d5f32 | 2017-06-12 13:53:56 +0200 | [diff] [blame] | 22 | #include <asm/xen/page.h> |
Vitaly Kuznetsov | 98f2a47 | 2017-03-14 18:35:40 +0100 | [diff] [blame] | 23 | |
| 24 | #include "xen-ops.h" |
| 25 | #include "mmu.h" |
| 26 | #include "smp.h" |
| 27 | |
Juergen Gross | 4ca83dc | 2017-07-28 12:23:14 +0200 | [diff] [blame] | 28 | static unsigned long shared_info_pfn; |
| 29 | |
Juergen Gross | 10231f6 | 2017-07-28 12:23:13 +0200 | [diff] [blame] | 30 | void xen_hvm_init_shared_info(void) |
Vitaly Kuznetsov | 98f2a47 | 2017-03-14 18:35:40 +0100 | [diff] [blame] | 31 | { |
Vitaly Kuznetsov | 98f2a47 | 2017-03-14 18:35:40 +0100 | [diff] [blame] | 32 | struct xen_add_to_physmap xatp; |
Juergen Gross | a5d5f32 | 2017-06-12 13:53:56 +0200 | [diff] [blame] | 33 | |
Vitaly Kuznetsov | 98f2a47 | 2017-03-14 18:35:40 +0100 | [diff] [blame] | 34 | xatp.domid = DOMID_SELF; |
| 35 | xatp.idx = 0; |
| 36 | xatp.space = XENMAPSPACE_shared_info; |
Juergen Gross | 4ca83dc | 2017-07-28 12:23:14 +0200 | [diff] [blame] | 37 | xatp.gpfn = shared_info_pfn; |
Vitaly Kuznetsov | 98f2a47 | 2017-03-14 18:35:40 +0100 | [diff] [blame] | 38 | if (HYPERVISOR_memory_op(XENMEM_add_to_physmap, &xatp)) |
| 39 | BUG(); |
Vitaly Kuznetsov | 98f2a47 | 2017-03-14 18:35:40 +0100 | [diff] [blame] | 40 | } |
| 41 | |
Juergen Gross | 10231f6 | 2017-07-28 12:23:13 +0200 | [diff] [blame] | 42 | static 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 Gross | 4ca83dc | 2017-07-28 12:23:14 +0200 | [diff] [blame] | 60 | shared_info_pfn = PHYS_PFN(pa); |
| 61 | |
Juergen Gross | 10231f6 | 2017-07-28 12:23:13 +0200 | [diff] [blame] | 62 | memblock_reserve(pa, PAGE_SIZE); |
Juergen Gross | 4ca83dc | 2017-07-28 12:23:14 +0200 | [diff] [blame] | 63 | HYPERVISOR_shared_info = early_memremap(pa, PAGE_SIZE); |
| 64 | } |
| 65 | |
| 66 | static 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, Frank | d1ecfa9 | 2018-05-04 16:11:00 -0400 | [diff] [blame] | 70 | |
| 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 Gross | 10231f6 | 2017-07-28 12:23:13 +0200 | [diff] [blame] | 83 | } |
| 84 | |
Vitaly Kuznetsov | 98f2a47 | 2017-03-14 18:35:40 +0100 | [diff] [blame] | 85 | static 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 |
| 122 | static void xen_hvm_shutdown(void) |
| 123 | { |
| 124 | native_machine_shutdown(); |
| 125 | if (kexec_in_progress) |
| 126 | xen_reboot(SHUTDOWN_soft_reset); |
| 127 | } |
| 128 | |
| 129 | static 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 | |
| 136 | static int xen_cpu_up_prepare_hvm(unsigned int cpu) |
| 137 | { |
Ankur Arora | c9b5d98 | 2017-06-02 17:06:01 -0700 | [diff] [blame] | 138 | int rc = 0; |
Vitaly Kuznetsov | 98f2a47 | 2017-03-14 18:35:40 +0100 | [diff] [blame] | 139 | |
| 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 Arora | c9b5d98 | 2017-06-02 17:06:01 -0700 | [diff] [blame] | 153 | rc = xen_vcpu_setup(cpu); |
| 154 | if (rc) |
| 155 | return rc; |
Vitaly Kuznetsov | 98f2a47 | 2017-03-14 18:35:40 +0100 | [diff] [blame] | 156 | |
Boris Ostrovsky | 84d582d | 2017-04-24 15:04:53 -0400 | [diff] [blame] | 157 | if (xen_have_vector_callback && xen_feature(XENFEAT_hvm_safe_pvclock)) |
Vitaly Kuznetsov | 98f2a47 | 2017-03-14 18:35:40 +0100 | [diff] [blame] | 158 | 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 Kuznetsov | 98f2a47 | 2017-03-14 18:35:40 +0100 | [diff] [blame] | 164 | } |
Ankur Arora | c9b5d98 | 2017-06-02 17:06:01 -0700 | [diff] [blame] | 165 | return rc; |
Vitaly Kuznetsov | 98f2a47 | 2017-03-14 18:35:40 +0100 | [diff] [blame] | 166 | } |
| 167 | |
| 168 | static int xen_cpu_dead_hvm(unsigned int cpu) |
| 169 | { |
| 170 | xen_smp_intr_free(cpu); |
| 171 | |
Boris Ostrovsky | 84d582d | 2017-04-24 15:04:53 -0400 | [diff] [blame] | 172 | if (xen_have_vector_callback && xen_feature(XENFEAT_hvm_safe_pvclock)) |
Vitaly Kuznetsov | 98f2a47 | 2017-03-14 18:35:40 +0100 | [diff] [blame] | 173 | xen_teardown_timer(cpu); |
| 174 | |
| 175 | return 0; |
| 176 | } |
| 177 | |
| 178 | static void __init xen_hvm_guest_init(void) |
| 179 | { |
| 180 | if (xen_pv_domain()) |
| 181 | return; |
| 182 | |
| 183 | init_hvm_pv_info(); |
| 184 | |
Juergen Gross | 10231f6 | 2017-07-28 12:23:13 +0200 | [diff] [blame] | 185 | reserve_shared_info(); |
Vitaly Kuznetsov | 98f2a47 | 2017-03-14 18:35:40 +0100 | [diff] [blame] | 186 | xen_hvm_init_shared_info(); |
| 187 | |
Ankur Arora | 0b64ffb | 2017-06-02 17:05:59 -0700 | [diff] [blame] | 188 | /* |
| 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 Kuznetsov | 98f2a47 | 2017-03-14 18:35:40 +0100 | [diff] [blame] | 195 | xen_panic_handler_init(); |
| 196 | |
Boris Ostrovsky | 84d582d | 2017-04-24 15:04:53 -0400 | [diff] [blame] | 197 | if (xen_feature(XENFEAT_hvm_callback_vector)) |
| 198 | xen_have_vector_callback = 1; |
Vitaly Kuznetsov | 98f2a47 | 2017-03-14 18:35:40 +0100 | [diff] [blame] | 199 | |
| 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 Kuznetsov | 98f2a47 | 2017-03-14 18:35:40 +0100 | [diff] [blame] | 207 | #ifdef CONFIG_KEXEC_CORE |
| 208 | machine_ops.shutdown = xen_hvm_shutdown; |
| 209 | machine_ops.crash_shutdown = xen_hvm_crash_shutdown; |
| 210 | #endif |
| 211 | } |
| 212 | |
| 213 | static bool xen_nopv; |
| 214 | static __init int xen_parse_nopv(char *arg) |
| 215 | { |
| 216 | xen_nopv = true; |
| 217 | return 0; |
| 218 | } |
| 219 | early_param("xen_nopv", xen_parse_nopv); |
| 220 | |
| 221 | bool 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 Ostrovsky | 84d582d | 2017-04-24 15:04:53 -0400 | [diff] [blame] | 229 | if (xen_feature(XENFEAT_hvm_pirqs) && xen_have_vector_callback) |
Vitaly Kuznetsov | 98f2a47 | 2017-03-14 18:35:40 +0100 | [diff] [blame] | 230 | return false; |
| 231 | return true; |
| 232 | } |
| 233 | EXPORT_SYMBOL_GPL(xen_hvm_need_lapic); |
| 234 | |
| 235 | static 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 Gross | 418492b | 2017-11-09 14:27:39 +0100 | [diff] [blame] | 243 | static __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 Gross | 03b2a32 | 2017-11-09 14:27:36 +0100 | [diff] [blame] | 263 | const __initconst struct hypervisor_x86 x86_hyper_xen_hvm = { |
Vitaly Kuznetsov | 98f2a47 | 2017-03-14 18:35:40 +0100 | [diff] [blame] | 264 | .name = "Xen HVM", |
| 265 | .detect = xen_platform_hvm, |
Juergen Gross | 03b2a32 | 2017-11-09 14:27:36 +0100 | [diff] [blame] | 266 | .type = X86_HYPER_XEN_HVM, |
Juergen Gross | f72e38e | 2017-11-09 14:27:35 +0100 | [diff] [blame] | 267 | .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 Gross | 418492b | 2017-11-09 14:27:39 +0100 | [diff] [blame] | 270 | .init.guest_late_init = xen_hvm_guest_late_init, |
Juergen Gross | f72e38e | 2017-11-09 14:27:35 +0100 | [diff] [blame] | 271 | .runtime.pin_vcpu = xen_pin_vcpu, |
Vitaly Kuznetsov | 98f2a47 | 2017-03-14 18:35:40 +0100 | [diff] [blame] | 272 | }; |