p5.c 1.6 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 8
#include <linux/kernel.h>
#include <linux/types.h>
#include <linux/init.h>
L
Linus Torvalds 已提交
9 10
#include <linux/smp.h>

11
#include <asm/processor.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
{
	u32 loaddr, hi, lotype;
I
Ingo Molnar 已提交
22

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

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

L
Linus Torvalds 已提交
36 37 38
	add_taint(TAINT_MACHINE_CHECK);
}

I
Ingo Molnar 已提交
39
/* Set up machine check reporting for processors with Intel style MCE: */
S
Shaohua Li 已提交
40
void intel_p5_mcheck_init(struct cpuinfo_x86 *c)
L
Linus Torvalds 已提交
41 42
{
	u32 l, h;
43

44 45
	/* Default P5 to off as its often misconnected: */
	if (!mce_p5_enabled)
46
		return;
L
Linus Torvalds 已提交
47

48 49
	/* Check for MCE support: */
	if (!cpu_has(c, X86_FEATURE_MCE))
L
Linus Torvalds 已提交
50
		return;
I
Ingo Molnar 已提交
51

L
Linus Torvalds 已提交
52
	machine_check_vector = pentium_machine_check;
I
Ingo Molnar 已提交
53
	/* Make sure the vector pointer is visible before we enable MCEs: */
L
Linus Torvalds 已提交
54 55
	wmb();

I
Ingo Molnar 已提交
56
	/* Read registers before enabling: */
L
Linus Torvalds 已提交
57 58
	rdmsr(MSR_IA32_P5_MC_ADDR, l, h);
	rdmsr(MSR_IA32_P5_MC_TYPE, l, h);
I
Ingo Molnar 已提交
59 60
	printk(KERN_INFO
	       "Intel old style machine check architecture supported.\n");
L
Linus Torvalds 已提交
61

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