blob: 81b02487090be5e85e7092dee5eb01cd785d99cf [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * IDT Winchip specific Machine Check Exception Reporting
Alan Cox87c6fe22009-01-05 14:08:04 +00003 * (C) Copyright 2002 Alan Cox <alan@lxorguk.ukuu.org.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005#include <linux/interrupt.h>
Ingo Molnar91425082009-04-08 12:31:22 +02006#include <linux/kernel.h>
7#include <linux/types.h>
8#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009
Paolo Ciarrocchi4de81622008-02-22 23:10:57 +010010#include <asm/processor.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <asm/system.h>
12#include <asm/msr.h>
13
14#include "mce.h"
15
Ingo Molnar91425082009-04-08 12:31:22 +020016/* Machine check handler for WinChip C6: */
Paolo Ciarrocchi4de81622008-02-22 23:10:57 +010017static void winchip_machine_check(struct pt_regs *regs, long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -070018{
19 printk(KERN_EMERG "CPU0: Machine Check Exception.\n");
20 add_taint(TAINT_MACHINE_CHECK);
21}
22
23/* Set up machine check reporting on the Winchip C6 series */
Shaohua Li31ab2692005-11-07 00:58:42 -080024void winchip_mcheck_init(struct cpuinfo_x86 *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -070025{
26 u32 lo, hi;
Ingo Molnar91425082009-04-08 12:31:22 +020027
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 machine_check_vector = winchip_machine_check;
Ingo Molnar91425082009-04-08 12:31:22 +020029 /* Make sure the vector pointer is visible before we enable MCEs: */
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 wmb();
Ingo Molnar91425082009-04-08 12:31:22 +020031
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 rdmsr(MSR_IDT_FCR1, lo, hi);
Paolo Ciarrocchi4de81622008-02-22 23:10:57 +010033 lo |= (1<<2); /* Enable EIERRINT (int 18 MCE) */
34 lo &= ~(1<<4); /* Enable MCE */
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 wrmsr(MSR_IDT_FCR1, lo, hi);
Ingo Molnar91425082009-04-08 12:31:22 +020036
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 set_in_cr4(X86_CR4_MCE);
Ingo Molnar91425082009-04-08 12:31:22 +020038
39 printk(KERN_INFO
40 "Winchip machine check reporting enabled on CPU#0.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070041}