From: Binbin Wu <binbin.wu@linux.intel.com>
To: Xiaoyao Li <xiaoyao.li@intel.com>
Cc: "Kirill A. Shutemov" <kas@kernel.org>,
Dave Hansen <dave.hansen@linux.intel.com>,
Sean Christopherson <seanjc@google.com>,
Paolo Bonzini <pbonzini@redhat.com>,
Thomas Gleixner <tglx@linutronix.de>,
Ingo Molnar <mingo@redhat.com>, Borislav Petkov <bp@alien8.de>,
"H. Peter Anvin" <hpa@zytor.com>,
linux-coco@lists.linux.dev, kvm@vger.kernel.org,
linux-kernel@vger.kernel.org, x86@kernel.org,
Rick Edgecombe <rick.p.edgecombe@intel.com>,
Kai Huang <kai.huang@intel.com>,
yan.y.zhao@intel.com, reinette.chatre@intel.com,
adrian.hunter@intel.com, tony.lindgren@intel.com
Subject: Re: [PATCH v3 3/4] x86/tdx: Rename TDX_ATTR_* to TDX_TD_ATTR_*
Date: Thu, 17 Jul 2025 09:27:46 +0800 [thread overview]
Message-ID: <4475637c-4d34-4037-8f43-8b8280617554@linux.intel.com> (raw)
In-Reply-To: <20250715091312.563773-4-xiaoyao.li@intel.com>
On 7/15/2025 5:13 PM, Xiaoyao Li wrote:
> The macros TDX_ATTR_* and DEF_TDX_ATTR_* are related to TD attributes,
> which are TD-scope attributes. Naming them as TDX_ATTR_* can be somewhat
> confusing and might mislead people into thinking they are TDX global
> things.
It seems that tdx_attributes is limited to hold td attributes.
For the same reason, is it better to rename tdx_attributes to tdx_td_attributes?
Otherwise,
Reviewed-by: Binbin Wu <binbin.wu@linux.intel.com>
> Rename TDX_ATTR_* to TDX_TD_ATTR_* to explicitly clarify they are
> TD-scope things.
>
> Suggested-by: Rick Edgecombe <rick.p.edgecombe@intel.com>
> Signed-off-by: Xiaoyao Li <xiaoyao.li@intel.com>
> ---
> arch/x86/coco/tdx/debug.c | 26 ++++++++--------
> arch/x86/coco/tdx/tdx.c | 8 ++---
> arch/x86/include/asm/shared/tdx.h | 50 +++++++++++++++----------------
> arch/x86/kvm/vmx/tdx.c | 4 +--
> 4 files changed, 44 insertions(+), 44 deletions(-)
>
> diff --git a/arch/x86/coco/tdx/debug.c b/arch/x86/coco/tdx/debug.c
> index 28990c2ab0a1..8e477db4ce0a 100644
> --- a/arch/x86/coco/tdx/debug.c
> +++ b/arch/x86/coco/tdx/debug.c
> @@ -7,21 +7,21 @@
> #include <linux/printk.h>
> #include <asm/tdx.h>
>
> -#define DEF_TDX_ATTR_NAME(_name) [TDX_ATTR_##_name##_BIT] = __stringify(_name)
> +#define DEF_TDX_TD_ATTR_NAME(_name) [TDX_TD_ATTR_##_name##_BIT] = __stringify(_name)
>
> static __initdata const char *tdx_attributes[] = {
> - DEF_TDX_ATTR_NAME(DEBUG),
> - DEF_TDX_ATTR_NAME(HGS_PLUS_PROF),
> - DEF_TDX_ATTR_NAME(PERF_PROF),
> - DEF_TDX_ATTR_NAME(PMT_PROF),
> - DEF_TDX_ATTR_NAME(ICSSD),
> - DEF_TDX_ATTR_NAME(LASS),
> - DEF_TDX_ATTR_NAME(SEPT_VE_DISABLE),
> - DEF_TDX_ATTR_NAME(MIGRATABLE),
> - DEF_TDX_ATTR_NAME(PKS),
> - DEF_TDX_ATTR_NAME(KL),
> - DEF_TDX_ATTR_NAME(TPA),
> - DEF_TDX_ATTR_NAME(PERFMON),
> + DEF_TDX_TD_ATTR_NAME(DEBUG),
> + DEF_TDX_TD_ATTR_NAME(HGS_PLUS_PROF),
> + DEF_TDX_TD_ATTR_NAME(PERF_PROF),
> + DEF_TDX_TD_ATTR_NAME(PMT_PROF),
> + DEF_TDX_TD_ATTR_NAME(ICSSD),
> + DEF_TDX_TD_ATTR_NAME(LASS),
> + DEF_TDX_TD_ATTR_NAME(SEPT_VE_DISABLE),
> + DEF_TDX_TD_ATTR_NAME(MIGRATABLE),
> + DEF_TDX_TD_ATTR_NAME(PKS),
> + DEF_TDX_TD_ATTR_NAME(KL),
> + DEF_TDX_TD_ATTR_NAME(TPA),
> + DEF_TDX_TD_ATTR_NAME(PERFMON),
> };
>
> #define DEF_TD_CTLS_NAME(_name) [TD_CTLS_##_name##_BIT] = __stringify(_name)
> diff --git a/arch/x86/coco/tdx/tdx.c b/arch/x86/coco/tdx/tdx.c
> index 7b2833705d47..186915a17c50 100644
> --- a/arch/x86/coco/tdx/tdx.c
> +++ b/arch/x86/coco/tdx/tdx.c
> @@ -238,14 +238,14 @@ static void __noreturn tdx_panic(const char *msg)
> *
> * TDX 1.0 does not allow the guest to disable SEPT #VE on its own. The VMM
> * controls if the guest will receive such #VE with TD attribute
> - * TDX_ATTR_SEPT_VE_DISABLE.
> + * TDX_TD_ATTR_SEPT_VE_DISABLE.
> *
> * Newer TDX modules allow the guest to control if it wants to receive SEPT
> * violation #VEs.
> *
> * Check if the feature is available and disable SEPT #VE if possible.
> *
> - * If the TD is allowed to disable/enable SEPT #VEs, the TDX_ATTR_SEPT_VE_DISABLE
> + * If the TD is allowed to disable/enable SEPT #VEs, the TDX_TD_ATTR_SEPT_VE_DISABLE
> * attribute is no longer reliable. It reflects the initial state of the
> * control for the TD, but it will not be updated if someone (e.g. bootloader)
> * changes it before the kernel starts. Kernel must check TDCS_TD_CTLS bit to
> @@ -254,14 +254,14 @@ static void __noreturn tdx_panic(const char *msg)
> static void disable_sept_ve(u64 td_attr)
> {
> const char *msg = "TD misconfiguration: SEPT #VE has to be disabled";
> - bool debug = td_attr & TDX_ATTR_DEBUG;
> + bool debug = td_attr & TDX_TD_ATTR_DEBUG;
> u64 config, controls;
>
> /* Is this TD allowed to disable SEPT #VE */
> tdg_vm_rd(TDCS_CONFIG_FLAGS, &config);
> if (!(config & TDCS_CONFIG_FLEXIBLE_PENDING_VE)) {
> /* No SEPT #VE controls for the guest: check the attribute */
> - if (td_attr & TDX_ATTR_SEPT_VE_DISABLE)
> + if (td_attr & TDX_TD_ATTR_SEPT_VE_DISABLE)
> return;
>
> /* Relax SEPT_VE_DISABLE check for debug TD for backtraces */
> diff --git a/arch/x86/include/asm/shared/tdx.h b/arch/x86/include/asm/shared/tdx.h
> index 11f3cf30b1ac..049638e3da74 100644
> --- a/arch/x86/include/asm/shared/tdx.h
> +++ b/arch/x86/include/asm/shared/tdx.h
> @@ -20,31 +20,31 @@
> #define TDG_VM_RD 7
> #define TDG_VM_WR 8
>
> -/* TDX attributes */
> -#define TDX_ATTR_DEBUG_BIT 0
> -#define TDX_ATTR_DEBUG BIT_ULL(TDX_ATTR_DEBUG_BIT)
> -#define TDX_ATTR_HGS_PLUS_PROF_BIT 4
> -#define TDX_ATTR_HGS_PLUS_PROF BIT_ULL(TDX_ATTR_HGS_PLUS_PROF_BIT)
> -#define TDX_ATTR_PERF_PROF_BIT 5
> -#define TDX_ATTR_PERF_PROF BIT_ULL(TDX_ATTR_PERF_PROF_BIT)
> -#define TDX_ATTR_PMT_PROF_BIT 6
> -#define TDX_ATTR_PMT_PROF BIT_ULL(TDX_ATTR_PMT_PROF_BIT)
> -#define TDX_ATTR_ICSSD_BIT 16
> -#define TDX_ATTR_ICSSD BIT_ULL(TDX_ATTR_ICSSD_BIT)
> -#define TDX_ATTR_LASS_BIT 27
> -#define TDX_ATTR_LASS BIT_ULL(TDX_ATTR_LASS_BIT)
> -#define TDX_ATTR_SEPT_VE_DISABLE_BIT 28
> -#define TDX_ATTR_SEPT_VE_DISABLE BIT_ULL(TDX_ATTR_SEPT_VE_DISABLE_BIT)
> -#define TDX_ATTR_MIGRATABLE_BIT 29
> -#define TDX_ATTR_MIGRATABLE BIT_ULL(TDX_ATTR_MIGRATABLE_BIT)
> -#define TDX_ATTR_PKS_BIT 30
> -#define TDX_ATTR_PKS BIT_ULL(TDX_ATTR_PKS_BIT)
> -#define TDX_ATTR_KL_BIT 31
> -#define TDX_ATTR_KL BIT_ULL(TDX_ATTR_KL_BIT)
> -#define TDX_ATTR_TPA_BIT 62
> -#define TDX_ATTR_TPA BIT_ULL(TDX_ATTR_TPA_BIT)
> -#define TDX_ATTR_PERFMON_BIT 63
> -#define TDX_ATTR_PERFMON BIT_ULL(TDX_ATTR_PERFMON_BIT)
> +/* TDX TD attributes */
> +#define TDX_TD_ATTR_DEBUG_BIT 0
> +#define TDX_TD_ATTR_DEBUG BIT_ULL(TDX_TD_ATTR_DEBUG_BIT)
> +#define TDX_TD_ATTR_HGS_PLUS_PROF_BIT 4
> +#define TDX_TD_ATTR_HGS_PLUS_PROF BIT_ULL(TDX_TD_ATTR_HGS_PLUS_PROF_BIT)
> +#define TDX_TD_ATTR_PERF_PROF_BIT 5
> +#define TDX_TD_ATTR_PERF_PROF BIT_ULL(TDX_TD_ATTR_PERF_PROF_BIT)
> +#define TDX_TD_ATTR_PMT_PROF_BIT 6
> +#define TDX_TD_ATTR_PMT_PROF BIT_ULL(TDX_TD_ATTR_PMT_PROF_BIT)
> +#define TDX_TD_ATTR_ICSSD_BIT 16
> +#define TDX_TD_ATTR_ICSSD BIT_ULL(TDX_TD_ATTR_ICSSD_BIT)
> +#define TDX_TD_ATTR_LASS_BIT 27
> +#define TDX_TD_ATTR_LASS BIT_ULL(TDX_TD_ATTR_LASS_BIT)
> +#define TDX_TD_ATTR_SEPT_VE_DISABLE_BIT 28
> +#define TDX_TD_ATTR_SEPT_VE_DISABLE BIT_ULL(TDX_TD_ATTR_SEPT_VE_DISABLE_BIT)
> +#define TDX_TD_ATTR_MIGRATABLE_BIT 29
> +#define TDX_TD_ATTR_MIGRATABLE BIT_ULL(TDX_TD_ATTR_MIGRATABLE_BIT)
> +#define TDX_TD_ATTR_PKS_BIT 30
> +#define TDX_TD_ATTR_PKS BIT_ULL(TDX_TD_ATTR_PKS_BIT)
> +#define TDX_TD_ATTR_KL_BIT 31
> +#define TDX_TD_ATTR_KL BIT_ULL(TDX_TD_ATTR_KL_BIT)
> +#define TDX_TD_ATTR_TPA_BIT 62
> +#define TDX_TD_ATTR_TPA BIT_ULL(TDX_TD_ATTR_TPA_BIT)
> +#define TDX_TD_ATTR_PERFMON_BIT 63
> +#define TDX_TD_ATTR_PERFMON BIT_ULL(TDX_TD_ATTR_PERFMON_BIT)
>
> /* TDX TD-Scope Metadata. To be used by TDG.VM.WR and TDG.VM.RD */
> #define TDCS_CONFIG_FLAGS 0x1110000300000016
> diff --git a/arch/x86/kvm/vmx/tdx.c b/arch/x86/kvm/vmx/tdx.c
> index efb7d589b672..c539c2e6109f 100644
> --- a/arch/x86/kvm/vmx/tdx.c
> +++ b/arch/x86/kvm/vmx/tdx.c
> @@ -62,7 +62,7 @@ void tdh_vp_wr_failed(struct vcpu_tdx *tdx, char *uclass, char *op, u32 field,
> pr_err("TDH_VP_WR[%s.0x%x]%s0x%llx failed: 0x%llx\n", uclass, field, op, val, err);
> }
>
> -#define KVM_SUPPORTED_TD_ATTRS (TDX_ATTR_SEPT_VE_DISABLE)
> +#define KVM_SUPPORTED_TD_ATTRS (TDX_TD_ATTR_SEPT_VE_DISABLE)
>
> static __always_inline struct kvm_tdx *to_kvm_tdx(struct kvm *kvm)
> {
> @@ -700,7 +700,7 @@ int tdx_vcpu_create(struct kvm_vcpu *vcpu)
> vcpu->arch.l1_tsc_scaling_ratio = kvm_tdx->tsc_multiplier;
>
> vcpu->arch.guest_state_protected =
> - !(to_kvm_tdx(vcpu->kvm)->attributes & TDX_ATTR_DEBUG);
> + !(to_kvm_tdx(vcpu->kvm)->attributes & TDX_TD_ATTR_DEBUG);
>
> if ((kvm_tdx->xfam & XFEATURE_MASK_XTILE) == XFEATURE_MASK_XTILE)
> vcpu->arch.xfd_no_write_intercept = true;
next prev parent reply other threads:[~2025-07-17 1:27 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-07-15 9:13 [PATCH v3 0/4] TDX: Clean up the definitions of TDX TD ATTRIBUTES Xiaoyao Li
2025-07-15 9:13 ` [PATCH v3 1/4] x86/tdx: Fix the typo in TDX_ATTR_MIGRTABLE Xiaoyao Li
2025-07-15 9:13 ` [PATCH v3 2/4] KVM: TDX: Remove redundant definitions of TDX_TD_ATTR_* Xiaoyao Li
2025-07-15 21:21 ` Edgecombe, Rick P
2025-07-15 9:13 ` [PATCH v3 3/4] x86/tdx: Rename TDX_ATTR_* to TDX_TD_ATTR_* Xiaoyao Li
2025-07-15 21:04 ` Edgecombe, Rick P
2025-07-17 1:27 ` Binbin Wu [this message]
2025-07-15 9:13 ` [PATCH v3 4/4] KVM: TDX: Rename KVM_SUPPORTED_TD_ATTRS to KVM_SUPPORTED_TDX_TD_ATTRS Xiaoyao Li
2025-07-15 15:10 ` [PATCH v3 0/4] TDX: Clean up the definitions of TDX TD ATTRIBUTES Sean Christopherson
2025-07-15 21:44 ` Edgecombe, Rick P
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4475637c-4d34-4037-8f43-8b8280617554@linux.intel.com \
--to=binbin.wu@linux.intel.com \
--cc=adrian.hunter@intel.com \
--cc=bp@alien8.de \
--cc=dave.hansen@linux.intel.com \
--cc=hpa@zytor.com \
--cc=kai.huang@intel.com \
--cc=kas@kernel.org \
--cc=kvm@vger.kernel.org \
--cc=linux-coco@lists.linux.dev \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@redhat.com \
--cc=pbonzini@redhat.com \
--cc=reinette.chatre@intel.com \
--cc=rick.p.edgecombe@intel.com \
--cc=seanjc@google.com \
--cc=tglx@linutronix.de \
--cc=tony.lindgren@intel.com \
--cc=x86@kernel.org \
--cc=xiaoyao.li@intel.com \
--cc=yan.y.zhao@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).