Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 01e528e

Browse files
kudureranganathgregkh
authored andcommitted
x86/cpu/topology: Always try cpu_parse_topology_ext() on AMD/Hygon
commit cba4262 upstream. Support for parsing the topology on AMD/Hygon processors using CPUID leaf 0xb was added in 3986a0a ("x86/CPU/AMD: Derive CPU topology from CPUID function 0xB when available"). In an effort to keep all the topology parsing bits in one place, this commit also introduced a pseudo dependency on the TOPOEXT feature to parse the CPUID leaf 0xb. The TOPOEXT feature (CPUID 0x80000001 ECX[22]) advertises the support for Cache Properties leaf 0x8000001d and the CPUID leaf 0x8000001e EAX for "Extended APIC ID" however support for 0xb was introduced alongside the x2APIC support not only on AMD [1], but also historically on x86 [2]. Similar to 0xb, the support for extended CPU topology leaf 0x80000026 too does not depend on the TOPOEXT feature. The support for these leaves is expected to be confirmed by ensuring leaf <= {extended_}cpuid_level and then parsing the level 0 of the respective leaf to confirm EBX[15:0] (LogProcAtThisLevel) is non-zero as stated in the definition of "CPUID_Fn0000000B_EAX_x00 [Extended Topology Enumeration] (Core::X86::Cpuid::ExtTopEnumEax0)" in Processor Programming Reference (PPR) for AMD Family 19h Model 01h Rev B1 Vol1 [3] Sec. 2.1.15.1 "CPUID Instruction Functions". This has not been a problem on baremetal platforms since support for TOPOEXT (Fam 0x15 and later) predates the support for CPUID leaf 0xb (Fam 0x17[Zen2] and later), however, for AMD guests on QEMU, the "x2apic" feature can be enabled independent of the "topoext" feature where QEMU expects topology and the initial APICID to be parsed using the CPUID leaf 0xb (especially when number of cores > 255) which is populated independent of the "topoext" feature flag. Unconditionally call cpu_parse_topology_ext() on AMD and Hygon processors to first parse the topology using the XTOPOLOGY leaves (0x80000026 / 0xb) before using the TOPOEXT leaf (0x8000001e). While at it, break down the single large comment in parse_topology_amd() to better highlight the purpose of each CPUID leaf. Fixes: 3986a0a ("x86/CPU/AMD: Derive CPU topology from CPUID function 0xB when available") Suggested-by: Naveen N Rao (AMD) <[email protected]> Signed-off-by: K Prateek Nayak <[email protected]> Signed-off-by: Borislav Petkov (AMD) <[email protected]> Cc: [email protected] # Only v6.9 and above; depends on x86 topology rewrite Link: https://lore.kernel.org/lkml/[email protected]/ [1] Link: https://lore.kernel.org/lkml/[email protected]/ [2] Link: https://bugzilla.kernel.org/show_bug.cgi?id=206537 [3] Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent 170eaf9 commit 01e528e

File tree

1 file changed

+14
-11
lines changed

1 file changed

+14
-11
lines changed

arch/x86/kernel/cpu/topology_amd.c

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -174,24 +174,27 @@ static void topoext_fixup(struct topo_scan *tscan)
174174

175175
static void parse_topology_amd(struct topo_scan *tscan)
176176
{
177-
bool has_topoext = false;
178-
179177
/*
180-
* If the extended topology leaf 0x8000_001e is available
181-
* try to get SMT, CORE, TILE, and DIE shifts from extended
178+
* Try to get SMT, CORE, TILE, and DIE shifts from extended
182179
* CPUID leaf 0x8000_0026 on supported processors first. If
183180
* extended CPUID leaf 0x8000_0026 is not supported, try to
184-
* get SMT and CORE shift from leaf 0xb first, then try to
185-
* get the CORE shift from leaf 0x8000_0008.
181+
* get SMT and CORE shift from leaf 0xb. If either leaf is
182+
* available, cpu_parse_topology_ext() will return true.
186183
*/
187-
if (cpu_feature_enabled(X86_FEATURE_TOPOEXT))
188-
has_topoext = cpu_parse_topology_ext(tscan);
184+
bool has_xtopology = cpu_parse_topology_ext(tscan);
189185

190-
if (!has_topoext && !parse_8000_0008(tscan))
186+
/*
187+
* If XTOPOLOGY leaves (0x26/0xb) are not available, try to
188+
* get the CORE shift from leaf 0x8000_0008 first.
189+
*/
190+
if (!has_xtopology && !parse_8000_0008(tscan))
191191
return;
192192

193-
/* Prefer leaf 0x8000001e if available */
194-
if (parse_8000_001e(tscan, has_topoext))
193+
/*
194+
* Prefer leaf 0x8000001e if available to get the SMT shift and
195+
* the initial APIC ID if XTOPOLOGY leaves are not available.
196+
*/
197+
if (parse_8000_001e(tscan, has_xtopology))
195198
return;
196199

197200
/* Try the NODEID MSR */

0 commit comments

Comments
 (0)