blob: ad7535372918a98c2bc568fc5cad0f09a6b10ced [file] [log] [blame]
H. Peter Anvin1965aae2008-10-22 22:26:29 -07001#ifndef _ASM_X86_MCE_H
2#define _ASM_X86_MCE_H
Thomas Gleixnere2f43022007-10-17 18:04:40 +02003
Jaswinder Singh Rajput999b6972009-01-30 22:47:27 +05304#include <linux/types.h>
Thomas Gleixnere2f43022007-10-17 18:04:40 +02005#include <asm/ioctls.h>
Thomas Gleixnere2f43022007-10-17 18:04:40 +02006
7/*
8 * Machine Check support for x86
9 */
10
Thomas Gleixner01c66802009-04-08 12:31:24 +020011#define MCG_BANKCNT_MASK 0xff /* Number of Banks */
Borislav Petkove4876832009-06-20 23:27:16 -070012#define MCG_CTL_P (1ULL<<8) /* MCG_CTL register available */
Thomas Gleixner01c66802009-04-08 12:31:24 +020013#define MCG_EXT_P (1ULL<<9) /* Extended registers available */
14#define MCG_CMCI_P (1ULL<<10) /* CMCI supported */
15#define MCG_EXT_CNT_MASK 0xff0000 /* Number of Extended registers */
16#define MCG_EXT_CNT_SHIFT 16
17#define MCG_EXT_CNT(c) (((c) & MCG_EXT_CNT_MASK) >> MCG_EXT_CNT_SHIFT)
Andi Kleened7290d2009-05-27 21:56:57 +020018#define MCG_SER_P (1ULL<<24) /* MCA recovery/new status bits */
Thomas Gleixnere2f43022007-10-17 18:04:40 +020019
Ingo Molnar06b851d2009-04-08 12:31:25 +020020#define MCG_STATUS_RIPV (1ULL<<0) /* restart ip valid */
21#define MCG_STATUS_EIPV (1ULL<<1) /* ip points to correct instruction */
22#define MCG_STATUS_MCIP (1ULL<<2) /* machine check in progress */
Thomas Gleixnere2f43022007-10-17 18:04:40 +020023
Ingo Molnar06b851d2009-04-08 12:31:25 +020024#define MCI_STATUS_VAL (1ULL<<63) /* valid error */
25#define MCI_STATUS_OVER (1ULL<<62) /* previous errors lost */
26#define MCI_STATUS_UC (1ULL<<61) /* uncorrected error */
27#define MCI_STATUS_EN (1ULL<<60) /* error enabled */
28#define MCI_STATUS_MISCV (1ULL<<59) /* misc error reg. valid */
29#define MCI_STATUS_ADDRV (1ULL<<58) /* addr reg. valid */
30#define MCI_STATUS_PCC (1ULL<<57) /* processor context corrupt */
Andi Kleened7290d2009-05-27 21:56:57 +020031#define MCI_STATUS_S (1ULL<<56) /* Signaled machine check */
32#define MCI_STATUS_AR (1ULL<<55) /* Action required */
33
34/* MISC register defines */
35#define MCM_ADDR_SEGOFF 0 /* segment offset */
36#define MCM_ADDR_LINEAR 1 /* linear address */
37#define MCM_ADDR_PHYS 2 /* physical address */
38#define MCM_ADDR_MEM 3 /* memory address */
39#define MCM_ADDR_GENERIC 7 /* generic */
Thomas Gleixnere2f43022007-10-17 18:04:40 +020040
41/* Fields are zero when not available */
42struct mce {
43 __u64 status;
44 __u64 misc;
45 __u64 addr;
46 __u64 mcgstatus;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +010047 __u64 ip;
Thomas Gleixnere2f43022007-10-17 18:04:40 +020048 __u64 tsc; /* cpu time stamp counter */
Andi Kleen8ee08342009-05-27 21:56:56 +020049 __u64 time; /* wall time_t when error was detected */
50 __u8 cpuvendor; /* cpu vendor as encoded in system.h */
51 __u8 pad1;
52 __u16 pad2;
53 __u32 cpuid; /* CPUID 1 EAX */
Thomas Gleixnere2f43022007-10-17 18:04:40 +020054 __u8 cs; /* code segment */
55 __u8 bank; /* machine check bank */
Andi Kleend620c672009-05-27 21:56:56 +020056 __u8 cpu; /* cpu number; obsolete; use extcpu now */
Thomas Gleixnere2f43022007-10-17 18:04:40 +020057 __u8 finished; /* entry is valid */
Andi Kleend620c672009-05-27 21:56:56 +020058 __u32 extcpu; /* linux cpu number that detected the error */
Andi Kleen8ee08342009-05-27 21:56:56 +020059 __u32 socketid; /* CPU socket ID */
60 __u32 apicid; /* CPU initial apic ID */
61 __u64 mcgcap; /* MCGCAP MSR: machine check capabilities of CPU */
Thomas Gleixnere2f43022007-10-17 18:04:40 +020062};
63
64/*
65 * This structure contains all data related to the MCE log. Also
66 * carries a signature to make it easier to find from external
67 * debugging tools. Each entry is only valid when its finished flag
68 * is set.
69 */
70
71#define MCE_LOG_LEN 32
72
73struct mce_log {
74 char signature[12]; /* "MACHINECHECK" */
75 unsigned len; /* = MCE_LOG_LEN */
76 unsigned next;
77 unsigned flags;
Andi Kleenf6fb0ac2009-05-27 21:56:55 +020078 unsigned recordlen; /* length of struct mce */
Thomas Gleixnere2f43022007-10-17 18:04:40 +020079 struct mce entry[MCE_LOG_LEN];
80};
81
82#define MCE_OVERFLOW 0 /* bit 0 in flags means overflow */
83
84#define MCE_LOG_SIGNATURE "MACHINECHECK"
85
86#define MCE_GET_RECORD_LEN _IOR('M', 1, int)
87#define MCE_GET_LOG_LEN _IOR('M', 2, int)
88#define MCE_GETCLEAR_FLAGS _IOR('M', 3, int)
89
90/* Software defined banks */
91#define MCE_EXTENDED_BANK 128
92#define MCE_THERMAL_BANK MCE_EXTENDED_BANK + 0
93
94#define K8_MCE_THRESHOLD_BASE (MCE_EXTENDED_BANK + 1) /* MCE_AMD */
95#define K8_MCE_THRESHOLD_BANK_0 (MCE_THRESHOLD_BASE + 0 * 9)
96#define K8_MCE_THRESHOLD_BANK_1 (MCE_THRESHOLD_BASE + 1 * 9)
97#define K8_MCE_THRESHOLD_BANK_2 (MCE_THRESHOLD_BASE + 2 * 9)
98#define K8_MCE_THRESHOLD_BANK_3 (MCE_THRESHOLD_BASE + 3 * 9)
99#define K8_MCE_THRESHOLD_BANK_4 (MCE_THRESHOLD_BASE + 4 * 9)
100#define K8_MCE_THRESHOLD_BANK_5 (MCE_THRESHOLD_BASE + 5 * 9)
101#define K8_MCE_THRESHOLD_DRAM_ECC (MCE_THRESHOLD_BANK_4 + 0)
102
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200103#ifdef __KERNEL__
104
Hidetoshi Seto9e55e442009-06-15 17:22:15 +0900105#include <linux/percpu.h>
106#include <linux/init.h>
107#include <asm/atomic.h>
108
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200109extern int mce_disabled;
Hidetoshi Setoc6978362009-06-15 17:22:49 +0900110extern int mce_p5_enabled;
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200111
Hidetoshi Seto58995d22009-06-15 17:27:47 +0900112#ifdef CONFIG_X86_MCE
113void mcheck_init(struct cpuinfo_x86 *c);
114#else
115static inline void mcheck_init(struct cpuinfo_x86 *c) {}
116#endif
117
Hidetoshi Seto9e55e442009-06-15 17:22:15 +0900118#ifdef CONFIG_X86_ANCIENT_MCE
119void intel_p5_mcheck_init(struct cpuinfo_x86 *c);
120void winchip_mcheck_init(struct cpuinfo_x86 *c);
Hidetoshi Setoc6978362009-06-15 17:22:49 +0900121static inline void enable_p5_mce(void) { mce_p5_enabled = 1; }
Hidetoshi Seto9e55e442009-06-15 17:22:15 +0900122#else
123static inline void intel_p5_mcheck_init(struct cpuinfo_x86 *c) {}
124static inline void winchip_mcheck_init(struct cpuinfo_x86 *c) {}
Hidetoshi Setoc6978362009-06-15 17:22:49 +0900125static inline void enable_p5_mce(void) {}
Hidetoshi Seto9e55e442009-06-15 17:22:15 +0900126#endif
127
Andi Kleenb5f2fa42009-02-12 13:43:22 +0100128void mce_setup(struct mce *m);
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200129void mce_log(struct mce *m);
Ingo Molnarcb491fc2009-04-08 12:31:17 +0200130DECLARE_PER_CPU(struct sys_device, mce_dev);
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200131
Andi Kleen41fdff32009-02-12 13:49:30 +0100132/*
Andi Kleen3ccdccf2009-07-09 00:31:45 +0200133 * Maximum banks number.
134 * This is the limit of the current register layout on
135 * Intel CPUs.
Andi Kleen41fdff32009-02-12 13:49:30 +0100136 */
Andi Kleen3ccdccf2009-07-09 00:31:45 +0200137#define MAX_NR_BANKS 32
Andi Kleen41fdff32009-02-12 13:49:30 +0100138
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200139#ifdef CONFIG_X86_MCE_INTEL
Hidetoshi Seto62fdac52009-06-11 16:06:07 +0900140extern int mce_cmci_disabled;
141extern int mce_ignore_ce;
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200142void mce_intel_feature_init(struct cpuinfo_x86 *c);
Andi Kleen88ccbed2009-02-12 13:49:36 +0100143void cmci_clear(void);
144void cmci_reenable(void);
145void cmci_rediscover(int dying);
146void cmci_recheck(void);
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200147#else
148static inline void mce_intel_feature_init(struct cpuinfo_x86 *c) { }
Andi Kleen88ccbed2009-02-12 13:49:36 +0100149static inline void cmci_clear(void) {}
150static inline void cmci_reenable(void) {}
151static inline void cmci_rediscover(int dying) {}
152static inline void cmci_recheck(void) {}
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200153#endif
154
155#ifdef CONFIG_X86_MCE_AMD
156void mce_amd_feature_init(struct cpuinfo_x86 *c);
157#else
158static inline void mce_amd_feature_init(struct cpuinfo_x86 *c) { }
159#endif
160
H. Peter Anvin38736072009-05-28 10:05:33 -0700161int mce_available(struct cpuinfo_x86 *c);
Andi Kleen88ccbed2009-02-12 13:49:36 +0100162
Andi Kleen01ca79f2009-05-27 21:56:52 +0200163DECLARE_PER_CPU(unsigned, mce_exception_count);
Andi Kleenca84f692009-05-27 21:56:57 +0200164DECLARE_PER_CPU(unsigned, mce_poll_count);
Andi Kleen01ca79f2009-05-27 21:56:52 +0200165
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200166extern atomic_t mce_entry;
167
Andi Kleenee031c32009-02-12 13:49:34 +0100168typedef DECLARE_BITMAP(mce_banks_t, MAX_NR_BANKS);
169DECLARE_PER_CPU(mce_banks_t, mce_poll_banks);
170
Andi Kleenb79109c2009-02-12 13:43:23 +0100171enum mcp_flags {
172 MCP_TIMESTAMP = (1 << 0), /* log time stamp */
173 MCP_UC = (1 << 1), /* log uncorrected errors */
Andi Kleen5679af42009-04-07 17:06:55 +0200174 MCP_DONTLOG = (1 << 2), /* only clear, don't log */
Andi Kleenb79109c2009-02-12 13:43:23 +0100175};
H. Peter Anvin38736072009-05-28 10:05:33 -0700176void machine_check_poll(enum mcp_flags flags, mce_banks_t *b);
Andi Kleenb79109c2009-02-12 13:43:23 +0100177
Andi Kleen9ff36ee2009-05-27 21:56:58 +0200178int mce_notify_irq(void);
Andi Kleen9b1beaf2009-05-27 21:56:59 +0200179void mce_notify_process(void);
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200180
Andi Kleenea149b32009-04-29 19:31:00 +0200181DECLARE_PER_CPU(struct mce, injectm);
182extern struct file_operations mce_chrdev_ops;
183
Hidetoshi Seto58995d22009-06-15 17:27:47 +0900184/*
185 * Exception handler
186 */
187
188/* Call the installed machine check handler for this CPU setup. */
189extern void (*machine_check_vector)(struct pt_regs *, long error_code);
190void do_machine_check(struct pt_regs *, long);
191
192/*
193 * Threshold handler
194 */
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200195
Andi Kleenb2762682009-02-12 13:49:31 +0100196extern void (*mce_threshold_vector)(void);
Hidetoshi Seto58995d22009-06-15 17:27:47 +0900197extern void (*threshold_cpu_callback)(unsigned long action, unsigned int cpu);
Andi Kleenb2762682009-02-12 13:49:31 +0100198
Hidetoshi Setoe8ce2c52009-06-15 17:24:40 +0900199/*
200 * Thermal handler
201 */
202
Hidetoshi Setoe8ce2c52009-06-15 17:24:40 +0900203void intel_init_thermal(struct cpuinfo_x86 *c);
204
Hidetoshi Setoe8ce2c52009-06-15 17:24:40 +0900205void mce_log_therm_throt_event(__u64 status);
Hidetoshi Setoe8ce2c52009-06-15 17:24:40 +0900206
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200207#endif /* __KERNEL__ */
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700208#endif /* _ASM_X86_MCE_H */