Merge tag 'v4.3-rc2' into topic/drm-misc
[deliverable/linux.git] / arch / x86 / include / asm / mce.h
CommitLineData
1965aae3
PA
1#ifndef _ASM_X86_MCE_H
2#define _ASM_X86_MCE_H
e2f43029 3
af170c50 4#include <uapi/asm/mce.h>
e2f43029 5
f51bde6f
BP
6/*
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 */
4b3db708 19#define MCG_ELOG_P (1ULL<<26) /* Extended error log supported */
bc12edb8 20#define MCG_LMCE_P (1ULL<<27) /* Local machine check supported */
f51bde6f
BP
21
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 */
bc12edb8
AR
26#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 */
f51bde6f
BP
30
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 */
0ca06c08 41
e3480271
CY
42/* 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
0ca06c08
TL
46/*
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 */
f51bde6f
BP
55
56/* Architecturally defined codes from SDM Vol. 3B Chapter 15 */
57#define MCACOD_SCRUB 0x00C0 /* 0xC0-0xCF Memory Scrubbing */
0ca06c08 58#define MCACOD_SCRUBMSK 0xeff0 /* Skip bit 12 ('F' bit) */
f51bde6f
BP
59#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 */
a9093684 83#define MCJ_IRQ_BROADCAST 0x10 /* do IRQ broadcasting */
f51bde6f
BP
84
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)
f51bde6f
BP
90
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};
d203f0b8
BP
108
109struct mca_config {
110 bool dont_log_ce;
7af19e4a 111 bool cmci_disabled;
88d53867 112 bool lmce_disabled;
7af19e4a 113 bool ignore_ce;
1462594b
BP
114 bool disabled;
115 bool ser;
116 bool bios_cmci_threshold;
d203f0b8 117 u8 banks;
84c2559d 118 s8 bootlog;
d203f0b8 119 int tolerant;
84c2559d 120 int monarch_timeout;
7af19e4a 121 int panic_timeout;
84c2559d 122 u32 rip_msr;
d203f0b8
BP
123};
124
bf80bbd7 125struct mce_vendor_flags {
7559e13f
AG
126 /*
127 * overflow recovery cpuid bit indicates that overflow
128 * conditions are not fatal
129 */
130 __u64 overflow_recov : 1,
131
132 /*
133 * SUCCOR stands for S/W UnCorrectable error COntainment
134 * and Recovery. It indicates support for data poisoning
135 * in HW and deferred error interrupts.
136 */
137 succor : 1,
138 __reserved_0 : 62;
bf80bbd7
AG
139};
140extern struct mce_vendor_flags mce_flags;
141
7af19e4a 142extern struct mca_config mca_cfg;
eef4dfa0 143extern void mce_register_decode_chain(struct notifier_block *nb);
3653ada5 144extern void mce_unregister_decode_chain(struct notifier_block *nb);
df39a2e4 145
9e55e44e 146#include <linux/percpu.h>
60063497 147#include <linux/atomic.h>
9e55e44e 148
c6978369 149extern int mce_p5_enabled;
e2f43029 150
58995d2d 151#ifdef CONFIG_X86_MCE
a2202aa2 152int mcheck_init(void);
5e09954a 153void mcheck_cpu_init(struct cpuinfo_x86 *c);
8838eb6c 154void mcheck_cpu_clear(struct cpuinfo_x86 *c);
43eaa2a1 155void mcheck_vendor_init_severity(void);
58995d2d 156#else
a2202aa2 157static inline int mcheck_init(void) { return 0; }
5e09954a 158static inline void mcheck_cpu_init(struct cpuinfo_x86 *c) {}
8838eb6c 159static inline void mcheck_cpu_clear(struct cpuinfo_x86 *c) {}
43eaa2a1 160static inline void mcheck_vendor_init_severity(void) {}
58995d2d
HS
161#endif
162
9e55e44e
HS
163#ifdef CONFIG_X86_ANCIENT_MCE
164void intel_p5_mcheck_init(struct cpuinfo_x86 *c);
165void winchip_mcheck_init(struct cpuinfo_x86 *c);
c6978369 166static inline void enable_p5_mce(void) { mce_p5_enabled = 1; }
9e55e44e
HS
167#else
168static inline void intel_p5_mcheck_init(struct cpuinfo_x86 *c) {}
169static inline void winchip_mcheck_init(struct cpuinfo_x86 *c) {}
c6978369 170static inline void enable_p5_mce(void) {}
9e55e44e
HS
171#endif
172
b5f2fa4e 173void mce_setup(struct mce *m);
e2f43029 174void mce_log(struct mce *m);
d6126ef5 175DECLARE_PER_CPU(struct device *, mce_device);
e2f43029 176
41fdff32 177/*
3ccdccfa
AK
178 * Maximum banks number.
179 * This is the limit of the current register layout on
180 * Intel CPUs.
41fdff32 181 */
3ccdccfa 182#define MAX_NR_BANKS 32
41fdff32 183
e2f43029
TG
184#ifdef CONFIG_X86_MCE_INTEL
185void mce_intel_feature_init(struct cpuinfo_x86 *c);
8838eb6c 186void mce_intel_feature_clear(struct cpuinfo_x86 *c);
88ccbedd
AK
187void cmci_clear(void);
188void cmci_reenable(void);
7a0c819d 189void cmci_rediscover(void);
88ccbedd 190void cmci_recheck(void);
e2f43029
TG
191#else
192static inline void mce_intel_feature_init(struct cpuinfo_x86 *c) { }
8838eb6c 193static inline void mce_intel_feature_clear(struct cpuinfo_x86 *c) { }
88ccbedd
AK
194static inline void cmci_clear(void) {}
195static inline void cmci_reenable(void) {}
7a0c819d 196static inline void cmci_rediscover(void) {}
88ccbedd 197static inline void cmci_recheck(void) {}
e2f43029
TG
198#endif
199
200#ifdef CONFIG_X86_MCE_AMD
201void mce_amd_feature_init(struct cpuinfo_x86 *c);
202#else
203static inline void mce_amd_feature_init(struct cpuinfo_x86 *c) { }
204#endif
205
38736072 206int mce_available(struct cpuinfo_x86 *c);
88ccbedd 207
01ca79f1 208DECLARE_PER_CPU(unsigned, mce_exception_count);
ca84f696 209DECLARE_PER_CPU(unsigned, mce_poll_count);
01ca79f1 210
ee031c31
AK
211typedef DECLARE_BITMAP(mce_banks_t, MAX_NR_BANKS);
212DECLARE_PER_CPU(mce_banks_t, mce_poll_banks);
213
b79109c3 214enum mcp_flags {
3f2f0680
BP
215 MCP_TIMESTAMP = BIT(0), /* log time stamp */
216 MCP_UC = BIT(1), /* log uncorrected errors */
217 MCP_DONTLOG = BIT(2), /* only clear, don't log */
b79109c3 218};
3f2f0680 219bool machine_check_poll(enum mcp_flags flags, mce_banks_t *b);
b79109c3 220
9ff36ee9 221int mce_notify_irq(void);
e2f43029 222
ea149b36 223DECLARE_PER_CPU(struct mce, injectm);
66f5ddf3
LT
224
225extern void register_mce_write_callback(ssize_t (*)(struct file *filp,
226 const char __user *ubuf,
227 size_t usize, loff_t *off));
ea149b36 228
c3d1fb56
NR
229/* Disable CMCI/polling for MCA bank claimed by firmware */
230extern void mce_disable_bank(int bank);
231
58995d2d
HS
232/*
233 * Exception handler
234 */
235
236/* Call the installed machine check handler for this CPU setup. */
237extern void (*machine_check_vector)(struct pt_regs *, long error_code);
238void do_machine_check(struct pt_regs *, long);
239
240/*
241 * Threshold handler
242 */
e2f43029 243
b2762686 244extern void (*mce_threshold_vector)(void);
58995d2d 245extern void (*threshold_cpu_callback)(unsigned long action, unsigned int cpu);
b2762686 246
24fd78a8
AG
247/* Deferred error interrupt handler */
248extern void (*deferred_error_int_vector)(void);
249
e8ce2c5e
HS
250/*
251 * Thermal handler
252 */
253
e8ce2c5e
HS
254void intel_init_thermal(struct cpuinfo_x86 *c);
255
e8ce2c5e 256void mce_log_therm_throt_event(__u64 status);
a2202aa2 257
9e76a97e
D
258/* Interrupt Handler for core thermal thresholds */
259extern int (*platform_thermal_notify)(__u64 msr_val);
260
25cdce17
SP
261/* Interrupt Handler for package thermal thresholds */
262extern int (*platform_thermal_package_notify)(__u64 msr_val);
263
264/* Callback support of rate control, return true, if
265 * callback has rate control */
266extern bool (*platform_thermal_package_rate_control)(void);
267
a2202aa2
YW
268#ifdef CONFIG_X86_THERMAL_VECTOR
269extern void mcheck_intel_therm_init(void);
270#else
271static inline void mcheck_intel_therm_init(void) { }
272#endif
273
d334a491
HY
274/*
275 * Used by APEI to report memory error via /dev/mcelog
276 */
277
278struct cper_sec_mem_err;
279extern void apei_mce_report_mem_error(int corrected,
280 struct cper_sec_mem_err *mem_err);
281
1965aae3 282#endif /* _ASM_X86_MCE_H */
This page took 0.629962 seconds and 5 git commands to generate.