Merge branch 'linus' into x86/apic
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / x86 / kernel / cpu / mcheck / mce_intel_64.c
blob4b7d78cdc0a5baa9f93350088312646ae0dcacc4
1 /*
2 * Intel specific MCE features.
3 * Copyright 2004 Zwane Mwaikambo <zwane@linuxpower.ca>
4 */
6 #include <linux/init.h>
7 #include <linux/interrupt.h>
8 #include <linux/percpu.h>
9 #include <asm/processor.h>
10 #include <asm/apic.h>
11 #include <asm/msr.h>
12 #include <asm/mce.h>
13 #include <asm/hw_irq.h>
14 #include <asm/idle.h>
15 #include <asm/therm_throt.h>
17 asmlinkage void smp_thermal_interrupt(void)
19 __u64 msr_val;
21 ack_APIC_irq();
23 exit_idle();
24 irq_enter();
26 rdmsrl(MSR_IA32_THERM_STATUS, msr_val);
27 if (therm_throt_process(msr_val & 1))
28 mce_log_therm_throt_event(smp_processor_id(), msr_val);
30 inc_irq_stat(irq_thermal_count);
31 irq_exit();
34 static void intel_init_thermal(struct cpuinfo_x86 *c)
36 u32 l, h;
37 int tm2 = 0;
38 unsigned int cpu = smp_processor_id();
40 if (!cpu_has(c, X86_FEATURE_ACPI))
41 return;
43 if (!cpu_has(c, X86_FEATURE_ACC))
44 return;
46 /* first check if TM1 is already enabled by the BIOS, in which
47 * case there might be some SMM goo which handles it, so we can't even
48 * put a handler since it might be delivered via SMI already.
50 rdmsr(MSR_IA32_MISC_ENABLE, l, h);
51 h = apic_read(APIC_LVTTHMR);
52 if ((l & (1 << 3)) && (h & APIC_DM_SMI)) {
53 printk(KERN_DEBUG
54 "CPU%d: Thermal monitoring handled by SMI\n", cpu);
55 return;
58 if (cpu_has(c, X86_FEATURE_TM2) && (l & (1 << 13)))
59 tm2 = 1;
61 if (h & APIC_VECTOR_MASK) {
62 printk(KERN_DEBUG
63 "CPU%d: Thermal LVT vector (%#x) already "
64 "installed\n", cpu, (h & APIC_VECTOR_MASK));
65 return;
68 h = THERMAL_APIC_VECTOR;
69 h |= (APIC_DM_FIXED | APIC_LVT_MASKED);
70 apic_write(APIC_LVTTHMR, h);
72 rdmsr(MSR_IA32_THERM_INTERRUPT, l, h);
73 wrmsr(MSR_IA32_THERM_INTERRUPT, l | 0x03, h);
75 rdmsr(MSR_IA32_MISC_ENABLE, l, h);
76 wrmsr(MSR_IA32_MISC_ENABLE, l | (1 << 3), h);
78 l = apic_read(APIC_LVTTHMR);
79 apic_write(APIC_LVTTHMR, l & ~APIC_LVT_MASKED);
80 printk(KERN_INFO "CPU%d: Thermal monitoring enabled (%s)\n",
81 cpu, tm2 ? "TM2" : "TM1");
83 /* enable thermal throttle processing */
84 atomic_set(&therm_throt_en, 1);
85 return;
88 void mce_intel_feature_init(struct cpuinfo_x86 *c)
90 intel_init_thermal(c);