Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 193f3fcb authored by Andreas Herrmann's avatar Andreas Herrmann Committed by H. Peter Anvin
Browse files

x86: Add cpu_has_topoext



Introduce cpu_has_topoext to check for AMD's CPUID topology extensions
support. It indicates support for
CPUID Fn8000_001D_EAX_x[N:0]-CPUID Fn8000_001E_EDX

See AMD's CPUID Specification, Publication # 25481
(as of Rev. 2.34 September 2010)

Signed-off-by: default avatarAndreas Herrmann <andreas.herrmann3@amd.com>
Link: http://lkml.kernel.org/r/20121019085813.GD26718@alberich


Signed-off-by: default avatarH. Peter Anvin <hpa@linux.intel.com>
parent 77b67063
Loading
Loading
Loading
Loading
+1 −0
Original line number Original line Diff line number Diff line
@@ -311,6 +311,7 @@ extern const char * const x86_power_flags[32];
#define cpu_has_cx8		boot_cpu_has(X86_FEATURE_CX8)
#define cpu_has_cx8		boot_cpu_has(X86_FEATURE_CX8)
#define cpu_has_cx16		boot_cpu_has(X86_FEATURE_CX16)
#define cpu_has_cx16		boot_cpu_has(X86_FEATURE_CX16)
#define cpu_has_eager_fpu	boot_cpu_has(X86_FEATURE_EAGER_FPU)
#define cpu_has_eager_fpu	boot_cpu_has(X86_FEATURE_EAGER_FPU)
#define cpu_has_topoext		boot_cpu_has(X86_FEATURE_TOPOEXT)


#if defined(CONFIG_X86_INVLPG) || defined(CONFIG_X86_64)
#if defined(CONFIG_X86_INVLPG) || defined(CONFIG_X86_64)
# define cpu_has_invlpg		1
# define cpu_has_invlpg		1
+1 −1
Original line number Original line Diff line number Diff line
@@ -304,7 +304,7 @@ static void __cpuinit amd_get_topology(struct cpuinfo_x86 *c)
	int cpu = smp_processor_id();
	int cpu = smp_processor_id();


	/* get information required for multi-node processors */
	/* get information required for multi-node processors */
	if (cpu_has(c, X86_FEATURE_TOPOEXT)) {
	if (cpu_has_topoext) {
		u32 eax, ebx, ecx, edx;
		u32 eax, ebx, ecx, edx;


		cpuid(0x8000001e, &eax, &ebx, &ecx, &edx);
		cpuid(0x8000001e, &eax, &ebx, &ecx, &edx);
+1 −1
Original line number Original line Diff line number Diff line
@@ -313,7 +313,7 @@ do { \


static bool __cpuinit match_smt(struct cpuinfo_x86 *c, struct cpuinfo_x86 *o)
static bool __cpuinit match_smt(struct cpuinfo_x86 *c, struct cpuinfo_x86 *o)
{
{
	if (cpu_has(c, X86_FEATURE_TOPOEXT)) {
	if (cpu_has_topoext) {
		int cpu1 = c->cpu_index, cpu2 = o->cpu_index;
		int cpu1 = c->cpu_index, cpu2 = o->cpu_index;


		if (c->phys_proc_id == o->phys_proc_id &&
		if (c->phys_proc_id == o->phys_proc_id &&