mce_32.c 1.5 KB
Newer Older
L
Linus Torvalds 已提交
1 2
/*
 * mce.c - x86 Machine Check Exception Reporting
3
 * (c) 2002 Alan Cox <alan@lxorguk.ukuu.org.uk>, Dave Jones <davej@redhat.com>
L
Linus Torvalds 已提交
4
 */
I
Ingo Molnar 已提交
5
#include <linux/thread_info.h>
L
Linus Torvalds 已提交
6 7
#include <linux/kernel.h>
#include <linux/module.h>
I
Ingo Molnar 已提交
8 9
#include <linux/types.h>
#include <linux/init.h>
L
Linus Torvalds 已提交
10 11
#include <linux/smp.h>

12
#include <asm/processor.h>
L
Linus Torvalds 已提交
13
#include <asm/system.h>
14
#include <asm/mce.h>
L
Linus Torvalds 已提交
15 16 17

#include "mce.h"

18
int mce_disabled;
L
Linus Torvalds 已提交
19

I
Ingo Molnar 已提交
20
int nr_mce_banks;
L
Linus Torvalds 已提交
21 22 23
EXPORT_SYMBOL_GPL(nr_mce_banks);	/* non-fatal.o */

/* Handle unconfigured int18 (should never happen) */
24 25
static void unexpected_machine_check(struct pt_regs *regs, long error_code)
{
I
Ingo Molnar 已提交
26 27
	printk(KERN_ERR "CPU#%d: Unexpected int18 (Machine Check).\n",
	       smp_processor_id());
L
Linus Torvalds 已提交
28 29 30
}

/* Call the installed machine check handler for this CPU setup. */
I
Ingo Molnar 已提交
31 32
void (*machine_check_vector)(struct pt_regs *, long error_code) =
						unexpected_machine_check;
L
Linus Torvalds 已提交
33 34

/* This has to be run for each processor */
S
Shaohua Li 已提交
35
void mcheck_init(struct cpuinfo_x86 *c)
L
Linus Torvalds 已提交
36
{
37
	if (mce_disabled == 1)
L
Linus Torvalds 已提交
38 39 40
		return;

	switch (c->x86_vendor) {
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
	case X86_VENDOR_AMD:
		amd_mcheck_init(c);
		break;

	case X86_VENDOR_INTEL:
		if (c->x86 == 5)
			intel_p5_mcheck_init(c);
		if (c->x86 == 6)
			intel_p6_mcheck_init(c);
		if (c->x86 == 15)
			intel_p4_mcheck_init(c);
		break;

	case X86_VENDOR_CENTAUR:
		if (c->x86 == 5)
			winchip_mcheck_init(c);
		break;

	default:
		break;
L
Linus Torvalds 已提交
61 62 63 64 65 66
	}
}

static int __init mcheck_disable(char *str)
{
	mce_disabled = 1;
67
	return 1;
L
Linus Torvalds 已提交
68 69 70 71 72
}

static int __init mcheck_enable(char *str)
{
	mce_disabled = -1;
73
	return 1;
L
Linus Torvalds 已提交
74 75 76 77
}

__setup("nomce", mcheck_disable);
__setup("mce", mcheck_enable);