blob: 5f10f7f2098db503fca50630880f1d721106ec48 [file] [log] [blame]
Masahiro Yamada687a3e42019-05-14 15:41:45 -07001/* SPDX-License-Identifier: GPL-2.0 */
Vitaly Kuznetsov5a485802018-03-20 15:02:05 +01002
3/*
4 * This file contains definitions from Hyper-V Hypervisor Top-Level Functional
5 * Specification (TLFS):
6 * https://docs.microsoft.com/en-us/virtualization/hyper-v-on-windows/reference/tlfs
7 */
8
9#ifndef _ASM_X86_HYPERV_TLFS_H
10#define _ASM_X86_HYPERV_TLFS_H
Gleb Natapov1d5103c2010-01-17 15:51:21 +020011
12#include <linux/types.h>
Lan Tianyucc4edae42018-12-06 21:21:05 +080013#include <asm/page.h>
Gleb Natapov1d5103c2010-01-17 15:51:21 +020014
15/*
Maya Nakamurafcd3f622019-07-12 08:14:47 +000016 * While not explicitly listed in the TLFS, Hyper-V always runs with a page size
17 * of 4096. These definitions are used when communicating with Hyper-V using
18 * guest physical pages and guest physical page addresses, since the guest page
19 * size may not be 4096 on all architectures.
20 */
21#define HV_HYP_PAGE_SHIFT 12
22#define HV_HYP_PAGE_SIZE BIT(HV_HYP_PAGE_SHIFT)
23#define HV_HYP_PAGE_MASK (~(HV_HYP_PAGE_SIZE - 1))
24
25/*
Gleb Natapov1d5103c2010-01-17 15:51:21 +020026 * The below CPUID leaves are present if VersionAndFeatures.HypervisorPresent
27 * is set by CPUID(HvCpuIdFunctionVersionAndFeatures).
28 */
29#define HYPERV_CPUID_VENDOR_AND_MAX_FUNCTIONS 0x40000000
30#define HYPERV_CPUID_INTERFACE 0x40000001
31#define HYPERV_CPUID_VERSION 0x40000002
32#define HYPERV_CPUID_FEATURES 0x40000003
33#define HYPERV_CPUID_ENLIGHTMENT_INFO 0x40000004
34#define HYPERV_CPUID_IMPLEMENT_LIMITS 0x40000005
Vitaly Kuznetsov5431390b2018-03-20 15:02:10 +010035#define HYPERV_CPUID_NESTED_FEATURES 0x4000000A
Gleb Natapov1d5103c2010-01-17 15:51:21 +020036
Ky Srinivasana2a47c62010-05-06 12:08:41 -070037#define HYPERV_HYPERVISOR_PRESENT_BIT 0x80000000
38#define HYPERV_CPUID_MIN 0x40000005
H. Peter Anvine08cae42010-05-07 16:57:28 -070039#define HYPERV_CPUID_MAX 0x4000ffff
Ky Srinivasana2a47c62010-05-06 12:08:41 -070040
Gleb Natapov1d5103c2010-01-17 15:51:21 +020041/*
42 * Feature identification. EAX indicates which features are available
43 * to the partition based upon the current partition privileges.
Vitaly Kuznetsova4987de2018-12-10 18:21:53 +010044 * These are HYPERV_CPUID_FEATURES.EAX bits.
Gleb Natapov1d5103c2010-01-17 15:51:21 +020045 */
46
47/* VP Runtime (HV_X64_MSR_VP_RUNTIME) available */
Vitaly Kuznetsova4987de2018-12-10 18:21:53 +010048#define HV_X64_MSR_VP_RUNTIME_AVAILABLE BIT(0)
Gleb Natapov1d5103c2010-01-17 15:51:21 +020049/* Partition Reference Counter (HV_X64_MSR_TIME_REF_COUNT) available*/
Vitaly Kuznetsova4987de2018-12-10 18:21:53 +010050#define HV_MSR_TIME_REF_COUNT_AVAILABLE BIT(1)
Gleb Natapov1d5103c2010-01-17 15:51:21 +020051/*
52 * Basic SynIC MSRs (HV_X64_MSR_SCONTROL through HV_X64_MSR_EOM
53 * and HV_X64_MSR_SINT0 through HV_X64_MSR_SINT15) available
54 */
Vitaly Kuznetsova4987de2018-12-10 18:21:53 +010055#define HV_X64_MSR_SYNIC_AVAILABLE BIT(2)
Gleb Natapov1d5103c2010-01-17 15:51:21 +020056/*
57 * Synthetic Timer MSRs (HV_X64_MSR_STIMER0_CONFIG through
58 * HV_X64_MSR_STIMER3_COUNT) available
59 */
Vitaly Kuznetsova4987de2018-12-10 18:21:53 +010060#define HV_MSR_SYNTIMER_AVAILABLE BIT(3)
Gleb Natapov1d5103c2010-01-17 15:51:21 +020061/*
62 * APIC access MSRs (HV_X64_MSR_EOI, HV_X64_MSR_ICR and HV_X64_MSR_TPR)
63 * are available
64 */
Vitaly Kuznetsova4987de2018-12-10 18:21:53 +010065#define HV_X64_MSR_APIC_ACCESS_AVAILABLE BIT(4)
Gleb Natapov1d5103c2010-01-17 15:51:21 +020066/* Hypercall MSRs (HV_X64_MSR_GUEST_OS_ID and HV_X64_MSR_HYPERCALL) available*/
Vitaly Kuznetsova4987de2018-12-10 18:21:53 +010067#define HV_X64_MSR_HYPERCALL_AVAILABLE BIT(5)
Gleb Natapov1d5103c2010-01-17 15:51:21 +020068/* Access virtual processor index MSR (HV_X64_MSR_VP_INDEX) available*/
Vitaly Kuznetsova4987de2018-12-10 18:21:53 +010069#define HV_X64_MSR_VP_INDEX_AVAILABLE BIT(6)
Gleb Natapov1d5103c2010-01-17 15:51:21 +020070/* Virtual system reset MSR (HV_X64_MSR_RESET) is available*/
Vitaly Kuznetsova4987de2018-12-10 18:21:53 +010071#define HV_X64_MSR_RESET_AVAILABLE BIT(7)
72/*
73 * Access statistics pages MSRs (HV_X64_MSR_STATS_PARTITION_RETAIL_PAGE,
74 * HV_X64_MSR_STATS_PARTITION_INTERNAL_PAGE, HV_X64_MSR_STATS_VP_RETAIL_PAGE,
75 * HV_X64_MSR_STATS_VP_INTERNAL_PAGE) available
76 */
77#define HV_X64_MSR_STAT_PAGES_AVAILABLE BIT(8)
78/* Partition reference TSC MSR is available */
79#define HV_MSR_REFERENCE_TSC_AVAILABLE BIT(9)
80/* Partition Guest IDLE MSR is available */
81#define HV_X64_MSR_GUEST_IDLE_AVAILABLE BIT(10)
82/*
83 * There is a single feature flag that signifies if the partition has access
84 * to MSRs with local APIC and TSC frequencies.
85 */
86#define HV_X64_ACCESS_FREQUENCY_MSRS BIT(11)
87/* AccessReenlightenmentControls privilege */
88#define HV_X64_ACCESS_REENLIGHTENMENT BIT(13)
Andrea Parridce7cd62019-10-03 17:52:00 +020089/* AccessTscInvariantControls privilege */
90#define HV_X64_ACCESS_TSC_INVARIANT BIT(15)
Michael Kelley248e7422018-03-04 22:17:18 -070091
Gleb Natapov1d5103c2010-01-17 15:51:21 +020092/*
Vitaly Kuznetsova4987de2018-12-10 18:21:53 +010093 * Feature identification: indicates which flags were specified at partition
94 * creation. The format is the same as the partition creation flag structure
95 * defined in section Partition Creation Flags.
96 * These are HYPERV_CPUID_FEATURES.EBX bits.
Gleb Natapov1d5103c2010-01-17 15:51:21 +020097 */
Vitaly Kuznetsova4987de2018-12-10 18:21:53 +010098#define HV_X64_CREATE_PARTITIONS BIT(0)
99#define HV_X64_ACCESS_PARTITION_ID BIT(1)
100#define HV_X64_ACCESS_MEMORY_POOL BIT(2)
101#define HV_X64_ADJUST_MESSAGE_BUFFERS BIT(3)
102#define HV_X64_POST_MESSAGES BIT(4)
103#define HV_X64_SIGNAL_EVENTS BIT(5)
104#define HV_X64_CREATE_PORT BIT(6)
105#define HV_X64_CONNECT_PORT BIT(7)
106#define HV_X64_ACCESS_STATS BIT(8)
107#define HV_X64_DEBUGGING BIT(11)
108#define HV_X64_CPU_POWER_MANAGEMENT BIT(12)
Gleb Natapov1d5103c2010-01-17 15:51:21 +0200109
110/*
111 * Feature identification. EDX indicates which miscellaneous features
112 * are available to the partition.
Vitaly Kuznetsova4987de2018-12-10 18:21:53 +0100113 * These are HYPERV_CPUID_FEATURES.EDX bits.
Gleb Natapov1d5103c2010-01-17 15:51:21 +0200114 */
115/* The MWAIT instruction is available (per section MONITOR / MWAIT) */
Vitaly Kuznetsova4987de2018-12-10 18:21:53 +0100116#define HV_X64_MWAIT_AVAILABLE BIT(0)
Gleb Natapov1d5103c2010-01-17 15:51:21 +0200117/* Guest debugging support is available */
Vitaly Kuznetsova4987de2018-12-10 18:21:53 +0100118#define HV_X64_GUEST_DEBUGGING_AVAILABLE BIT(1)
Gleb Natapov1d5103c2010-01-17 15:51:21 +0200119/* Performance Monitor support is available*/
Vitaly Kuznetsova4987de2018-12-10 18:21:53 +0100120#define HV_X64_PERF_MONITOR_AVAILABLE BIT(2)
Gleb Natapov1d5103c2010-01-17 15:51:21 +0200121/* Support for physical CPU dynamic partitioning events is available*/
Vitaly Kuznetsova4987de2018-12-10 18:21:53 +0100122#define HV_X64_CPU_DYNAMIC_PARTITIONING_AVAILABLE BIT(3)
Gleb Natapov1d5103c2010-01-17 15:51:21 +0200123/*
124 * Support for passing hypercall input parameter block via XMM
125 * registers is available
126 */
Vitaly Kuznetsova4987de2018-12-10 18:21:53 +0100127#define HV_X64_HYPERCALL_PARAMS_XMM_AVAILABLE BIT(4)
Gleb Natapov1d5103c2010-01-17 15:51:21 +0200128/* Support for a virtual guest idle state is available */
Vitaly Kuznetsova4987de2018-12-10 18:21:53 +0100129#define HV_X64_GUEST_IDLE_STATE_AVAILABLE BIT(5)
130/* Frequency MSRs available */
131#define HV_FEATURE_FREQUENCY_MSRS_AVAILABLE BIT(8)
132/* Crash MSR available */
133#define HV_FEATURE_GUEST_CRASH_MSR_AVAILABLE BIT(10)
134/* stimer Direct Mode is available */
135#define HV_STIMER_DIRECT_MODE_AVAILABLE BIT(19)
Gleb Natapov1d5103c2010-01-17 15:51:21 +0200136
137/*
138 * Implementation recommendations. Indicates which behaviors the hypervisor
139 * recommends the OS implement for optimal performance.
Vitaly Kuznetsova4987de2018-12-10 18:21:53 +0100140 * These are HYPERV_CPUID_ENLIGHTMENT_INFO.EAX bits.
Gleb Natapov1d5103c2010-01-17 15:51:21 +0200141 */
Vitaly Kuznetsova4987de2018-12-10 18:21:53 +0100142/*
143 * Recommend using hypercall for address space switches rather
144 * than MOV to CR3 instruction
145 */
146#define HV_X64_AS_SWITCH_RECOMMENDED BIT(0)
Gleb Natapov1d5103c2010-01-17 15:51:21 +0200147/* Recommend using hypercall for local TLB flushes rather
148 * than INVLPG or MOV to CR3 instructions */
Vitaly Kuznetsova4987de2018-12-10 18:21:53 +0100149#define HV_X64_LOCAL_TLB_FLUSH_RECOMMENDED BIT(1)
Gleb Natapov1d5103c2010-01-17 15:51:21 +0200150/*
151 * Recommend using hypercall for remote TLB flushes rather
152 * than inter-processor interrupts
153 */
Vitaly Kuznetsova4987de2018-12-10 18:21:53 +0100154#define HV_X64_REMOTE_TLB_FLUSH_RECOMMENDED BIT(2)
Gleb Natapov1d5103c2010-01-17 15:51:21 +0200155/*
156 * Recommend using MSRs for accessing APIC registers
157 * EOI, ICR and TPR rather than their memory-mapped counterparts
158 */
Vitaly Kuznetsova4987de2018-12-10 18:21:53 +0100159#define HV_X64_APIC_ACCESS_RECOMMENDED BIT(3)
Gleb Natapov1d5103c2010-01-17 15:51:21 +0200160/* Recommend using the hypervisor-provided MSR to initiate a system RESET */
Vitaly Kuznetsova4987de2018-12-10 18:21:53 +0100161#define HV_X64_SYSTEM_RESET_RECOMMENDED BIT(4)
Gleb Natapov1d5103c2010-01-17 15:51:21 +0200162/*
163 * Recommend using relaxed timing for this partition. If used,
164 * the VM should disable any watchdog timeouts that rely on the
165 * timely delivery of external interrupts
166 */
Vitaly Kuznetsova4987de2018-12-10 18:21:53 +0100167#define HV_X64_RELAXED_TIMING_RECOMMENDED BIT(5)
Gleb Natapov1d5103c2010-01-17 15:51:21 +0200168
K. Y. Srinivasand058fa72017-01-19 11:51:48 -0700169/*
Michael Kelley7dc9b6b2018-06-05 13:37:54 -0700170 * Recommend not using Auto End-Of-Interrupt feature
K. Y. Srinivasan6c248aa2017-03-14 18:01:39 -0700171 */
Vitaly Kuznetsova4987de2018-12-10 18:21:53 +0100172#define HV_DEPRECATING_AEOI_RECOMMENDED BIT(9)
K. Y. Srinivasan6c248aa2017-03-14 18:01:39 -0700173
K. Y. Srinivasan68bb7bf2018-05-16 14:53:31 -0700174/*
175 * Recommend using cluster IPI hypercalls.
176 */
Vitaly Kuznetsova4987de2018-12-10 18:21:53 +0100177#define HV_X64_CLUSTER_IPI_RECOMMENDED BIT(10)
K. Y. Srinivasan68bb7bf2018-05-16 14:53:31 -0700178
Vitaly Kuznetsov628f54c2017-08-02 18:09:20 +0200179/* Recommend using the newer ExProcessorMasks interface */
Vitaly Kuznetsova4987de2018-12-10 18:21:53 +0100180#define HV_X64_EX_PROCESSOR_MASKS_RECOMMENDED BIT(11)
Vitaly Kuznetsov628f54c2017-08-02 18:09:20 +0200181
Vitaly Kuznetsova46d15c2018-03-20 15:02:08 +0100182/* Recommend using enlightened VMCS */
Vitaly Kuznetsova4987de2018-12-10 18:21:53 +0100183#define HV_X64_ENLIGHTENED_VMCS_RECOMMENDED BIT(14)
Vitaly Kuznetsova46d15c2018-03-20 15:02:08 +0100184
Vitaly Kuznetsovb2d8b162019-09-16 18:22:57 +0200185/*
186 * Virtual processor will never share a physical core with another virtual
187 * processor, except for virtual processors that are reported as sibling SMT
188 * threads.
189 */
190#define HV_X64_NO_NONARCH_CORESHARING BIT(18)
191
Vitaly Kuznetsova4987de2018-12-10 18:21:53 +0100192/* Nested features. These are HYPERV_CPUID_NESTED_FEATURES.EAX bits. */
Vitaly Kuznetsov6f6a6572019-08-22 22:30:21 +0800193#define HV_X64_NESTED_DIRECT_FLUSH BIT(17)
Vitaly Kuznetsova4987de2018-12-10 18:21:53 +0100194#define HV_X64_NESTED_GUEST_MAPPING_FLUSH BIT(18)
195#define HV_X64_NESTED_MSR_BITMAP BIT(19)
196
197/* Hyper-V specific model specific registers (MSRs) */
K. Y. Srinivasand058fa72017-01-19 11:51:48 -0700198
Gleb Natapov1d5103c2010-01-17 15:51:21 +0200199/* MSR used to identify the guest OS. */
200#define HV_X64_MSR_GUEST_OS_ID 0x40000000
201
202/* MSR used to setup pages used to communicate with the hypervisor. */
203#define HV_X64_MSR_HYPERCALL 0x40000001
204
205/* MSR used to provide vcpu index */
206#define HV_X64_MSR_VP_INDEX 0x40000002
207
Andrey Smetanine516ceb2015-09-16 12:29:48 +0300208/* MSR used to reset the guest OS. */
209#define HV_X64_MSR_RESET 0x40000003
210
Andrey Smetanin9eec50b2015-09-16 12:29:50 +0300211/* MSR used to provide vcpu runtime in 100ns units */
212#define HV_X64_MSR_VP_RUNTIME 0x40000010
213
Ky Srinivasana2a47c62010-05-06 12:08:41 -0700214/* MSR used to read the per-partition time reference counter */
215#define HV_X64_MSR_TIME_REF_COUNT 0x40000020
216
Vitaly Kuznetsova4987de2018-12-10 18:21:53 +0100217/* A partition's reference time stamp counter (TSC) page */
218#define HV_X64_MSR_REFERENCE_TSC 0x40000021
219
K. Y. Srinivasan9e7827b2013-09-30 17:28:52 +0200220/* MSR used to retrieve the TSC frequency */
221#define HV_X64_MSR_TSC_FREQUENCY 0x40000022
222
223/* MSR used to retrieve the local APIC timer frequency */
224#define HV_X64_MSR_APIC_FREQUENCY 0x40000023
225
Gleb Natapov1d5103c2010-01-17 15:51:21 +0200226/* Define the virtual APIC registers */
227#define HV_X64_MSR_EOI 0x40000070
228#define HV_X64_MSR_ICR 0x40000071
229#define HV_X64_MSR_TPR 0x40000072
Ladi Prosekd4abc572018-03-20 15:02:07 +0100230#define HV_X64_MSR_VP_ASSIST_PAGE 0x40000073
Gleb Natapov1d5103c2010-01-17 15:51:21 +0200231
232/* Define synthetic interrupt controller model specific registers. */
233#define HV_X64_MSR_SCONTROL 0x40000080
234#define HV_X64_MSR_SVERSION 0x40000081
235#define HV_X64_MSR_SIEFP 0x40000082
236#define HV_X64_MSR_SIMP 0x40000083
237#define HV_X64_MSR_EOM 0x40000084
238#define HV_X64_MSR_SINT0 0x40000090
239#define HV_X64_MSR_SINT1 0x40000091
240#define HV_X64_MSR_SINT2 0x40000092
241#define HV_X64_MSR_SINT3 0x40000093
242#define HV_X64_MSR_SINT4 0x40000094
243#define HV_X64_MSR_SINT5 0x40000095
244#define HV_X64_MSR_SINT6 0x40000096
245#define HV_X64_MSR_SINT7 0x40000097
246#define HV_X64_MSR_SINT8 0x40000098
247#define HV_X64_MSR_SINT9 0x40000099
248#define HV_X64_MSR_SINT10 0x4000009A
249#define HV_X64_MSR_SINT11 0x4000009B
250#define HV_X64_MSR_SINT12 0x4000009C
251#define HV_X64_MSR_SINT13 0x4000009D
252#define HV_X64_MSR_SINT14 0x4000009E
253#define HV_X64_MSR_SINT15 0x4000009F
254
K. Y. Srinivasan4061ed92015-01-09 23:54:32 -0800255/*
256 * Synthetic Timer MSRs. Four timers per vcpu.
257 */
258#define HV_X64_MSR_STIMER0_CONFIG 0x400000B0
259#define HV_X64_MSR_STIMER0_COUNT 0x400000B1
260#define HV_X64_MSR_STIMER1_CONFIG 0x400000B2
261#define HV_X64_MSR_STIMER1_COUNT 0x400000B3
262#define HV_X64_MSR_STIMER2_CONFIG 0x400000B4
263#define HV_X64_MSR_STIMER2_COUNT 0x400000B5
264#define HV_X64_MSR_STIMER3_CONFIG 0x400000B6
265#define HV_X64_MSR_STIMER3_COUNT 0x400000B7
Gleb Natapov1d5103c2010-01-17 15:51:21 +0200266
Yi Sunf726c462018-09-27 14:01:43 +0800267/* Hyper-V guest idle MSR */
268#define HV_X64_MSR_GUEST_IDLE 0x400000F0
269
Andrey Smetanina88464a2015-07-02 19:07:46 +0300270/* Hyper-V guest crash notification MSR's */
271#define HV_X64_MSR_CRASH_P0 0x40000100
272#define HV_X64_MSR_CRASH_P1 0x40000101
273#define HV_X64_MSR_CRASH_P2 0x40000102
274#define HV_X64_MSR_CRASH_P3 0x40000103
275#define HV_X64_MSR_CRASH_P4 0x40000104
276#define HV_X64_MSR_CRASH_CTL 0x40000105
Vitaly Kuznetsova4987de2018-12-10 18:21:53 +0100277
278/* TSC emulation after migration */
279#define HV_X64_MSR_REENLIGHTENMENT_CONTROL 0x40000106
280#define HV_X64_MSR_TSC_EMULATION_CONTROL 0x40000107
281#define HV_X64_MSR_TSC_EMULATION_STATUS 0x40000108
Andrey Smetanina88464a2015-07-02 19:07:46 +0300282
Andrea Parridce7cd62019-10-03 17:52:00 +0200283/* TSC invariant control */
284#define HV_X64_MSR_TSC_INVARIANT_CONTROL 0x40000118
285
Vitaly Kuznetsov415bd1c2018-03-20 15:02:06 +0100286/*
287 * Declare the MSR used to setup pages used to communicate with the hypervisor.
288 */
289union hv_x64_msr_hypercall_contents {
290 u64 as_uint64;
291 struct {
292 u64 enable:1;
293 u64 reserved:11;
294 u64 guest_physical_address:52;
Vitaly Kuznetsovec084492018-12-12 18:57:01 +0100295 } __packed;
Vitaly Kuznetsov415bd1c2018-03-20 15:02:06 +0100296};
297
298/*
299 * TSC page layout.
300 */
301struct ms_hyperv_tsc_page {
302 volatile u32 tsc_sequence;
303 u32 reserved1;
304 volatile u64 tsc_scale;
305 volatile s64 tsc_offset;
306 u64 reserved2[509];
Vitaly Kuznetsovec084492018-12-12 18:57:01 +0100307} __packed;
Vitaly Kuznetsov415bd1c2018-03-20 15:02:06 +0100308
309/*
310 * The guest OS needs to register the guest ID with the hypervisor.
311 * The guest ID is a 64 bit entity and the structure of this ID is
312 * specified in the Hyper-V specification:
313 *
314 * msdn.microsoft.com/en-us/library/windows/hardware/ff542653%28v=vs.85%29.aspx
315 *
316 * While the current guideline does not specify how Linux guest ID(s)
317 * need to be generated, our plan is to publish the guidelines for
318 * Linux and other guest operating systems that currently are hosted
319 * on Hyper-V. The implementation here conforms to this yet
320 * unpublished guidelines.
321 *
322 *
323 * Bit(s)
324 * 63 - Indicates if the OS is Open Source or not; 1 is Open Source
325 * 62:56 - Os Type; Linux is 0x100
326 * 55:48 - Distro specific identification
327 * 47:16 - Linux kernel version number
328 * 15:0 - Distro specific identification
329 *
330 *
331 */
332
333#define HV_LINUX_VENDOR_ID 0x8100
334
Vitaly Kuznetsov93286262018-01-24 14:23:33 +0100335struct hv_reenlightenment_control {
KarimAllah Ahmed89426642018-02-20 08:39:51 +0100336 __u64 vector:8;
337 __u64 reserved1:8;
338 __u64 enabled:1;
339 __u64 reserved2:15;
340 __u64 target_vp:32;
Vitaly Kuznetsovec084492018-12-12 18:57:01 +0100341} __packed;
Vitaly Kuznetsov93286262018-01-24 14:23:33 +0100342
Vitaly Kuznetsov93286262018-01-24 14:23:33 +0100343struct hv_tsc_emulation_control {
KarimAllah Ahmed89426642018-02-20 08:39:51 +0100344 __u64 enabled:1;
345 __u64 reserved:63;
Vitaly Kuznetsovec084492018-12-12 18:57:01 +0100346} __packed;
Vitaly Kuznetsov93286262018-01-24 14:23:33 +0100347
348struct hv_tsc_emulation_status {
KarimAllah Ahmed89426642018-02-20 08:39:51 +0100349 __u64 inprogress:1;
350 __u64 reserved:63;
Vitaly Kuznetsovec084492018-12-12 18:57:01 +0100351} __packed;
Vitaly Kuznetsov93286262018-01-24 14:23:33 +0100352
Gleb Natapov1d5103c2010-01-17 15:51:21 +0200353#define HV_X64_MSR_HYPERCALL_ENABLE 0x00000001
354#define HV_X64_MSR_HYPERCALL_PAGE_ADDRESS_SHIFT 12
355#define HV_X64_MSR_HYPERCALL_PAGE_ADDRESS_MASK \
356 (~((1ull << HV_X64_MSR_HYPERCALL_PAGE_ADDRESS_SHIFT) - 1))
357
Vitaly Kuznetsova4987de2018-12-10 18:21:53 +0100358/*
359 * Crash notification (HV_X64_MSR_CRASH_CTL) flags.
360 */
361#define HV_CRASH_CTL_CRASH_NOTIFY_MSG BIT_ULL(62)
362#define HV_CRASH_CTL_CRASH_NOTIFY BIT_ULL(63)
363#define HV_X64_MSR_CRASH_PARAMS \
364 (1 + (HV_X64_MSR_CRASH_P4 - HV_X64_MSR_CRASH_P0))
365
K. Y. Srinivasan68bb7bf2018-05-16 14:53:31 -0700366#define HV_IPI_LOW_VECTOR 0x10
367#define HV_IPI_HIGH_VECTOR 0xff
368
Gleb Natapov1d5103c2010-01-17 15:51:21 +0200369/* Declare the various hypercall operations. */
Vitaly Kuznetsov2ffd9e32017-08-02 18:09:19 +0200370#define HVCALL_FLUSH_VIRTUAL_ADDRESS_SPACE 0x0002
371#define HVCALL_FLUSH_VIRTUAL_ADDRESS_LIST 0x0003
Andrey Smetanin8ed6d762016-02-11 16:44:57 +0300372#define HVCALL_NOTIFY_LONG_SPIN_WAIT 0x0008
K. Y. Srinivasan68bb7bf2018-05-16 14:53:31 -0700373#define HVCALL_SEND_IPI 0x000b
Vitaly Kuznetsov628f54c2017-08-02 18:09:20 +0200374#define HVCALL_FLUSH_VIRTUAL_ADDRESS_SPACE_EX 0x0013
375#define HVCALL_FLUSH_VIRTUAL_ADDRESS_LIST_EX 0x0014
K. Y. Srinivasan366f03b2018-05-16 14:53:32 -0700376#define HVCALL_SEND_IPI_EX 0x0015
Andrey Smetanin18f09862016-02-11 16:44:58 +0300377#define HVCALL_POST_MESSAGE 0x005c
378#define HVCALL_SIGNAL_EVENT 0x005d
Tianyu Laneb914cf2018-07-19 08:40:06 +0000379#define HVCALL_FLUSH_GUEST_PHYSICAL_ADDRESS_SPACE 0x00af
Lan Tianyucc4edae42018-12-06 21:21:05 +0800380#define HVCALL_FLUSH_GUEST_PHYSICAL_ADDRESS_LIST 0x00b0
Gleb Natapov1d5103c2010-01-17 15:51:21 +0200381
Ladi Prosekd4abc572018-03-20 15:02:07 +0100382#define HV_X64_MSR_VP_ASSIST_PAGE_ENABLE 0x00000001
383#define HV_X64_MSR_VP_ASSIST_PAGE_ADDRESS_SHIFT 12
384#define HV_X64_MSR_VP_ASSIST_PAGE_ADDRESS_MASK \
385 (~((1ull << HV_X64_MSR_VP_ASSIST_PAGE_ADDRESS_SHIFT) - 1))
Gleb Natapov1d5103c2010-01-17 15:51:21 +0200386
Vitaly Kuznetsov5431390b2018-03-20 15:02:10 +0100387/* Hyper-V Enlightened VMCS version mask in nested features CPUID */
388#define HV_X64_ENLIGHTENED_VMCS_VERSION 0xff
Gleb Natapov1d5103c2010-01-17 15:51:21 +0200389
Vadim Rozenfelde9840972014-01-16 20:18:37 +1100390#define HV_X64_MSR_TSC_REFERENCE_ENABLE 0x00000001
391#define HV_X64_MSR_TSC_REFERENCE_ADDRESS_SHIFT 12
392
Gleb Natapov1d5103c2010-01-17 15:51:21 +0200393#define HV_PROCESSOR_POWER_STATE_C0 0
394#define HV_PROCESSOR_POWER_STATE_C1 1
395#define HV_PROCESSOR_POWER_STATE_C2 2
396#define HV_PROCESSOR_POWER_STATE_C3 3
397
Vitaly Kuznetsov2ffd9e32017-08-02 18:09:19 +0200398#define HV_FLUSH_ALL_PROCESSORS BIT(0)
399#define HV_FLUSH_ALL_VIRTUAL_ADDRESS_SPACES BIT(1)
400#define HV_FLUSH_NON_GLOBAL_MAPPINGS_ONLY BIT(2)
401#define HV_FLUSH_USE_EXTENDED_RANGE_FORMAT BIT(3)
402
Vitaly Kuznetsov628f54c2017-08-02 18:09:20 +0200403enum HV_GENERIC_SET_FORMAT {
K. Y. Srinivasan366f03b2018-05-16 14:53:32 -0700404 HV_GENERIC_SET_SPARSE_4K,
Vitaly Kuznetsov628f54c2017-08-02 18:09:20 +0200405 HV_GENERIC_SET_ALL,
406};
407
Vitaly Kuznetsov415bd1c2018-03-20 15:02:06 +0100408#define HV_HYPERCALL_RESULT_MASK GENMASK_ULL(15, 0)
409#define HV_HYPERCALL_FAST_BIT BIT(16)
410#define HV_HYPERCALL_VARHEAD_OFFSET 17
411#define HV_HYPERCALL_REP_COMP_OFFSET 32
412#define HV_HYPERCALL_REP_COMP_MASK GENMASK_ULL(43, 32)
413#define HV_HYPERCALL_REP_START_OFFSET 48
414#define HV_HYPERCALL_REP_START_MASK GENMASK_ULL(59, 48)
415
Gleb Natapov1d5103c2010-01-17 15:51:21 +0200416/* hypercall status code */
417#define HV_STATUS_SUCCESS 0
418#define HV_STATUS_INVALID_HYPERCALL_CODE 2
419#define HV_STATUS_INVALID_HYPERCALL_INPUT 3
420#define HV_STATUS_INVALID_ALIGNMENT 4
Roman Kaganfaeb7832018-02-01 16:48:32 +0300421#define HV_STATUS_INVALID_PARAMETER 5
Dexuan Cui89f9f672015-02-27 11:25:59 -0800422#define HV_STATUS_INSUFFICIENT_MEMORY 11
Roman Kaganfaeb7832018-02-01 16:48:32 +0300423#define HV_STATUS_INVALID_PORT_ID 17
Dexuan Cui89f9f672015-02-27 11:25:59 -0800424#define HV_STATUS_INVALID_CONNECTION_ID 18
K. Y. Srinivasan5289d3d2011-08-25 09:49:01 -0700425#define HV_STATUS_INSUFFICIENT_BUFFERS 19
Gleb Natapov1d5103c2010-01-17 15:51:21 +0200426
Michael Kelleyfd1fea62019-07-01 04:25:56 +0000427/*
428 * The Hyper-V TimeRefCount register and the TSC
429 * page provide a guest VM clock with 100ns tick rate
430 */
431#define HV_CLOCK_HZ (NSEC_PER_SEC/100)
432
Vadim Rozenfelde9840972014-01-16 20:18:37 +1100433typedef struct _HV_REFERENCE_TSC_PAGE {
434 __u32 tsc_sequence;
435 __u32 res1;
436 __u64 tsc_scale;
437 __s64 tsc_offset;
Vitaly Kuznetsovec084492018-12-12 18:57:01 +0100438} __packed HV_REFERENCE_TSC_PAGE, *PHV_REFERENCE_TSC_PAGE;
Vadim Rozenfelde9840972014-01-16 20:18:37 +1100439
Andrey Smetaninc75efa92015-10-16 10:07:50 +0300440/* Define the number of synthetic interrupt sources. */
441#define HV_SYNIC_SINT_COUNT (16)
442/* Define the expected SynIC version. */
443#define HV_SYNIC_VERSION_1 (0x1)
Vitaly Kuznetsov98f65ad2018-03-01 15:15:13 +0100444/* Valid SynIC vectors are 16-255. */
445#define HV_SYNIC_FIRST_VALID_VECTOR (16)
Andrey Smetaninc75efa92015-10-16 10:07:50 +0300446
447#define HV_SYNIC_CONTROL_ENABLE (1ULL << 0)
448#define HV_SYNIC_SIMP_ENABLE (1ULL << 0)
449#define HV_SYNIC_SIEFP_ENABLE (1ULL << 0)
450#define HV_SYNIC_SINT_MASKED (1ULL << 16)
451#define HV_SYNIC_SINT_AUTO_EOI (1ULL << 17)
452#define HV_SYNIC_SINT_VECTOR_MASK (0xFF)
453
Andrey Smetanin4f39bcf2015-11-30 19:22:14 +0300454#define HV_SYNIC_STIMER_COUNT (4)
455
Andrey Smetanin5b423ef2015-11-30 19:22:15 +0300456/* Define synthetic interrupt controller message constants. */
457#define HV_MESSAGE_SIZE (256)
458#define HV_MESSAGE_PAYLOAD_BYTE_COUNT (240)
459#define HV_MESSAGE_PAYLOAD_QWORD_COUNT (30)
460
461/* Define hypervisor message types. */
462enum hv_message_type {
463 HVMSG_NONE = 0x00000000,
464
465 /* Memory access messages. */
466 HVMSG_UNMAPPED_GPA = 0x80000000,
467 HVMSG_GPA_INTERCEPT = 0x80000001,
468
469 /* Timer notification messages. */
470 HVMSG_TIMER_EXPIRED = 0x80000010,
471
472 /* Error messages. */
473 HVMSG_INVALID_VP_REGISTER_VALUE = 0x80000020,
474 HVMSG_UNRECOVERABLE_EXCEPTION = 0x80000021,
475 HVMSG_UNSUPPORTED_FEATURE = 0x80000022,
476
477 /* Trace buffer complete messages. */
478 HVMSG_EVENTLOG_BUFFERCOMPLETE = 0x80000040,
479
480 /* Platform-specific processor intercept messages. */
481 HVMSG_X64_IOPORT_INTERCEPT = 0x80010000,
482 HVMSG_X64_MSR_INTERCEPT = 0x80010001,
483 HVMSG_X64_CPUID_INTERCEPT = 0x80010002,
484 HVMSG_X64_EXCEPTION_INTERCEPT = 0x80010003,
485 HVMSG_X64_APIC_EOI = 0x80010004,
486 HVMSG_X64_LEGACY_FP_ERROR = 0x80010005
487};
488
489/* Define synthetic interrupt controller message flags. */
490union hv_message_flags {
491 __u8 asu8;
492 struct {
493 __u8 msg_pending:1;
494 __u8 reserved:7;
Vitaly Kuznetsovec084492018-12-12 18:57:01 +0100495 } __packed;
Andrey Smetanin5b423ef2015-11-30 19:22:15 +0300496};
497
498/* Define port identifier type. */
499union hv_port_id {
500 __u32 asu32;
501 struct {
502 __u32 id:24;
503 __u32 reserved:8;
Vitaly Kuznetsovec084492018-12-12 18:57:01 +0100504 } __packed u;
Andrey Smetanin5b423ef2015-11-30 19:22:15 +0300505};
506
507/* Define synthetic interrupt controller message header. */
508struct hv_message_header {
509 __u32 message_type;
510 __u8 payload_size;
511 union hv_message_flags message_flags;
512 __u8 reserved[2];
513 union {
514 __u64 sender;
515 union hv_port_id port;
516 };
Vitaly Kuznetsovec084492018-12-12 18:57:01 +0100517} __packed;
Andrey Smetanin5b423ef2015-11-30 19:22:15 +0300518
519/* Define synthetic interrupt controller message format. */
520struct hv_message {
521 struct hv_message_header header;
522 union {
523 __u64 payload[HV_MESSAGE_PAYLOAD_QWORD_COUNT];
524 } u;
Vitaly Kuznetsovec084492018-12-12 18:57:01 +0100525} __packed;
Andrey Smetanin5b423ef2015-11-30 19:22:15 +0300526
527/* Define the synthetic interrupt message page layout. */
528struct hv_message_page {
529 struct hv_message sint_message[HV_SYNIC_SINT_COUNT];
Vitaly Kuznetsovec084492018-12-12 18:57:01 +0100530} __packed;
Andrey Smetanin5b423ef2015-11-30 19:22:15 +0300531
Andrey Smetaninc71acc42015-11-30 19:22:16 +0300532/* Define timer message payload structure. */
533struct hv_timer_message_payload {
534 __u32 timer_index;
535 __u32 reserved;
536 __u64 expiration_time; /* When the timer expired */
537 __u64 delivery_time; /* When the message was delivered */
Vitaly Kuznetsovec084492018-12-12 18:57:01 +0100538} __packed;
Andrey Smetaninc71acc42015-11-30 19:22:16 +0300539
Tianyu Lan7a832472019-08-22 22:30:19 +0800540struct hv_nested_enlightenments_control {
541 struct {
542 __u32 directhypercall:1;
543 __u32 reserved:31;
544 } features;
545 struct {
546 __u32 reserved;
547 } hypercallControls;
548} __packed;
549
Vitaly Kuznetsova46d15c2018-03-20 15:02:08 +0100550/* Define virtual processor assist page structure. */
551struct hv_vp_assist_page {
552 __u32 apic_assist;
Tianyu Lan7a832472019-08-22 22:30:19 +0800553 __u32 reserved1;
554 __u64 vtl_control[3];
555 struct hv_nested_enlightenments_control nested_control;
556 __u8 enlighten_vmentry;
557 __u8 reserved2[7];
Vitaly Kuznetsova46d15c2018-03-20 15:02:08 +0100558 __u64 current_nested_vmcs;
Vitaly Kuznetsovec084492018-12-12 18:57:01 +0100559} __packed;
Vitaly Kuznetsova46d15c2018-03-20 15:02:08 +0100560
Vitaly Kuznetsov68d1eb72018-03-20 15:02:09 +0100561struct hv_enlightened_vmcs {
562 u32 revision_id;
563 u32 abort;
564
565 u16 host_es_selector;
566 u16 host_cs_selector;
567 u16 host_ss_selector;
568 u16 host_ds_selector;
569 u16 host_fs_selector;
570 u16 host_gs_selector;
571 u16 host_tr_selector;
572
Vitaly Kuznetsovec084492018-12-12 18:57:01 +0100573 u16 padding16_1;
574
Vitaly Kuznetsov68d1eb72018-03-20 15:02:09 +0100575 u64 host_ia32_pat;
576 u64 host_ia32_efer;
577
578 u64 host_cr0;
579 u64 host_cr3;
580 u64 host_cr4;
581
582 u64 host_ia32_sysenter_esp;
583 u64 host_ia32_sysenter_eip;
584 u64 host_rip;
585 u32 host_ia32_sysenter_cs;
586
587 u32 pin_based_vm_exec_control;
588 u32 vm_exit_controls;
589 u32 secondary_vm_exec_control;
590
591 u64 io_bitmap_a;
592 u64 io_bitmap_b;
593 u64 msr_bitmap;
594
595 u16 guest_es_selector;
596 u16 guest_cs_selector;
597 u16 guest_ss_selector;
598 u16 guest_ds_selector;
599 u16 guest_fs_selector;
600 u16 guest_gs_selector;
601 u16 guest_ldtr_selector;
602 u16 guest_tr_selector;
603
604 u32 guest_es_limit;
605 u32 guest_cs_limit;
606 u32 guest_ss_limit;
607 u32 guest_ds_limit;
608 u32 guest_fs_limit;
609 u32 guest_gs_limit;
610 u32 guest_ldtr_limit;
611 u32 guest_tr_limit;
612 u32 guest_gdtr_limit;
613 u32 guest_idtr_limit;
614
615 u32 guest_es_ar_bytes;
616 u32 guest_cs_ar_bytes;
617 u32 guest_ss_ar_bytes;
618 u32 guest_ds_ar_bytes;
619 u32 guest_fs_ar_bytes;
620 u32 guest_gs_ar_bytes;
621 u32 guest_ldtr_ar_bytes;
622 u32 guest_tr_ar_bytes;
623
624 u64 guest_es_base;
625 u64 guest_cs_base;
626 u64 guest_ss_base;
627 u64 guest_ds_base;
628 u64 guest_fs_base;
629 u64 guest_gs_base;
630 u64 guest_ldtr_base;
631 u64 guest_tr_base;
632 u64 guest_gdtr_base;
633 u64 guest_idtr_base;
634
635 u64 padding64_1[3];
636
637 u64 vm_exit_msr_store_addr;
638 u64 vm_exit_msr_load_addr;
639 u64 vm_entry_msr_load_addr;
640
641 u64 cr3_target_value0;
642 u64 cr3_target_value1;
643 u64 cr3_target_value2;
644 u64 cr3_target_value3;
645
646 u32 page_fault_error_code_mask;
647 u32 page_fault_error_code_match;
648
649 u32 cr3_target_count;
650 u32 vm_exit_msr_store_count;
651 u32 vm_exit_msr_load_count;
652 u32 vm_entry_msr_load_count;
653
654 u64 tsc_offset;
655 u64 virtual_apic_page_addr;
656 u64 vmcs_link_pointer;
657
658 u64 guest_ia32_debugctl;
659 u64 guest_ia32_pat;
660 u64 guest_ia32_efer;
661
662 u64 guest_pdptr0;
663 u64 guest_pdptr1;
664 u64 guest_pdptr2;
665 u64 guest_pdptr3;
666
667 u64 guest_pending_dbg_exceptions;
668 u64 guest_sysenter_esp;
669 u64 guest_sysenter_eip;
670
671 u32 guest_activity_state;
672 u32 guest_sysenter_cs;
673
674 u64 cr0_guest_host_mask;
675 u64 cr4_guest_host_mask;
676 u64 cr0_read_shadow;
677 u64 cr4_read_shadow;
678 u64 guest_cr0;
679 u64 guest_cr3;
680 u64 guest_cr4;
681 u64 guest_dr7;
682
683 u64 host_fs_base;
684 u64 host_gs_base;
685 u64 host_tr_base;
686 u64 host_gdtr_base;
687 u64 host_idtr_base;
688 u64 host_rsp;
689
690 u64 ept_pointer;
691
692 u16 virtual_processor_id;
Vitaly Kuznetsovec084492018-12-12 18:57:01 +0100693 u16 padding16_2[3];
Vitaly Kuznetsov68d1eb72018-03-20 15:02:09 +0100694
695 u64 padding64_2[5];
696 u64 guest_physical_address;
697
698 u32 vm_instruction_error;
699 u32 vm_exit_reason;
700 u32 vm_exit_intr_info;
701 u32 vm_exit_intr_error_code;
702 u32 idt_vectoring_info_field;
703 u32 idt_vectoring_error_code;
704 u32 vm_exit_instruction_len;
705 u32 vmx_instruction_info;
706
707 u64 exit_qualification;
708 u64 exit_io_instruction_ecx;
709 u64 exit_io_instruction_esi;
710 u64 exit_io_instruction_edi;
711 u64 exit_io_instruction_eip;
712
713 u64 guest_linear_address;
714 u64 guest_rsp;
715 u64 guest_rflags;
716
717 u32 guest_interruptibility_info;
718 u32 cpu_based_vm_exec_control;
719 u32 exception_bitmap;
720 u32 vm_entry_controls;
721 u32 vm_entry_intr_info_field;
722 u32 vm_entry_exception_error_code;
723 u32 vm_entry_instruction_len;
724 u32 tpr_threshold;
725
726 u64 guest_rip;
727
728 u32 hv_clean_fields;
729 u32 hv_padding_32;
730 u32 hv_synthetic_controls;
Vitaly Kuznetsovceef7d12018-04-16 12:50:33 +0200731 struct {
732 u32 nested_flush_hypercall:1;
733 u32 msr_bitmap:1;
734 u32 reserved:30;
Vitaly Kuznetsovec084492018-12-12 18:57:01 +0100735 } __packed hv_enlightenments_control;
Vitaly Kuznetsov68d1eb72018-03-20 15:02:09 +0100736 u32 hv_vp_id;
737
738 u64 hv_vm_id;
739 u64 partition_assist_page;
740 u64 padding64_4[4];
741 u64 guest_bndcfgs;
742 u64 padding64_5[7];
743 u64 xss_exit_bitmap;
744 u64 padding64_6[7];
Vitaly Kuznetsovec084492018-12-12 18:57:01 +0100745} __packed;
Vitaly Kuznetsov68d1eb72018-03-20 15:02:09 +0100746
747#define HV_VMX_ENLIGHTENED_CLEAN_FIELD_NONE 0
748#define HV_VMX_ENLIGHTENED_CLEAN_FIELD_IO_BITMAP BIT(0)
749#define HV_VMX_ENLIGHTENED_CLEAN_FIELD_MSR_BITMAP BIT(1)
750#define HV_VMX_ENLIGHTENED_CLEAN_FIELD_CONTROL_GRP2 BIT(2)
751#define HV_VMX_ENLIGHTENED_CLEAN_FIELD_CONTROL_GRP1 BIT(3)
752#define HV_VMX_ENLIGHTENED_CLEAN_FIELD_CONTROL_PROC BIT(4)
753#define HV_VMX_ENLIGHTENED_CLEAN_FIELD_CONTROL_EVENT BIT(5)
754#define HV_VMX_ENLIGHTENED_CLEAN_FIELD_CONTROL_ENTRY BIT(6)
755#define HV_VMX_ENLIGHTENED_CLEAN_FIELD_CONTROL_EXCPN BIT(7)
756#define HV_VMX_ENLIGHTENED_CLEAN_FIELD_CRDR BIT(8)
757#define HV_VMX_ENLIGHTENED_CLEAN_FIELD_CONTROL_XLAT BIT(9)
758#define HV_VMX_ENLIGHTENED_CLEAN_FIELD_GUEST_BASIC BIT(10)
759#define HV_VMX_ENLIGHTENED_CLEAN_FIELD_GUEST_GRP1 BIT(11)
760#define HV_VMX_ENLIGHTENED_CLEAN_FIELD_GUEST_GRP2 BIT(12)
761#define HV_VMX_ENLIGHTENED_CLEAN_FIELD_HOST_POINTER BIT(13)
762#define HV_VMX_ENLIGHTENED_CLEAN_FIELD_HOST_GRP1 BIT(14)
763#define HV_VMX_ENLIGHTENED_CLEAN_FIELD_ENLIGHTENMENTSCONTROL BIT(15)
764
765#define HV_VMX_ENLIGHTENED_CLEAN_FIELD_ALL 0xFFFF
766
Vitaly Kuznetsov0aa67252018-11-26 16:47:29 +0100767/* Define synthetic interrupt controller flag constants. */
768#define HV_EVENT_FLAGS_COUNT (256 * 8)
769#define HV_EVENT_FLAGS_LONG_COUNT (256 / sizeof(unsigned long))
770
771/*
772 * Synthetic timer configuration.
773 */
774union hv_stimer_config {
775 u64 as_uint64;
776 struct {
777 u64 enable:1;
778 u64 periodic:1;
779 u64 lazy:1;
780 u64 auto_enable:1;
781 u64 apic_vector:8;
782 u64 direct_mode:1;
783 u64 reserved_z0:3;
784 u64 sintx:4;
785 u64 reserved_z1:44;
786 } __packed;
787};
788
789
790/* Define the synthetic interrupt controller event flags format. */
791union hv_synic_event_flags {
792 unsigned long flags[HV_EVENT_FLAGS_LONG_COUNT];
793};
794
795/* Define SynIC control register. */
796union hv_synic_scontrol {
797 u64 as_uint64;
798 struct {
799 u64 enable:1;
800 u64 reserved:63;
801 } __packed;
802};
803
804/* Define synthetic interrupt source. */
805union hv_synic_sint {
806 u64 as_uint64;
807 struct {
808 u64 vector:8;
809 u64 reserved1:8;
810 u64 masked:1;
811 u64 auto_eoi:1;
812 u64 reserved2:46;
813 } __packed;
814};
815
816/* Define the format of the SIMP register */
817union hv_synic_simp {
818 u64 as_uint64;
819 struct {
820 u64 simp_enabled:1;
821 u64 preserved:11;
822 u64 base_simp_gpa:52;
823 } __packed;
824};
825
826/* Define the format of the SIEFP register */
827union hv_synic_siefp {
828 u64 as_uint64;
829 struct {
830 u64 siefp_enabled:1;
831 u64 preserved:11;
832 u64 base_siefp_gpa:52;
833 } __packed;
834};
835
K. Y. Srinivasan366f03b2018-05-16 14:53:32 -0700836struct hv_vpset {
837 u64 format;
838 u64 valid_bank_mask;
839 u64 bank_contents[];
Vitaly Kuznetsovec084492018-12-12 18:57:01 +0100840} __packed;
K. Y. Srinivasan366f03b2018-05-16 14:53:32 -0700841
Vitaly Kuznetsova1efa9b2018-08-27 18:48:57 +0200842/* HvCallSendSyntheticClusterIpi hypercall */
843struct hv_send_ipi {
844 u32 vector;
845 u32 reserved;
846 u64 cpu_mask;
Vitaly Kuznetsovec084492018-12-12 18:57:01 +0100847} __packed;
Vitaly Kuznetsova1efa9b2018-08-27 18:48:57 +0200848
849/* HvCallSendSyntheticClusterIpiEx hypercall */
850struct hv_send_ipi_ex {
K. Y. Srinivasan366f03b2018-05-16 14:53:32 -0700851 u32 vector;
852 u32 reserved;
853 struct hv_vpset vp_set;
Vitaly Kuznetsovec084492018-12-12 18:57:01 +0100854} __packed;
K. Y. Srinivasan366f03b2018-05-16 14:53:32 -0700855
Tianyu Laneb914cf2018-07-19 08:40:06 +0000856/* HvFlushGuestPhysicalAddressSpace hypercalls */
857struct hv_guest_mapping_flush {
858 u64 address_space;
859 u64 flags;
Vitaly Kuznetsovec084492018-12-12 18:57:01 +0100860} __packed;
Tianyu Laneb914cf2018-07-19 08:40:06 +0000861
Lan Tianyucc4edae42018-12-06 21:21:05 +0800862/*
863 * HV_MAX_FLUSH_PAGES = "additional_pages" + 1. It's limited
864 * by the bitwidth of "additional_pages" in union hv_gpa_page_range.
865 */
866#define HV_MAX_FLUSH_PAGES (2048)
867
868/* HvFlushGuestPhysicalAddressList hypercall */
869union hv_gpa_page_range {
870 u64 address_space;
871 struct {
872 u64 additional_pages:11;
873 u64 largepage:1;
874 u64 basepfn:52;
875 } page;
876};
877
878/*
879 * All input flush parameters should be in single page. The max flush
880 * count is equal with how many entries of union hv_gpa_page_range can
881 * be populated into the input parameter page.
882 */
Maya Nakamurafcd3f622019-07-12 08:14:47 +0000883#define HV_MAX_FLUSH_REP_COUNT ((HV_HYP_PAGE_SIZE - 2 * sizeof(u64)) / \
Lan Tianyucc4edae42018-12-06 21:21:05 +0800884 sizeof(union hv_gpa_page_range))
885
886struct hv_guest_mapping_flush_list {
887 u64 address_space;
888 u64 flags;
889 union hv_gpa_page_range gpa_list[HV_MAX_FLUSH_REP_COUNT];
890};
891
Vitaly Kuznetsovc9c92be2018-05-16 17:21:24 +0200892/* HvFlushVirtualAddressSpace, HvFlushVirtualAddressList hypercalls */
893struct hv_tlb_flush {
894 u64 address_space;
895 u64 flags;
896 u64 processor_mask;
897 u64 gva_list[];
Vitaly Kuznetsovec084492018-12-12 18:57:01 +0100898} __packed;
Vitaly Kuznetsovc9c92be2018-05-16 17:21:24 +0200899
900/* HvFlushVirtualAddressSpaceEx, HvFlushVirtualAddressListEx hypercalls */
901struct hv_tlb_flush_ex {
902 u64 address_space;
903 u64 flags;
904 struct hv_vpset hv_vp_set;
905 u64 gva_list[];
Vitaly Kuznetsovec084492018-12-12 18:57:01 +0100906} __packed;
Vitaly Kuznetsovc9c92be2018-05-16 17:21:24 +0200907
Vitaly Kuznetsov6f6a6572019-08-22 22:30:21 +0800908struct hv_partition_assist_pg {
909 u32 tlb_lock_count;
910};
Gleb Natapov1d5103c2010-01-17 15:51:21 +0200911#endif