aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2008-06-09 11:27:20 -0400
committerIngo Molnar <mingo@elte.hu>2008-06-10 09:52:14 -0400
commit732d7be17b98ebfd59e5864c3490f19856fa832c (patch)
tree404a3af449d073675312032b6182f9400e64a091 /arch/x86
parentaa83f3f2cfc74d66d01b1d2eb1485ea1103a0f4e (diff)
x86: use cpuinfo to check for interrupt pending message msr
Simplify code: no need to do a cpuid(1) again. The cpuinfo structure has all necessary information already. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86')
-rw-r--r--arch/x86/kernel/cpu/amd.c41
-rw-r--r--arch/x86/kernel/cpu/amd_64.c38
2 files changed, 30 insertions, 49 deletions
diff --git a/arch/x86/kernel/cpu/amd.c b/arch/x86/kernel/cpu/amd.c
index 30b5055be355..e76b49e7a916 100644
--- a/arch/x86/kernel/cpu/amd.c
+++ b/arch/x86/kernel/cpu/amd.c
@@ -25,35 +25,24 @@ extern void vide(void);
25__asm__(".align 4\nvide: ret"); 25__asm__(".align 4\nvide: ret");
26 26
27#ifdef CONFIG_X86_LOCAL_APIC 27#ifdef CONFIG_X86_LOCAL_APIC
28#define CPUID_PROCESSOR_SIGNATURE 1
29#define CPUID_XFAM 0x0ff00000
30#define CPUID_XFAM_K8 0x00000000
31#define CPUID_XFAM_10H 0x00100000
32#define CPUID_XFAM_11H 0x00200000
33#define CPUID_XMOD 0x000f0000
34#define CPUID_XMOD_REV_F 0x00040000
35 28
36/* AMD systems with C1E don't have a working lAPIC timer. Check for that. */ 29/* AMD systems with C1E don't have a working lAPIC timer. Check for that. */
37static __cpuinit int amd_apic_timer_broken(void) 30static __cpuinit int amd_apic_timer_broken(struct cpuinfo_x86 *c)
38{ 31{
39 u32 lo, hi; 32 u32 lo, hi;
40 u32 eax = cpuid_eax(CPUID_PROCESSOR_SIGNATURE); 33
41 switch (eax & CPUID_XFAM) { 34 if (c->x86 < 0x0F)
42 case CPUID_XFAM_K8: 35 return 0;
43 if ((eax & CPUID_XMOD) < CPUID_XMOD_REV_F) 36
44 break; 37 /* Family 0x0f models < rev F do not have this MSR */
45 case CPUID_XFAM_10H: 38 if (c->x86 == 0x0f && c->x86_model < 0x40)
46 case CPUID_XFAM_11H: 39 return 0;
47 rdmsr(MSR_K8_INT_PENDING_MSG, lo, hi); 40
48 if (lo & K8_INTP_C1E_ACTIVE_MASK) { 41 rdmsr(MSR_K8_INT_PENDING_MSG, lo, hi);
49 if (smp_processor_id() != boot_cpu_physical_apicid) 42 if (lo & K8_INTP_C1E_ACTIVE_MASK) {
50 printk(KERN_INFO "AMD C1E detected late. " 43 if (smp_processor_id() != boot_cpu_physical_apicid)
51 " Force timer broadcast.\n"); 44 printk(KERN_INFO "AMD C1E detected late. "
52 return 1; 45 "Force timer broadcast.\n");
53 }
54 break;
55 default:
56 /* err on the side of caution */
57 return 1; 46 return 1;
58 } 47 }
59 return 0; 48 return 0;
@@ -297,7 +286,7 @@ static void __cpuinit init_amd(struct cpuinfo_x86 *c)
297 } 286 }
298 287
299#ifdef CONFIG_X86_LOCAL_APIC 288#ifdef CONFIG_X86_LOCAL_APIC
300 if (amd_apic_timer_broken()) 289 if (amd_apic_timer_broken(c))
301 local_apic_timer_disabled = 1; 290 local_apic_timer_disabled = 1;
302#endif 291#endif
303 292
diff --git a/arch/x86/kernel/cpu/amd_64.c b/arch/x86/kernel/cpu/amd_64.c
index 6eef3c79d151..f5fc161d8f2a 100644
--- a/arch/x86/kernel/cpu/amd_64.c
+++ b/arch/x86/kernel/cpu/amd_64.c
@@ -110,31 +110,23 @@ static void __cpuinit early_init_amd_mc(struct cpuinfo_x86 *c)
110#endif 110#endif
111} 111}
112 112
113#define CPUID_PROCESSOR_SIGNATURE 1
114#define CPUID_XFAM 0x0ff00000
115#define CPUID_XFAM_K8 0x00000000
116#define CPUID_XFAM_10H 0x00100000
117#define CPUID_XFAM_11H 0x00200000
118#define CPUID_XMOD 0x000f0000
119#define CPUID_XMOD_REV_F 0x00040000
120
121/* AMD systems with C1E don't have a working lAPIC timer. Check for that. */ 113/* AMD systems with C1E don't have a working lAPIC timer. Check for that. */
122static __cpuinit int amd_apic_timer_broken(void) 114static __cpuinit int amd_apic_timer_broken(struct cpuinfo_x86 *c)
123{ 115{
124 u32 lo, hi, eax = cpuid_eax(CPUID_PROCESSOR_SIGNATURE); 116 u32 lo, hi;
125 117
126 switch (eax & CPUID_XFAM) { 118 if (c->x86 < 0x0F)
127 case CPUID_XFAM_K8: 119 return 0;
128 if ((eax & CPUID_XMOD) < CPUID_XMOD_REV_F) 120
129 break; 121 /* Family 0x0f models < rev F do not have this MSR */
130 case CPUID_XFAM_10H: 122 if (c->x86 == 0x0f && c->x86_model < 0x40)
131 case CPUID_XFAM_11H: 123 return 0;
132 rdmsr(MSR_K8_INT_PENDING_MSG, lo, hi); 124
133 if (lo & K8_INTP_C1E_ACTIVE_MASK) 125 rdmsr(MSR_K8_INT_PENDING_MSG, lo, hi);
134 return 1; 126 if (lo & K8_INTP_C1E_ACTIVE_MASK) {
135 break; 127 if (smp_processor_id() != boot_cpu_physical_apicid)
136 default: 128 printk(KERN_INFO "AMD C1E detected late. "
137 /* err on the side of caution */ 129 "Force timer broadcast.\n");
138 return 1; 130 return 1;
139 } 131 }
140 return 0; 132 return 0;
@@ -220,7 +212,7 @@ void __cpuinit init_amd(struct cpuinfo_x86 *c)
220 if (c->x86 == 0x10) 212 if (c->x86 == 0x10)
221 amd_enable_pci_ext_cfg(c); 213 amd_enable_pci_ext_cfg(c);
222 214
223 if (amd_apic_timer_broken()) 215 if (amd_apic_timer_broken(c))
224 disable_apic_timer = 1; 216 disable_apic_timer = 1;
225 217
226 if (c == &boot_cpu_data && c->x86 >= 0xf && c->x86 <= 0x11) { 218 if (c == &boot_cpu_data && c->x86 >= 0xf && c->x86 <= 0x11) {