blob: a711e3f4fbc70b8f780918c58a47a540a59608e0 [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 Petkovd203f0b2012-10-15 18:03:57 +0200127 u8 banks;
Borislav Petkov84c25592012-10-15 19:59:18 +0200128 s8 bootlog;
Borislav Petkovd203f0b2012-10-15 18:03:57 +0200129 int tolerant;
Borislav Petkov84c25592012-10-15 19:59:18 +0200130 int monarch_timeout;
Borislav Petkov7af19e42012-10-15 20:25:17 +0200131 int panic_timeout;
Borislav Petkov84c25592012-10-15 19:59:18 +0200132 u32 rip_msr;
Borislav Petkovd203f0b2012-10-15 18:03:57 +0200133};
134
Borislav Petkov7af19e42012-10-15 20:25:17 +0200135extern struct mca_config mca_cfg;
Borislav Petkov3653ada2011-12-04 15:12:09 +0100136extern void mce_register_decode_chain(struct notifier_block *nb);
137extern void mce_unregister_decode_chain(struct notifier_block *nb);
Alan Coxdf39a2e2010-01-04 16:17:21 +0000138
Hidetoshi Seto9e55e442009-06-15 17:22:15 +0900139#include <linux/percpu.h>
140#include <linux/init.h>
Arun Sharma600634972011-07-26 16:09:06 -0700141#include <linux/atomic.h>
Hidetoshi Seto9e55e442009-06-15 17:22:15 +0900142
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200143extern int mce_disabled;
Hidetoshi Setoc6978362009-06-15 17:22:49 +0900144extern int mce_p5_enabled;
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200145
Hidetoshi Seto58995d22009-06-15 17:27:47 +0900146#ifdef CONFIG_X86_MCE
Yong Wanga2202aa2009-11-10 09:38:24 +0800147int mcheck_init(void);
Borislav Petkov5e099542009-10-16 12:31:32 +0200148void mcheck_cpu_init(struct cpuinfo_x86 *c);
Hidetoshi Seto58995d22009-06-15 17:27:47 +0900149#else
Yong Wanga2202aa2009-11-10 09:38:24 +0800150static inline int mcheck_init(void) { return 0; }
Borislav Petkov5e099542009-10-16 12:31:32 +0200151static inline void mcheck_cpu_init(struct cpuinfo_x86 *c) {}
Hidetoshi Seto58995d22009-06-15 17:27:47 +0900152#endif
153
Hidetoshi Seto9e55e442009-06-15 17:22:15 +0900154#ifdef CONFIG_X86_ANCIENT_MCE
155void intel_p5_mcheck_init(struct cpuinfo_x86 *c);
156void winchip_mcheck_init(struct cpuinfo_x86 *c);
Hidetoshi Setoc6978362009-06-15 17:22:49 +0900157static inline void enable_p5_mce(void) { mce_p5_enabled = 1; }
Hidetoshi Seto9e55e442009-06-15 17:22:15 +0900158#else
159static inline void intel_p5_mcheck_init(struct cpuinfo_x86 *c) {}
160static inline void winchip_mcheck_init(struct cpuinfo_x86 *c) {}
Hidetoshi Setoc6978362009-06-15 17:22:49 +0900161static inline void enable_p5_mce(void) {}
Hidetoshi Seto9e55e442009-06-15 17:22:15 +0900162#endif
163
Andi Kleenb5f2fa42009-02-12 13:43:22 +0100164void mce_setup(struct mce *m);
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200165void mce_log(struct mce *m);
Greg Kroah-Hartmand6126ef2012-01-26 15:49:14 -0800166DECLARE_PER_CPU(struct device *, mce_device);
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200167
Andi Kleen41fdff32009-02-12 13:49:30 +0100168/*
Andi Kleen3ccdccf2009-07-09 00:31:45 +0200169 * Maximum banks number.
170 * This is the limit of the current register layout on
171 * Intel CPUs.
Andi Kleen41fdff32009-02-12 13:49:30 +0100172 */
Andi Kleen3ccdccf2009-07-09 00:31:45 +0200173#define MAX_NR_BANKS 32
Andi Kleen41fdff32009-02-12 13:49:30 +0100174
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200175#ifdef CONFIG_X86_MCE_INTEL
Naveen N. Rao450cc202012-09-27 10:08:00 -0700176extern int mce_bios_cmci_threshold;
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200177void mce_intel_feature_init(struct cpuinfo_x86 *c);
Andi Kleen88ccbed2009-02-12 13:49:36 +0100178void cmci_clear(void);
179void cmci_reenable(void);
180void cmci_rediscover(int dying);
181void cmci_recheck(void);
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200182#else
183static inline void mce_intel_feature_init(struct cpuinfo_x86 *c) { }
Andi Kleen88ccbed2009-02-12 13:49:36 +0100184static inline void cmci_clear(void) {}
185static inline void cmci_reenable(void) {}
186static inline void cmci_rediscover(int dying) {}
187static inline void cmci_recheck(void) {}
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200188#endif
189
190#ifdef CONFIG_X86_MCE_AMD
191void mce_amd_feature_init(struct cpuinfo_x86 *c);
192#else
193static inline void mce_amd_feature_init(struct cpuinfo_x86 *c) { }
194#endif
195
H. Peter Anvin38736072009-05-28 10:05:33 -0700196int mce_available(struct cpuinfo_x86 *c);
Andi Kleen88ccbed2009-02-12 13:49:36 +0100197
Andi Kleen01ca79f2009-05-27 21:56:52 +0200198DECLARE_PER_CPU(unsigned, mce_exception_count);
Andi Kleenca84f692009-05-27 21:56:57 +0200199DECLARE_PER_CPU(unsigned, mce_poll_count);
Andi Kleen01ca79f2009-05-27 21:56:52 +0200200
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200201extern atomic_t mce_entry;
202
Andi Kleenee031c32009-02-12 13:49:34 +0100203typedef DECLARE_BITMAP(mce_banks_t, MAX_NR_BANKS);
204DECLARE_PER_CPU(mce_banks_t, mce_poll_banks);
205
Andi Kleenb79109c2009-02-12 13:43:23 +0100206enum mcp_flags {
207 MCP_TIMESTAMP = (1 << 0), /* log time stamp */
208 MCP_UC = (1 << 1), /* log uncorrected errors */
Andi Kleen5679af42009-04-07 17:06:55 +0200209 MCP_DONTLOG = (1 << 2), /* only clear, don't log */
Andi Kleenb79109c2009-02-12 13:43:23 +0100210};
H. Peter Anvin38736072009-05-28 10:05:33 -0700211void machine_check_poll(enum mcp_flags flags, mce_banks_t *b);
Andi Kleenb79109c2009-02-12 13:43:23 +0100212
Andi Kleen9ff36ee2009-05-27 21:56:58 +0200213int mce_notify_irq(void);
Andi Kleen9b1beaf2009-05-27 21:56:59 +0200214void mce_notify_process(void);
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200215
Andi Kleenea149b32009-04-29 19:31:00 +0200216DECLARE_PER_CPU(struct mce, injectm);
Luck, Tony66f5ddf2011-11-03 11:46:47 -0700217
218extern void register_mce_write_callback(ssize_t (*)(struct file *filp,
219 const char __user *ubuf,
220 size_t usize, loff_t *off));
Andi Kleenea149b32009-04-29 19:31:00 +0200221
Hidetoshi Seto58995d22009-06-15 17:27:47 +0900222/*
223 * Exception handler
224 */
225
226/* Call the installed machine check handler for this CPU setup. */
227extern void (*machine_check_vector)(struct pt_regs *, long error_code);
228void do_machine_check(struct pt_regs *, long);
229
230/*
231 * Threshold handler
232 */
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200233
Andi Kleenb2762682009-02-12 13:49:31 +0100234extern void (*mce_threshold_vector)(void);
Hidetoshi Seto58995d22009-06-15 17:27:47 +0900235extern void (*threshold_cpu_callback)(unsigned long action, unsigned int cpu);
Andi Kleenb2762682009-02-12 13:49:31 +0100236
Hidetoshi Setoe8ce2c52009-06-15 17:24:40 +0900237/*
238 * Thermal handler
239 */
240
Hidetoshi Setoe8ce2c52009-06-15 17:24:40 +0900241void intel_init_thermal(struct cpuinfo_x86 *c);
242
Hidetoshi Setoe8ce2c52009-06-15 17:24:40 +0900243void mce_log_therm_throt_event(__u64 status);
Yong Wanga2202aa2009-11-10 09:38:24 +0800244
R, Durgadoss9e76a972011-01-03 17:22:04 +0530245/* Interrupt Handler for core thermal thresholds */
246extern int (*platform_thermal_notify)(__u64 msr_val);
247
Yong Wanga2202aa2009-11-10 09:38:24 +0800248#ifdef CONFIG_X86_THERMAL_VECTOR
249extern void mcheck_intel_therm_init(void);
250#else
251static inline void mcheck_intel_therm_init(void) { }
252#endif
253
Huang Yingd334a492010-05-18 14:35:20 +0800254/*
255 * Used by APEI to report memory error via /dev/mcelog
256 */
257
258struct cper_sec_mem_err;
259extern void apei_mce_report_mem_error(int corrected,
260 struct cper_sec_mem_err *mem_err);
261
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200262#endif /* __KERNEL__ */
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700263#endif /* _ASM_X86_MCE_H */