]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
x86, cpu: Make APERF/MPERF a normal table-driven flag
authorH. Peter Anvin <hpa@zytor.com>
Mon, 3 May 2010 22:49:31 +0000 (15:49 -0700)
committerH. Peter Anvin <hpa@zytor.com>
Mon, 3 May 2010 22:49:31 +0000 (15:49 -0700)
APERF/MPERF can be handled via the table like all the other scattered
CPU flags.

Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Cc: Thomas Renninger <trenn@suse.de>
Cc: Borislav Petkov <borislav.petkov@amd.com>
LKML-Reference: <1270065406-1814-4-git-send-email-bp@amd64.org>

arch/x86/kernel/cpu/addon_cpuid_features.c

index fd1fc1902a4744d6e77f6ee3d9a8cc6cc0bfc6e1..10fa5684a6628e5e095a698d8bc8065748bc4534 100644 (file)
@@ -30,13 +30,14 @@ void __cpuinit init_scattered_cpuid_features(struct cpuinfo_x86 *c)
        const struct cpuid_bit *cb;
 
        static const struct cpuid_bit __cpuinitconst cpuid_bits[] = {
-               { X86_FEATURE_IDA,   CR_EAX, 1, 0x00000006 },
-               { X86_FEATURE_ARAT,  CR_EAX, 2, 0x00000006 },
-               { X86_FEATURE_CPB,   CR_EDX, 9, 0x80000007 },
-               { X86_FEATURE_NPT,   CR_EDX, 0, 0x8000000a },
-               { X86_FEATURE_LBRV,  CR_EDX, 1, 0x8000000a },
-               { X86_FEATURE_SVML,  CR_EDX, 2, 0x8000000a },
-               { X86_FEATURE_NRIPS, CR_EDX, 3, 0x8000000a },
+               { X86_FEATURE_IDA,              CR_EAX, 1, 0x00000006 },
+               { X86_FEATURE_ARAT,             CR_EAX, 2, 0x00000006 },
+               { X86_FEATURE_APERFMPERF,       CR_ECX, 0, 0x00000006 },
+               { X86_FEATURE_CPB,              CR_EDX, 9, 0x80000007 },
+               { X86_FEATURE_NPT,              CR_EDX, 0, 0x8000000a },
+               { X86_FEATURE_LBRV,             CR_EDX, 1, 0x8000000a },
+               { X86_FEATURE_SVML,             CR_EDX, 2, 0x8000000a },
+               { X86_FEATURE_NRIPS,            CR_EDX, 3, 0x8000000a },
                { 0, 0, 0, 0 }
        };
 
@@ -54,14 +55,6 @@ void __cpuinit init_scattered_cpuid_features(struct cpuinfo_x86 *c)
                if (regs[cb->reg] & (1 << cb->bit))
                        set_cpu_cap(c, cb->feature);
        }
-
-       /*
-        * common AMD/Intel features
-        */
-       if (c->cpuid_level >= 6) {
-               if (cpuid_ecx(6) & 0x1)
-                       set_cpu_cap(c, X86_FEATURE_APERFMPERF);
-       }
 }
 
 /* leaf 0xb SMT level */