blob: 18d2ba9c8e44e398e2edd31c381150c515b63e37 [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
David Howellsaf170c52012-12-14 22:37:13 +00004#include <uapi/asm/mce.h>
Thomas Gleixnere2f43022007-10-17 18:04:40 +02005
Borislav Petkovf51bde62012-12-21 17:03:58 +01006/*
7 * Machine Check support for x86
8 */
9
10/* MCG_CAP register defines */
11#define MCG_BANKCNT_MASK 0xff /* Number of Banks */
12#define MCG_CTL_P (1ULL<<8) /* MCG_CTL register available */
13#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)
18#define MCG_SER_P (1ULL<<24) /* MCA recovery/new status bits */
Chen, Gong4b3db702013-10-21 14:29:25 -070019#define MCG_ELOG_P (1ULL<<26) /* Extended error log supported */
Ashok Rajbc12edb2015-06-04 18:55:22 +020020#define MCG_LMCE_P (1ULL<<27) /* Local machine check supported */
Borislav Petkovf51bde62012-12-21 17:03:58 +010021
22/* MCG_STATUS register defines */
23#define MCG_STATUS_RIPV (1ULL<<0) /* restart ip valid */
24#define MCG_STATUS_EIPV (1ULL<<1) /* ip points to correct instruction */
25#define MCG_STATUS_MCIP (1ULL<<2) /* machine check in progress */
Ashok Rajbc12edb2015-06-04 18:55:22 +020026#define MCG_STATUS_LMCES (1ULL<<3) /* LMCE signaled */
27
28/* MCG_EXT_CTL register defines */
29#define MCG_EXT_CTL_LMCE_EN (1ULL<<0) /* Enable LMCE */
Borislav Petkovf51bde62012-12-21 17:03:58 +010030
31/* MCi_STATUS register defines */
32#define MCI_STATUS_VAL (1ULL<<63) /* valid error */
33#define MCI_STATUS_OVER (1ULL<<62) /* previous errors lost */
34#define MCI_STATUS_UC (1ULL<<61) /* uncorrected error */
35#define MCI_STATUS_EN (1ULL<<60) /* error enabled */
36#define MCI_STATUS_MISCV (1ULL<<59) /* misc error reg. valid */
37#define MCI_STATUS_ADDRV (1ULL<<58) /* addr reg. valid */
38#define MCI_STATUS_PCC (1ULL<<57) /* processor context corrupt */
39#define MCI_STATUS_S (1ULL<<56) /* Signaled machine check */
40#define MCI_STATUS_AR (1ULL<<55) /* Action required */
Tony Luck0ca06c02013-07-24 13:54:20 -070041
Chen Yuconge3480272014-11-18 10:09:19 +080042/* AMD-specific bits */
43#define MCI_STATUS_DEFERRED (1ULL<<44) /* declare an uncorrected error */
44#define MCI_STATUS_POISON (1ULL<<43) /* access poisonous data */
45
Tony Luck0ca06c02013-07-24 13:54:20 -070046/*
47 * Note that the full MCACOD field of IA32_MCi_STATUS MSR is
48 * bits 15:0. But bit 12 is the 'F' bit, defined for corrected
49 * errors to indicate that errors are being filtered by hardware.
50 * We should mask out bit 12 when looking for specific signatures
51 * of uncorrected errors - so the F bit is deliberately skipped
52 * in this #define.
53 */
54#define MCACOD 0xefff /* MCA Error Code */
Borislav Petkovf51bde62012-12-21 17:03:58 +010055
56/* Architecturally defined codes from SDM Vol. 3B Chapter 15 */
57#define MCACOD_SCRUB 0x00C0 /* 0xC0-0xCF Memory Scrubbing */
Tony Luck0ca06c02013-07-24 13:54:20 -070058#define MCACOD_SCRUBMSK 0xeff0 /* Skip bit 12 ('F' bit) */
Borislav Petkovf51bde62012-12-21 17:03:58 +010059#define MCACOD_L3WB 0x017A /* L3 Explicit Writeback */
60#define MCACOD_DATA 0x0134 /* Data Load */
61#define MCACOD_INSTR 0x0150 /* Instruction Fetch */
62
63/* MCi_MISC register defines */
64#define MCI_MISC_ADDR_LSB(m) ((m) & 0x3f)
65#define MCI_MISC_ADDR_MODE(m) (((m) >> 6) & 7)
66#define MCI_MISC_ADDR_SEGOFF 0 /* segment offset */
67#define MCI_MISC_ADDR_LINEAR 1 /* linear address */
68#define MCI_MISC_ADDR_PHYS 2 /* physical address */
69#define MCI_MISC_ADDR_MEM 3 /* memory address */
70#define MCI_MISC_ADDR_GENERIC 7 /* generic */
71
72/* CTL2 register defines */
73#define MCI_CTL2_CMCI_EN (1ULL << 30)
74#define MCI_CTL2_CMCI_THRESHOLD_MASK 0x7fffULL
75
76#define MCJ_CTX_MASK 3
77#define MCJ_CTX(flags) ((flags) & MCJ_CTX_MASK)
78#define MCJ_CTX_RANDOM 0 /* inject context: random */
79#define MCJ_CTX_PROCESS 0x1 /* inject context: process */
80#define MCJ_CTX_IRQ 0x2 /* inject context: IRQ */
81#define MCJ_NMI_BROADCAST 0x4 /* do NMI broadcasting */
82#define MCJ_EXCEPTION 0x8 /* raise as exception */
Mathias Krausea9093682013-06-04 20:54:14 +020083#define MCJ_IRQ_BROADCAST 0x10 /* do IRQ broadcasting */
Borislav Petkovf51bde62012-12-21 17:03:58 +010084
85#define MCE_OVERFLOW 0 /* bit 0 in flags means overflow */
86
87/* Software defined banks */
88#define MCE_EXTENDED_BANK 128
89#define MCE_THERMAL_BANK (MCE_EXTENDED_BANK + 0)
Borislav Petkovf51bde62012-12-21 17:03:58 +010090
91#define MCE_LOG_LEN 32
92#define MCE_LOG_SIGNATURE "MACHINECHECK"
93
94/*
95 * This structure contains all data related to the MCE log. Also
96 * carries a signature to make it easier to find from external
97 * debugging tools. Each entry is only valid when its finished flag
98 * is set.
99 */
100struct mce_log {
101 char signature[12]; /* "MACHINECHECK" */
102 unsigned len; /* = MCE_LOG_LEN */
103 unsigned next;
104 unsigned flags;
105 unsigned recordlen; /* length of struct mce */
106 struct mce entry[MCE_LOG_LEN];
107};
Borislav Petkovd203f0b2012-10-15 18:03:57 +0200108
109struct mca_config {
110 bool dont_log_ce;
Borislav Petkov7af19e42012-10-15 20:25:17 +0200111 bool cmci_disabled;
Ashok Raj88d53862015-06-04 18:55:23 +0200112 bool lmce_disabled;
Borislav Petkov7af19e42012-10-15 20:25:17 +0200113 bool ignore_ce;
Borislav Petkov14625942012-10-17 12:05:33 +0200114 bool disabled;
115 bool ser;
Tony Luck0f68c082016-02-17 10:20:13 -0800116 bool recovery;
Borislav Petkov14625942012-10-17 12:05:33 +0200117 bool bios_cmci_threshold;
Borislav Petkovd203f0b2012-10-15 18:03:57 +0200118 u8 banks;
Borislav Petkov84c25592012-10-15 19:59:18 +0200119 s8 bootlog;
Borislav Petkovd203f0b2012-10-15 18:03:57 +0200120 int tolerant;
Borislav Petkov84c25592012-10-15 19:59:18 +0200121 int monarch_timeout;
Borislav Petkov7af19e42012-10-15 20:25:17 +0200122 int panic_timeout;
Borislav Petkov84c25592012-10-15 19:59:18 +0200123 u32 rip_msr;
Borislav Petkovd203f0b2012-10-15 18:03:57 +0200124};
125
Aravind Gopalakrishnanbf80bbd2015-03-23 10:42:52 -0500126struct mce_vendor_flags {
Aravind Gopalakrishnanc7f54d22015-10-30 13:11:37 +0100127 /*
128 * Indicates that overflow conditions are not fatal, when set.
129 */
130 __u64 overflow_recov : 1,
Aravind Gopalakrishnan7559e132015-05-06 06:58:55 -0500131
Aravind Gopalakrishnanc7f54d22015-10-30 13:11:37 +0100132 /*
133 * (AMD) SUCCOR stands for S/W UnCorrectable error COntainment and
134 * Recovery. It indicates support for data poisoning in HW and deferred
135 * error interrupts.
136 */
137 succor : 1,
138
139 /*
140 * (AMD) SMCA: This bit indicates support for Scalable MCA which expands
141 * the register space for each MCA bank and also increases number of
142 * banks. Also, to accommodate the new banks and registers, the MCA
143 * register space is moved to a new MSR range.
144 */
145 smca : 1,
146
147 __reserved_0 : 61;
Aravind Gopalakrishnanbf80bbd2015-03-23 10:42:52 -0500148};
149extern struct mce_vendor_flags mce_flags;
150
Borislav Petkov7af19e42012-10-15 20:25:17 +0200151extern struct mca_config mca_cfg;
Borislav Petkoveef4dfa2015-08-12 18:29:38 +0200152extern void mce_register_decode_chain(struct notifier_block *nb);
Borislav Petkov3653ada2011-12-04 15:12:09 +0100153extern void mce_unregister_decode_chain(struct notifier_block *nb);
Alan Coxdf39a2e2010-01-04 16:17:21 +0000154
Hidetoshi Seto9e55e442009-06-15 17:22:15 +0900155#include <linux/percpu.h>
Arun Sharma600634972011-07-26 16:09:06 -0700156#include <linux/atomic.h>
Hidetoshi Seto9e55e442009-06-15 17:22:15 +0900157
Hidetoshi Setoc6978362009-06-15 17:22:49 +0900158extern int mce_p5_enabled;
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200159
Hidetoshi Seto58995d22009-06-15 17:27:47 +0900160#ifdef CONFIG_X86_MCE
Yong Wanga2202aa2009-11-10 09:38:24 +0800161int mcheck_init(void);
Borislav Petkov5e099542009-10-16 12:31:32 +0200162void mcheck_cpu_init(struct cpuinfo_x86 *c);
Ashok Raj8838eb62015-08-12 18:29:40 +0200163void mcheck_cpu_clear(struct cpuinfo_x86 *c);
Aravind Gopalakrishnan43eaa2a2015-03-23 10:42:53 -0500164void mcheck_vendor_init_severity(void);
Hidetoshi Seto58995d22009-06-15 17:27:47 +0900165#else
Yong Wanga2202aa2009-11-10 09:38:24 +0800166static inline int mcheck_init(void) { return 0; }
Borislav Petkov5e099542009-10-16 12:31:32 +0200167static inline void mcheck_cpu_init(struct cpuinfo_x86 *c) {}
Ashok Raj8838eb62015-08-12 18:29:40 +0200168static inline void mcheck_cpu_clear(struct cpuinfo_x86 *c) {}
Aravind Gopalakrishnan43eaa2a2015-03-23 10:42:53 -0500169static inline void mcheck_vendor_init_severity(void) {}
Hidetoshi Seto58995d22009-06-15 17:27:47 +0900170#endif
171
Hidetoshi Seto9e55e442009-06-15 17:22:15 +0900172#ifdef CONFIG_X86_ANCIENT_MCE
173void intel_p5_mcheck_init(struct cpuinfo_x86 *c);
174void winchip_mcheck_init(struct cpuinfo_x86 *c);
Hidetoshi Setoc6978362009-06-15 17:22:49 +0900175static inline void enable_p5_mce(void) { mce_p5_enabled = 1; }
Hidetoshi Seto9e55e442009-06-15 17:22:15 +0900176#else
177static inline void intel_p5_mcheck_init(struct cpuinfo_x86 *c) {}
178static inline void winchip_mcheck_init(struct cpuinfo_x86 *c) {}
Hidetoshi Setoc6978362009-06-15 17:22:49 +0900179static inline void enable_p5_mce(void) {}
Hidetoshi Seto9e55e442009-06-15 17:22:15 +0900180#endif
181
Andi Kleenb5f2fa42009-02-12 13:43:22 +0100182void mce_setup(struct mce *m);
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200183void mce_log(struct mce *m);
Greg Kroah-Hartmand6126ef2012-01-26 15:49:14 -0800184DECLARE_PER_CPU(struct device *, mce_device);
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200185
Andi Kleen41fdff32009-02-12 13:49:30 +0100186/*
Andi Kleen3ccdccf2009-07-09 00:31:45 +0200187 * Maximum banks number.
188 * This is the limit of the current register layout on
189 * Intel CPUs.
Andi Kleen41fdff32009-02-12 13:49:30 +0100190 */
Andi Kleen3ccdccf2009-07-09 00:31:45 +0200191#define MAX_NR_BANKS 32
Andi Kleen41fdff32009-02-12 13:49:30 +0100192
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200193#ifdef CONFIG_X86_MCE_INTEL
194void mce_intel_feature_init(struct cpuinfo_x86 *c);
Ashok Raj8838eb62015-08-12 18:29:40 +0200195void mce_intel_feature_clear(struct cpuinfo_x86 *c);
Andi Kleen88ccbed2009-02-12 13:49:36 +0100196void cmci_clear(void);
197void cmci_reenable(void);
Srivatsa S. Bhat7a0c8192013-03-20 15:31:29 +0530198void cmci_rediscover(void);
Andi Kleen88ccbed2009-02-12 13:49:36 +0100199void cmci_recheck(void);
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200200#else
201static inline void mce_intel_feature_init(struct cpuinfo_x86 *c) { }
Ashok Raj8838eb62015-08-12 18:29:40 +0200202static inline void mce_intel_feature_clear(struct cpuinfo_x86 *c) { }
Andi Kleen88ccbed2009-02-12 13:49:36 +0100203static inline void cmci_clear(void) {}
204static inline void cmci_reenable(void) {}
Srivatsa S. Bhat7a0c8192013-03-20 15:31:29 +0530205static inline void cmci_rediscover(void) {}
Andi Kleen88ccbed2009-02-12 13:49:36 +0100206static inline void cmci_recheck(void) {}
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200207#endif
208
209#ifdef CONFIG_X86_MCE_AMD
210void mce_amd_feature_init(struct cpuinfo_x86 *c);
211#else
212static inline void mce_amd_feature_init(struct cpuinfo_x86 *c) { }
213#endif
214
H. Peter Anvin38736072009-05-28 10:05:33 -0700215int mce_available(struct cpuinfo_x86 *c);
Andi Kleen88ccbed2009-02-12 13:49:36 +0100216
Andi Kleen01ca79f2009-05-27 21:56:52 +0200217DECLARE_PER_CPU(unsigned, mce_exception_count);
Andi Kleenca84f692009-05-27 21:56:57 +0200218DECLARE_PER_CPU(unsigned, mce_poll_count);
Andi Kleen01ca79f2009-05-27 21:56:52 +0200219
Andi Kleenee031c32009-02-12 13:49:34 +0100220typedef DECLARE_BITMAP(mce_banks_t, MAX_NR_BANKS);
221DECLARE_PER_CPU(mce_banks_t, mce_poll_banks);
222
Andi Kleenb79109c2009-02-12 13:43:23 +0100223enum mcp_flags {
Borislav Petkov3f2f0682015-01-13 15:08:51 +0100224 MCP_TIMESTAMP = BIT(0), /* log time stamp */
225 MCP_UC = BIT(1), /* log uncorrected errors */
226 MCP_DONTLOG = BIT(2), /* only clear, don't log */
Andi Kleenb79109c2009-02-12 13:43:23 +0100227};
Borislav Petkov3f2f0682015-01-13 15:08:51 +0100228bool machine_check_poll(enum mcp_flags flags, mce_banks_t *b);
Andi Kleenb79109c2009-02-12 13:43:23 +0100229
Andi Kleen9ff36ee2009-05-27 21:56:58 +0200230int mce_notify_irq(void);
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200231
Andi Kleenea149b32009-04-29 19:31:00 +0200232DECLARE_PER_CPU(struct mce, injectm);
Luck, Tony66f5ddf2011-11-03 11:46:47 -0700233
234extern void register_mce_write_callback(ssize_t (*)(struct file *filp,
235 const char __user *ubuf,
236 size_t usize, loff_t *off));
Andi Kleenea149b32009-04-29 19:31:00 +0200237
Naveen N. Raoc3d1fb52013-07-01 21:08:47 +0530238/* Disable CMCI/polling for MCA bank claimed by firmware */
239extern void mce_disable_bank(int bank);
240
Hidetoshi Seto58995d22009-06-15 17:27:47 +0900241/*
242 * Exception handler
243 */
244
245/* Call the installed machine check handler for this CPU setup. */
246extern void (*machine_check_vector)(struct pt_regs *, long error_code);
247void do_machine_check(struct pt_regs *, long);
248
249/*
250 * Threshold handler
251 */
Thomas Gleixnere2f43022007-10-17 18:04:40 +0200252
Andi Kleenb2762682009-02-12 13:49:31 +0100253extern void (*mce_threshold_vector)(void);
Hidetoshi Seto58995d22009-06-15 17:27:47 +0900254extern void (*threshold_cpu_callback)(unsigned long action, unsigned int cpu);
Andi Kleenb2762682009-02-12 13:49:31 +0100255
Aravind Gopalakrishnan24fd78a2015-05-06 06:58:56 -0500256/* Deferred error interrupt handler */
257extern void (*deferred_error_int_vector)(void);
258
Hidetoshi Setoe8ce2c52009-06-15 17:24:40 +0900259/*
260 * Thermal handler
261 */
262
Hidetoshi Setoe8ce2c52009-06-15 17:24:40 +0900263void intel_init_thermal(struct cpuinfo_x86 *c);
264
Hidetoshi Setoe8ce2c52009-06-15 17:24:40 +0900265void mce_log_therm_throt_event(__u64 status);
Yong Wanga2202aa2009-11-10 09:38:24 +0800266
R, Durgadoss9e76a972011-01-03 17:22:04 +0530267/* Interrupt Handler for core thermal thresholds */
268extern int (*platform_thermal_notify)(__u64 msr_val);
269
Srinivas Pandruvada25cdce12013-05-17 23:42:01 +0000270/* Interrupt Handler for package thermal thresholds */
271extern int (*platform_thermal_package_notify)(__u64 msr_val);
272
273/* Callback support of rate control, return true, if
274 * callback has rate control */
275extern bool (*platform_thermal_package_rate_control)(void);
276
Yong Wanga2202aa2009-11-10 09:38:24 +0800277#ifdef CONFIG_X86_THERMAL_VECTOR
278extern void mcheck_intel_therm_init(void);
279#else
280static inline void mcheck_intel_therm_init(void) { }
281#endif
282
Huang Yingd334a492010-05-18 14:35:20 +0800283/*
284 * Used by APEI to report memory error via /dev/mcelog
285 */
286
287struct cper_sec_mem_err;
288extern void apei_mce_report_mem_error(int corrected,
289 struct cper_sec_mem_err *mem_err);
290
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700291#endif /* _ASM_X86_MCE_H */