From: "Mi, Dapeng" <dapeng1.mi@linux.intel.com>
To: "Zhao Liu" <zhao1.liu@intel.com>,
"Paolo Bonzini" <pbonzini@redhat.com>,
"Marcelo Tosatti" <mtosatti@redhat.com>,
"Michael S . Tsirkin" <mst@redhat.com>,
"Daniel P . Berrangé" <berrange@redhat.com>,
"Igor Mammedov" <imammedo@redhat.com>,
"Marcel Apfelbaum" <marcel.apfelbaum@gmail.com>,
"Richard Henderson" <richard.henderson@linaro.org>,
"Eduardo Habkost" <eduardo@habkost.net>
Cc: "Philippe Mathieu-Daudé" <philmd@linaro.org>,
"Babu Moger" <babu.moger@amd.com>,
"Ewan Hai" <ewanhai-oc@zhaoxin.com>, "Pu Wen" <puwen@hygon.cn>,
"Tao Su" <tao1.su@intel.com>, "Yi Lai" <yi1.lai@intel.com>,
"Dapeng Mi" <dapeng1.mi@intel.com>,
qemu-devel@nongnu.org, kvm@vger.kernel.org
Subject: Re: [PATCH 12/16] i386/cpu: Select legacy cache model based on vendor in CPUID 0x4
Date: Thu, 3 Jul 2025 16:49:21 +0800 [thread overview]
Message-ID: <ee01bc7e-31a2-46af-8c2b-271119cc53ee@linux.intel.com> (raw)
In-Reply-To: <20250620092734.1576677-13-zhao1.liu@intel.com>
On 6/20/2025 5:27 PM, Zhao Liu wrote:
> As preparation for merging cache_info_cpuid4 and cache_info_amd in
> X86CPUState, set legacy cache model based on vendor in the CPUID 0x4
> leaf. For AMD CPU, select legacy AMD cache model (in cache_info_amd) as
> the default cache model, otherwise, select legacy Intel cache model (in
> cache_info_cpuid4) as before.
>
> To ensure compatibility is not broken, add an enable_legacy_vendor_cache
> flag based on x-vendor-only-v2 to indicate cases where the legacy cache
> model should be used regardless of the vendor. For CPUID 0x4 leaf,
> enable_legacy_vendor_cache flag indicates to pick legacy Intel cache
> model, which is for compatibility with the behavior of PC machine v10.0
> and older.
>
> The following explains how current vendor-based default legacy cache
> model ensures correctness without breaking compatibility.
>
> * For the PC machine v6.0 and older, vendor_cpuid_only=false, and
> vendor_cpuid_only_v2=false.
>
> - If the named CPU model has its own cache model, and doesn't use
> legacy cache model (legacy_cache=false), then cache_info_cpuid4 and
> cache_info_amd are same, so 0x4 leaf uses its own cache model
> regardless of the vendor.
>
> - For max/host/named CPU (without its own cache model), then the flag
> enable_legacy_vendor_cache is true, they will use legacy Intel cache
> model just like their previous behavior.
>
> * For the PC machine v10.0 and older (to v6.1), vendor_cpuid_only=true,
> and vendor_cpuid_only_v2=false.
>
> - If the named CPU model has its own cache model (legacy_cache=false),
> then cache_info_cpuid4 & cache_info_amd both equal to its own cache
> model, so it uses its own cache model in 0x4 leaf regardless of the
> vendor. Only AMD CPUs have all-0 leaf due to vendor_cpuid_only=true,
> and this is exactly the behavior of these old machines.
>
> - For max/host/named CPU (without its own cache model), then the flag
> enable_legacy_vendor_cache is true, they will use legacy Intel cache
> model. Similarly, only AMD CPUs have all-0 leaf, and this is exactly
> the behavior of these old machines.
>
> * For the PC machine v10.1 and newer, vendor_cpuid_only=true, and
> vendor_cpuid_only_v2=true.
>
> - If the named CPU model has its own cache model (legacy_cache=false),
> then cache_info_cpuid4 & cache_info_amd both equal to its own cache
> model, so it uses its own cache model in 0x4 leaf regardless of the
> vendor. And AMD CPUs have all-0 leaf. Nothing will change.
>
> - For max/host/named CPU (without its own cache model), then the flag
> enable_legacy_vendor_cache is false, the legacy cache model is
> selected based on vendor.
>
> For AMD CPU, it will use legacy AMD cache but still get all-0 leaf
> due to vendor_cpuid_only=true.
>
> For non-AMD (Intel/Zhaoxin) CPU, it will use legacy Intel cache as
> expected.
>
> Here, selecting the legacy cache model based on the vendor does not
> change the previous (before the change) behavior.
>
> Therefore, the above analysis proves that, with the help of the flag
> enable_legacy_vendor_cache, it is acceptable to select the default
> legacy cache model based on the vendor.
>
> For the CPUID 0x4 leaf, in X86CPUState, a unified cache_info is enough.
> It only needs to be initialized and configured with the corresponding
> legacy cache model based on the vendor.
>
> Signed-off-by: Zhao Liu <zhao1.liu@intel.com>
> ---
> target/i386/cpu.c | 43 ++++++++++++++++++++++++++++++++++---------
> 1 file changed, 34 insertions(+), 9 deletions(-)
>
> diff --git a/target/i386/cpu.c b/target/i386/cpu.c
> index 524d39de9ace..afbf11569ab4 100644
> --- a/target/i386/cpu.c
> +++ b/target/i386/cpu.c
> @@ -7517,7 +7517,35 @@ void cpu_x86_cpuid(CPUX86State *env, uint32_t index, uint32_t count,
> encode_cache_cpuid2(cpu, caches, eax, ebx, ecx, edx);
> break;
> }
> - case 4:
> + case 4: {
> + const CPUCaches *caches;
> +
> + if (env->enable_legacy_vendor_cache) {
> + caches = &legacy_intel_cache_info;
> + } else {
> + /*
> + * FIXME: Temporarily select cache info model here based on
> + * vendor, and merge these 2 cache info models later.
> + *
> + * This condition covers the following cases (with
> + * enable_legacy_vendor_cache=false):
> + * - When CPU model has its own cache model and doesn't use legacy
> + * cache model (legacy_model=off). Then cache_info_amd and
> + * cache_info_cpuid4 are the same.
> + *
> + * - For v10.1 and newer machines, when CPU model uses legacy cache
> + * model. Non-AMD CPUs use cache_info_cpuid4 like before and AMD
> + * CPU will use cache_info_amd. But this doesn't matter for AMD
> + * CPU, because this leaf encodes all-0 for AMD whatever its cache
> + * model is.
> + */
> + if (IS_AMD_CPU(env)) {
> + caches = &env->cache_info_amd;
> + } else {
> + caches = &env->cache_info_cpuid4;
> + }
> + }
> +
> /* cache info: needed for Core compatibility */
> if (cpu->cache_info_passthrough) {
> x86_cpu_get_cache_cpuid(index, count, eax, ebx, ecx, edx);
> @@ -7545,30 +7573,26 @@ void cpu_x86_cpuid(CPUX86State *env, uint32_t index, uint32_t count,
>
> switch (count) {
> case 0: /* L1 dcache info */
> - encode_cache_cpuid4(env->cache_info_cpuid4.l1d_cache,
> - topo_info,
> + encode_cache_cpuid4(caches->l1d_cache, topo_info,
> eax, ebx, ecx, edx);
> if (!cpu->l1_cache_per_core) {
> *eax &= ~MAKE_64BIT_MASK(14, 12);
> }
> break;
> case 1: /* L1 icache info */
> - encode_cache_cpuid4(env->cache_info_cpuid4.l1i_cache,
> - topo_info,
> + encode_cache_cpuid4(caches->l1i_cache, topo_info,
> eax, ebx, ecx, edx);
> if (!cpu->l1_cache_per_core) {
> *eax &= ~MAKE_64BIT_MASK(14, 12);
> }
> break;
> case 2: /* L2 cache info */
> - encode_cache_cpuid4(env->cache_info_cpuid4.l2_cache,
> - topo_info,
> + encode_cache_cpuid4(caches->l2_cache, topo_info,
> eax, ebx, ecx, edx);
> break;
> case 3: /* L3 cache info */
> if (cpu->enable_l3_cache) {
> - encode_cache_cpuid4(env->cache_info_cpuid4.l3_cache,
> - topo_info,
> + encode_cache_cpuid4(caches->l3_cache, topo_info,
> eax, ebx, ecx, edx);
> break;
> }
> @@ -7579,6 +7603,7 @@ void cpu_x86_cpuid(CPUX86State *env, uint32_t index, uint32_t count,
> }
> }
> break;
> + }
> case 5:
> /* MONITOR/MWAIT Leaf */
> *eax = cpu->mwait.eax; /* Smallest monitor-line size in bytes */
LGTM. Thanks.
Reviewed-by: Dapeng Mi <dapeng1.mi@linux.intel.com>
next prev parent reply other threads:[~2025-07-03 8:49 UTC|newest]
Thread overview: 39+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-06-20 9:27 [PATCH 00/16] i386/cpu: Unify the cache model in X86CPUState Zhao Liu
2025-06-20 9:27 ` [PATCH 01/16] i386/cpu: Refine comment of CPUID2CacheDescriptorInfo Zhao Liu
2025-07-02 8:48 ` Mi, Dapeng
2025-07-03 7:38 ` Zhao Liu
2025-06-20 9:27 ` [PATCH 02/16] i386/cpu: Add descriptor 0x49 for CPUID 0x2 encoding Zhao Liu
2025-07-02 9:04 ` Mi, Dapeng
2025-07-03 7:39 ` Zhao Liu
2025-06-20 9:27 ` [PATCH 03/16] i386/cpu: Add default cache model for Intel CPUs with level < 4 Zhao Liu
2025-07-02 9:53 ` Mi, Dapeng
2025-07-03 7:47 ` Zhao Liu
2025-06-20 9:27 ` [PATCH 04/16] i386/cpu: Present same cache model in CPUID 0x2 & 0x4 Zhao Liu
2025-07-03 4:14 ` Mi, Dapeng
2025-07-03 6:35 ` Mi, Dapeng
2025-06-20 9:27 ` [PATCH 05/16] i386/cpu: Consolidate CPUID 0x4 leaf Zhao Liu
2025-06-26 12:10 ` Ewan Hai
2025-06-27 2:44 ` Zhao Liu
2025-07-03 6:41 ` Mi, Dapeng
2025-06-20 9:27 ` [PATCH 06/16] i386/cpu: Drop CPUID 0x2 specific cache info in X86CPUState Zhao Liu
2025-07-03 7:03 ` Mi, Dapeng
2025-06-20 9:27 ` [PATCH 07/16] i386/cpu: Mark CPUID[0x80000005] as reserved for Intel Zhao Liu
2025-07-03 7:07 ` Mi, Dapeng
2025-06-20 9:27 ` [PATCH 08/16] i386/cpu: Fix CPUID[0x80000006] for Intel CPU Zhao Liu
2025-07-03 7:09 ` Mi, Dapeng
2025-07-03 7:52 ` Zhao Liu
2025-06-20 9:27 ` [PATCH 09/16] i386/cpu: Add legacy_intel_cache_info cache model Zhao Liu
2025-07-03 7:15 ` Mi, Dapeng
2025-06-20 9:27 ` [PATCH 10/16] i386/cpu: Add legacy_amd_cache_info " Zhao Liu
2025-07-03 7:18 ` Mi, Dapeng
2025-06-20 9:27 ` [PATCH 11/16] i386/cpu: Select legacy cache model based on vendor in CPUID 0x2 Zhao Liu
2025-07-03 8:47 ` Mi, Dapeng
2025-06-20 9:27 ` [PATCH 12/16] i386/cpu: Select legacy cache model based on vendor in CPUID 0x4 Zhao Liu
2025-07-03 8:49 ` Mi, Dapeng [this message]
2025-06-20 9:27 ` [PATCH 13/16] i386/cpu: Select legacy cache model based on vendor in CPUID 0x80000005 Zhao Liu
2025-07-03 8:52 ` Mi, Dapeng
2025-06-20 9:27 ` [PATCH 14/16] i386/cpu: Select legacy cache model based on vendor in CPUID 0x80000006 Zhao Liu
2025-06-20 9:27 ` [PATCH 15/16] i386/cpu: Select legacy cache model based on vendor in CPUID 0x8000001D Zhao Liu
2025-06-20 9:27 ` [PATCH 16/16] i386/cpu: Use a unified cache_info in X86CPUState Zhao Liu
2025-07-03 8:53 ` Mi, Dapeng
2025-07-03 9:50 ` Zhao Liu
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=ee01bc7e-31a2-46af-8c2b-271119cc53ee@linux.intel.com \
--to=dapeng1.mi@linux.intel.com \
--cc=babu.moger@amd.com \
--cc=berrange@redhat.com \
--cc=dapeng1.mi@intel.com \
--cc=eduardo@habkost.net \
--cc=ewanhai-oc@zhaoxin.com \
--cc=imammedo@redhat.com \
--cc=kvm@vger.kernel.org \
--cc=marcel.apfelbaum@gmail.com \
--cc=mst@redhat.com \
--cc=mtosatti@redhat.com \
--cc=pbonzini@redhat.com \
--cc=philmd@linaro.org \
--cc=puwen@hygon.cn \
--cc=qemu-devel@nongnu.org \
--cc=richard.henderson@linaro.org \
--cc=tao1.su@intel.com \
--cc=yi1.lai@intel.com \
--cc=zhao1.liu@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.