aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/cpu/amd_64.c
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2008-06-09 11:11:13 -0400
committerIngo Molnar <mingo@elte.hu>2008-06-10 09:52:07 -0400
commitaa83f3f2cfc74d66d01b1d2eb1485ea1103a0f4e (patch)
tree19887cba6f901b8e3a5d20080c5e74ef671fba4c /arch/x86/kernel/cpu/amd_64.c
parent6ddd2a27948f0bd02a2ad001e8a6816898eba0dc (diff)
x86: cleanup C1E enabled detection
Rename the "MSR_K8_ENABLE_C1E" MSR to INT_PENDING_MSG, which is the name in the data sheet as well. Move the C1E mask to the header file. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/cpu/amd_64.c')
-rw-r--r--arch/x86/kernel/cpu/amd_64.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/arch/x86/kernel/cpu/amd_64.c b/arch/x86/kernel/cpu/amd_64.c
index 626fc21f027..6eef3c79d15 100644
--- a/arch/x86/kernel/cpu/amd_64.c
+++ b/arch/x86/kernel/cpu/amd_64.c
@@ -110,7 +110,6 @@ static void __cpuinit early_init_amd_mc(struct cpuinfo_x86 *c)
110#endif 110#endif
111} 111}
112 112
113#define ENABLE_C1E_MASK 0x18000000
114#define CPUID_PROCESSOR_SIGNATURE 1 113#define CPUID_PROCESSOR_SIGNATURE 1
115#define CPUID_XFAM 0x0ff00000 114#define CPUID_XFAM 0x0ff00000
116#define CPUID_XFAM_K8 0x00000000 115#define CPUID_XFAM_K8 0x00000000
@@ -130,8 +129,8 @@ static __cpuinit int amd_apic_timer_broken(void)
130 break; 129 break;
131 case CPUID_XFAM_10H: 130 case CPUID_XFAM_10H:
132 case CPUID_XFAM_11H: 131 case CPUID_XFAM_11H:
133 rdmsr(MSR_K8_ENABLE_C1E, lo, hi); 132 rdmsr(MSR_K8_INT_PENDING_MSG, lo, hi);
134 if (lo & ENABLE_C1E_MASK) 133 if (lo & K8_INTP_C1E_ACTIVE_MASK)
135 return 1; 134 return 1;
136 break; 135 break;
137 default: 136 default: