blob: ff8778f26b84e3a9125b4a4f383b69ab649c5b20 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070010static inline unsigned char get_nmi_reason(void)
11{
12 return inb(0x61);
13}
14
15static inline void reassert_nmi(void)
16{
17 int old_reg = -1;
18
19 if (do_i_have_lock_cmos())
20 old_reg = current_lock_cmos_reg();
21 else
22 lock_cmos(0); /* register doesn't matter here */
23 outb(0x8f, 0x70);
24 inb(0x71); /* dummy */
25 outb(0x0f, 0x70);
26 inb(0x71); /* dummy */
27 if (old_reg >= 0)
28 outb(old_reg, 0x70);
29 else
30 unlock_cmos();
31}
32
Vegard Nossum77ef50a2008-06-18 17:08:48 +020033#endif /* ASM_X86__MACH_DEFAULT__MACH_TRAPS_H */