[RFC PATCH 02/42] KVM: x86: Arch header for kvm to export TDP for Intel

From: Yan Zhao
Date: Sat Dec 02 2023 - 04:44:13 EST


Headers to define Intel specific meta data for TDP page tables exported by
KVM.
The meta data includes page table type, level, HPA of root page, max huge
page level, and reserved zero bits currently.
(Note, each vendor can define their own meta data format .e.g. it could be
kvm_exported_tdp_meta_svm on AMD platform.)

The consumer of the exported TDP (e.g. Intel vt-d driver) can retrieve and
check the vendor specific meta data before loading the KVM exported TDP
page tables to their own secondary MMU.

Signed-off-by: Yan Zhao <yan.y.zhao@xxxxxxxxx>
---
arch/x86/include/asm/kvm_exported_tdp.h | 43 +++++++++++++++++++++++++
include/linux/kvm_types.h | 12 +++++++
2 files changed, 55 insertions(+)
create mode 100644 arch/x86/include/asm/kvm_exported_tdp.h

diff --git a/arch/x86/include/asm/kvm_exported_tdp.h b/arch/x86/include/asm/kvm_exported_tdp.h
new file mode 100644
index 0000000000000..c7fe3f3cf89fb
--- /dev/null
+++ b/arch/x86/include/asm/kvm_exported_tdp.h
@@ -0,0 +1,43 @@
+/* SPDX-License-Identifier: GPL-2.0 */
+#ifndef _ASM_X86_KVM_EXPORTED_TDP_H
+#define _ASM_X86_KVM_EXPORTED_TDP_H
+#define PT64_ROOT_MAX_LEVEL 5
+
+#include <linux/kvm_types.h>
+/**
+ * struct kvm_exported_tdp_meta_vmx - Intel specific meta data format of TDP
+ * page tables exported by KVM.
+ *
+ * Importers of KVM exported TDPs can decode meta data of the page tables with
+ * this structure.
+ *
+ * @type: Type defined across platforms to identify hardware
+ * platform of a KVM exported TDP. Importers of KVM
+ * exported TDP need to first check the type before
+ * decoding page table meta data.
+ * @level: Levels of the TDP exported by KVM.
+ * @root_hpa: HPA of the root page of TDP exported by KVM.
+ * @max_huge_page_level: Max huge page level allowed on the TDP exported by KVM.
+ * @rsvd_bits_mask: The must-be-zero bits of leaf and non-leaf PTEs.
+ * rsvd_bits_mask[0] or rsvd_bits_mask[1] is selected by
+ * bit 7 or a PTE.
+ * This field is provided as a way for importers to check
+ * if the must-be-zero bits from KVM is compatible to the
+ * importer side. KVM will ensure that the must-be-zero
+ * bits must not be set even for software purpose.
+ * (e.g. on Intel platform, bit 11 is usually used by KVM
+ * to identify a present SPTE, though bit 11 is ignored by
+ * EPT. However, Intel vt-d requires the bit 11 to be 0.
+ * Before importing KVM TDP, Intel vt-d driver needs to
+ * check if bit 11 is set in the must-be-zero bits by KVM
+ * to avoid possible DMAR fault.)
+ */
+struct kvm_exported_tdp_meta_vmx {
+ enum kvm_exported_tdp_type type;
+ int level;
+ hpa_t root_hpa;
+ int max_huge_page_level;
+ u64 rsvd_bits_mask[2][PT64_ROOT_MAX_LEVEL];
+};
+
+#endif
diff --git a/include/linux/kvm_types.h b/include/linux/kvm_types.h
index 6f4737d5046a4..04deb8334ce42 100644
--- a/include/linux/kvm_types.h
+++ b/include/linux/kvm_types.h
@@ -123,4 +123,16 @@ struct kvm_vcpu_stat_generic {

#define KVM_STATS_NAME_SIZE 48

+/**
+ * enum kvm_exported_tdp_type - Type defined across platforms for TDP exported
+ * by KVM.
+ *
+ * @KVM_TDP_TYPE_EPT: The TDP is of type EPT running on Intel platform.
+ *
+ * Currently, @KVM_TDP_TYPE_EPT is the only supported type for TDPs exported by
+ * KVM.
+ */
+enum kvm_exported_tdp_type {
+ KVM_TDP_TYPE_EPT = 1,
+};
#endif /* __KVM_TYPES_H__ */
--
2.17.1