[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 14/16] i386/cpu: Select legacy cache model based on vendor in CPU
From: |
Zhao Liu |
Subject: |
[PATCH 14/16] i386/cpu: Select legacy cache model based on vendor in CPUID 0x80000006 |
Date: |
Fri, 20 Jun 2025 17:27:32 +0800 |
As preparation for merging cache_info_cpuid4 and cache_info_amd in
X86CPUState, set legacy cache model based on vendor in the CPUID
0x80000006 leaf. For AMD CPU, select legacy AMD cache model (in
cache_info_amd) as the default cache model like before, otherwise,
select legacy Intel cache model (in cache_info_cpuid4).
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 0x80000006 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 0x80000006 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 AMD 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.
- No change, since this leaf doesn't aware vendor_cpuid_only.
* 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 0x80000006 leaf regardless
of the vendor. Intel and Zhaoxin CPUs have their special encoding
based on SDM, which is the expected behavior and no different from
before.
- 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 as before.
For non-AMD (Intel/Zhaoxin) CPU, it will use legacy Intel cache and
be encoded based on SDM 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 0x80000006 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 | 36 +++++++++++++++++++++++++++++++-----
1 file changed, 31 insertions(+), 5 deletions(-)
diff --git a/target/i386/cpu.c b/target/i386/cpu.c
index 16b4ecb76113..4fa5907027a0 100644
--- a/target/i386/cpu.c
+++ b/target/i386/cpu.c
@@ -7992,8 +7992,33 @@ void cpu_x86_cpuid(CPUX86State *env, uint32_t index,
uint32_t count,
*edx = encode_cache_cpuid80000005(caches->l1i_cache);
break;
}
- case 0x80000006:
- /* cache info (L2 cache/TLB/L3 cache) */
+ case 0x80000006: { /* cache info (L2 cache/TLB/L3 cache) */
+ const CPUCaches *caches;
+
+ if (env->enable_legacy_vendor_cache) {
+ caches = &legacy_amd_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 uses
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. AMD CPUs use cache_info_amd like before and non-AMD
+ * CPU (Intel & Zhaoxin) will use cache_info_cpuid4 as expected.
+ */
+ if (IS_AMD_CPU(env)) {
+ caches = &env->cache_info_amd;
+ } else {
+ caches = &env->cache_info_cpuid4;
+ }
+ }
+
if (cpu->cache_info_passthrough) {
x86_cpu_get_cache_cpuid(index, 0, eax, ebx, ecx, edx);
break;
@@ -8002,7 +8027,7 @@ void cpu_x86_cpuid(CPUX86State *env, uint32_t index,
uint32_t count,
if (cpu->vendor_cpuid_only_v2 &&
(IS_INTEL_CPU(env) || IS_ZHAOXIN_CPU(env))) {
*eax = *ebx = 0;
- encode_cache_cpuid80000006(env->cache_info_cpuid4.l2_cache,
+ encode_cache_cpuid80000006(caches->l2_cache,
NULL, ecx, edx, false);
break;
}
@@ -8016,11 +8041,12 @@ void cpu_x86_cpuid(CPUX86State *env, uint32_t index,
uint32_t count,
(X86_ENC_ASSOC(L2_ITLB_4K_ASSOC) << 12) |
(L2_ITLB_4K_ENTRIES);
- encode_cache_cpuid80000006(env->cache_info_amd.l2_cache,
+ encode_cache_cpuid80000006(caches->l2_cache,
cpu->enable_l3_cache ?
- env->cache_info_amd.l3_cache : NULL,
+ caches->l3_cache : NULL,
ecx, edx, true);
break;
+ }
case 0x80000007:
*eax = 0;
*ebx = env->features[FEAT_8000_0007_EBX];
--
2.34.1
- [PATCH 04/16] i386/cpu: Present same cache model in CPUID 0x2 & 0x4, (continued)
- [PATCH 04/16] i386/cpu: Present same cache model in CPUID 0x2 & 0x4, Zhao Liu, 2025/06/20
- [PATCH 05/16] i386/cpu: Consolidate CPUID 0x4 leaf, Zhao Liu, 2025/06/20
- [PATCH 06/16] i386/cpu: Drop CPUID 0x2 specific cache info in X86CPUState, Zhao Liu, 2025/06/20
- [PATCH 07/16] i386/cpu: Mark CPUID[0x80000005] as reserved for Intel, Zhao Liu, 2025/06/20
- [PATCH 08/16] i386/cpu: Fix CPUID[0x80000006] for Intel CPU, Zhao Liu, 2025/06/20
- [PATCH 11/16] i386/cpu: Select legacy cache model based on vendor in CPUID 0x2, Zhao Liu, 2025/06/20
- [PATCH 09/16] i386/cpu: Add legacy_intel_cache_info cache model, Zhao Liu, 2025/06/20
- [PATCH 10/16] i386/cpu: Add legacy_amd_cache_info cache model, Zhao Liu, 2025/06/20
- [PATCH 13/16] i386/cpu: Select legacy cache model based on vendor in CPUID 0x80000005, Zhao Liu, 2025/06/20
- [PATCH 12/16] i386/cpu: Select legacy cache model based on vendor in CPUID 0x4, Zhao Liu, 2025/06/20
- [PATCH 14/16] i386/cpu: Select legacy cache model based on vendor in CPUID 0x80000006,
Zhao Liu <=
- [PATCH 16/16] i386/cpu: Use a unified cache_info in X86CPUState, Zhao Liu, 2025/06/20
- [PATCH 15/16] i386/cpu: Select legacy cache model based on vendor in CPUID 0x8000001D, Zhao Liu, 2025/06/20