blob: b7c47a468fdeeee8fe2d13e08dccb4adecd9dcc6 [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
Hidetoshi Seto2b90e772011-06-08 10:56:56 +090011/* MCG_CAP register defines */
Thomas Gleixner01c66802009-04-08 12:31:24 +020012#define MCG_BANKCNT_MASK 0xff /* Number of Banks */
Borislav Petkove4876832009-06-20 23:27:16 -070013#define MCG_CTL_P (1ULL<<8) /* MCG_CTL register available */
Thomas Gleixner01c66802009-04-08 12:31:24 +020014#define MCG_EXT_P (1ULL<<9) /* Extended registers available */
15#define MCG_CMCI_P (1ULL<<10) /* CMCI supported */
16#define MCG_EXT_CNT_MASK 0xff0000 /* Number of Extended registers */
17#define MCG_EXT_CNT_SHIFT 16
18#define MCG_EXT_CNT(c) (((c) & MCG_EXT_CNT_MASK) >> MCG_EXT_CNT_SHIFT)
Andi Kleened7290d2009-05-27 21:56:57 +020019#define MCG_SER_P (1ULL<<24) /* MCA recovery/new status bits */
Thomas Gleixnere2f43022007-10-17 18:04:40 +020020
Hidetoshi Seto2b90e772011-06-08 10:56:56 +090021/* MCG_STATUS register defines */
Ingo Molnar06b851d2009-04-08 12:31:25 +020022#define MCG_STATUS_RIPV (1ULL<<0) /* restart ip valid */
23#define MCG_STATUS_EIPV (1ULL<<1) /* ip points to correct instruction */
24#define MCG_STATUS_MCIP (1ULL<<2) /* machine check in progress */
Thomas Gleixnere2f43022007-10-17 18:04:40 +020025
Hidetoshi Seto2b90e772011-06-08 10:56:56 +090026/* MCi_STATUS register defines */
Ingo Molnar06b851d2009-04-08 12:31:25 +020027#define MCI_STATUS_VAL (1ULL<<63) /* valid error */
28#define MCI_STATUS_OVER (1ULL<<62) /* previous errors lost */
29#define MCI_STATUS_UC (1ULL<<61) /* uncorrected error */
30#define MCI_STATUS_EN (1ULL<<60) /* error enabled */
31#define MCI_STATUS_MISCV (1ULL<<59) /* misc error reg. valid */
32#define MCI_STATUS_ADDRV (1ULL<<58) /* addr reg. valid */
33#define MCI_STATUS_PCC (1ULL<<57) /* processor context corrupt */
Andi Kleened7290d2009-05-27 21:56:57 +020034#define MCI_STATUS_S (1ULL<<56) /* Signaled machine check */
35#define MCI_STATUS_AR (1ULL<<55) /* Action required */
36
Hidetoshi Seto2b90e772011-06-08 10:56:56 +090037/* MCi_MISC register defines */
38#define MCI_MISC_ADDR_LSB(m) ((m) & 0x3f)
39#define MCI_MISC_ADDR_MODE(m) (((m) >> 6) & 7)
40#define MCI_MISC_ADDR_SEGOFF 0 /* segment offset */
41#define MCI_MISC_ADDR_LINEAR 1 /* linear address */
42#define MCI_MISC_ADDR_PHYS 2 /* physical address */
43#define MCI_MISC_ADDR_MEM 3 /* memory address */
44#define MCI_MISC_ADDR_GENERIC 7 /* generic */
Thomas Gleixnere2f43022007-10-17 18:04:40 +020045
Huang Ying1f9a0bd2010-06-08 14:09:08 +080046/* CTL2 register defines */
47#define MCI_CTL2_CMCI_EN (1ULL << 30)
Huang Ying3c417582010-06-08 14:09:10 +080048#define MCI_CTL2_CMCI_THRESHOLD_MASK 0x7fffULL
Huang Ying1f9a0bd2010-06-08 14:09:08 +080049
Huang Ying5b7e88e2009-07-31 09:41:40 +080050#define MCJ_CTX_MASK 3
51#define MCJ_CTX(flags) ((flags) & MCJ_CTX_MASK)
52#define MCJ_CTX_RANDOM 0 /* inject context: random */
53#define MCJ_CTX_PROCESS 1 /* inject context: process */
54#define MCJ_CTX_IRQ 2 /* inject context: IRQ */
55#define MCJ_NMI_BROADCAST 4 /* do NMI broadcasting */
Huang Ying0dcc6682009-07-31 09:41:41 +080056#define MCJ_EXCEPTION 8 /* raise as exception */
Huang Ying5b7e88e2009-07-31 09:41:40 +080057
Thomas Gleixnere2f43022007-10-17 18:04:40 +020058/* Fields are zero when not available */
59struct mce {
60 __u64 status;
61 __u64 misc;
62 __u64 addr;
63 __u64 mcgstatus;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +010064 __u64 ip;
Thomas Gleixnere2f43022007-10-17 18:04:40 +020065 __u64 tsc; /* cpu time stamp counter */
Andi Kleen8ee08342009-05-27 21:56:56 +020066 __u64 time; /* wall time_t when error was detected */
67 __u8 cpuvendor; /* cpu vendor as encoded in system.h */
Huang Ying5b7e88e2009-07-31 09:41:40 +080068 __u8 inject_flags; /* software inject flags */
69 __u16 pad;
Andi Kleen8ee08342009-05-27 21:56:56 +020070 __u32 cpuid; /* CPUID 1 EAX */
Thomas Gleixnere2f43022007-10-17 18:04:40 +020071 __u8 cs; /* code segment */
72 __u8 bank; /* machine check bank */
Andi Kleend620c672009-05-27 21:56:56 +020073 __u8 cpu; /* cpu number; obsolete; use extcpu now */
Thomas Gleixnere2f43022007-10-17 18:04:40 +020074 __u8 finished; /* entry is valid */
Andi Kleend620c672009-05-27 21:56:56 +020075 __u32 extcpu; /* linux cpu number that detected the error */
Andi Kleen8ee08342009-05-27 21:56:56 +020076 __u32 socketid; /* CPU socket ID */
77 __u32 apicid; /* CPU initial apic ID */
78 __u64 mcgcap; /* MCGCAP MSR: machine check capabilities of CPU */
Thomas Gleixnere2f43022007-10-17 18:04:40 +020079};
80
81/*
82 * This structure contains all data related to the MCE log. Also
83 * carries a signature to make it easier to find from external
84 * debugging tools. Each entry is only valid when its finished flag
85 * is set.
86 */
87
88#define MCE_LOG_LEN 32
89
90struct mce_log {
91 char signature[12]; /* "MACHINECHECK" */
92 unsigned len; /* = MCE_LOG_LEN */
93 unsigned next;
94 unsigned flags;
Andi Kleenf6fb0ac2009-05-27 21:56:55 +020095 unsigned recordlen; /* length of struct mce */
Thomas Gleixnere2f43022007-10-17 18:04:40 +020096 struct mce entry[MCE_LOG_LEN];
97};
98
99#define MCE_OVERFLOW 0 /* bit 0 in flags means overflow */
100
101#define MCE_LOG_SIGNATURE "MACHINECHECK"
102
103#define MCE_GET_RECORD_LEN _IOR('M', 1, int)
104#define MCE_GET_LOG_LEN _IOR('M', 2, int)
105#define MCE_GETCLEAR_FLAGS _IOR('M', 3, int)
106
107/* Software defined banks */
108#define MCE_EXTENDED_BANK 128
109#define MCE_THERMAL_BANK MCE_EXTENDED_BANK + 0
110
111#define K8_MCE_THRESHOLD_BASE (MCE_EXTENDED_BANK + 1) /* MCE_AMD */
112#define K8_MCE_THRESHOLD_BANK_0 (MCE_THRESHOLD_BASE + 0 * 9)
113#define K8_MCE_THRESHOLD_BANK_1 (MCE_THRESHOLD_BASE + 1 * 9)
114#define K8_MCE_THRESHOLD_BANK_2 (MCE_THRESHOLD_BASE + 2 * 9)
115#define K8_MCE_THRESHOLD_BANK_3 (MCE_THRESHOLD_BASE + 3 * 9)
116#define K8_MCE_THRESHOLD_BANK_4 (MCE_THRESHOLD_BASE + 4 * 9)
117#define K8_MCE_THRESHOLD_BANK_5 (MCE_THRESHOLD_BASE + 5 * 9)
118#define K8_MCE_THRESHOLD_DRAM_ECC (MCE_THRESHOLD_BANK_4 + 0)
119
Borislav Petkovfb253192009-10-07 13:20:38 +0200120
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200121#ifdef __KERNEL__
122
Borislav Petkov3653ada2011-12-04 15:12:09 +0100123extern void mce_register_decode_chain(struct notifier_block *nb);
124extern void mce_unregister_decode_chain(struct notifier_block *nb);
Alan Coxdf39a2e2010-01-04 16:17:21 +0000125
Hidetoshi Seto9e55e442009-06-15 17:22:15 +0900126#include <linux/percpu.h>
127#include <linux/init.h>
Arun Sharma60063492011-07-26 16:09:06 -0700128#include <linux/atomic.h>
Hidetoshi Seto9e55e442009-06-15 17:22:15 +0900129
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200130extern int mce_disabled;
Hidetoshi Setoc6978362009-06-15 17:22:49 +0900131extern int mce_p5_enabled;
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200132
Hidetoshi Seto58995d22009-06-15 17:27:47 +0900133#ifdef CONFIG_X86_MCE
Yong Wanga2202aa2009-11-10 09:38:24 +0800134int mcheck_init(void);
Borislav Petkov5e099542009-10-16 12:31:32 +0200135void mcheck_cpu_init(struct cpuinfo_x86 *c);
Hidetoshi Seto58995d22009-06-15 17:27:47 +0900136#else
Yong Wanga2202aa2009-11-10 09:38:24 +0800137static inline int mcheck_init(void) { return 0; }
Borislav Petkov5e099542009-10-16 12:31:32 +0200138static inline void mcheck_cpu_init(struct cpuinfo_x86 *c) {}
Hidetoshi Seto58995d22009-06-15 17:27:47 +0900139#endif
140
Hidetoshi Seto9e55e442009-06-15 17:22:15 +0900141#ifdef CONFIG_X86_ANCIENT_MCE
142void intel_p5_mcheck_init(struct cpuinfo_x86 *c);
143void winchip_mcheck_init(struct cpuinfo_x86 *c);
Hidetoshi Setoc6978362009-06-15 17:22:49 +0900144static inline void enable_p5_mce(void) { mce_p5_enabled = 1; }
Hidetoshi Seto9e55e442009-06-15 17:22:15 +0900145#else
146static inline void intel_p5_mcheck_init(struct cpuinfo_x86 *c) {}
147static inline void winchip_mcheck_init(struct cpuinfo_x86 *c) {}
Hidetoshi Setoc6978362009-06-15 17:22:49 +0900148static inline void enable_p5_mce(void) {}
Hidetoshi Seto9e55e442009-06-15 17:22:15 +0900149#endif
150
Andi Kleenb5f2fa42009-02-12 13:43:22 +0100151void mce_setup(struct mce *m);
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200152void mce_log(struct mce *m);
Hidetoshi Setoc7cece82011-06-08 11:02:03 +0900153DECLARE_PER_CPU(struct sys_device, mce_sysdev);
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200154
Andi Kleen41fdff32009-02-12 13:49:30 +0100155/*
Andi Kleen3ccdccf2009-07-09 00:31:45 +0200156 * Maximum banks number.
157 * This is the limit of the current register layout on
158 * Intel CPUs.
Andi Kleen41fdff32009-02-12 13:49:30 +0100159 */
Andi Kleen3ccdccf2009-07-09 00:31:45 +0200160#define MAX_NR_BANKS 32
Andi Kleen41fdff32009-02-12 13:49:30 +0100161
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200162#ifdef CONFIG_X86_MCE_INTEL
Hidetoshi Seto62fdac52009-06-11 16:06:07 +0900163extern int mce_cmci_disabled;
164extern int mce_ignore_ce;
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200165void mce_intel_feature_init(struct cpuinfo_x86 *c);
Andi Kleen88ccbed2009-02-12 13:49:36 +0100166void cmci_clear(void);
167void cmci_reenable(void);
168void cmci_rediscover(int dying);
169void cmci_recheck(void);
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200170#else
171static inline void mce_intel_feature_init(struct cpuinfo_x86 *c) { }
Andi Kleen88ccbed2009-02-12 13:49:36 +0100172static inline void cmci_clear(void) {}
173static inline void cmci_reenable(void) {}
174static inline void cmci_rediscover(int dying) {}
175static inline void cmci_recheck(void) {}
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200176#endif
177
178#ifdef CONFIG_X86_MCE_AMD
179void mce_amd_feature_init(struct cpuinfo_x86 *c);
180#else
181static inline void mce_amd_feature_init(struct cpuinfo_x86 *c) { }
182#endif
183
H. Peter Anvin38736072009-05-28 10:05:33 -0700184int mce_available(struct cpuinfo_x86 *c);
Andi Kleen88ccbed2009-02-12 13:49:36 +0100185
Andi Kleen01ca79f2009-05-27 21:56:52 +0200186DECLARE_PER_CPU(unsigned, mce_exception_count);
Andi Kleenca84f692009-05-27 21:56:57 +0200187DECLARE_PER_CPU(unsigned, mce_poll_count);
Andi Kleen01ca79f2009-05-27 21:56:52 +0200188
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200189extern atomic_t mce_entry;
190
Andi Kleenee031c32009-02-12 13:49:34 +0100191typedef DECLARE_BITMAP(mce_banks_t, MAX_NR_BANKS);
192DECLARE_PER_CPU(mce_banks_t, mce_poll_banks);
193
Andi Kleenb79109c2009-02-12 13:43:23 +0100194enum mcp_flags {
195 MCP_TIMESTAMP = (1 << 0), /* log time stamp */
196 MCP_UC = (1 << 1), /* log uncorrected errors */
Andi Kleen5679af42009-04-07 17:06:55 +0200197 MCP_DONTLOG = (1 << 2), /* only clear, don't log */
Andi Kleenb79109c2009-02-12 13:43:23 +0100198};
H. Peter Anvin38736072009-05-28 10:05:33 -0700199void machine_check_poll(enum mcp_flags flags, mce_banks_t *b);
Andi Kleenb79109c2009-02-12 13:43:23 +0100200
Andi Kleen9ff36ee2009-05-27 21:56:58 +0200201int mce_notify_irq(void);
Andi Kleen9b1beaf2009-05-27 21:56:59 +0200202void mce_notify_process(void);
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200203
Andi Kleenea149b32009-04-29 19:31:00 +0200204DECLARE_PER_CPU(struct mce, injectm);
Luck, Tony66f5ddf2011-11-03 11:46:47 -0700205
206extern void register_mce_write_callback(ssize_t (*)(struct file *filp,
207 const char __user *ubuf,
208 size_t usize, loff_t *off));
Andi Kleenea149b32009-04-29 19:31:00 +0200209
Hidetoshi Seto58995d22009-06-15 17:27:47 +0900210/*
211 * Exception handler
212 */
213
214/* Call the installed machine check handler for this CPU setup. */
215extern void (*machine_check_vector)(struct pt_regs *, long error_code);
216void do_machine_check(struct pt_regs *, long);
217
218/*
219 * Threshold handler
220 */
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200221
Andi Kleenb2762682009-02-12 13:49:31 +0100222extern void (*mce_threshold_vector)(void);
Hidetoshi Seto58995d22009-06-15 17:27:47 +0900223extern void (*threshold_cpu_callback)(unsigned long action, unsigned int cpu);
Andi Kleenb2762682009-02-12 13:49:31 +0100224
Hidetoshi Setoe8ce2c52009-06-15 17:24:40 +0900225/*
226 * Thermal handler
227 */
228
Hidetoshi Setoe8ce2c52009-06-15 17:24:40 +0900229void intel_init_thermal(struct cpuinfo_x86 *c);
230
Hidetoshi Setoe8ce2c52009-06-15 17:24:40 +0900231void mce_log_therm_throt_event(__u64 status);
Yong Wanga2202aa2009-11-10 09:38:24 +0800232
R, Durgadoss9e76a972011-01-03 17:22:04 +0530233/* Interrupt Handler for core thermal thresholds */
234extern int (*platform_thermal_notify)(__u64 msr_val);
235
Yong Wanga2202aa2009-11-10 09:38:24 +0800236#ifdef CONFIG_X86_THERMAL_VECTOR
237extern void mcheck_intel_therm_init(void);
238#else
239static inline void mcheck_intel_therm_init(void) { }
240#endif
241
Huang Yingd334a492010-05-18 14:35:20 +0800242/*
243 * Used by APEI to report memory error via /dev/mcelog
244 */
245
246struct cper_sec_mem_err;
247extern void apei_mce_report_mem_error(int corrected,
248 struct cper_sec_mem_err *mem_err);
249
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200250#endif /* __KERNEL__ */
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700251#endif /* _ASM_X86_MCE_H */