Merge branch 'linus' into perf/core, to fix conflicts
[deliverable/linux.git] / arch / x86 / include / asm / nmi.h
CommitLineData
1965aae3
PA
1#ifndef _ASM_X86_NMI_H
2#define _ASM_X86_NMI_H
6d60cd53 3
e90c7853 4#include <linux/irq_work.h>
6d60cd53
GOC
5#include <linux/pm.h>
6#include <asm/irq.h>
7#include <asm/io.h>
8
4a7863cc 9#ifdef CONFIG_X86_LOCAL_APIC
6d60cd53 10
6d60cd53 11extern int avail_to_resrv_perfctr_nmi_bit(unsigned int);
6d60cd53
GOC
12extern int reserve_perfctr_nmi(unsigned int);
13extern void release_perfctr_nmi(unsigned int);
14extern int reserve_evntsel_nmi(unsigned int);
15extern void release_evntsel_nmi(unsigned int);
6d60cd53 16
6d60cd53 17struct ctl_table;
8d65af78 18extern int proc_nmi_enabled(struct ctl_table *, int ,
6d60cd53
GOC
19 void __user *, size_t *, loff_t *);
20extern int unknown_nmi_panic;
21
b52e0a7c 22#endif /* CONFIG_X86_LOCAL_APIC */
6d60cd53 23
c9126b2e
DZ
24#define NMI_FLAG_FIRST 1
25
26enum {
27 NMI_LOCAL=0,
28 NMI_UNKNOWN,
553222f3
DZ
29 NMI_SERR,
30 NMI_IO_CHECK,
c9126b2e
DZ
31 NMI_MAX
32};
33
34#define NMI_DONE 0
35#define NMI_HANDLED 1
36
37typedef int (*nmi_handler_t)(unsigned int, struct pt_regs *);
38
72b3fb24
LZ
39struct nmiaction {
40 struct list_head list;
41 nmi_handler_t handler;
e90c7853
PZ
42 u64 max_duration;
43 struct irq_work irq_work;
6ff968cc 44 unsigned long flags;
72b3fb24
LZ
45 const char *name;
46};
47
0718467c 48#define register_nmi_handler(t, fn, fg, n, init...) \
72b3fb24 49({ \
0718467c 50 static struct nmiaction init fn##_na = { \
72b3fb24
LZ
51 .handler = (fn), \
52 .name = (n), \
53 .flags = (fg), \
54 }; \
0718467c 55 __register_nmi_handler((t), &fn##_na); \
eeaaa96a
DZ
56})
57
72b3fb24 58int __register_nmi_handler(unsigned int, struct nmiaction *);
c9126b2e
DZ
59
60void unregister_nmi_handler(unsigned int, const char *);
61
6d60cd53
GOC
62void stop_nmi(void);
63void restart_nmi(void);
b227e233 64void local_touch_nmi(void);
6d60cd53 65
1965aae3 66#endif /* _ASM_X86_NMI_H */
This page took 0.702665 seconds and 5 git commands to generate.