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