Merge tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost
[cris-mirror.git] / arch / x86 / kernel / cpu / topology.c
blobb099024d339c386929dbda450a328bc2b3887377
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * Check for extended topology enumeration cpuid leaf 0xb and if it
4 * exists, use it for populating initial_apicid and cpu topology
5 * detection.
6 */
8 #include <linux/cpu.h>
9 #include <asm/apic.h>
10 #include <asm/pat.h>
11 #include <asm/processor.h>
13 /* leaf 0xb SMT level */
14 #define SMT_LEVEL 0
16 /* leaf 0xb sub-leaf types */
17 #define INVALID_TYPE 0
18 #define SMT_TYPE 1
19 #define CORE_TYPE 2
21 #define LEAFB_SUBTYPE(ecx) (((ecx) >> 8) & 0xff)
22 #define BITS_SHIFT_NEXT_LEVEL(eax) ((eax) & 0x1f)
23 #define LEVEL_MAX_SIBLINGS(ebx) ((ebx) & 0xffff)
26 * Check for extended topology enumeration cpuid leaf 0xb and if it
27 * exists, use it for populating initial_apicid and cpu topology
28 * detection.
30 void detect_extended_topology(struct cpuinfo_x86 *c)
32 #ifdef CONFIG_SMP
33 unsigned int eax, ebx, ecx, edx, sub_index;
34 unsigned int ht_mask_width, core_plus_mask_width;
35 unsigned int core_select_mask, core_level_siblings;
36 static bool printed;
38 if (c->cpuid_level < 0xb)
39 return;
41 cpuid_count(0xb, SMT_LEVEL, &eax, &ebx, &ecx, &edx);
44 * check if the cpuid leaf 0xb is actually implemented.
46 if (ebx == 0 || (LEAFB_SUBTYPE(ecx) != SMT_TYPE))
47 return;
49 set_cpu_cap(c, X86_FEATURE_XTOPOLOGY);
52 * initial apic id, which also represents 32-bit extended x2apic id.
54 c->initial_apicid = edx;
57 * Populate HT related information from sub-leaf level 0.
59 core_level_siblings = smp_num_siblings = LEVEL_MAX_SIBLINGS(ebx);
60 core_plus_mask_width = ht_mask_width = BITS_SHIFT_NEXT_LEVEL(eax);
62 sub_index = 1;
63 do {
64 cpuid_count(0xb, sub_index, &eax, &ebx, &ecx, &edx);
67 * Check for the Core type in the implemented sub leaves.
69 if (LEAFB_SUBTYPE(ecx) == CORE_TYPE) {
70 core_level_siblings = LEVEL_MAX_SIBLINGS(ebx);
71 core_plus_mask_width = BITS_SHIFT_NEXT_LEVEL(eax);
72 break;
75 sub_index++;
76 } while (LEAFB_SUBTYPE(ecx) != INVALID_TYPE);
78 core_select_mask = (~(-1 << core_plus_mask_width)) >> ht_mask_width;
80 c->cpu_core_id = apic->phys_pkg_id(c->initial_apicid, ht_mask_width)
81 & core_select_mask;
82 c->phys_proc_id = apic->phys_pkg_id(c->initial_apicid, core_plus_mask_width);
84 * Reinit the apicid, now that we have extended initial_apicid.
86 c->apicid = apic->phys_pkg_id(c->initial_apicid, 0);
88 c->x86_max_cores = (core_level_siblings / smp_num_siblings);
90 if (!printed) {
91 pr_info("CPU: Physical Processor ID: %d\n",
92 c->phys_proc_id);
93 if (c->x86_max_cores > 1)
94 pr_info("CPU: Processor Core ID: %d\n",
95 c->cpu_core_id);
96 printed = 1;
98 return;
99 #endif