p5.c 1.8 KB
Newer Older
L
Linus Torvalds 已提交
1 2
/*
 * P5 specific Machine Check Exception Reporting
3
 * (C) Copyright 2002 Alan Cox <alan@lxorguk.ukuu.org.uk>
L
Linus Torvalds 已提交
4 5
 */
#include <linux/interrupt.h>
I
Ingo Molnar 已提交
6 7
#include <linux/kernel.h>
#include <linux/types.h>
L
Linus Torvalds 已提交
8 9
#include <linux/smp.h>

10
#include <asm/processor.h>
11
#include <asm/traps.h>
A
Andy Lutomirski 已提交
12
#include <asm/tlbflush.h>
H
Hidetoshi Seto 已提交
13
#include <asm/mce.h>
L
Linus Torvalds 已提交
14 15
#include <asm/msr.h>

16
/* By default disabled */
17
int mce_p5_enabled __read_mostly;
18

I
Ingo Molnar 已提交
19
/* Machine check handler for Pentium class Intel CPUs: */
20
static void pentium_machine_check(struct pt_regs *regs, long error_code)
L
Linus Torvalds 已提交
21
{
22
	enum ctx_state prev_state;
L
Linus Torvalds 已提交
23
	u32 loaddr, hi, lotype;
I
Ingo Molnar 已提交
24

25 26
	prev_state = ist_enter(regs);

L
Linus Torvalds 已提交
27 28
	rdmsr(MSR_IA32_P5_MC_ADDR, loaddr, hi);
	rdmsr(MSR_IA32_P5_MC_TYPE, lotype, hi);
I
Ingo Molnar 已提交
29 30 31 32 33 34 35 36 37 38 39

	printk(KERN_EMERG
		"CPU#%d: Machine Check Exception:  0x%8X (type 0x%8X).\n",
		smp_processor_id(), loaddr, lotype);

	if (lotype & (1<<5)) {
		printk(KERN_EMERG
			"CPU#%d: Possible thermal failure (CPU on fire ?).\n",
			smp_processor_id());
	}

40
	add_taint(TAINT_MACHINE_CHECK, LOCKDEP_NOW_UNRELIABLE);
41 42

	ist_exit(regs, prev_state);
L
Linus Torvalds 已提交
43 44
}

I
Ingo Molnar 已提交
45
/* Set up machine check reporting for processors with Intel style MCE: */
S
Shaohua Li 已提交
46
void intel_p5_mcheck_init(struct cpuinfo_x86 *c)
L
Linus Torvalds 已提交
47 48
{
	u32 l, h;
49

50 51
	/* Default P5 to off as its often misconnected: */
	if (!mce_p5_enabled)
52
		return;
L
Linus Torvalds 已提交
53

54 55
	/* Check for MCE support: */
	if (!cpu_has(c, X86_FEATURE_MCE))
L
Linus Torvalds 已提交
56
		return;
I
Ingo Molnar 已提交
57

L
Linus Torvalds 已提交
58
	machine_check_vector = pentium_machine_check;
I
Ingo Molnar 已提交
59
	/* Make sure the vector pointer is visible before we enable MCEs: */
L
Linus Torvalds 已提交
60 61
	wmb();

I
Ingo Molnar 已提交
62
	/* Read registers before enabling: */
L
Linus Torvalds 已提交
63 64
	rdmsr(MSR_IA32_P5_MC_ADDR, l, h);
	rdmsr(MSR_IA32_P5_MC_TYPE, l, h);
I
Ingo Molnar 已提交
65 66
	printk(KERN_INFO
	       "Intel old style machine check architecture supported.\n");
L
Linus Torvalds 已提交
67

I
Ingo Molnar 已提交
68
	/* Enable MCE: */
A
Andy Lutomirski 已提交
69
	cr4_set_bits(X86_CR4_MCE);
I
Ingo Molnar 已提交
70 71 72
	printk(KERN_INFO
	       "Intel old style machine check reporting enabled on CPU#%d.\n",
	       smp_processor_id());
L
Linus Torvalds 已提交
73
}