blob: 4886a68f267e8b4a45eb9c872595b37d21c238ac [file] [log] [blame]
H. Peter Anvin1965aae2008-10-22 22:26:29 -07001#ifndef _ASM_X86_NMI_H
2#define _ASM_X86_NMI_H
Glauber de Oliveira Costa6d60cd52008-03-19 14:25:36 -03003
4#include <linux/pm.h>
5#include <asm/irq.h>
6#include <asm/io.h>
7
Don Zickus4a7863c2010-12-22 14:00:03 -05008#ifdef CONFIG_X86_LOCAL_APIC
Glauber de Oliveira Costa6d60cd52008-03-19 14:25:36 -03009
Glauber de Oliveira Costa6d60cd52008-03-19 14:25:36 -030010extern int avail_to_resrv_perfctr_nmi_bit(unsigned int);
Glauber de Oliveira Costa6d60cd52008-03-19 14:25:36 -030011extern int reserve_perfctr_nmi(unsigned int);
12extern void release_perfctr_nmi(unsigned int);
13extern int reserve_evntsel_nmi(unsigned int);
14extern void release_evntsel_nmi(unsigned int);
Glauber de Oliveira Costa6d60cd52008-03-19 14:25:36 -030015
Glauber de Oliveira Costa6d60cd52008-03-19 14:25:36 -030016struct ctl_table;
Alexey Dobriyan8d65af72009-09-23 15:57:19 -070017extern int proc_nmi_enabled(struct ctl_table *, int ,
Glauber de Oliveira Costa6d60cd52008-03-19 14:25:36 -030018 void __user *, size_t *, loff_t *);
19extern int unknown_nmi_panic;
20
Ingo Molnar47cab6a2009-08-03 09:31:54 +020021void arch_trigger_all_cpu_backtrace(void);
22#define arch_trigger_all_cpu_backtrace arch_trigger_all_cpu_backtrace
Glauber de Oliveira Costa6d60cd52008-03-19 14:25:36 -030023#endif
24
Don Zickus166d7512011-01-06 16:18:49 -050025/*
26 * Define some priorities for the nmi notifier call chain.
27 *
28 * Create a local nmi bit that has a higher priority than
29 * external nmis, because the local ones are more frequent.
30 *
31 * Also setup some default high/normal/low settings for
Lucas De Marchi0d2eb442011-03-17 16:24:16 -030032 * subsystems to registers with. Using 4 bits to separate
33 * the priorities. This can go a lot higher if needed be.
Don Zickus166d7512011-01-06 16:18:49 -050034 */
35
36#define NMI_LOCAL_SHIFT 16 /* randomly picked */
37#define NMI_LOCAL_BIT (1ULL << NMI_LOCAL_SHIFT)
38#define NMI_HIGH_PRIOR (1ULL << 8)
39#define NMI_NORMAL_PRIOR (1ULL << 4)
40#define NMI_LOW_PRIOR (1ULL << 0)
41#define NMI_LOCAL_HIGH_PRIOR (NMI_LOCAL_BIT | NMI_HIGH_PRIOR)
42#define NMI_LOCAL_NORMAL_PRIOR (NMI_LOCAL_BIT | NMI_NORMAL_PRIOR)
43#define NMI_LOCAL_LOW_PRIOR (NMI_LOCAL_BIT | NMI_LOW_PRIOR)
44
Glauber de Oliveira Costa6d60cd52008-03-19 14:25:36 -030045void stop_nmi(void);
46void restart_nmi(void);
47
H. Peter Anvin1965aae2008-10-22 22:26:29 -070048#endif /* _ASM_X86_NMI_H */