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>
H
Hidetoshi Seto 已提交
12
#include <asm/mce.h>
L
Linus Torvalds 已提交
13 14
#include <asm/msr.h>

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

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

24 25
	prev_state = ist_enter(regs);

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

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

39
	add_taint(TAINT_MACHINE_CHECK, LOCKDEP_NOW_UNRELIABLE);
40 41

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

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

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

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

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

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

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