p4.c 4.9 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5
/*
 * P4 specific Machine Check Exception Reporting
 */

#include <linux/interrupt.h>
I
Ingo Molnar 已提交
6 7 8
#include <linux/kernel.h>
#include <linux/types.h>
#include <linux/init.h>
L
Linus Torvalds 已提交
9 10
#include <linux/smp.h>

I
Ingo Molnar 已提交
11
#include <asm/therm_throt.h>
12
#include <asm/processor.h>
L
Linus Torvalds 已提交
13 14
#include <asm/system.h>
#include <asm/apic.h>
H
Hidetoshi Seto 已提交
15
#include <asm/mce.h>
I
Ingo Molnar 已提交
16
#include <asm/msr.h>
17

L
Linus Torvalds 已提交
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
/* 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[]; */
};

33
static int mce_num_extended_msrs;
L
Linus Torvalds 已提交
34 35 36


#ifdef CONFIG_X86_MCE_P4THERMAL
I
Ingo Molnar 已提交
37

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

I
Ingo Molnar 已提交
45
/* P4/Xeon Thermal transition interrupt handler: */
L
Linus Torvalds 已提交
46 47
static void intel_thermal_interrupt(struct pt_regs *regs)
{
48
	__u64 msr_val;
L
Linus Torvalds 已提交
49 50 51

	ack_APIC_irq();

52
	rdmsrl(MSR_IA32_THERM_STATUS, msr_val);
53
	therm_throt_process(msr_val & THERM_STATUS_PROCHOT);
L
Linus Torvalds 已提交
54 55
}

I
Ingo Molnar 已提交
56 57 58
/* Thermal interrupt handler for this CPU setup: */
static void (*vendor_thermal_interrupt)(struct pt_regs *regs) =
						unexpected_thermal_interrupt;
L
Linus Torvalds 已提交
59

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
	irq_exit();
}

68
void intel_set_thermal_handler(void)
69 70 71 72
{
	vendor_thermal_interrupt = intel_thermal_interrupt;
}

L
Linus Torvalds 已提交
73 74 75
#endif /* CONFIG_X86_MCE_P4THERMAL */

/* P4/Xeon Extended MCE MSR retrieval, return 0 if unsupported */
I
Ingo Molnar 已提交
76
static void intel_get_extended_msrs(struct intel_mce_extended_msrs *r)
L
Linus Torvalds 已提交
77 78 79
{
	u32 h;

80 81 82 83 84 85 86 87 88 89
	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 已提交
90 91
}

92
static void intel_machine_check(struct pt_regs *regs, long error_code)
L
Linus Torvalds 已提交
93 94 95
{
	u32 alow, ahigh, high, low;
	u32 mcgstl, mcgsth;
I
Ingo Molnar 已提交
96
	int recover = 1;
L
Linus Torvalds 已提交
97 98
	int i;

99
	rdmsr(MSR_IA32_MCG_STATUS, mcgstl, mcgsth);
L
Linus Torvalds 已提交
100
	if (mcgstl & (1<<0))	/* Recoverable ? */
101
		recover = 0;
L
Linus Torvalds 已提交
102

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

106 107
	if (mce_num_extended_msrs > 0) {
		struct intel_mce_extended_msrs dbg;
I
Ingo Molnar 已提交
108

109
		intel_get_extended_msrs(&dbg);
I
Ingo Molnar 已提交
110

111
		printk(KERN_DEBUG "CPU %d: EIP: %08x EFLAGS: %08x\n"
112 113 114 115
			"\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 已提交
116 117 118
			dbg.esi, dbg.edi, dbg.ebp, dbg.esp);
	}

119
	for (i = 0; i < nr_mce_banks; i++) {
120
		rdmsr(MSR_IA32_MC0_STATUS+i*4, low, high);
L
Linus Torvalds 已提交
121
		if (high & (1<<31)) {
122 123
			char misc[20];
			char addr[24];
I
Ingo Molnar 已提交
124

125
			misc[0] = addr[0] = '\0';
L
Linus Torvalds 已提交
126 127 128 129 130 131
			if (high & (1<<29))
				recover |= 1;
			if (high & (1<<25))
				recover |= 2;
			high &= ~(1<<31);
			if (high & (1<<27)) {
132 133
				rdmsr(MSR_IA32_MC0_MISC+i*4, alow, ahigh);
				snprintf(misc, 20, "[%08x%08x]", ahigh, alow);
L
Linus Torvalds 已提交
134 135
			}
			if (high & (1<<26)) {
136 137
				rdmsr(MSR_IA32_MC0_ADDR+i*4, alow, ahigh);
				snprintf(addr, 24, " at %08x%08x", ahigh, alow);
L
Linus Torvalds 已提交
138
			}
139
			printk(KERN_EMERG "CPU %d: Bank %d: %08x%08x%s%s\n",
140
				smp_processor_id(), i, high, low, misc, addr);
L
Linus Torvalds 已提交
141 142 143 144
		}
	}

	if (recover & 2)
145
		panic("CPU context corrupt");
L
Linus Torvalds 已提交
146
	if (recover & 1)
147
		panic("Unable to continue");
L
Linus Torvalds 已提交
148 149

	printk(KERN_EMERG "Attempting to continue.\n");
I
Ingo Molnar 已提交
150

151 152
	/*
	 * Do not clear the MSR_IA32_MCi_STATUS if the error is not
L
Linus Torvalds 已提交
153 154 155
	 * recoverable/continuable.This will allow BIOS to look at the MSRs
	 * for errors if the OS could not log the error.
	 */
156
	for (i = 0; i < nr_mce_banks; i++) {
L
Linus Torvalds 已提交
157 158
		u32 msr;
		msr = MSR_IA32_MC0_STATUS+i*4;
159
		rdmsr(msr, low, high);
L
Linus Torvalds 已提交
160 161 162 163 164 165 166 167 168
		if (high&(1<<31)) {
			/* Clear it */
			wrmsr(msr, 0UL, 0UL);
			/* Serialize */
			wmb();
			add_taint(TAINT_MACHINE_CHECK);
		}
	}
	mcgstl &= ~(1<<2);
169
	wrmsr(MSR_IA32_MCG_STATUS, mcgstl, mcgsth);
L
Linus Torvalds 已提交
170 171
}

S
Shaohua Li 已提交
172
void intel_p4_mcheck_init(struct cpuinfo_x86 *c)
L
Linus Torvalds 已提交
173 174 175
{
	u32 l, h;
	int i;
176

L
Linus Torvalds 已提交
177 178 179
	machine_check_vector = intel_machine_check;
	wmb();

180 181
	printk(KERN_INFO "Intel machine check architecture supported.\n");
	rdmsr(MSR_IA32_MCG_CAP, l, h);
L
Linus Torvalds 已提交
182
	if (l & (1<<8))	/* Control register present ? */
183
		wrmsr(MSR_IA32_MCG_CTL, 0xffffffff, 0xffffffff);
L
Linus Torvalds 已提交
184 185
	nr_mce_banks = l & 0xff;

186 187 188
	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 已提交
189 190
	}

191 192
	set_in_cr4(X86_CR4_MCE);
	printk(KERN_INFO "Intel machine check reporting enabled on CPU#%d.\n",
L
Linus Torvalds 已提交
193 194 195
		smp_processor_id());

	/* Check for P4/Xeon extended MCE MSRs */
196
	rdmsr(MSR_IA32_MCG_CAP, l, h);
L
Linus Torvalds 已提交
197 198
	if (l & (1<<9))	{/* MCG_EXT_P */
		mce_num_extended_msrs = (l >> 16) & 0xff;
199
		printk(KERN_INFO "CPU%d: Intel P4/Xeon Extended MCE MSRs (%d)"
L
Linus Torvalds 已提交
200 201 202 203 204 205 206 207 208
				" 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
	}
}