1 // SPDX-License-Identifier: GPL-2.0
4 * Core routines for interacting with Microsoft's Hyper-V hypervisor,
5 * including hypervisor initialization.
7 * Copyright (C) 2021, Microsoft, Inc.
9 * Author : Michael Kelley <mikelley@microsoft.com>
12 #include <linux/types.h>
13 #include <linux/acpi.h>
14 #include <linux/export.h>
15 #include <linux/errno.h>
16 #include <linux/version.h>
17 #include <linux/cpuhotplug.h>
18 #include <asm/mshyperv.h>
20 static bool hyperv_initialized
;
22 int hv_get_hypervisor_version(union hv_hypervisor_version_info
*info
)
24 hv_get_vpreg_128(HV_REGISTER_HYPERVISOR_VERSION
,
25 (struct hv_get_vp_registers_output
*)info
);
30 static int __init
hyperv_init(void)
32 struct hv_get_vp_registers_output result
;
37 * Allow for a kernel built with CONFIG_HYPERV to be running in
38 * a non-Hyper-V environment, including on DT instead of ACPI.
39 * In such cases, do nothing and return success.
44 if (strncmp((char *)&acpi_gbl_FADT
.hypervisor_id
, "MsHyperV", 8))
47 /* Setup the guest ID */
48 guest_id
= hv_generate_guest_id(LINUX_VERSION_CODE
);
49 hv_set_vpreg(HV_REGISTER_GUEST_OS_ID
, guest_id
);
51 /* Get the features and hints from Hyper-V */
52 hv_get_vpreg_128(HV_REGISTER_FEATURES
, &result
);
53 ms_hyperv
.features
= result
.as32
.a
;
54 ms_hyperv
.priv_high
= result
.as32
.b
;
55 ms_hyperv
.misc_features
= result
.as32
.c
;
57 hv_get_vpreg_128(HV_REGISTER_ENLIGHTENMENTS
, &result
);
58 ms_hyperv
.hints
= result
.as32
.a
;
60 pr_info("Hyper-V: privilege flags low 0x%x, high 0x%x, hints 0x%x, misc 0x%x\n",
61 ms_hyperv
.features
, ms_hyperv
.priv_high
, ms_hyperv
.hints
,
62 ms_hyperv
.misc_features
);
64 ret
= hv_common_init();
68 ret
= cpuhp_setup_state(CPUHP_AP_HYPERV_ONLINE
, "arm64/hyperv_init:online",
69 hv_common_cpu_init
, hv_common_cpu_die
);
75 ms_hyperv_late_init();
77 hyperv_initialized
= true;
81 early_initcall(hyperv_init
);
83 bool hv_is_hyperv_initialized(void)
85 return hyperv_initialized
;
87 EXPORT_SYMBOL_GPL(hv_is_hyperv_initialized
);