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