x86/cpu: Move cpu_die_id into topology info
authorThomas Gleixner <tglx@linutronix.de>
Mon, 14 Aug 2023 08:18:31 +0000 (10:18 +0200)
committerThomas Gleixner <tglx@linutronix.de>
Tue, 10 Oct 2023 12:38:17 +0000 (14:38 +0200)
Move the next member.

No functional change.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Tested-by: Juergen Gross <jgross@suse.com>
Tested-by: Sohil Mehta <sohil.mehta@intel.com>
Tested-by: Michael Kelley <mikelley@microsoft.com>
Tested-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Tested-by: Zhang Rui <rui.zhang@intel.com>
Acked-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Link: https://lore.kernel.org/r/20230814085112.388185134@linutronix.de
Documentation/arch/x86/topology.rst
arch/x86/include/asm/processor.h
arch/x86/include/asm/topology.h
arch/x86/kernel/cpu/amd.c
arch/x86/kernel/cpu/cacheinfo.c
arch/x86/kernel/cpu/common.c
arch/x86/kernel/cpu/hygon.c
arch/x86/kernel/cpu/topology.c
arch/x86/kernel/smpboot.c

index 0bfa1edaa7d470ca0f06840abeff84867d3750b1..ff36e52091d944f97e3d273d098d5bdb101fa19a 100644 (file)
@@ -55,7 +55,7 @@ Package-related topology information in the kernel:
 
     The number of dies in a package. This information is retrieved via CPUID.
 
-  - cpuinfo_x86.cpu_die_id:
+  - cpuinfo_x86.topo.die_id:
 
     The physical ID of the die. This information is retrieved via CPUID.
 
@@ -65,7 +65,7 @@ Package-related topology information in the kernel:
     and deduced from the APIC IDs of the cores in the package.
 
     Modern systems use this value for the socket. There may be multiple
-    packages within a socket. This value may differ from cpu_die_id.
+    packages within a socket. This value may differ from topo.die_id.
 
   - cpuinfo_x86.logical_proc_id:
 
index a673199aaa4588adeea38fefd4bf3389f659f66d..662e9736c3d095df0650f03eeb5d62f88a90dcd3 100644 (file)
@@ -86,6 +86,9 @@ struct cpuinfo_topology {
 
        // Physical package ID
        u32                     pkg_id;
+
+       // Physical die ID on AMD, Relative on Intel
+       u32                     die_id;
 };
 
 struct cpuinfo_x86 {
@@ -141,7 +144,6 @@ struct cpuinfo_x86 {
        u16                     logical_proc_id;
        /* Core id: */
        u16                     cpu_core_id;
-       u16                     cpu_die_id;
        u16                     logical_die_id;
        /* Index into per_cpu list: */
        u16                     cpu_index;
index 666c82e89c16ad259886cc213281b15b27efdf01..cf43b51e2162afb97ed8bd85b7dc408702ded442 100644 (file)
@@ -108,7 +108,7 @@ extern const struct cpumask *cpu_clustergroup_mask(int cpu);
 #define topology_logical_package_id(cpu)       (cpu_data(cpu).logical_proc_id)
 #define topology_physical_package_id(cpu)      (cpu_data(cpu).topo.pkg_id)
 #define topology_logical_die_id(cpu)           (cpu_data(cpu).logical_die_id)
-#define topology_die_id(cpu)                   (cpu_data(cpu).cpu_die_id)
+#define topology_die_id(cpu)                   (cpu_data(cpu).topo.die_id)
 #define topology_core_id(cpu)                  (cpu_data(cpu).cpu_core_id)
 #define topology_ppin(cpu)                     (cpu_data(cpu).ppin)
 
index d23463fafa3c19bddfb93644711e4774256f2a21..c10f5f7372f380f7929b4c6cec91c319ed8a51c7 100644 (file)
@@ -410,7 +410,7 @@ static void amd_get_topology(struct cpuinfo_x86 *c)
 
                cpuid(0x8000001e, &eax, &ebx, &ecx, &edx);
 
-               c->cpu_die_id  = ecx & 0xff;
+               c->topo.die_id  = ecx & 0xff;
 
                if (c->x86 == 0x15)
                        c->cu_id = ebx & 0xff;
@@ -436,9 +436,9 @@ static void amd_get_topology(struct cpuinfo_x86 *c)
                u64 value;
 
                rdmsrl(MSR_FAM10H_NODE_ID, value);
-               c->cpu_die_id = value & 7;
+               c->topo.die_id = value & 7;
 
-               per_cpu(cpu_llc_id, cpu) = c->cpu_die_id;
+               per_cpu(cpu_llc_id, cpu) = c->topo.die_id;
        } else
                return;
 
@@ -463,7 +463,7 @@ static void amd_detect_cmp(struct cpuinfo_x86 *c)
        /* Convert the initial APIC ID into the socket ID */
        c->topo.pkg_id = c->topo.initial_apicid >> bits;
        /* use socket ID also for last level cache */
-       per_cpu(cpu_llc_id, cpu) = c->cpu_die_id = c->topo.pkg_id;
+       per_cpu(cpu_llc_id, cpu) = c->topo.die_id = c->topo.pkg_id;
 }
 
 u32 amd_get_nodes_per_socket(void)
index fe583fd634f57c58327ca72062a99b2eb0291800..e25368787c2691f3933ffc50378e15a2405f1c3f 100644 (file)
@@ -672,7 +672,7 @@ void cacheinfo_amd_init_llc_id(struct cpuinfo_x86 *c, int cpu)
 
        if (c->x86 < 0x17) {
                /* LLC is at the node level. */
-               per_cpu(cpu_llc_id, cpu) = c->cpu_die_id;
+               per_cpu(cpu_llc_id, cpu) = c->topo.die_id;
        } else if (c->x86 == 0x17 && c->x86_model <= 0x1F) {
                /*
                 * LLC is at the core complex level.
index 77fc1240e134da188c66600395adf44a868ec777..8f60d5535efe63e423e99e0cb096e7a33d7d88cd 100644 (file)
@@ -1808,7 +1808,7 @@ static void validate_apic_and_package_id(struct cpuinfo_x86 *c)
                       cpu, apicid, c->topo.initial_apicid);
        }
        BUG_ON(topology_update_package_map(c->topo.pkg_id, cpu));
-       BUG_ON(topology_update_die_map(c->cpu_die_id, cpu));
+       BUG_ON(topology_update_die_map(c->topo.die_id, cpu));
 #else
        c->logical_proc_id = 0;
 #endif
index 53497354cac756415f8c717fa5d6c0a9db10c282..9190be47c6512ede5982ed7f7d6b6fa1655a5b15 100644 (file)
@@ -72,7 +72,7 @@ static void hygon_get_topology(struct cpuinfo_x86 *c)
 
                cpuid(0x8000001e, &eax, &ebx, &ecx, &edx);
 
-               c->cpu_die_id  = ecx & 0xff;
+               c->topo.die_id  = ecx & 0xff;
 
                c->cpu_core_id = ebx & 0xff;
 
@@ -99,9 +99,9 @@ static void hygon_get_topology(struct cpuinfo_x86 *c)
                u64 value;
 
                rdmsrl(MSR_FAM10H_NODE_ID, value);
-               c->cpu_die_id = value & 7;
+               c->topo.die_id = value & 7;
 
-               per_cpu(cpu_llc_id, cpu) = c->cpu_die_id;
+               per_cpu(cpu_llc_id, cpu) = c->topo.die_id;
        } else
                return;
 
@@ -124,7 +124,7 @@ static void hygon_detect_cmp(struct cpuinfo_x86 *c)
        /* Convert the initial APIC ID into the socket ID */
        c->topo.pkg_id = c->topo.initial_apicid >> bits;
        /* use socket ID also for last level cache */
-       per_cpu(cpu_llc_id, cpu) = c->cpu_die_id = c->topo.pkg_id;
+       per_cpu(cpu_llc_id, cpu) = c->topo.die_id = c->topo.pkg_id;
 }
 
 static void srat_detect_node(struct cpuinfo_x86 *c)
index 0da4755e62c1bcbf7abeb35509dfea6e26d7185e..3b48bc324dfd346f91734d7b0824e8ac306a7d4e 100644 (file)
@@ -150,7 +150,7 @@ int detect_extended_topology(struct cpuinfo_x86 *c)
                                ht_mask_width) & core_select_mask;
 
        if (die_level_present) {
-               c->cpu_die_id = apic->phys_pkg_id(c->topo.initial_apicid,
+               c->topo.die_id = apic->phys_pkg_id(c->topo.initial_apicid,
                                        core_plus_mask_width) & die_select_mask;
        }
 
index c5f4abbeed26d7af41027b7ac18589d0021de7e1..8df02964afe1dfdc1f170fbc37a5969491338fbe 100644 (file)
@@ -360,7 +360,7 @@ static int topology_phys_to_logical_die(unsigned int die_id, unsigned int cur_cp
        for_each_possible_cpu(cpu) {
                struct cpuinfo_x86 *c = &cpu_data(cpu);
 
-               if (c->initialized && c->cpu_die_id == die_id &&
+               if (c->initialized && c->topo.die_id == die_id &&
                    c->topo.pkg_id == proc_id)
                        return c->logical_die_id;
        }
@@ -422,7 +422,7 @@ static void __init smp_store_boot_cpu_info(void)
        *c = boot_cpu_data;
        c->cpu_index = id;
        topology_update_package_map(c->topo.pkg_id, id);
-       topology_update_die_map(c->cpu_die_id, id);
+       topology_update_die_map(c->topo.die_id, id);
        c->initialized = true;
 }
 
@@ -477,7 +477,7 @@ static bool match_smt(struct cpuinfo_x86 *c, struct cpuinfo_x86 *o)
                int cpu1 = c->cpu_index, cpu2 = o->cpu_index;
 
                if (c->topo.pkg_id == o->topo.pkg_id &&
-                   c->cpu_die_id == o->cpu_die_id &&
+                   c->topo.die_id == o->topo.die_id &&
                    per_cpu(cpu_llc_id, cpu1) == per_cpu(cpu_llc_id, cpu2)) {
                        if (c->cpu_core_id == o->cpu_core_id)
                                return topology_sane(c, o, "smt");
@@ -489,7 +489,7 @@ static bool match_smt(struct cpuinfo_x86 *c, struct cpuinfo_x86 *o)
                }
 
        } else if (c->topo.pkg_id == o->topo.pkg_id &&
-                  c->cpu_die_id == o->cpu_die_id &&
+                  c->topo.die_id == o->topo.die_id &&
                   c->cpu_core_id == o->cpu_core_id) {
                return topology_sane(c, o, "smt");
        }
@@ -500,7 +500,7 @@ static bool match_smt(struct cpuinfo_x86 *c, struct cpuinfo_x86 *o)
 static bool match_die(struct cpuinfo_x86 *c, struct cpuinfo_x86 *o)
 {
        if (c->topo.pkg_id == o->topo.pkg_id &&
-           c->cpu_die_id == o->cpu_die_id)
+           c->topo.die_id == o->topo.die_id)
                return true;
        return false;
 }