blob: d90c2fccc30c100cc1ae2d381228fb4c4b5e9fde [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 */
Tony Luck736edce2012-07-19 11:21:53 -070036#define MCACOD 0xffff /* MCA Error Code */
37
38/* Architecturally defined codes from SDM Vol. 3B Chapter 15 */
39#define MCACOD_SCRUB 0x00C0 /* 0xC0-0xCF Memory Scrubbing */
40#define MCACOD_SCRUBMSK 0xfff0
41#define MCACOD_L3WB 0x017A /* L3 Explicit Writeback */
42#define MCACOD_DATA 0x0134 /* Data Load */
43#define MCACOD_INSTR 0x0150 /* Instruction Fetch */
Andi Kleened7290d2009-05-27 21:56:57 +020044
Hidetoshi Seto2b90e772011-06-08 10:56:56 +090045/* MCi_MISC register defines */
46#define MCI_MISC_ADDR_LSB(m) ((m) & 0x3f)
47#define MCI_MISC_ADDR_MODE(m) (((m) >> 6) & 7)
48#define MCI_MISC_ADDR_SEGOFF 0 /* segment offset */
49#define MCI_MISC_ADDR_LINEAR 1 /* linear address */
50#define MCI_MISC_ADDR_PHYS 2 /* physical address */
51#define MCI_MISC_ADDR_MEM 3 /* memory address */
52#define MCI_MISC_ADDR_GENERIC 7 /* generic */
Thomas Gleixnere2f43022007-10-17 18:04:40 +020053
Huang Ying1f9a0bd2010-06-08 14:09:08 +080054/* CTL2 register defines */
55#define MCI_CTL2_CMCI_EN (1ULL << 30)
Huang Ying3c417582010-06-08 14:09:10 +080056#define MCI_CTL2_CMCI_THRESHOLD_MASK 0x7fffULL
Huang Ying1f9a0bd2010-06-08 14:09:08 +080057
Huang Ying5b7e88e2009-07-31 09:41:40 +080058#define MCJ_CTX_MASK 3
59#define MCJ_CTX(flags) ((flags) & MCJ_CTX_MASK)
60#define MCJ_CTX_RANDOM 0 /* inject context: random */
Chen Gong2c29d9d2011-12-07 09:21:37 -080061#define MCJ_CTX_PROCESS 0x1 /* inject context: process */
62#define MCJ_CTX_IRQ 0x2 /* inject context: IRQ */
63#define MCJ_NMI_BROADCAST 0x4 /* do NMI broadcasting */
64#define MCJ_EXCEPTION 0x8 /* raise as exception */
65#define MCJ_IRQ_BRAODCAST 0x10 /* do IRQ broadcasting */
Huang Ying5b7e88e2009-07-31 09:41:40 +080066
Thomas Gleixnere2f43022007-10-17 18:04:40 +020067/* Fields are zero when not available */
68struct mce {
69 __u64 status;
70 __u64 misc;
71 __u64 addr;
72 __u64 mcgstatus;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +010073 __u64 ip;
Thomas Gleixnere2f43022007-10-17 18:04:40 +020074 __u64 tsc; /* cpu time stamp counter */
Andi Kleen8ee08342009-05-27 21:56:56 +020075 __u64 time; /* wall time_t when error was detected */
76 __u8 cpuvendor; /* cpu vendor as encoded in system.h */
Huang Ying5b7e88e2009-07-31 09:41:40 +080077 __u8 inject_flags; /* software inject flags */
78 __u16 pad;
Andi Kleen8ee08342009-05-27 21:56:56 +020079 __u32 cpuid; /* CPUID 1 EAX */
Thomas Gleixnere2f43022007-10-17 18:04:40 +020080 __u8 cs; /* code segment */
81 __u8 bank; /* machine check bank */
Andi Kleend620c672009-05-27 21:56:56 +020082 __u8 cpu; /* cpu number; obsolete; use extcpu now */
Thomas Gleixnere2f43022007-10-17 18:04:40 +020083 __u8 finished; /* entry is valid */
Andi Kleend620c672009-05-27 21:56:56 +020084 __u32 extcpu; /* linux cpu number that detected the error */
Andi Kleen8ee08342009-05-27 21:56:56 +020085 __u32 socketid; /* CPU socket ID */
86 __u32 apicid; /* CPU initial apic ID */
87 __u64 mcgcap; /* MCGCAP MSR: machine check capabilities of CPU */
Thomas Gleixnere2f43022007-10-17 18:04:40 +020088};
89
90/*
91 * This structure contains all data related to the MCE log. Also
92 * carries a signature to make it easier to find from external
93 * debugging tools. Each entry is only valid when its finished flag
94 * is set.
95 */
96
97#define MCE_LOG_LEN 32
98
99struct mce_log {
100 char signature[12]; /* "MACHINECHECK" */
101 unsigned len; /* = MCE_LOG_LEN */
102 unsigned next;
103 unsigned flags;
Andi Kleenf6fb0ac2009-05-27 21:56:55 +0200104 unsigned recordlen; /* length of struct mce */
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200105 struct mce entry[MCE_LOG_LEN];
106};
107
108#define MCE_OVERFLOW 0 /* bit 0 in flags means overflow */
109
110#define MCE_LOG_SIGNATURE "MACHINECHECK"
111
112#define MCE_GET_RECORD_LEN _IOR('M', 1, int)
113#define MCE_GET_LOG_LEN _IOR('M', 2, int)
114#define MCE_GETCLEAR_FLAGS _IOR('M', 3, int)
115
116/* Software defined banks */
117#define MCE_EXTENDED_BANK 128
118#define MCE_THERMAL_BANK MCE_EXTENDED_BANK + 0
Borislav Petkov57639be2012-05-22 18:47:38 +0200119#define K8_MCE_THRESHOLD_BASE (MCE_EXTENDED_BANK + 1)
Borislav Petkovfb253192009-10-07 13:20:38 +0200120
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200121#ifdef __KERNEL__
Borislav Petkovd203f0b2012-10-15 18:03:57 +0200122
123struct mca_config {
124 bool dont_log_ce;
Borislav Petkov7af19e42012-10-15 20:25:17 +0200125 bool cmci_disabled;
126 bool ignore_ce;
Borislav Petkov14625942012-10-17 12:05:33 +0200127 bool disabled;
128 bool ser;
129 bool bios_cmci_threshold;
Borislav Petkovd203f0b2012-10-15 18:03:57 +0200130 u8 banks;
Borislav Petkov84c25592012-10-15 19:59:18 +0200131 s8 bootlog;
Borislav Petkovd203f0b2012-10-15 18:03:57 +0200132 int tolerant;
Borislav Petkov84c25592012-10-15 19:59:18 +0200133 int monarch_timeout;
Borislav Petkov7af19e42012-10-15 20:25:17 +0200134 int panic_timeout;
Borislav Petkov84c25592012-10-15 19:59:18 +0200135 u32 rip_msr;
Borislav Petkovd203f0b2012-10-15 18:03:57 +0200136};
137
Borislav Petkov7af19e42012-10-15 20:25:17 +0200138extern struct mca_config mca_cfg;
Borislav Petkov3653ada2011-12-04 15:12:09 +0100139extern void mce_register_decode_chain(struct notifier_block *nb);
140extern void mce_unregister_decode_chain(struct notifier_block *nb);
Alan Coxdf39a2e2010-01-04 16:17:21 +0000141
Hidetoshi Seto9e55e442009-06-15 17:22:15 +0900142#include <linux/percpu.h>
143#include <linux/init.h>
Arun Sharma600634972011-07-26 16:09:06 -0700144#include <linux/atomic.h>
Hidetoshi Seto9e55e442009-06-15 17:22:15 +0900145
Hidetoshi Setoc6978362009-06-15 17:22:49 +0900146extern int mce_p5_enabled;
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200147
Hidetoshi Seto58995d22009-06-15 17:27:47 +0900148#ifdef CONFIG_X86_MCE
Yong Wanga2202aa2009-11-10 09:38:24 +0800149int mcheck_init(void);
Borislav Petkov5e099542009-10-16 12:31:32 +0200150void mcheck_cpu_init(struct cpuinfo_x86 *c);
Hidetoshi Seto58995d22009-06-15 17:27:47 +0900151#else
Yong Wanga2202aa2009-11-10 09:38:24 +0800152static inline int mcheck_init(void) { return 0; }
Borislav Petkov5e099542009-10-16 12:31:32 +0200153static inline void mcheck_cpu_init(struct cpuinfo_x86 *c) {}
Hidetoshi Seto58995d22009-06-15 17:27:47 +0900154#endif
155
Hidetoshi Seto9e55e442009-06-15 17:22:15 +0900156#ifdef CONFIG_X86_ANCIENT_MCE
157void intel_p5_mcheck_init(struct cpuinfo_x86 *c);
158void winchip_mcheck_init(struct cpuinfo_x86 *c);
Hidetoshi Setoc6978362009-06-15 17:22:49 +0900159static inline void enable_p5_mce(void) { mce_p5_enabled = 1; }
Hidetoshi Seto9e55e442009-06-15 17:22:15 +0900160#else
161static inline void intel_p5_mcheck_init(struct cpuinfo_x86 *c) {}
162static inline void winchip_mcheck_init(struct cpuinfo_x86 *c) {}
Hidetoshi Setoc6978362009-06-15 17:22:49 +0900163static inline void enable_p5_mce(void) {}
Hidetoshi Seto9e55e442009-06-15 17:22:15 +0900164#endif
165
Andi Kleenb5f2fa42009-02-12 13:43:22 +0100166void mce_setup(struct mce *m);
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200167void mce_log(struct mce *m);
Greg Kroah-Hartmand6126ef2012-01-26 15:49:14 -0800168DECLARE_PER_CPU(struct device *, mce_device);
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200169
Andi Kleen41fdff32009-02-12 13:49:30 +0100170/*
Andi Kleen3ccdccf2009-07-09 00:31:45 +0200171 * Maximum banks number.
172 * This is the limit of the current register layout on
173 * Intel CPUs.
Andi Kleen41fdff32009-02-12 13:49:30 +0100174 */
Andi Kleen3ccdccf2009-07-09 00:31:45 +0200175#define MAX_NR_BANKS 32
Andi Kleen41fdff32009-02-12 13:49:30 +0100176
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200177#ifdef CONFIG_X86_MCE_INTEL
178void mce_intel_feature_init(struct cpuinfo_x86 *c);
Andi Kleen88ccbed2009-02-12 13:49:36 +0100179void cmci_clear(void);
180void cmci_reenable(void);
181void cmci_rediscover(int dying);
182void cmci_recheck(void);
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200183#else
184static inline void mce_intel_feature_init(struct cpuinfo_x86 *c) { }
Andi Kleen88ccbed2009-02-12 13:49:36 +0100185static inline void cmci_clear(void) {}
186static inline void cmci_reenable(void) {}
187static inline void cmci_rediscover(int dying) {}
188static inline void cmci_recheck(void) {}
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200189#endif
190
191#ifdef CONFIG_X86_MCE_AMD
192void mce_amd_feature_init(struct cpuinfo_x86 *c);
193#else
194static inline void mce_amd_feature_init(struct cpuinfo_x86 *c) { }
195#endif
196
H. Peter Anvin38736072009-05-28 10:05:33 -0700197int mce_available(struct cpuinfo_x86 *c);
Andi Kleen88ccbed2009-02-12 13:49:36 +0100198
Andi Kleen01ca79f2009-05-27 21:56:52 +0200199DECLARE_PER_CPU(unsigned, mce_exception_count);
Andi Kleenca84f692009-05-27 21:56:57 +0200200DECLARE_PER_CPU(unsigned, mce_poll_count);
Andi Kleen01ca79f2009-05-27 21:56:52 +0200201
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200202extern atomic_t mce_entry;
203
Andi Kleenee031c32009-02-12 13:49:34 +0100204typedef DECLARE_BITMAP(mce_banks_t, MAX_NR_BANKS);
205DECLARE_PER_CPU(mce_banks_t, mce_poll_banks);
206
Andi Kleenb79109c2009-02-12 13:43:23 +0100207enum mcp_flags {
208 MCP_TIMESTAMP = (1 << 0), /* log time stamp */
209 MCP_UC = (1 << 1), /* log uncorrected errors */
Andi Kleen5679af42009-04-07 17:06:55 +0200210 MCP_DONTLOG = (1 << 2), /* only clear, don't log */
Andi Kleenb79109c2009-02-12 13:43:23 +0100211};
H. Peter Anvin38736072009-05-28 10:05:33 -0700212void machine_check_poll(enum mcp_flags flags, mce_banks_t *b);
Andi Kleenb79109c2009-02-12 13:43:23 +0100213
Andi Kleen9ff36ee2009-05-27 21:56:58 +0200214int mce_notify_irq(void);
Andi Kleen9b1beaf2009-05-27 21:56:59 +0200215void mce_notify_process(void);
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200216
Andi Kleenea149b32009-04-29 19:31:00 +0200217DECLARE_PER_CPU(struct mce, injectm);
Luck, Tony66f5ddf2011-11-03 11:46:47 -0700218
219extern void register_mce_write_callback(ssize_t (*)(struct file *filp,
220 const char __user *ubuf,
221 size_t usize, loff_t *off));
Andi Kleenea149b32009-04-29 19:31:00 +0200222
Hidetoshi Seto58995d22009-06-15 17:27:47 +0900223/*
224 * Exception handler
225 */
226
227/* Call the installed machine check handler for this CPU setup. */
228extern void (*machine_check_vector)(struct pt_regs *, long error_code);
229void do_machine_check(struct pt_regs *, long);
230
231/*
232 * Threshold handler
233 */
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200234
Andi Kleenb2762682009-02-12 13:49:31 +0100235extern void (*mce_threshold_vector)(void);
Hidetoshi Seto58995d22009-06-15 17:27:47 +0900236extern void (*threshold_cpu_callback)(unsigned long action, unsigned int cpu);
Andi Kleenb2762682009-02-12 13:49:31 +0100237
Hidetoshi Setoe8ce2c52009-06-15 17:24:40 +0900238/*
239 * Thermal handler
240 */
241
Hidetoshi Setoe8ce2c52009-06-15 17:24:40 +0900242void intel_init_thermal(struct cpuinfo_x86 *c);
243
Hidetoshi Setoe8ce2c52009-06-15 17:24:40 +0900244void mce_log_therm_throt_event(__u64 status);
Yong Wanga2202aa2009-11-10 09:38:24 +0800245
R, Durgadoss9e76a972011-01-03 17:22:04 +0530246/* Interrupt Handler for core thermal thresholds */
247extern int (*platform_thermal_notify)(__u64 msr_val);
248
Yong Wanga2202aa2009-11-10 09:38:24 +0800249#ifdef CONFIG_X86_THERMAL_VECTOR
250extern void mcheck_intel_therm_init(void);
251#else
252static inline void mcheck_intel_therm_init(void) { }
253#endif
254
Huang Yingd334a492010-05-18 14:35:20 +0800255/*
256 * Used by APEI to report memory error via /dev/mcelog
257 */
258
259struct cper_sec_mem_err;
260extern void apei_mce_report_mem_error(int corrected,
261 struct cper_sec_mem_err *mem_err);
262
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200263#endif /* __KERNEL__ */
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700264#endif /* _ASM_X86_MCE_H */