]> git.ipfire.org Git - people/arne_f/kernel.git/blame - arch/x86/kernel/cpu/mcheck/mce.c
x86/mce: Make cmci_discover() quiet
[people/arne_f/kernel.git] / arch / x86 / kernel / cpu / mcheck / mce.c
CommitLineData
1da177e4
LT
1/*
2 * Machine check handler.
e9eee03e 3 *
1da177e4 4 * K8 parts Copyright 2002,2003 Andi Kleen, SuSE Labs.
d88203d1
TG
5 * Rest from unknown author(s).
6 * 2004 Andi Kleen. Rewrote most of it.
b79109c3
AK
7 * Copyright 2008 Intel Corporation
8 * Author: Andi Kleen
1da177e4 9 */
c767a54b
JP
10
11#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
12
e9eee03e
IM
13#include <linux/thread_info.h>
14#include <linux/capability.h>
15#include <linux/miscdevice.h>
16#include <linux/ratelimit.h>
17#include <linux/kallsyms.h>
18#include <linux/rcupdate.h>
e9eee03e 19#include <linux/kobject.h>
14a02530 20#include <linux/uaccess.h>
e9eee03e
IM
21#include <linux/kdebug.h>
22#include <linux/kernel.h>
23#include <linux/percpu.h>
1da177e4 24#include <linux/string.h>
8a25a2fd 25#include <linux/device.h>
f3c6ea1b 26#include <linux/syscore_ops.h>
3c079792 27#include <linux/delay.h>
8c566ef5 28#include <linux/ctype.h>
e9eee03e 29#include <linux/sched.h>
0d7482e3 30#include <linux/sysfs.h>
e9eee03e 31#include <linux/types.h>
5a0e3ad6 32#include <linux/slab.h>
e9eee03e
IM
33#include <linux/init.h>
34#include <linux/kmod.h>
35#include <linux/poll.h>
3c079792 36#include <linux/nmi.h>
e9eee03e 37#include <linux/cpu.h>
14a02530 38#include <linux/smp.h>
e9eee03e 39#include <linux/fs.h>
9b1beaf2 40#include <linux/mm.h>
5be9ed25 41#include <linux/debugfs.h>
b77e70bf 42#include <linux/irq_work.h>
69c60c88 43#include <linux/export.h>
e9eee03e 44
d88203d1 45#include <asm/processor.h>
e9eee03e
IM
46#include <asm/mce.h>
47#include <asm/msr.h>
1da177e4 48
bd19a5e6 49#include "mce-internal.h"
711c2e48 50
93b62c3c 51static DEFINE_MUTEX(mce_chrdev_read_mutex);
2aa2b50d 52
f56e8a07 53#define rcu_dereference_check_mce(p) \
ec8c27e0 54 rcu_dereference_index_check((p), \
f56e8a07 55 rcu_read_lock_sched_held() || \
93b62c3c 56 lockdep_is_held(&mce_chrdev_read_mutex))
f56e8a07 57
8968f9d3
HS
58#define CREATE_TRACE_POINTS
59#include <trace/events/mce.h>
60
4e5b3e69 61int mce_disabled __read_mostly;
04b2b1a4 62
3c079792
AK
63#define SPINUNIT 100 /* 100ns */
64
553f265f
AK
65atomic_t mce_entry;
66
01ca79f1
AK
67DEFINE_PER_CPU(unsigned, mce_exception_count);
68
bd78432c
TH
69/*
70 * Tolerant levels:
71 * 0: always panic on uncorrected errors, log corrected errors
72 * 1: panic or SIGBUS on uncorrected errors, log corrected errors
73 * 2: SIGBUS or log uncorrected errors (if possible), log corrected errors
74 * 3: never panic or SIGBUS, log all errors (for testing only)
75 */
4e5b3e69
HS
76static int tolerant __read_mostly = 1;
77static int banks __read_mostly;
4e5b3e69
HS
78static int rip_msr __read_mostly;
79static int mce_bootlog __read_mostly = -1;
80static int monarch_timeout __read_mostly = -1;
81static int mce_panic_timeout __read_mostly;
82static int mce_dont_log_ce __read_mostly;
83int mce_cmci_disabled __read_mostly;
84int mce_ignore_ce __read_mostly;
85int mce_ser __read_mostly;
a98f0dd3 86
cebe1820
AK
87struct mce_bank *mce_banks __read_mostly;
88
1020bcbc
HS
89/* User mode helper program triggered by machine check event */
90static unsigned long mce_need_notify;
91static char mce_helper[128];
92static char *mce_helper_argv[2] = { mce_helper, NULL };
1da177e4 93
93b62c3c
HS
94static DECLARE_WAIT_QUEUE_HEAD(mce_chrdev_wait);
95
3c079792
AK
96static DEFINE_PER_CPU(struct mce, mces_seen);
97static int cpu_missing;
98
ee031c31
AK
99/* MCA banks polled by the period polling timer for corrected events */
100DEFINE_PER_CPU(mce_banks_t, mce_poll_banks) = {
101 [0 ... BITS_TO_LONGS(MAX_NR_BANKS)-1] = ~0UL
102};
103
9b1beaf2
AK
104static DEFINE_PER_CPU(struct work_struct, mce_work);
105
3653ada5
BP
106/*
107 * CPU/chipset specific EDAC code can register a notifier call here to print
108 * MCE errors in a human-readable form.
109 */
110ATOMIC_NOTIFIER_HEAD(x86_mce_decoder_chain);
111
b5f2fa4e
AK
112/* Do initial initialization of a struct mce */
113void mce_setup(struct mce *m)
114{
115 memset(m, 0, sizeof(struct mce));
d620c67f 116 m->cpu = m->extcpu = smp_processor_id();
b5f2fa4e 117 rdtscll(m->tsc);
8ee08347
AK
118 /* We hope get_seconds stays lockless */
119 m->time = get_seconds();
120 m->cpuvendor = boot_cpu_data.x86_vendor;
121 m->cpuid = cpuid_eax(1);
8ee08347 122 m->socketid = cpu_data(m->extcpu).phys_proc_id;
8ee08347
AK
123 m->apicid = cpu_data(m->extcpu).initial_apicid;
124 rdmsrl(MSR_IA32_MCG_CAP, m->mcgcap);
b5f2fa4e
AK
125}
126
ea149b36
AK
127DEFINE_PER_CPU(struct mce, injectm);
128EXPORT_PER_CPU_SYMBOL_GPL(injectm);
129
1da177e4
LT
130/*
131 * Lockless MCE logging infrastructure.
132 * This avoids deadlocks on printk locks without having to break locks. Also
133 * separate MCEs from kernel messages to avoid bogus bug reports.
134 */
135
231fd906 136static struct mce_log mcelog = {
f6fb0ac0
AK
137 .signature = MCE_LOG_SIGNATURE,
138 .len = MCE_LOG_LEN,
139 .recordlen = sizeof(struct mce),
d88203d1 140};
1da177e4
LT
141
142void mce_log(struct mce *mce)
143{
144 unsigned next, entry;
f0cb5452 145 int ret = 0;
e9eee03e 146
8968f9d3
HS
147 /* Emit the trace record: */
148 trace_mce_record(mce);
149
f0cb5452
BP
150 ret = atomic_notifier_call_chain(&x86_mce_decoder_chain, 0, mce);
151 if (ret == NOTIFY_STOP)
152 return;
153
1da177e4 154 mce->finished = 0;
7644143c 155 wmb();
1da177e4 156 for (;;) {
f56e8a07 157 entry = rcu_dereference_check_mce(mcelog.next);
673242c1 158 for (;;) {
696e409d 159
e9eee03e
IM
160 /*
161 * When the buffer fills up discard new entries.
162 * Assume that the earlier errors are the more
163 * interesting ones:
164 */
673242c1 165 if (entry >= MCE_LOG_LEN) {
14a02530
HS
166 set_bit(MCE_OVERFLOW,
167 (unsigned long *)&mcelog.flags);
673242c1
AK
168 return;
169 }
e9eee03e 170 /* Old left over entry. Skip: */
673242c1
AK
171 if (mcelog.entry[entry].finished) {
172 entry++;
173 continue;
174 }
7644143c 175 break;
1da177e4 176 }
1da177e4
LT
177 smp_rmb();
178 next = entry + 1;
179 if (cmpxchg(&mcelog.next, entry, next) == entry)
180 break;
181 }
182 memcpy(mcelog.entry + entry, mce, sizeof(struct mce));
7644143c 183 wmb();
1da177e4 184 mcelog.entry[entry].finished = 1;
7644143c 185 wmb();
1da177e4 186
a0189c70 187 mce->finished = 1;
1020bcbc 188 set_bit(0, &mce_need_notify);
1da177e4
LT
189}
190
09371957
BP
191static void drain_mcelog_buffer(void)
192{
193 unsigned int next, i, prev = 0;
194
b11e3d78 195 next = ACCESS_ONCE(mcelog.next);
09371957
BP
196
197 do {
198 struct mce *m;
199
200 /* drain what was logged during boot */
201 for (i = prev; i < next; i++) {
202 unsigned long start = jiffies;
203 unsigned retries = 1;
204
205 m = &mcelog.entry[i];
206
207 while (!m->finished) {
208 if (time_after_eq(jiffies, start + 2*retries))
209 retries++;
210
211 cpu_relax();
212
213 if (!m->finished && retries >= 4) {
c767a54b 214 pr_err("skipping error being logged currently!\n");
09371957
BP
215 break;
216 }
217 }
218 smp_rmb();
219 atomic_notifier_call_chain(&x86_mce_decoder_chain, 0, m);
220 }
221
222 memset(mcelog.entry + prev, 0, (next - prev) * sizeof(*m));
223 prev = next;
224 next = cmpxchg(&mcelog.next, prev, 0);
225 } while (next != prev);
226}
227
228
3653ada5
BP
229void mce_register_decode_chain(struct notifier_block *nb)
230{
231 atomic_notifier_chain_register(&x86_mce_decoder_chain, nb);
09371957 232 drain_mcelog_buffer();
3653ada5
BP
233}
234EXPORT_SYMBOL_GPL(mce_register_decode_chain);
235
236void mce_unregister_decode_chain(struct notifier_block *nb)
237{
238 atomic_notifier_chain_unregister(&x86_mce_decoder_chain, nb);
239}
240EXPORT_SYMBOL_GPL(mce_unregister_decode_chain);
241
77e26cca 242static void print_mce(struct mce *m)
1da177e4 243{
dffa4b2f
BP
244 int ret = 0;
245
a2d7b0d4 246 pr_emerg(HW_ERR "CPU %d: Machine Check Exception: %Lx Bank %d: %016Lx\n",
d620c67f 247 m->extcpu, m->mcgstatus, m->bank, m->status);
f436f8bb 248
65ea5b03 249 if (m->ip) {
a2d7b0d4 250 pr_emerg(HW_ERR "RIP%s %02x:<%016Lx> ",
f436f8bb
IM
251 !(m->mcgstatus & MCG_STATUS_EIPV) ? " !INEXACT!" : "",
252 m->cs, m->ip);
253
1da177e4 254 if (m->cs == __KERNEL_CS)
65ea5b03 255 print_symbol("{%s}", m->ip);
f436f8bb 256 pr_cont("\n");
1da177e4 257 }
f436f8bb 258
a2d7b0d4 259 pr_emerg(HW_ERR "TSC %llx ", m->tsc);
1da177e4 260 if (m->addr)
f436f8bb 261 pr_cont("ADDR %llx ", m->addr);
1da177e4 262 if (m->misc)
f436f8bb 263 pr_cont("MISC %llx ", m->misc);
549d042d 264
f436f8bb 265 pr_cont("\n");
506ed6b5
AK
266 /*
267 * Note this output is parsed by external tools and old fields
268 * should not be changed.
269 */
881e23e5 270 pr_emerg(HW_ERR "PROCESSOR %u:%x TIME %llu SOCKET %u APIC %x microcode %x\n",
506ed6b5
AK
271 m->cpuvendor, m->cpuid, m->time, m->socketid, m->apicid,
272 cpu_data(m->extcpu).microcode);
f436f8bb
IM
273
274 /*
275 * Print out human-readable details about the MCE error,
fb253195 276 * (if the CPU has an implementation for that)
f436f8bb 277 */
dffa4b2f
BP
278 ret = atomic_notifier_call_chain(&x86_mce_decoder_chain, 0, m);
279 if (ret == NOTIFY_STOP)
280 return;
281
282 pr_emerg_ratelimited(HW_ERR "Run the above through 'mcelog --ascii'\n");
86503560
AK
283}
284
f94b61c2
AK
285#define PANIC_TIMEOUT 5 /* 5 seconds */
286
287static atomic_t mce_paniced;
288
bf783f9f
HY
289static int fake_panic;
290static atomic_t mce_fake_paniced;
291
f94b61c2
AK
292/* Panic in progress. Enable interrupts and wait for final IPI */
293static void wait_for_panic(void)
294{
295 long timeout = PANIC_TIMEOUT*USEC_PER_SEC;
f436f8bb 296
f94b61c2
AK
297 preempt_disable();
298 local_irq_enable();
299 while (timeout-- > 0)
300 udelay(1);
29b0f591
AK
301 if (panic_timeout == 0)
302 panic_timeout = mce_panic_timeout;
f94b61c2
AK
303 panic("Panicing machine check CPU died");
304}
305
bd19a5e6 306static void mce_panic(char *msg, struct mce *final, char *exp)
d88203d1 307{
482908b4 308 int i, apei_err = 0;
e02e68d3 309
bf783f9f
HY
310 if (!fake_panic) {
311 /*
312 * Make sure only one CPU runs in machine check panic
313 */
314 if (atomic_inc_return(&mce_paniced) > 1)
315 wait_for_panic();
316 barrier();
f94b61c2 317
bf783f9f
HY
318 bust_spinlocks(1);
319 console_verbose();
320 } else {
321 /* Don't log too much for fake panic */
322 if (atomic_inc_return(&mce_fake_paniced) > 1)
323 return;
324 }
a0189c70 325 /* First print corrected ones that are still unlogged */
1da177e4 326 for (i = 0; i < MCE_LOG_LEN; i++) {
a0189c70 327 struct mce *m = &mcelog.entry[i];
77e26cca
HS
328 if (!(m->status & MCI_STATUS_VAL))
329 continue;
482908b4 330 if (!(m->status & MCI_STATUS_UC)) {
77e26cca 331 print_mce(m);
482908b4
HY
332 if (!apei_err)
333 apei_err = apei_write_mce(m);
334 }
a0189c70
AK
335 }
336 /* Now print uncorrected but with the final one last */
337 for (i = 0; i < MCE_LOG_LEN; i++) {
338 struct mce *m = &mcelog.entry[i];
339 if (!(m->status & MCI_STATUS_VAL))
1da177e4 340 continue;
77e26cca
HS
341 if (!(m->status & MCI_STATUS_UC))
342 continue;
482908b4 343 if (!final || memcmp(m, final, sizeof(struct mce))) {
77e26cca 344 print_mce(m);
482908b4
HY
345 if (!apei_err)
346 apei_err = apei_write_mce(m);
347 }
1da177e4 348 }
482908b4 349 if (final) {
77e26cca 350 print_mce(final);
482908b4
HY
351 if (!apei_err)
352 apei_err = apei_write_mce(final);
353 }
3c079792 354 if (cpu_missing)
a2d7b0d4 355 pr_emerg(HW_ERR "Some CPUs didn't answer in synchronization\n");
bd19a5e6 356 if (exp)
a2d7b0d4 357 pr_emerg(HW_ERR "Machine check: %s\n", exp);
bf783f9f
HY
358 if (!fake_panic) {
359 if (panic_timeout == 0)
360 panic_timeout = mce_panic_timeout;
361 panic(msg);
362 } else
a2d7b0d4 363 pr_emerg(HW_ERR "Fake kernel panic: %s\n", msg);
d88203d1 364}
1da177e4 365
ea149b36
AK
366/* Support code for software error injection */
367
368static int msr_to_offset(u32 msr)
369{
0a3aee0d 370 unsigned bank = __this_cpu_read(injectm.bank);
f436f8bb 371
ea149b36
AK
372 if (msr == rip_msr)
373 return offsetof(struct mce, ip);
a2d32bcb 374 if (msr == MSR_IA32_MCx_STATUS(bank))
ea149b36 375 return offsetof(struct mce, status);
a2d32bcb 376 if (msr == MSR_IA32_MCx_ADDR(bank))
ea149b36 377 return offsetof(struct mce, addr);
a2d32bcb 378 if (msr == MSR_IA32_MCx_MISC(bank))
ea149b36
AK
379 return offsetof(struct mce, misc);
380 if (msr == MSR_IA32_MCG_STATUS)
381 return offsetof(struct mce, mcgstatus);
382 return -1;
383}
384
5f8c1a54
AK
385/* MSR access wrappers used for error injection */
386static u64 mce_rdmsrl(u32 msr)
387{
388 u64 v;
11868a2d 389
0a3aee0d 390 if (__this_cpu_read(injectm.finished)) {
ea149b36 391 int offset = msr_to_offset(msr);
11868a2d 392
ea149b36
AK
393 if (offset < 0)
394 return 0;
395 return *(u64 *)((char *)&__get_cpu_var(injectm) + offset);
396 }
11868a2d
IM
397
398 if (rdmsrl_safe(msr, &v)) {
399 WARN_ONCE(1, "mce: Unable to read msr %d!\n", msr);
400 /*
401 * Return zero in case the access faulted. This should
402 * not happen normally but can happen if the CPU does
403 * something weird, or if the code is buggy.
404 */
405 v = 0;
406 }
407
5f8c1a54
AK
408 return v;
409}
410
411static void mce_wrmsrl(u32 msr, u64 v)
412{
0a3aee0d 413 if (__this_cpu_read(injectm.finished)) {
ea149b36 414 int offset = msr_to_offset(msr);
11868a2d 415
ea149b36
AK
416 if (offset >= 0)
417 *(u64 *)((char *)&__get_cpu_var(injectm) + offset) = v;
418 return;
419 }
5f8c1a54
AK
420 wrmsrl(msr, v);
421}
422
b8325c5b
HS
423/*
424 * Collect all global (w.r.t. this processor) status about this machine
425 * check into our "mce" struct so that we can use it later to assess
426 * the severity of the problem as we read per-bank specific details.
427 */
428static inline void mce_gather_info(struct mce *m, struct pt_regs *regs)
429{
430 mce_setup(m);
431
432 m->mcgstatus = mce_rdmsrl(MSR_IA32_MCG_STATUS);
433 if (regs) {
434 /*
435 * Get the address of the instruction at the time of
436 * the machine check error.
437 */
438 if (m->mcgstatus & (MCG_STATUS_RIPV|MCG_STATUS_EIPV)) {
439 m->ip = regs->ip;
440 m->cs = regs->cs;
a129a7c8
AK
441
442 /*
443 * When in VM86 mode make the cs look like ring 3
444 * always. This is a lie, but it's better than passing
445 * the additional vm86 bit around everywhere.
446 */
447 if (v8086_mode(regs))
448 m->cs |= 3;
b8325c5b
HS
449 }
450 /* Use accurate RIP reporting if available. */
451 if (rip_msr)
452 m->ip = mce_rdmsrl(rip_msr);
453 }
454}
455
9b1beaf2
AK
456/*
457 * Simple lockless ring to communicate PFNs from the exception handler with the
458 * process context work function. This is vastly simplified because there's
459 * only a single reader and a single writer.
460 */
461#define MCE_RING_SIZE 16 /* we use one entry less */
462
463struct mce_ring {
464 unsigned short start;
465 unsigned short end;
466 unsigned long ring[MCE_RING_SIZE];
467};
468static DEFINE_PER_CPU(struct mce_ring, mce_ring);
469
470/* Runs with CPU affinity in workqueue */
471static int mce_ring_empty(void)
472{
473 struct mce_ring *r = &__get_cpu_var(mce_ring);
474
475 return r->start == r->end;
476}
477
478static int mce_ring_get(unsigned long *pfn)
479{
480 struct mce_ring *r;
481 int ret = 0;
482
483 *pfn = 0;
484 get_cpu();
485 r = &__get_cpu_var(mce_ring);
486 if (r->start == r->end)
487 goto out;
488 *pfn = r->ring[r->start];
489 r->start = (r->start + 1) % MCE_RING_SIZE;
490 ret = 1;
491out:
492 put_cpu();
493 return ret;
494}
495
496/* Always runs in MCE context with preempt off */
497static int mce_ring_add(unsigned long pfn)
498{
499 struct mce_ring *r = &__get_cpu_var(mce_ring);
500 unsigned next;
501
502 next = (r->end + 1) % MCE_RING_SIZE;
503 if (next == r->start)
504 return -1;
505 r->ring[r->end] = pfn;
506 wmb();
507 r->end = next;
508 return 0;
509}
510
88ccbedd 511int mce_available(struct cpuinfo_x86 *c)
1da177e4 512{
04b2b1a4 513 if (mce_disabled)
5b4408fd 514 return 0;
3d1712c9 515 return cpu_has(c, X86_FEATURE_MCE) && cpu_has(c, X86_FEATURE_MCA);
1da177e4
LT
516}
517
9b1beaf2
AK
518static void mce_schedule_work(void)
519{
520 if (!mce_ring_empty()) {
521 struct work_struct *work = &__get_cpu_var(mce_work);
522 if (!work_pending(work))
523 schedule_work(work);
524 }
525}
526
b77e70bf
HS
527DEFINE_PER_CPU(struct irq_work, mce_irq_work);
528
529static void mce_irq_work_cb(struct irq_work *entry)
ccc3c319 530{
9ff36ee9 531 mce_notify_irq();
9b1beaf2 532 mce_schedule_work();
ccc3c319 533}
ccc3c319
AK
534
535static void mce_report_event(struct pt_regs *regs)
536{
537 if (regs->flags & (X86_VM_MASK|X86_EFLAGS_IF)) {
9ff36ee9 538 mce_notify_irq();
9b1beaf2
AK
539 /*
540 * Triggering the work queue here is just an insurance
541 * policy in case the syscall exit notify handler
542 * doesn't run soon enough or ends up running on the
543 * wrong CPU (can happen when audit sleeps)
544 */
545 mce_schedule_work();
ccc3c319
AK
546 return;
547 }
548
b77e70bf 549 irq_work_queue(&__get_cpu_var(mce_irq_work));
ccc3c319
AK
550}
551
85f92694
TL
552/*
553 * Read ADDR and MISC registers.
554 */
555static void mce_read_aux(struct mce *m, int i)
556{
557 if (m->status & MCI_STATUS_MISCV)
558 m->misc = mce_rdmsrl(MSR_IA32_MCx_MISC(i));
559 if (m->status & MCI_STATUS_ADDRV) {
560 m->addr = mce_rdmsrl(MSR_IA32_MCx_ADDR(i));
561
562 /*
563 * Mask the reported address by the reported granularity.
564 */
565 if (mce_ser && (m->status & MCI_STATUS_MISCV)) {
566 u8 shift = MCI_MISC_ADDR_LSB(m->misc);
567 m->addr >>= shift;
568 m->addr <<= shift;
569 }
570 }
571}
572
ca84f696
AK
573DEFINE_PER_CPU(unsigned, mce_poll_count);
574
d88203d1 575/*
b79109c3
AK
576 * Poll for corrected events or events that happened before reset.
577 * Those are just logged through /dev/mcelog.
578 *
579 * This is executed in standard interrupt context.
ed7290d0
AK
580 *
581 * Note: spec recommends to panic for fatal unsignalled
582 * errors here. However this would be quite problematic --
583 * we would need to reimplement the Monarch handling and
584 * it would mess up the exclusion between exception handler
585 * and poll hander -- * so we skip this for now.
586 * These cases should not happen anyways, or only when the CPU
587 * is already totally * confused. In this case it's likely it will
588 * not fully execute the machine check handler either.
b79109c3 589 */
ee031c31 590void machine_check_poll(enum mcp_flags flags, mce_banks_t *b)
b79109c3
AK
591{
592 struct mce m;
593 int i;
594
c6ae41e7 595 this_cpu_inc(mce_poll_count);
ca84f696 596
b8325c5b 597 mce_gather_info(&m, NULL);
b79109c3 598
b79109c3 599 for (i = 0; i < banks; i++) {
cebe1820 600 if (!mce_banks[i].ctl || !test_bit(i, *b))
b79109c3
AK
601 continue;
602
603 m.misc = 0;
604 m.addr = 0;
605 m.bank = i;
606 m.tsc = 0;
607
608 barrier();
a2d32bcb 609 m.status = mce_rdmsrl(MSR_IA32_MCx_STATUS(i));
b79109c3
AK
610 if (!(m.status & MCI_STATUS_VAL))
611 continue;
612
613 /*
ed7290d0
AK
614 * Uncorrected or signalled events are handled by the exception
615 * handler when it is enabled, so don't process those here.
b79109c3
AK
616 *
617 * TBD do the same check for MCI_STATUS_EN here?
618 */
ed7290d0
AK
619 if (!(flags & MCP_UC) &&
620 (m.status & (mce_ser ? MCI_STATUS_S : MCI_STATUS_UC)))
b79109c3
AK
621 continue;
622
85f92694 623 mce_read_aux(&m, i);
b79109c3
AK
624
625 if (!(flags & MCP_TIMESTAMP))
626 m.tsc = 0;
627 /*
628 * Don't get the IP here because it's unlikely to
629 * have anything to do with the actual error location.
630 */
f0cb5452 631 if (!(flags & MCP_DONTLOG) && !mce_dont_log_ce)
5679af4c 632 mce_log(&m);
b79109c3
AK
633
634 /*
635 * Clear state for this bank.
636 */
a2d32bcb 637 mce_wrmsrl(MSR_IA32_MCx_STATUS(i), 0);
b79109c3
AK
638 }
639
640 /*
641 * Don't clear MCG_STATUS here because it's only defined for
642 * exceptions.
643 */
88921be3
AK
644
645 sync_core();
b79109c3 646}
ea149b36 647EXPORT_SYMBOL_GPL(machine_check_poll);
b79109c3 648
bd19a5e6
AK
649/*
650 * Do a quick check if any of the events requires a panic.
651 * This decides if we keep the events around or clear them.
652 */
95022b8c 653static int mce_no_way_out(struct mce *m, char **msg, unsigned long *validp)
bd19a5e6 654{
95022b8c 655 int i, ret = 0;
bd19a5e6
AK
656
657 for (i = 0; i < banks; i++) {
a2d32bcb 658 m->status = mce_rdmsrl(MSR_IA32_MCx_STATUS(i));
95022b8c
TL
659 if (m->status & MCI_STATUS_VAL)
660 __set_bit(i, validp);
bd19a5e6 661 if (mce_severity(m, tolerant, msg) >= MCE_PANIC_SEVERITY)
95022b8c 662 ret = 1;
bd19a5e6 663 }
95022b8c 664 return ret;
bd19a5e6
AK
665}
666
3c079792
AK
667/*
668 * Variable to establish order between CPUs while scanning.
669 * Each CPU spins initially until executing is equal its number.
670 */
671static atomic_t mce_executing;
672
673/*
674 * Defines order of CPUs on entry. First CPU becomes Monarch.
675 */
676static atomic_t mce_callin;
677
678/*
679 * Check if a timeout waiting for other CPUs happened.
680 */
681static int mce_timed_out(u64 *t)
682{
683 /*
684 * The others already did panic for some reason.
685 * Bail out like in a timeout.
686 * rmb() to tell the compiler that system_state
687 * might have been modified by someone else.
688 */
689 rmb();
690 if (atomic_read(&mce_paniced))
691 wait_for_panic();
692 if (!monarch_timeout)
693 goto out;
694 if ((s64)*t < SPINUNIT) {
695 /* CHECKME: Make panic default for 1 too? */
696 if (tolerant < 1)
697 mce_panic("Timeout synchronizing machine check over CPUs",
698 NULL, NULL);
699 cpu_missing = 1;
700 return 1;
701 }
702 *t -= SPINUNIT;
703out:
704 touch_nmi_watchdog();
705 return 0;
706}
707
708/*
709 * The Monarch's reign. The Monarch is the CPU who entered
710 * the machine check handler first. It waits for the others to
711 * raise the exception too and then grades them. When any
712 * error is fatal panic. Only then let the others continue.
713 *
714 * The other CPUs entering the MCE handler will be controlled by the
715 * Monarch. They are called Subjects.
716 *
717 * This way we prevent any potential data corruption in a unrecoverable case
718 * and also makes sure always all CPU's errors are examined.
719 *
680b6cfd 720 * Also this detects the case of a machine check event coming from outer
3c079792
AK
721 * space (not detected by any CPUs) In this case some external agent wants
722 * us to shut down, so panic too.
723 *
724 * The other CPUs might still decide to panic if the handler happens
725 * in a unrecoverable place, but in this case the system is in a semi-stable
726 * state and won't corrupt anything by itself. It's ok to let the others
727 * continue for a bit first.
728 *
729 * All the spin loops have timeouts; when a timeout happens a CPU
730 * typically elects itself to be Monarch.
731 */
732static void mce_reign(void)
733{
734 int cpu;
735 struct mce *m = NULL;
736 int global_worst = 0;
737 char *msg = NULL;
738 char *nmsg = NULL;
739
740 /*
741 * This CPU is the Monarch and the other CPUs have run
742 * through their handlers.
743 * Grade the severity of the errors of all the CPUs.
744 */
745 for_each_possible_cpu(cpu) {
746 int severity = mce_severity(&per_cpu(mces_seen, cpu), tolerant,
747 &nmsg);
748 if (severity > global_worst) {
749 msg = nmsg;
750 global_worst = severity;
751 m = &per_cpu(mces_seen, cpu);
752 }
753 }
754
755 /*
756 * Cannot recover? Panic here then.
757 * This dumps all the mces in the log buffer and stops the
758 * other CPUs.
759 */
760 if (m && global_worst >= MCE_PANIC_SEVERITY && tolerant < 3)
ac960375 761 mce_panic("Fatal Machine check", m, msg);
3c079792
AK
762
763 /*
764 * For UC somewhere we let the CPU who detects it handle it.
765 * Also must let continue the others, otherwise the handling
766 * CPU could deadlock on a lock.
767 */
768
769 /*
770 * No machine check event found. Must be some external
771 * source or one CPU is hung. Panic.
772 */
680b6cfd 773 if (global_worst <= MCE_KEEP_SEVERITY && tolerant < 3)
3c079792
AK
774 mce_panic("Machine check from unknown source", NULL, NULL);
775
776 /*
777 * Now clear all the mces_seen so that they don't reappear on
778 * the next mce.
779 */
780 for_each_possible_cpu(cpu)
781 memset(&per_cpu(mces_seen, cpu), 0, sizeof(struct mce));
782}
783
784static atomic_t global_nwo;
785
786/*
787 * Start of Monarch synchronization. This waits until all CPUs have
788 * entered the exception handler and then determines if any of them
789 * saw a fatal event that requires panic. Then it executes them
790 * in the entry order.
791 * TBD double check parallel CPU hotunplug
792 */
7fb06fc9 793static int mce_start(int *no_way_out)
3c079792 794{
7fb06fc9 795 int order;
3c079792
AK
796 int cpus = num_online_cpus();
797 u64 timeout = (u64)monarch_timeout * NSEC_PER_USEC;
798
7fb06fc9
HS
799 if (!timeout)
800 return -1;
3c079792 801
7fb06fc9 802 atomic_add(*no_way_out, &global_nwo);
184e1fdf
HY
803 /*
804 * global_nwo should be updated before mce_callin
805 */
806 smp_wmb();
a95436e4 807 order = atomic_inc_return(&mce_callin);
3c079792
AK
808
809 /*
810 * Wait for everyone.
811 */
812 while (atomic_read(&mce_callin) != cpus) {
813 if (mce_timed_out(&timeout)) {
814 atomic_set(&global_nwo, 0);
7fb06fc9 815 return -1;
3c079792
AK
816 }
817 ndelay(SPINUNIT);
818 }
819
184e1fdf
HY
820 /*
821 * mce_callin should be read before global_nwo
822 */
823 smp_rmb();
3c079792 824
7fb06fc9
HS
825 if (order == 1) {
826 /*
827 * Monarch: Starts executing now, the others wait.
828 */
3c079792 829 atomic_set(&mce_executing, 1);
7fb06fc9
HS
830 } else {
831 /*
832 * Subject: Now start the scanning loop one by one in
833 * the original callin order.
834 * This way when there are any shared banks it will be
835 * only seen by one CPU before cleared, avoiding duplicates.
836 */
837 while (atomic_read(&mce_executing) < order) {
838 if (mce_timed_out(&timeout)) {
839 atomic_set(&global_nwo, 0);
840 return -1;
841 }
842 ndelay(SPINUNIT);
843 }
3c079792
AK
844 }
845
846 /*
7fb06fc9 847 * Cache the global no_way_out state.
3c079792 848 */
7fb06fc9
HS
849 *no_way_out = atomic_read(&global_nwo);
850
851 return order;
3c079792
AK
852}
853
854/*
855 * Synchronize between CPUs after main scanning loop.
856 * This invokes the bulk of the Monarch processing.
857 */
858static int mce_end(int order)
859{
860 int ret = -1;
861 u64 timeout = (u64)monarch_timeout * NSEC_PER_USEC;
862
863 if (!timeout)
864 goto reset;
865 if (order < 0)
866 goto reset;
867
868 /*
869 * Allow others to run.
870 */
871 atomic_inc(&mce_executing);
872
873 if (order == 1) {
874 /* CHECKME: Can this race with a parallel hotplug? */
875 int cpus = num_online_cpus();
876
877 /*
878 * Monarch: Wait for everyone to go through their scanning
879 * loops.
880 */
881 while (atomic_read(&mce_executing) <= cpus) {
882 if (mce_timed_out(&timeout))
883 goto reset;
884 ndelay(SPINUNIT);
885 }
886
887 mce_reign();
888 barrier();
889 ret = 0;
890 } else {
891 /*
892 * Subject: Wait for Monarch to finish.
893 */
894 while (atomic_read(&mce_executing) != 0) {
895 if (mce_timed_out(&timeout))
896 goto reset;
897 ndelay(SPINUNIT);
898 }
899
900 /*
901 * Don't reset anything. That's done by the Monarch.
902 */
903 return 0;
904 }
905
906 /*
907 * Reset all global state.
908 */
909reset:
910 atomic_set(&global_nwo, 0);
911 atomic_set(&mce_callin, 0);
912 barrier();
913
914 /*
915 * Let others run again.
916 */
917 atomic_set(&mce_executing, 0);
918 return ret;
919}
920
9b1beaf2
AK
921/*
922 * Check if the address reported by the CPU is in a format we can parse.
923 * It would be possible to add code for most other cases, but all would
924 * be somewhat complicated (e.g. segment offset would require an instruction
0d2eb44f 925 * parser). So only support physical addresses up to page granuality for now.
9b1beaf2
AK
926 */
927static int mce_usable_address(struct mce *m)
928{
929 if (!(m->status & MCI_STATUS_MISCV) || !(m->status & MCI_STATUS_ADDRV))
930 return 0;
2b90e77e 931 if (MCI_MISC_ADDR_LSB(m->misc) > PAGE_SHIFT)
9b1beaf2 932 return 0;
2b90e77e 933 if (MCI_MISC_ADDR_MODE(m->misc) != MCI_MISC_ADDR_PHYS)
9b1beaf2
AK
934 return 0;
935 return 1;
936}
937
3c079792
AK
938static void mce_clear_state(unsigned long *toclear)
939{
940 int i;
941
942 for (i = 0; i < banks; i++) {
943 if (test_bit(i, toclear))
a2d32bcb 944 mce_wrmsrl(MSR_IA32_MCx_STATUS(i), 0);
3c079792
AK
945 }
946}
947
af104e39
TL
948/*
949 * Need to save faulting physical address associated with a process
950 * in the machine check handler some place where we can grab it back
951 * later in mce_notify_process()
952 */
953#define MCE_INFO_MAX 16
954
955struct mce_info {
956 atomic_t inuse;
957 struct task_struct *t;
958 __u64 paddr;
dad1743e 959 int restartable;
af104e39
TL
960} mce_info[MCE_INFO_MAX];
961
dad1743e 962static void mce_save_info(__u64 addr, int c)
af104e39
TL
963{
964 struct mce_info *mi;
965
966 for (mi = mce_info; mi < &mce_info[MCE_INFO_MAX]; mi++) {
967 if (atomic_cmpxchg(&mi->inuse, 0, 1) == 0) {
968 mi->t = current;
969 mi->paddr = addr;
dad1743e 970 mi->restartable = c;
af104e39
TL
971 return;
972 }
973 }
974
975 mce_panic("Too many concurrent recoverable errors", NULL, NULL);
976}
977
978static struct mce_info *mce_find_info(void)
979{
980 struct mce_info *mi;
981
982 for (mi = mce_info; mi < &mce_info[MCE_INFO_MAX]; mi++)
983 if (atomic_read(&mi->inuse) && mi->t == current)
984 return mi;
985 return NULL;
986}
987
988static void mce_clear_info(struct mce_info *mi)
989{
990 atomic_set(&mi->inuse, 0);
991}
992
b79109c3
AK
993/*
994 * The actual machine check handler. This only handles real
995 * exceptions when something got corrupted coming in through int 18.
996 *
997 * This is executed in NMI context not subject to normal locking rules. This
998 * implies that most kernel services cannot be safely used. Don't even
999 * think about putting a printk in there!
3c079792
AK
1000 *
1001 * On Intel systems this is entered on all CPUs in parallel through
1002 * MCE broadcast. However some CPUs might be broken beyond repair,
1003 * so be always careful when synchronizing with others.
1da177e4 1004 */
e9eee03e 1005void do_machine_check(struct pt_regs *regs, long error_code)
1da177e4 1006{
3c079792 1007 struct mce m, *final;
1da177e4 1008 int i;
3c079792
AK
1009 int worst = 0;
1010 int severity;
1011 /*
1012 * Establish sequential order between the CPUs entering the machine
1013 * check handler.
1014 */
7fb06fc9 1015 int order;
bd78432c
TH
1016 /*
1017 * If no_way_out gets set, there is no safe way to recover from this
1018 * MCE. If tolerant is cranked up, we'll try anyway.
1019 */
1020 int no_way_out = 0;
1021 /*
1022 * If kill_it gets set, there might be a way to recover from this
1023 * error.
1024 */
1025 int kill_it = 0;
b79109c3 1026 DECLARE_BITMAP(toclear, MAX_NR_BANKS);
95022b8c 1027 DECLARE_BITMAP(valid_banks, MAX_NR_BANKS);
bd19a5e6 1028 char *msg = "Unknown";
1da177e4 1029
553f265f
AK
1030 atomic_inc(&mce_entry);
1031
c6ae41e7 1032 this_cpu_inc(mce_exception_count);
01ca79f1 1033
b79109c3 1034 if (!banks)
32561696 1035 goto out;
1da177e4 1036
b8325c5b 1037 mce_gather_info(&m, regs);
b5f2fa4e 1038
3c079792
AK
1039 final = &__get_cpu_var(mces_seen);
1040 *final = m;
1041
95022b8c
TL
1042 memset(valid_banks, 0, sizeof(valid_banks));
1043 no_way_out = mce_no_way_out(&m, &msg, valid_banks);
680b6cfd 1044
1da177e4
LT
1045 barrier();
1046
ed7290d0 1047 /*
a8c321fb
TL
1048 * When no restart IP might need to kill or panic.
1049 * Assume the worst for now, but if we find the
1050 * severity is MCE_AR_SEVERITY we have other options.
ed7290d0
AK
1051 */
1052 if (!(m.mcgstatus & MCG_STATUS_RIPV))
1053 kill_it = 1;
1054
3c079792
AK
1055 /*
1056 * Go through all the banks in exclusion of the other CPUs.
1057 * This way we don't report duplicated events on shared banks
1058 * because the first one to see it will clear it.
1059 */
7fb06fc9 1060 order = mce_start(&no_way_out);
1da177e4 1061 for (i = 0; i < banks; i++) {
b79109c3 1062 __clear_bit(i, toclear);
95022b8c
TL
1063 if (!test_bit(i, valid_banks))
1064 continue;
cebe1820 1065 if (!mce_banks[i].ctl)
1da177e4 1066 continue;
d88203d1
TG
1067
1068 m.misc = 0;
1da177e4
LT
1069 m.addr = 0;
1070 m.bank = i;
1da177e4 1071
a2d32bcb 1072 m.status = mce_rdmsrl(MSR_IA32_MCx_STATUS(i));
1da177e4
LT
1073 if ((m.status & MCI_STATUS_VAL) == 0)
1074 continue;
1075
b79109c3 1076 /*
ed7290d0
AK
1077 * Non uncorrected or non signaled errors are handled by
1078 * machine_check_poll. Leave them alone, unless this panics.
b79109c3 1079 */
ed7290d0
AK
1080 if (!(m.status & (mce_ser ? MCI_STATUS_S : MCI_STATUS_UC)) &&
1081 !no_way_out)
b79109c3
AK
1082 continue;
1083
1084 /*
1085 * Set taint even when machine check was not enabled.
1086 */
1087 add_taint(TAINT_MACHINE_CHECK);
1088
ed7290d0 1089 severity = mce_severity(&m, tolerant, NULL);
b79109c3 1090
ed7290d0
AK
1091 /*
1092 * When machine check was for corrected handler don't touch,
1093 * unless we're panicing.
1094 */
1095 if (severity == MCE_KEEP_SEVERITY && !no_way_out)
1096 continue;
1097 __set_bit(i, toclear);
1098 if (severity == MCE_NO_SEVERITY) {
b79109c3
AK
1099 /*
1100 * Machine check event was not enabled. Clear, but
1101 * ignore.
1102 */
1103 continue;
1da177e4
LT
1104 }
1105
85f92694 1106 mce_read_aux(&m, i);
1da177e4 1107
9b1beaf2
AK
1108 /*
1109 * Action optional error. Queue address for later processing.
1110 * When the ring overflows we just ignore the AO error.
1111 * RED-PEN add some logging mechanism when
1112 * usable_address or mce_add_ring fails.
1113 * RED-PEN don't ignore overflow for tolerant == 0
1114 */
1115 if (severity == MCE_AO_SEVERITY && mce_usable_address(&m))
1116 mce_ring_add(m.addr >> PAGE_SHIFT);
1117
b79109c3 1118 mce_log(&m);
1da177e4 1119
3c079792
AK
1120 if (severity > worst) {
1121 *final = m;
1122 worst = severity;
1da177e4 1123 }
1da177e4
LT
1124 }
1125
a8c321fb
TL
1126 /* mce_clear_state will clear *final, save locally for use later */
1127 m = *final;
1128
3c079792
AK
1129 if (!no_way_out)
1130 mce_clear_state(toclear);
1131
e9eee03e 1132 /*
3c079792
AK
1133 * Do most of the synchronization with other CPUs.
1134 * When there's any problem use only local no_way_out state.
e9eee03e 1135 */
3c079792
AK
1136 if (mce_end(order) < 0)
1137 no_way_out = worst >= MCE_PANIC_SEVERITY;
bd78432c
TH
1138
1139 /*
a8c321fb
TL
1140 * At insane "tolerant" levels we take no action. Otherwise
1141 * we only die if we have no other choice. For less serious
1142 * issues we try to recover, or limit damage to the current
1143 * process.
bd78432c 1144 */
a8c321fb
TL
1145 if (tolerant < 3) {
1146 if (no_way_out)
1147 mce_panic("Fatal machine check on current CPU", &m, msg);
1148 if (worst == MCE_AR_SEVERITY) {
1149 /* schedule action before return to userland */
dad1743e 1150 mce_save_info(m.addr, m.mcgstatus & MCG_STATUS_RIPV);
a8c321fb
TL
1151 set_thread_flag(TIF_MCE_NOTIFY);
1152 } else if (kill_it) {
1153 force_sig(SIGBUS, current);
1154 }
1155 }
e02e68d3 1156
3c079792
AK
1157 if (worst > 0)
1158 mce_report_event(regs);
5f8c1a54 1159 mce_wrmsrl(MSR_IA32_MCG_STATUS, 0);
32561696 1160out:
553f265f 1161 atomic_dec(&mce_entry);
88921be3 1162 sync_core();
1da177e4 1163}
ea149b36 1164EXPORT_SYMBOL_GPL(do_machine_check);
1da177e4 1165
cd42f4a3
TL
1166#ifndef CONFIG_MEMORY_FAILURE
1167int memory_failure(unsigned long pfn, int vector, int flags)
9b1beaf2 1168{
a8c321fb
TL
1169 /* mce_severity() should not hand us an ACTION_REQUIRED error */
1170 BUG_ON(flags & MF_ACTION_REQUIRED);
c767a54b
JP
1171 pr_err("Uncorrected memory error in page 0x%lx ignored\n"
1172 "Rebuild kernel with CONFIG_MEMORY_FAILURE=y for smarter handling\n",
1173 pfn);
cd42f4a3
TL
1174
1175 return 0;
9b1beaf2 1176}
cd42f4a3 1177#endif
9b1beaf2
AK
1178
1179/*
a8c321fb
TL
1180 * Called in process context that interrupted by MCE and marked with
1181 * TIF_MCE_NOTIFY, just before returning to erroneous userland.
1182 * This code is allowed to sleep.
1183 * Attempt possible recovery such as calling the high level VM handler to
1184 * process any corrupted pages, and kill/signal current process if required.
1185 * Action required errors are handled here.
9b1beaf2
AK
1186 */
1187void mce_notify_process(void)
1188{
1189 unsigned long pfn;
a8c321fb 1190 struct mce_info *mi = mce_find_info();
6751ed65 1191 int flags = MF_ACTION_REQUIRED;
a8c321fb
TL
1192
1193 if (!mi)
1194 mce_panic("Lost physical address for unconsumed uncorrectable error", NULL, NULL);
1195 pfn = mi->paddr >> PAGE_SHIFT;
1196
1197 clear_thread_flag(TIF_MCE_NOTIFY);
1198
1199 pr_err("Uncorrected hardware memory error in user-access at %llx",
1200 mi->paddr);
dad1743e
TL
1201 /*
1202 * We must call memory_failure() here even if the current process is
1203 * doomed. We still need to mark the page as poisoned and alert any
1204 * other users of the page.
1205 */
6751ed65
TL
1206 if (!mi->restartable)
1207 flags |= MF_MUST_KILL;
1208 if (memory_failure(pfn, MCE_VECTOR, flags) < 0) {
a8c321fb
TL
1209 pr_err("Memory error not recovered");
1210 force_sig(SIGBUS, current);
1211 }
1212 mce_clear_info(mi);
9b1beaf2
AK
1213}
1214
a8c321fb
TL
1215/*
1216 * Action optional processing happens here (picking up
1217 * from the list of faulting pages that do_machine_check()
1218 * placed into the "ring").
1219 */
9b1beaf2
AK
1220static void mce_process_work(struct work_struct *dummy)
1221{
a8c321fb
TL
1222 unsigned long pfn;
1223
1224 while (mce_ring_get(&pfn))
1225 memory_failure(pfn, MCE_VECTOR, 0);
9b1beaf2
AK
1226}
1227
15d5f839
DZ
1228#ifdef CONFIG_X86_MCE_INTEL
1229/***
1230 * mce_log_therm_throt_event - Logs the thermal throttling event to mcelog
676b1855 1231 * @cpu: The CPU on which the event occurred.
15d5f839
DZ
1232 * @status: Event status information
1233 *
1234 * This function should be called by the thermal interrupt after the
1235 * event has been processed and the decision was made to log the event
1236 * further.
1237 *
1238 * The status parameter will be saved to the 'status' field of 'struct mce'
1239 * and historically has been the register value of the
1240 * MSR_IA32_THERMAL_STATUS (Intel) msr.
1241 */
b5f2fa4e 1242void mce_log_therm_throt_event(__u64 status)
15d5f839
DZ
1243{
1244 struct mce m;
1245
b5f2fa4e 1246 mce_setup(&m);
15d5f839
DZ
1247 m.bank = MCE_THERMAL_BANK;
1248 m.status = status;
15d5f839
DZ
1249 mce_log(&m);
1250}
1251#endif /* CONFIG_X86_MCE_INTEL */
1252
1da177e4 1253/*
8a336b0a
TH
1254 * Periodic polling timer for "silent" machine check errors. If the
1255 * poller finds an MCE, poll 2x faster. When the poller finds no more
1256 * errors, poll 2x slower (up to check_interval seconds).
1da177e4 1257 */
82f7af09 1258static unsigned long check_interval = 5 * 60; /* 5 minutes */
e9eee03e 1259
82f7af09 1260static DEFINE_PER_CPU(unsigned long, mce_next_interval); /* in jiffies */
52d168e2 1261static DEFINE_PER_CPU(struct timer_list, mce_timer);
1da177e4 1262
82f7af09 1263static void mce_timer_fn(unsigned long data)
1da177e4 1264{
82f7af09
TG
1265 struct timer_list *t = &__get_cpu_var(mce_timer);
1266 unsigned long iv;
52d168e2
AK
1267
1268 WARN_ON(smp_processor_id() != data);
1269
7b543a53 1270 if (mce_available(__this_cpu_ptr(&cpu_info))) {
ee031c31
AK
1271 machine_check_poll(MCP_TIMESTAMP,
1272 &__get_cpu_var(mce_poll_banks));
e9eee03e 1273 }
1da177e4
LT
1274
1275 /*
e02e68d3
TH
1276 * Alert userspace if needed. If we logged an MCE, reduce the
1277 * polling interval, otherwise increase the polling interval.
1da177e4 1278 */
82f7af09 1279 iv = __this_cpu_read(mce_next_interval);
9ff36ee9 1280 if (mce_notify_irq())
958fb3c5 1281 iv = max(iv / 2, (unsigned long) HZ/100);
14a02530 1282 else
82f7af09
TG
1283 iv = min(iv * 2, round_jiffies_relative(check_interval * HZ));
1284 __this_cpu_write(mce_next_interval, iv);
e02e68d3 1285
82f7af09 1286 t->expires = jiffies + iv;
5be6066a 1287 add_timer_on(t, smp_processor_id());
e02e68d3
TH
1288}
1289
9aaef96f
HS
1290/* Must not be called in IRQ context where del_timer_sync() can deadlock */
1291static void mce_timer_delete_all(void)
1292{
1293 int cpu;
1294
1295 for_each_online_cpu(cpu)
1296 del_timer_sync(&per_cpu(mce_timer, cpu));
1297}
1298
9bd98405
AK
1299static void mce_do_trigger(struct work_struct *work)
1300{
1020bcbc 1301 call_usermodehelper(mce_helper, mce_helper_argv, NULL, UMH_NO_WAIT);
9bd98405
AK
1302}
1303
1304static DECLARE_WORK(mce_trigger_work, mce_do_trigger);
1305
e02e68d3 1306/*
9bd98405
AK
1307 * Notify the user(s) about new machine check events.
1308 * Can be called from interrupt context, but not from machine check/NMI
1309 * context.
e02e68d3 1310 */
9ff36ee9 1311int mce_notify_irq(void)
e02e68d3 1312{
8457c84d
AK
1313 /* Not more than two messages every minute */
1314 static DEFINE_RATELIMIT_STATE(ratelimit, 60*HZ, 2);
1315
1020bcbc 1316 if (test_and_clear_bit(0, &mce_need_notify)) {
93b62c3c
HS
1317 /* wake processes polling /dev/mcelog */
1318 wake_up_interruptible(&mce_chrdev_wait);
9bd98405
AK
1319
1320 /*
1321 * There is no risk of missing notifications because
1322 * work_pending is always cleared before the function is
1323 * executed.
1324 */
1020bcbc 1325 if (mce_helper[0] && !work_pending(&mce_trigger_work))
9bd98405 1326 schedule_work(&mce_trigger_work);
e02e68d3 1327
8457c84d 1328 if (__ratelimit(&ratelimit))
a2d7b0d4 1329 pr_info(HW_ERR "Machine check events logged\n");
e02e68d3
TH
1330
1331 return 1;
1da177e4 1332 }
e02e68d3
TH
1333 return 0;
1334}
9ff36ee9 1335EXPORT_SYMBOL_GPL(mce_notify_irq);
8a336b0a 1336
cffd377e 1337static int __cpuinit __mcheck_cpu_mce_banks_init(void)
cebe1820
AK
1338{
1339 int i;
1340
1341 mce_banks = kzalloc(banks * sizeof(struct mce_bank), GFP_KERNEL);
1342 if (!mce_banks)
1343 return -ENOMEM;
1344 for (i = 0; i < banks; i++) {
1345 struct mce_bank *b = &mce_banks[i];
11868a2d 1346
cebe1820
AK
1347 b->ctl = -1ULL;
1348 b->init = 1;
1349 }
1350 return 0;
1351}
1352
d88203d1 1353/*
1da177e4
LT
1354 * Initialize Machine Checks for a CPU.
1355 */
5e09954a 1356static int __cpuinit __mcheck_cpu_cap_init(void)
1da177e4 1357{
0d7482e3 1358 unsigned b;
e9eee03e 1359 u64 cap;
1da177e4
LT
1360
1361 rdmsrl(MSR_IA32_MCG_CAP, cap);
01c6680a
TG
1362
1363 b = cap & MCG_BANKCNT_MASK;
93ae5012 1364 if (!banks)
c767a54b 1365 pr_info("CPU supports %d MCE banks\n", b);
b659294b 1366
0d7482e3 1367 if (b > MAX_NR_BANKS) {
c767a54b 1368 pr_warn("Using only %u machine check banks out of %u\n",
0d7482e3
AK
1369 MAX_NR_BANKS, b);
1370 b = MAX_NR_BANKS;
1371 }
1372
1373 /* Don't support asymmetric configurations today */
1374 WARN_ON(banks != 0 && b != banks);
1375 banks = b;
cebe1820 1376 if (!mce_banks) {
cffd377e 1377 int err = __mcheck_cpu_mce_banks_init();
11868a2d 1378
cebe1820
AK
1379 if (err)
1380 return err;
1da177e4 1381 }
0d7482e3 1382
94ad8474 1383 /* Use accurate RIP reporting if available. */
01c6680a 1384 if ((cap & MCG_EXT_P) && MCG_EXT_CNT(cap) >= 9)
94ad8474 1385 rip_msr = MSR_IA32_MCG_EIP;
1da177e4 1386
ed7290d0
AK
1387 if (cap & MCG_SER_P)
1388 mce_ser = 1;
1389
0d7482e3
AK
1390 return 0;
1391}
1392
5e09954a 1393static void __mcheck_cpu_init_generic(void)
0d7482e3 1394{
e9eee03e 1395 mce_banks_t all_banks;
0d7482e3
AK
1396 u64 cap;
1397 int i;
1398
b79109c3
AK
1399 /*
1400 * Log the machine checks left over from the previous reset.
1401 */
ee031c31 1402 bitmap_fill(all_banks, MAX_NR_BANKS);
5679af4c 1403 machine_check_poll(MCP_UC|(!mce_bootlog ? MCP_DONTLOG : 0), &all_banks);
1da177e4
LT
1404
1405 set_in_cr4(X86_CR4_MCE);
1406
0d7482e3 1407 rdmsrl(MSR_IA32_MCG_CAP, cap);
1da177e4
LT
1408 if (cap & MCG_CTL_P)
1409 wrmsr(MSR_IA32_MCG_CTL, 0xffffffff, 0xffffffff);
1410
1411 for (i = 0; i < banks; i++) {
cebe1820 1412 struct mce_bank *b = &mce_banks[i];
11868a2d 1413
cebe1820 1414 if (!b->init)
06b7a7a5 1415 continue;
a2d32bcb
AK
1416 wrmsrl(MSR_IA32_MCx_CTL(i), b->ctl);
1417 wrmsrl(MSR_IA32_MCx_STATUS(i), 0);
d88203d1 1418 }
1da177e4
LT
1419}
1420
1421/* Add per CPU specific workarounds here */
5e09954a 1422static int __cpuinit __mcheck_cpu_apply_quirks(struct cpuinfo_x86 *c)
d88203d1 1423{
e412cd25 1424 if (c->x86_vendor == X86_VENDOR_UNKNOWN) {
c767a54b 1425 pr_info("unknown CPU type - not enabling MCE support\n");
e412cd25
IM
1426 return -EOPNOTSUPP;
1427 }
1428
1da177e4 1429 /* This should be disabled by the BIOS, but isn't always */
911f6a7b 1430 if (c->x86_vendor == X86_VENDOR_AMD) {
e9eee03e
IM
1431 if (c->x86 == 15 && banks > 4) {
1432 /*
1433 * disable GART TBL walk error reporting, which
1434 * trips off incorrectly with the IOMMU & 3ware
1435 * & Cerberus:
1436 */
cebe1820 1437 clear_bit(10, (unsigned long *)&mce_banks[4].ctl);
e9eee03e
IM
1438 }
1439 if (c->x86 <= 17 && mce_bootlog < 0) {
1440 /*
1441 * Lots of broken BIOS around that don't clear them
1442 * by default and leave crap in there. Don't log:
1443 */
911f6a7b 1444 mce_bootlog = 0;
e9eee03e 1445 }
2e6f694f
AK
1446 /*
1447 * Various K7s with broken bank 0 around. Always disable
1448 * by default.
1449 */
203abd67 1450 if (c->x86 == 6 && banks > 0)
cebe1820 1451 mce_banks[0].ctl = 0;
575203b4
BP
1452
1453 /*
1454 * Turn off MC4_MISC thresholding banks on those models since
1455 * they're not supported there.
1456 */
1457 if (c->x86 == 0x15 &&
1458 (c->x86_model >= 0x10 && c->x86_model <= 0x1f)) {
1459 int i;
1460 u64 val, hwcr;
1461 bool need_toggle;
1462 u32 msrs[] = {
1463 0x00000413, /* MC4_MISC0 */
1464 0xc0000408, /* MC4_MISC1 */
1465 };
1466
1467 rdmsrl(MSR_K7_HWCR, hwcr);
1468
1469 /* McStatusWrEn has to be set */
1470 need_toggle = !(hwcr & BIT(18));
1471
1472 if (need_toggle)
1473 wrmsrl(MSR_K7_HWCR, hwcr | BIT(18));
1474
1475 for (i = 0; i < ARRAY_SIZE(msrs); i++) {
1476 rdmsrl(msrs[i], val);
1477
1478 /* CntP bit set? */
80f03361
BP
1479 if (val & BIT_64(62)) {
1480 val &= ~BIT_64(62);
1481 wrmsrl(msrs[i], val);
575203b4
BP
1482 }
1483 }
1484
1485 /* restore old settings */
1486 if (need_toggle)
1487 wrmsrl(MSR_K7_HWCR, hwcr);
1488 }
1da177e4 1489 }
e583538f 1490
06b7a7a5
AK
1491 if (c->x86_vendor == X86_VENDOR_INTEL) {
1492 /*
1493 * SDM documents that on family 6 bank 0 should not be written
1494 * because it aliases to another special BIOS controlled
1495 * register.
1496 * But it's not aliased anymore on model 0x1a+
1497 * Don't ignore bank 0 completely because there could be a
1498 * valid event later, merely don't write CTL0.
1499 */
1500
cebe1820
AK
1501 if (c->x86 == 6 && c->x86_model < 0x1A && banks > 0)
1502 mce_banks[0].init = 0;
3c079792
AK
1503
1504 /*
1505 * All newer Intel systems support MCE broadcasting. Enable
1506 * synchronization with a one second timeout.
1507 */
1508 if ((c->x86 > 6 || (c->x86 == 6 && c->x86_model >= 0xe)) &&
1509 monarch_timeout < 0)
1510 monarch_timeout = USEC_PER_SEC;
c7f6fa44 1511
e412cd25
IM
1512 /*
1513 * There are also broken BIOSes on some Pentium M and
1514 * earlier systems:
1515 */
1516 if (c->x86 == 6 && c->x86_model <= 13 && mce_bootlog < 0)
c7f6fa44 1517 mce_bootlog = 0;
06b7a7a5 1518 }
3c079792
AK
1519 if (monarch_timeout < 0)
1520 monarch_timeout = 0;
29b0f591
AK
1521 if (mce_bootlog != 0)
1522 mce_panic_timeout = 30;
e412cd25
IM
1523
1524 return 0;
d88203d1 1525}
1da177e4 1526
3a97fc34 1527static int __cpuinit __mcheck_cpu_ancient_init(struct cpuinfo_x86 *c)
4efc0670
AK
1528{
1529 if (c->x86 != 5)
3a97fc34
HS
1530 return 0;
1531
4efc0670
AK
1532 switch (c->x86_vendor) {
1533 case X86_VENDOR_INTEL:
c6978369 1534 intel_p5_mcheck_init(c);
3a97fc34 1535 return 1;
4efc0670
AK
1536 break;
1537 case X86_VENDOR_CENTAUR:
1538 winchip_mcheck_init(c);
3a97fc34 1539 return 1;
4efc0670
AK
1540 break;
1541 }
3a97fc34
HS
1542
1543 return 0;
4efc0670
AK
1544}
1545
5e09954a 1546static void __mcheck_cpu_init_vendor(struct cpuinfo_x86 *c)
1da177e4
LT
1547{
1548 switch (c->x86_vendor) {
1549 case X86_VENDOR_INTEL:
1550 mce_intel_feature_init(c);
1551 break;
89b831ef
JS
1552 case X86_VENDOR_AMD:
1553 mce_amd_feature_init(c);
1554 break;
1da177e4
LT
1555 default:
1556 break;
1557 }
1558}
1559
26c3c283 1560static void mce_start_timer(unsigned int cpu, struct timer_list *t)
52d168e2 1561{
1a87fc1e 1562 unsigned long iv = check_interval * HZ;
52d168e2 1563
26c3c283 1564 __this_cpu_write(mce_next_interval, iv);
bc09effa 1565
26c3c283 1566 if (mce_ignore_ce || !iv)
62fdac59
HS
1567 return;
1568
82f7af09 1569 t->expires = round_jiffies(jiffies + iv);
5be6066a 1570 add_timer_on(t, smp_processor_id());
52d168e2
AK
1571}
1572
26c3c283
TG
1573static void __mcheck_cpu_init_timer(void)
1574{
1575 struct timer_list *t = &__get_cpu_var(mce_timer);
1576 unsigned int cpu = smp_processor_id();
1577
1578 setup_timer(t, mce_timer_fn, cpu);
1579 mce_start_timer(cpu, t);
1580}
1581
9eda8cb3
AK
1582/* Handle unconfigured int18 (should never happen) */
1583static void unexpected_machine_check(struct pt_regs *regs, long error_code)
1584{
c767a54b 1585 pr_err("CPU#%d: Unexpected int18 (Machine Check)\n",
9eda8cb3
AK
1586 smp_processor_id());
1587}
1588
1589/* Call the installed machine check handler for this CPU setup. */
1590void (*machine_check_vector)(struct pt_regs *, long error_code) =
1591 unexpected_machine_check;
1592
d88203d1 1593/*
1da177e4 1594 * Called for each booted CPU to set up machine checks.
e9eee03e 1595 * Must be called with preempt off:
1da177e4 1596 */
5e09954a 1597void __cpuinit mcheck_cpu_init(struct cpuinfo_x86 *c)
1da177e4 1598{
4efc0670
AK
1599 if (mce_disabled)
1600 return;
1601
3a97fc34
HS
1602 if (__mcheck_cpu_ancient_init(c))
1603 return;
4efc0670 1604
5b4408fd 1605 if (!mce_available(c))
1da177e4
LT
1606 return;
1607
5e09954a 1608 if (__mcheck_cpu_cap_init() < 0 || __mcheck_cpu_apply_quirks(c) < 0) {
04b2b1a4 1609 mce_disabled = 1;
0d7482e3
AK
1610 return;
1611 }
0d7482e3 1612
5d727926
AK
1613 machine_check_vector = do_machine_check;
1614
5e09954a
BP
1615 __mcheck_cpu_init_generic();
1616 __mcheck_cpu_init_vendor(c);
1617 __mcheck_cpu_init_timer();
9b1beaf2 1618 INIT_WORK(&__get_cpu_var(mce_work), mce_process_work);
b77e70bf 1619 init_irq_work(&__get_cpu_var(mce_irq_work), &mce_irq_work_cb);
1da177e4
LT
1620}
1621
1622/*
93b62c3c 1623 * mce_chrdev: Character device /dev/mcelog to read and clear the MCE log.
1da177e4
LT
1624 */
1625
93b62c3c
HS
1626static DEFINE_SPINLOCK(mce_chrdev_state_lock);
1627static int mce_chrdev_open_count; /* #times opened */
1628static int mce_chrdev_open_exclu; /* already open exclusive? */
f528e7ba 1629
93b62c3c 1630static int mce_chrdev_open(struct inode *inode, struct file *file)
f528e7ba 1631{
93b62c3c 1632 spin_lock(&mce_chrdev_state_lock);
f528e7ba 1633
93b62c3c
HS
1634 if (mce_chrdev_open_exclu ||
1635 (mce_chrdev_open_count && (file->f_flags & O_EXCL))) {
1636 spin_unlock(&mce_chrdev_state_lock);
e9eee03e 1637
f528e7ba
TH
1638 return -EBUSY;
1639 }
1640
1641 if (file->f_flags & O_EXCL)
93b62c3c
HS
1642 mce_chrdev_open_exclu = 1;
1643 mce_chrdev_open_count++;
f528e7ba 1644
93b62c3c 1645 spin_unlock(&mce_chrdev_state_lock);
f528e7ba 1646
bd78432c 1647 return nonseekable_open(inode, file);
f528e7ba
TH
1648}
1649
93b62c3c 1650static int mce_chrdev_release(struct inode *inode, struct file *file)
f528e7ba 1651{
93b62c3c 1652 spin_lock(&mce_chrdev_state_lock);
f528e7ba 1653
93b62c3c
HS
1654 mce_chrdev_open_count--;
1655 mce_chrdev_open_exclu = 0;
f528e7ba 1656
93b62c3c 1657 spin_unlock(&mce_chrdev_state_lock);
f528e7ba
TH
1658
1659 return 0;
1660}
1661
d88203d1
TG
1662static void collect_tscs(void *data)
1663{
1da177e4 1664 unsigned long *cpu_tsc = (unsigned long *)data;
d88203d1 1665
1da177e4 1666 rdtscll(cpu_tsc[smp_processor_id()]);
d88203d1 1667}
1da177e4 1668
482908b4
HY
1669static int mce_apei_read_done;
1670
1671/* Collect MCE record of previous boot in persistent storage via APEI ERST. */
1672static int __mce_read_apei(char __user **ubuf, size_t usize)
1673{
1674 int rc;
1675 u64 record_id;
1676 struct mce m;
1677
1678 if (usize < sizeof(struct mce))
1679 return -EINVAL;
1680
1681 rc = apei_read_mce(&m, &record_id);
1682 /* Error or no more MCE record */
1683 if (rc <= 0) {
1684 mce_apei_read_done = 1;
fadd85f1
NH
1685 /*
1686 * When ERST is disabled, mce_chrdev_read() should return
1687 * "no record" instead of "no device."
1688 */
1689 if (rc == -ENODEV)
1690 return 0;
482908b4
HY
1691 return rc;
1692 }
1693 rc = -EFAULT;
1694 if (copy_to_user(*ubuf, &m, sizeof(struct mce)))
1695 return rc;
1696 /*
1697 * In fact, we should have cleared the record after that has
1698 * been flushed to the disk or sent to network in
1699 * /sbin/mcelog, but we have no interface to support that now,
1700 * so just clear it to avoid duplication.
1701 */
1702 rc = apei_clear_mce(record_id);
1703 if (rc) {
1704 mce_apei_read_done = 1;
1705 return rc;
1706 }
1707 *ubuf += sizeof(struct mce);
1708
1709 return 0;
1710}
1711
93b62c3c
HS
1712static ssize_t mce_chrdev_read(struct file *filp, char __user *ubuf,
1713 size_t usize, loff_t *off)
1da177e4 1714{
e9eee03e 1715 char __user *buf = ubuf;
f0de53bb 1716 unsigned long *cpu_tsc;
ef41df43 1717 unsigned prev, next;
1da177e4
LT
1718 int i, err;
1719
6bca67f9 1720 cpu_tsc = kmalloc(nr_cpu_ids * sizeof(long), GFP_KERNEL);
f0de53bb
AK
1721 if (!cpu_tsc)
1722 return -ENOMEM;
1723
93b62c3c 1724 mutex_lock(&mce_chrdev_read_mutex);
482908b4
HY
1725
1726 if (!mce_apei_read_done) {
1727 err = __mce_read_apei(&buf, usize);
1728 if (err || buf != ubuf)
1729 goto out;
1730 }
1731
f56e8a07 1732 next = rcu_dereference_check_mce(mcelog.next);
1da177e4
LT
1733
1734 /* Only supports full reads right now */
482908b4
HY
1735 err = -EINVAL;
1736 if (*off != 0 || usize < MCE_LOG_LEN*sizeof(struct mce))
1737 goto out;
1da177e4
LT
1738
1739 err = 0;
ef41df43
HY
1740 prev = 0;
1741 do {
1742 for (i = prev; i < next; i++) {
1743 unsigned long start = jiffies;
559faa6b 1744 struct mce *m = &mcelog.entry[i];
ef41df43 1745
559faa6b 1746 while (!m->finished) {
ef41df43 1747 if (time_after_eq(jiffies, start + 2)) {
559faa6b 1748 memset(m, 0, sizeof(*m));
ef41df43
HY
1749 goto timeout;
1750 }
1751 cpu_relax();
673242c1 1752 }
ef41df43 1753 smp_rmb();
559faa6b
HS
1754 err |= copy_to_user(buf, m, sizeof(*m));
1755 buf += sizeof(*m);
ef41df43
HY
1756timeout:
1757 ;
673242c1 1758 }
1da177e4 1759
ef41df43
HY
1760 memset(mcelog.entry + prev, 0,
1761 (next - prev) * sizeof(struct mce));
1762 prev = next;
1763 next = cmpxchg(&mcelog.next, prev, 0);
1764 } while (next != prev);
1da177e4 1765
b2b18660 1766 synchronize_sched();
1da177e4 1767
d88203d1
TG
1768 /*
1769 * Collect entries that were still getting written before the
1770 * synchronize.
1771 */
15c8b6c1 1772 on_each_cpu(collect_tscs, cpu_tsc, 1);
e9eee03e 1773
d88203d1 1774 for (i = next; i < MCE_LOG_LEN; i++) {
559faa6b
HS
1775 struct mce *m = &mcelog.entry[i];
1776
1777 if (m->finished && m->tsc < cpu_tsc[m->cpu]) {
1778 err |= copy_to_user(buf, m, sizeof(*m));
1da177e4 1779 smp_rmb();
559faa6b
HS
1780 buf += sizeof(*m);
1781 memset(m, 0, sizeof(*m));
1da177e4 1782 }
d88203d1 1783 }
482908b4
HY
1784
1785 if (err)
1786 err = -EFAULT;
1787
1788out:
93b62c3c 1789 mutex_unlock(&mce_chrdev_read_mutex);
f0de53bb 1790 kfree(cpu_tsc);
e9eee03e 1791
482908b4 1792 return err ? err : buf - ubuf;
1da177e4
LT
1793}
1794
93b62c3c 1795static unsigned int mce_chrdev_poll(struct file *file, poll_table *wait)
e02e68d3 1796{
93b62c3c 1797 poll_wait(file, &mce_chrdev_wait, wait);
a4dd9925 1798 if (rcu_access_index(mcelog.next))
e02e68d3 1799 return POLLIN | POLLRDNORM;
482908b4
HY
1800 if (!mce_apei_read_done && apei_check_mce())
1801 return POLLIN | POLLRDNORM;
e02e68d3
TH
1802 return 0;
1803}
1804
93b62c3c
HS
1805static long mce_chrdev_ioctl(struct file *f, unsigned int cmd,
1806 unsigned long arg)
1da177e4
LT
1807{
1808 int __user *p = (int __user *)arg;
d88203d1 1809
1da177e4 1810 if (!capable(CAP_SYS_ADMIN))
d88203d1 1811 return -EPERM;
e9eee03e 1812
1da177e4 1813 switch (cmd) {
d88203d1 1814 case MCE_GET_RECORD_LEN:
1da177e4
LT
1815 return put_user(sizeof(struct mce), p);
1816 case MCE_GET_LOG_LEN:
d88203d1 1817 return put_user(MCE_LOG_LEN, p);
1da177e4
LT
1818 case MCE_GETCLEAR_FLAGS: {
1819 unsigned flags;
d88203d1
TG
1820
1821 do {
1da177e4 1822 flags = mcelog.flags;
d88203d1 1823 } while (cmpxchg(&mcelog.flags, flags, 0) != flags);
e9eee03e 1824
d88203d1 1825 return put_user(flags, p);
1da177e4
LT
1826 }
1827 default:
d88203d1
TG
1828 return -ENOTTY;
1829 }
1da177e4
LT
1830}
1831
66f5ddf3
LT
1832static ssize_t (*mce_write)(struct file *filp, const char __user *ubuf,
1833 size_t usize, loff_t *off);
1834
1835void register_mce_write_callback(ssize_t (*fn)(struct file *filp,
1836 const char __user *ubuf,
1837 size_t usize, loff_t *off))
1838{
1839 mce_write = fn;
1840}
1841EXPORT_SYMBOL_GPL(register_mce_write_callback);
1842
1843ssize_t mce_chrdev_write(struct file *filp, const char __user *ubuf,
1844 size_t usize, loff_t *off)
1845{
1846 if (mce_write)
1847 return mce_write(filp, ubuf, usize, off);
1848 else
1849 return -EINVAL;
1850}
1851
1852static const struct file_operations mce_chrdev_ops = {
93b62c3c
HS
1853 .open = mce_chrdev_open,
1854 .release = mce_chrdev_release,
1855 .read = mce_chrdev_read,
66f5ddf3 1856 .write = mce_chrdev_write,
93b62c3c
HS
1857 .poll = mce_chrdev_poll,
1858 .unlocked_ioctl = mce_chrdev_ioctl,
1859 .llseek = no_llseek,
1da177e4
LT
1860};
1861
93b62c3c 1862static struct miscdevice mce_chrdev_device = {
1da177e4
LT
1863 MISC_MCELOG_MINOR,
1864 "mcelog",
1865 &mce_chrdev_ops,
1866};
1867
13503fa9 1868/*
62fdac59
HS
1869 * mce=off Disables machine check
1870 * mce=no_cmci Disables CMCI
1871 * mce=dont_log_ce Clears corrected events silently, no log created for CEs.
1872 * mce=ignore_ce Disables polling and CMCI, corrected events are not cleared.
3c079792
AK
1873 * mce=TOLERANCELEVEL[,monarchtimeout] (number, see above)
1874 * monarchtimeout is how long to wait for other CPUs on machine
1875 * check, or 0 to not wait
13503fa9
HS
1876 * mce=bootlog Log MCEs from before booting. Disabled by default on AMD.
1877 * mce=nobootlog Don't log MCEs from before booting.
1878 */
1da177e4
LT
1879static int __init mcheck_enable(char *str)
1880{
e3346fc4 1881 if (*str == 0) {
4efc0670 1882 enable_p5_mce();
e3346fc4
BZ
1883 return 1;
1884 }
4efc0670
AK
1885 if (*str == '=')
1886 str++;
1da177e4 1887 if (!strcmp(str, "off"))
04b2b1a4 1888 mce_disabled = 1;
62fdac59
HS
1889 else if (!strcmp(str, "no_cmci"))
1890 mce_cmci_disabled = 1;
1891 else if (!strcmp(str, "dont_log_ce"))
1892 mce_dont_log_ce = 1;
1893 else if (!strcmp(str, "ignore_ce"))
1894 mce_ignore_ce = 1;
13503fa9
HS
1895 else if (!strcmp(str, "bootlog") || !strcmp(str, "nobootlog"))
1896 mce_bootlog = (str[0] == 'b');
3c079792 1897 else if (isdigit(str[0])) {
8c566ef5 1898 get_option(&str, &tolerant);
3c079792
AK
1899 if (*str == ',') {
1900 ++str;
1901 get_option(&str, &monarch_timeout);
1902 }
1903 } else {
c767a54b 1904 pr_info("mce argument %s ignored. Please use /sys\n", str);
13503fa9
HS
1905 return 0;
1906 }
9b41046c 1907 return 1;
1da177e4 1908}
4efc0670 1909__setup("mce", mcheck_enable);
1da177e4 1910
a2202aa2 1911int __init mcheck_init(void)
b33a6363 1912{
a2202aa2
YW
1913 mcheck_intel_therm_init();
1914
b33a6363
BP
1915 return 0;
1916}
b33a6363 1917
d88203d1 1918/*
c7cece89 1919 * mce_syscore: PM support
d88203d1 1920 */
1da177e4 1921
973a2dd1
AK
1922/*
1923 * Disable machine checks on suspend and shutdown. We can't really handle
1924 * them later.
1925 */
5e09954a 1926static int mce_disable_error_reporting(void)
973a2dd1
AK
1927{
1928 int i;
1929
06b7a7a5 1930 for (i = 0; i < banks; i++) {
cebe1820 1931 struct mce_bank *b = &mce_banks[i];
11868a2d 1932
cebe1820 1933 if (b->init)
a2d32bcb 1934 wrmsrl(MSR_IA32_MCx_CTL(i), 0);
06b7a7a5 1935 }
973a2dd1
AK
1936 return 0;
1937}
1938
c7cece89 1939static int mce_syscore_suspend(void)
973a2dd1 1940{
5e09954a 1941 return mce_disable_error_reporting();
973a2dd1
AK
1942}
1943
c7cece89 1944static void mce_syscore_shutdown(void)
973a2dd1 1945{
f3c6ea1b 1946 mce_disable_error_reporting();
973a2dd1
AK
1947}
1948
e9eee03e
IM
1949/*
1950 * On resume clear all MCE state. Don't want to see leftovers from the BIOS.
1951 * Only one CPU is active at this time, the others get re-added later using
1952 * CPU hotplug:
1953 */
c7cece89 1954static void mce_syscore_resume(void)
1da177e4 1955{
5e09954a 1956 __mcheck_cpu_init_generic();
7b543a53 1957 __mcheck_cpu_init_vendor(__this_cpu_ptr(&cpu_info));
1da177e4
LT
1958}
1959
f3c6ea1b 1960static struct syscore_ops mce_syscore_ops = {
c7cece89
HS
1961 .suspend = mce_syscore_suspend,
1962 .shutdown = mce_syscore_shutdown,
1963 .resume = mce_syscore_resume,
f3c6ea1b
RW
1964};
1965
c7cece89 1966/*
8a25a2fd 1967 * mce_device: Sysfs support
c7cece89
HS
1968 */
1969
52d168e2
AK
1970static void mce_cpu_restart(void *data)
1971{
7b543a53 1972 if (!mce_available(__this_cpu_ptr(&cpu_info)))
33edbf02 1973 return;
5e09954a
BP
1974 __mcheck_cpu_init_generic();
1975 __mcheck_cpu_init_timer();
52d168e2
AK
1976}
1977
1da177e4 1978/* Reinit MCEs after user configuration changes */
d88203d1
TG
1979static void mce_restart(void)
1980{
9aaef96f 1981 mce_timer_delete_all();
52d168e2 1982 on_each_cpu(mce_cpu_restart, NULL, 1);
1da177e4
LT
1983}
1984
9af43b54 1985/* Toggle features for corrected errors */
9aaef96f 1986static void mce_disable_cmci(void *data)
9af43b54 1987{
7b543a53 1988 if (!mce_available(__this_cpu_ptr(&cpu_info)))
9af43b54 1989 return;
9af43b54
HS
1990 cmci_clear();
1991}
1992
1993static void mce_enable_ce(void *all)
1994{
7b543a53 1995 if (!mce_available(__this_cpu_ptr(&cpu_info)))
9af43b54
HS
1996 return;
1997 cmci_reenable();
1998 cmci_recheck();
1999 if (all)
5e09954a 2000 __mcheck_cpu_init_timer();
9af43b54
HS
2001}
2002
8a25a2fd 2003static struct bus_type mce_subsys = {
e9eee03e 2004 .name = "machinecheck",
8a25a2fd 2005 .dev_name = "machinecheck",
1da177e4
LT
2006};
2007
d6126ef5 2008DEFINE_PER_CPU(struct device *, mce_device);
e9eee03e
IM
2009
2010__cpuinitdata
2011void (*threshold_cpu_callback)(unsigned long action, unsigned int cpu);
1da177e4 2012
8a25a2fd 2013static inline struct mce_bank *attr_to_bank(struct device_attribute *attr)
cebe1820
AK
2014{
2015 return container_of(attr, struct mce_bank, attr);
2016}
0d7482e3 2017
8a25a2fd 2018static ssize_t show_bank(struct device *s, struct device_attribute *attr,
0d7482e3
AK
2019 char *buf)
2020{
cebe1820 2021 return sprintf(buf, "%llx\n", attr_to_bank(attr)->ctl);
0d7482e3
AK
2022}
2023
8a25a2fd 2024static ssize_t set_bank(struct device *s, struct device_attribute *attr,
9319cec8 2025 const char *buf, size_t size)
0d7482e3 2026{
9319cec8 2027 u64 new;
e9eee03e 2028
9319cec8 2029 if (strict_strtoull(buf, 0, &new) < 0)
0d7482e3 2030 return -EINVAL;
e9eee03e 2031
cebe1820 2032 attr_to_bank(attr)->ctl = new;
0d7482e3 2033 mce_restart();
e9eee03e 2034
9319cec8 2035 return size;
0d7482e3 2036}
a98f0dd3 2037
e9eee03e 2038static ssize_t
8a25a2fd 2039show_trigger(struct device *s, struct device_attribute *attr, char *buf)
a98f0dd3 2040{
1020bcbc 2041 strcpy(buf, mce_helper);
a98f0dd3 2042 strcat(buf, "\n");
1020bcbc 2043 return strlen(mce_helper) + 1;
a98f0dd3
AK
2044}
2045
8a25a2fd 2046static ssize_t set_trigger(struct device *s, struct device_attribute *attr,
e9eee03e 2047 const char *buf, size_t siz)
a98f0dd3
AK
2048{
2049 char *p;
e9eee03e 2050
1020bcbc
HS
2051 strncpy(mce_helper, buf, sizeof(mce_helper));
2052 mce_helper[sizeof(mce_helper)-1] = 0;
1020bcbc 2053 p = strchr(mce_helper, '\n');
e9eee03e 2054
e9084ec9 2055 if (p)
e9eee03e
IM
2056 *p = 0;
2057
e9084ec9 2058 return strlen(mce_helper) + !!p;
a98f0dd3
AK
2059}
2060
8a25a2fd
KS
2061static ssize_t set_ignore_ce(struct device *s,
2062 struct device_attribute *attr,
9af43b54
HS
2063 const char *buf, size_t size)
2064{
2065 u64 new;
2066
2067 if (strict_strtoull(buf, 0, &new) < 0)
2068 return -EINVAL;
2069
2070 if (mce_ignore_ce ^ !!new) {
2071 if (new) {
2072 /* disable ce features */
9aaef96f
HS
2073 mce_timer_delete_all();
2074 on_each_cpu(mce_disable_cmci, NULL, 1);
9af43b54
HS
2075 mce_ignore_ce = 1;
2076 } else {
2077 /* enable ce features */
2078 mce_ignore_ce = 0;
2079 on_each_cpu(mce_enable_ce, (void *)1, 1);
2080 }
2081 }
2082 return size;
2083}
2084
8a25a2fd
KS
2085static ssize_t set_cmci_disabled(struct device *s,
2086 struct device_attribute *attr,
9af43b54
HS
2087 const char *buf, size_t size)
2088{
2089 u64 new;
2090
2091 if (strict_strtoull(buf, 0, &new) < 0)
2092 return -EINVAL;
2093
2094 if (mce_cmci_disabled ^ !!new) {
2095 if (new) {
2096 /* disable cmci */
9aaef96f 2097 on_each_cpu(mce_disable_cmci, NULL, 1);
9af43b54
HS
2098 mce_cmci_disabled = 1;
2099 } else {
2100 /* enable cmci */
2101 mce_cmci_disabled = 0;
2102 on_each_cpu(mce_enable_ce, NULL, 1);
2103 }
2104 }
2105 return size;
2106}
2107
8a25a2fd
KS
2108static ssize_t store_int_with_restart(struct device *s,
2109 struct device_attribute *attr,
b56f642d
AK
2110 const char *buf, size_t size)
2111{
8a25a2fd 2112 ssize_t ret = device_store_int(s, attr, buf, size);
b56f642d
AK
2113 mce_restart();
2114 return ret;
2115}
2116
8a25a2fd
KS
2117static DEVICE_ATTR(trigger, 0644, show_trigger, set_trigger);
2118static DEVICE_INT_ATTR(tolerant, 0644, tolerant);
2119static DEVICE_INT_ATTR(monarch_timeout, 0644, monarch_timeout);
2120static DEVICE_INT_ATTR(dont_log_ce, 0644, mce_dont_log_ce);
e9eee03e 2121
8a25a2fd
KS
2122static struct dev_ext_attribute dev_attr_check_interval = {
2123 __ATTR(check_interval, 0644, device_show_int, store_int_with_restart),
b56f642d
AK
2124 &check_interval
2125};
e9eee03e 2126
8a25a2fd
KS
2127static struct dev_ext_attribute dev_attr_ignore_ce = {
2128 __ATTR(ignore_ce, 0644, device_show_int, set_ignore_ce),
9af43b54
HS
2129 &mce_ignore_ce
2130};
2131
8a25a2fd
KS
2132static struct dev_ext_attribute dev_attr_cmci_disabled = {
2133 __ATTR(cmci_disabled, 0644, device_show_int, set_cmci_disabled),
9af43b54
HS
2134 &mce_cmci_disabled
2135};
2136
8a25a2fd
KS
2137static struct device_attribute *mce_device_attrs[] = {
2138 &dev_attr_tolerant.attr,
2139 &dev_attr_check_interval.attr,
2140 &dev_attr_trigger,
2141 &dev_attr_monarch_timeout.attr,
2142 &dev_attr_dont_log_ce.attr,
2143 &dev_attr_ignore_ce.attr,
2144 &dev_attr_cmci_disabled.attr,
a98f0dd3
AK
2145 NULL
2146};
1da177e4 2147
8a25a2fd 2148static cpumask_var_t mce_device_initialized;
bae19fe0 2149
e032d807
GKH
2150static void mce_device_release(struct device *dev)
2151{
2152 kfree(dev);
2153}
2154
8a25a2fd
KS
2155/* Per cpu device init. All of the cpus still share the same ctrl bank: */
2156static __cpuinit int mce_device_create(unsigned int cpu)
1da177e4 2157{
e032d807 2158 struct device *dev;
1da177e4 2159 int err;
b1f49f95 2160 int i, j;
92cb7612 2161
90367556 2162 if (!mce_available(&boot_cpu_data))
91c6d400
AK
2163 return -EIO;
2164
e032d807
GKH
2165 dev = kzalloc(sizeof *dev, GFP_KERNEL);
2166 if (!dev)
2167 return -ENOMEM;
8a25a2fd
KS
2168 dev->id = cpu;
2169 dev->bus = &mce_subsys;
e032d807 2170 dev->release = &mce_device_release;
91c6d400 2171
8a25a2fd 2172 err = device_register(dev);
d435d862
AM
2173 if (err)
2174 return err;
2175
8a25a2fd
KS
2176 for (i = 0; mce_device_attrs[i]; i++) {
2177 err = device_create_file(dev, mce_device_attrs[i]);
d435d862
AM
2178 if (err)
2179 goto error;
2180 }
b1f49f95 2181 for (j = 0; j < banks; j++) {
8a25a2fd 2182 err = device_create_file(dev, &mce_banks[j].attr);
0d7482e3
AK
2183 if (err)
2184 goto error2;
2185 }
8a25a2fd 2186 cpumask_set_cpu(cpu, mce_device_initialized);
d6126ef5 2187 per_cpu(mce_device, cpu) = dev;
91c6d400 2188
d435d862 2189 return 0;
0d7482e3 2190error2:
b1f49f95 2191 while (--j >= 0)
8a25a2fd 2192 device_remove_file(dev, &mce_banks[j].attr);
d435d862 2193error:
cb491fca 2194 while (--i >= 0)
8a25a2fd 2195 device_remove_file(dev, mce_device_attrs[i]);
cb491fca 2196
8a25a2fd 2197 device_unregister(dev);
d435d862 2198
91c6d400
AK
2199 return err;
2200}
2201
8a25a2fd 2202static __cpuinit void mce_device_remove(unsigned int cpu)
91c6d400 2203{
d6126ef5 2204 struct device *dev = per_cpu(mce_device, cpu);
73ca5358
SL
2205 int i;
2206
8a25a2fd 2207 if (!cpumask_test_cpu(cpu, mce_device_initialized))
bae19fe0
AH
2208 return;
2209
8a25a2fd
KS
2210 for (i = 0; mce_device_attrs[i]; i++)
2211 device_remove_file(dev, mce_device_attrs[i]);
cb491fca 2212
0d7482e3 2213 for (i = 0; i < banks; i++)
8a25a2fd 2214 device_remove_file(dev, &mce_banks[i].attr);
cb491fca 2215
8a25a2fd
KS
2216 device_unregister(dev);
2217 cpumask_clear_cpu(cpu, mce_device_initialized);
d6126ef5 2218 per_cpu(mce_device, cpu) = NULL;
91c6d400 2219}
91c6d400 2220
d6b75584 2221/* Make sure there are no machine checks on offlined CPUs. */
767df1bd 2222static void __cpuinit mce_disable_cpu(void *h)
d6b75584 2223{
88ccbedd 2224 unsigned long action = *(unsigned long *)h;
cb491fca 2225 int i;
d6b75584 2226
7b543a53 2227 if (!mce_available(__this_cpu_ptr(&cpu_info)))
d6b75584 2228 return;
767df1bd 2229
88ccbedd
AK
2230 if (!(action & CPU_TASKS_FROZEN))
2231 cmci_clear();
06b7a7a5 2232 for (i = 0; i < banks; i++) {
cebe1820 2233 struct mce_bank *b = &mce_banks[i];
11868a2d 2234
cebe1820 2235 if (b->init)
a2d32bcb 2236 wrmsrl(MSR_IA32_MCx_CTL(i), 0);
06b7a7a5 2237 }
d6b75584
AK
2238}
2239
767df1bd 2240static void __cpuinit mce_reenable_cpu(void *h)
d6b75584 2241{
88ccbedd 2242 unsigned long action = *(unsigned long *)h;
e9eee03e 2243 int i;
d6b75584 2244
7b543a53 2245 if (!mce_available(__this_cpu_ptr(&cpu_info)))
d6b75584 2246 return;
e9eee03e 2247
88ccbedd
AK
2248 if (!(action & CPU_TASKS_FROZEN))
2249 cmci_reenable();
06b7a7a5 2250 for (i = 0; i < banks; i++) {
cebe1820 2251 struct mce_bank *b = &mce_banks[i];
11868a2d 2252
cebe1820 2253 if (b->init)
a2d32bcb 2254 wrmsrl(MSR_IA32_MCx_CTL(i), b->ctl);
06b7a7a5 2255 }
d6b75584
AK
2256}
2257
91c6d400 2258/* Get notified when a cpu comes on/off. Be hotplug friendly. */
e9eee03e
IM
2259static int __cpuinit
2260mce_cpu_callback(struct notifier_block *nfb, unsigned long action, void *hcpu)
91c6d400
AK
2261{
2262 unsigned int cpu = (unsigned long)hcpu;
52d168e2 2263 struct timer_list *t = &per_cpu(mce_timer, cpu);
91c6d400 2264
1a65f970 2265 switch (action & ~CPU_TASKS_FROZEN) {
bae19fe0 2266 case CPU_ONLINE:
8a25a2fd 2267 mce_device_create(cpu);
8735728e
RW
2268 if (threshold_cpu_callback)
2269 threshold_cpu_callback(action, cpu);
91c6d400 2270 break;
91c6d400 2271 case CPU_DEAD:
8735728e
RW
2272 if (threshold_cpu_callback)
2273 threshold_cpu_callback(action, cpu);
8a25a2fd 2274 mce_device_remove(cpu);
91c6d400 2275 break;
52d168e2 2276 case CPU_DOWN_PREPARE:
52d168e2 2277 del_timer_sync(t);
88ccbedd 2278 smp_call_function_single(cpu, mce_disable_cpu, &action, 1);
52d168e2
AK
2279 break;
2280 case CPU_DOWN_FAILED:
88ccbedd 2281 smp_call_function_single(cpu, mce_reenable_cpu, &action, 1);
26c3c283 2282 mce_start_timer(cpu, t);
88ccbedd 2283 break;
1a65f970
TG
2284 }
2285
2286 if (action == CPU_POST_DEAD) {
88ccbedd
AK
2287 /* intentionally ignoring frozen here */
2288 cmci_rediscover(cpu);
91c6d400 2289 }
1a65f970 2290
bae19fe0 2291 return NOTIFY_OK;
91c6d400
AK
2292}
2293
1e35669d 2294static struct notifier_block mce_cpu_notifier __cpuinitdata = {
91c6d400
AK
2295 .notifier_call = mce_cpu_callback,
2296};
2297
cebe1820 2298static __init void mce_init_banks(void)
0d7482e3
AK
2299{
2300 int i;
2301
0d7482e3 2302 for (i = 0; i < banks; i++) {
cebe1820 2303 struct mce_bank *b = &mce_banks[i];
8a25a2fd 2304 struct device_attribute *a = &b->attr;
e9eee03e 2305
a07e4156 2306 sysfs_attr_init(&a->attr);
cebe1820
AK
2307 a->attr.name = b->attrname;
2308 snprintf(b->attrname, ATTR_LEN, "bank%d", i);
e9eee03e
IM
2309
2310 a->attr.mode = 0644;
2311 a->show = show_bank;
2312 a->store = set_bank;
0d7482e3 2313 }
0d7482e3
AK
2314}
2315
5e09954a 2316static __init int mcheck_init_device(void)
91c6d400
AK
2317{
2318 int err;
2319 int i = 0;
2320
1da177e4
LT
2321 if (!mce_available(&boot_cpu_data))
2322 return -EIO;
0d7482e3 2323
8a25a2fd 2324 zalloc_cpumask_var(&mce_device_initialized, GFP_KERNEL);
996867d0 2325
cebe1820 2326 mce_init_banks();
0d7482e3 2327
8a25a2fd 2328 err = subsys_system_register(&mce_subsys, NULL);
d435d862
AM
2329 if (err)
2330 return err;
91c6d400
AK
2331
2332 for_each_online_cpu(i) {
8a25a2fd 2333 err = mce_device_create(i);
d435d862
AM
2334 if (err)
2335 return err;
91c6d400
AK
2336 }
2337
f3c6ea1b 2338 register_syscore_ops(&mce_syscore_ops);
be6b5a35 2339 register_hotcpu_notifier(&mce_cpu_notifier);
93b62c3c
HS
2340
2341 /* register character device /dev/mcelog */
2342 misc_register(&mce_chrdev_device);
e9eee03e 2343
1da177e4 2344 return err;
1da177e4 2345}
cef12ee5 2346device_initcall_sync(mcheck_init_device);
a988d334 2347
d7c3c9a6
AK
2348/*
2349 * Old style boot options parsing. Only for compatibility.
2350 */
2351static int __init mcheck_disable(char *str)
2352{
2353 mce_disabled = 1;
2354 return 1;
2355}
2356__setup("nomce", mcheck_disable);
a988d334 2357
5be9ed25
HY
2358#ifdef CONFIG_DEBUG_FS
2359struct dentry *mce_get_debugfs_dir(void)
a988d334 2360{
5be9ed25 2361 static struct dentry *dmce;
a988d334 2362
5be9ed25
HY
2363 if (!dmce)
2364 dmce = debugfs_create_dir("mce", NULL);
a988d334 2365
5be9ed25
HY
2366 return dmce;
2367}
a988d334 2368
bf783f9f
HY
2369static void mce_reset(void)
2370{
2371 cpu_missing = 0;
2372 atomic_set(&mce_fake_paniced, 0);
2373 atomic_set(&mce_executing, 0);
2374 atomic_set(&mce_callin, 0);
2375 atomic_set(&global_nwo, 0);
2376}
a988d334 2377
bf783f9f
HY
2378static int fake_panic_get(void *data, u64 *val)
2379{
2380 *val = fake_panic;
2381 return 0;
a988d334
IM
2382}
2383
bf783f9f 2384static int fake_panic_set(void *data, u64 val)
a988d334 2385{
bf783f9f
HY
2386 mce_reset();
2387 fake_panic = val;
2388 return 0;
a988d334 2389}
a988d334 2390
bf783f9f
HY
2391DEFINE_SIMPLE_ATTRIBUTE(fake_panic_fops, fake_panic_get,
2392 fake_panic_set, "%llu\n");
d7c3c9a6 2393
5e09954a 2394static int __init mcheck_debugfs_init(void)
d7c3c9a6 2395{
bf783f9f
HY
2396 struct dentry *dmce, *ffake_panic;
2397
2398 dmce = mce_get_debugfs_dir();
2399 if (!dmce)
2400 return -ENOMEM;
2401 ffake_panic = debugfs_create_file("fake_panic", 0444, dmce, NULL,
2402 &fake_panic_fops);
2403 if (!ffake_panic)
2404 return -ENOMEM;
2405
2406 return 0;
d7c3c9a6 2407}
5e09954a 2408late_initcall(mcheck_debugfs_init);
5be9ed25 2409#endif