18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0-only */
28c2ecf20Sopenharmony_ci/*
38c2ecf20Sopenharmony_ci * vmx.h: VMX Architecture related definitions
48c2ecf20Sopenharmony_ci * Copyright (c) 2004, Intel Corporation.
58c2ecf20Sopenharmony_ci *
68c2ecf20Sopenharmony_ci * A few random additions are:
78c2ecf20Sopenharmony_ci * Copyright (C) 2006 Qumranet
88c2ecf20Sopenharmony_ci *    Avi Kivity <avi@qumranet.com>
98c2ecf20Sopenharmony_ci *    Yaniv Kamay <yaniv@qumranet.com>
108c2ecf20Sopenharmony_ci */
118c2ecf20Sopenharmony_ci#ifndef VMX_H
128c2ecf20Sopenharmony_ci#define VMX_H
138c2ecf20Sopenharmony_ci
148c2ecf20Sopenharmony_ci
158c2ecf20Sopenharmony_ci#include <linux/bitops.h>
168c2ecf20Sopenharmony_ci#include <linux/types.h>
178c2ecf20Sopenharmony_ci#include <uapi/asm/vmx.h>
188c2ecf20Sopenharmony_ci#include <asm/vmxfeatures.h>
198c2ecf20Sopenharmony_ci
208c2ecf20Sopenharmony_ci#define VMCS_CONTROL_BIT(x)	BIT(VMX_FEATURE_##x & 0x1f)
218c2ecf20Sopenharmony_ci
228c2ecf20Sopenharmony_ci/*
238c2ecf20Sopenharmony_ci * Definitions of Primary Processor-Based VM-Execution Controls.
248c2ecf20Sopenharmony_ci */
258c2ecf20Sopenharmony_ci#define CPU_BASED_INTR_WINDOW_EXITING           VMCS_CONTROL_BIT(INTR_WINDOW_EXITING)
268c2ecf20Sopenharmony_ci#define CPU_BASED_USE_TSC_OFFSETTING            VMCS_CONTROL_BIT(USE_TSC_OFFSETTING)
278c2ecf20Sopenharmony_ci#define CPU_BASED_HLT_EXITING                   VMCS_CONTROL_BIT(HLT_EXITING)
288c2ecf20Sopenharmony_ci#define CPU_BASED_INVLPG_EXITING                VMCS_CONTROL_BIT(INVLPG_EXITING)
298c2ecf20Sopenharmony_ci#define CPU_BASED_MWAIT_EXITING                 VMCS_CONTROL_BIT(MWAIT_EXITING)
308c2ecf20Sopenharmony_ci#define CPU_BASED_RDPMC_EXITING                 VMCS_CONTROL_BIT(RDPMC_EXITING)
318c2ecf20Sopenharmony_ci#define CPU_BASED_RDTSC_EXITING                 VMCS_CONTROL_BIT(RDTSC_EXITING)
328c2ecf20Sopenharmony_ci#define CPU_BASED_CR3_LOAD_EXITING		VMCS_CONTROL_BIT(CR3_LOAD_EXITING)
338c2ecf20Sopenharmony_ci#define CPU_BASED_CR3_STORE_EXITING		VMCS_CONTROL_BIT(CR3_STORE_EXITING)
348c2ecf20Sopenharmony_ci#define CPU_BASED_CR8_LOAD_EXITING              VMCS_CONTROL_BIT(CR8_LOAD_EXITING)
358c2ecf20Sopenharmony_ci#define CPU_BASED_CR8_STORE_EXITING             VMCS_CONTROL_BIT(CR8_STORE_EXITING)
368c2ecf20Sopenharmony_ci#define CPU_BASED_TPR_SHADOW                    VMCS_CONTROL_BIT(VIRTUAL_TPR)
378c2ecf20Sopenharmony_ci#define CPU_BASED_NMI_WINDOW_EXITING		VMCS_CONTROL_BIT(NMI_WINDOW_EXITING)
388c2ecf20Sopenharmony_ci#define CPU_BASED_MOV_DR_EXITING                VMCS_CONTROL_BIT(MOV_DR_EXITING)
398c2ecf20Sopenharmony_ci#define CPU_BASED_UNCOND_IO_EXITING             VMCS_CONTROL_BIT(UNCOND_IO_EXITING)
408c2ecf20Sopenharmony_ci#define CPU_BASED_USE_IO_BITMAPS                VMCS_CONTROL_BIT(USE_IO_BITMAPS)
418c2ecf20Sopenharmony_ci#define CPU_BASED_MONITOR_TRAP_FLAG             VMCS_CONTROL_BIT(MONITOR_TRAP_FLAG)
428c2ecf20Sopenharmony_ci#define CPU_BASED_USE_MSR_BITMAPS               VMCS_CONTROL_BIT(USE_MSR_BITMAPS)
438c2ecf20Sopenharmony_ci#define CPU_BASED_MONITOR_EXITING               VMCS_CONTROL_BIT(MONITOR_EXITING)
448c2ecf20Sopenharmony_ci#define CPU_BASED_PAUSE_EXITING                 VMCS_CONTROL_BIT(PAUSE_EXITING)
458c2ecf20Sopenharmony_ci#define CPU_BASED_ACTIVATE_SECONDARY_CONTROLS   VMCS_CONTROL_BIT(SEC_CONTROLS)
468c2ecf20Sopenharmony_ci
478c2ecf20Sopenharmony_ci#define CPU_BASED_ALWAYSON_WITHOUT_TRUE_MSR	0x0401e172
488c2ecf20Sopenharmony_ci
498c2ecf20Sopenharmony_ci/*
508c2ecf20Sopenharmony_ci * Definitions of Secondary Processor-Based VM-Execution Controls.
518c2ecf20Sopenharmony_ci */
528c2ecf20Sopenharmony_ci#define SECONDARY_EXEC_VIRTUALIZE_APIC_ACCESSES VMCS_CONTROL_BIT(VIRT_APIC_ACCESSES)
538c2ecf20Sopenharmony_ci#define SECONDARY_EXEC_ENABLE_EPT               VMCS_CONTROL_BIT(EPT)
548c2ecf20Sopenharmony_ci#define SECONDARY_EXEC_DESC			VMCS_CONTROL_BIT(DESC_EXITING)
558c2ecf20Sopenharmony_ci#define SECONDARY_EXEC_ENABLE_RDTSCP		VMCS_CONTROL_BIT(RDTSCP)
568c2ecf20Sopenharmony_ci#define SECONDARY_EXEC_VIRTUALIZE_X2APIC_MODE   VMCS_CONTROL_BIT(VIRTUAL_X2APIC)
578c2ecf20Sopenharmony_ci#define SECONDARY_EXEC_ENABLE_VPID              VMCS_CONTROL_BIT(VPID)
588c2ecf20Sopenharmony_ci#define SECONDARY_EXEC_WBINVD_EXITING		VMCS_CONTROL_BIT(WBINVD_EXITING)
598c2ecf20Sopenharmony_ci#define SECONDARY_EXEC_UNRESTRICTED_GUEST	VMCS_CONTROL_BIT(UNRESTRICTED_GUEST)
608c2ecf20Sopenharmony_ci#define SECONDARY_EXEC_APIC_REGISTER_VIRT       VMCS_CONTROL_BIT(APIC_REGISTER_VIRT)
618c2ecf20Sopenharmony_ci#define SECONDARY_EXEC_VIRTUAL_INTR_DELIVERY    VMCS_CONTROL_BIT(VIRT_INTR_DELIVERY)
628c2ecf20Sopenharmony_ci#define SECONDARY_EXEC_PAUSE_LOOP_EXITING	VMCS_CONTROL_BIT(PAUSE_LOOP_EXITING)
638c2ecf20Sopenharmony_ci#define SECONDARY_EXEC_RDRAND_EXITING		VMCS_CONTROL_BIT(RDRAND_EXITING)
648c2ecf20Sopenharmony_ci#define SECONDARY_EXEC_ENABLE_INVPCID		VMCS_CONTROL_BIT(INVPCID)
658c2ecf20Sopenharmony_ci#define SECONDARY_EXEC_ENABLE_VMFUNC            VMCS_CONTROL_BIT(VMFUNC)
668c2ecf20Sopenharmony_ci#define SECONDARY_EXEC_SHADOW_VMCS              VMCS_CONTROL_BIT(SHADOW_VMCS)
678c2ecf20Sopenharmony_ci#define SECONDARY_EXEC_ENCLS_EXITING		VMCS_CONTROL_BIT(ENCLS_EXITING)
688c2ecf20Sopenharmony_ci#define SECONDARY_EXEC_RDSEED_EXITING		VMCS_CONTROL_BIT(RDSEED_EXITING)
698c2ecf20Sopenharmony_ci#define SECONDARY_EXEC_ENABLE_PML               VMCS_CONTROL_BIT(PAGE_MOD_LOGGING)
708c2ecf20Sopenharmony_ci#define SECONDARY_EXEC_PT_CONCEAL_VMX		VMCS_CONTROL_BIT(PT_CONCEAL_VMX)
718c2ecf20Sopenharmony_ci#define SECONDARY_EXEC_XSAVES			VMCS_CONTROL_BIT(XSAVES)
728c2ecf20Sopenharmony_ci#define SECONDARY_EXEC_MODE_BASED_EPT_EXEC	VMCS_CONTROL_BIT(MODE_BASED_EPT_EXEC)
738c2ecf20Sopenharmony_ci#define SECONDARY_EXEC_PT_USE_GPA		VMCS_CONTROL_BIT(PT_USE_GPA)
748c2ecf20Sopenharmony_ci#define SECONDARY_EXEC_TSC_SCALING              VMCS_CONTROL_BIT(TSC_SCALING)
758c2ecf20Sopenharmony_ci#define SECONDARY_EXEC_ENABLE_USR_WAIT_PAUSE	VMCS_CONTROL_BIT(USR_WAIT_PAUSE)
768c2ecf20Sopenharmony_ci
778c2ecf20Sopenharmony_ci#define PIN_BASED_EXT_INTR_MASK                 VMCS_CONTROL_BIT(INTR_EXITING)
788c2ecf20Sopenharmony_ci#define PIN_BASED_NMI_EXITING                   VMCS_CONTROL_BIT(NMI_EXITING)
798c2ecf20Sopenharmony_ci#define PIN_BASED_VIRTUAL_NMIS                  VMCS_CONTROL_BIT(VIRTUAL_NMIS)
808c2ecf20Sopenharmony_ci#define PIN_BASED_VMX_PREEMPTION_TIMER          VMCS_CONTROL_BIT(PREEMPTION_TIMER)
818c2ecf20Sopenharmony_ci#define PIN_BASED_POSTED_INTR                   VMCS_CONTROL_BIT(POSTED_INTR)
828c2ecf20Sopenharmony_ci
838c2ecf20Sopenharmony_ci#define PIN_BASED_ALWAYSON_WITHOUT_TRUE_MSR	0x00000016
848c2ecf20Sopenharmony_ci
858c2ecf20Sopenharmony_ci#define VM_EXIT_SAVE_DEBUG_CONTROLS             0x00000004
868c2ecf20Sopenharmony_ci#define VM_EXIT_HOST_ADDR_SPACE_SIZE            0x00000200
878c2ecf20Sopenharmony_ci#define VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL      0x00001000
888c2ecf20Sopenharmony_ci#define VM_EXIT_ACK_INTR_ON_EXIT                0x00008000
898c2ecf20Sopenharmony_ci#define VM_EXIT_SAVE_IA32_PAT			0x00040000
908c2ecf20Sopenharmony_ci#define VM_EXIT_LOAD_IA32_PAT			0x00080000
918c2ecf20Sopenharmony_ci#define VM_EXIT_SAVE_IA32_EFER                  0x00100000
928c2ecf20Sopenharmony_ci#define VM_EXIT_LOAD_IA32_EFER                  0x00200000
938c2ecf20Sopenharmony_ci#define VM_EXIT_SAVE_VMX_PREEMPTION_TIMER       0x00400000
948c2ecf20Sopenharmony_ci#define VM_EXIT_CLEAR_BNDCFGS                   0x00800000
958c2ecf20Sopenharmony_ci#define VM_EXIT_PT_CONCEAL_PIP			0x01000000
968c2ecf20Sopenharmony_ci#define VM_EXIT_CLEAR_IA32_RTIT_CTL		0x02000000
978c2ecf20Sopenharmony_ci
988c2ecf20Sopenharmony_ci#define VM_EXIT_ALWAYSON_WITHOUT_TRUE_MSR	0x00036dff
998c2ecf20Sopenharmony_ci
1008c2ecf20Sopenharmony_ci#define VM_ENTRY_LOAD_DEBUG_CONTROLS            0x00000004
1018c2ecf20Sopenharmony_ci#define VM_ENTRY_IA32E_MODE                     0x00000200
1028c2ecf20Sopenharmony_ci#define VM_ENTRY_SMM                            0x00000400
1038c2ecf20Sopenharmony_ci#define VM_ENTRY_DEACT_DUAL_MONITOR             0x00000800
1048c2ecf20Sopenharmony_ci#define VM_ENTRY_LOAD_IA32_PERF_GLOBAL_CTRL     0x00002000
1058c2ecf20Sopenharmony_ci#define VM_ENTRY_LOAD_IA32_PAT			0x00004000
1068c2ecf20Sopenharmony_ci#define VM_ENTRY_LOAD_IA32_EFER                 0x00008000
1078c2ecf20Sopenharmony_ci#define VM_ENTRY_LOAD_BNDCFGS                   0x00010000
1088c2ecf20Sopenharmony_ci#define VM_ENTRY_PT_CONCEAL_PIP			0x00020000
1098c2ecf20Sopenharmony_ci#define VM_ENTRY_LOAD_IA32_RTIT_CTL		0x00040000
1108c2ecf20Sopenharmony_ci
1118c2ecf20Sopenharmony_ci#define VM_ENTRY_ALWAYSON_WITHOUT_TRUE_MSR	0x000011ff
1128c2ecf20Sopenharmony_ci
1138c2ecf20Sopenharmony_ci#define VMX_MISC_PREEMPTION_TIMER_RATE_MASK	0x0000001f
1148c2ecf20Sopenharmony_ci#define VMX_MISC_SAVE_EFER_LMA			0x00000020
1158c2ecf20Sopenharmony_ci#define VMX_MISC_ACTIVITY_HLT			0x00000040
1168c2ecf20Sopenharmony_ci#define VMX_MISC_ZERO_LEN_INS			0x40000000
1178c2ecf20Sopenharmony_ci#define VMX_MISC_MSR_LIST_MULTIPLIER		512
1188c2ecf20Sopenharmony_ci
1198c2ecf20Sopenharmony_ci/* VMFUNC functions */
1208c2ecf20Sopenharmony_ci#define VMFUNC_CONTROL_BIT(x)	BIT((VMX_FEATURE_##x & 0x1f) - 28)
1218c2ecf20Sopenharmony_ci
1228c2ecf20Sopenharmony_ci#define VMX_VMFUNC_EPTP_SWITCHING               VMFUNC_CONTROL_BIT(EPTP_SWITCHING)
1238c2ecf20Sopenharmony_ci#define VMFUNC_EPTP_ENTRIES  512
1248c2ecf20Sopenharmony_ci
1258c2ecf20Sopenharmony_cistatic inline u32 vmx_basic_vmcs_revision_id(u64 vmx_basic)
1268c2ecf20Sopenharmony_ci{
1278c2ecf20Sopenharmony_ci	return vmx_basic & GENMASK_ULL(30, 0);
1288c2ecf20Sopenharmony_ci}
1298c2ecf20Sopenharmony_ci
1308c2ecf20Sopenharmony_cistatic inline u32 vmx_basic_vmcs_size(u64 vmx_basic)
1318c2ecf20Sopenharmony_ci{
1328c2ecf20Sopenharmony_ci	return (vmx_basic & GENMASK_ULL(44, 32)) >> 32;
1338c2ecf20Sopenharmony_ci}
1348c2ecf20Sopenharmony_ci
1358c2ecf20Sopenharmony_cistatic inline int vmx_misc_preemption_timer_rate(u64 vmx_misc)
1368c2ecf20Sopenharmony_ci{
1378c2ecf20Sopenharmony_ci	return vmx_misc & VMX_MISC_PREEMPTION_TIMER_RATE_MASK;
1388c2ecf20Sopenharmony_ci}
1398c2ecf20Sopenharmony_ci
1408c2ecf20Sopenharmony_cistatic inline int vmx_misc_cr3_count(u64 vmx_misc)
1418c2ecf20Sopenharmony_ci{
1428c2ecf20Sopenharmony_ci	return (vmx_misc & GENMASK_ULL(24, 16)) >> 16;
1438c2ecf20Sopenharmony_ci}
1448c2ecf20Sopenharmony_ci
1458c2ecf20Sopenharmony_cistatic inline int vmx_misc_max_msr(u64 vmx_misc)
1468c2ecf20Sopenharmony_ci{
1478c2ecf20Sopenharmony_ci	return (vmx_misc & GENMASK_ULL(27, 25)) >> 25;
1488c2ecf20Sopenharmony_ci}
1498c2ecf20Sopenharmony_ci
1508c2ecf20Sopenharmony_cistatic inline int vmx_misc_mseg_revid(u64 vmx_misc)
1518c2ecf20Sopenharmony_ci{
1528c2ecf20Sopenharmony_ci	return (vmx_misc & GENMASK_ULL(63, 32)) >> 32;
1538c2ecf20Sopenharmony_ci}
1548c2ecf20Sopenharmony_ci
1558c2ecf20Sopenharmony_ci/* VMCS Encodings */
1568c2ecf20Sopenharmony_cienum vmcs_field {
1578c2ecf20Sopenharmony_ci	VIRTUAL_PROCESSOR_ID            = 0x00000000,
1588c2ecf20Sopenharmony_ci	POSTED_INTR_NV                  = 0x00000002,
1598c2ecf20Sopenharmony_ci	GUEST_ES_SELECTOR               = 0x00000800,
1608c2ecf20Sopenharmony_ci	GUEST_CS_SELECTOR               = 0x00000802,
1618c2ecf20Sopenharmony_ci	GUEST_SS_SELECTOR               = 0x00000804,
1628c2ecf20Sopenharmony_ci	GUEST_DS_SELECTOR               = 0x00000806,
1638c2ecf20Sopenharmony_ci	GUEST_FS_SELECTOR               = 0x00000808,
1648c2ecf20Sopenharmony_ci	GUEST_GS_SELECTOR               = 0x0000080a,
1658c2ecf20Sopenharmony_ci	GUEST_LDTR_SELECTOR             = 0x0000080c,
1668c2ecf20Sopenharmony_ci	GUEST_TR_SELECTOR               = 0x0000080e,
1678c2ecf20Sopenharmony_ci	GUEST_INTR_STATUS               = 0x00000810,
1688c2ecf20Sopenharmony_ci	GUEST_PML_INDEX			= 0x00000812,
1698c2ecf20Sopenharmony_ci	HOST_ES_SELECTOR                = 0x00000c00,
1708c2ecf20Sopenharmony_ci	HOST_CS_SELECTOR                = 0x00000c02,
1718c2ecf20Sopenharmony_ci	HOST_SS_SELECTOR                = 0x00000c04,
1728c2ecf20Sopenharmony_ci	HOST_DS_SELECTOR                = 0x00000c06,
1738c2ecf20Sopenharmony_ci	HOST_FS_SELECTOR                = 0x00000c08,
1748c2ecf20Sopenharmony_ci	HOST_GS_SELECTOR                = 0x00000c0a,
1758c2ecf20Sopenharmony_ci	HOST_TR_SELECTOR                = 0x00000c0c,
1768c2ecf20Sopenharmony_ci	IO_BITMAP_A                     = 0x00002000,
1778c2ecf20Sopenharmony_ci	IO_BITMAP_A_HIGH                = 0x00002001,
1788c2ecf20Sopenharmony_ci	IO_BITMAP_B                     = 0x00002002,
1798c2ecf20Sopenharmony_ci	IO_BITMAP_B_HIGH                = 0x00002003,
1808c2ecf20Sopenharmony_ci	MSR_BITMAP                      = 0x00002004,
1818c2ecf20Sopenharmony_ci	MSR_BITMAP_HIGH                 = 0x00002005,
1828c2ecf20Sopenharmony_ci	VM_EXIT_MSR_STORE_ADDR          = 0x00002006,
1838c2ecf20Sopenharmony_ci	VM_EXIT_MSR_STORE_ADDR_HIGH     = 0x00002007,
1848c2ecf20Sopenharmony_ci	VM_EXIT_MSR_LOAD_ADDR           = 0x00002008,
1858c2ecf20Sopenharmony_ci	VM_EXIT_MSR_LOAD_ADDR_HIGH      = 0x00002009,
1868c2ecf20Sopenharmony_ci	VM_ENTRY_MSR_LOAD_ADDR          = 0x0000200a,
1878c2ecf20Sopenharmony_ci	VM_ENTRY_MSR_LOAD_ADDR_HIGH     = 0x0000200b,
1888c2ecf20Sopenharmony_ci	PML_ADDRESS			= 0x0000200e,
1898c2ecf20Sopenharmony_ci	PML_ADDRESS_HIGH		= 0x0000200f,
1908c2ecf20Sopenharmony_ci	TSC_OFFSET                      = 0x00002010,
1918c2ecf20Sopenharmony_ci	TSC_OFFSET_HIGH                 = 0x00002011,
1928c2ecf20Sopenharmony_ci	VIRTUAL_APIC_PAGE_ADDR          = 0x00002012,
1938c2ecf20Sopenharmony_ci	VIRTUAL_APIC_PAGE_ADDR_HIGH     = 0x00002013,
1948c2ecf20Sopenharmony_ci	APIC_ACCESS_ADDR		= 0x00002014,
1958c2ecf20Sopenharmony_ci	APIC_ACCESS_ADDR_HIGH		= 0x00002015,
1968c2ecf20Sopenharmony_ci	POSTED_INTR_DESC_ADDR           = 0x00002016,
1978c2ecf20Sopenharmony_ci	POSTED_INTR_DESC_ADDR_HIGH      = 0x00002017,
1988c2ecf20Sopenharmony_ci	VM_FUNCTION_CONTROL             = 0x00002018,
1998c2ecf20Sopenharmony_ci	VM_FUNCTION_CONTROL_HIGH        = 0x00002019,
2008c2ecf20Sopenharmony_ci	EPT_POINTER                     = 0x0000201a,
2018c2ecf20Sopenharmony_ci	EPT_POINTER_HIGH                = 0x0000201b,
2028c2ecf20Sopenharmony_ci	EOI_EXIT_BITMAP0                = 0x0000201c,
2038c2ecf20Sopenharmony_ci	EOI_EXIT_BITMAP0_HIGH           = 0x0000201d,
2048c2ecf20Sopenharmony_ci	EOI_EXIT_BITMAP1                = 0x0000201e,
2058c2ecf20Sopenharmony_ci	EOI_EXIT_BITMAP1_HIGH           = 0x0000201f,
2068c2ecf20Sopenharmony_ci	EOI_EXIT_BITMAP2                = 0x00002020,
2078c2ecf20Sopenharmony_ci	EOI_EXIT_BITMAP2_HIGH           = 0x00002021,
2088c2ecf20Sopenharmony_ci	EOI_EXIT_BITMAP3                = 0x00002022,
2098c2ecf20Sopenharmony_ci	EOI_EXIT_BITMAP3_HIGH           = 0x00002023,
2108c2ecf20Sopenharmony_ci	EPTP_LIST_ADDRESS               = 0x00002024,
2118c2ecf20Sopenharmony_ci	EPTP_LIST_ADDRESS_HIGH          = 0x00002025,
2128c2ecf20Sopenharmony_ci	VMREAD_BITMAP                   = 0x00002026,
2138c2ecf20Sopenharmony_ci	VMREAD_BITMAP_HIGH              = 0x00002027,
2148c2ecf20Sopenharmony_ci	VMWRITE_BITMAP                  = 0x00002028,
2158c2ecf20Sopenharmony_ci	VMWRITE_BITMAP_HIGH             = 0x00002029,
2168c2ecf20Sopenharmony_ci	XSS_EXIT_BITMAP                 = 0x0000202C,
2178c2ecf20Sopenharmony_ci	XSS_EXIT_BITMAP_HIGH            = 0x0000202D,
2188c2ecf20Sopenharmony_ci	ENCLS_EXITING_BITMAP		= 0x0000202E,
2198c2ecf20Sopenharmony_ci	ENCLS_EXITING_BITMAP_HIGH	= 0x0000202F,
2208c2ecf20Sopenharmony_ci	TSC_MULTIPLIER                  = 0x00002032,
2218c2ecf20Sopenharmony_ci	TSC_MULTIPLIER_HIGH             = 0x00002033,
2228c2ecf20Sopenharmony_ci	GUEST_PHYSICAL_ADDRESS          = 0x00002400,
2238c2ecf20Sopenharmony_ci	GUEST_PHYSICAL_ADDRESS_HIGH     = 0x00002401,
2248c2ecf20Sopenharmony_ci	VMCS_LINK_POINTER               = 0x00002800,
2258c2ecf20Sopenharmony_ci	VMCS_LINK_POINTER_HIGH          = 0x00002801,
2268c2ecf20Sopenharmony_ci	GUEST_IA32_DEBUGCTL             = 0x00002802,
2278c2ecf20Sopenharmony_ci	GUEST_IA32_DEBUGCTL_HIGH        = 0x00002803,
2288c2ecf20Sopenharmony_ci	GUEST_IA32_PAT			= 0x00002804,
2298c2ecf20Sopenharmony_ci	GUEST_IA32_PAT_HIGH		= 0x00002805,
2308c2ecf20Sopenharmony_ci	GUEST_IA32_EFER			= 0x00002806,
2318c2ecf20Sopenharmony_ci	GUEST_IA32_EFER_HIGH		= 0x00002807,
2328c2ecf20Sopenharmony_ci	GUEST_IA32_PERF_GLOBAL_CTRL	= 0x00002808,
2338c2ecf20Sopenharmony_ci	GUEST_IA32_PERF_GLOBAL_CTRL_HIGH= 0x00002809,
2348c2ecf20Sopenharmony_ci	GUEST_PDPTR0                    = 0x0000280a,
2358c2ecf20Sopenharmony_ci	GUEST_PDPTR0_HIGH               = 0x0000280b,
2368c2ecf20Sopenharmony_ci	GUEST_PDPTR1                    = 0x0000280c,
2378c2ecf20Sopenharmony_ci	GUEST_PDPTR1_HIGH               = 0x0000280d,
2388c2ecf20Sopenharmony_ci	GUEST_PDPTR2                    = 0x0000280e,
2398c2ecf20Sopenharmony_ci	GUEST_PDPTR2_HIGH               = 0x0000280f,
2408c2ecf20Sopenharmony_ci	GUEST_PDPTR3                    = 0x00002810,
2418c2ecf20Sopenharmony_ci	GUEST_PDPTR3_HIGH               = 0x00002811,
2428c2ecf20Sopenharmony_ci	GUEST_BNDCFGS                   = 0x00002812,
2438c2ecf20Sopenharmony_ci	GUEST_BNDCFGS_HIGH              = 0x00002813,
2448c2ecf20Sopenharmony_ci	GUEST_IA32_RTIT_CTL		= 0x00002814,
2458c2ecf20Sopenharmony_ci	GUEST_IA32_RTIT_CTL_HIGH	= 0x00002815,
2468c2ecf20Sopenharmony_ci	HOST_IA32_PAT			= 0x00002c00,
2478c2ecf20Sopenharmony_ci	HOST_IA32_PAT_HIGH		= 0x00002c01,
2488c2ecf20Sopenharmony_ci	HOST_IA32_EFER			= 0x00002c02,
2498c2ecf20Sopenharmony_ci	HOST_IA32_EFER_HIGH		= 0x00002c03,
2508c2ecf20Sopenharmony_ci	HOST_IA32_PERF_GLOBAL_CTRL	= 0x00002c04,
2518c2ecf20Sopenharmony_ci	HOST_IA32_PERF_GLOBAL_CTRL_HIGH	= 0x00002c05,
2528c2ecf20Sopenharmony_ci	PIN_BASED_VM_EXEC_CONTROL       = 0x00004000,
2538c2ecf20Sopenharmony_ci	CPU_BASED_VM_EXEC_CONTROL       = 0x00004002,
2548c2ecf20Sopenharmony_ci	EXCEPTION_BITMAP                = 0x00004004,
2558c2ecf20Sopenharmony_ci	PAGE_FAULT_ERROR_CODE_MASK      = 0x00004006,
2568c2ecf20Sopenharmony_ci	PAGE_FAULT_ERROR_CODE_MATCH     = 0x00004008,
2578c2ecf20Sopenharmony_ci	CR3_TARGET_COUNT                = 0x0000400a,
2588c2ecf20Sopenharmony_ci	VM_EXIT_CONTROLS                = 0x0000400c,
2598c2ecf20Sopenharmony_ci	VM_EXIT_MSR_STORE_COUNT         = 0x0000400e,
2608c2ecf20Sopenharmony_ci	VM_EXIT_MSR_LOAD_COUNT          = 0x00004010,
2618c2ecf20Sopenharmony_ci	VM_ENTRY_CONTROLS               = 0x00004012,
2628c2ecf20Sopenharmony_ci	VM_ENTRY_MSR_LOAD_COUNT         = 0x00004014,
2638c2ecf20Sopenharmony_ci	VM_ENTRY_INTR_INFO_FIELD        = 0x00004016,
2648c2ecf20Sopenharmony_ci	VM_ENTRY_EXCEPTION_ERROR_CODE   = 0x00004018,
2658c2ecf20Sopenharmony_ci	VM_ENTRY_INSTRUCTION_LEN        = 0x0000401a,
2668c2ecf20Sopenharmony_ci	TPR_THRESHOLD                   = 0x0000401c,
2678c2ecf20Sopenharmony_ci	SECONDARY_VM_EXEC_CONTROL       = 0x0000401e,
2688c2ecf20Sopenharmony_ci	PLE_GAP                         = 0x00004020,
2698c2ecf20Sopenharmony_ci	PLE_WINDOW                      = 0x00004022,
2708c2ecf20Sopenharmony_ci	VM_INSTRUCTION_ERROR            = 0x00004400,
2718c2ecf20Sopenharmony_ci	VM_EXIT_REASON                  = 0x00004402,
2728c2ecf20Sopenharmony_ci	VM_EXIT_INTR_INFO               = 0x00004404,
2738c2ecf20Sopenharmony_ci	VM_EXIT_INTR_ERROR_CODE         = 0x00004406,
2748c2ecf20Sopenharmony_ci	IDT_VECTORING_INFO_FIELD        = 0x00004408,
2758c2ecf20Sopenharmony_ci	IDT_VECTORING_ERROR_CODE        = 0x0000440a,
2768c2ecf20Sopenharmony_ci	VM_EXIT_INSTRUCTION_LEN         = 0x0000440c,
2778c2ecf20Sopenharmony_ci	VMX_INSTRUCTION_INFO            = 0x0000440e,
2788c2ecf20Sopenharmony_ci	GUEST_ES_LIMIT                  = 0x00004800,
2798c2ecf20Sopenharmony_ci	GUEST_CS_LIMIT                  = 0x00004802,
2808c2ecf20Sopenharmony_ci	GUEST_SS_LIMIT                  = 0x00004804,
2818c2ecf20Sopenharmony_ci	GUEST_DS_LIMIT                  = 0x00004806,
2828c2ecf20Sopenharmony_ci	GUEST_FS_LIMIT                  = 0x00004808,
2838c2ecf20Sopenharmony_ci	GUEST_GS_LIMIT                  = 0x0000480a,
2848c2ecf20Sopenharmony_ci	GUEST_LDTR_LIMIT                = 0x0000480c,
2858c2ecf20Sopenharmony_ci	GUEST_TR_LIMIT                  = 0x0000480e,
2868c2ecf20Sopenharmony_ci	GUEST_GDTR_LIMIT                = 0x00004810,
2878c2ecf20Sopenharmony_ci	GUEST_IDTR_LIMIT                = 0x00004812,
2888c2ecf20Sopenharmony_ci	GUEST_ES_AR_BYTES               = 0x00004814,
2898c2ecf20Sopenharmony_ci	GUEST_CS_AR_BYTES               = 0x00004816,
2908c2ecf20Sopenharmony_ci	GUEST_SS_AR_BYTES               = 0x00004818,
2918c2ecf20Sopenharmony_ci	GUEST_DS_AR_BYTES               = 0x0000481a,
2928c2ecf20Sopenharmony_ci	GUEST_FS_AR_BYTES               = 0x0000481c,
2938c2ecf20Sopenharmony_ci	GUEST_GS_AR_BYTES               = 0x0000481e,
2948c2ecf20Sopenharmony_ci	GUEST_LDTR_AR_BYTES             = 0x00004820,
2958c2ecf20Sopenharmony_ci	GUEST_TR_AR_BYTES               = 0x00004822,
2968c2ecf20Sopenharmony_ci	GUEST_INTERRUPTIBILITY_INFO     = 0x00004824,
2978c2ecf20Sopenharmony_ci	GUEST_ACTIVITY_STATE            = 0X00004826,
2988c2ecf20Sopenharmony_ci	GUEST_SYSENTER_CS               = 0x0000482A,
2998c2ecf20Sopenharmony_ci	VMX_PREEMPTION_TIMER_VALUE      = 0x0000482E,
3008c2ecf20Sopenharmony_ci	HOST_IA32_SYSENTER_CS           = 0x00004c00,
3018c2ecf20Sopenharmony_ci	CR0_GUEST_HOST_MASK             = 0x00006000,
3028c2ecf20Sopenharmony_ci	CR4_GUEST_HOST_MASK             = 0x00006002,
3038c2ecf20Sopenharmony_ci	CR0_READ_SHADOW                 = 0x00006004,
3048c2ecf20Sopenharmony_ci	CR4_READ_SHADOW                 = 0x00006006,
3058c2ecf20Sopenharmony_ci	CR3_TARGET_VALUE0               = 0x00006008,
3068c2ecf20Sopenharmony_ci	CR3_TARGET_VALUE1               = 0x0000600a,
3078c2ecf20Sopenharmony_ci	CR3_TARGET_VALUE2               = 0x0000600c,
3088c2ecf20Sopenharmony_ci	CR3_TARGET_VALUE3               = 0x0000600e,
3098c2ecf20Sopenharmony_ci	EXIT_QUALIFICATION              = 0x00006400,
3108c2ecf20Sopenharmony_ci	GUEST_LINEAR_ADDRESS            = 0x0000640a,
3118c2ecf20Sopenharmony_ci	GUEST_CR0                       = 0x00006800,
3128c2ecf20Sopenharmony_ci	GUEST_CR3                       = 0x00006802,
3138c2ecf20Sopenharmony_ci	GUEST_CR4                       = 0x00006804,
3148c2ecf20Sopenharmony_ci	GUEST_ES_BASE                   = 0x00006806,
3158c2ecf20Sopenharmony_ci	GUEST_CS_BASE                   = 0x00006808,
3168c2ecf20Sopenharmony_ci	GUEST_SS_BASE                   = 0x0000680a,
3178c2ecf20Sopenharmony_ci	GUEST_DS_BASE                   = 0x0000680c,
3188c2ecf20Sopenharmony_ci	GUEST_FS_BASE                   = 0x0000680e,
3198c2ecf20Sopenharmony_ci	GUEST_GS_BASE                   = 0x00006810,
3208c2ecf20Sopenharmony_ci	GUEST_LDTR_BASE                 = 0x00006812,
3218c2ecf20Sopenharmony_ci	GUEST_TR_BASE                   = 0x00006814,
3228c2ecf20Sopenharmony_ci	GUEST_GDTR_BASE                 = 0x00006816,
3238c2ecf20Sopenharmony_ci	GUEST_IDTR_BASE                 = 0x00006818,
3248c2ecf20Sopenharmony_ci	GUEST_DR7                       = 0x0000681a,
3258c2ecf20Sopenharmony_ci	GUEST_RSP                       = 0x0000681c,
3268c2ecf20Sopenharmony_ci	GUEST_RIP                       = 0x0000681e,
3278c2ecf20Sopenharmony_ci	GUEST_RFLAGS                    = 0x00006820,
3288c2ecf20Sopenharmony_ci	GUEST_PENDING_DBG_EXCEPTIONS    = 0x00006822,
3298c2ecf20Sopenharmony_ci	GUEST_SYSENTER_ESP              = 0x00006824,
3308c2ecf20Sopenharmony_ci	GUEST_SYSENTER_EIP              = 0x00006826,
3318c2ecf20Sopenharmony_ci	HOST_CR0                        = 0x00006c00,
3328c2ecf20Sopenharmony_ci	HOST_CR3                        = 0x00006c02,
3338c2ecf20Sopenharmony_ci	HOST_CR4                        = 0x00006c04,
3348c2ecf20Sopenharmony_ci	HOST_FS_BASE                    = 0x00006c06,
3358c2ecf20Sopenharmony_ci	HOST_GS_BASE                    = 0x00006c08,
3368c2ecf20Sopenharmony_ci	HOST_TR_BASE                    = 0x00006c0a,
3378c2ecf20Sopenharmony_ci	HOST_GDTR_BASE                  = 0x00006c0c,
3388c2ecf20Sopenharmony_ci	HOST_IDTR_BASE                  = 0x00006c0e,
3398c2ecf20Sopenharmony_ci	HOST_IA32_SYSENTER_ESP          = 0x00006c10,
3408c2ecf20Sopenharmony_ci	HOST_IA32_SYSENTER_EIP          = 0x00006c12,
3418c2ecf20Sopenharmony_ci	HOST_RSP                        = 0x00006c14,
3428c2ecf20Sopenharmony_ci	HOST_RIP                        = 0x00006c16,
3438c2ecf20Sopenharmony_ci};
3448c2ecf20Sopenharmony_ci
3458c2ecf20Sopenharmony_ci/*
3468c2ecf20Sopenharmony_ci * Interruption-information format
3478c2ecf20Sopenharmony_ci */
3488c2ecf20Sopenharmony_ci#define INTR_INFO_VECTOR_MASK           0xff            /* 7:0 */
3498c2ecf20Sopenharmony_ci#define INTR_INFO_INTR_TYPE_MASK        0x700           /* 10:8 */
3508c2ecf20Sopenharmony_ci#define INTR_INFO_DELIVER_CODE_MASK     0x800           /* 11 */
3518c2ecf20Sopenharmony_ci#define INTR_INFO_UNBLOCK_NMI		0x1000		/* 12 */
3528c2ecf20Sopenharmony_ci#define INTR_INFO_VALID_MASK            0x80000000      /* 31 */
3538c2ecf20Sopenharmony_ci#define INTR_INFO_RESVD_BITS_MASK       0x7ffff000
3548c2ecf20Sopenharmony_ci
3558c2ecf20Sopenharmony_ci#define VECTORING_INFO_VECTOR_MASK           	INTR_INFO_VECTOR_MASK
3568c2ecf20Sopenharmony_ci#define VECTORING_INFO_TYPE_MASK        	INTR_INFO_INTR_TYPE_MASK
3578c2ecf20Sopenharmony_ci#define VECTORING_INFO_DELIVER_CODE_MASK    	INTR_INFO_DELIVER_CODE_MASK
3588c2ecf20Sopenharmony_ci#define VECTORING_INFO_VALID_MASK       	INTR_INFO_VALID_MASK
3598c2ecf20Sopenharmony_ci
3608c2ecf20Sopenharmony_ci#define INTR_TYPE_EXT_INTR              (0 << 8) /* external interrupt */
3618c2ecf20Sopenharmony_ci#define INTR_TYPE_RESERVED              (1 << 8) /* reserved */
3628c2ecf20Sopenharmony_ci#define INTR_TYPE_NMI_INTR		(2 << 8) /* NMI */
3638c2ecf20Sopenharmony_ci#define INTR_TYPE_HARD_EXCEPTION	(3 << 8) /* processor exception */
3648c2ecf20Sopenharmony_ci#define INTR_TYPE_SOFT_INTR             (4 << 8) /* software interrupt */
3658c2ecf20Sopenharmony_ci#define INTR_TYPE_PRIV_SW_EXCEPTION	(5 << 8) /* ICE breakpoint - undocumented */
3668c2ecf20Sopenharmony_ci#define INTR_TYPE_SOFT_EXCEPTION	(6 << 8) /* software exception */
3678c2ecf20Sopenharmony_ci#define INTR_TYPE_OTHER_EVENT           (7 << 8) /* other event */
3688c2ecf20Sopenharmony_ci
3698c2ecf20Sopenharmony_ci/* GUEST_INTERRUPTIBILITY_INFO flags. */
3708c2ecf20Sopenharmony_ci#define GUEST_INTR_STATE_STI		0x00000001
3718c2ecf20Sopenharmony_ci#define GUEST_INTR_STATE_MOV_SS		0x00000002
3728c2ecf20Sopenharmony_ci#define GUEST_INTR_STATE_SMI		0x00000004
3738c2ecf20Sopenharmony_ci#define GUEST_INTR_STATE_NMI		0x00000008
3748c2ecf20Sopenharmony_ci
3758c2ecf20Sopenharmony_ci/* GUEST_ACTIVITY_STATE flags */
3768c2ecf20Sopenharmony_ci#define GUEST_ACTIVITY_ACTIVE		0
3778c2ecf20Sopenharmony_ci#define GUEST_ACTIVITY_HLT		1
3788c2ecf20Sopenharmony_ci#define GUEST_ACTIVITY_SHUTDOWN		2
3798c2ecf20Sopenharmony_ci#define GUEST_ACTIVITY_WAIT_SIPI	3
3808c2ecf20Sopenharmony_ci
3818c2ecf20Sopenharmony_ci/*
3828c2ecf20Sopenharmony_ci * Exit Qualifications for MOV for Control Register Access
3838c2ecf20Sopenharmony_ci */
3848c2ecf20Sopenharmony_ci#define CONTROL_REG_ACCESS_NUM          0x7     /* 2:0, number of control reg.*/
3858c2ecf20Sopenharmony_ci#define CONTROL_REG_ACCESS_TYPE         0x30    /* 5:4, access type */
3868c2ecf20Sopenharmony_ci#define CONTROL_REG_ACCESS_REG          0xf00   /* 10:8, general purpose reg. */
3878c2ecf20Sopenharmony_ci#define LMSW_SOURCE_DATA_SHIFT 16
3888c2ecf20Sopenharmony_ci#define LMSW_SOURCE_DATA  (0xFFFF << LMSW_SOURCE_DATA_SHIFT) /* 16:31 lmsw source */
3898c2ecf20Sopenharmony_ci#define REG_EAX                         (0 << 8)
3908c2ecf20Sopenharmony_ci#define REG_ECX                         (1 << 8)
3918c2ecf20Sopenharmony_ci#define REG_EDX                         (2 << 8)
3928c2ecf20Sopenharmony_ci#define REG_EBX                         (3 << 8)
3938c2ecf20Sopenharmony_ci#define REG_ESP                         (4 << 8)
3948c2ecf20Sopenharmony_ci#define REG_EBP                         (5 << 8)
3958c2ecf20Sopenharmony_ci#define REG_ESI                         (6 << 8)
3968c2ecf20Sopenharmony_ci#define REG_EDI                         (7 << 8)
3978c2ecf20Sopenharmony_ci#define REG_R8                         (8 << 8)
3988c2ecf20Sopenharmony_ci#define REG_R9                         (9 << 8)
3998c2ecf20Sopenharmony_ci#define REG_R10                        (10 << 8)
4008c2ecf20Sopenharmony_ci#define REG_R11                        (11 << 8)
4018c2ecf20Sopenharmony_ci#define REG_R12                        (12 << 8)
4028c2ecf20Sopenharmony_ci#define REG_R13                        (13 << 8)
4038c2ecf20Sopenharmony_ci#define REG_R14                        (14 << 8)
4048c2ecf20Sopenharmony_ci#define REG_R15                        (15 << 8)
4058c2ecf20Sopenharmony_ci
4068c2ecf20Sopenharmony_ci/*
4078c2ecf20Sopenharmony_ci * Exit Qualifications for MOV for Debug Register Access
4088c2ecf20Sopenharmony_ci */
4098c2ecf20Sopenharmony_ci#define DEBUG_REG_ACCESS_NUM            0x7     /* 2:0, number of debug reg. */
4108c2ecf20Sopenharmony_ci#define DEBUG_REG_ACCESS_TYPE           0x10    /* 4, direction of access */
4118c2ecf20Sopenharmony_ci#define TYPE_MOV_TO_DR                  (0 << 4)
4128c2ecf20Sopenharmony_ci#define TYPE_MOV_FROM_DR                (1 << 4)
4138c2ecf20Sopenharmony_ci#define DEBUG_REG_ACCESS_REG(eq)        (((eq) >> 8) & 0xf) /* 11:8, general purpose reg. */
4148c2ecf20Sopenharmony_ci
4158c2ecf20Sopenharmony_ci
4168c2ecf20Sopenharmony_ci/*
4178c2ecf20Sopenharmony_ci * Exit Qualifications for APIC-Access
4188c2ecf20Sopenharmony_ci */
4198c2ecf20Sopenharmony_ci#define APIC_ACCESS_OFFSET              0xfff   /* 11:0, offset within the APIC page */
4208c2ecf20Sopenharmony_ci#define APIC_ACCESS_TYPE                0xf000  /* 15:12, access type */
4218c2ecf20Sopenharmony_ci#define TYPE_LINEAR_APIC_INST_READ      (0 << 12)
4228c2ecf20Sopenharmony_ci#define TYPE_LINEAR_APIC_INST_WRITE     (1 << 12)
4238c2ecf20Sopenharmony_ci#define TYPE_LINEAR_APIC_INST_FETCH     (2 << 12)
4248c2ecf20Sopenharmony_ci#define TYPE_LINEAR_APIC_EVENT          (3 << 12)
4258c2ecf20Sopenharmony_ci#define TYPE_PHYSICAL_APIC_EVENT        (10 << 12)
4268c2ecf20Sopenharmony_ci#define TYPE_PHYSICAL_APIC_INST         (15 << 12)
4278c2ecf20Sopenharmony_ci
4288c2ecf20Sopenharmony_ci/* segment AR in VMCS -- these are different from what LAR reports */
4298c2ecf20Sopenharmony_ci#define VMX_SEGMENT_AR_L_MASK (1 << 13)
4308c2ecf20Sopenharmony_ci
4318c2ecf20Sopenharmony_ci#define VMX_AR_TYPE_ACCESSES_MASK 1
4328c2ecf20Sopenharmony_ci#define VMX_AR_TYPE_READABLE_MASK (1 << 1)
4338c2ecf20Sopenharmony_ci#define VMX_AR_TYPE_WRITEABLE_MASK (1 << 2)
4348c2ecf20Sopenharmony_ci#define VMX_AR_TYPE_CODE_MASK (1 << 3)
4358c2ecf20Sopenharmony_ci#define VMX_AR_TYPE_MASK 0x0f
4368c2ecf20Sopenharmony_ci#define VMX_AR_TYPE_BUSY_64_TSS 11
4378c2ecf20Sopenharmony_ci#define VMX_AR_TYPE_BUSY_32_TSS 11
4388c2ecf20Sopenharmony_ci#define VMX_AR_TYPE_BUSY_16_TSS 3
4398c2ecf20Sopenharmony_ci#define VMX_AR_TYPE_LDT 2
4408c2ecf20Sopenharmony_ci
4418c2ecf20Sopenharmony_ci#define VMX_AR_UNUSABLE_MASK (1 << 16)
4428c2ecf20Sopenharmony_ci#define VMX_AR_S_MASK (1 << 4)
4438c2ecf20Sopenharmony_ci#define VMX_AR_P_MASK (1 << 7)
4448c2ecf20Sopenharmony_ci#define VMX_AR_L_MASK (1 << 13)
4458c2ecf20Sopenharmony_ci#define VMX_AR_DB_MASK (1 << 14)
4468c2ecf20Sopenharmony_ci#define VMX_AR_G_MASK (1 << 15)
4478c2ecf20Sopenharmony_ci#define VMX_AR_DPL_SHIFT 5
4488c2ecf20Sopenharmony_ci#define VMX_AR_DPL(ar) (((ar) >> VMX_AR_DPL_SHIFT) & 3)
4498c2ecf20Sopenharmony_ci
4508c2ecf20Sopenharmony_ci#define VMX_AR_RESERVD_MASK 0xfffe0f00
4518c2ecf20Sopenharmony_ci
4528c2ecf20Sopenharmony_ci#define TSS_PRIVATE_MEMSLOT			(KVM_USER_MEM_SLOTS + 0)
4538c2ecf20Sopenharmony_ci#define APIC_ACCESS_PAGE_PRIVATE_MEMSLOT	(KVM_USER_MEM_SLOTS + 1)
4548c2ecf20Sopenharmony_ci#define IDENTITY_PAGETABLE_PRIVATE_MEMSLOT	(KVM_USER_MEM_SLOTS + 2)
4558c2ecf20Sopenharmony_ci
4568c2ecf20Sopenharmony_ci#define VMX_NR_VPIDS				(1 << 16)
4578c2ecf20Sopenharmony_ci#define VMX_VPID_EXTENT_INDIVIDUAL_ADDR		0
4588c2ecf20Sopenharmony_ci#define VMX_VPID_EXTENT_SINGLE_CONTEXT		1
4598c2ecf20Sopenharmony_ci#define VMX_VPID_EXTENT_ALL_CONTEXT		2
4608c2ecf20Sopenharmony_ci#define VMX_VPID_EXTENT_SINGLE_NON_GLOBAL	3
4618c2ecf20Sopenharmony_ci
4628c2ecf20Sopenharmony_ci#define VMX_EPT_EXTENT_CONTEXT			1
4638c2ecf20Sopenharmony_ci#define VMX_EPT_EXTENT_GLOBAL			2
4648c2ecf20Sopenharmony_ci#define VMX_EPT_EXTENT_SHIFT			24
4658c2ecf20Sopenharmony_ci
4668c2ecf20Sopenharmony_ci#define VMX_EPT_EXECUTE_ONLY_BIT		(1ull)
4678c2ecf20Sopenharmony_ci#define VMX_EPT_PAGE_WALK_4_BIT			(1ull << 6)
4688c2ecf20Sopenharmony_ci#define VMX_EPT_PAGE_WALK_5_BIT			(1ull << 7)
4698c2ecf20Sopenharmony_ci#define VMX_EPTP_UC_BIT				(1ull << 8)
4708c2ecf20Sopenharmony_ci#define VMX_EPTP_WB_BIT				(1ull << 14)
4718c2ecf20Sopenharmony_ci#define VMX_EPT_2MB_PAGE_BIT			(1ull << 16)
4728c2ecf20Sopenharmony_ci#define VMX_EPT_1GB_PAGE_BIT			(1ull << 17)
4738c2ecf20Sopenharmony_ci#define VMX_EPT_INVEPT_BIT			(1ull << 20)
4748c2ecf20Sopenharmony_ci#define VMX_EPT_AD_BIT				    (1ull << 21)
4758c2ecf20Sopenharmony_ci#define VMX_EPT_EXTENT_CONTEXT_BIT		(1ull << 25)
4768c2ecf20Sopenharmony_ci#define VMX_EPT_EXTENT_GLOBAL_BIT		(1ull << 26)
4778c2ecf20Sopenharmony_ci
4788c2ecf20Sopenharmony_ci#define VMX_VPID_INVVPID_BIT                    (1ull << 0) /* (32 - 32) */
4798c2ecf20Sopenharmony_ci#define VMX_VPID_EXTENT_INDIVIDUAL_ADDR_BIT     (1ull << 8) /* (40 - 32) */
4808c2ecf20Sopenharmony_ci#define VMX_VPID_EXTENT_SINGLE_CONTEXT_BIT      (1ull << 9) /* (41 - 32) */
4818c2ecf20Sopenharmony_ci#define VMX_VPID_EXTENT_GLOBAL_CONTEXT_BIT      (1ull << 10) /* (42 - 32) */
4828c2ecf20Sopenharmony_ci#define VMX_VPID_EXTENT_SINGLE_NON_GLOBAL_BIT   (1ull << 11) /* (43 - 32) */
4838c2ecf20Sopenharmony_ci
4848c2ecf20Sopenharmony_ci#define VMX_EPT_MT_EPTE_SHIFT			3
4858c2ecf20Sopenharmony_ci#define VMX_EPTP_PWL_MASK			0x38ull
4868c2ecf20Sopenharmony_ci#define VMX_EPTP_PWL_4				0x18ull
4878c2ecf20Sopenharmony_ci#define VMX_EPTP_PWL_5				0x20ull
4888c2ecf20Sopenharmony_ci#define VMX_EPTP_AD_ENABLE_BIT			(1ull << 6)
4898c2ecf20Sopenharmony_ci#define VMX_EPTP_MT_MASK			0x7ull
4908c2ecf20Sopenharmony_ci#define VMX_EPTP_MT_WB				0x6ull
4918c2ecf20Sopenharmony_ci#define VMX_EPTP_MT_UC				0x0ull
4928c2ecf20Sopenharmony_ci#define VMX_EPT_READABLE_MASK			0x1ull
4938c2ecf20Sopenharmony_ci#define VMX_EPT_WRITABLE_MASK			0x2ull
4948c2ecf20Sopenharmony_ci#define VMX_EPT_EXECUTABLE_MASK			0x4ull
4958c2ecf20Sopenharmony_ci#define VMX_EPT_IPAT_BIT    			(1ull << 6)
4968c2ecf20Sopenharmony_ci#define VMX_EPT_ACCESS_BIT			(1ull << 8)
4978c2ecf20Sopenharmony_ci#define VMX_EPT_DIRTY_BIT			(1ull << 9)
4988c2ecf20Sopenharmony_ci#define VMX_EPT_RWX_MASK                        (VMX_EPT_READABLE_MASK |       \
4998c2ecf20Sopenharmony_ci						 VMX_EPT_WRITABLE_MASK |       \
5008c2ecf20Sopenharmony_ci						 VMX_EPT_EXECUTABLE_MASK)
5018c2ecf20Sopenharmony_ci#define VMX_EPT_MT_MASK				(7ull << VMX_EPT_MT_EPTE_SHIFT)
5028c2ecf20Sopenharmony_ci
5038c2ecf20Sopenharmony_cistatic inline u8 vmx_eptp_page_walk_level(u64 eptp)
5048c2ecf20Sopenharmony_ci{
5058c2ecf20Sopenharmony_ci	u64 encoded_level = eptp & VMX_EPTP_PWL_MASK;
5068c2ecf20Sopenharmony_ci
5078c2ecf20Sopenharmony_ci	if (encoded_level == VMX_EPTP_PWL_5)
5088c2ecf20Sopenharmony_ci		return 5;
5098c2ecf20Sopenharmony_ci
5108c2ecf20Sopenharmony_ci	/* @eptp must be pre-validated by the caller. */
5118c2ecf20Sopenharmony_ci	WARN_ON_ONCE(encoded_level != VMX_EPTP_PWL_4);
5128c2ecf20Sopenharmony_ci	return 4;
5138c2ecf20Sopenharmony_ci}
5148c2ecf20Sopenharmony_ci
5158c2ecf20Sopenharmony_ci/* The mask to use to trigger an EPT Misconfiguration in order to track MMIO */
5168c2ecf20Sopenharmony_ci#define VMX_EPT_MISCONFIG_WX_VALUE		(VMX_EPT_WRITABLE_MASK |       \
5178c2ecf20Sopenharmony_ci						 VMX_EPT_EXECUTABLE_MASK)
5188c2ecf20Sopenharmony_ci
5198c2ecf20Sopenharmony_ci#define VMX_EPT_IDENTITY_PAGETABLE_ADDR		0xfffbc000ul
5208c2ecf20Sopenharmony_ci
5218c2ecf20Sopenharmony_cistruct vmx_msr_entry {
5228c2ecf20Sopenharmony_ci	u32 index;
5238c2ecf20Sopenharmony_ci	u32 reserved;
5248c2ecf20Sopenharmony_ci	u64 value;
5258c2ecf20Sopenharmony_ci} __aligned(16);
5268c2ecf20Sopenharmony_ci
5278c2ecf20Sopenharmony_ci/*
5288c2ecf20Sopenharmony_ci * Exit Qualifications for entry failure during or after loading guest state
5298c2ecf20Sopenharmony_ci */
5308c2ecf20Sopenharmony_cienum vm_entry_failure_code {
5318c2ecf20Sopenharmony_ci	ENTRY_FAIL_DEFAULT		= 0,
5328c2ecf20Sopenharmony_ci	ENTRY_FAIL_PDPTE		= 2,
5338c2ecf20Sopenharmony_ci	ENTRY_FAIL_NMI			= 3,
5348c2ecf20Sopenharmony_ci	ENTRY_FAIL_VMCS_LINK_PTR	= 4,
5358c2ecf20Sopenharmony_ci};
5368c2ecf20Sopenharmony_ci
5378c2ecf20Sopenharmony_ci/*
5388c2ecf20Sopenharmony_ci * Exit Qualifications for EPT Violations
5398c2ecf20Sopenharmony_ci */
5408c2ecf20Sopenharmony_ci#define EPT_VIOLATION_ACC_READ_BIT	0
5418c2ecf20Sopenharmony_ci#define EPT_VIOLATION_ACC_WRITE_BIT	1
5428c2ecf20Sopenharmony_ci#define EPT_VIOLATION_ACC_INSTR_BIT	2
5438c2ecf20Sopenharmony_ci#define EPT_VIOLATION_READABLE_BIT	3
5448c2ecf20Sopenharmony_ci#define EPT_VIOLATION_WRITABLE_BIT	4
5458c2ecf20Sopenharmony_ci#define EPT_VIOLATION_EXECUTABLE_BIT	5
5468c2ecf20Sopenharmony_ci#define EPT_VIOLATION_GVA_TRANSLATED_BIT 8
5478c2ecf20Sopenharmony_ci#define EPT_VIOLATION_ACC_READ		(1 << EPT_VIOLATION_ACC_READ_BIT)
5488c2ecf20Sopenharmony_ci#define EPT_VIOLATION_ACC_WRITE		(1 << EPT_VIOLATION_ACC_WRITE_BIT)
5498c2ecf20Sopenharmony_ci#define EPT_VIOLATION_ACC_INSTR		(1 << EPT_VIOLATION_ACC_INSTR_BIT)
5508c2ecf20Sopenharmony_ci#define EPT_VIOLATION_READABLE		(1 << EPT_VIOLATION_READABLE_BIT)
5518c2ecf20Sopenharmony_ci#define EPT_VIOLATION_WRITABLE		(1 << EPT_VIOLATION_WRITABLE_BIT)
5528c2ecf20Sopenharmony_ci#define EPT_VIOLATION_EXECUTABLE	(1 << EPT_VIOLATION_EXECUTABLE_BIT)
5538c2ecf20Sopenharmony_ci#define EPT_VIOLATION_GVA_TRANSLATED	(1 << EPT_VIOLATION_GVA_TRANSLATED_BIT)
5548c2ecf20Sopenharmony_ci
5558c2ecf20Sopenharmony_ci/*
5568c2ecf20Sopenharmony_ci * VM-instruction error numbers
5578c2ecf20Sopenharmony_ci */
5588c2ecf20Sopenharmony_cienum vm_instruction_error_number {
5598c2ecf20Sopenharmony_ci	VMXERR_VMCALL_IN_VMX_ROOT_OPERATION = 1,
5608c2ecf20Sopenharmony_ci	VMXERR_VMCLEAR_INVALID_ADDRESS = 2,
5618c2ecf20Sopenharmony_ci	VMXERR_VMCLEAR_VMXON_POINTER = 3,
5628c2ecf20Sopenharmony_ci	VMXERR_VMLAUNCH_NONCLEAR_VMCS = 4,
5638c2ecf20Sopenharmony_ci	VMXERR_VMRESUME_NONLAUNCHED_VMCS = 5,
5648c2ecf20Sopenharmony_ci	VMXERR_VMRESUME_AFTER_VMXOFF = 6,
5658c2ecf20Sopenharmony_ci	VMXERR_ENTRY_INVALID_CONTROL_FIELD = 7,
5668c2ecf20Sopenharmony_ci	VMXERR_ENTRY_INVALID_HOST_STATE_FIELD = 8,
5678c2ecf20Sopenharmony_ci	VMXERR_VMPTRLD_INVALID_ADDRESS = 9,
5688c2ecf20Sopenharmony_ci	VMXERR_VMPTRLD_VMXON_POINTER = 10,
5698c2ecf20Sopenharmony_ci	VMXERR_VMPTRLD_INCORRECT_VMCS_REVISION_ID = 11,
5708c2ecf20Sopenharmony_ci	VMXERR_UNSUPPORTED_VMCS_COMPONENT = 12,
5718c2ecf20Sopenharmony_ci	VMXERR_VMWRITE_READ_ONLY_VMCS_COMPONENT = 13,
5728c2ecf20Sopenharmony_ci	VMXERR_VMXON_IN_VMX_ROOT_OPERATION = 15,
5738c2ecf20Sopenharmony_ci	VMXERR_ENTRY_INVALID_EXECUTIVE_VMCS_POINTER = 16,
5748c2ecf20Sopenharmony_ci	VMXERR_ENTRY_NONLAUNCHED_EXECUTIVE_VMCS = 17,
5758c2ecf20Sopenharmony_ci	VMXERR_ENTRY_EXECUTIVE_VMCS_POINTER_NOT_VMXON_POINTER = 18,
5768c2ecf20Sopenharmony_ci	VMXERR_VMCALL_NONCLEAR_VMCS = 19,
5778c2ecf20Sopenharmony_ci	VMXERR_VMCALL_INVALID_VM_EXIT_CONTROL_FIELDS = 20,
5788c2ecf20Sopenharmony_ci	VMXERR_VMCALL_INCORRECT_MSEG_REVISION_ID = 22,
5798c2ecf20Sopenharmony_ci	VMXERR_VMXOFF_UNDER_DUAL_MONITOR_TREATMENT_OF_SMIS_AND_SMM = 23,
5808c2ecf20Sopenharmony_ci	VMXERR_VMCALL_INVALID_SMM_MONITOR_FEATURES = 24,
5818c2ecf20Sopenharmony_ci	VMXERR_ENTRY_INVALID_VM_EXECUTION_CONTROL_FIELDS_IN_EXECUTIVE_VMCS = 25,
5828c2ecf20Sopenharmony_ci	VMXERR_ENTRY_EVENTS_BLOCKED_BY_MOV_SS = 26,
5838c2ecf20Sopenharmony_ci	VMXERR_INVALID_OPERAND_TO_INVEPT_INVVPID = 28,
5848c2ecf20Sopenharmony_ci};
5858c2ecf20Sopenharmony_ci
5868c2ecf20Sopenharmony_ci/*
5878c2ecf20Sopenharmony_ci * VM-instruction errors that can be encountered on VM-Enter, used to trace
5888c2ecf20Sopenharmony_ci * nested VM-Enter failures reported by hardware.  Errors unique to VM-Enter
5898c2ecf20Sopenharmony_ci * from a SMI Transfer Monitor are not included as things have gone seriously
5908c2ecf20Sopenharmony_ci * sideways if we get one of those...
5918c2ecf20Sopenharmony_ci */
5928c2ecf20Sopenharmony_ci#define VMX_VMENTER_INSTRUCTION_ERRORS \
5938c2ecf20Sopenharmony_ci	{ VMXERR_VMLAUNCH_NONCLEAR_VMCS,		"VMLAUNCH_NONCLEAR_VMCS" }, \
5948c2ecf20Sopenharmony_ci	{ VMXERR_VMRESUME_NONLAUNCHED_VMCS,		"VMRESUME_NONLAUNCHED_VMCS" }, \
5958c2ecf20Sopenharmony_ci	{ VMXERR_VMRESUME_AFTER_VMXOFF,			"VMRESUME_AFTER_VMXOFF" }, \
5968c2ecf20Sopenharmony_ci	{ VMXERR_ENTRY_INVALID_CONTROL_FIELD,		"VMENTRY_INVALID_CONTROL_FIELD" }, \
5978c2ecf20Sopenharmony_ci	{ VMXERR_ENTRY_INVALID_HOST_STATE_FIELD,	"VMENTRY_INVALID_HOST_STATE_FIELD" }, \
5988c2ecf20Sopenharmony_ci	{ VMXERR_ENTRY_EVENTS_BLOCKED_BY_MOV_SS,	"VMENTRY_EVENTS_BLOCKED_BY_MOV_SS" }
5998c2ecf20Sopenharmony_ci
6008c2ecf20Sopenharmony_cienum vmx_l1d_flush_state {
6018c2ecf20Sopenharmony_ci	VMENTER_L1D_FLUSH_AUTO,
6028c2ecf20Sopenharmony_ci	VMENTER_L1D_FLUSH_NEVER,
6038c2ecf20Sopenharmony_ci	VMENTER_L1D_FLUSH_COND,
6048c2ecf20Sopenharmony_ci	VMENTER_L1D_FLUSH_ALWAYS,
6058c2ecf20Sopenharmony_ci	VMENTER_L1D_FLUSH_EPT_DISABLED,
6068c2ecf20Sopenharmony_ci	VMENTER_L1D_FLUSH_NOT_REQUIRED,
6078c2ecf20Sopenharmony_ci};
6088c2ecf20Sopenharmony_ci
6098c2ecf20Sopenharmony_ciextern enum vmx_l1d_flush_state l1tf_vmx_mitigation;
6108c2ecf20Sopenharmony_ci
6118c2ecf20Sopenharmony_ci#endif
612