Merge branch 'linus' into x86/apic
[deliverable/linux.git] / arch / x86 / kernel / cpu / mcheck / mce_intel_64.c
CommitLineData
1da177e4
LT
1/*
2 * Intel specific MCE features.
3 * Copyright 2004 Zwane Mwaikambo <zwane@linuxpower.ca>
4 */
5
6#include <linux/init.h>
7#include <linux/interrupt.h>
8#include <linux/percpu.h>
9#include <asm/processor.h>
3819cd48 10#include <asm/apic.h>
1da177e4
LT
11#include <asm/msr.h>
12#include <asm/mce.h>
13#include <asm/hw_irq.h>
95833c83 14#include <asm/idle.h>
15d5f839 15#include <asm/therm_throt.h>
1da177e4
LT
16
17asmlinkage void smp_thermal_interrupt(void)
18{
15d5f839 19 __u64 msr_val;
1da177e4
LT
20
21 ack_APIC_irq();
22
95833c83 23 exit_idle();
1da177e4 24 irq_enter();
15d5f839
DZ
25
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);
29
8ae93669 30 inc_irq_stat(irq_thermal_count);
1da177e4
LT
31 irq_exit();
32}
33
e6982c67 34static void __cpuinit intel_init_thermal(struct cpuinfo_x86 *c)
1da177e4
LT
35{
36 u32 l, h;
37 int tm2 = 0;
38 unsigned int cpu = smp_processor_id();
39
40 if (!cpu_has(c, X86_FEATURE_ACPI))
41 return;
42
43 if (!cpu_has(c, X86_FEATURE_ACC))
44 return;
45
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.
49 */
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;
56 }
57
58 if (cpu_has(c, X86_FEATURE_TM2) && (l & (1 << 13)))
59 tm2 = 1;
60
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;
66 }
67
68 h = THERMAL_APIC_VECTOR;
69 h |= (APIC_DM_FIXED | APIC_LVT_MASKED);
11a8e778 70 apic_write(APIC_LVTTHMR, h);
1da177e4
LT
71
72 rdmsr(MSR_IA32_THERM_INTERRUPT, l, h);
73 wrmsr(MSR_IA32_THERM_INTERRUPT, l | 0x03, h);
74
75 rdmsr(MSR_IA32_MISC_ENABLE, l, h);
76 wrmsr(MSR_IA32_MISC_ENABLE, l | (1 << 3), h);
77
78 l = apic_read(APIC_LVTTHMR);
11a8e778 79 apic_write(APIC_LVTTHMR, l & ~APIC_LVT_MASKED);
1da177e4
LT
80 printk(KERN_INFO "CPU%d: Thermal monitoring enabled (%s)\n",
81 cpu, tm2 ? "TM2" : "TM1");
3222b36f
DZ
82
83 /* enable thermal throttle processing */
84 atomic_set(&therm_throt_en, 1);
1da177e4
LT
85 return;
86}
87
e6982c67 88void __cpuinit mce_intel_feature_init(struct cpuinfo_x86 *c)
1da177e4
LT
89{
90 intel_init_thermal(c);
91}
This page took 0.481201 seconds and 5 git commands to generate.