aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/cpu/addon_cpuid_features.c
diff options
context:
space:
mode:
authorSuresh Siddha <suresh.b.siddha@intel.com>2008-08-23 11:47:10 -0400
committerIngo Molnar <mingo@elte.hu>2008-08-23 11:47:10 -0400
commitbbb65d2d365efe9951290e61678dcf81ec60add4 (patch)
treef3eacf1b1313d729e084064ed6dda5db64522bf4 /arch/x86/kernel/cpu/addon_cpuid_features.c
parent87ce786ae5f24e336195805a9fc7428a6f922478 (diff)
x86: use cpuid vector 0xb when available for detecting cpu topology
cpuid leaf 0xb provides extended topology enumeration. This interface provides the 32-bit x2APIC id of the logical processor and it also provides a new mechanism to detect SMT and core siblings (which provides increased addressability). Signed-off-by: Suresh Siddha <suresh.b.siddha@intel.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/cpu/addon_cpuid_features.c')
-rw-r--r--arch/x86/kernel/cpu/addon_cpuid_features.c86
1 files changed, 86 insertions, 0 deletions
diff --git a/arch/x86/kernel/cpu/addon_cpuid_features.c b/arch/x86/kernel/cpu/addon_cpuid_features.c
index 84a8220a6072..aa9641ae6703 100644
--- a/arch/x86/kernel/cpu/addon_cpuid_features.c
+++ b/arch/x86/kernel/cpu/addon_cpuid_features.c
@@ -7,6 +7,8 @@
7#include <asm/pat.h> 7#include <asm/pat.h>
8#include <asm/processor.h> 8#include <asm/processor.h>
9 9
10#include <mach_apic.h>
11
10struct cpuid_bit { 12struct cpuid_bit {
11 u16 feature; 13 u16 feature;
12 u8 reg; 14 u8 reg;
@@ -48,6 +50,90 @@ void __cpuinit init_scattered_cpuid_features(struct cpuinfo_x86 *c)
48 } 50 }
49} 51}
50 52
53/* leaf 0xb SMT level */
54#define SMT_LEVEL 0
55
56/* leaf 0xb sub-leaf types */
57#define INVALID_TYPE 0
58#define SMT_TYPE 1
59#define CORE_TYPE 2
60
61#define LEAFB_SUBTYPE(ecx) (((ecx) >> 8) & 0xff)
62#define BITS_SHIFT_NEXT_LEVEL(eax) ((eax) & 0x1f)
63#define LEVEL_MAX_SIBLINGS(ebx) ((ebx) & 0xffff)
64
65/*
66 * Check for extended topology enumeration cpuid leaf 0xb and if it
67 * exists, use it for populating initial_apicid and cpu topology
68 * detection.
69 */
70void __cpuinit detect_extended_topology(struct cpuinfo_x86 *c)
71{
72 unsigned int eax, ebx, ecx, edx, sub_index;
73 unsigned int ht_mask_width, core_plus_mask_width;
74 unsigned int core_select_mask, core_level_siblings;
75
76 if (c->cpuid_level < 0xb)
77 return;
78
79 cpuid_count(0xb, SMT_LEVEL, &eax, &ebx, &ecx, &edx);
80
81 /*
82 * check if the cpuid leaf 0xb is actually implemented.
83 */
84 if (ebx == 0 || (LEAFB_SUBTYPE(ecx) != SMT_TYPE))
85 return;
86
87 set_cpu_cap(c, X86_FEATURE_XTOPOLOGY);
88
89 /*
90 * initial apic id, which also represents 32-bit extended x2apic id.
91 */
92 c->initial_apicid = edx;
93
94 /*
95 * Populate HT related information from sub-leaf level 0.
96 */
97 core_level_siblings = smp_num_siblings = LEVEL_MAX_SIBLINGS(ebx);
98 core_plus_mask_width = ht_mask_width = BITS_SHIFT_NEXT_LEVEL(eax);
99
100 sub_index = 1;
101 do {
102 cpuid_count(0xb, sub_index, &eax, &ebx, &ecx, &edx);
103
104 /*
105 * Check for the Core type in the implemented sub leaves.
106 */
107 if (LEAFB_SUBTYPE(ecx) == CORE_TYPE) {
108 core_level_siblings = LEVEL_MAX_SIBLINGS(ebx);
109 core_plus_mask_width = BITS_SHIFT_NEXT_LEVEL(eax);
110 break;
111 }
112
113 sub_index++;
114 } while (LEAFB_SUBTYPE(ecx) != INVALID_TYPE);
115
116 core_select_mask = (~(-1 << core_plus_mask_width)) >> ht_mask_width;
117
118#ifdef CONFIG_X86_32
119 c->cpu_core_id = phys_pkg_id(c->initial_apicid, ht_mask_width)
120 & core_select_mask;
121 c->phys_proc_id = phys_pkg_id(c->initial_apicid, core_plus_mask_width);
122#else
123 c->cpu_core_id = phys_pkg_id(ht_mask_width) & core_select_mask;
124 c->phys_proc_id = phys_pkg_id(core_plus_mask_width);
125#endif
126 c->x86_max_cores = (core_level_siblings / smp_num_siblings);
127
128
129 printk(KERN_INFO "CPU: Physical Processor ID: %d\n",
130 c->phys_proc_id);
131 if (c->x86_max_cores > 1)
132 printk(KERN_INFO "CPU: Processor Core ID: %d\n",
133 c->cpu_core_id);
134 return;
135}
136
51#ifdef CONFIG_X86_PAT 137#ifdef CONFIG_X86_PAT
52void __cpuinit validate_pat_support(struct cpuinfo_x86 *c) 138void __cpuinit validate_pat_support(struct cpuinfo_x86 *c)
53{ 139{