blob: de9ac3f5c4ce547c2a204cac41c4010da2839fe7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Machine specific NMI handling for generic.
3 * Split out from traps.c by Osamu Tomita <tomita@cinet.co.jp>
4 */
Vegard Nossum77ef50a2008-06-18 17:08:48 +02005#ifndef ASM_X86__MACH_DEFAULT__MACH_TRAPS_H
6#define ASM_X86__MACH_DEFAULT__MACH_TRAPS_H
Linus Torvalds1da177e2005-04-16 15:20:36 -07007
8#include <asm/mc146818rtc.h>
9
10static inline void clear_mem_error(unsigned char reason)
11{
12 reason = (reason & 0xf) | 4;
13 outb(reason, 0x61);
14}
15
16static inline unsigned char get_nmi_reason(void)
17{
18 return inb(0x61);
19}
20
21static inline void reassert_nmi(void)
22{
23 int old_reg = -1;
24
25 if (do_i_have_lock_cmos())
26 old_reg = current_lock_cmos_reg();
27 else
28 lock_cmos(0); /* register doesn't matter here */
29 outb(0x8f, 0x70);
30 inb(0x71); /* dummy */
31 outb(0x0f, 0x70);
32 inb(0x71); /* dummy */
33 if (old_reg >= 0)
34 outb(old_reg, 0x70);
35 else
36 unlock_cmos();
37}
38
Vegard Nossum77ef50a2008-06-18 17:08:48 +020039#endif /* ASM_X86__MACH_DEFAULT__MACH_TRAPS_H */