mce.c 1.8 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/*
 * mce.c - x86 Machine Check Exception Reporting
 * (c) 2002 Alan Cox <alan@redhat.com>, Dave Jones <davej@codemonkey.org.uk>
 */

#include <linux/init.h>
#include <linux/types.h>
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/smp.h>
#include <linux/thread_info.h>

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

#include "mce.h"

S
Shaohua Li 已提交
19
int mce_disabled = 0;
L
Linus Torvalds 已提交
20 21 22 23 24 25 26 27 28 29 30 31 32 33
int nr_mce_banks;

EXPORT_SYMBOL_GPL(nr_mce_banks);	/* non-fatal.o */

/* Handle unconfigured int18 (should never happen) */
static fastcall void unexpected_machine_check(struct pt_regs * regs, long error_code)
{	
	printk(KERN_ERR "CPU#%d: Unexpected int18 (Machine Check).\n", smp_processor_id());
}

/* Call the installed machine check handler for this CPU setup. */
void fastcall (*machine_check_vector)(struct pt_regs *, long error_code) = unexpected_machine_check;

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

	switch (c->x86_vendor) {
		case X86_VENDOR_AMD:
J
Joachim Deguara 已提交
41
			amd_mcheck_init(c);
L
Linus Torvalds 已提交
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
			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;
	}
}

63 64 65 66 67 68 69 70 71 72 73 74 75 76
static unsigned long old_cr4 __initdata;

void __init stop_mce(void)
{
	old_cr4 = read_cr4();
	clear_in_cr4(X86_CR4_MCE);
}

void __init restart_mce(void)
{
	if (old_cr4 & X86_CR4_MCE)
		set_in_cr4(X86_CR4_MCE);
}

L
Linus Torvalds 已提交
77 78 79
static int __init mcheck_disable(char *str)
{
	mce_disabled = 1;
80
	return 1;
L
Linus Torvalds 已提交
81 82 83 84 85
}

static int __init mcheck_enable(char *str)
{
	mce_disabled = -1;
86
	return 1;
L
Linus Torvalds 已提交
87 88 89 90
}

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