2019-06-01 10:08:55 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2010-05-06 12:08:41 -07:00
|
|
|
/*
|
|
|
|
* HyperV Detection code.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2010, Novell, Inc.
|
|
|
|
* Author : K. Y. Srinivasan <ksrinivasan@novell.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/types.h>
|
2011-09-07 15:25:10 -07:00
|
|
|
#include <linux/time.h>
|
|
|
|
#include <linux/clocksource.h>
|
2016-07-13 20:18:56 -04:00
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/export.h>
|
2013-02-03 17:22:39 -08:00
|
|
|
#include <linux/hardirq.h>
|
2013-09-30 17:28:52 +02:00
|
|
|
#include <linux/efi.h>
|
2013-02-03 17:22:39 -08:00
|
|
|
#include <linux/interrupt.h>
|
2014-02-23 21:40:22 +00:00
|
|
|
#include <linux/irq.h>
|
2015-08-01 16:08:07 -07:00
|
|
|
#include <linux/kexec.h>
|
2018-11-04 03:48:57 +00:00
|
|
|
#include <linux/i8253.h>
|
2019-07-01 04:25:56 +00:00
|
|
|
#include <linux/random.h>
|
2021-12-13 02:14:04 -05:00
|
|
|
#include <linux/swiotlb.h>
|
2010-05-06 12:08:41 -07:00
|
|
|
#include <asm/processor.h>
|
2010-05-07 16:57:28 -07:00
|
|
|
#include <asm/hypervisor.h>
|
2018-03-20 15:02:05 +01:00
|
|
|
#include <asm/hyperv-tlfs.h>
|
2010-05-06 12:08:41 -07:00
|
|
|
#include <asm/mshyperv.h>
|
2013-02-03 17:22:39 -08:00
|
|
|
#include <asm/desc.h>
|
2020-05-21 22:05:43 +02:00
|
|
|
#include <asm/idtentry.h>
|
2013-02-03 17:22:39 -08:00
|
|
|
#include <asm/irq_regs.h>
|
2013-09-30 17:28:52 +02:00
|
|
|
#include <asm/i8259.h>
|
2013-10-11 16:07:31 -07:00
|
|
|
#include <asm/apic.h>
|
2014-02-28 11:30:29 +08:00
|
|
|
#include <asm/timer.h>
|
2015-08-01 16:08:07 -07:00
|
|
|
#include <asm/reboot.h>
|
2016-12-02 11:07:20 +01:00
|
|
|
#include <asm/nmi.h>
|
2019-08-14 20:32:16 +08:00
|
|
|
#include <clocksource/hyperv_timer.h>
|
2021-02-03 15:04:29 +00:00
|
|
|
#include <asm/numa.h>
|
2022-02-22 21:57:39 +03:00
|
|
|
#include <asm/coco.h>
|
2010-05-06 12:08:41 -07:00
|
|
|
|
2021-02-03 15:04:21 +00:00
|
|
|
/* Is Linux running as the root partition? */
|
|
|
|
bool hv_root_partition;
|
2010-05-07 16:57:28 -07:00
|
|
|
struct ms_hyperv_info ms_hyperv;
|
2010-05-06 12:08:41 -07:00
|
|
|
|
2014-03-04 23:39:58 +01:00
|
|
|
#if IS_ENABLED(CONFIG_HYPERV)
|
2014-03-05 13:42:14 +01:00
|
|
|
static void (*vmbus_handler)(void);
|
2018-03-04 22:17:18 -07:00
|
|
|
static void (*hv_stimer0_handler)(void);
|
2015-09-23 12:02:57 +02:00
|
|
|
static void (*hv_kexec_handler)(void);
|
|
|
|
static void (*hv_crash_handler)(struct pt_regs *regs);
|
2014-02-23 21:40:22 +00:00
|
|
|
|
2020-05-21 22:05:43 +02:00
|
|
|
DEFINE_IDTENTRY_SYSVEC(sysvec_hyperv_callback)
|
2014-02-23 21:40:22 +00:00
|
|
|
{
|
|
|
|
struct pt_regs *old_regs = set_irq_regs(regs);
|
|
|
|
|
|
|
|
inc_irq_stat(irq_hv_callback_count);
|
|
|
|
if (vmbus_handler)
|
|
|
|
vmbus_handler();
|
|
|
|
|
2018-06-05 13:37:54 -07:00
|
|
|
if (ms_hyperv.hints & HV_DEPRECATING_AEOI_RECOMMENDED)
|
2017-03-28 17:16:53 -07:00
|
|
|
ack_APIC_irq();
|
|
|
|
|
2014-02-23 21:40:22 +00:00
|
|
|
set_irq_regs(old_regs);
|
|
|
|
}
|
|
|
|
|
2021-03-02 13:38:18 -08:00
|
|
|
void hv_setup_vmbus_handler(void (*handler)(void))
|
2014-02-23 21:40:22 +00:00
|
|
|
{
|
|
|
|
vmbus_handler = handler;
|
|
|
|
}
|
|
|
|
|
2021-03-02 13:38:18 -08:00
|
|
|
void hv_remove_vmbus_handler(void)
|
2014-02-23 21:40:22 +00:00
|
|
|
{
|
|
|
|
/* We have no way to deallocate the interrupt gate */
|
|
|
|
vmbus_handler = NULL;
|
|
|
|
}
|
2015-08-01 16:08:07 -07:00
|
|
|
|
2018-03-04 22:17:18 -07:00
|
|
|
/*
|
|
|
|
* Routines to do per-architecture handling of stimer0
|
|
|
|
* interrupts when in Direct Mode
|
|
|
|
*/
|
2020-05-21 22:05:43 +02:00
|
|
|
DEFINE_IDTENTRY_SYSVEC(sysvec_hyperv_stimer0)
|
2018-03-04 22:17:18 -07:00
|
|
|
{
|
|
|
|
struct pt_regs *old_regs = set_irq_regs(regs);
|
|
|
|
|
|
|
|
inc_irq_stat(hyperv_stimer0_count);
|
|
|
|
if (hv_stimer0_handler)
|
|
|
|
hv_stimer0_handler();
|
2021-12-07 13:17:33 +01:00
|
|
|
add_interrupt_randomness(HYPERV_STIMER0_VECTOR);
|
2018-03-04 22:17:18 -07:00
|
|
|
ack_APIC_irq();
|
|
|
|
|
|
|
|
set_irq_regs(old_regs);
|
|
|
|
}
|
|
|
|
|
2021-03-02 13:38:22 -08:00
|
|
|
/* For x86/x64, override weak placeholders in hyperv_timer.c */
|
|
|
|
void hv_setup_stimer0_handler(void (*handler)(void))
|
2018-03-04 22:17:18 -07:00
|
|
|
{
|
|
|
|
hv_stimer0_handler = handler;
|
|
|
|
}
|
|
|
|
|
2021-03-02 13:38:22 -08:00
|
|
|
void hv_remove_stimer0_handler(void)
|
2018-03-04 22:17:18 -07:00
|
|
|
{
|
|
|
|
/* We have no way to deallocate the interrupt gate */
|
|
|
|
hv_stimer0_handler = NULL;
|
|
|
|
}
|
|
|
|
|
2015-08-01 16:08:07 -07:00
|
|
|
void hv_setup_kexec_handler(void (*handler)(void))
|
|
|
|
{
|
|
|
|
hv_kexec_handler = handler;
|
|
|
|
}
|
|
|
|
|
|
|
|
void hv_remove_kexec_handler(void)
|
|
|
|
{
|
|
|
|
hv_kexec_handler = NULL;
|
|
|
|
}
|
2015-08-01 16:08:09 -07:00
|
|
|
|
|
|
|
void hv_setup_crash_handler(void (*handler)(struct pt_regs *regs))
|
|
|
|
{
|
|
|
|
hv_crash_handler = handler;
|
|
|
|
}
|
|
|
|
|
|
|
|
void hv_remove_crash_handler(void)
|
|
|
|
{
|
|
|
|
hv_crash_handler = NULL;
|
|
|
|
}
|
2014-02-23 21:40:22 +00:00
|
|
|
|
2015-09-23 12:02:57 +02:00
|
|
|
#ifdef CONFIG_KEXEC_CORE
|
2015-08-01 16:08:07 -07:00
|
|
|
static void hv_machine_shutdown(void)
|
|
|
|
{
|
|
|
|
if (kexec_in_progress && hv_kexec_handler)
|
|
|
|
hv_kexec_handler();
|
2020-12-21 22:55:41 -08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Call hv_cpu_die() on all the CPUs, otherwise later the hypervisor
|
|
|
|
* corrupts the old VP Assist Pages and can crash the kexec kernel.
|
|
|
|
*/
|
|
|
|
if (kexec_in_progress && hyperv_init_cpuhp > 0)
|
|
|
|
cpuhp_remove_state(hyperv_init_cpuhp);
|
|
|
|
|
|
|
|
/* The function calls stop_other_cpus(). */
|
2015-08-01 16:08:07 -07:00
|
|
|
native_machine_shutdown();
|
2020-12-21 22:55:41 -08:00
|
|
|
|
|
|
|
/* Disable the hypercall page when there is only 1 active CPU. */
|
|
|
|
if (kexec_in_progress)
|
|
|
|
hyperv_cleanup();
|
2015-08-01 16:08:07 -07:00
|
|
|
}
|
|
|
|
|
2015-08-01 16:08:09 -07:00
|
|
|
static void hv_machine_crash_shutdown(struct pt_regs *regs)
|
|
|
|
{
|
|
|
|
if (hv_crash_handler)
|
|
|
|
hv_crash_handler(regs);
|
2020-12-21 22:55:41 -08:00
|
|
|
|
|
|
|
/* The function calls crash_smp_send_stop(). */
|
2015-08-01 16:08:09 -07:00
|
|
|
native_machine_crash_shutdown(regs);
|
2020-12-21 22:55:41 -08:00
|
|
|
|
|
|
|
/* Disable the hypercall page when there is only 1 active CPU. */
|
|
|
|
hyperv_cleanup();
|
2015-08-01 16:08:09 -07:00
|
|
|
}
|
2015-09-23 12:02:57 +02:00
|
|
|
#endif /* CONFIG_KEXEC_CORE */
|
|
|
|
#endif /* CONFIG_HYPERV */
|
2015-08-01 16:08:09 -07:00
|
|
|
|
2013-07-25 16:54:35 +08:00
|
|
|
static uint32_t __init ms_hyperv_platform(void)
|
2010-05-06 12:08:41 -07:00
|
|
|
{
|
2010-05-07 16:57:28 -07:00
|
|
|
u32 eax;
|
|
|
|
u32 hyp_signature[3];
|
2010-05-06 12:08:41 -07:00
|
|
|
|
2010-05-07 16:57:28 -07:00
|
|
|
if (!boot_cpu_has(X86_FEATURE_HYPERVISOR))
|
2013-07-25 16:54:35 +08:00
|
|
|
return 0;
|
2010-05-06 12:08:41 -07:00
|
|
|
|
2010-05-07 16:57:28 -07:00
|
|
|
cpuid(HYPERV_CPUID_VENDOR_AND_MAX_FUNCTIONS,
|
|
|
|
&eax, &hyp_signature[0], &hyp_signature[1], &hyp_signature[2]);
|
2010-05-06 12:08:41 -07:00
|
|
|
|
2021-11-04 18:22:39 +00:00
|
|
|
if (eax < HYPERV_CPUID_MIN || eax > HYPERV_CPUID_MAX ||
|
|
|
|
memcmp("Microsoft Hv", hyp_signature, 12))
|
|
|
|
return 0;
|
2013-07-25 16:54:35 +08:00
|
|
|
|
2021-11-04 18:22:39 +00:00
|
|
|
/* HYPERCALL and VP_INDEX MSRs are mandatory for all features. */
|
|
|
|
eax = cpuid_eax(HYPERV_CPUID_FEATURES);
|
|
|
|
if (!(eax & HV_MSR_HYPERCALL_AVAILABLE)) {
|
|
|
|
pr_warn("x86/hyperv: HYPERCALL MSR not available.\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (!(eax & HV_MSR_VP_INDEX_AVAILABLE)) {
|
|
|
|
pr_warn("x86/hyperv: VP_INDEX MSR not available.\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return HYPERV_CPUID_VENDOR_AND_MAX_FUNCTIONS;
|
2010-05-06 12:08:41 -07:00
|
|
|
}
|
|
|
|
|
2016-04-15 15:50:32 +02:00
|
|
|
static unsigned char hv_get_nmi_reason(void)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-12-02 11:07:20 +01:00
|
|
|
#ifdef CONFIG_X86_LOCAL_APIC
|
|
|
|
/*
|
|
|
|
* Prior to WS2016 Debug-VM sends NMIs to all CPUs which makes
|
2021-03-18 15:28:01 +01:00
|
|
|
* it difficult to process CHANNELMSG_UNLOAD in case of crash. Handle
|
2016-12-02 11:07:20 +01:00
|
|
|
* unknown NMI on the first CPU which gets it.
|
|
|
|
*/
|
|
|
|
static int hv_nmi_unknown(unsigned int val, struct pt_regs *regs)
|
|
|
|
{
|
|
|
|
static atomic_t nmi_cpu = ATOMIC_INIT(-1);
|
|
|
|
|
|
|
|
if (!unknown_nmi_panic)
|
|
|
|
return NMI_DONE;
|
|
|
|
|
|
|
|
if (atomic_cmpxchg(&nmi_cpu, -1, raw_smp_processor_id()) != -1)
|
|
|
|
return NMI_HANDLED;
|
|
|
|
|
|
|
|
return NMI_DONE;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-06-22 18:07:30 +08:00
|
|
|
static unsigned long hv_get_tsc_khz(void)
|
|
|
|
{
|
|
|
|
unsigned long freq;
|
|
|
|
|
|
|
|
rdmsrl(HV_X64_MSR_TSC_FREQUENCY, freq);
|
|
|
|
|
|
|
|
return freq / 1000;
|
|
|
|
}
|
|
|
|
|
2018-10-08 16:29:34 +08:00
|
|
|
#if defined(CONFIG_SMP) && IS_ENABLED(CONFIG_HYPERV)
|
|
|
|
static void __init hv_smp_prepare_boot_cpu(void)
|
|
|
|
{
|
|
|
|
native_smp_prepare_boot_cpu();
|
|
|
|
#if defined(CONFIG_X86_64) && defined(CONFIG_PARAVIRT_SPINLOCKS)
|
|
|
|
hv_init_spinlocks();
|
|
|
|
#endif
|
|
|
|
}
|
2021-02-03 15:04:29 +00:00
|
|
|
|
|
|
|
static void __init hv_smp_prepare_cpus(unsigned int max_cpus)
|
|
|
|
{
|
|
|
|
#ifdef CONFIG_X86_64
|
|
|
|
int i;
|
|
|
|
int ret;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
native_smp_prepare_cpus(max_cpus);
|
|
|
|
|
|
|
|
#ifdef CONFIG_X86_64
|
|
|
|
for_each_present_cpu(i) {
|
|
|
|
if (i == 0)
|
|
|
|
continue;
|
2021-07-21 15:55:43 +00:00
|
|
|
ret = hv_call_add_logical_proc(numa_cpu_node(i), i, cpu_physical_id(i));
|
2021-02-03 15:04:29 +00:00
|
|
|
BUG_ON(ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
for_each_present_cpu(i) {
|
|
|
|
if (i == 0)
|
|
|
|
continue;
|
|
|
|
ret = hv_call_create_vp(numa_cpu_node(i), hv_current_partition_id, i, i);
|
|
|
|
BUG_ON(ret);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
2018-10-08 16:29:34 +08:00
|
|
|
#endif
|
|
|
|
|
2010-05-07 16:57:28 -07:00
|
|
|
static void __init ms_hyperv_init_platform(void)
|
2010-05-06 12:08:41 -07:00
|
|
|
{
|
2021-06-03 15:14:34 +00:00
|
|
|
int hv_max_functions_eax;
|
2017-01-19 11:51:47 -07:00
|
|
|
int hv_host_info_eax;
|
|
|
|
int hv_host_info_ebx;
|
|
|
|
int hv_host_info_ecx;
|
|
|
|
int hv_host_info_edx;
|
|
|
|
|
2019-10-15 12:35:02 +02:00
|
|
|
#ifdef CONFIG_PARAVIRT
|
|
|
|
pv_info.name = "Hyper-V";
|
|
|
|
#endif
|
|
|
|
|
2010-05-06 12:08:41 -07:00
|
|
|
/*
|
2010-05-07 16:57:28 -07:00
|
|
|
* Extract the features and hints
|
2010-05-06 12:08:41 -07:00
|
|
|
*/
|
2010-05-07 16:57:28 -07:00
|
|
|
ms_hyperv.features = cpuid_eax(HYPERV_CPUID_FEATURES);
|
2021-03-23 18:47:16 +00:00
|
|
|
ms_hyperv.priv_high = cpuid_ebx(HYPERV_CPUID_FEATURES);
|
2015-08-01 16:08:20 -07:00
|
|
|
ms_hyperv.misc_features = cpuid_edx(HYPERV_CPUID_FEATURES);
|
2010-05-07 16:57:28 -07:00
|
|
|
ms_hyperv.hints = cpuid_eax(HYPERV_CPUID_ENLIGHTMENT_INFO);
|
2010-05-06 12:08:41 -07:00
|
|
|
|
2021-06-03 15:14:34 +00:00
|
|
|
hv_max_functions_eax = cpuid_eax(HYPERV_CPUID_VENDOR_AND_MAX_FUNCTIONS);
|
|
|
|
|
2021-03-23 18:47:16 +00:00
|
|
|
pr_info("Hyper-V: privilege flags low 0x%x, high 0x%x, hints 0x%x, misc 0x%x\n",
|
|
|
|
ms_hyperv.features, ms_hyperv.priv_high, ms_hyperv.hints,
|
|
|
|
ms_hyperv.misc_features);
|
2011-09-07 15:25:10 -07:00
|
|
|
|
2018-03-20 15:02:06 +01:00
|
|
|
ms_hyperv.max_vp_index = cpuid_eax(HYPERV_CPUID_IMPLEMENT_LIMITS);
|
|
|
|
ms_hyperv.max_lp_index = cpuid_ebx(HYPERV_CPUID_IMPLEMENT_LIMITS);
|
2017-06-25 10:06:41 -07:00
|
|
|
|
|
|
|
pr_debug("Hyper-V: max %u virtual processors, %u logical processors\n",
|
|
|
|
ms_hyperv.max_vp_index, ms_hyperv.max_lp_index);
|
|
|
|
|
2021-02-03 15:04:21 +00:00
|
|
|
/*
|
|
|
|
* Check CPU management privilege.
|
|
|
|
*
|
|
|
|
* To mirror what Windows does we should extract CPU management
|
|
|
|
* features and use the ReservedIdentityBit to detect if Linux is the
|
|
|
|
* root partition. But that requires negotiating CPU management
|
|
|
|
* interface (a process to be finalized).
|
|
|
|
*
|
|
|
|
* For now, use the privilege flag as the indicator for running as
|
|
|
|
* root.
|
|
|
|
*/
|
|
|
|
if (cpuid_ebx(HYPERV_CPUID_FEATURES) & HV_CPU_MANAGEMENT) {
|
|
|
|
hv_root_partition = true;
|
|
|
|
pr_info("Hyper-V: running as root partition\n");
|
|
|
|
}
|
|
|
|
|
2017-01-19 11:51:47 -07:00
|
|
|
/*
|
|
|
|
* Extract host information.
|
|
|
|
*/
|
2021-06-03 15:14:34 +00:00
|
|
|
if (hv_max_functions_eax >= HYPERV_CPUID_VERSION) {
|
2018-03-20 15:02:06 +01:00
|
|
|
hv_host_info_eax = cpuid_eax(HYPERV_CPUID_VERSION);
|
|
|
|
hv_host_info_ebx = cpuid_ebx(HYPERV_CPUID_VERSION);
|
|
|
|
hv_host_info_ecx = cpuid_ecx(HYPERV_CPUID_VERSION);
|
|
|
|
hv_host_info_edx = cpuid_edx(HYPERV_CPUID_VERSION);
|
2017-01-19 11:51:47 -07:00
|
|
|
|
2022-03-08 11:22:44 -08:00
|
|
|
pr_info("Hyper-V: Host Build %d.%d.%d.%d-%d-%d\n",
|
|
|
|
hv_host_info_ebx >> 16, hv_host_info_ebx & 0xFFFF,
|
|
|
|
hv_host_info_eax, hv_host_info_edx & 0xFFFFFF,
|
|
|
|
hv_host_info_ecx, hv_host_info_edx >> 24);
|
2017-01-19 11:51:47 -07:00
|
|
|
}
|
|
|
|
|
2020-09-26 07:26:26 -07:00
|
|
|
if (ms_hyperv.features & HV_ACCESS_FREQUENCY_MSRS &&
|
2017-06-22 18:07:30 +08:00
|
|
|
ms_hyperv.misc_features & HV_FEATURE_FREQUENCY_MSRS_AVAILABLE) {
|
|
|
|
x86_platform.calibrate_tsc = hv_get_tsc_khz;
|
|
|
|
x86_platform.calibrate_cpu = hv_get_tsc_khz;
|
|
|
|
}
|
|
|
|
|
2021-03-23 18:47:16 +00:00
|
|
|
if (ms_hyperv.priv_high & HV_ISOLATION) {
|
2021-02-01 15:48:11 +01:00
|
|
|
ms_hyperv.isolation_config_a = cpuid_eax(HYPERV_CPUID_ISOLATION_CONFIG);
|
|
|
|
ms_hyperv.isolation_config_b = cpuid_ebx(HYPERV_CPUID_ISOLATION_CONFIG);
|
2021-10-25 08:21:07 -04:00
|
|
|
ms_hyperv.shared_gpa_boundary =
|
|
|
|
BIT_ULL(ms_hyperv.shared_gpa_boundary_bits);
|
2021-02-01 15:48:11 +01:00
|
|
|
|
|
|
|
pr_info("Hyper-V: Isolation Config: Group A 0x%x, Group B 0x%x\n",
|
|
|
|
ms_hyperv.isolation_config_a, ms_hyperv.isolation_config_b);
|
2021-10-25 08:21:06 -04:00
|
|
|
|
2021-12-13 02:14:04 -05:00
|
|
|
if (hv_get_isolation_type() == HV_ISOLATION_TYPE_SNP) {
|
2021-10-25 08:21:06 -04:00
|
|
|
static_branch_enable(&isolation_type_snp);
|
2021-12-13 02:14:04 -05:00
|
|
|
#ifdef CONFIG_SWIOTLB
|
|
|
|
swiotlb_unencrypted_base = ms_hyperv.shared_gpa_boundary;
|
|
|
|
#endif
|
|
|
|
}
|
2022-02-22 21:57:39 +03:00
|
|
|
/* Isolation VMs are unenlightened SEV-based VMs, thus this check: */
|
|
|
|
if (IS_ENABLED(CONFIG_AMD_MEM_ENCRYPT)) {
|
|
|
|
if (hv_get_isolation_type() != HV_ISOLATION_TYPE_NONE)
|
|
|
|
cc_set_vendor(CC_VENDOR_HYPERV);
|
|
|
|
}
|
2021-02-01 15:48:11 +01:00
|
|
|
}
|
|
|
|
|
2021-06-03 15:14:34 +00:00
|
|
|
if (hv_max_functions_eax >= HYPERV_CPUID_NESTED_FEATURES) {
|
2018-03-20 15:02:10 +01:00
|
|
|
ms_hyperv.nested_features =
|
|
|
|
cpuid_eax(HYPERV_CPUID_NESTED_FEATURES);
|
2021-06-03 15:14:34 +00:00
|
|
|
pr_info("Hyper-V: Nested features: 0x%x\n",
|
|
|
|
ms_hyperv.nested_features);
|
2018-03-20 15:02:10 +01:00
|
|
|
}
|
|
|
|
|
2013-10-10 15:30:24 -07:00
|
|
|
#ifdef CONFIG_X86_LOCAL_APIC
|
2020-09-26 07:26:26 -07:00
|
|
|
if (ms_hyperv.features & HV_ACCESS_FREQUENCY_MSRS &&
|
2017-06-22 18:07:29 +08:00
|
|
|
ms_hyperv.misc_features & HV_FEATURE_FREQUENCY_MSRS_AVAILABLE) {
|
2013-09-30 17:28:52 +02:00
|
|
|
/*
|
|
|
|
* Get the APIC frequency.
|
|
|
|
*/
|
2013-11-06 10:00:05 -08:00
|
|
|
u64 hv_lapic_frequency;
|
|
|
|
|
2013-09-30 17:28:52 +02:00
|
|
|
rdmsrl(HV_X64_MSR_APIC_FREQUENCY, hv_lapic_frequency);
|
|
|
|
hv_lapic_frequency = div_u64(hv_lapic_frequency, HZ);
|
2019-05-09 13:54:16 +08:00
|
|
|
lapic_timer_period = hv_lapic_frequency;
|
2017-06-25 10:06:41 -07:00
|
|
|
pr_info("Hyper-V: LAPIC Timer Frequency: %#x\n",
|
2019-05-09 13:54:16 +08:00
|
|
|
lapic_timer_period);
|
2013-09-30 17:28:52 +02:00
|
|
|
}
|
2016-12-02 11:07:20 +01:00
|
|
|
|
|
|
|
register_nmi_handler(NMI_UNKNOWN, hv_nmi_unknown, NMI_FLAG_FIRST,
|
|
|
|
"hv_nmi_unknown");
|
2013-10-10 15:30:24 -07:00
|
|
|
#endif
|
2013-09-30 17:28:52 +02:00
|
|
|
|
2014-02-28 11:30:29 +08:00
|
|
|
#ifdef CONFIG_X86_IO_APIC
|
|
|
|
no_timer_check = 1;
|
|
|
|
#endif
|
|
|
|
|
2015-09-23 12:02:57 +02:00
|
|
|
#if IS_ENABLED(CONFIG_HYPERV) && defined(CONFIG_KEXEC_CORE)
|
2015-08-01 16:08:07 -07:00
|
|
|
machine_ops.shutdown = hv_machine_shutdown;
|
2015-08-01 16:08:09 -07:00
|
|
|
machine_ops.crash_shutdown = hv_machine_crash_shutdown;
|
2015-09-23 12:02:57 +02:00
|
|
|
#endif
|
2020-09-26 07:26:26 -07:00
|
|
|
if (ms_hyperv.features & HV_ACCESS_TSC_INVARIANT) {
|
2021-07-16 19:02:45 +05:30
|
|
|
/*
|
|
|
|
* Writing to synthetic MSR 0x40000118 updates/changes the
|
|
|
|
* guest visible CPUIDs. Setting bit 0 of this MSR enables
|
|
|
|
* guests to report invariant TSC feature through CPUID
|
|
|
|
* instruction, CPUID 0x800000007/EDX, bit 8. See code in
|
|
|
|
* early_init_intel() where this bit is examined. The
|
|
|
|
* setting of this MSR bit should happen before init_intel()
|
|
|
|
* is called.
|
|
|
|
*/
|
2019-10-03 17:52:00 +02:00
|
|
|
wrmsrl(HV_X64_MSR_TSC_INVARIANT_CONTROL, 0x1);
|
|
|
|
setup_force_cpu_cap(X86_FEATURE_TSC_RELIABLE);
|
|
|
|
}
|
2016-04-15 15:50:32 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Generation 2 instances don't support reading the NMI status from
|
|
|
|
* 0x61 port.
|
|
|
|
*/
|
|
|
|
if (efi_enabled(EFI_BOOT))
|
|
|
|
x86_platform.get_nmi_reason = hv_get_nmi_reason;
|
2017-01-18 16:45:02 -07:00
|
|
|
|
2018-11-04 03:48:57 +00:00
|
|
|
/*
|
|
|
|
* Hyper-V VMs have a PIT emulation quirk such that zeroing the
|
|
|
|
* counter register during PIT shutdown restarts the PIT. So it
|
|
|
|
* continues to interrupt @18.2 HZ. Setting i8253_clear_counter
|
|
|
|
* to false tells pit_shutdown() not to zero the counter so that
|
|
|
|
* the PIT really is shutdown. Generation 2 VMs don't have a PIT,
|
|
|
|
* and setting this value has no effect.
|
|
|
|
*/
|
|
|
|
i8253_clear_counter_on_shutdown = false;
|
|
|
|
|
2017-01-18 16:45:02 -07:00
|
|
|
#if IS_ENABLED(CONFIG_HYPERV)
|
|
|
|
/*
|
|
|
|
* Setup the hook to get control post apic initialization.
|
|
|
|
*/
|
|
|
|
x86_platform.apic_post_init = hyperv_init;
|
2017-08-02 18:09:19 +02:00
|
|
|
hyperv_setup_mmu_ops();
|
2017-09-08 16:15:57 -07:00
|
|
|
/* Setup the IDT for hypervisor callback */
|
2020-05-21 22:05:43 +02:00
|
|
|
alloc_intr_gate(HYPERVISOR_CALLBACK_VECTOR, asm_sysvec_hyperv_callback);
|
2018-01-24 14:23:33 +01:00
|
|
|
|
|
|
|
/* Setup the IDT for reenlightenment notifications */
|
2020-09-26 07:26:26 -07:00
|
|
|
if (ms_hyperv.features & HV_ACCESS_REENLIGHTENMENT) {
|
2018-01-24 14:23:33 +01:00
|
|
|
alloc_intr_gate(HYPERV_REENLIGHTENMENT_VECTOR,
|
2020-05-21 22:05:43 +02:00
|
|
|
asm_sysvec_hyperv_reenlightenment);
|
|
|
|
}
|
2018-01-24 14:23:33 +01:00
|
|
|
|
2018-03-04 22:17:18 -07:00
|
|
|
/* Setup the IDT for stimer0 */
|
2020-05-21 22:05:43 +02:00
|
|
|
if (ms_hyperv.misc_features & HV_STIMER_DIRECT_MODE_AVAILABLE) {
|
2018-03-04 22:17:18 -07:00
|
|
|
alloc_intr_gate(HYPERV_STIMER0_VECTOR,
|
2020-05-21 22:05:43 +02:00
|
|
|
asm_sysvec_hyperv_stimer0);
|
|
|
|
}
|
2018-10-08 16:29:34 +08:00
|
|
|
|
|
|
|
# ifdef CONFIG_SMP
|
|
|
|
smp_ops.smp_prepare_boot_cpu = hv_smp_prepare_boot_cpu;
|
2021-02-03 15:04:29 +00:00
|
|
|
if (hv_root_partition)
|
|
|
|
smp_ops.smp_prepare_cpus = hv_smp_prepare_cpus;
|
2018-10-08 16:29:34 +08:00
|
|
|
# endif
|
2019-02-27 22:54:03 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Hyper-V doesn't provide irq remapping for IO-APIC. To enable x2apic,
|
2021-03-18 15:28:01 +01:00
|
|
|
* set x2apic destination mode to physical mode when x2apic is available
|
2019-02-27 22:54:03 +08:00
|
|
|
* and Hyper-V IOMMU driver makes sure cpus assigned with IO-APIC irqs
|
|
|
|
* have 8-bit APIC id.
|
|
|
|
*/
|
|
|
|
# ifdef CONFIG_X86_X2APIC
|
|
|
|
if (x2apic_supported())
|
|
|
|
x2apic_phys = 1;
|
|
|
|
# endif
|
|
|
|
|
2019-08-14 20:32:16 +08:00
|
|
|
/* Register Hyper-V specific clocksource */
|
|
|
|
hv_init_clocksource();
|
2017-01-18 16:45:02 -07:00
|
|
|
#endif
|
2021-07-13 08:35:21 +05:30
|
|
|
/*
|
|
|
|
* TSC should be marked as unstable only after Hyper-V
|
|
|
|
* clocksource has been initialized. This ensures that the
|
|
|
|
* stability of the sched_clock is not altered.
|
|
|
|
*/
|
|
|
|
if (!(ms_hyperv.features & HV_ACCESS_TSC_INVARIANT))
|
|
|
|
mark_tsc_unstable("running on Hyper-V");
|
2022-05-09 08:44:23 -07:00
|
|
|
|
|
|
|
hardlockup_detector_disable();
|
2010-05-06 12:08:41 -07:00
|
|
|
}
|
2010-05-07 16:57:28 -07:00
|
|
|
|
x86/hyperv: Enable 15-bit APIC ID if the hypervisor supports it
When a Linux VM runs on Hyper-V, if the VM has CPUs with >255 APIC IDs,
the CPUs can't be the destination of IOAPIC interrupts, because the
IOAPIC RTE's Dest Field has only 8 bits. Currently the hackery driver
drivers/iommu/hyperv-iommu.c is used to ensure IOAPIC interrupts are
only routed to CPUs that don't have >255 APIC IDs. However, there is
an issue with kdump, because the kdump kernel can run on any CPU, and
hence IOAPIC interrupts can't work if the kdump kernel run on a CPU
with a >255 APIC ID.
The kdump issue can be fixed by the Extended Dest ID, which is introduced
recently by David Woodhouse (for IOAPIC, see the field virt_destid_8_14 in
struct IO_APIC_route_entry). Of course, the Extended Dest ID needs the
support of the underlying hypervisor. The latest Hyper-V has added the
support recently: with this commit, on such a Hyper-V host, Linux VM
does not use hyperv-iommu.c because hyperv_prepare_irq_remapping()
returns -ENODEV; instead, Linux kernel's generic support of Extended Dest
ID from David is used, meaning that Linux VM is able to support up to
32K CPUs, and IOAPIC interrupts can be routed to all the CPUs.
On an old Hyper-V host that doesn't support the Extended Dest ID, nothing
changes with this commit: Linux VM is still able to bring up the CPUs with
> 255 APIC IDs with the help of hyperv-iommu.c, but IOAPIC interrupts still
can not go to such CPUs, and the kdump kernel still can not work properly
on such CPUs.
[ tglx: Updated comment as suggested by David ]
Signed-off-by: Dexuan Cui <decui@microsoft.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Acked-by: David Woodhouse <dwmw@amazon.co.uk>
Link: https://lore.kernel.org/r/20201103011136.59108-1-decui@microsoft.com
2020-11-02 17:11:36 -08:00
|
|
|
static bool __init ms_hyperv_x2apic_available(void)
|
|
|
|
{
|
|
|
|
return x2apic_supported();
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If ms_hyperv_msi_ext_dest_id() returns true, hyperv_prepare_irq_remapping()
|
|
|
|
* returns -ENODEV and the Hyper-V IOMMU driver is not used; instead, the
|
|
|
|
* generic support of the 15-bit APIC ID is used: see __irq_msi_compose_msg().
|
|
|
|
*
|
|
|
|
* Note: for a VM on Hyper-V, the I/O-APIC is the only device which
|
|
|
|
* (logically) generates MSIs directly to the system APIC irq domain.
|
|
|
|
* There is no HPET, and PCI MSI/MSI-X interrupts are remapped by the
|
|
|
|
* pci-hyperv host bridge.
|
|
|
|
*/
|
|
|
|
static bool __init ms_hyperv_msi_ext_dest_id(void)
|
|
|
|
{
|
|
|
|
u32 eax;
|
|
|
|
|
|
|
|
eax = cpuid_eax(HYPERV_CPUID_VIRT_STACK_INTERFACE);
|
|
|
|
if (eax != HYPERV_VS_INTERFACE_EAX_SIGNATURE)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
eax = cpuid_eax(HYPERV_CPUID_VIRT_STACK_PROPERTIES);
|
|
|
|
return eax & HYPERV_VS_PROPERTIES_EAX_EXTENDED_IOAPIC_RTE;
|
|
|
|
}
|
|
|
|
|
2017-11-09 14:27:36 +01:00
|
|
|
const __initconst struct hypervisor_x86 x86_hyper_ms_hyperv = {
|
2017-06-25 10:06:41 -07:00
|
|
|
.name = "Microsoft Hyper-V",
|
2010-05-07 16:57:28 -07:00
|
|
|
.detect = ms_hyperv_platform,
|
2017-11-09 14:27:36 +01:00
|
|
|
.type = X86_HYPER_MS_HYPERV,
|
x86/hyperv: Enable 15-bit APIC ID if the hypervisor supports it
When a Linux VM runs on Hyper-V, if the VM has CPUs with >255 APIC IDs,
the CPUs can't be the destination of IOAPIC interrupts, because the
IOAPIC RTE's Dest Field has only 8 bits. Currently the hackery driver
drivers/iommu/hyperv-iommu.c is used to ensure IOAPIC interrupts are
only routed to CPUs that don't have >255 APIC IDs. However, there is
an issue with kdump, because the kdump kernel can run on any CPU, and
hence IOAPIC interrupts can't work if the kdump kernel run on a CPU
with a >255 APIC ID.
The kdump issue can be fixed by the Extended Dest ID, which is introduced
recently by David Woodhouse (for IOAPIC, see the field virt_destid_8_14 in
struct IO_APIC_route_entry). Of course, the Extended Dest ID needs the
support of the underlying hypervisor. The latest Hyper-V has added the
support recently: with this commit, on such a Hyper-V host, Linux VM
does not use hyperv-iommu.c because hyperv_prepare_irq_remapping()
returns -ENODEV; instead, Linux kernel's generic support of Extended Dest
ID from David is used, meaning that Linux VM is able to support up to
32K CPUs, and IOAPIC interrupts can be routed to all the CPUs.
On an old Hyper-V host that doesn't support the Extended Dest ID, nothing
changes with this commit: Linux VM is still able to bring up the CPUs with
> 255 APIC IDs with the help of hyperv-iommu.c, but IOAPIC interrupts still
can not go to such CPUs, and the kdump kernel still can not work properly
on such CPUs.
[ tglx: Updated comment as suggested by David ]
Signed-off-by: Dexuan Cui <decui@microsoft.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Acked-by: David Woodhouse <dwmw@amazon.co.uk>
Link: https://lore.kernel.org/r/20201103011136.59108-1-decui@microsoft.com
2020-11-02 17:11:36 -08:00
|
|
|
.init.x2apic_available = ms_hyperv_x2apic_available,
|
|
|
|
.init.msi_ext_dest_id = ms_hyperv_msi_ext_dest_id,
|
2017-11-09 14:27:35 +01:00
|
|
|
.init.init_platform = ms_hyperv_init_platform,
|
2010-05-07 16:57:28 -07:00
|
|
|
};
|