From: Borislav Petkov <b...@suse.de>

Refactoring in preparation for subsequent changes.
There is no functional change.

Signed-off-by: Suravee Suthikulpanit <suravee.suthikulpa...@amd.com>
---
 arch/x86/kernel/cpu/amd.c | 78 ++++++++++++++++++++++++++---------------------
 1 file changed, 44 insertions(+), 34 deletions(-)

diff --git a/arch/x86/kernel/cpu/amd.c b/arch/x86/kernel/cpu/amd.c
index bb5abe8..a2a52b5 100644
--- a/arch/x86/kernel/cpu/amd.c
+++ b/arch/x86/kernel/cpu/amd.c
@@ -296,13 +296,55 @@ static int nearby_node(int apicid)
 }
 #endif
 
+#ifdef CONFIG_SMP
+
+/*
+ * Get topology information via X86_FEATURE_TOPOEXT.
+ */
+static void __get_topoext(struct cpuinfo_x86 *c, int cpu)
+{
+       u32 eax, ebx, ecx, edx;
+       u8 node_id;
+
+       cpuid(0x8000001e, &eax, &ebx, &ecx, &edx);
+
+       node_id  = ecx & 0xff;
+       smp_num_siblings = ((ebx >> 8) & 0xff) + 1;
+
+       if (c->x86 == 0x15)
+               c->cu_id = ebx & 0xff;
+
+       if (c->x86 >= 0x17) {
+               c->cpu_core_id = ebx & 0xff;
+
+               if (smp_num_siblings > 1)
+                       c->x86_max_cores /= smp_num_siblings;
+       }
+
+       /*
+        * We may have multiple LLCs if L3 caches exist, so check if we
+        * have an L3 cache by looking at the L3 cache CPUID leaf.
+        */
+       if (cpuid_edx(0x80000006)) {
+               if (c->x86 == 0x17) {
+                       /*
+                        * LLC is at the core complex level.
+                        * Core complex id is ApicId[3].
+                        */
+                       per_cpu(cpu_llc_id, cpu) = c->apicid >> 3;
+               } else {
+                       /* LLC is at the node level. */
+                       per_cpu(cpu_llc_id, cpu) = node_id;
+               }
+       }
+}
+
 /*
  * Fixup core topology information for
  * (1) AMD multi-node processors
  *     Assumption: Number of cores in each internal node is the same.
  * (2) AMD processors supporting compute units
  */
-#ifdef CONFIG_SMP
 static void amd_get_topology(struct cpuinfo_x86 *c)
 {
        u8 node_id;
@@ -310,39 +352,7 @@ static void amd_get_topology(struct cpuinfo_x86 *c)
 
        /* get information required for multi-node processors */
        if (boot_cpu_has(X86_FEATURE_TOPOEXT)) {
-               u32 eax, ebx, ecx, edx;
-
-               cpuid(0x8000001e, &eax, &ebx, &ecx, &edx);
-
-               node_id  = ecx & 0xff;
-               smp_num_siblings = ((ebx >> 8) & 0xff) + 1;
-
-               if (c->x86 == 0x15)
-                       c->cu_id = ebx & 0xff;
-
-               if (c->x86 >= 0x17) {
-                       c->cpu_core_id = ebx & 0xff;
-
-                       if (smp_num_siblings > 1)
-                               c->x86_max_cores /= smp_num_siblings;
-               }
-
-               /*
-                * We may have multiple LLCs if L3 caches exist, so check if we
-                * have an L3 cache by looking at the L3 cache CPUID leaf.
-                */
-               if (cpuid_edx(0x80000006)) {
-                       if (c->x86 == 0x17) {
-                               /*
-                                * LLC is at the core complex level.
-                                * Core complex id is ApicId[3].
-                                */
-                               per_cpu(cpu_llc_id, cpu) = c->apicid >> 3;
-                       } else {
-                               /* LLC is at the node level. */
-                               per_cpu(cpu_llc_id, cpu) = node_id;
-                       }
-               }
+               __get_topoext(c, cpu);
        } else if (cpu_has(c, X86_FEATURE_NODEID_MSR)) {
                u64 value;
 
-- 
2.7.4

Reply via email to