blob: 6aefb14cbbc5d9c40dcbf89322a5d4a77103b48e [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 */
Chen Gong2c29d9d2011-12-07 09:21:37 -080053#define MCJ_CTX_PROCESS 0x1 /* inject context: process */
54#define MCJ_CTX_IRQ 0x2 /* inject context: IRQ */
55#define MCJ_NMI_BROADCAST 0x4 /* do NMI broadcasting */
56#define MCJ_EXCEPTION 0x8 /* raise as exception */
57#define MCJ_IRQ_BRAODCAST 0x10 /* do IRQ broadcasting */
Huang Ying5b7e88e2009-07-31 09:41:40 +080058
Thomas Gleixnere2f43022007-10-17 18:04:40 +020059/* Fields are zero when not available */
60struct mce {
61 __u64 status;
62 __u64 misc;
63 __u64 addr;
64 __u64 mcgstatus;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +010065 __u64 ip;
Thomas Gleixnere2f43022007-10-17 18:04:40 +020066 __u64 tsc; /* cpu time stamp counter */
Andi Kleen8ee08342009-05-27 21:56:56 +020067 __u64 time; /* wall time_t when error was detected */
68 __u8 cpuvendor; /* cpu vendor as encoded in system.h */
Huang Ying5b7e88e2009-07-31 09:41:40 +080069 __u8 inject_flags; /* software inject flags */
70 __u16 pad;
Andi Kleen8ee08342009-05-27 21:56:56 +020071 __u32 cpuid; /* CPUID 1 EAX */
Thomas Gleixnere2f43022007-10-17 18:04:40 +020072 __u8 cs; /* code segment */
73 __u8 bank; /* machine check bank */
Andi Kleend620c672009-05-27 21:56:56 +020074 __u8 cpu; /* cpu number; obsolete; use extcpu now */
Thomas Gleixnere2f43022007-10-17 18:04:40 +020075 __u8 finished; /* entry is valid */
Andi Kleend620c672009-05-27 21:56:56 +020076 __u32 extcpu; /* linux cpu number that detected the error */
Andi Kleen8ee08342009-05-27 21:56:56 +020077 __u32 socketid; /* CPU socket ID */
78 __u32 apicid; /* CPU initial apic ID */
79 __u64 mcgcap; /* MCGCAP MSR: machine check capabilities of CPU */
Thomas Gleixnere2f43022007-10-17 18:04:40 +020080};
81
82/*
83 * This structure contains all data related to the MCE log. Also
84 * carries a signature to make it easier to find from external
85 * debugging tools. Each entry is only valid when its finished flag
86 * is set.
87 */
88
89#define MCE_LOG_LEN 32
90
91struct mce_log {
92 char signature[12]; /* "MACHINECHECK" */
93 unsigned len; /* = MCE_LOG_LEN */
94 unsigned next;
95 unsigned flags;
Andi Kleenf6fb0ac2009-05-27 21:56:55 +020096 unsigned recordlen; /* length of struct mce */
Thomas Gleixnere2f43022007-10-17 18:04:40 +020097 struct mce entry[MCE_LOG_LEN];
98};
99
100#define MCE_OVERFLOW 0 /* bit 0 in flags means overflow */
101
102#define MCE_LOG_SIGNATURE "MACHINECHECK"
103
104#define MCE_GET_RECORD_LEN _IOR('M', 1, int)
105#define MCE_GET_LOG_LEN _IOR('M', 2, int)
106#define MCE_GETCLEAR_FLAGS _IOR('M', 3, int)
107
108/* Software defined banks */
109#define MCE_EXTENDED_BANK 128
110#define MCE_THERMAL_BANK MCE_EXTENDED_BANK + 0
111
112#define K8_MCE_THRESHOLD_BASE (MCE_EXTENDED_BANK + 1) /* MCE_AMD */
113#define K8_MCE_THRESHOLD_BANK_0 (MCE_THRESHOLD_BASE + 0 * 9)
114#define K8_MCE_THRESHOLD_BANK_1 (MCE_THRESHOLD_BASE + 1 * 9)
115#define K8_MCE_THRESHOLD_BANK_2 (MCE_THRESHOLD_BASE + 2 * 9)
116#define K8_MCE_THRESHOLD_BANK_3 (MCE_THRESHOLD_BASE + 3 * 9)
117#define K8_MCE_THRESHOLD_BANK_4 (MCE_THRESHOLD_BASE + 4 * 9)
118#define K8_MCE_THRESHOLD_BANK_5 (MCE_THRESHOLD_BASE + 5 * 9)
119#define K8_MCE_THRESHOLD_DRAM_ECC (MCE_THRESHOLD_BANK_4 + 0)
120
Borislav Petkovfb253192009-10-07 13:20:38 +0200121
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200122#ifdef __KERNEL__
123
Borislav Petkov3653ada2011-12-04 15:12:09 +0100124extern void mce_register_decode_chain(struct notifier_block *nb);
125extern void mce_unregister_decode_chain(struct notifier_block *nb);
Alan Coxdf39a2e2010-01-04 16:17:21 +0000126
Hidetoshi Seto9e55e442009-06-15 17:22:15 +0900127#include <linux/percpu.h>
128#include <linux/init.h>
Arun Sharma600634972011-07-26 16:09:06 -0700129#include <linux/atomic.h>
Hidetoshi Seto9e55e442009-06-15 17:22:15 +0900130
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200131extern int mce_disabled;
Hidetoshi Setoc6978362009-06-15 17:22:49 +0900132extern int mce_p5_enabled;
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200133
Hidetoshi Seto58995d22009-06-15 17:27:47 +0900134#ifdef CONFIG_X86_MCE
Yong Wanga2202aa2009-11-10 09:38:24 +0800135int mcheck_init(void);
Borislav Petkov5e099542009-10-16 12:31:32 +0200136void mcheck_cpu_init(struct cpuinfo_x86 *c);
Hidetoshi Seto58995d22009-06-15 17:27:47 +0900137#else
Yong Wanga2202aa2009-11-10 09:38:24 +0800138static inline int mcheck_init(void) { return 0; }
Borislav Petkov5e099542009-10-16 12:31:32 +0200139static inline void mcheck_cpu_init(struct cpuinfo_x86 *c) {}
Hidetoshi Seto58995d22009-06-15 17:27:47 +0900140#endif
141
Hidetoshi Seto9e55e442009-06-15 17:22:15 +0900142#ifdef CONFIG_X86_ANCIENT_MCE
143void intel_p5_mcheck_init(struct cpuinfo_x86 *c);
144void winchip_mcheck_init(struct cpuinfo_x86 *c);
Hidetoshi Setoc6978362009-06-15 17:22:49 +0900145static inline void enable_p5_mce(void) { mce_p5_enabled = 1; }
Hidetoshi Seto9e55e442009-06-15 17:22:15 +0900146#else
147static inline void intel_p5_mcheck_init(struct cpuinfo_x86 *c) {}
148static inline void winchip_mcheck_init(struct cpuinfo_x86 *c) {}
Hidetoshi Setoc6978362009-06-15 17:22:49 +0900149static inline void enable_p5_mce(void) {}
Hidetoshi Seto9e55e442009-06-15 17:22:15 +0900150#endif
151
Andi Kleenb5f2fa42009-02-12 13:43:22 +0100152void mce_setup(struct mce *m);
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200153void mce_log(struct mce *m);
Greg Kroah-Hartmane032d8072012-01-16 14:40:28 -0800154extern struct device *mce_device[CONFIG_NR_CPUS];
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200155
Andi Kleen41fdff32009-02-12 13:49:30 +0100156/*
Andi Kleen3ccdccf2009-07-09 00:31:45 +0200157 * Maximum banks number.
158 * This is the limit of the current register layout on
159 * Intel CPUs.
Andi Kleen41fdff32009-02-12 13:49:30 +0100160 */
Andi Kleen3ccdccf2009-07-09 00:31:45 +0200161#define MAX_NR_BANKS 32
Andi Kleen41fdff32009-02-12 13:49:30 +0100162
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200163#ifdef CONFIG_X86_MCE_INTEL
Hidetoshi Seto62fdac52009-06-11 16:06:07 +0900164extern int mce_cmci_disabled;
165extern int mce_ignore_ce;
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200166void mce_intel_feature_init(struct cpuinfo_x86 *c);
Andi Kleen88ccbed2009-02-12 13:49:36 +0100167void cmci_clear(void);
168void cmci_reenable(void);
169void cmci_rediscover(int dying);
170void cmci_recheck(void);
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200171#else
172static inline void mce_intel_feature_init(struct cpuinfo_x86 *c) { }
Andi Kleen88ccbed2009-02-12 13:49:36 +0100173static inline void cmci_clear(void) {}
174static inline void cmci_reenable(void) {}
175static inline void cmci_rediscover(int dying) {}
176static inline void cmci_recheck(void) {}
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200177#endif
178
179#ifdef CONFIG_X86_MCE_AMD
180void mce_amd_feature_init(struct cpuinfo_x86 *c);
181#else
182static inline void mce_amd_feature_init(struct cpuinfo_x86 *c) { }
183#endif
184
H. Peter Anvin38736072009-05-28 10:05:33 -0700185int mce_available(struct cpuinfo_x86 *c);
Andi Kleen88ccbed2009-02-12 13:49:36 +0100186
Andi Kleen01ca79f2009-05-27 21:56:52 +0200187DECLARE_PER_CPU(unsigned, mce_exception_count);
Andi Kleenca84f692009-05-27 21:56:57 +0200188DECLARE_PER_CPU(unsigned, mce_poll_count);
Andi Kleen01ca79f2009-05-27 21:56:52 +0200189
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200190extern atomic_t mce_entry;
191
Andi Kleenee031c32009-02-12 13:49:34 +0100192typedef DECLARE_BITMAP(mce_banks_t, MAX_NR_BANKS);
193DECLARE_PER_CPU(mce_banks_t, mce_poll_banks);
194
Andi Kleenb79109c2009-02-12 13:43:23 +0100195enum mcp_flags {
196 MCP_TIMESTAMP = (1 << 0), /* log time stamp */
197 MCP_UC = (1 << 1), /* log uncorrected errors */
Andi Kleen5679af42009-04-07 17:06:55 +0200198 MCP_DONTLOG = (1 << 2), /* only clear, don't log */
Andi Kleenb79109c2009-02-12 13:43:23 +0100199};
H. Peter Anvin38736072009-05-28 10:05:33 -0700200void machine_check_poll(enum mcp_flags flags, mce_banks_t *b);
Andi Kleenb79109c2009-02-12 13:43:23 +0100201
Andi Kleen9ff36ee2009-05-27 21:56:58 +0200202int mce_notify_irq(void);
Andi Kleen9b1beaf2009-05-27 21:56:59 +0200203void mce_notify_process(void);
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200204
Andi Kleenea149b32009-04-29 19:31:00 +0200205DECLARE_PER_CPU(struct mce, injectm);
Luck, Tony66f5ddf2011-11-03 11:46:47 -0700206
207extern void register_mce_write_callback(ssize_t (*)(struct file *filp,
208 const char __user *ubuf,
209 size_t usize, loff_t *off));
Andi Kleenea149b32009-04-29 19:31:00 +0200210
Hidetoshi Seto58995d22009-06-15 17:27:47 +0900211/*
212 * Exception handler
213 */
214
215/* Call the installed machine check handler for this CPU setup. */
216extern void (*machine_check_vector)(struct pt_regs *, long error_code);
217void do_machine_check(struct pt_regs *, long);
218
219/*
220 * Threshold handler
221 */
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200222
Andi Kleenb2762682009-02-12 13:49:31 +0100223extern void (*mce_threshold_vector)(void);
Hidetoshi Seto58995d22009-06-15 17:27:47 +0900224extern void (*threshold_cpu_callback)(unsigned long action, unsigned int cpu);
Andi Kleenb2762682009-02-12 13:49:31 +0100225
Hidetoshi Setoe8ce2c52009-06-15 17:24:40 +0900226/*
227 * Thermal handler
228 */
229
Hidetoshi Setoe8ce2c52009-06-15 17:24:40 +0900230void intel_init_thermal(struct cpuinfo_x86 *c);
231
Hidetoshi Setoe8ce2c52009-06-15 17:24:40 +0900232void mce_log_therm_throt_event(__u64 status);
Yong Wanga2202aa2009-11-10 09:38:24 +0800233
R, Durgadoss9e76a972011-01-03 17:22:04 +0530234/* Interrupt Handler for core thermal thresholds */
235extern int (*platform_thermal_notify)(__u64 msr_val);
236
Yong Wanga2202aa2009-11-10 09:38:24 +0800237#ifdef CONFIG_X86_THERMAL_VECTOR
238extern void mcheck_intel_therm_init(void);
239#else
240static inline void mcheck_intel_therm_init(void) { }
241#endif
242
Huang Yingd334a492010-05-18 14:35:20 +0800243/*
244 * Used by APEI to report memory error via /dev/mcelog
245 */
246
247struct cper_sec_mem_err;
248extern void apei_mce_report_mem_error(int corrected,
249 struct cper_sec_mem_err *mem_err);
250
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200251#endif /* __KERNEL__ */
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700252#endif /* _ASM_X86_MCE_H */