Merge tag 'sunxi-dt-for-3.17-2' of git://git.kernel.org/pub/scm/linux/kernel/git...
[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 */
f51bde6f
BP
20
21/* MCG_STATUS register defines */
22#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 */
25
26/* MCi_STATUS register defines */
27#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 */
34#define MCI_STATUS_S (1ULL<<56) /* Signaled machine check */
35#define MCI_STATUS_AR (1ULL<<55) /* Action required */
0ca06c08
TL
36
37/*
38 * Note that the full MCACOD field of IA32_MCi_STATUS MSR is
39 * bits 15:0. But bit 12 is the 'F' bit, defined for corrected
40 * errors to indicate that errors are being filtered by hardware.
41 * We should mask out bit 12 when looking for specific signatures
42 * of uncorrected errors - so the F bit is deliberately skipped
43 * in this #define.
44 */
45#define MCACOD 0xefff /* MCA Error Code */
f51bde6f
BP
46
47/* Architecturally defined codes from SDM Vol. 3B Chapter 15 */
48#define MCACOD_SCRUB 0x00C0 /* 0xC0-0xCF Memory Scrubbing */
0ca06c08 49#define MCACOD_SCRUBMSK 0xeff0 /* Skip bit 12 ('F' bit) */
f51bde6f
BP
50#define MCACOD_L3WB 0x017A /* L3 Explicit Writeback */
51#define MCACOD_DATA 0x0134 /* Data Load */
52#define MCACOD_INSTR 0x0150 /* Instruction Fetch */
53
54/* MCi_MISC register defines */
55#define MCI_MISC_ADDR_LSB(m) ((m) & 0x3f)
56#define MCI_MISC_ADDR_MODE(m) (((m) >> 6) & 7)
57#define MCI_MISC_ADDR_SEGOFF 0 /* segment offset */
58#define MCI_MISC_ADDR_LINEAR 1 /* linear address */
59#define MCI_MISC_ADDR_PHYS 2 /* physical address */
60#define MCI_MISC_ADDR_MEM 3 /* memory address */
61#define MCI_MISC_ADDR_GENERIC 7 /* generic */
62
63/* CTL2 register defines */
64#define MCI_CTL2_CMCI_EN (1ULL << 30)
65#define MCI_CTL2_CMCI_THRESHOLD_MASK 0x7fffULL
66
67#define MCJ_CTX_MASK 3
68#define MCJ_CTX(flags) ((flags) & MCJ_CTX_MASK)
69#define MCJ_CTX_RANDOM 0 /* inject context: random */
70#define MCJ_CTX_PROCESS 0x1 /* inject context: process */
71#define MCJ_CTX_IRQ 0x2 /* inject context: IRQ */
72#define MCJ_NMI_BROADCAST 0x4 /* do NMI broadcasting */
73#define MCJ_EXCEPTION 0x8 /* raise as exception */
a9093684 74#define MCJ_IRQ_BROADCAST 0x10 /* do IRQ broadcasting */
f51bde6f
BP
75
76#define MCE_OVERFLOW 0 /* bit 0 in flags means overflow */
77
78/* Software defined banks */
79#define MCE_EXTENDED_BANK 128
80#define MCE_THERMAL_BANK (MCE_EXTENDED_BANK + 0)
81#define K8_MCE_THRESHOLD_BASE (MCE_EXTENDED_BANK + 1)
82
83#define MCE_LOG_LEN 32
84#define MCE_LOG_SIGNATURE "MACHINECHECK"
85
86/*
87 * This structure contains all data related to the MCE log. Also
88 * carries a signature to make it easier to find from external
89 * debugging tools. Each entry is only valid when its finished flag
90 * is set.
91 */
92struct mce_log {
93 char signature[12]; /* "MACHINECHECK" */
94 unsigned len; /* = MCE_LOG_LEN */
95 unsigned next;
96 unsigned flags;
97 unsigned recordlen; /* length of struct mce */
98 struct mce entry[MCE_LOG_LEN];
99};
d203f0b8
BP
100
101struct mca_config {
102 bool dont_log_ce;
7af19e4a
BP
103 bool cmci_disabled;
104 bool ignore_ce;
1462594b
BP
105 bool disabled;
106 bool ser;
107 bool bios_cmci_threshold;
d203f0b8 108 u8 banks;
84c2559d 109 s8 bootlog;
d203f0b8 110 int tolerant;
84c2559d 111 int monarch_timeout;
7af19e4a 112 int panic_timeout;
84c2559d 113 u32 rip_msr;
d203f0b8
BP
114};
115
7af19e4a 116extern struct mca_config mca_cfg;
3653ada5
BP
117extern void mce_register_decode_chain(struct notifier_block *nb);
118extern void mce_unregister_decode_chain(struct notifier_block *nb);
df39a2e4 119
9e55e44e 120#include <linux/percpu.h>
60063497 121#include <linux/atomic.h>
9e55e44e 122
c6978369 123extern int mce_p5_enabled;
e2f43029 124
58995d2d 125#ifdef CONFIG_X86_MCE
a2202aa2 126int mcheck_init(void);
5e09954a 127void mcheck_cpu_init(struct cpuinfo_x86 *c);
58995d2d 128#else
a2202aa2 129static inline int mcheck_init(void) { return 0; }
5e09954a 130static inline void mcheck_cpu_init(struct cpuinfo_x86 *c) {}
58995d2d
HS
131#endif
132
9e55e44e
HS
133#ifdef CONFIG_X86_ANCIENT_MCE
134void intel_p5_mcheck_init(struct cpuinfo_x86 *c);
135void winchip_mcheck_init(struct cpuinfo_x86 *c);
c6978369 136static inline void enable_p5_mce(void) { mce_p5_enabled = 1; }
9e55e44e
HS
137#else
138static inline void intel_p5_mcheck_init(struct cpuinfo_x86 *c) {}
139static inline void winchip_mcheck_init(struct cpuinfo_x86 *c) {}
c6978369 140static inline void enable_p5_mce(void) {}
9e55e44e
HS
141#endif
142
b5f2fa4e 143void mce_setup(struct mce *m);
e2f43029 144void mce_log(struct mce *m);
d6126ef5 145DECLARE_PER_CPU(struct device *, mce_device);
e2f43029 146
41fdff32 147/*
3ccdccfa
AK
148 * Maximum banks number.
149 * This is the limit of the current register layout on
150 * Intel CPUs.
41fdff32 151 */
3ccdccfa 152#define MAX_NR_BANKS 32
41fdff32 153
e2f43029
TG
154#ifdef CONFIG_X86_MCE_INTEL
155void mce_intel_feature_init(struct cpuinfo_x86 *c);
88ccbedd
AK
156void cmci_clear(void);
157void cmci_reenable(void);
7a0c819d 158void cmci_rediscover(void);
88ccbedd 159void cmci_recheck(void);
e2f43029
TG
160#else
161static inline void mce_intel_feature_init(struct cpuinfo_x86 *c) { }
88ccbedd
AK
162static inline void cmci_clear(void) {}
163static inline void cmci_reenable(void) {}
7a0c819d 164static inline void cmci_rediscover(void) {}
88ccbedd 165static inline void cmci_recheck(void) {}
e2f43029
TG
166#endif
167
168#ifdef CONFIG_X86_MCE_AMD
169void mce_amd_feature_init(struct cpuinfo_x86 *c);
170#else
171static inline void mce_amd_feature_init(struct cpuinfo_x86 *c) { }
172#endif
173
38736072 174int mce_available(struct cpuinfo_x86 *c);
88ccbedd 175
01ca79f1 176DECLARE_PER_CPU(unsigned, mce_exception_count);
ca84f696 177DECLARE_PER_CPU(unsigned, mce_poll_count);
01ca79f1 178
ee031c31
AK
179typedef DECLARE_BITMAP(mce_banks_t, MAX_NR_BANKS);
180DECLARE_PER_CPU(mce_banks_t, mce_poll_banks);
181
b79109c3
AK
182enum mcp_flags {
183 MCP_TIMESTAMP = (1 << 0), /* log time stamp */
184 MCP_UC = (1 << 1), /* log uncorrected errors */
5679af4c 185 MCP_DONTLOG = (1 << 2), /* only clear, don't log */
b79109c3 186};
38736072 187void machine_check_poll(enum mcp_flags flags, mce_banks_t *b);
b79109c3 188
9ff36ee9 189int mce_notify_irq(void);
9b1beaf2 190void mce_notify_process(void);
e2f43029 191
ea149b36 192DECLARE_PER_CPU(struct mce, injectm);
66f5ddf3
LT
193
194extern void register_mce_write_callback(ssize_t (*)(struct file *filp,
195 const char __user *ubuf,
196 size_t usize, loff_t *off));
ea149b36 197
c3d1fb56
NR
198/* Disable CMCI/polling for MCA bank claimed by firmware */
199extern void mce_disable_bank(int bank);
200
58995d2d
HS
201/*
202 * Exception handler
203 */
204
205/* Call the installed machine check handler for this CPU setup. */
206extern void (*machine_check_vector)(struct pt_regs *, long error_code);
207void do_machine_check(struct pt_regs *, long);
208
209/*
210 * Threshold handler
211 */
e2f43029 212
b2762686 213extern void (*mce_threshold_vector)(void);
58995d2d 214extern void (*threshold_cpu_callback)(unsigned long action, unsigned int cpu);
b2762686 215
e8ce2c5e
HS
216/*
217 * Thermal handler
218 */
219
e8ce2c5e
HS
220void intel_init_thermal(struct cpuinfo_x86 *c);
221
e8ce2c5e 222void mce_log_therm_throt_event(__u64 status);
a2202aa2 223
9e76a97e
D
224/* Interrupt Handler for core thermal thresholds */
225extern int (*platform_thermal_notify)(__u64 msr_val);
226
25cdce17
SP
227/* Interrupt Handler for package thermal thresholds */
228extern int (*platform_thermal_package_notify)(__u64 msr_val);
229
230/* Callback support of rate control, return true, if
231 * callback has rate control */
232extern bool (*platform_thermal_package_rate_control)(void);
233
a2202aa2
YW
234#ifdef CONFIG_X86_THERMAL_VECTOR
235extern void mcheck_intel_therm_init(void);
236#else
237static inline void mcheck_intel_therm_init(void) { }
238#endif
239
d334a491
HY
240/*
241 * Used by APEI to report memory error via /dev/mcelog
242 */
243
244struct cper_sec_mem_err;
245extern void apei_mce_report_mem_error(int corrected,
246 struct cper_sec_mem_err *mem_err);
247
1965aae3 248#endif /* _ASM_X86_MCE_H */
This page took 0.447929 seconds and 5 git commands to generate.