p4.c 6.5 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10
/*
 * P4 specific Machine Check Exception Reporting
 */

#include <linux/init.h>
#include <linux/types.h>
#include <linux/kernel.h>
#include <linux/interrupt.h>
#include <linux/smp.h>

11
#include <asm/processor.h>
L
Linus Torvalds 已提交
12 13
#include <asm/system.h>
#include <asm/msr.h>
14
#include <asm/genapic.h>
L
Linus Torvalds 已提交
15

16 17
#include <asm/therm_throt.h>

L
Linus Torvalds 已提交
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
#include "mce.h"

/* as supported by the P4/Xeon family */
struct intel_mce_extended_msrs {
	u32 eax;
	u32 ebx;
	u32 ecx;
	u32 edx;
	u32 esi;
	u32 edi;
	u32 ebp;
	u32 esp;
	u32 eflags;
	u32 eip;
	/* u32 *reserved[]; */
};

35
static int mce_num_extended_msrs;
L
Linus Torvalds 已提交
36 37 38 39


#ifdef CONFIG_X86_MCE_P4THERMAL
static void unexpected_thermal_interrupt(struct pt_regs *regs)
40
{
L
Linus Torvalds 已提交
41 42 43 44 45 46 47 48
	printk(KERN_ERR "CPU%d: Unexpected LVT TMR interrupt!\n",
			smp_processor_id());
	add_taint(TAINT_MACHINE_CHECK);
}

/* P4/Xeon Thermal transition interrupt handler */
static void intel_thermal_interrupt(struct pt_regs *regs)
{
49
	__u64 msr_val;
L
Linus Torvalds 已提交
50 51 52

	ack_APIC_irq();

53 54
	rdmsrl(MSR_IA32_THERM_STATUS, msr_val);
	therm_throt_process(msr_val & 0x1);
L
Linus Torvalds 已提交
55 56 57 58 59
}

/* Thermal interrupt handler for this CPU setup */
static void (*vendor_thermal_interrupt)(struct pt_regs *regs) = unexpected_thermal_interrupt;

60
void smp_thermal_interrupt(struct pt_regs *regs)
L
Linus Torvalds 已提交
61 62 63
{
	irq_enter();
	vendor_thermal_interrupt(regs);
64
	__get_cpu_var(irq_stat).irq_thermal_count++;
L
Linus Torvalds 已提交
65 66 67 68
	irq_exit();
}

/* P4/Xeon Thermal regulation detect and init */
S
Shaohua Li 已提交
69
static void intel_init_thermal(struct cpuinfo_x86 *c)
L
Linus Torvalds 已提交
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
{
	u32 l, h;
	unsigned int cpu = smp_processor_id();

	/* Thermal monitoring */
	if (!cpu_has(c, X86_FEATURE_ACPI))
		return;	/* -ENODEV */

	/* Clock modulation */
	if (!cpu_has(c, X86_FEATURE_ACC))
		return;	/* -ENODEV */

	/* first check if its enabled already, in which case there might
	 * be some SMM goo which handles it, so we can't even put a handler
	 * since it might be delivered via SMI already -zwanem.
	 */
86
	rdmsr(MSR_IA32_MISC_ENABLE, l, h);
L
Linus Torvalds 已提交
87 88 89 90 91 92 93
	h = apic_read(APIC_LVTTHMR);
	if ((l & (1<<3)) && (h & APIC_DM_SMI)) {
		printk(KERN_DEBUG "CPU%d: Thermal monitoring handled by SMI\n",
				cpu);
		return; /* -EBUSY */
	}

94
	/* check whether a vector already exists, temporarily masked? */
L
Linus Torvalds 已提交
95 96 97 98 99 100 101 102 103 104
	if (h & APIC_VECTOR_MASK) {
		printk(KERN_DEBUG "CPU%d: Thermal LVT vector (%#x) already "
				"installed\n",
			cpu, (h & APIC_VECTOR_MASK));
		return; /* -EBUSY */
	}

	/* The temperature transition interrupt handler setup */
	h = THERMAL_APIC_VECTOR;		/* our delivery vector */
	h |= (APIC_DM_FIXED | APIC_LVT_MASKED);	/* we'll mask till we're ready */
105
	apic_write(APIC_LVTTHMR, h);
L
Linus Torvalds 已提交
106

107 108
	rdmsr(MSR_IA32_THERM_INTERRUPT, l, h);
	wrmsr(MSR_IA32_THERM_INTERRUPT, l | 0x03 , h);
L
Linus Torvalds 已提交
109 110 111

	/* ok we're good to go... */
	vendor_thermal_interrupt = intel_thermal_interrupt;
112

113 114 115 116
	rdmsr(MSR_IA32_MISC_ENABLE, l, h);
	wrmsr(MSR_IA32_MISC_ENABLE, l | (1<<3), h);

	l = apic_read(APIC_LVTTHMR);
117
	apic_write(APIC_LVTTHMR, l & ~APIC_LVT_MASKED);
118
	printk(KERN_INFO "CPU%d: Thermal monitoring enabled\n", cpu);
119 120 121

	/* enable thermal throttle processing */
	atomic_set(&therm_throt_en, 1);
L
Linus Torvalds 已提交
122 123 124 125 126 127
	return;
}
#endif /* CONFIG_X86_MCE_P4THERMAL */


/* P4/Xeon Extended MCE MSR retrieval, return 0 if unsupported */
128
static inline void intel_get_extended_msrs(struct intel_mce_extended_msrs *r)
L
Linus Torvalds 已提交
129 130 131
{
	u32 h;

132 133 134 135 136 137 138 139 140 141
	rdmsr(MSR_IA32_MCG_EAX, r->eax, h);
	rdmsr(MSR_IA32_MCG_EBX, r->ebx, h);
	rdmsr(MSR_IA32_MCG_ECX, r->ecx, h);
	rdmsr(MSR_IA32_MCG_EDX, r->edx, h);
	rdmsr(MSR_IA32_MCG_ESI, r->esi, h);
	rdmsr(MSR_IA32_MCG_EDI, r->edi, h);
	rdmsr(MSR_IA32_MCG_EBP, r->ebp, h);
	rdmsr(MSR_IA32_MCG_ESP, r->esp, h);
	rdmsr(MSR_IA32_MCG_EFLAGS, r->eflags, h);
	rdmsr(MSR_IA32_MCG_EIP, r->eip, h);
L
Linus Torvalds 已提交
142 143
}

144
static void intel_machine_check(struct pt_regs *regs, long error_code)
L
Linus Torvalds 已提交
145
{
146
	int recover = 1;
L
Linus Torvalds 已提交
147 148 149 150
	u32 alow, ahigh, high, low;
	u32 mcgstl, mcgsth;
	int i;

151
	rdmsr(MSR_IA32_MCG_STATUS, mcgstl, mcgsth);
L
Linus Torvalds 已提交
152
	if (mcgstl & (1<<0))	/* Recoverable ? */
153
		recover = 0;
L
Linus Torvalds 已提交
154

155
	printk(KERN_EMERG "CPU %d: Machine Check Exception: %08x%08x\n",
L
Linus Torvalds 已提交
156 157
		smp_processor_id(), mcgsth, mcgstl);

158 159 160
	if (mce_num_extended_msrs > 0) {
		struct intel_mce_extended_msrs dbg;
		intel_get_extended_msrs(&dbg);
161
		printk(KERN_DEBUG "CPU %d: EIP: %08x EFLAGS: %08x\n"
162 163 164 165
			"\teax: %08x ebx: %08x ecx: %08x edx: %08x\n"
			"\tesi: %08x edi: %08x ebp: %08x esp: %08x\n",
			smp_processor_id(), dbg.eip, dbg.eflags,
			dbg.eax, dbg.ebx, dbg.ecx, dbg.edx,
L
Linus Torvalds 已提交
166 167 168
			dbg.esi, dbg.edi, dbg.ebp, dbg.esp);
	}

169
	for (i = 0; i < nr_mce_banks; i++) {
170
		rdmsr(MSR_IA32_MC0_STATUS+i*4, low, high);
L
Linus Torvalds 已提交
171
		if (high & (1<<31)) {
172 173 174
			char misc[20];
			char addr[24];
			misc[0] = addr[0] = '\0';
L
Linus Torvalds 已提交
175 176 177 178 179 180
			if (high & (1<<29))
				recover |= 1;
			if (high & (1<<25))
				recover |= 2;
			high &= ~(1<<31);
			if (high & (1<<27)) {
181 182
				rdmsr(MSR_IA32_MC0_MISC+i*4, alow, ahigh);
				snprintf(misc, 20, "[%08x%08x]", ahigh, alow);
L
Linus Torvalds 已提交
183 184
			}
			if (high & (1<<26)) {
185 186
				rdmsr(MSR_IA32_MC0_ADDR+i*4, alow, ahigh);
				snprintf(addr, 24, " at %08x%08x", ahigh, alow);
L
Linus Torvalds 已提交
187
			}
188
			printk(KERN_EMERG "CPU %d: Bank %d: %08x%08x%s%s\n",
189
				smp_processor_id(), i, high, low, misc, addr);
L
Linus Torvalds 已提交
190 191 192 193
		}
	}

	if (recover & 2)
194
		panic("CPU context corrupt");
L
Linus Torvalds 已提交
195
	if (recover & 1)
196
		panic("Unable to continue");
L
Linus Torvalds 已提交
197 198

	printk(KERN_EMERG "Attempting to continue.\n");
199 200
	/*
	 * Do not clear the MSR_IA32_MCi_STATUS if the error is not
L
Linus Torvalds 已提交
201 202 203
	 * recoverable/continuable.This will allow BIOS to look at the MSRs
	 * for errors if the OS could not log the error.
	 */
204
	for (i = 0; i < nr_mce_banks; i++) {
L
Linus Torvalds 已提交
205 206
		u32 msr;
		msr = MSR_IA32_MC0_STATUS+i*4;
207
		rdmsr(msr, low, high);
L
Linus Torvalds 已提交
208 209 210 211 212 213 214 215 216
		if (high&(1<<31)) {
			/* Clear it */
			wrmsr(msr, 0UL, 0UL);
			/* Serialize */
			wmb();
			add_taint(TAINT_MACHINE_CHECK);
		}
	}
	mcgstl &= ~(1<<2);
217
	wrmsr(MSR_IA32_MCG_STATUS, mcgstl, mcgsth);
L
Linus Torvalds 已提交
218 219 220
}


S
Shaohua Li 已提交
221
void intel_p4_mcheck_init(struct cpuinfo_x86 *c)
L
Linus Torvalds 已提交
222 223 224
{
	u32 l, h;
	int i;
225

L
Linus Torvalds 已提交
226 227 228
	machine_check_vector = intel_machine_check;
	wmb();

229 230
	printk(KERN_INFO "Intel machine check architecture supported.\n");
	rdmsr(MSR_IA32_MCG_CAP, l, h);
L
Linus Torvalds 已提交
231
	if (l & (1<<8))	/* Control register present ? */
232
		wrmsr(MSR_IA32_MCG_CTL, 0xffffffff, 0xffffffff);
L
Linus Torvalds 已提交
233 234
	nr_mce_banks = l & 0xff;

235 236 237
	for (i = 0; i < nr_mce_banks; i++) {
		wrmsr(MSR_IA32_MC0_CTL+4*i, 0xffffffff, 0xffffffff);
		wrmsr(MSR_IA32_MC0_STATUS+4*i, 0x0, 0x0);
L
Linus Torvalds 已提交
238 239
	}

240 241
	set_in_cr4(X86_CR4_MCE);
	printk(KERN_INFO "Intel machine check reporting enabled on CPU#%d.\n",
L
Linus Torvalds 已提交
242 243 244
		smp_processor_id());

	/* Check for P4/Xeon extended MCE MSRs */
245
	rdmsr(MSR_IA32_MCG_CAP, l, h);
L
Linus Torvalds 已提交
246 247
	if (l & (1<<9))	{/* MCG_EXT_P */
		mce_num_extended_msrs = (l >> 16) & 0xff;
248
		printk(KERN_INFO "CPU%d: Intel P4/Xeon Extended MCE MSRs (%d)"
L
Linus Torvalds 已提交
249 250 251 252 253 254 255 256 257
				" available\n",
			smp_processor_id(), mce_num_extended_msrs);

#ifdef CONFIG_X86_MCE_P4THERMAL
		/* Check for P4/Xeon Thermal monitor */
		intel_init_thermal(c);
#endif
	}
}