[PATCH] mm/filemap_xip.c compilation fix
[linux-2.6/linux-2.6-openrd.git] / include / asm-i386 / mach-default / mach_traps.h
blob625438b8a6eb485a52e7df429e315a653b33d8b7
1 /*
2 * include/asm-i386/mach-default/mach_traps.h
4 * Machine specific NMI handling for generic.
5 * Split out from traps.c by Osamu Tomita <tomita@cinet.co.jp>
6 */
7 #ifndef _MACH_TRAPS_H
8 #define _MACH_TRAPS_H
10 #include <asm/mc146818rtc.h>
12 static inline void clear_mem_error(unsigned char reason)
14 reason = (reason & 0xf) | 4;
15 outb(reason, 0x61);
18 static inline unsigned char get_nmi_reason(void)
20 return inb(0x61);
23 static inline void reassert_nmi(void)
25 int old_reg = -1;
27 if (do_i_have_lock_cmos())
28 old_reg = current_lock_cmos_reg();
29 else
30 lock_cmos(0); /* register doesn't matter here */
31 outb(0x8f, 0x70);
32 inb(0x71); /* dummy */
33 outb(0x0f, 0x70);
34 inb(0x71); /* dummy */
35 if (old_reg >= 0)
36 outb(old_reg, 0x70);
37 else
38 unlock_cmos();
41 #endif /* !_MACH_TRAPS_H */