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