blob: 79d8ec849468e70ab42d7f5bfc19497578208a79 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Machine check handler.
Ingo Molnare9eee032009-04-08 12:31:17 +02003 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * K8 parts Copyright 2002,2003 Andi Kleen, SuSE Labs.
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02005 * Rest from unknown author(s).
6 * 2004 Andi Kleen. Rewrote most of it.
Andi Kleenb79109c2009-02-12 13:43:23 +01007 * Copyright 2008 Intel Corporation
8 * Author: Andi Kleen
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 */
Joe Perchesc767a542012-05-21 19:50:07 -070010
11#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
12
Tim Hockine02e68d2007-07-21 17:10:36 +020013#include <linux/thread_info.h>
Ingo Molnare9eee032009-04-08 12:31:17 +020014#include <linux/capability.h>
15#include <linux/miscdevice.h>
Andi Kleen8457c842009-02-12 13:49:33 +010016#include <linux/ratelimit.h>
Ingo Molnare9eee032009-04-08 12:31:17 +020017#include <linux/kallsyms.h>
18#include <linux/rcupdate.h>
Ingo Molnare9eee032009-04-08 12:31:17 +020019#include <linux/kobject.h>
Hidetoshi Seto14a02532009-04-30 16:04:51 +090020#include <linux/uaccess.h>
Ingo Molnare9eee032009-04-08 12:31:17 +020021#include <linux/kdebug.h>
22#include <linux/kernel.h>
23#include <linux/percpu.h>
24#include <linux/string.h>
Kay Sievers8a25a2f2011-12-21 14:29:42 -080025#include <linux/device.h>
Rafael J. Wysockif3c6ea12011-03-23 22:15:54 +010026#include <linux/syscore_ops.h>
Andi Kleen3c079792009-05-27 21:56:55 +020027#include <linux/delay.h>
Ingo Molnare9eee032009-04-08 12:31:17 +020028#include <linux/ctype.h>
29#include <linux/sched.h>
30#include <linux/sysfs.h>
31#include <linux/types.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090032#include <linux/slab.h>
Ingo Molnare9eee032009-04-08 12:31:17 +020033#include <linux/init.h>
34#include <linux/kmod.h>
35#include <linux/poll.h>
Andi Kleen3c079792009-05-27 21:56:55 +020036#include <linux/nmi.h>
Ingo Molnare9eee032009-04-08 12:31:17 +020037#include <linux/cpu.h>
Hidetoshi Seto14a02532009-04-30 16:04:51 +090038#include <linux/smp.h>
Ingo Molnare9eee032009-04-08 12:31:17 +020039#include <linux/fs.h>
Andi Kleen9b1beaf2009-05-27 21:56:59 +020040#include <linux/mm.h>
Huang Ying5be9ed22009-07-31 09:41:42 +080041#include <linux/debugfs.h>
Hidetoshi Setob77e70b2011-06-08 10:56:02 +090042#include <linux/irq_work.h>
Paul Gortmaker69c60c82011-05-26 12:22:53 -040043#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Ingo Molnare9eee032009-04-08 12:31:17 +020045#include <asm/processor.h>
Andy Lutomirski95927472014-11-19 17:41:09 -080046#include <asm/traps.h>
Andy Lutomirski375074c2014-10-24 15:58:07 -070047#include <asm/tlbflush.h>
Ingo Molnare9eee032009-04-08 12:31:17 +020048#include <asm/mce.h>
49#include <asm/msr.h>
Ingo Molnare9eee032009-04-08 12:31:17 +020050
Andi Kleenbd19a5e2009-05-27 21:56:55 +020051#include "mce-internal.h"
Ingo Molnar711c2e42009-04-08 12:31:26 +020052
Hidetoshi Seto93b62c32011-06-08 11:00:45 +090053static DEFINE_MUTEX(mce_chrdev_read_mutex);
Ingo Molnar2aa2b502010-03-14 08:57:03 +010054
Borislav Petkov9a7783d2015-08-12 18:29:43 +020055#define mce_log_get_idx_check(p) \
Paul E. McKenneye90328b2015-04-19 18:16:02 -070056({ \
Paul E. McKenneyf78f5b92015-06-18 15:50:02 -070057 RCU_LOCKDEP_WARN(!rcu_read_lock_sched_held() && \
58 !lockdep_is_held(&mce_chrdev_read_mutex), \
Linus Torvalds3959df1d2015-08-31 20:20:30 -070059 "suspicious mce_log_get_idx_check() usage"); \
Paul E. McKenneye90328b2015-04-19 18:16:02 -070060 smp_load_acquire(&(p)); \
61})
Paul E. McKenneyf56e8a02010-03-05 15:03:27 -080062
Hidetoshi Seto8968f9d2009-10-13 16:19:41 +090063#define CREATE_TRACE_POINTS
64#include <trace/events/mce.h>
65
Borislav Petkov3f2f0682015-01-13 15:08:51 +010066#define SPINUNIT 100 /* 100ns */
Andi Kleen3c079792009-05-27 21:56:55 +020067
Andi Kleen01ca79f2009-05-27 21:56:52 +020068DEFINE_PER_CPU(unsigned, mce_exception_count);
69
Borislav Petkov14625942012-10-17 12:05:33 +020070struct mce_bank *mce_banks __read_mostly;
Aravind Gopalakrishnanbf80bbd2015-03-23 10:42:52 -050071struct mce_vendor_flags mce_flags __read_mostly;
Andi Kleencebe1822009-07-09 00:31:43 +020072
Borislav Petkovd203f0b2012-10-15 18:03:57 +020073struct mca_config mca_cfg __read_mostly = {
Borislav Petkov84c25592012-10-15 19:59:18 +020074 .bootlog = -1,
Borislav Petkovd203f0b2012-10-15 18:03:57 +020075 /*
76 * Tolerant levels:
77 * 0: always panic on uncorrected errors, log corrected errors
78 * 1: panic or SIGBUS on uncorrected errors, log corrected errors
79 * 2: SIGBUS or log uncorrected errors (if possible), log corr. errors
80 * 3: never panic or SIGBUS, log all errors (for testing only)
81 */
Borislav Petkov84c25592012-10-15 19:59:18 +020082 .tolerant = 1,
83 .monarch_timeout = -1
Borislav Petkovd203f0b2012-10-15 18:03:57 +020084};
85
Hidetoshi Seto1020bcb2009-06-15 17:20:57 +090086/* User mode helper program triggered by machine check event */
87static unsigned long mce_need_notify;
88static char mce_helper[128];
89static char *mce_helper_argv[2] = { mce_helper, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Hidetoshi Seto93b62c32011-06-08 11:00:45 +090091static DECLARE_WAIT_QUEUE_HEAD(mce_chrdev_wait);
92
Andi Kleen3c079792009-05-27 21:56:55 +020093static DEFINE_PER_CPU(struct mce, mces_seen);
94static int cpu_missing;
95
Naveen N. Rao06444142013-06-25 23:58:59 +053096/*
97 * MCA banks polled by the period polling timer for corrected events.
98 * With Intel CMCI, this only has MCA banks which do not support CMCI (if any).
99 */
Andi Kleenee031c32009-02-12 13:49:34 +0100100DEFINE_PER_CPU(mce_banks_t, mce_poll_banks) = {
101 [0 ... BITS_TO_LONGS(MAX_NR_BANKS)-1] = ~0UL
102};
103
Naveen N. Raoc3d1fb52013-07-01 21:08:47 +0530104/*
105 * MCA banks controlled through firmware first for corrected errors.
106 * This is a global list of banks for which we won't enable CMCI and we
107 * won't poll. Firmware controls these banks and is responsible for
108 * reporting corrected errors through GHES. Uncorrected/recoverable
109 * errors are still notified through a machine check.
110 */
111mce_banks_t mce_banks_ce_disabled;
112
Chen, Gong061120a2015-08-12 18:29:35 +0200113static struct work_struct mce_work;
114static struct irq_work mce_irq_work;
Andi Kleen9b1beaf2009-05-27 21:56:59 +0200115
Tony Luck61b0fcc2012-07-19 11:28:46 -0700116static void (*quirk_no_way_out)(int bank, struct mce *m, struct pt_regs *regs);
117
Borislav Petkov3653ada2011-12-04 15:12:09 +0100118/*
119 * CPU/chipset specific EDAC code can register a notifier call here to print
120 * MCE errors in a human-readable form.
121 */
Chen, Gong648ed942015-08-12 18:29:34 +0200122ATOMIC_NOTIFIER_HEAD(x86_mce_decoder_chain);
Borislav Petkov3653ada2011-12-04 15:12:09 +0100123
Andi Kleenb5f2fa42009-02-12 13:43:22 +0100124/* Do initial initialization of a struct mce */
125void mce_setup(struct mce *m)
126{
127 memset(m, 0, sizeof(struct mce));
Andi Kleend620c672009-05-27 21:56:56 +0200128 m->cpu = m->extcpu = smp_processor_id();
Andy Lutomirski4ea16362015-06-25 18:44:07 +0200129 m->tsc = rdtsc();
Andi Kleen8ee08342009-05-27 21:56:56 +0200130 /* We hope get_seconds stays lockless */
131 m->time = get_seconds();
132 m->cpuvendor = boot_cpu_data.x86_vendor;
133 m->cpuid = cpuid_eax(1);
Andi Kleen8ee08342009-05-27 21:56:56 +0200134 m->socketid = cpu_data(m->extcpu).phys_proc_id;
Andi Kleen8ee08342009-05-27 21:56:56 +0200135 m->apicid = cpu_data(m->extcpu).initial_apicid;
136 rdmsrl(MSR_IA32_MCG_CAP, m->mcgcap);
Andi Kleenb5f2fa42009-02-12 13:43:22 +0100137}
138
Andi Kleenea149b32009-04-29 19:31:00 +0200139DEFINE_PER_CPU(struct mce, injectm);
140EXPORT_PER_CPU_SYMBOL_GPL(injectm);
141
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142/*
143 * Lockless MCE logging infrastructure.
144 * This avoids deadlocks on printk locks without having to break locks. Also
145 * separate MCEs from kernel messages to avoid bogus bug reports.
146 */
147
Adrian Bunk231fd902008-01-30 13:30:30 +0100148static struct mce_log mcelog = {
Andi Kleenf6fb0ac2009-05-27 21:56:55 +0200149 .signature = MCE_LOG_SIGNATURE,
150 .len = MCE_LOG_LEN,
151 .recordlen = sizeof(struct mce),
Thomas Gleixnerd88203d2007-10-23 22:37:23 +0200152};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
154void mce_log(struct mce *mce)
155{
156 unsigned next, entry;
Ingo Molnare9eee032009-04-08 12:31:17 +0200157
Hidetoshi Seto8968f9d2009-10-13 16:19:41 +0900158 /* Emit the trace record: */
159 trace_mce_record(mce);
160
Chen, Gongf29a7af2015-08-12 18:29:37 +0200161 if (!mce_gen_pool_add(mce))
162 irq_work_queue(&mce_irq_work);
Borislav Petkovf0cb5452011-07-18 11:24:45 -0300163
Mike Waychison76441432005-09-30 00:01:27 +0200164 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 for (;;) {
Borislav Petkov9a7783d2015-08-12 18:29:43 +0200166 entry = mce_log_get_idx_check(mcelog.next);
Andi Kleen673242c2005-09-12 18:49:24 +0200167 for (;;) {
Mauro Carvalho Chehab696e4092009-07-23 06:57:45 -0300168
169 /*
Ingo Molnare9eee032009-04-08 12:31:17 +0200170 * When the buffer fills up discard new entries.
171 * Assume that the earlier errors are the more
172 * interesting ones:
173 */
Andi Kleen673242c2005-09-12 18:49:24 +0200174 if (entry >= MCE_LOG_LEN) {
Hidetoshi Seto14a02532009-04-30 16:04:51 +0900175 set_bit(MCE_OVERFLOW,
176 (unsigned long *)&mcelog.flags);
Andi Kleen673242c2005-09-12 18:49:24 +0200177 return;
178 }
Ingo Molnare9eee032009-04-08 12:31:17 +0200179 /* Old left over entry. Skip: */
Andi Kleen673242c2005-09-12 18:49:24 +0200180 if (mcelog.entry[entry].finished) {
181 entry++;
182 continue;
183 }
Mike Waychison76441432005-09-30 00:01:27 +0200184 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 smp_rmb();
187 next = entry + 1;
188 if (cmpxchg(&mcelog.next, entry, next) == entry)
189 break;
190 }
191 memcpy(mcelog.entry + entry, mce, sizeof(struct mce));
Mike Waychison76441432005-09-30 00:01:27 +0200192 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 mcelog.entry[entry].finished = 1;
Mike Waychison76441432005-09-30 00:01:27 +0200194 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Hidetoshi Seto1020bcb2009-06-15 17:20:57 +0900196 set_bit(0, &mce_need_notify);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197}
198
Borislav Petkova79da382015-08-12 18:29:44 +0200199void mce_inject_log(struct mce *m)
Borislav Petkov09371952011-12-08 12:28:33 +0100200{
Borislav Petkova79da382015-08-12 18:29:44 +0200201 mutex_lock(&mce_chrdev_read_mutex);
202 mce_log(m);
203 mutex_unlock(&mce_chrdev_read_mutex);
Borislav Petkov09371952011-12-08 12:28:33 +0100204}
Borislav Petkova79da382015-08-12 18:29:44 +0200205EXPORT_SYMBOL_GPL(mce_inject_log);
Borislav Petkov09371952011-12-08 12:28:33 +0100206
Chen, Gongfd4cf792015-08-12 18:29:36 +0200207static struct notifier_block mce_srao_nb;
Borislav Petkov09371952011-12-08 12:28:33 +0100208
Borislav Petkov3653ada2011-12-04 15:12:09 +0100209void mce_register_decode_chain(struct notifier_block *nb)
210{
Chen, Gongfd4cf792015-08-12 18:29:36 +0200211 /* Ensure SRAO notifier has the highest priority in the decode chain. */
212 if (nb != &mce_srao_nb && nb->priority == INT_MAX)
213 nb->priority -= 1;
214
Borislav Petkov3653ada2011-12-04 15:12:09 +0100215 atomic_notifier_chain_register(&x86_mce_decoder_chain, nb);
216}
217EXPORT_SYMBOL_GPL(mce_register_decode_chain);
218
219void mce_unregister_decode_chain(struct notifier_block *nb)
220{
221 atomic_notifier_chain_unregister(&x86_mce_decoder_chain, nb);
222}
223EXPORT_SYMBOL_GPL(mce_unregister_decode_chain);
224
Yazen Ghannama9750a32016-04-30 14:33:54 +0200225static inline u32 ctl_reg(int bank)
226{
227 return MSR_IA32_MCx_CTL(bank);
228}
229
230static inline u32 status_reg(int bank)
231{
232 return MSR_IA32_MCx_STATUS(bank);
233}
234
235static inline u32 addr_reg(int bank)
236{
237 return MSR_IA32_MCx_ADDR(bank);
238}
239
240static inline u32 misc_reg(int bank)
241{
242 return MSR_IA32_MCx_MISC(bank);
243}
244
245static inline u32 smca_ctl_reg(int bank)
246{
247 return MSR_AMD64_SMCA_MCx_CTL(bank);
248}
249
250static inline u32 smca_status_reg(int bank)
251{
252 return MSR_AMD64_SMCA_MCx_STATUS(bank);
253}
254
255static inline u32 smca_addr_reg(int bank)
256{
257 return MSR_AMD64_SMCA_MCx_ADDR(bank);
258}
259
260static inline u32 smca_misc_reg(int bank)
261{
262 return MSR_AMD64_SMCA_MCx_MISC(bank);
263}
264
265struct mca_msr_regs msr_ops = {
266 .ctl = ctl_reg,
267 .status = status_reg,
268 .addr = addr_reg,
269 .misc = misc_reg
270};
271
Hidetoshi Seto77e26cc2009-06-11 16:04:35 +0900272static void print_mce(struct mce *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273{
Borislav Petkovdffa4b22011-04-20 12:23:49 +0200274 int ret = 0;
275
Huang Yinga2d7b0d2010-06-08 14:35:39 +0800276 pr_emerg(HW_ERR "CPU %d: Machine Check Exception: %Lx Bank %d: %016Lx\n",
Andi Kleend620c672009-05-27 21:56:56 +0200277 m->extcpu, m->mcgstatus, m->bank, m->status);
Ingo Molnarf436f8b2009-10-01 16:14:32 +0200278
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100279 if (m->ip) {
Huang Yinga2d7b0d2010-06-08 14:35:39 +0800280 pr_emerg(HW_ERR "RIP%s %02x:<%016Lx> ",
Ingo Molnarf436f8b2009-10-01 16:14:32 +0200281 !(m->mcgstatus & MCG_STATUS_EIPV) ? " !INEXACT!" : "",
282 m->cs, m->ip);
283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 if (m->cs == __KERNEL_CS)
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100285 print_symbol("{%s}", m->ip);
Ingo Molnarf436f8b2009-10-01 16:14:32 +0200286 pr_cont("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 }
Borislav Petkov549d0422009-07-24 13:51:42 +0200288
Huang Yinga2d7b0d2010-06-08 14:35:39 +0800289 pr_emerg(HW_ERR "TSC %llx ", m->tsc);
Ingo Molnarf436f8b2009-10-01 16:14:32 +0200290 if (m->addr)
291 pr_cont("ADDR %llx ", m->addr);
292 if (m->misc)
293 pr_cont("MISC %llx ", m->misc);
294
295 pr_cont("\n");
Andi Kleen506ed6b2011-10-12 17:46:33 -0700296 /*
297 * Note this output is parsed by external tools and old fields
298 * should not be changed.
299 */
Borislav Petkov881e23e2011-10-17 16:45:10 +0200300 pr_emerg(HW_ERR "PROCESSOR %u:%x TIME %llu SOCKET %u APIC %x microcode %x\n",
Andi Kleen506ed6b2011-10-12 17:46:33 -0700301 m->cpuvendor, m->cpuid, m->time, m->socketid, m->apicid,
302 cpu_data(m->extcpu).microcode);
Ingo Molnarf436f8b2009-10-01 16:14:32 +0200303
304 /*
305 * Print out human-readable details about the MCE error,
Borislav Petkovfb253192009-10-07 13:20:38 +0200306 * (if the CPU has an implementation for that)
Ingo Molnarf436f8b2009-10-01 16:14:32 +0200307 */
Borislav Petkovdffa4b22011-04-20 12:23:49 +0200308 ret = atomic_notifier_call_chain(&x86_mce_decoder_chain, 0, m);
309 if (ret == NOTIFY_STOP)
310 return;
311
312 pr_emerg_ratelimited(HW_ERR "Run the above through 'mcelog --ascii'\n");
Andi Kleen86503562009-05-27 21:56:58 +0200313}
314
Andi Kleenf94b61c2009-05-27 21:56:55 +0200315#define PANIC_TIMEOUT 5 /* 5 seconds */
316
Borislav Petkovc7c9b392014-12-03 22:36:45 +0100317static atomic_t mce_panicked;
Andi Kleenf94b61c2009-05-27 21:56:55 +0200318
Huang Yingbf783f92009-07-31 09:41:43 +0800319static int fake_panic;
Borislav Petkovc7c9b392014-12-03 22:36:45 +0100320static atomic_t mce_fake_panicked;
Huang Yingbf783f92009-07-31 09:41:43 +0800321
Andi Kleenf94b61c2009-05-27 21:56:55 +0200322/* Panic in progress. Enable interrupts and wait for final IPI */
323static void wait_for_panic(void)
324{
325 long timeout = PANIC_TIMEOUT*USEC_PER_SEC;
Ingo Molnarf436f8b2009-10-01 16:14:32 +0200326
Andi Kleenf94b61c2009-05-27 21:56:55 +0200327 preempt_disable();
328 local_irq_enable();
329 while (timeout-- > 0)
330 udelay(1);
Andi Kleen29b0f592009-05-27 21:56:56 +0200331 if (panic_timeout == 0)
Borislav Petkov7af19e42012-10-15 20:25:17 +0200332 panic_timeout = mca_cfg.panic_timeout;
Andi Kleenf94b61c2009-05-27 21:56:55 +0200333 panic("Panicing machine check CPU died");
334}
335
Andy Lutomirski6c80f872014-12-21 08:18:25 -0800336static void mce_panic(const char *msg, struct mce *final, char *exp)
Thomas Gleixnerd88203d2007-10-23 22:37:23 +0200337{
Tony Luck5541c932016-04-30 14:33:56 +0200338 int apei_err = 0;
339 struct llist_node *pending;
340 struct mce_evt_llist *l;
Tim Hockine02e68d2007-07-21 17:10:36 +0200341
Huang Yingbf783f92009-07-31 09:41:43 +0800342 if (!fake_panic) {
343 /*
344 * Make sure only one CPU runs in machine check panic
345 */
Borislav Petkovc7c9b392014-12-03 22:36:45 +0100346 if (atomic_inc_return(&mce_panicked) > 1)
Huang Yingbf783f92009-07-31 09:41:43 +0800347 wait_for_panic();
348 barrier();
Andi Kleenf94b61c2009-05-27 21:56:55 +0200349
Huang Yingbf783f92009-07-31 09:41:43 +0800350 bust_spinlocks(1);
351 console_verbose();
352 } else {
353 /* Don't log too much for fake panic */
Borislav Petkovc7c9b392014-12-03 22:36:45 +0100354 if (atomic_inc_return(&mce_fake_panicked) > 1)
Huang Yingbf783f92009-07-31 09:41:43 +0800355 return;
356 }
Tony Luck5541c932016-04-30 14:33:56 +0200357 pending = mce_gen_pool_prepare_records();
Andi Kleena0189c72009-05-27 21:56:54 +0200358 /* First print corrected ones that are still unlogged */
Tony Luck5541c932016-04-30 14:33:56 +0200359 llist_for_each_entry(l, pending, llnode) {
360 struct mce *m = &l->mce;
Huang Ying482908b2010-05-18 14:35:22 +0800361 if (!(m->status & MCI_STATUS_UC)) {
Hidetoshi Seto77e26cc2009-06-11 16:04:35 +0900362 print_mce(m);
Huang Ying482908b2010-05-18 14:35:22 +0800363 if (!apei_err)
364 apei_err = apei_write_mce(m);
365 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 }
Andi Kleena0189c72009-05-27 21:56:54 +0200367 /* Now print uncorrected but with the final one last */
Tony Luck5541c932016-04-30 14:33:56 +0200368 llist_for_each_entry(l, pending, llnode) {
369 struct mce *m = &l->mce;
Hidetoshi Seto77e26cc2009-06-11 16:04:35 +0900370 if (!(m->status & MCI_STATUS_UC))
371 continue;
Tony Luck5541c932016-04-30 14:33:56 +0200372 if (!final || mce_cmp(m, final)) {
Hidetoshi Seto77e26cc2009-06-11 16:04:35 +0900373 print_mce(m);
Huang Ying482908b2010-05-18 14:35:22 +0800374 if (!apei_err)
375 apei_err = apei_write_mce(m);
376 }
Andi Kleena0189c72009-05-27 21:56:54 +0200377 }
Huang Ying482908b2010-05-18 14:35:22 +0800378 if (final) {
Hidetoshi Seto77e26cc2009-06-11 16:04:35 +0900379 print_mce(final);
Huang Ying482908b2010-05-18 14:35:22 +0800380 if (!apei_err)
381 apei_err = apei_write_mce(final);
382 }
Andi Kleen3c079792009-05-27 21:56:55 +0200383 if (cpu_missing)
Huang Yinga2d7b0d2010-06-08 14:35:39 +0800384 pr_emerg(HW_ERR "Some CPUs didn't answer in synchronization\n");
Andi Kleenbd19a5e2009-05-27 21:56:55 +0200385 if (exp)
Huang Yinga2d7b0d2010-06-08 14:35:39 +0800386 pr_emerg(HW_ERR "Machine check: %s\n", exp);
Huang Yingbf783f92009-07-31 09:41:43 +0800387 if (!fake_panic) {
388 if (panic_timeout == 0)
Borislav Petkov7af19e42012-10-15 20:25:17 +0200389 panic_timeout = mca_cfg.panic_timeout;
Huang Yingbf783f92009-07-31 09:41:43 +0800390 panic(msg);
391 } else
Huang Yinga2d7b0d2010-06-08 14:35:39 +0800392 pr_emerg(HW_ERR "Fake kernel panic: %s\n", msg);
Thomas Gleixnerd88203d2007-10-23 22:37:23 +0200393}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
Andi Kleenea149b32009-04-29 19:31:00 +0200395/* Support code for software error injection */
396
397static int msr_to_offset(u32 msr)
398{
Tejun Heo0a3aee02010-12-18 16:28:55 +0100399 unsigned bank = __this_cpu_read(injectm.bank);
Ingo Molnarf436f8b2009-10-01 16:14:32 +0200400
Borislav Petkov84c25592012-10-15 19:59:18 +0200401 if (msr == mca_cfg.rip_msr)
Andi Kleenea149b32009-04-29 19:31:00 +0200402 return offsetof(struct mce, ip);
Yazen Ghannamd9d73fc2016-04-30 14:33:55 +0200403 if (msr == msr_ops.status(bank))
Andi Kleenea149b32009-04-29 19:31:00 +0200404 return offsetof(struct mce, status);
Yazen Ghannamd9d73fc2016-04-30 14:33:55 +0200405 if (msr == msr_ops.addr(bank))
Andi Kleenea149b32009-04-29 19:31:00 +0200406 return offsetof(struct mce, addr);
Yazen Ghannamd9d73fc2016-04-30 14:33:55 +0200407 if (msr == msr_ops.misc(bank))
Andi Kleenea149b32009-04-29 19:31:00 +0200408 return offsetof(struct mce, misc);
409 if (msr == MSR_IA32_MCG_STATUS)
410 return offsetof(struct mce, mcgstatus);
411 return -1;
412}
413
Andi Kleen5f8c1a52009-04-29 19:29:12 +0200414/* MSR access wrappers used for error injection */
415static u64 mce_rdmsrl(u32 msr)
416{
417 u64 v;
Ingo Molnar11868a22009-09-23 17:49:55 +0200418
Tejun Heo0a3aee02010-12-18 16:28:55 +0100419 if (__this_cpu_read(injectm.finished)) {
Andi Kleenea149b32009-04-29 19:31:00 +0200420 int offset = msr_to_offset(msr);
Ingo Molnar11868a22009-09-23 17:49:55 +0200421
Andi Kleenea149b32009-04-29 19:31:00 +0200422 if (offset < 0)
423 return 0;
Christoph Lameter89cbc762014-08-17 12:30:40 -0500424 return *(u64 *)((char *)this_cpu_ptr(&injectm) + offset);
Andi Kleenea149b32009-04-29 19:31:00 +0200425 }
Ingo Molnar11868a22009-09-23 17:49:55 +0200426
427 if (rdmsrl_safe(msr, &v)) {
Borislav Petkov38c54cc2016-07-08 11:09:41 +0200428 WARN_ONCE(1, "mce: Unable to read MSR 0x%x!\n", msr);
Ingo Molnar11868a22009-09-23 17:49:55 +0200429 /*
430 * Return zero in case the access faulted. This should
431 * not happen normally but can happen if the CPU does
432 * something weird, or if the code is buggy.
433 */
434 v = 0;
435 }
436
Andi Kleen5f8c1a52009-04-29 19:29:12 +0200437 return v;
438}
439
440static void mce_wrmsrl(u32 msr, u64 v)
441{
Tejun Heo0a3aee02010-12-18 16:28:55 +0100442 if (__this_cpu_read(injectm.finished)) {
Andi Kleenea149b32009-04-29 19:31:00 +0200443 int offset = msr_to_offset(msr);
Ingo Molnar11868a22009-09-23 17:49:55 +0200444
Andi Kleenea149b32009-04-29 19:31:00 +0200445 if (offset >= 0)
Christoph Lameter89cbc762014-08-17 12:30:40 -0500446 *(u64 *)((char *)this_cpu_ptr(&injectm) + offset) = v;
Andi Kleenea149b32009-04-29 19:31:00 +0200447 return;
448 }
Andi Kleen5f8c1a52009-04-29 19:29:12 +0200449 wrmsrl(msr, v);
450}
451
Andi Kleen9b1beaf2009-05-27 21:56:59 +0200452/*
Hidetoshi Setob8325c52011-06-08 10:57:46 +0900453 * Collect all global (w.r.t. this processor) status about this machine
454 * check into our "mce" struct so that we can use it later to assess
455 * the severity of the problem as we read per-bank specific details.
456 */
457static inline void mce_gather_info(struct mce *m, struct pt_regs *regs)
458{
459 mce_setup(m);
460
461 m->mcgstatus = mce_rdmsrl(MSR_IA32_MCG_STATUS);
462 if (regs) {
463 /*
464 * Get the address of the instruction at the time of
465 * the machine check error.
466 */
467 if (m->mcgstatus & (MCG_STATUS_RIPV|MCG_STATUS_EIPV)) {
468 m->ip = regs->ip;
469 m->cs = regs->cs;
Andi Kleena129a7c2010-11-19 13:16:22 +0100470
471 /*
472 * When in VM86 mode make the cs look like ring 3
473 * always. This is a lie, but it's better than passing
474 * the additional vm86 bit around everywhere.
475 */
476 if (v8086_mode(regs))
477 m->cs |= 3;
Hidetoshi Setob8325c52011-06-08 10:57:46 +0900478 }
479 /* Use accurate RIP reporting if available. */
Borislav Petkov84c25592012-10-15 19:59:18 +0200480 if (mca_cfg.rip_msr)
481 m->ip = mce_rdmsrl(mca_cfg.rip_msr);
Hidetoshi Setob8325c52011-06-08 10:57:46 +0900482 }
483}
484
Andi Kleen88ccbed2009-02-12 13:49:36 +0100485int mce_available(struct cpuinfo_x86 *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486{
Borislav Petkov14625942012-10-17 12:05:33 +0200487 if (mca_cfg.disabled)
Andi Kleen5b4408f2009-02-12 13:39:30 +0100488 return 0;
Akinobu Mita3d1712c2006-03-24 03:15:11 -0800489 return cpu_has(c, X86_FEATURE_MCE) && cpu_has(c, X86_FEATURE_MCA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490}
491
Andi Kleen9b1beaf2009-05-27 21:56:59 +0200492static void mce_schedule_work(void)
493{
Chen, Gongfd4cf792015-08-12 18:29:36 +0200494 if (!mce_gen_pool_empty() && keventd_up())
Chen, Gong061120a2015-08-12 18:29:35 +0200495 schedule_work(&mce_work);
Andi Kleen9b1beaf2009-05-27 21:56:59 +0200496}
497
Hidetoshi Setob77e70b2011-06-08 10:56:02 +0900498static void mce_irq_work_cb(struct irq_work *entry)
Andi Kleenccc3c312009-05-27 21:56:54 +0200499{
Andi Kleen9ff36ee2009-05-27 21:56:58 +0200500 mce_notify_irq();
Andi Kleen9b1beaf2009-05-27 21:56:59 +0200501 mce_schedule_work();
Andi Kleenccc3c312009-05-27 21:56:54 +0200502}
Andi Kleenccc3c312009-05-27 21:56:54 +0200503
504static void mce_report_event(struct pt_regs *regs)
505{
506 if (regs->flags & (X86_VM_MASK|X86_EFLAGS_IF)) {
Andi Kleen9ff36ee2009-05-27 21:56:58 +0200507 mce_notify_irq();
Andi Kleen9b1beaf2009-05-27 21:56:59 +0200508 /*
509 * Triggering the work queue here is just an insurance
510 * policy in case the syscall exit notify handler
511 * doesn't run soon enough or ends up running on the
512 * wrong CPU (can happen when audit sleeps)
513 */
514 mce_schedule_work();
Andi Kleenccc3c312009-05-27 21:56:54 +0200515 return;
516 }
517
Chen, Gong061120a2015-08-12 18:29:35 +0200518 irq_work_queue(&mce_irq_work);
Andi Kleenccc3c312009-05-27 21:56:54 +0200519}
520
Borislav Petkovfeab21f2015-11-24 08:41:20 +0100521/*
522 * Check if the address reported by the CPU is in a format we can parse.
523 * It would be possible to add code for most other cases, but all would
524 * be somewhat complicated (e.g. segment offset would require an instruction
525 * parser). So only support physical addresses up to page granuality for now.
526 */
527static int mce_usable_address(struct mce *m)
528{
529 if (!(m->status & MCI_STATUS_MISCV) || !(m->status & MCI_STATUS_ADDRV))
530 return 0;
531
532 /* Checks after this one are Intel-specific: */
533 if (boot_cpu_data.x86_vendor != X86_VENDOR_INTEL)
534 return 1;
535
536 if (MCI_MISC_ADDR_LSB(m->misc) > PAGE_SHIFT)
537 return 0;
538 if (MCI_MISC_ADDR_MODE(m->misc) != MCI_MISC_ADDR_PHYS)
539 return 0;
540 return 1;
541}
542
Chen, Gongfd4cf792015-08-12 18:29:36 +0200543static int srao_decode_notifier(struct notifier_block *nb, unsigned long val,
544 void *data)
545{
546 struct mce *mce = (struct mce *)data;
547 unsigned long pfn;
548
549 if (!mce)
550 return NOTIFY_DONE;
551
Borislav Petkovc0ec3822015-11-24 08:41:18 +0100552 if (mce_usable_address(mce) && (mce->severity == MCE_AO_SEVERITY)) {
Chen, Gongfd4cf792015-08-12 18:29:36 +0200553 pfn = mce->addr >> PAGE_SHIFT;
554 memory_failure(pfn, MCE_VECTOR, 0);
555 }
556
557 return NOTIFY_OK;
558}
559static struct notifier_block mce_srao_nb = {
560 .notifier_call = srao_decode_notifier,
561 .priority = INT_MAX,
562};
563
Tony Luck85f926942011-12-13 09:48:13 -0800564/*
565 * Read ADDR and MISC registers.
566 */
567static void mce_read_aux(struct mce *m, int i)
568{
569 if (m->status & MCI_STATUS_MISCV)
Yazen Ghannamd9d73fc2016-04-30 14:33:55 +0200570 m->misc = mce_rdmsrl(msr_ops.misc(i));
Tony Luck85f926942011-12-13 09:48:13 -0800571 if (m->status & MCI_STATUS_ADDRV) {
Yazen Ghannamd9d73fc2016-04-30 14:33:55 +0200572 m->addr = mce_rdmsrl(msr_ops.addr(i));
Tony Luck85f926942011-12-13 09:48:13 -0800573
574 /*
575 * Mask the reported address by the reported granularity.
576 */
Borislav Petkov14625942012-10-17 12:05:33 +0200577 if (mca_cfg.ser && (m->status & MCI_STATUS_MISCV)) {
Tony Luck85f926942011-12-13 09:48:13 -0800578 u8 shift = MCI_MISC_ADDR_LSB(m->misc);
579 m->addr >>= shift;
580 m->addr <<= shift;
581 }
582 }
583}
584
Chen Yucongfa92c582014-11-18 10:09:20 +0800585static bool memory_error(struct mce *m)
586{
587 struct cpuinfo_x86 *c = &boot_cpu_data;
588
589 if (c->x86_vendor == X86_VENDOR_AMD) {
Borislav Petkovdb548a22015-11-24 08:41:19 +0100590 /* ErrCodeExt[20:16] */
591 u8 xec = (m->status >> 16) & 0x1f;
592
593 return (xec == 0x0 || xec == 0x8);
Chen Yucongfa92c582014-11-18 10:09:20 +0800594 } else if (c->x86_vendor == X86_VENDOR_INTEL) {
595 /*
596 * Intel SDM Volume 3B - 15.9.2 Compound Error Codes
597 *
598 * Bit 7 of the MCACOD field of IA32_MCi_STATUS is used for
599 * indicating a memory error. Bit 8 is used for indicating a
600 * cache hierarchy error. The combination of bit 2 and bit 3
601 * is used for indicating a `generic' cache hierarchy error
602 * But we can't just blindly check the above bits, because if
603 * bit 11 is set, then it is a bus/interconnect error - and
604 * either way the above bits just gives more detail on what
605 * bus/interconnect error happened. Note that bit 12 can be
606 * ignored, as it's the "filter" bit.
607 */
608 return (m->status & 0xef80) == BIT(7) ||
609 (m->status & 0xef00) == BIT(8) ||
610 (m->status & 0xeffc) == 0xc;
611 }
612
613 return false;
614}
615
Andi Kleenca84f692009-05-27 21:56:57 +0200616DEFINE_PER_CPU(unsigned, mce_poll_count);
617
Thomas Gleixnerd88203d2007-10-23 22:37:23 +0200618/*
Andi Kleenb79109c2009-02-12 13:43:23 +0100619 * Poll for corrected events or events that happened before reset.
620 * Those are just logged through /dev/mcelog.
621 *
622 * This is executed in standard interrupt context.
Andi Kleened7290d2009-05-27 21:56:57 +0200623 *
624 * Note: spec recommends to panic for fatal unsignalled
625 * errors here. However this would be quite problematic --
626 * we would need to reimplement the Monarch handling and
627 * it would mess up the exclusion between exception handler
628 * and poll hander -- * so we skip this for now.
629 * These cases should not happen anyways, or only when the CPU
630 * is already totally * confused. In this case it's likely it will
631 * not fully execute the machine check handler either.
Andi Kleenb79109c2009-02-12 13:43:23 +0100632 */
Borislav Petkov3f2f0682015-01-13 15:08:51 +0100633bool machine_check_poll(enum mcp_flags flags, mce_banks_t *b)
Andi Kleenb79109c2009-02-12 13:43:23 +0100634{
Tony Luck8b389372015-11-24 08:41:17 +0100635 bool error_seen = false;
Andi Kleenb79109c2009-02-12 13:43:23 +0100636 struct mce m;
Chen Yucongfa92c582014-11-18 10:09:20 +0800637 int severity;
Andi Kleenb79109c2009-02-12 13:43:23 +0100638 int i;
639
Alex Shic6ae41e2012-05-11 15:35:27 +0800640 this_cpu_inc(mce_poll_count);
Andi Kleenca84f692009-05-27 21:56:57 +0200641
Hidetoshi Setob8325c52011-06-08 10:57:46 +0900642 mce_gather_info(&m, NULL);
Andi Kleenb79109c2009-02-12 13:43:23 +0100643
Borislav Petkovd203f0b2012-10-15 18:03:57 +0200644 for (i = 0; i < mca_cfg.banks; i++) {
Andi Kleencebe1822009-07-09 00:31:43 +0200645 if (!mce_banks[i].ctl || !test_bit(i, *b))
Andi Kleenb79109c2009-02-12 13:43:23 +0100646 continue;
647
648 m.misc = 0;
649 m.addr = 0;
650 m.bank = i;
651 m.tsc = 0;
652
653 barrier();
Yazen Ghannamd9d73fc2016-04-30 14:33:55 +0200654 m.status = mce_rdmsrl(msr_ops.status(i));
Andi Kleenb79109c2009-02-12 13:43:23 +0100655 if (!(m.status & MCI_STATUS_VAL))
656 continue;
657
Borislav Petkov3f2f0682015-01-13 15:08:51 +0100658
Andi Kleenb79109c2009-02-12 13:43:23 +0100659 /*
Andi Kleened7290d2009-05-27 21:56:57 +0200660 * Uncorrected or signalled events are handled by the exception
661 * handler when it is enabled, so don't process those here.
Andi Kleenb79109c2009-02-12 13:43:23 +0100662 *
663 * TBD do the same check for MCI_STATUS_EN here?
664 */
Andi Kleened7290d2009-05-27 21:56:57 +0200665 if (!(flags & MCP_UC) &&
Borislav Petkov14625942012-10-17 12:05:33 +0200666 (m.status & (mca_cfg.ser ? MCI_STATUS_S : MCI_STATUS_UC)))
Andi Kleenb79109c2009-02-12 13:43:23 +0100667 continue;
668
Tony Luck8b389372015-11-24 08:41:17 +0100669 error_seen = true;
670
Tony Luck85f926942011-12-13 09:48:13 -0800671 mce_read_aux(&m, i);
Andi Kleenb79109c2009-02-12 13:43:23 +0100672
673 if (!(flags & MCP_TIMESTAMP))
674 m.tsc = 0;
Chen Yucongfa92c582014-11-18 10:09:20 +0800675
676 severity = mce_severity(&m, mca_cfg.tolerant, NULL, false);
677
Borislav Petkovc0ec3822015-11-24 08:41:18 +0100678 if (severity == MCE_DEFERRED_SEVERITY && memory_error(&m))
679 if (m.status & MCI_STATUS_ADDRV)
Chen, Gongfd4cf792015-08-12 18:29:36 +0200680 m.severity = severity;
Chen Yucongfa92c582014-11-18 10:09:20 +0800681
Andi Kleenb79109c2009-02-12 13:43:23 +0100682 /*
683 * Don't get the IP here because it's unlikely to
684 * have anything to do with the actual error location.
685 */
Tony Luck8b389372015-11-24 08:41:17 +0100686 if (!(flags & MCP_DONTLOG) && !mca_cfg.dont_log_ce)
Andi Kleen5679af42009-04-07 17:06:55 +0200687 mce_log(&m);
Borislav Petkovc0ec3822015-11-24 08:41:18 +0100688 else if (mce_usable_address(&m)) {
Tony Luck8b389372015-11-24 08:41:17 +0100689 /*
690 * Although we skipped logging this, we still want
691 * to take action. Add to the pool so the registered
692 * notifiers will see it.
693 */
694 if (!mce_gen_pool_add(&m))
695 mce_schedule_work();
Borislav Petkov3f2f0682015-01-13 15:08:51 +0100696 }
Andi Kleenb79109c2009-02-12 13:43:23 +0100697
698 /*
699 * Clear state for this bank.
700 */
Yazen Ghannamd9d73fc2016-04-30 14:33:55 +0200701 mce_wrmsrl(msr_ops.status(i), 0);
Andi Kleenb79109c2009-02-12 13:43:23 +0100702 }
703
704 /*
705 * Don't clear MCG_STATUS here because it's only defined for
706 * exceptions.
707 */
Andi Kleen88921be2009-05-27 21:56:51 +0200708
709 sync_core();
Borislav Petkov3f2f0682015-01-13 15:08:51 +0100710
Tony Luck8b389372015-11-24 08:41:17 +0100711 return error_seen;
Andi Kleenb79109c2009-02-12 13:43:23 +0100712}
Andi Kleenea149b32009-04-29 19:31:00 +0200713EXPORT_SYMBOL_GPL(machine_check_poll);
Andi Kleenb79109c2009-02-12 13:43:23 +0100714
715/*
Andi Kleenbd19a5e2009-05-27 21:56:55 +0200716 * Do a quick check if any of the events requires a panic.
717 * This decides if we keep the events around or clear them.
718 */
Tony Luck61b0fcc2012-07-19 11:28:46 -0700719static int mce_no_way_out(struct mce *m, char **msg, unsigned long *validp,
720 struct pt_regs *regs)
Andi Kleenbd19a5e2009-05-27 21:56:55 +0200721{
Tony Luck95022b82012-04-18 15:19:40 -0700722 int i, ret = 0;
Borislav Petkov17fea542015-05-18 10:07:17 +0200723 char *tmp;
Andi Kleenbd19a5e2009-05-27 21:56:55 +0200724
Borislav Petkovd203f0b2012-10-15 18:03:57 +0200725 for (i = 0; i < mca_cfg.banks; i++) {
Yazen Ghannamd9d73fc2016-04-30 14:33:55 +0200726 m->status = mce_rdmsrl(msr_ops.status(i));
Tony Luck61b0fcc2012-07-19 11:28:46 -0700727 if (m->status & MCI_STATUS_VAL) {
Tony Luck95022b82012-04-18 15:19:40 -0700728 __set_bit(i, validp);
Tony Luck61b0fcc2012-07-19 11:28:46 -0700729 if (quirk_no_way_out)
730 quirk_no_way_out(i, m, regs);
731 }
Borislav Petkov17fea542015-05-18 10:07:17 +0200732
733 if (mce_severity(m, mca_cfg.tolerant, &tmp, true) >= MCE_PANIC_SEVERITY) {
734 *msg = tmp;
Tony Luck95022b82012-04-18 15:19:40 -0700735 ret = 1;
Borislav Petkov17fea542015-05-18 10:07:17 +0200736 }
Andi Kleenbd19a5e2009-05-27 21:56:55 +0200737 }
Tony Luck95022b82012-04-18 15:19:40 -0700738 return ret;
Andi Kleenbd19a5e2009-05-27 21:56:55 +0200739}
740
741/*
Andi Kleen3c079792009-05-27 21:56:55 +0200742 * Variable to establish order between CPUs while scanning.
743 * Each CPU spins initially until executing is equal its number.
744 */
745static atomic_t mce_executing;
746
747/*
748 * Defines order of CPUs on entry. First CPU becomes Monarch.
749 */
750static atomic_t mce_callin;
751
752/*
753 * Check if a timeout waiting for other CPUs happened.
754 */
Andy Lutomirski6c80f872014-12-21 08:18:25 -0800755static int mce_timed_out(u64 *t, const char *msg)
Andi Kleen3c079792009-05-27 21:56:55 +0200756{
757 /*
758 * The others already did panic for some reason.
759 * Bail out like in a timeout.
760 * rmb() to tell the compiler that system_state
761 * might have been modified by someone else.
762 */
763 rmb();
Borislav Petkovc7c9b392014-12-03 22:36:45 +0100764 if (atomic_read(&mce_panicked))
Andi Kleen3c079792009-05-27 21:56:55 +0200765 wait_for_panic();
Borislav Petkov84c25592012-10-15 19:59:18 +0200766 if (!mca_cfg.monarch_timeout)
Andi Kleen3c079792009-05-27 21:56:55 +0200767 goto out;
768 if ((s64)*t < SPINUNIT) {
Borislav Petkov716079f2014-05-23 11:06:35 +0200769 if (mca_cfg.tolerant <= 1)
Andy Lutomirski6c80f872014-12-21 08:18:25 -0800770 mce_panic(msg, NULL, NULL);
Andi Kleen3c079792009-05-27 21:56:55 +0200771 cpu_missing = 1;
772 return 1;
773 }
774 *t -= SPINUNIT;
775out:
776 touch_nmi_watchdog();
777 return 0;
778}
779
780/*
781 * The Monarch's reign. The Monarch is the CPU who entered
782 * the machine check handler first. It waits for the others to
783 * raise the exception too and then grades them. When any
784 * error is fatal panic. Only then let the others continue.
785 *
786 * The other CPUs entering the MCE handler will be controlled by the
787 * Monarch. They are called Subjects.
788 *
789 * This way we prevent any potential data corruption in a unrecoverable case
790 * and also makes sure always all CPU's errors are examined.
791 *
Hidetoshi Seto680b6cf2009-08-26 16:20:36 +0900792 * Also this detects the case of a machine check event coming from outer
Andi Kleen3c079792009-05-27 21:56:55 +0200793 * space (not detected by any CPUs) In this case some external agent wants
794 * us to shut down, so panic too.
795 *
796 * The other CPUs might still decide to panic if the handler happens
797 * in a unrecoverable place, but in this case the system is in a semi-stable
798 * state and won't corrupt anything by itself. It's ok to let the others
799 * continue for a bit first.
800 *
801 * All the spin loops have timeouts; when a timeout happens a CPU
802 * typically elects itself to be Monarch.
803 */
804static void mce_reign(void)
805{
806 int cpu;
807 struct mce *m = NULL;
808 int global_worst = 0;
809 char *msg = NULL;
810 char *nmsg = NULL;
811
812 /*
813 * This CPU is the Monarch and the other CPUs have run
814 * through their handlers.
815 * Grade the severity of the errors of all the CPUs.
816 */
817 for_each_possible_cpu(cpu) {
Borislav Petkovd203f0b2012-10-15 18:03:57 +0200818 int severity = mce_severity(&per_cpu(mces_seen, cpu),
819 mca_cfg.tolerant,
Chen Yuconge3480272014-11-18 10:09:19 +0800820 &nmsg, true);
Andi Kleen3c079792009-05-27 21:56:55 +0200821 if (severity > global_worst) {
822 msg = nmsg;
823 global_worst = severity;
824 m = &per_cpu(mces_seen, cpu);
825 }
826 }
827
828 /*
829 * Cannot recover? Panic here then.
830 * This dumps all the mces in the log buffer and stops the
831 * other CPUs.
832 */
Borislav Petkovd203f0b2012-10-15 18:03:57 +0200833 if (m && global_worst >= MCE_PANIC_SEVERITY && mca_cfg.tolerant < 3)
Derek Che8af70432015-02-02 10:30:21 -0800834 mce_panic("Fatal machine check", m, msg);
Andi Kleen3c079792009-05-27 21:56:55 +0200835
836 /*
837 * For UC somewhere we let the CPU who detects it handle it.
838 * Also must let continue the others, otherwise the handling
839 * CPU could deadlock on a lock.
840 */
841
842 /*
843 * No machine check event found. Must be some external
844 * source or one CPU is hung. Panic.
845 */
Borislav Petkovd203f0b2012-10-15 18:03:57 +0200846 if (global_worst <= MCE_KEEP_SEVERITY && mca_cfg.tolerant < 3)
Derek Che8af70432015-02-02 10:30:21 -0800847 mce_panic("Fatal machine check from unknown source", NULL, NULL);
Andi Kleen3c079792009-05-27 21:56:55 +0200848
849 /*
850 * Now clear all the mces_seen so that they don't reappear on
851 * the next mce.
852 */
853 for_each_possible_cpu(cpu)
854 memset(&per_cpu(mces_seen, cpu), 0, sizeof(struct mce));
855}
856
857static atomic_t global_nwo;
858
859/*
860 * Start of Monarch synchronization. This waits until all CPUs have
861 * entered the exception handler and then determines if any of them
862 * saw a fatal event that requires panic. Then it executes them
863 * in the entry order.
864 * TBD double check parallel CPU hotunplug
865 */
Hidetoshi Seto7fb06fc2009-06-15 18:18:43 +0900866static int mce_start(int *no_way_out)
Andi Kleen3c079792009-05-27 21:56:55 +0200867{
Hidetoshi Seto7fb06fc2009-06-15 18:18:43 +0900868 int order;
Andi Kleen3c079792009-05-27 21:56:55 +0200869 int cpus = num_online_cpus();
Borislav Petkov84c25592012-10-15 19:59:18 +0200870 u64 timeout = (u64)mca_cfg.monarch_timeout * NSEC_PER_USEC;
Andi Kleen3c079792009-05-27 21:56:55 +0200871
Hidetoshi Seto7fb06fc2009-06-15 18:18:43 +0900872 if (!timeout)
873 return -1;
Andi Kleen3c079792009-05-27 21:56:55 +0200874
Hidetoshi Seto7fb06fc2009-06-15 18:18:43 +0900875 atomic_add(*no_way_out, &global_nwo);
Huang Ying184e1fd2009-06-15 15:37:07 +0800876 /*
Davidlohr Buesobf92b1f2016-04-06 10:05:15 +0200877 * Rely on the implied barrier below, such that global_nwo
878 * is updated before mce_callin.
Huang Ying184e1fd2009-06-15 15:37:07 +0800879 */
Borislav Petkova95436e2009-06-20 23:28:22 -0700880 order = atomic_inc_return(&mce_callin);
Andi Kleen3c079792009-05-27 21:56:55 +0200881
882 /*
883 * Wait for everyone.
884 */
885 while (atomic_read(&mce_callin) != cpus) {
Andy Lutomirski6c80f872014-12-21 08:18:25 -0800886 if (mce_timed_out(&timeout,
887 "Timeout: Not all CPUs entered broadcast exception handler")) {
Andi Kleen3c079792009-05-27 21:56:55 +0200888 atomic_set(&global_nwo, 0);
Hidetoshi Seto7fb06fc2009-06-15 18:18:43 +0900889 return -1;
Andi Kleen3c079792009-05-27 21:56:55 +0200890 }
891 ndelay(SPINUNIT);
892 }
893
894 /*
Huang Ying184e1fd2009-06-15 15:37:07 +0800895 * mce_callin should be read before global_nwo
896 */
897 smp_rmb();
Hidetoshi Seto7fb06fc2009-06-15 18:18:43 +0900898
899 if (order == 1) {
900 /*
901 * Monarch: Starts executing now, the others wait.
902 */
903 atomic_set(&mce_executing, 1);
904 } else {
905 /*
906 * Subject: Now start the scanning loop one by one in
907 * the original callin order.
908 * This way when there are any shared banks it will be
909 * only seen by one CPU before cleared, avoiding duplicates.
910 */
911 while (atomic_read(&mce_executing) < order) {
Andy Lutomirski6c80f872014-12-21 08:18:25 -0800912 if (mce_timed_out(&timeout,
913 "Timeout: Subject CPUs unable to finish machine check processing")) {
Hidetoshi Seto7fb06fc2009-06-15 18:18:43 +0900914 atomic_set(&global_nwo, 0);
915 return -1;
916 }
917 ndelay(SPINUNIT);
918 }
919 }
920
Huang Ying184e1fd2009-06-15 15:37:07 +0800921 /*
Andi Kleen3c079792009-05-27 21:56:55 +0200922 * Cache the global no_way_out state.
923 */
Hidetoshi Seto7fb06fc2009-06-15 18:18:43 +0900924 *no_way_out = atomic_read(&global_nwo);
Andi Kleen3c079792009-05-27 21:56:55 +0200925
Hidetoshi Seto7fb06fc2009-06-15 18:18:43 +0900926 return order;
Andi Kleen3c079792009-05-27 21:56:55 +0200927}
928
929/*
930 * Synchronize between CPUs after main scanning loop.
931 * This invokes the bulk of the Monarch processing.
932 */
933static int mce_end(int order)
934{
935 int ret = -1;
Borislav Petkov84c25592012-10-15 19:59:18 +0200936 u64 timeout = (u64)mca_cfg.monarch_timeout * NSEC_PER_USEC;
Andi Kleen3c079792009-05-27 21:56:55 +0200937
938 if (!timeout)
939 goto reset;
940 if (order < 0)
941 goto reset;
942
943 /*
944 * Allow others to run.
945 */
946 atomic_inc(&mce_executing);
947
948 if (order == 1) {
949 /* CHECKME: Can this race with a parallel hotplug? */
950 int cpus = num_online_cpus();
951
952 /*
953 * Monarch: Wait for everyone to go through their scanning
954 * loops.
955 */
956 while (atomic_read(&mce_executing) <= cpus) {
Andy Lutomirski6c80f872014-12-21 08:18:25 -0800957 if (mce_timed_out(&timeout,
958 "Timeout: Monarch CPU unable to finish machine check processing"))
Andi Kleen3c079792009-05-27 21:56:55 +0200959 goto reset;
960 ndelay(SPINUNIT);
961 }
962
963 mce_reign();
964 barrier();
965 ret = 0;
966 } else {
967 /*
968 * Subject: Wait for Monarch to finish.
969 */
970 while (atomic_read(&mce_executing) != 0) {
Andy Lutomirski6c80f872014-12-21 08:18:25 -0800971 if (mce_timed_out(&timeout,
972 "Timeout: Monarch CPU did not finish machine check processing"))
Andi Kleen3c079792009-05-27 21:56:55 +0200973 goto reset;
974 ndelay(SPINUNIT);
975 }
976
977 /*
978 * Don't reset anything. That's done by the Monarch.
979 */
980 return 0;
981 }
982
983 /*
984 * Reset all global state.
985 */
986reset:
987 atomic_set(&global_nwo, 0);
988 atomic_set(&mce_callin, 0);
989 barrier();
990
991 /*
992 * Let others run again.
993 */
994 atomic_set(&mce_executing, 0);
995 return ret;
996}
997
998static void mce_clear_state(unsigned long *toclear)
999{
1000 int i;
1001
Borislav Petkovd203f0b2012-10-15 18:03:57 +02001002 for (i = 0; i < mca_cfg.banks; i++) {
Andi Kleen3c079792009-05-27 21:56:55 +02001003 if (test_bit(i, toclear))
Yazen Ghannamd9d73fc2016-04-30 14:33:55 +02001004 mce_wrmsrl(msr_ops.status(i), 0);
Andi Kleen3c079792009-05-27 21:56:55 +02001005 }
1006}
1007
Tony Luckb2f9d672016-02-17 10:20:13 -08001008static int do_memory_failure(struct mce *m)
1009{
1010 int flags = MF_ACTION_REQUIRED;
1011 int ret;
1012
1013 pr_err("Uncorrected hardware memory error in user-access at %llx", m->addr);
1014 if (!(m->mcgstatus & MCG_STATUS_RIPV))
1015 flags |= MF_MUST_KILL;
1016 ret = memory_failure(m->addr >> PAGE_SHIFT, MCE_VECTOR, flags);
1017 if (ret)
1018 pr_err("Memory error not recovered");
1019 return ret;
1020}
1021
Andi Kleen3c079792009-05-27 21:56:55 +02001022/*
Andi Kleenb79109c2009-02-12 13:43:23 +01001023 * The actual machine check handler. This only handles real
1024 * exceptions when something got corrupted coming in through int 18.
1025 *
1026 * This is executed in NMI context not subject to normal locking rules. This
1027 * implies that most kernel services cannot be safely used. Don't even
1028 * think about putting a printk in there!
Andi Kleen3c079792009-05-27 21:56:55 +02001029 *
1030 * On Intel systems this is entered on all CPUs in parallel through
1031 * MCE broadcast. However some CPUs might be broken beyond repair,
1032 * so be always careful when synchronizing with others.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 */
Ingo Molnare9eee032009-04-08 12:31:17 +02001034void do_machine_check(struct pt_regs *regs, long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035{
Borislav Petkov14625942012-10-17 12:05:33 +02001036 struct mca_config *cfg = &mca_cfg;
Andi Kleen3c079792009-05-27 21:56:55 +02001037 struct mce m, *final;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 int i;
Andi Kleen3c079792009-05-27 21:56:55 +02001039 int worst = 0;
1040 int severity;
Yazen Ghannamfead35c2016-04-30 14:33:57 +02001041
Andi Kleen3c079792009-05-27 21:56:55 +02001042 /*
1043 * Establish sequential order between the CPUs entering the machine
1044 * check handler.
1045 */
Yazen Ghannamfead35c2016-04-30 14:33:57 +02001046 int order = -1;
Tim Hockinbd784322007-07-21 17:10:37 +02001047 /*
1048 * If no_way_out gets set, there is no safe way to recover from this
Borislav Petkovd203f0b2012-10-15 18:03:57 +02001049 * MCE. If mca_cfg.tolerant is cranked up, we'll try anyway.
Tim Hockinbd784322007-07-21 17:10:37 +02001050 */
1051 int no_way_out = 0;
1052 /*
1053 * If kill_it gets set, there might be a way to recover from this
1054 * error.
1055 */
1056 int kill_it = 0;
Andi Kleenb79109c2009-02-12 13:43:23 +01001057 DECLARE_BITMAP(toclear, MAX_NR_BANKS);
Tony Luck95022b82012-04-18 15:19:40 -07001058 DECLARE_BITMAP(valid_banks, MAX_NR_BANKS);
Andi Kleenbd19a5e2009-05-27 21:56:55 +02001059 char *msg = "Unknown";
Yazen Ghannamfead35c2016-04-30 14:33:57 +02001060
1061 /*
1062 * MCEs are always local on AMD. Same is determined by MCG_STATUS_LMCES
1063 * on Intel.
1064 */
1065 int lmce = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066
Ashok Rajd90167a2015-12-10 11:12:26 +01001067 /* If this CPU is offline, just bail out. */
1068 if (cpu_is_offline(smp_processor_id())) {
1069 u64 mcgstatus;
1070
1071 mcgstatus = mce_rdmsrl(MSR_IA32_MCG_STATUS);
1072 if (mcgstatus & MCG_STATUS_RIPV) {
1073 mce_wrmsrl(MSR_IA32_MCG_STATUS, 0);
1074 return;
1075 }
1076 }
1077
Andy Lutomirski8c840142015-07-03 12:44:32 -07001078 ist_enter(regs);
Andy Lutomirski95927472014-11-19 17:41:09 -08001079
Alex Shic6ae41e2012-05-11 15:35:27 +08001080 this_cpu_inc(mce_exception_count);
Andi Kleen01ca79f2009-05-27 21:56:52 +02001081
Borislav Petkov14625942012-10-17 12:05:33 +02001082 if (!cfg->banks)
Andi Kleen32561692009-05-27 21:56:53 +02001083 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084
Hidetoshi Setob8325c52011-06-08 10:57:46 +09001085 mce_gather_info(&m, regs);
Andi Kleenb5f2fa42009-02-12 13:43:22 +01001086
Christoph Lameter89cbc762014-08-17 12:30:40 -05001087 final = this_cpu_ptr(&mces_seen);
Andi Kleen3c079792009-05-27 21:56:55 +02001088 *final = m;
1089
Tony Luck95022b82012-04-18 15:19:40 -07001090 memset(valid_banks, 0, sizeof(valid_banks));
Tony Luck61b0fcc2012-07-19 11:28:46 -07001091 no_way_out = mce_no_way_out(&m, &msg, valid_banks, regs);
Hidetoshi Seto680b6cf2009-08-26 16:20:36 +09001092
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 barrier();
1094
Andi Kleen3c079792009-05-27 21:56:55 +02001095 /*
Tony Lucka8c321f2012-01-03 11:45:45 -08001096 * When no restart IP might need to kill or panic.
1097 * Assume the worst for now, but if we find the
1098 * severity is MCE_AR_SEVERITY we have other options.
Andi Kleened7290d2009-05-27 21:56:57 +02001099 */
1100 if (!(m.mcgstatus & MCG_STATUS_RIPV))
1101 kill_it = 1;
1102
1103 /*
Yazen Ghannamfead35c2016-04-30 14:33:57 +02001104 * Check if this MCE is signaled to only this logical processor,
1105 * on Intel only.
Andi Kleen3c079792009-05-27 21:56:55 +02001106 */
Yazen Ghannamfead35c2016-04-30 14:33:57 +02001107 if (m.cpuvendor == X86_VENDOR_INTEL)
1108 lmce = m.mcgstatus & MCG_STATUS_LMCES;
1109
1110 /*
1111 * Go through all banks in exclusion of the other CPUs. This way we
1112 * don't report duplicated events on shared banks because the first one
1113 * to see it will clear it. If this is a Local MCE, then no need to
1114 * perform rendezvous.
1115 */
1116 if (!lmce)
Ashok Raj243d6572015-06-04 18:55:24 +02001117 order = mce_start(&no_way_out);
Ashok Raj243d6572015-06-04 18:55:24 +02001118
Borislav Petkov14625942012-10-17 12:05:33 +02001119 for (i = 0; i < cfg->banks; i++) {
Andi Kleenb79109c2009-02-12 13:43:23 +01001120 __clear_bit(i, toclear);
Tony Luck95022b82012-04-18 15:19:40 -07001121 if (!test_bit(i, valid_banks))
1122 continue;
Andi Kleencebe1822009-07-09 00:31:43 +02001123 if (!mce_banks[i].ctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 continue;
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001125
1126 m.misc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 m.addr = 0;
1128 m.bank = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129
Yazen Ghannamd9d73fc2016-04-30 14:33:55 +02001130 m.status = mce_rdmsrl(msr_ops.status(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 if ((m.status & MCI_STATUS_VAL) == 0)
1132 continue;
1133
Andi Kleenb79109c2009-02-12 13:43:23 +01001134 /*
Andi Kleened7290d2009-05-27 21:56:57 +02001135 * Non uncorrected or non signaled errors are handled by
1136 * machine_check_poll. Leave them alone, unless this panics.
Andi Kleenb79109c2009-02-12 13:43:23 +01001137 */
Borislav Petkov14625942012-10-17 12:05:33 +02001138 if (!(m.status & (cfg->ser ? MCI_STATUS_S : MCI_STATUS_UC)) &&
Andi Kleened7290d2009-05-27 21:56:57 +02001139 !no_way_out)
Andi Kleenb79109c2009-02-12 13:43:23 +01001140 continue;
1141
1142 /*
1143 * Set taint even when machine check was not enabled.
1144 */
Rusty Russell373d4d02013-01-21 17:17:39 +10301145 add_taint(TAINT_MACHINE_CHECK, LOCKDEP_NOW_UNRELIABLE);
Andi Kleenb79109c2009-02-12 13:43:23 +01001146
Chen Yuconge3480272014-11-18 10:09:19 +08001147 severity = mce_severity(&m, cfg->tolerant, NULL, true);
Andi Kleenb79109c2009-02-12 13:43:23 +01001148
Andi Kleened7290d2009-05-27 21:56:57 +02001149 /*
Chen Yuconge3480272014-11-18 10:09:19 +08001150 * When machine check was for corrected/deferred handler don't
1151 * touch, unless we're panicing.
Andi Kleened7290d2009-05-27 21:56:57 +02001152 */
Chen Yuconge3480272014-11-18 10:09:19 +08001153 if ((severity == MCE_KEEP_SEVERITY ||
1154 severity == MCE_UCNA_SEVERITY) && !no_way_out)
Andi Kleened7290d2009-05-27 21:56:57 +02001155 continue;
1156 __set_bit(i, toclear);
1157 if (severity == MCE_NO_SEVERITY) {
Andi Kleenb79109c2009-02-12 13:43:23 +01001158 /*
1159 * Machine check event was not enabled. Clear, but
1160 * ignore.
1161 */
1162 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 }
1164
Tony Luck85f926942011-12-13 09:48:13 -08001165 mce_read_aux(&m, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166
Chen, Gongfd4cf792015-08-12 18:29:36 +02001167 /* assuming valid severity level != 0 */
1168 m.severity = severity;
Andi Kleen9b1beaf2009-05-27 21:56:59 +02001169
Andi Kleenb79109c2009-02-12 13:43:23 +01001170 mce_log(&m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
Andi Kleen3c079792009-05-27 21:56:55 +02001172 if (severity > worst) {
1173 *final = m;
1174 worst = severity;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 }
1177
Tony Lucka8c321f2012-01-03 11:45:45 -08001178 /* mce_clear_state will clear *final, save locally for use later */
1179 m = *final;
1180
Andi Kleen3c079792009-05-27 21:56:55 +02001181 if (!no_way_out)
1182 mce_clear_state(toclear);
1183
Ingo Molnare9eee032009-04-08 12:31:17 +02001184 /*
Andi Kleen3c079792009-05-27 21:56:55 +02001185 * Do most of the synchronization with other CPUs.
1186 * When there's any problem use only local no_way_out state.
Ingo Molnare9eee032009-04-08 12:31:17 +02001187 */
Ashok Raj243d6572015-06-04 18:55:24 +02001188 if (!lmce) {
1189 if (mce_end(order) < 0)
1190 no_way_out = worst >= MCE_PANIC_SEVERITY;
1191 } else {
1192 /*
1193 * Local MCE skipped calling mce_reign()
1194 * If we found a fatal error, we need to panic here.
1195 */
1196 if (worst >= MCE_PANIC_SEVERITY && mca_cfg.tolerant < 3)
1197 mce_panic("Machine check from unknown source",
1198 NULL, NULL);
1199 }
Tim Hockinbd784322007-07-21 17:10:37 +02001200
1201 /*
Tony Luckb2f9d672016-02-17 10:20:13 -08001202 * If tolerant is at an insane level we drop requests to kill
1203 * processes and continue even when there is no way out.
Tim Hockinbd784322007-07-21 17:10:37 +02001204 */
Tony Luckb2f9d672016-02-17 10:20:13 -08001205 if (cfg->tolerant == 3)
1206 kill_it = 0;
1207 else if (no_way_out)
1208 mce_panic("Fatal machine check on current CPU", &m, msg);
Tim Hockine02e68d2007-07-21 17:10:36 +02001209
Andi Kleen3c079792009-05-27 21:56:55 +02001210 if (worst > 0)
1211 mce_report_event(regs);
Andi Kleen5f8c1a52009-04-29 19:29:12 +02001212 mce_wrmsrl(MSR_IA32_MCG_STATUS, 0);
Andi Kleen32561692009-05-27 21:56:53 +02001213out:
Andi Kleen88921be2009-05-27 21:56:51 +02001214 sync_core();
Luck, Tonyd4812e12015-01-05 16:44:42 -08001215
Tony Luckb2f9d672016-02-17 10:20:13 -08001216 if (worst != MCE_AR_SEVERITY && !kill_it)
1217 goto out_ist;
Luck, Tonyd4812e12015-01-05 16:44:42 -08001218
Tony Luckb2f9d672016-02-17 10:20:13 -08001219 /* Fault was in user mode and we need to take some action */
1220 if ((m.cs & 3) == 3) {
1221 ist_begin_non_atomic(regs);
1222 local_irq_enable();
1223
1224 if (kill_it || do_memory_failure(&m))
1225 force_sig(SIGBUS, current);
1226 local_irq_disable();
1227 ist_end_non_atomic();
1228 } else {
1229 if (!fixup_exception(regs, X86_TRAP_MC))
1230 mce_panic("Failed kernel mode recovery", &m, NULL);
Luck, Tonyd4812e12015-01-05 16:44:42 -08001231 }
Tony Luckb2f9d672016-02-17 10:20:13 -08001232
1233out_ist:
Andy Lutomirski8c840142015-07-03 12:44:32 -07001234 ist_exit(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235}
Andi Kleenea149b32009-04-29 19:31:00 +02001236EXPORT_SYMBOL_GPL(do_machine_check);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237
Tony Luckcd42f4a2011-12-15 10:48:12 -08001238#ifndef CONFIG_MEMORY_FAILURE
1239int memory_failure(unsigned long pfn, int vector, int flags)
Andi Kleen9b1beaf2009-05-27 21:56:59 +02001240{
Tony Lucka8c321f2012-01-03 11:45:45 -08001241 /* mce_severity() should not hand us an ACTION_REQUIRED error */
1242 BUG_ON(flags & MF_ACTION_REQUIRED);
Joe Perchesc767a542012-05-21 19:50:07 -07001243 pr_err("Uncorrected memory error in page 0x%lx ignored\n"
1244 "Rebuild kernel with CONFIG_MEMORY_FAILURE=y for smarter handling\n",
1245 pfn);
Tony Luckcd42f4a2011-12-15 10:48:12 -08001246
1247 return 0;
Andi Kleen9b1beaf2009-05-27 21:56:59 +02001248}
Tony Luckcd42f4a2011-12-15 10:48:12 -08001249#endif
Andi Kleen9b1beaf2009-05-27 21:56:59 +02001250
1251/*
Tony Lucka8c321f2012-01-03 11:45:45 -08001252 * Action optional processing happens here (picking up
1253 * from the list of faulting pages that do_machine_check()
Chen, Gongfd4cf792015-08-12 18:29:36 +02001254 * placed into the genpool).
Tony Lucka8c321f2012-01-03 11:45:45 -08001255 */
Andi Kleen9b1beaf2009-05-27 21:56:59 +02001256static void mce_process_work(struct work_struct *dummy)
1257{
Chen, Gongfd4cf792015-08-12 18:29:36 +02001258 mce_gen_pool_process();
Andi Kleen9b1beaf2009-05-27 21:56:59 +02001259}
1260
Dmitriy Zavin15d5f832006-09-26 10:52:42 +02001261#ifdef CONFIG_X86_MCE_INTEL
1262/***
1263 * mce_log_therm_throt_event - Logs the thermal throttling event to mcelog
Simon Arlott676b1852007-10-20 01:25:36 +02001264 * @cpu: The CPU on which the event occurred.
Dmitriy Zavin15d5f832006-09-26 10:52:42 +02001265 * @status: Event status information
1266 *
1267 * This function should be called by the thermal interrupt after the
1268 * event has been processed and the decision was made to log the event
1269 * further.
1270 *
1271 * The status parameter will be saved to the 'status' field of 'struct mce'
1272 * and historically has been the register value of the
1273 * MSR_IA32_THERMAL_STATUS (Intel) msr.
1274 */
Andi Kleenb5f2fa42009-02-12 13:43:22 +01001275void mce_log_therm_throt_event(__u64 status)
Dmitriy Zavin15d5f832006-09-26 10:52:42 +02001276{
1277 struct mce m;
1278
Andi Kleenb5f2fa42009-02-12 13:43:22 +01001279 mce_setup(&m);
Dmitriy Zavin15d5f832006-09-26 10:52:42 +02001280 m.bank = MCE_THERMAL_BANK;
1281 m.status = status;
Dmitriy Zavin15d5f832006-09-26 10:52:42 +02001282 mce_log(&m);
1283}
1284#endif /* CONFIG_X86_MCE_INTEL */
1285
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286/*
Tim Hockin8a336b02007-05-02 19:27:19 +02001287 * Periodic polling timer for "silent" machine check errors. If the
1288 * poller finds an MCE, poll 2x faster. When the poller finds no more
1289 * errors, poll 2x slower (up to check_interval seconds).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 */
Borislav Petkov3f2f0682015-01-13 15:08:51 +01001291static unsigned long check_interval = INITIAL_CHECK_INTERVAL;
Ingo Molnare9eee032009-04-08 12:31:17 +02001292
Thomas Gleixner82f7af02012-05-24 17:54:51 +00001293static DEFINE_PER_CPU(unsigned long, mce_next_interval); /* in jiffies */
Andi Kleen52d168e2009-02-12 13:39:29 +01001294static DEFINE_PER_CPU(struct timer_list, mce_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
Chen Gong55babd82012-08-09 11:44:51 -07001296static unsigned long mce_adjust_timer_default(unsigned long interval)
1297{
1298 return interval;
1299}
1300
Borislav Petkov3f2f0682015-01-13 15:08:51 +01001301static unsigned long (*mce_adjust_timer)(unsigned long interval) = mce_adjust_timer_default;
Chen Gong55babd82012-08-09 11:44:51 -07001302
Borislav Petkov3f2f0682015-01-13 15:08:51 +01001303static void __restart_timer(struct timer_list *t, unsigned long interval)
Chen, Gong27f6c572014-03-27 21:24:36 -04001304{
Chen Gong55babd82012-08-09 11:44:51 -07001305 unsigned long when = jiffies + interval;
Borislav Petkov3f2f0682015-01-13 15:08:51 +01001306 unsigned long flags;
1307
1308 local_irq_save(flags);
Chen Gong55babd82012-08-09 11:44:51 -07001309
1310 if (timer_pending(t)) {
1311 if (time_before(when, t->expires))
Thomas Gleixnerf9c287b2016-07-04 09:50:17 +00001312 mod_timer(t, when);
Chen Gong55babd82012-08-09 11:44:51 -07001313 } else {
1314 t->expires = round_jiffies(when);
1315 add_timer_on(t, smp_processor_id());
1316 }
Borislav Petkov3f2f0682015-01-13 15:08:51 +01001317
1318 local_irq_restore(flags);
1319}
1320
1321static void mce_timer_fn(unsigned long data)
1322{
1323 struct timer_list *t = this_cpu_ptr(&mce_timer);
1324 int cpu = smp_processor_id();
1325 unsigned long iv;
1326
1327 WARN_ON(cpu != data);
1328
1329 iv = __this_cpu_read(mce_next_interval);
1330
1331 if (mce_available(this_cpu_ptr(&cpu_info))) {
1332 machine_check_poll(MCP_TIMESTAMP, this_cpu_ptr(&mce_poll_banks));
1333
1334 if (mce_intel_cmci_poll()) {
1335 iv = mce_adjust_timer(iv);
1336 goto done;
1337 }
1338 }
1339
1340 /*
1341 * Alert userspace if needed. If we logged an MCE, reduce the polling
1342 * interval, otherwise increase the polling interval.
1343 */
1344 if (mce_notify_irq())
1345 iv = max(iv / 2, (unsigned long) HZ/100);
1346 else
1347 iv = min(iv * 2, round_jiffies_relative(check_interval * HZ));
1348
1349done:
1350 __this_cpu_write(mce_next_interval, iv);
1351 __restart_timer(t, iv);
1352}
1353
1354/*
1355 * Ensure that the timer is firing in @interval from now.
1356 */
1357void mce_timer_kick(unsigned long interval)
1358{
1359 struct timer_list *t = this_cpu_ptr(&mce_timer);
1360 unsigned long iv = __this_cpu_read(mce_next_interval);
1361
1362 __restart_timer(t, interval);
1363
Chen Gong55babd82012-08-09 11:44:51 -07001364 if (interval < iv)
1365 __this_cpu_write(mce_next_interval, interval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366}
1367
Hidetoshi Seto9aaef962011-06-17 04:40:36 -04001368/* Must not be called in IRQ context where del_timer_sync() can deadlock */
1369static void mce_timer_delete_all(void)
1370{
1371 int cpu;
1372
1373 for_each_online_cpu(cpu)
1374 del_timer_sync(&per_cpu(mce_timer, cpu));
1375}
1376
Andi Kleen9bd98402009-02-12 13:39:28 +01001377static void mce_do_trigger(struct work_struct *work)
1378{
Hidetoshi Seto1020bcb2009-06-15 17:20:57 +09001379 call_usermodehelper(mce_helper, mce_helper_argv, NULL, UMH_NO_WAIT);
Andi Kleen9bd98402009-02-12 13:39:28 +01001380}
1381
1382static DECLARE_WORK(mce_trigger_work, mce_do_trigger);
1383
Tim Hockine02e68d2007-07-21 17:10:36 +02001384/*
Andi Kleen9bd98402009-02-12 13:39:28 +01001385 * Notify the user(s) about new machine check events.
1386 * Can be called from interrupt context, but not from machine check/NMI
1387 * context.
Tim Hockine02e68d2007-07-21 17:10:36 +02001388 */
Andi Kleen9ff36ee2009-05-27 21:56:58 +02001389int mce_notify_irq(void)
Tim Hockine02e68d2007-07-21 17:10:36 +02001390{
Andi Kleen8457c842009-02-12 13:49:33 +01001391 /* Not more than two messages every minute */
1392 static DEFINE_RATELIMIT_STATE(ratelimit, 60*HZ, 2);
1393
Hidetoshi Seto1020bcb2009-06-15 17:20:57 +09001394 if (test_and_clear_bit(0, &mce_need_notify)) {
Hidetoshi Seto93b62c32011-06-08 11:00:45 +09001395 /* wake processes polling /dev/mcelog */
1396 wake_up_interruptible(&mce_chrdev_wait);
Andi Kleen9bd98402009-02-12 13:39:28 +01001397
Tejun Heo4d899be2012-12-21 17:57:05 -08001398 if (mce_helper[0])
Andi Kleen9bd98402009-02-12 13:39:28 +01001399 schedule_work(&mce_trigger_work);
Tim Hockine02e68d2007-07-21 17:10:36 +02001400
Andi Kleen8457c842009-02-12 13:49:33 +01001401 if (__ratelimit(&ratelimit))
Huang Yinga2d7b0d2010-06-08 14:35:39 +08001402 pr_info(HW_ERR "Machine check events logged\n");
Tim Hockine02e68d2007-07-21 17:10:36 +02001403
1404 return 1;
1405 }
1406 return 0;
1407}
Andi Kleen9ff36ee2009-05-27 21:56:58 +02001408EXPORT_SYMBOL_GPL(mce_notify_irq);
Tim Hockine02e68d2007-07-21 17:10:36 +02001409
Paul Gortmaker148f9bb2013-06-18 18:23:59 -04001410static int __mcheck_cpu_mce_banks_init(void)
Andi Kleencebe1822009-07-09 00:31:43 +02001411{
1412 int i;
Borislav Petkovd203f0b2012-10-15 18:03:57 +02001413 u8 num_banks = mca_cfg.banks;
Andi Kleencebe1822009-07-09 00:31:43 +02001414
Borislav Petkovd203f0b2012-10-15 18:03:57 +02001415 mce_banks = kzalloc(num_banks * sizeof(struct mce_bank), GFP_KERNEL);
Andi Kleencebe1822009-07-09 00:31:43 +02001416 if (!mce_banks)
1417 return -ENOMEM;
Borislav Petkovd203f0b2012-10-15 18:03:57 +02001418
1419 for (i = 0; i < num_banks; i++) {
Andi Kleencebe1822009-07-09 00:31:43 +02001420 struct mce_bank *b = &mce_banks[i];
Ingo Molnar11868a22009-09-23 17:49:55 +02001421
Andi Kleencebe1822009-07-09 00:31:43 +02001422 b->ctl = -1ULL;
1423 b->init = 1;
1424 }
1425 return 0;
1426}
1427
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001428/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 * Initialize Machine Checks for a CPU.
1430 */
Paul Gortmaker148f9bb2013-06-18 18:23:59 -04001431static int __mcheck_cpu_cap_init(void)
Andi Kleen0d7482e32009-02-17 23:07:13 +01001432{
Andi Kleen0d7482e32009-02-17 23:07:13 +01001433 unsigned b;
Ingo Molnare9eee032009-04-08 12:31:17 +02001434 u64 cap;
Andi Kleen0d7482e32009-02-17 23:07:13 +01001435
1436 rdmsrl(MSR_IA32_MCG_CAP, cap);
Thomas Gleixner01c66802009-04-08 12:31:24 +02001437
1438 b = cap & MCG_BANKCNT_MASK;
Borislav Petkovd203f0b2012-10-15 18:03:57 +02001439 if (!mca_cfg.banks)
Joe Perchesc767a542012-05-21 19:50:07 -07001440 pr_info("CPU supports %d MCE banks\n", b);
Ingo Molnarb6592942009-04-08 12:31:27 +02001441
Andi Kleen0d7482e32009-02-17 23:07:13 +01001442 if (b > MAX_NR_BANKS) {
Joe Perchesc767a542012-05-21 19:50:07 -07001443 pr_warn("Using only %u machine check banks out of %u\n",
Andi Kleen0d7482e32009-02-17 23:07:13 +01001444 MAX_NR_BANKS, b);
1445 b = MAX_NR_BANKS;
1446 }
1447
1448 /* Don't support asymmetric configurations today */
Borislav Petkovd203f0b2012-10-15 18:03:57 +02001449 WARN_ON(mca_cfg.banks != 0 && b != mca_cfg.banks);
1450 mca_cfg.banks = b;
1451
Andi Kleencebe1822009-07-09 00:31:43 +02001452 if (!mce_banks) {
Hidetoshi Setocffd3772009-11-12 15:52:40 +09001453 int err = __mcheck_cpu_mce_banks_init();
Ingo Molnar11868a22009-09-23 17:49:55 +02001454
Andi Kleencebe1822009-07-09 00:31:43 +02001455 if (err)
1456 return err;
Andi Kleen0d7482e32009-02-17 23:07:13 +01001457 }
1458
1459 /* Use accurate RIP reporting if available. */
Thomas Gleixner01c66802009-04-08 12:31:24 +02001460 if ((cap & MCG_EXT_P) && MCG_EXT_CNT(cap) >= 9)
Borislav Petkov84c25592012-10-15 19:59:18 +02001461 mca_cfg.rip_msr = MSR_IA32_MCG_EIP;
Andi Kleen0d7482e32009-02-17 23:07:13 +01001462
Andi Kleened7290d2009-05-27 21:56:57 +02001463 if (cap & MCG_SER_P)
Borislav Petkov14625942012-10-17 12:05:33 +02001464 mca_cfg.ser = true;
Andi Kleened7290d2009-05-27 21:56:57 +02001465
Andi Kleen0d7482e32009-02-17 23:07:13 +01001466 return 0;
1467}
1468
Borislav Petkov5e099542009-10-16 12:31:32 +02001469static void __mcheck_cpu_init_generic(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470{
Borislav Petkov84c25592012-10-15 19:59:18 +02001471 enum mcp_flags m_fl = 0;
Ingo Molnare9eee032009-04-08 12:31:17 +02001472 mce_banks_t all_banks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 u64 cap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474
Borislav Petkov84c25592012-10-15 19:59:18 +02001475 if (!mca_cfg.bootlog)
1476 m_fl = MCP_DONTLOG;
1477
Andi Kleenb79109c2009-02-12 13:43:23 +01001478 /*
1479 * Log the machine checks left over from the previous reset.
1480 */
Andi Kleenee031c32009-02-12 13:49:34 +01001481 bitmap_fill(all_banks, MAX_NR_BANKS);
Borislav Petkov84c25592012-10-15 19:59:18 +02001482 machine_check_poll(MCP_UC | m_fl, &all_banks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483
Andy Lutomirski375074c2014-10-24 15:58:07 -07001484 cr4_set_bits(X86_CR4_MCE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485
Andi Kleen0d7482e32009-02-17 23:07:13 +01001486 rdmsrl(MSR_IA32_MCG_CAP, cap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 if (cap & MCG_CTL_P)
1488 wrmsr(MSR_IA32_MCG_CTL, 0xffffffff, 0xffffffff);
Aravind Gopalakrishnanbb91f8c2016-04-30 14:33:53 +02001489}
1490
1491static void __mcheck_cpu_init_clear_banks(void)
1492{
1493 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494
Borislav Petkovd203f0b2012-10-15 18:03:57 +02001495 for (i = 0; i < mca_cfg.banks; i++) {
Andi Kleencebe1822009-07-09 00:31:43 +02001496 struct mce_bank *b = &mce_banks[i];
Ingo Molnar11868a22009-09-23 17:49:55 +02001497
Andi Kleencebe1822009-07-09 00:31:43 +02001498 if (!b->init)
Andi Kleen06b7a7a2009-04-27 18:37:43 +02001499 continue;
Yazen Ghannamd9d73fc2016-04-30 14:33:55 +02001500 wrmsrl(msr_ops.ctl(i), b->ctl);
1501 wrmsrl(msr_ops.status(i), 0);
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001502 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503}
1504
Tony Luck61b0fcc2012-07-19 11:28:46 -07001505/*
1506 * During IFU recovery Sandy Bridge -EP4S processors set the RIPV and
1507 * EIPV bits in MCG_STATUS to zero on the affected logical processor (SDM
1508 * Vol 3B Table 15-20). But this confuses both the code that determines
1509 * whether the machine check occurred in kernel or user mode, and also
1510 * the severity assessment code. Pretend that EIPV was set, and take the
1511 * ip/cs values from the pt_regs that mce_gather_info() ignored earlier.
1512 */
1513static void quirk_sandybridge_ifu(int bank, struct mce *m, struct pt_regs *regs)
1514{
1515 if (bank != 0)
1516 return;
1517 if ((m->mcgstatus & (MCG_STATUS_EIPV|MCG_STATUS_RIPV)) != 0)
1518 return;
1519 if ((m->status & (MCI_STATUS_OVER|MCI_STATUS_UC|
1520 MCI_STATUS_EN|MCI_STATUS_MISCV|MCI_STATUS_ADDRV|
1521 MCI_STATUS_PCC|MCI_STATUS_S|MCI_STATUS_AR|
1522 MCACOD)) !=
1523 (MCI_STATUS_UC|MCI_STATUS_EN|
1524 MCI_STATUS_MISCV|MCI_STATUS_ADDRV|MCI_STATUS_S|
1525 MCI_STATUS_AR|MCACOD_INSTR))
1526 return;
1527
1528 m->mcgstatus |= MCG_STATUS_EIPV;
1529 m->ip = regs->ip;
1530 m->cs = regs->cs;
1531}
1532
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533/* Add per CPU specific workarounds here */
Paul Gortmaker148f9bb2013-06-18 18:23:59 -04001534static int __mcheck_cpu_apply_quirks(struct cpuinfo_x86 *c)
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001535{
Borislav Petkovd203f0b2012-10-15 18:03:57 +02001536 struct mca_config *cfg = &mca_cfg;
1537
Ingo Molnare412cd22009-08-17 10:19:00 +02001538 if (c->x86_vendor == X86_VENDOR_UNKNOWN) {
Joe Perchesc767a542012-05-21 19:50:07 -07001539 pr_info("unknown CPU type - not enabling MCE support\n");
Ingo Molnare412cd22009-08-17 10:19:00 +02001540 return -EOPNOTSUPP;
1541 }
1542
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 /* This should be disabled by the BIOS, but isn't always */
Jan Beulich911f6a72008-04-22 16:22:21 +01001544 if (c->x86_vendor == X86_VENDOR_AMD) {
Borislav Petkovd203f0b2012-10-15 18:03:57 +02001545 if (c->x86 == 15 && cfg->banks > 4) {
Ingo Molnare9eee032009-04-08 12:31:17 +02001546 /*
1547 * disable GART TBL walk error reporting, which
1548 * trips off incorrectly with the IOMMU & 3ware
1549 * & Cerberus:
1550 */
Andi Kleencebe1822009-07-09 00:31:43 +02001551 clear_bit(10, (unsigned long *)&mce_banks[4].ctl);
Ingo Molnare9eee032009-04-08 12:31:17 +02001552 }
Aravind Gopalakrishnan10001d912016-04-30 14:33:51 +02001553 if (c->x86 < 17 && cfg->bootlog < 0) {
Ingo Molnare9eee032009-04-08 12:31:17 +02001554 /*
1555 * Lots of broken BIOS around that don't clear them
1556 * by default and leave crap in there. Don't log:
1557 */
Borislav Petkov84c25592012-10-15 19:59:18 +02001558 cfg->bootlog = 0;
Ingo Molnare9eee032009-04-08 12:31:17 +02001559 }
Andi Kleen2e6f6942009-04-27 18:42:48 +02001560 /*
1561 * Various K7s with broken bank 0 around. Always disable
1562 * by default.
1563 */
Borislav Petkovc9ce8712015-03-13 23:30:47 +01001564 if (c->x86 == 6 && cfg->banks > 0)
Andi Kleencebe1822009-07-09 00:31:43 +02001565 mce_banks[0].ctl = 0;
Borislav Petkov575203b2012-04-20 18:01:34 +02001566
Borislav Petkovc9ce8712015-03-13 23:30:47 +01001567 /*
Aravind Gopalakrishnanbf80bbd2015-03-23 10:42:52 -05001568 * overflow_recov is supported for F15h Models 00h-0fh
1569 * even though we don't have a CPUID bit for it.
1570 */
1571 if (c->x86 == 0x15 && c->x86_model <= 0xf)
1572 mce_flags.overflow_recov = 1;
1573
1574 /*
Borislav Petkovc9ce8712015-03-13 23:30:47 +01001575 * Turn off MC4_MISC thresholding banks on those models since
1576 * they're not supported there.
1577 */
1578 if (c->x86 == 0x15 &&
1579 (c->x86_model >= 0x10 && c->x86_model <= 0x1f)) {
1580 int i;
1581 u64 hwcr;
1582 bool need_toggle;
1583 u32 msrs[] = {
Borislav Petkov575203b2012-04-20 18:01:34 +02001584 0x00000413, /* MC4_MISC0 */
1585 0xc0000408, /* MC4_MISC1 */
Borislav Petkovc9ce8712015-03-13 23:30:47 +01001586 };
Borislav Petkov575203b2012-04-20 18:01:34 +02001587
Borislav Petkovc9ce8712015-03-13 23:30:47 +01001588 rdmsrl(MSR_K7_HWCR, hwcr);
Borislav Petkov575203b2012-04-20 18:01:34 +02001589
Borislav Petkovc9ce8712015-03-13 23:30:47 +01001590 /* McStatusWrEn has to be set */
1591 need_toggle = !(hwcr & BIT(18));
Borislav Petkov575203b2012-04-20 18:01:34 +02001592
Borislav Petkovc9ce8712015-03-13 23:30:47 +01001593 if (need_toggle)
1594 wrmsrl(MSR_K7_HWCR, hwcr | BIT(18));
Borislav Petkov575203b2012-04-20 18:01:34 +02001595
Borislav Petkovc9ce8712015-03-13 23:30:47 +01001596 /* Clear CntP bit safely */
1597 for (i = 0; i < ARRAY_SIZE(msrs); i++)
1598 msr_clear_bit(msrs[i], 62);
Borislav Petkov575203b2012-04-20 18:01:34 +02001599
Borislav Petkovc9ce8712015-03-13 23:30:47 +01001600 /* restore old settings */
1601 if (need_toggle)
1602 wrmsrl(MSR_K7_HWCR, hwcr);
1603 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 }
Andi Kleene5835382005-11-05 17:25:54 +01001605
Andi Kleen06b7a7a2009-04-27 18:37:43 +02001606 if (c->x86_vendor == X86_VENDOR_INTEL) {
1607 /*
1608 * SDM documents that on family 6 bank 0 should not be written
1609 * because it aliases to another special BIOS controlled
1610 * register.
1611 * But it's not aliased anymore on model 0x1a+
1612 * Don't ignore bank 0 completely because there could be a
1613 * valid event later, merely don't write CTL0.
1614 */
1615
Borislav Petkovd203f0b2012-10-15 18:03:57 +02001616 if (c->x86 == 6 && c->x86_model < 0x1A && cfg->banks > 0)
Andi Kleencebe1822009-07-09 00:31:43 +02001617 mce_banks[0].init = 0;
Andi Kleen3c079792009-05-27 21:56:55 +02001618
1619 /*
1620 * All newer Intel systems support MCE broadcasting. Enable
1621 * synchronization with a one second timeout.
1622 */
1623 if ((c->x86 > 6 || (c->x86 == 6 && c->x86_model >= 0xe)) &&
Borislav Petkov84c25592012-10-15 19:59:18 +02001624 cfg->monarch_timeout < 0)
1625 cfg->monarch_timeout = USEC_PER_SEC;
Bartlomiej Zolnierkiewiczc7f6fa42009-07-28 23:52:54 +02001626
Ingo Molnare412cd22009-08-17 10:19:00 +02001627 /*
1628 * There are also broken BIOSes on some Pentium M and
1629 * earlier systems:
1630 */
Borislav Petkov84c25592012-10-15 19:59:18 +02001631 if (c->x86 == 6 && c->x86_model <= 13 && cfg->bootlog < 0)
1632 cfg->bootlog = 0;
Tony Luck61b0fcc2012-07-19 11:28:46 -07001633
1634 if (c->x86 == 6 && c->x86_model == 45)
1635 quirk_no_way_out = quirk_sandybridge_ifu;
Tony Luck0f68c082016-02-17 10:20:13 -08001636 /*
1637 * MCG_CAP.MCG_SER_P is necessary but not sufficient to know
1638 * whether this processor will actually generate recoverable
1639 * machine checks. Check to see if this is an E7 model Xeon.
1640 * We can't do a model number check because E5 and E7 use the
1641 * same model number. E5 doesn't support recovery, E7 does.
1642 */
1643 if (mca_cfg.recovery || (mca_cfg.ser &&
1644 !strncmp(c->x86_model_id,
1645 "Intel(R) Xeon(R) CPU E7-", 24)))
1646 set_cpu_cap(c, X86_FEATURE_MCE_RECOVERY);
Andi Kleen06b7a7a2009-04-27 18:37:43 +02001647 }
Borislav Petkov84c25592012-10-15 19:59:18 +02001648 if (cfg->monarch_timeout < 0)
1649 cfg->monarch_timeout = 0;
1650 if (cfg->bootlog != 0)
Borislav Petkov7af19e42012-10-15 20:25:17 +02001651 cfg->panic_timeout = 30;
Ingo Molnare412cd22009-08-17 10:19:00 +02001652
1653 return 0;
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001654}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655
Paul Gortmaker148f9bb2013-06-18 18:23:59 -04001656static int __mcheck_cpu_ancient_init(struct cpuinfo_x86 *c)
Andi Kleen4efc0672009-04-28 19:07:31 +02001657{
1658 if (c->x86 != 5)
Hidetoshi Seto3a97fc32011-06-08 10:58:35 +09001659 return 0;
1660
Andi Kleen4efc0672009-04-28 19:07:31 +02001661 switch (c->x86_vendor) {
1662 case X86_VENDOR_INTEL:
Hidetoshi Setoc6978362009-06-15 17:22:49 +09001663 intel_p5_mcheck_init(c);
Hidetoshi Seto3a97fc32011-06-08 10:58:35 +09001664 return 1;
Andi Kleen4efc0672009-04-28 19:07:31 +02001665 break;
1666 case X86_VENDOR_CENTAUR:
1667 winchip_mcheck_init(c);
Hidetoshi Seto3a97fc32011-06-08 10:58:35 +09001668 return 1;
Andi Kleen4efc0672009-04-28 19:07:31 +02001669 break;
Borislav Petkovdc34bdd2015-10-30 13:11:38 +01001670 default:
1671 return 0;
Andi Kleen4efc0672009-04-28 19:07:31 +02001672 }
Hidetoshi Seto3a97fc32011-06-08 10:58:35 +09001673
1674 return 0;
Andi Kleen4efc0672009-04-28 19:07:31 +02001675}
1676
Borislav Petkov5e099542009-10-16 12:31:32 +02001677static void __mcheck_cpu_init_vendor(struct cpuinfo_x86 *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678{
1679 switch (c->x86_vendor) {
1680 case X86_VENDOR_INTEL:
1681 mce_intel_feature_init(c);
Borislav Petkov3f2f0682015-01-13 15:08:51 +01001682 mce_adjust_timer = cmci_intel_adjust_timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 break;
Aravind Gopalakrishnan7559e132015-05-06 06:58:55 -05001684
1685 case X86_VENDOR_AMD: {
Yazen Ghannam14cddfd2016-05-11 14:58:27 +02001686 mce_flags.overflow_recov = !!cpu_has(c, X86_FEATURE_OVERFLOW_RECOV);
1687 mce_flags.succor = !!cpu_has(c, X86_FEATURE_SUCCOR);
1688 mce_flags.smca = !!cpu_has(c, X86_FEATURE_SMCA);
Yazen Ghannamd9d73fc2016-04-30 14:33:55 +02001689
1690 /*
1691 * Install proper ops for Scalable MCA enabled processors
1692 */
1693 if (mce_flags.smca) {
1694 msr_ops.ctl = smca_ctl_reg;
1695 msr_ops.status = smca_status_reg;
1696 msr_ops.addr = smca_addr_reg;
1697 msr_ops.misc = smca_misc_reg;
1698 }
Aravind Gopalakrishnanbfbe0ee2016-01-25 20:41:48 +01001699 mce_amd_feature_init(c);
Aravind Gopalakrishnanc7f54d22015-10-30 13:11:37 +01001700
Jacob Shin89b831e2005-11-05 17:25:53 +01001701 break;
Aravind Gopalakrishnan7559e132015-05-06 06:58:55 -05001702 }
1703
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 default:
1705 break;
1706 }
1707}
1708
Ashok Raj8838eb62015-08-12 18:29:40 +02001709static void __mcheck_cpu_clear_vendor(struct cpuinfo_x86 *c)
1710{
1711 switch (c->x86_vendor) {
1712 case X86_VENDOR_INTEL:
1713 mce_intel_feature_clear(c);
1714 break;
1715 default:
1716 break;
1717 }
1718}
1719
Thomas Gleixner26c3c282012-07-19 13:59:39 -04001720static void mce_start_timer(unsigned int cpu, struct timer_list *t)
1721{
Borislav Petkov4f75d842013-12-23 18:05:02 +01001722 unsigned long iv = check_interval * HZ;
Thomas Gleixner26c3c282012-07-19 13:59:39 -04001723
Borislav Petkov7af19e42012-10-15 20:25:17 +02001724 if (mca_cfg.ignore_ce || !iv)
Thomas Gleixner26c3c282012-07-19 13:59:39 -04001725 return;
1726
Borislav Petkov4f75d842013-12-23 18:05:02 +01001727 per_cpu(mce_next_interval, cpu) = iv;
1728
Thomas Gleixner26c3c282012-07-19 13:59:39 -04001729 t->expires = round_jiffies(jiffies + iv);
Borislav Petkov4f75d842013-12-23 18:05:02 +01001730 add_timer_on(t, cpu);
Thomas Gleixner26c3c282012-07-19 13:59:39 -04001731}
1732
Borislav Petkov5e099542009-10-16 12:31:32 +02001733static void __mcheck_cpu_init_timer(void)
Andi Kleen52d168e2009-02-12 13:39:29 +01001734{
Christoph Lameter89cbc762014-08-17 12:30:40 -05001735 struct timer_list *t = this_cpu_ptr(&mce_timer);
Thomas Gleixner26c3c282012-07-19 13:59:39 -04001736 unsigned int cpu = smp_processor_id();
Andi Kleen52d168e2009-02-12 13:39:29 +01001737
Thomas Gleixnerf9c287b2016-07-04 09:50:17 +00001738 setup_pinned_timer(t, mce_timer_fn, cpu);
Thomas Gleixner26c3c282012-07-19 13:59:39 -04001739 mce_start_timer(cpu, t);
Andi Kleen52d168e2009-02-12 13:39:29 +01001740}
1741
Andi Kleen9eda8cb2009-07-09 00:31:42 +02001742/* Handle unconfigured int18 (should never happen) */
1743static void unexpected_machine_check(struct pt_regs *regs, long error_code)
1744{
Joe Perchesc767a542012-05-21 19:50:07 -07001745 pr_err("CPU#%d: Unexpected int18 (Machine Check)\n",
Andi Kleen9eda8cb2009-07-09 00:31:42 +02001746 smp_processor_id());
1747}
1748
1749/* Call the installed machine check handler for this CPU setup. */
1750void (*machine_check_vector)(struct pt_regs *, long error_code) =
1751 unexpected_machine_check;
1752
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001753/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 * Called for each booted CPU to set up machine checks.
Ingo Molnare9eee032009-04-08 12:31:17 +02001755 * Must be called with preempt off:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 */
Paul Gortmaker148f9bb2013-06-18 18:23:59 -04001757void mcheck_cpu_init(struct cpuinfo_x86 *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758{
Borislav Petkov14625942012-10-17 12:05:33 +02001759 if (mca_cfg.disabled)
Andi Kleen4efc0672009-04-28 19:07:31 +02001760 return;
1761
Hidetoshi Seto3a97fc32011-06-08 10:58:35 +09001762 if (__mcheck_cpu_ancient_init(c))
1763 return;
Andi Kleen4efc0672009-04-28 19:07:31 +02001764
Andi Kleen5b4408f2009-02-12 13:39:30 +01001765 if (!mce_available(c))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 return;
1767
Borislav Petkov5e099542009-10-16 12:31:32 +02001768 if (__mcheck_cpu_cap_init() < 0 || __mcheck_cpu_apply_quirks(c) < 0) {
Borislav Petkov14625942012-10-17 12:05:33 +02001769 mca_cfg.disabled = true;
Andi Kleen0d7482e32009-02-17 23:07:13 +01001770 return;
1771 }
Andi Kleen0d7482e32009-02-17 23:07:13 +01001772
Chen, Gong648ed942015-08-12 18:29:34 +02001773 if (mce_gen_pool_init()) {
1774 mca_cfg.disabled = true;
1775 pr_emerg("Couldn't allocate MCE records pool!\n");
1776 return;
1777 }
1778
Andi Kleen5d727922009-04-27 19:25:48 +02001779 machine_check_vector = do_machine_check;
1780
Borislav Petkov5e099542009-10-16 12:31:32 +02001781 __mcheck_cpu_init_generic();
1782 __mcheck_cpu_init_vendor(c);
Aravind Gopalakrishnanbb91f8c2016-04-30 14:33:53 +02001783 __mcheck_cpu_init_clear_banks();
Borislav Petkov5e099542009-10-16 12:31:32 +02001784 __mcheck_cpu_init_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785}
1786
1787/*
Ashok Raj8838eb62015-08-12 18:29:40 +02001788 * Called for each booted CPU to clear some machine checks opt-ins
1789 */
1790void mcheck_cpu_clear(struct cpuinfo_x86 *c)
1791{
1792 if (mca_cfg.disabled)
1793 return;
1794
1795 if (!mce_available(c))
1796 return;
1797
1798 /*
1799 * Possibly to clear general settings generic to x86
1800 * __mcheck_cpu_clear_generic(c);
1801 */
1802 __mcheck_cpu_clear_vendor(c);
1803
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804}
1805
1806/*
Hidetoshi Seto93b62c32011-06-08 11:00:45 +09001807 * mce_chrdev: Character device /dev/mcelog to read and clear the MCE log.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 */
1809
Hidetoshi Seto93b62c32011-06-08 11:00:45 +09001810static DEFINE_SPINLOCK(mce_chrdev_state_lock);
1811static int mce_chrdev_open_count; /* #times opened */
1812static int mce_chrdev_open_exclu; /* already open exclusive? */
Tim Hockinf528e7b2007-07-21 17:10:35 +02001813
Hidetoshi Seto93b62c32011-06-08 11:00:45 +09001814static int mce_chrdev_open(struct inode *inode, struct file *file)
Tim Hockinf528e7b2007-07-21 17:10:35 +02001815{
Hidetoshi Seto93b62c32011-06-08 11:00:45 +09001816 spin_lock(&mce_chrdev_state_lock);
Tim Hockinf528e7b2007-07-21 17:10:35 +02001817
Hidetoshi Seto93b62c32011-06-08 11:00:45 +09001818 if (mce_chrdev_open_exclu ||
1819 (mce_chrdev_open_count && (file->f_flags & O_EXCL))) {
1820 spin_unlock(&mce_chrdev_state_lock);
Ingo Molnare9eee032009-04-08 12:31:17 +02001821
Tim Hockinf528e7b2007-07-21 17:10:35 +02001822 return -EBUSY;
1823 }
1824
1825 if (file->f_flags & O_EXCL)
Hidetoshi Seto93b62c32011-06-08 11:00:45 +09001826 mce_chrdev_open_exclu = 1;
1827 mce_chrdev_open_count++;
Tim Hockinf528e7b2007-07-21 17:10:35 +02001828
Hidetoshi Seto93b62c32011-06-08 11:00:45 +09001829 spin_unlock(&mce_chrdev_state_lock);
Tim Hockinf528e7b2007-07-21 17:10:35 +02001830
Tim Hockinbd784322007-07-21 17:10:37 +02001831 return nonseekable_open(inode, file);
Tim Hockinf528e7b2007-07-21 17:10:35 +02001832}
1833
Hidetoshi Seto93b62c32011-06-08 11:00:45 +09001834static int mce_chrdev_release(struct inode *inode, struct file *file)
Tim Hockinf528e7b2007-07-21 17:10:35 +02001835{
Hidetoshi Seto93b62c32011-06-08 11:00:45 +09001836 spin_lock(&mce_chrdev_state_lock);
Tim Hockinf528e7b2007-07-21 17:10:35 +02001837
Hidetoshi Seto93b62c32011-06-08 11:00:45 +09001838 mce_chrdev_open_count--;
1839 mce_chrdev_open_exclu = 0;
Tim Hockinf528e7b2007-07-21 17:10:35 +02001840
Hidetoshi Seto93b62c32011-06-08 11:00:45 +09001841 spin_unlock(&mce_chrdev_state_lock);
Tim Hockinf528e7b2007-07-21 17:10:35 +02001842
1843 return 0;
1844}
1845
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001846static void collect_tscs(void *data)
1847{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 unsigned long *cpu_tsc = (unsigned long *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849
Andy Lutomirski4ea16362015-06-25 18:44:07 +02001850 cpu_tsc[smp_processor_id()] = rdtsc();
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001851}
1852
Huang Ying482908b2010-05-18 14:35:22 +08001853static int mce_apei_read_done;
1854
1855/* Collect MCE record of previous boot in persistent storage via APEI ERST. */
1856static int __mce_read_apei(char __user **ubuf, size_t usize)
1857{
1858 int rc;
1859 u64 record_id;
1860 struct mce m;
1861
1862 if (usize < sizeof(struct mce))
1863 return -EINVAL;
1864
1865 rc = apei_read_mce(&m, &record_id);
1866 /* Error or no more MCE record */
1867 if (rc <= 0) {
1868 mce_apei_read_done = 1;
Naoya Horiguchifadd85f2012-01-23 15:54:52 -05001869 /*
1870 * When ERST is disabled, mce_chrdev_read() should return
1871 * "no record" instead of "no device."
1872 */
1873 if (rc == -ENODEV)
1874 return 0;
Huang Ying482908b2010-05-18 14:35:22 +08001875 return rc;
1876 }
1877 rc = -EFAULT;
1878 if (copy_to_user(*ubuf, &m, sizeof(struct mce)))
1879 return rc;
1880 /*
1881 * In fact, we should have cleared the record after that has
1882 * been flushed to the disk or sent to network in
1883 * /sbin/mcelog, but we have no interface to support that now,
1884 * so just clear it to avoid duplication.
1885 */
1886 rc = apei_clear_mce(record_id);
1887 if (rc) {
1888 mce_apei_read_done = 1;
1889 return rc;
1890 }
1891 *ubuf += sizeof(struct mce);
1892
1893 return 0;
1894}
1895
Hidetoshi Seto93b62c32011-06-08 11:00:45 +09001896static ssize_t mce_chrdev_read(struct file *filp, char __user *ubuf,
1897 size_t usize, loff_t *off)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 char __user *buf = ubuf;
Ingo Molnare9eee032009-04-08 12:31:17 +02001900 unsigned long *cpu_tsc;
1901 unsigned prev, next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 int i, err;
1903
Mike Travis6bca67f2008-07-18 18:11:27 -07001904 cpu_tsc = kmalloc(nr_cpu_ids * sizeof(long), GFP_KERNEL);
Andi Kleenf0de53b2005-04-16 15:25:10 -07001905 if (!cpu_tsc)
1906 return -ENOMEM;
1907
Hidetoshi Seto93b62c32011-06-08 11:00:45 +09001908 mutex_lock(&mce_chrdev_read_mutex);
Huang Ying482908b2010-05-18 14:35:22 +08001909
1910 if (!mce_apei_read_done) {
1911 err = __mce_read_apei(&buf, usize);
1912 if (err || buf != ubuf)
1913 goto out;
1914 }
1915
Borislav Petkov9a7783d2015-08-12 18:29:43 +02001916 next = mce_log_get_idx_check(mcelog.next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917
1918 /* Only supports full reads right now */
Huang Ying482908b2010-05-18 14:35:22 +08001919 err = -EINVAL;
1920 if (*off != 0 || usize < MCE_LOG_LEN*sizeof(struct mce))
1921 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922
1923 err = 0;
Huang Yingef41df4342009-02-12 13:39:34 +01001924 prev = 0;
1925 do {
1926 for (i = prev; i < next; i++) {
1927 unsigned long start = jiffies;
Hidetoshi Seto559faa62011-06-08 11:00:08 +09001928 struct mce *m = &mcelog.entry[i];
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001929
Hidetoshi Seto559faa62011-06-08 11:00:08 +09001930 while (!m->finished) {
Huang Yingef41df4342009-02-12 13:39:34 +01001931 if (time_after_eq(jiffies, start + 2)) {
Hidetoshi Seto559faa62011-06-08 11:00:08 +09001932 memset(m, 0, sizeof(*m));
Huang Yingef41df4342009-02-12 13:39:34 +01001933 goto timeout;
1934 }
1935 cpu_relax();
Andi Kleen673242c2005-09-12 18:49:24 +02001936 }
Huang Yingef41df4342009-02-12 13:39:34 +01001937 smp_rmb();
Hidetoshi Seto559faa62011-06-08 11:00:08 +09001938 err |= copy_to_user(buf, m, sizeof(*m));
1939 buf += sizeof(*m);
Huang Yingef41df4342009-02-12 13:39:34 +01001940timeout:
1941 ;
Andi Kleen673242c2005-09-12 18:49:24 +02001942 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943
Huang Yingef41df4342009-02-12 13:39:34 +01001944 memset(mcelog.entry + prev, 0,
1945 (next - prev) * sizeof(struct mce));
1946 prev = next;
1947 next = cmpxchg(&mcelog.next, prev, 0);
1948 } while (next != prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949
Paul E. McKenneyb2b18662005-06-25 14:55:38 -07001950 synchronize_sched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001952 /*
1953 * Collect entries that were still getting written before the
1954 * synchronize.
1955 */
Jens Axboe15c8b6c2008-05-09 09:39:44 +02001956 on_each_cpu(collect_tscs, cpu_tsc, 1);
Ingo Molnare9eee032009-04-08 12:31:17 +02001957
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001958 for (i = next; i < MCE_LOG_LEN; i++) {
Hidetoshi Seto559faa62011-06-08 11:00:08 +09001959 struct mce *m = &mcelog.entry[i];
1960
1961 if (m->finished && m->tsc < cpu_tsc[m->cpu]) {
1962 err |= copy_to_user(buf, m, sizeof(*m));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 smp_rmb();
Hidetoshi Seto559faa62011-06-08 11:00:08 +09001964 buf += sizeof(*m);
1965 memset(m, 0, sizeof(*m));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 }
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001967 }
Huang Ying482908b2010-05-18 14:35:22 +08001968
1969 if (err)
1970 err = -EFAULT;
1971
1972out:
Hidetoshi Seto93b62c32011-06-08 11:00:45 +09001973 mutex_unlock(&mce_chrdev_read_mutex);
Andi Kleenf0de53b2005-04-16 15:25:10 -07001974 kfree(cpu_tsc);
Ingo Molnare9eee032009-04-08 12:31:17 +02001975
Huang Ying482908b2010-05-18 14:35:22 +08001976 return err ? err : buf - ubuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977}
1978
Hidetoshi Seto93b62c32011-06-08 11:00:45 +09001979static unsigned int mce_chrdev_poll(struct file *file, poll_table *wait)
Tim Hockine02e68d2007-07-21 17:10:36 +02001980{
Hidetoshi Seto93b62c32011-06-08 11:00:45 +09001981 poll_wait(file, &mce_chrdev_wait, wait);
Paul E. McKenneye90328b2015-04-19 18:16:02 -07001982 if (READ_ONCE(mcelog.next))
Tim Hockine02e68d2007-07-21 17:10:36 +02001983 return POLLIN | POLLRDNORM;
Huang Ying482908b2010-05-18 14:35:22 +08001984 if (!mce_apei_read_done && apei_check_mce())
1985 return POLLIN | POLLRDNORM;
Tim Hockine02e68d2007-07-21 17:10:36 +02001986 return 0;
1987}
1988
Hidetoshi Seto93b62c32011-06-08 11:00:45 +09001989static long mce_chrdev_ioctl(struct file *f, unsigned int cmd,
1990 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991{
1992 int __user *p = (int __user *)arg;
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001993
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 if (!capable(CAP_SYS_ADMIN))
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001995 return -EPERM;
Ingo Molnare9eee032009-04-08 12:31:17 +02001996
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 switch (cmd) {
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001998 case MCE_GET_RECORD_LEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 return put_user(sizeof(struct mce), p);
2000 case MCE_GET_LOG_LEN:
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02002001 return put_user(MCE_LOG_LEN, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 case MCE_GETCLEAR_FLAGS: {
2003 unsigned flags;
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02002004
2005 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 flags = mcelog.flags;
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02002007 } while (cmpxchg(&mcelog.flags, flags, 0) != flags);
Ingo Molnare9eee032009-04-08 12:31:17 +02002008
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02002009 return put_user(flags, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 }
2011 default:
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02002012 return -ENOTTY;
2013 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014}
2015
Luck, Tony66f5ddf2011-11-03 11:46:47 -07002016static ssize_t (*mce_write)(struct file *filp, const char __user *ubuf,
2017 size_t usize, loff_t *off);
2018
2019void register_mce_write_callback(ssize_t (*fn)(struct file *filp,
2020 const char __user *ubuf,
2021 size_t usize, loff_t *off))
2022{
2023 mce_write = fn;
2024}
2025EXPORT_SYMBOL_GPL(register_mce_write_callback);
2026
Paul E. McKenney29c68202015-04-21 14:05:25 -07002027static ssize_t mce_chrdev_write(struct file *filp, const char __user *ubuf,
2028 size_t usize, loff_t *off)
Luck, Tony66f5ddf2011-11-03 11:46:47 -07002029{
2030 if (mce_write)
2031 return mce_write(filp, ubuf, usize, off);
2032 else
2033 return -EINVAL;
2034}
2035
2036static const struct file_operations mce_chrdev_ops = {
Hidetoshi Seto93b62c32011-06-08 11:00:45 +09002037 .open = mce_chrdev_open,
2038 .release = mce_chrdev_release,
2039 .read = mce_chrdev_read,
Luck, Tony66f5ddf2011-11-03 11:46:47 -07002040 .write = mce_chrdev_write,
Hidetoshi Seto93b62c32011-06-08 11:00:45 +09002041 .poll = mce_chrdev_poll,
2042 .unlocked_ioctl = mce_chrdev_ioctl,
2043 .llseek = no_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044};
2045
Hidetoshi Seto93b62c32011-06-08 11:00:45 +09002046static struct miscdevice mce_chrdev_device = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 MISC_MCELOG_MINOR,
2048 "mcelog",
2049 &mce_chrdev_ops,
2050};
2051
Naveen N. Raoc3d1fb52013-07-01 21:08:47 +05302052static void __mce_disable_bank(void *arg)
2053{
2054 int bank = *((int *)arg);
Christoph Lameter89cbc762014-08-17 12:30:40 -05002055 __clear_bit(bank, this_cpu_ptr(mce_poll_banks));
Naveen N. Raoc3d1fb52013-07-01 21:08:47 +05302056 cmci_disable_bank(bank);
2057}
2058
2059void mce_disable_bank(int bank)
2060{
2061 if (bank >= mca_cfg.banks) {
2062 pr_warn(FW_BUG
2063 "Ignoring request to disable invalid MCA bank %d.\n",
2064 bank);
2065 return;
2066 }
2067 set_bit(bank, mce_banks_ce_disabled);
2068 on_each_cpu(__mce_disable_bank, &bank, 1);
2069}
2070
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02002071/*
Hidetoshi Seto62fdac52009-06-11 16:06:07 +09002072 * mce=off Disables machine check
2073 * mce=no_cmci Disables CMCI
Ashok Raj88d53862015-06-04 18:55:23 +02002074 * mce=no_lmce Disables LMCE
Hidetoshi Seto62fdac52009-06-11 16:06:07 +09002075 * mce=dont_log_ce Clears corrected events silently, no log created for CEs.
2076 * mce=ignore_ce Disables polling and CMCI, corrected events are not cleared.
Andi Kleen3c079792009-05-27 21:56:55 +02002077 * mce=TOLERANCELEVEL[,monarchtimeout] (number, see above)
2078 * monarchtimeout is how long to wait for other CPUs on machine
2079 * check, or 0 to not wait
Hidetoshi Seto13503fa2009-03-26 17:39:20 +09002080 * mce=bootlog Log MCEs from before booting. Disabled by default on AMD.
2081 * mce=nobootlog Don't log MCEs from before booting.
Naveen N. Rao450cc202012-09-27 10:08:00 -07002082 * mce=bios_cmci_threshold Don't program the CMCI threshold
Hidetoshi Seto13503fa2009-03-26 17:39:20 +09002083 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084static int __init mcheck_enable(char *str)
2085{
Borislav Petkovd203f0b2012-10-15 18:03:57 +02002086 struct mca_config *cfg = &mca_cfg;
2087
Bartlomiej Zolnierkiewicze3346fc2009-07-28 23:55:09 +02002088 if (*str == 0) {
Andi Kleen4efc0672009-04-28 19:07:31 +02002089 enable_p5_mce();
Bartlomiej Zolnierkiewicze3346fc2009-07-28 23:55:09 +02002090 return 1;
2091 }
Andi Kleen4efc0672009-04-28 19:07:31 +02002092 if (*str == '=')
2093 str++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 if (!strcmp(str, "off"))
Borislav Petkov14625942012-10-17 12:05:33 +02002095 cfg->disabled = true;
Hidetoshi Seto62fdac52009-06-11 16:06:07 +09002096 else if (!strcmp(str, "no_cmci"))
Borislav Petkov7af19e42012-10-15 20:25:17 +02002097 cfg->cmci_disabled = true;
Ashok Raj88d53862015-06-04 18:55:23 +02002098 else if (!strcmp(str, "no_lmce"))
2099 cfg->lmce_disabled = true;
Hidetoshi Seto62fdac52009-06-11 16:06:07 +09002100 else if (!strcmp(str, "dont_log_ce"))
Borislav Petkovd203f0b2012-10-15 18:03:57 +02002101 cfg->dont_log_ce = true;
Hidetoshi Seto62fdac52009-06-11 16:06:07 +09002102 else if (!strcmp(str, "ignore_ce"))
Borislav Petkov7af19e42012-10-15 20:25:17 +02002103 cfg->ignore_ce = true;
Hidetoshi Seto13503fa2009-03-26 17:39:20 +09002104 else if (!strcmp(str, "bootlog") || !strcmp(str, "nobootlog"))
Borislav Petkov84c25592012-10-15 19:59:18 +02002105 cfg->bootlog = (str[0] == 'b');
Naveen N. Rao450cc202012-09-27 10:08:00 -07002106 else if (!strcmp(str, "bios_cmci_threshold"))
Borislav Petkov14625942012-10-17 12:05:33 +02002107 cfg->bios_cmci_threshold = true;
Tony Luck0f68c082016-02-17 10:20:13 -08002108 else if (!strcmp(str, "recovery"))
2109 cfg->recovery = true;
Andi Kleen3c079792009-05-27 21:56:55 +02002110 else if (isdigit(str[0])) {
Xie XiuQi5c31b282015-05-26 10:28:21 +02002111 if (get_option(&str, &cfg->tolerant) == 2)
Borislav Petkov84c25592012-10-15 19:59:18 +02002112 get_option(&str, &(cfg->monarch_timeout));
Andi Kleen3c079792009-05-27 21:56:55 +02002113 } else {
Joe Perchesc767a542012-05-21 19:50:07 -07002114 pr_info("mce argument %s ignored. Please use /sys\n", str);
Hidetoshi Seto13503fa2009-03-26 17:39:20 +09002115 return 0;
2116 }
OGAWA Hirofumi9b410462006-03-31 02:30:33 -08002117 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118}
Andi Kleen4efc0672009-04-28 19:07:31 +02002119__setup("mce", mcheck_enable);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120
Yong Wanga2202aa2009-11-10 09:38:24 +08002121int __init mcheck_init(void)
Borislav Petkovb33a6362009-10-16 12:31:33 +02002122{
Yong Wanga2202aa2009-11-10 09:38:24 +08002123 mcheck_intel_therm_init();
Borislav Petkoveef4dfa2015-08-12 18:29:38 +02002124 mce_register_decode_chain(&mce_srao_nb);
Aravind Gopalakrishnan43eaa2a2015-03-23 10:42:53 -05002125 mcheck_vendor_init_severity();
Yong Wanga2202aa2009-11-10 09:38:24 +08002126
Chen, Gong061120a2015-08-12 18:29:35 +02002127 INIT_WORK(&mce_work, mce_process_work);
2128 init_irq_work(&mce_irq_work, mce_irq_work_cb);
2129
Borislav Petkovb33a6362009-10-16 12:31:33 +02002130 return 0;
2131}
Borislav Petkovb33a6362009-10-16 12:31:33 +02002132
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02002133/*
Hidetoshi Setoc7cece82011-06-08 11:02:03 +09002134 * mce_syscore: PM support
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02002135 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136
Andi Kleen973a2dd2009-02-12 13:39:32 +01002137/*
2138 * Disable machine checks on suspend and shutdown. We can't really handle
2139 * them later.
2140 */
Ashok Raj6e067802015-09-28 09:21:43 +02002141static void mce_disable_error_reporting(void)
Andi Kleen973a2dd2009-02-12 13:39:32 +01002142{
2143 int i;
2144
Borislav Petkovd203f0b2012-10-15 18:03:57 +02002145 for (i = 0; i < mca_cfg.banks; i++) {
Andi Kleencebe1822009-07-09 00:31:43 +02002146 struct mce_bank *b = &mce_banks[i];
Ingo Molnar11868a22009-09-23 17:49:55 +02002147
Andi Kleencebe1822009-07-09 00:31:43 +02002148 if (b->init)
Yazen Ghannamd9d73fc2016-04-30 14:33:55 +02002149 wrmsrl(msr_ops.ctl(i), 0);
Andi Kleen06b7a7a2009-04-27 18:37:43 +02002150 }
Ashok Raj6e067802015-09-28 09:21:43 +02002151 return;
2152}
2153
2154static void vendor_disable_error_reporting(void)
2155{
2156 /*
2157 * Don't clear on Intel CPUs. Some of these MSRs are socket-wide.
2158 * Disabling them for just a single offlined CPU is bad, since it will
2159 * inhibit reporting for all shared resources on the socket like the
2160 * last level cache (LLC), the integrated memory controller (iMC), etc.
2161 */
2162 if (boot_cpu_data.x86_vendor == X86_VENDOR_INTEL)
2163 return;
2164
2165 mce_disable_error_reporting();
Andi Kleen973a2dd2009-02-12 13:39:32 +01002166}
2167
Hidetoshi Setoc7cece82011-06-08 11:02:03 +09002168static int mce_syscore_suspend(void)
Andi Kleen973a2dd2009-02-12 13:39:32 +01002169{
Ashok Raj6e067802015-09-28 09:21:43 +02002170 vendor_disable_error_reporting();
2171 return 0;
Andi Kleen973a2dd2009-02-12 13:39:32 +01002172}
2173
Hidetoshi Setoc7cece82011-06-08 11:02:03 +09002174static void mce_syscore_shutdown(void)
Andi Kleen973a2dd2009-02-12 13:39:32 +01002175{
Ashok Raj6e067802015-09-28 09:21:43 +02002176 vendor_disable_error_reporting();
Andi Kleen973a2dd2009-02-12 13:39:32 +01002177}
2178
Ingo Molnare9eee032009-04-08 12:31:17 +02002179/*
2180 * On resume clear all MCE state. Don't want to see leftovers from the BIOS.
2181 * Only one CPU is active at this time, the others get re-added later using
2182 * CPU hotplug:
2183 */
Hidetoshi Setoc7cece82011-06-08 11:02:03 +09002184static void mce_syscore_resume(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185{
Borislav Petkov5e099542009-10-16 12:31:32 +02002186 __mcheck_cpu_init_generic();
Christoph Lameter89cbc762014-08-17 12:30:40 -05002187 __mcheck_cpu_init_vendor(raw_cpu_ptr(&cpu_info));
Aravind Gopalakrishnanbb91f8c2016-04-30 14:33:53 +02002188 __mcheck_cpu_init_clear_banks();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189}
2190
Rafael J. Wysockif3c6ea12011-03-23 22:15:54 +01002191static struct syscore_ops mce_syscore_ops = {
Hidetoshi Setoc7cece82011-06-08 11:02:03 +09002192 .suspend = mce_syscore_suspend,
2193 .shutdown = mce_syscore_shutdown,
2194 .resume = mce_syscore_resume,
Rafael J. Wysockif3c6ea12011-03-23 22:15:54 +01002195};
2196
Hidetoshi Setoc7cece82011-06-08 11:02:03 +09002197/*
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002198 * mce_device: Sysfs support
Hidetoshi Setoc7cece82011-06-08 11:02:03 +09002199 */
2200
Andi Kleen52d168e2009-02-12 13:39:29 +01002201static void mce_cpu_restart(void *data)
2202{
Christoph Lameter89cbc762014-08-17 12:30:40 -05002203 if (!mce_available(raw_cpu_ptr(&cpu_info)))
Hidetoshi Seto33edbf02009-06-15 17:18:45 +09002204 return;
Borislav Petkov5e099542009-10-16 12:31:32 +02002205 __mcheck_cpu_init_generic();
Aravind Gopalakrishnanbb91f8c2016-04-30 14:33:53 +02002206 __mcheck_cpu_init_clear_banks();
Borislav Petkov5e099542009-10-16 12:31:32 +02002207 __mcheck_cpu_init_timer();
Andi Kleen52d168e2009-02-12 13:39:29 +01002208}
2209
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210/* Reinit MCEs after user configuration changes */
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02002211static void mce_restart(void)
2212{
Hidetoshi Seto9aaef962011-06-17 04:40:36 -04002213 mce_timer_delete_all();
Andi Kleen52d168e2009-02-12 13:39:29 +01002214 on_each_cpu(mce_cpu_restart, NULL, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215}
2216
Hidetoshi Seto9af43b52009-06-15 17:21:36 +09002217/* Toggle features for corrected errors */
Hidetoshi Seto9aaef962011-06-17 04:40:36 -04002218static void mce_disable_cmci(void *data)
Hidetoshi Seto9af43b52009-06-15 17:21:36 +09002219{
Christoph Lameter89cbc762014-08-17 12:30:40 -05002220 if (!mce_available(raw_cpu_ptr(&cpu_info)))
Hidetoshi Seto9af43b52009-06-15 17:21:36 +09002221 return;
Hidetoshi Seto9af43b52009-06-15 17:21:36 +09002222 cmci_clear();
2223}
2224
2225static void mce_enable_ce(void *all)
2226{
Christoph Lameter89cbc762014-08-17 12:30:40 -05002227 if (!mce_available(raw_cpu_ptr(&cpu_info)))
Hidetoshi Seto9af43b52009-06-15 17:21:36 +09002228 return;
2229 cmci_reenable();
2230 cmci_recheck();
2231 if (all)
Borislav Petkov5e099542009-10-16 12:31:32 +02002232 __mcheck_cpu_init_timer();
Hidetoshi Seto9af43b52009-06-15 17:21:36 +09002233}
2234
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002235static struct bus_type mce_subsys = {
Ingo Molnare9eee032009-04-08 12:31:17 +02002236 .name = "machinecheck",
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002237 .dev_name = "machinecheck",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238};
2239
Greg Kroah-Hartmand6126ef2012-01-26 15:49:14 -08002240DEFINE_PER_CPU(struct device *, mce_device);
Ingo Molnare9eee032009-04-08 12:31:17 +02002241
Ingo Molnare9eee032009-04-08 12:31:17 +02002242void (*threshold_cpu_callback)(unsigned long action, unsigned int cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002244static inline struct mce_bank *attr_to_bank(struct device_attribute *attr)
Andi Kleencebe1822009-07-09 00:31:43 +02002245{
2246 return container_of(attr, struct mce_bank, attr);
2247}
Andi Kleen0d7482e32009-02-17 23:07:13 +01002248
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002249static ssize_t show_bank(struct device *s, struct device_attribute *attr,
Andi Kleen0d7482e32009-02-17 23:07:13 +01002250 char *buf)
2251{
Andi Kleencebe1822009-07-09 00:31:43 +02002252 return sprintf(buf, "%llx\n", attr_to_bank(attr)->ctl);
Andi Kleen0d7482e32009-02-17 23:07:13 +01002253}
2254
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002255static ssize_t set_bank(struct device *s, struct device_attribute *attr,
Hidetoshi Seto9319cec2009-04-14 17:26:30 +09002256 const char *buf, size_t size)
Andi Kleen0d7482e32009-02-17 23:07:13 +01002257{
Hidetoshi Seto9319cec2009-04-14 17:26:30 +09002258 u64 new;
Ingo Molnare9eee032009-04-08 12:31:17 +02002259
Daniel Walter164109e2014-08-08 14:24:03 -07002260 if (kstrtou64(buf, 0, &new) < 0)
Andi Kleen0d7482e32009-02-17 23:07:13 +01002261 return -EINVAL;
Ingo Molnare9eee032009-04-08 12:31:17 +02002262
Andi Kleencebe1822009-07-09 00:31:43 +02002263 attr_to_bank(attr)->ctl = new;
Andi Kleen0d7482e32009-02-17 23:07:13 +01002264 mce_restart();
Ingo Molnare9eee032009-04-08 12:31:17 +02002265
Hidetoshi Seto9319cec2009-04-14 17:26:30 +09002266 return size;
Andi Kleen0d7482e32009-02-17 23:07:13 +01002267}
Andi Kleena98f0dd2007-02-13 13:26:23 +01002268
Ingo Molnare9eee032009-04-08 12:31:17 +02002269static ssize_t
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002270show_trigger(struct device *s, struct device_attribute *attr, char *buf)
Andi Kleena98f0dd2007-02-13 13:26:23 +01002271{
Hidetoshi Seto1020bcb2009-06-15 17:20:57 +09002272 strcpy(buf, mce_helper);
Andi Kleena98f0dd2007-02-13 13:26:23 +01002273 strcat(buf, "\n");
Hidetoshi Seto1020bcb2009-06-15 17:20:57 +09002274 return strlen(mce_helper) + 1;
Andi Kleena98f0dd2007-02-13 13:26:23 +01002275}
2276
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002277static ssize_t set_trigger(struct device *s, struct device_attribute *attr,
Ingo Molnare9eee032009-04-08 12:31:17 +02002278 const char *buf, size_t siz)
Andi Kleena98f0dd2007-02-13 13:26:23 +01002279{
2280 char *p;
Ingo Molnare9eee032009-04-08 12:31:17 +02002281
Hidetoshi Seto1020bcb2009-06-15 17:20:57 +09002282 strncpy(mce_helper, buf, sizeof(mce_helper));
2283 mce_helper[sizeof(mce_helper)-1] = 0;
Hidetoshi Seto1020bcb2009-06-15 17:20:57 +09002284 p = strchr(mce_helper, '\n');
Ingo Molnare9eee032009-04-08 12:31:17 +02002285
Jan Beuliche9084ec2009-07-16 09:45:11 +01002286 if (p)
Ingo Molnare9eee032009-04-08 12:31:17 +02002287 *p = 0;
2288
Jan Beuliche9084ec2009-07-16 09:45:11 +01002289 return strlen(mce_helper) + !!p;
Andi Kleena98f0dd2007-02-13 13:26:23 +01002290}
2291
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002292static ssize_t set_ignore_ce(struct device *s,
2293 struct device_attribute *attr,
Hidetoshi Seto9af43b52009-06-15 17:21:36 +09002294 const char *buf, size_t size)
2295{
2296 u64 new;
2297
Daniel Walter164109e2014-08-08 14:24:03 -07002298 if (kstrtou64(buf, 0, &new) < 0)
Hidetoshi Seto9af43b52009-06-15 17:21:36 +09002299 return -EINVAL;
2300
Borislav Petkov7af19e42012-10-15 20:25:17 +02002301 if (mca_cfg.ignore_ce ^ !!new) {
Hidetoshi Seto9af43b52009-06-15 17:21:36 +09002302 if (new) {
2303 /* disable ce features */
Hidetoshi Seto9aaef962011-06-17 04:40:36 -04002304 mce_timer_delete_all();
2305 on_each_cpu(mce_disable_cmci, NULL, 1);
Borislav Petkov7af19e42012-10-15 20:25:17 +02002306 mca_cfg.ignore_ce = true;
Hidetoshi Seto9af43b52009-06-15 17:21:36 +09002307 } else {
2308 /* enable ce features */
Borislav Petkov7af19e42012-10-15 20:25:17 +02002309 mca_cfg.ignore_ce = false;
Hidetoshi Seto9af43b52009-06-15 17:21:36 +09002310 on_each_cpu(mce_enable_ce, (void *)1, 1);
2311 }
2312 }
2313 return size;
2314}
2315
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002316static ssize_t set_cmci_disabled(struct device *s,
2317 struct device_attribute *attr,
Hidetoshi Seto9af43b52009-06-15 17:21:36 +09002318 const char *buf, size_t size)
2319{
2320 u64 new;
2321
Daniel Walter164109e2014-08-08 14:24:03 -07002322 if (kstrtou64(buf, 0, &new) < 0)
Hidetoshi Seto9af43b52009-06-15 17:21:36 +09002323 return -EINVAL;
2324
Borislav Petkov7af19e42012-10-15 20:25:17 +02002325 if (mca_cfg.cmci_disabled ^ !!new) {
Hidetoshi Seto9af43b52009-06-15 17:21:36 +09002326 if (new) {
2327 /* disable cmci */
Hidetoshi Seto9aaef962011-06-17 04:40:36 -04002328 on_each_cpu(mce_disable_cmci, NULL, 1);
Borislav Petkov7af19e42012-10-15 20:25:17 +02002329 mca_cfg.cmci_disabled = true;
Hidetoshi Seto9af43b52009-06-15 17:21:36 +09002330 } else {
2331 /* enable cmci */
Borislav Petkov7af19e42012-10-15 20:25:17 +02002332 mca_cfg.cmci_disabled = false;
Hidetoshi Seto9af43b52009-06-15 17:21:36 +09002333 on_each_cpu(mce_enable_ce, NULL, 1);
2334 }
2335 }
2336 return size;
2337}
2338
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002339static ssize_t store_int_with_restart(struct device *s,
2340 struct device_attribute *attr,
Andi Kleenb56f6422009-05-27 21:56:52 +02002341 const char *buf, size_t size)
2342{
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002343 ssize_t ret = device_store_int(s, attr, buf, size);
Andi Kleenb56f6422009-05-27 21:56:52 +02002344 mce_restart();
2345 return ret;
2346}
2347
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002348static DEVICE_ATTR(trigger, 0644, show_trigger, set_trigger);
Borislav Petkovd203f0b2012-10-15 18:03:57 +02002349static DEVICE_INT_ATTR(tolerant, 0644, mca_cfg.tolerant);
Borislav Petkov84c25592012-10-15 19:59:18 +02002350static DEVICE_INT_ATTR(monarch_timeout, 0644, mca_cfg.monarch_timeout);
Borislav Petkovd203f0b2012-10-15 18:03:57 +02002351static DEVICE_BOOL_ATTR(dont_log_ce, 0644, mca_cfg.dont_log_ce);
Ingo Molnare9eee032009-04-08 12:31:17 +02002352
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002353static struct dev_ext_attribute dev_attr_check_interval = {
2354 __ATTR(check_interval, 0644, device_show_int, store_int_with_restart),
Andi Kleenb56f6422009-05-27 21:56:52 +02002355 &check_interval
2356};
Ingo Molnare9eee032009-04-08 12:31:17 +02002357
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002358static struct dev_ext_attribute dev_attr_ignore_ce = {
Borislav Petkov7af19e42012-10-15 20:25:17 +02002359 __ATTR(ignore_ce, 0644, device_show_bool, set_ignore_ce),
2360 &mca_cfg.ignore_ce
Hidetoshi Seto9af43b52009-06-15 17:21:36 +09002361};
2362
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002363static struct dev_ext_attribute dev_attr_cmci_disabled = {
Borislav Petkov7af19e42012-10-15 20:25:17 +02002364 __ATTR(cmci_disabled, 0644, device_show_bool, set_cmci_disabled),
2365 &mca_cfg.cmci_disabled
Hidetoshi Seto9af43b52009-06-15 17:21:36 +09002366};
2367
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002368static struct device_attribute *mce_device_attrs[] = {
2369 &dev_attr_tolerant.attr,
2370 &dev_attr_check_interval.attr,
2371 &dev_attr_trigger,
2372 &dev_attr_monarch_timeout.attr,
2373 &dev_attr_dont_log_ce.attr,
2374 &dev_attr_ignore_ce.attr,
2375 &dev_attr_cmci_disabled.attr,
Andi Kleena98f0dd2007-02-13 13:26:23 +01002376 NULL
2377};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002379static cpumask_var_t mce_device_initialized;
Andreas Herrmannbae19fe2007-11-14 17:00:44 -08002380
Greg Kroah-Hartmane032d8072012-01-16 14:40:28 -08002381static void mce_device_release(struct device *dev)
2382{
2383 kfree(dev);
2384}
2385
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002386/* Per cpu device init. All of the cpus still share the same ctrl bank: */
Paul Gortmaker148f9bb2013-06-18 18:23:59 -04002387static int mce_device_create(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388{
Greg Kroah-Hartmane032d8072012-01-16 14:40:28 -08002389 struct device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390 int err;
Hidetoshi Setob1f49f92009-06-18 14:53:24 +09002391 int i, j;
Mike Travis92cb7612007-10-19 20:35:04 +02002392
Andreas Herrmann90367552007-11-07 02:12:58 +01002393 if (!mce_available(&boot_cpu_data))
Andi Kleen91c6d402005-07-28 21:15:39 -07002394 return -EIO;
2395
Greg Kroah-Hartmane032d8072012-01-16 14:40:28 -08002396 dev = kzalloc(sizeof *dev, GFP_KERNEL);
2397 if (!dev)
2398 return -ENOMEM;
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002399 dev->id = cpu;
2400 dev->bus = &mce_subsys;
Greg Kroah-Hartmane032d8072012-01-16 14:40:28 -08002401 dev->release = &mce_device_release;
Andi Kleen91c6d402005-07-28 21:15:39 -07002402
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002403 err = device_register(dev);
Levente Kurusa853d9b12013-11-29 21:28:48 +01002404 if (err) {
2405 put_device(dev);
Akinobu Mitad435d862007-10-18 03:05:15 -07002406 return err;
Levente Kurusa853d9b12013-11-29 21:28:48 +01002407 }
Andi Kleen91c6d402005-07-28 21:15:39 -07002408
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002409 for (i = 0; mce_device_attrs[i]; i++) {
2410 err = device_create_file(dev, mce_device_attrs[i]);
Akinobu Mitad435d862007-10-18 03:05:15 -07002411 if (err)
2412 goto error;
Andi Kleen91c6d402005-07-28 21:15:39 -07002413 }
Borislav Petkovd203f0b2012-10-15 18:03:57 +02002414 for (j = 0; j < mca_cfg.banks; j++) {
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002415 err = device_create_file(dev, &mce_banks[j].attr);
Andi Kleen0d7482e32009-02-17 23:07:13 +01002416 if (err)
2417 goto error2;
2418 }
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002419 cpumask_set_cpu(cpu, mce_device_initialized);
Greg Kroah-Hartmand6126ef2012-01-26 15:49:14 -08002420 per_cpu(mce_device, cpu) = dev;
Akinobu Mitad435d862007-10-18 03:05:15 -07002421
2422 return 0;
Andi Kleen0d7482e32009-02-17 23:07:13 +01002423error2:
Hidetoshi Setob1f49f92009-06-18 14:53:24 +09002424 while (--j >= 0)
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002425 device_remove_file(dev, &mce_banks[j].attr);
Akinobu Mitad435d862007-10-18 03:05:15 -07002426error:
Ingo Molnarcb491fc2009-04-08 12:31:17 +02002427 while (--i >= 0)
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002428 device_remove_file(dev, mce_device_attrs[i]);
Ingo Molnarcb491fc2009-04-08 12:31:17 +02002429
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002430 device_unregister(dev);
Akinobu Mitad435d862007-10-18 03:05:15 -07002431
Andi Kleen91c6d402005-07-28 21:15:39 -07002432 return err;
2433}
2434
Paul Gortmaker148f9bb2013-06-18 18:23:59 -04002435static void mce_device_remove(unsigned int cpu)
Andi Kleen91c6d402005-07-28 21:15:39 -07002436{
Greg Kroah-Hartmand6126ef2012-01-26 15:49:14 -08002437 struct device *dev = per_cpu(mce_device, cpu);
Shaohua Li73ca5352006-01-11 22:43:06 +01002438 int i;
2439
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002440 if (!cpumask_test_cpu(cpu, mce_device_initialized))
Andreas Herrmannbae19fe2007-11-14 17:00:44 -08002441 return;
2442
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002443 for (i = 0; mce_device_attrs[i]; i++)
2444 device_remove_file(dev, mce_device_attrs[i]);
Ingo Molnarcb491fc2009-04-08 12:31:17 +02002445
Borislav Petkovd203f0b2012-10-15 18:03:57 +02002446 for (i = 0; i < mca_cfg.banks; i++)
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002447 device_remove_file(dev, &mce_banks[i].attr);
Ingo Molnarcb491fc2009-04-08 12:31:17 +02002448
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002449 device_unregister(dev);
2450 cpumask_clear_cpu(cpu, mce_device_initialized);
Greg Kroah-Hartmand6126ef2012-01-26 15:49:14 -08002451 per_cpu(mce_device, cpu) = NULL;
Andi Kleen91c6d402005-07-28 21:15:39 -07002452}
Andi Kleen91c6d402005-07-28 21:15:39 -07002453
Andi Kleend6b75582009-02-12 13:39:31 +01002454/* Make sure there are no machine checks on offlined CPUs. */
Paul Gortmaker148f9bb2013-06-18 18:23:59 -04002455static void mce_disable_cpu(void *h)
Andi Kleend6b75582009-02-12 13:39:31 +01002456{
Andi Kleen88ccbed2009-02-12 13:49:36 +01002457 unsigned long action = *(unsigned long *)h;
Andi Kleend6b75582009-02-12 13:39:31 +01002458
Christoph Lameter89cbc762014-08-17 12:30:40 -05002459 if (!mce_available(raw_cpu_ptr(&cpu_info)))
Andi Kleend6b75582009-02-12 13:39:31 +01002460 return;
Hidetoshi Seto767df1b2009-11-26 17:29:02 +09002461
Andi Kleen88ccbed2009-02-12 13:49:36 +01002462 if (!(action & CPU_TASKS_FROZEN))
2463 cmci_clear();
Ingo Molnar11868a22009-09-23 17:49:55 +02002464
Ashok Raj6e067802015-09-28 09:21:43 +02002465 vendor_disable_error_reporting();
Andi Kleend6b75582009-02-12 13:39:31 +01002466}
2467
Paul Gortmaker148f9bb2013-06-18 18:23:59 -04002468static void mce_reenable_cpu(void *h)
Andi Kleend6b75582009-02-12 13:39:31 +01002469{
Andi Kleen88ccbed2009-02-12 13:49:36 +01002470 unsigned long action = *(unsigned long *)h;
Ingo Molnare9eee032009-04-08 12:31:17 +02002471 int i;
Andi Kleend6b75582009-02-12 13:39:31 +01002472
Christoph Lameter89cbc762014-08-17 12:30:40 -05002473 if (!mce_available(raw_cpu_ptr(&cpu_info)))
Andi Kleend6b75582009-02-12 13:39:31 +01002474 return;
Ingo Molnare9eee032009-04-08 12:31:17 +02002475
Andi Kleen88ccbed2009-02-12 13:49:36 +01002476 if (!(action & CPU_TASKS_FROZEN))
2477 cmci_reenable();
Borislav Petkovd203f0b2012-10-15 18:03:57 +02002478 for (i = 0; i < mca_cfg.banks; i++) {
Andi Kleencebe1822009-07-09 00:31:43 +02002479 struct mce_bank *b = &mce_banks[i];
Ingo Molnar11868a22009-09-23 17:49:55 +02002480
Andi Kleencebe1822009-07-09 00:31:43 +02002481 if (b->init)
Yazen Ghannamd9d73fc2016-04-30 14:33:55 +02002482 wrmsrl(msr_ops.ctl(i), b->ctl);
Andi Kleen06b7a7a2009-04-27 18:37:43 +02002483 }
Andi Kleend6b75582009-02-12 13:39:31 +01002484}
2485
Andi Kleen91c6d402005-07-28 21:15:39 -07002486/* Get notified when a cpu comes on/off. Be hotplug friendly. */
Paul Gortmaker148f9bb2013-06-18 18:23:59 -04002487static int
Ingo Molnare9eee032009-04-08 12:31:17 +02002488mce_cpu_callback(struct notifier_block *nfb, unsigned long action, void *hcpu)
Andi Kleen91c6d402005-07-28 21:15:39 -07002489{
2490 unsigned int cpu = (unsigned long)hcpu;
Andi Kleen52d168e2009-02-12 13:39:29 +01002491 struct timer_list *t = &per_cpu(mce_timer, cpu);
Andi Kleen91c6d402005-07-28 21:15:39 -07002492
Thomas Gleixner1a65f972012-07-19 13:59:40 -04002493 switch (action & ~CPU_TASKS_FROZEN) {
Andreas Herrmannbae19fe2007-11-14 17:00:44 -08002494 case CPU_ONLINE:
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002495 mce_device_create(cpu);
Rafael J. Wysocki87357282008-08-22 22:23:09 +02002496 if (threshold_cpu_callback)
2497 threshold_cpu_callback(action, cpu);
Andi Kleen91c6d402005-07-28 21:15:39 -07002498 break;
Andi Kleen91c6d402005-07-28 21:15:39 -07002499 case CPU_DEAD:
Rafael J. Wysocki87357282008-08-22 22:23:09 +02002500 if (threshold_cpu_callback)
2501 threshold_cpu_callback(action, cpu);
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002502 mce_device_remove(cpu);
Chen Gong55babd82012-08-09 11:44:51 -07002503 mce_intel_hcpu_update(cpu);
Borislav Petkov38356c12014-05-22 16:40:54 +02002504
2505 /* intentionally ignoring frozen here */
2506 if (!(action & CPU_TASKS_FROZEN))
2507 cmci_rediscover();
Andi Kleen91c6d402005-07-28 21:15:39 -07002508 break;
Andi Kleen52d168e2009-02-12 13:39:29 +01002509 case CPU_DOWN_PREPARE:
Andi Kleen88ccbed2009-02-12 13:49:36 +01002510 smp_call_function_single(cpu, mce_disable_cpu, &action, 1);
Chen Gong55babd82012-08-09 11:44:51 -07002511 del_timer_sync(t);
Andi Kleen52d168e2009-02-12 13:39:29 +01002512 break;
2513 case CPU_DOWN_FAILED:
Andi Kleen88ccbed2009-02-12 13:49:36 +01002514 smp_call_function_single(cpu, mce_reenable_cpu, &action, 1);
Thomas Gleixner26c3c282012-07-19 13:59:39 -04002515 mce_start_timer(cpu, t);
Andi Kleen88ccbed2009-02-12 13:49:36 +01002516 break;
Thomas Gleixner1a65f972012-07-19 13:59:40 -04002517 }
2518
Andreas Herrmannbae19fe2007-11-14 17:00:44 -08002519 return NOTIFY_OK;
Andi Kleen91c6d402005-07-28 21:15:39 -07002520}
2521
Paul Gortmaker148f9bb2013-06-18 18:23:59 -04002522static struct notifier_block mce_cpu_notifier = {
Andi Kleen91c6d402005-07-28 21:15:39 -07002523 .notifier_call = mce_cpu_callback,
2524};
2525
Andi Kleencebe1822009-07-09 00:31:43 +02002526static __init void mce_init_banks(void)
Andi Kleen0d7482e32009-02-17 23:07:13 +01002527{
2528 int i;
2529
Borislav Petkovd203f0b2012-10-15 18:03:57 +02002530 for (i = 0; i < mca_cfg.banks; i++) {
Andi Kleencebe1822009-07-09 00:31:43 +02002531 struct mce_bank *b = &mce_banks[i];
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002532 struct device_attribute *a = &b->attr;
Ingo Molnare9eee032009-04-08 12:31:17 +02002533
Eric W. Biedermana07e4152010-02-11 15:23:05 -08002534 sysfs_attr_init(&a->attr);
Andi Kleencebe1822009-07-09 00:31:43 +02002535 a->attr.name = b->attrname;
2536 snprintf(b->attrname, ATTR_LEN, "bank%d", i);
Ingo Molnare9eee032009-04-08 12:31:17 +02002537
2538 a->attr.mode = 0644;
2539 a->show = show_bank;
2540 a->store = set_bank;
Andi Kleen0d7482e32009-02-17 23:07:13 +01002541 }
Andi Kleen0d7482e32009-02-17 23:07:13 +01002542}
2543
Borislav Petkov5e099542009-10-16 12:31:32 +02002544static __init int mcheck_init_device(void)
Andi Kleen91c6d402005-07-28 21:15:39 -07002545{
2546 int err;
2547 int i = 0;
2548
Mathieu Souchaud9c15a242014-05-28 09:12:37 +02002549 if (!mce_available(&boot_cpu_data)) {
2550 err = -EIO;
2551 goto err_out;
2552 }
Andi Kleen0d7482e32009-02-17 23:07:13 +01002553
Mathieu Souchaud9c15a242014-05-28 09:12:37 +02002554 if (!zalloc_cpumask_var(&mce_device_initialized, GFP_KERNEL)) {
2555 err = -ENOMEM;
2556 goto err_out;
2557 }
Rusty Russell996867d2009-03-13 14:49:51 +10302558
Andi Kleencebe1822009-07-09 00:31:43 +02002559 mce_init_banks();
Andi Kleen0d7482e32009-02-17 23:07:13 +01002560
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002561 err = subsys_system_register(&mce_subsys, NULL);
Akinobu Mitad435d862007-10-18 03:05:15 -07002562 if (err)
Mathieu Souchaud9c15a242014-05-28 09:12:37 +02002563 goto err_out_mem;
Andi Kleen91c6d402005-07-28 21:15:39 -07002564
Srivatsa S. Bhat82a8f132014-03-11 02:07:04 +05302565 cpu_notifier_register_begin();
Andi Kleen91c6d402005-07-28 21:15:39 -07002566 for_each_online_cpu(i) {
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002567 err = mce_device_create(i);
Srivatsa S. Bhat82a8f132014-03-11 02:07:04 +05302568 if (err) {
Borislav Petkov27c93412014-06-20 23:16:45 +02002569 /*
2570 * Register notifier anyway (and do not unreg it) so
2571 * that we don't leave undeleted timers, see notifier
2572 * callback above.
2573 */
2574 __register_hotcpu_notifier(&mce_cpu_notifier);
Srivatsa S. Bhat82a8f132014-03-11 02:07:04 +05302575 cpu_notifier_register_done();
Mathieu Souchaud9c15a242014-05-28 09:12:37 +02002576 goto err_device_create;
Srivatsa S. Bhat82a8f132014-03-11 02:07:04 +05302577 }
Andi Kleen91c6d402005-07-28 21:15:39 -07002578 }
2579
Srivatsa S. Bhat82a8f132014-03-11 02:07:04 +05302580 __register_hotcpu_notifier(&mce_cpu_notifier);
2581 cpu_notifier_register_done();
Hidetoshi Seto93b62c32011-06-08 11:00:45 +09002582
Mathieu Souchaud9c15a242014-05-28 09:12:37 +02002583 register_syscore_ops(&mce_syscore_ops);
2584
Hidetoshi Seto93b62c32011-06-08 11:00:45 +09002585 /* register character device /dev/mcelog */
Mathieu Souchaud9c15a242014-05-28 09:12:37 +02002586 err = misc_register(&mce_chrdev_device);
2587 if (err)
2588 goto err_register;
2589
2590 return 0;
2591
2592err_register:
2593 unregister_syscore_ops(&mce_syscore_ops);
2594
Mathieu Souchaud9c15a242014-05-28 09:12:37 +02002595err_device_create:
2596 /*
2597 * We didn't keep track of which devices were created above, but
2598 * even if we had, the set of online cpus might have changed.
2599 * Play safe and remove for every possible cpu, since
2600 * mce_device_remove() will do the right thing.
2601 */
2602 for_each_possible_cpu(i)
2603 mce_device_remove(i);
2604
2605err_out_mem:
2606 free_cpumask_var(mce_device_initialized);
2607
2608err_out:
2609 pr_err("Unable to init device /dev/mcelog (rc: %d)\n", err);
Ingo Molnare9eee032009-04-08 12:31:17 +02002610
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612}
Liu, Jinsongcef12ee2012-06-07 19:56:51 +08002613device_initcall_sync(mcheck_init_device);
Ingo Molnara988d332009-04-08 12:31:25 +02002614
Andi Kleend7c3c9a2009-04-28 23:07:25 +02002615/*
2616 * Old style boot options parsing. Only for compatibility.
2617 */
2618static int __init mcheck_disable(char *str)
2619{
Borislav Petkov14625942012-10-17 12:05:33 +02002620 mca_cfg.disabled = true;
Andi Kleend7c3c9a2009-04-28 23:07:25 +02002621 return 1;
2622}
2623__setup("nomce", mcheck_disable);
Huang Ying5be9ed22009-07-31 09:41:42 +08002624
2625#ifdef CONFIG_DEBUG_FS
2626struct dentry *mce_get_debugfs_dir(void)
2627{
2628 static struct dentry *dmce;
2629
2630 if (!dmce)
2631 dmce = debugfs_create_dir("mce", NULL);
2632
2633 return dmce;
2634}
Huang Yingbf783f92009-07-31 09:41:43 +08002635
2636static void mce_reset(void)
2637{
2638 cpu_missing = 0;
Borislav Petkovc7c9b392014-12-03 22:36:45 +01002639 atomic_set(&mce_fake_panicked, 0);
Huang Yingbf783f92009-07-31 09:41:43 +08002640 atomic_set(&mce_executing, 0);
2641 atomic_set(&mce_callin, 0);
2642 atomic_set(&global_nwo, 0);
2643}
2644
2645static int fake_panic_get(void *data, u64 *val)
2646{
2647 *val = fake_panic;
2648 return 0;
2649}
2650
2651static int fake_panic_set(void *data, u64 val)
2652{
2653 mce_reset();
2654 fake_panic = val;
2655 return 0;
2656}
2657
2658DEFINE_SIMPLE_ATTRIBUTE(fake_panic_fops, fake_panic_get,
2659 fake_panic_set, "%llu\n");
2660
Borislav Petkov5e099542009-10-16 12:31:32 +02002661static int __init mcheck_debugfs_init(void)
Huang Yingbf783f92009-07-31 09:41:43 +08002662{
2663 struct dentry *dmce, *ffake_panic;
2664
2665 dmce = mce_get_debugfs_dir();
2666 if (!dmce)
2667 return -ENOMEM;
2668 ffake_panic = debugfs_create_file("fake_panic", 0444, dmce, NULL,
2669 &fake_panic_fops);
2670 if (!ffake_panic)
2671 return -ENOMEM;
2672
2673 return 0;
2674}
Chen, Gongfd4cf792015-08-12 18:29:36 +02002675#else
2676static int __init mcheck_debugfs_init(void) { return -EINVAL; }
Huang Ying5be9ed22009-07-31 09:41:42 +08002677#endif
Chen, Gongfd4cf792015-08-12 18:29:36 +02002678
2679static int __init mcheck_late_init(void)
2680{
2681 mcheck_debugfs_init();
2682
2683 /*
2684 * Flush out everything that has been logged during early boot, now that
2685 * everything has been initialized (workqueues, decoders, ...).
2686 */
2687 mce_schedule_work();
2688
2689 return 0;
2690}
2691late_initcall(mcheck_late_init);