2021-08-04 08:52:37 -07:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Core routines for interacting with Microsoft's Hyper-V hypervisor,
|
|
|
|
* including hypervisor initialization.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2021, Microsoft, Inc.
|
|
|
|
*
|
|
|
|
* Author : Michael Kelley <mikelley@microsoft.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/acpi.h>
|
|
|
|
#include <linux/export.h>
|
|
|
|
#include <linux/errno.h>
|
|
|
|
#include <linux/version.h>
|
|
|
|
#include <linux/cpuhotplug.h>
|
|
|
|
#include <asm/mshyperv.h>
|
|
|
|
|
|
|
|
static bool hyperv_initialized;
|
|
|
|
|
2024-03-07 15:03:38 -08:00
|
|
|
int hv_get_hypervisor_version(union hv_hypervisor_version_info *info)
|
|
|
|
{
|
|
|
|
hv_get_vpreg_128(HV_REGISTER_HYPERVISOR_VERSION,
|
|
|
|
(struct hv_get_vp_registers_output *)info);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2025-03-14 12:28:52 -07:00
|
|
|
EXPORT_SYMBOL_GPL(hv_get_hypervisor_version);
|
2024-03-07 15:03:38 -08:00
|
|
|
|
2025-04-28 14:07:33 -07:00
|
|
|
#ifdef CONFIG_ACPI
|
|
|
|
|
|
|
|
static bool __init hyperv_detect_via_acpi(void)
|
|
|
|
{
|
|
|
|
if (acpi_disabled)
|
|
|
|
return false;
|
|
|
|
/*
|
|
|
|
* Hypervisor ID is only available in ACPI v6+, and the
|
|
|
|
* structure layout was extended in v6 to accommodate that
|
|
|
|
* new field.
|
|
|
|
*
|
|
|
|
* At the very minimum, this check makes sure not to read
|
|
|
|
* past the FADT structure.
|
|
|
|
*
|
|
|
|
* It is also needed to catch running in some unknown
|
|
|
|
* non-Hyper-V environment that has ACPI 5.x or less.
|
|
|
|
* In such a case, it can't be Hyper-V.
|
|
|
|
*/
|
|
|
|
if (acpi_gbl_FADT.header.revision < 6)
|
|
|
|
return false;
|
|
|
|
return strncmp((char *)&acpi_gbl_FADT.hypervisor_id, "MsHyperV", 8) == 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
static bool __init hyperv_detect_via_acpi(void)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static bool __init hyperv_detect_via_smccc(void)
|
|
|
|
{
|
|
|
|
uuid_t hyperv_uuid = UUID_INIT(
|
|
|
|
0x58ba324d, 0x6447, 0x24cd,
|
|
|
|
0x75, 0x6c, 0xef, 0x8e,
|
|
|
|
0x24, 0x70, 0x59, 0x16);
|
|
|
|
|
|
|
|
return arm_smccc_hypervisor_has_uuid(&hyperv_uuid);
|
|
|
|
}
|
|
|
|
|
2021-08-04 08:52:37 -07:00
|
|
|
static int __init hyperv_init(void)
|
|
|
|
{
|
|
|
|
struct hv_get_vp_registers_output result;
|
|
|
|
u64 guest_id;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Allow for a kernel built with CONFIG_HYPERV to be running in
|
2025-04-28 14:07:33 -07:00
|
|
|
* a non-Hyper-V environment.
|
|
|
|
*
|
2021-08-04 08:52:37 -07:00
|
|
|
* In such cases, do nothing and return success.
|
|
|
|
*/
|
2025-04-28 14:07:33 -07:00
|
|
|
if (!hyperv_detect_via_acpi() && !hyperv_detect_via_smccc())
|
2021-08-04 08:52:37 -07:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* Setup the guest ID */
|
2022-09-28 14:40:46 +08:00
|
|
|
guest_id = hv_generate_guest_id(LINUX_VERSION_CODE);
|
2024-03-12 16:21:27 -07:00
|
|
|
hv_set_vpreg(HV_REGISTER_GUEST_OS_ID, guest_id);
|
2021-08-04 08:52:37 -07:00
|
|
|
|
|
|
|
/* Get the features and hints from Hyper-V */
|
2024-11-25 15:24:43 -08:00
|
|
|
hv_get_vpreg_128(HV_REGISTER_PRIVILEGES_AND_FEATURES_INFO, &result);
|
2021-08-04 08:52:37 -07:00
|
|
|
ms_hyperv.features = result.as32.a;
|
|
|
|
ms_hyperv.priv_high = result.as32.b;
|
|
|
|
ms_hyperv.misc_features = result.as32.c;
|
|
|
|
|
2024-11-25 15:24:43 -08:00
|
|
|
hv_get_vpreg_128(HV_REGISTER_FEATURES_INFO, &result);
|
2021-08-04 08:52:37 -07:00
|
|
|
ms_hyperv.hints = result.as32.a;
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
2025-02-21 11:56:34 -08:00
|
|
|
hv_identify_partition_type();
|
|
|
|
|
2021-08-04 08:52:37 -07:00
|
|
|
ret = hv_common_init();
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2023-05-23 10:14:22 -07:00
|
|
|
ret = cpuhp_setup_state(CPUHP_AP_HYPERV_ONLINE, "arm64/hyperv_init:online",
|
2021-08-04 08:52:37 -07:00
|
|
|
hv_common_cpu_init, hv_common_cpu_die);
|
|
|
|
if (ret < 0) {
|
|
|
|
hv_common_free();
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2025-02-07 11:03:21 -08:00
|
|
|
if (ms_hyperv.priv_high & HV_ACCESS_PARTITION_ID)
|
|
|
|
hv_get_partition_id();
|
2025-04-28 14:07:36 -07:00
|
|
|
ms_hyperv.vtl = get_vtl();
|
2025-04-28 14:07:37 -07:00
|
|
|
if (ms_hyperv.vtl > 0) /* non default VTL */
|
|
|
|
pr_info("Linux runs in Hyper-V Virtual Trust Level %d\n", ms_hyperv.vtl);
|
2025-02-07 11:03:21 -08:00
|
|
|
|
2024-03-18 08:54:08 -07:00
|
|
|
ms_hyperv_late_init();
|
|
|
|
|
2021-08-04 08:52:37 -07:00
|
|
|
hyperv_initialized = true;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
early_initcall(hyperv_init);
|
|
|
|
|
|
|
|
bool hv_is_hyperv_initialized(void)
|
|
|
|
{
|
|
|
|
return hyperv_initialized;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(hv_is_hyperv_initialized);
|