First Support on Ginger and OMAP TI
[linux-ginger.git] / arch / x86 / kernel / cpu / mcheck / mce.c
blobb1598a9436d09dd8f60a4fb14c75eda0f83043c8
1 /*
2 * Machine check handler.
4 * K8 parts Copyright 2002,2003 Andi Kleen, SuSE Labs.
5 * Rest from unknown author(s).
6 * 2004 Andi Kleen. Rewrote most of it.
7 * Copyright 2008 Intel Corporation
8 * Author: Andi Kleen
9 */
10 #include <linux/thread_info.h>
11 #include <linux/capability.h>
12 #include <linux/miscdevice.h>
13 #include <linux/interrupt.h>
14 #include <linux/ratelimit.h>
15 #include <linux/kallsyms.h>
16 #include <linux/rcupdate.h>
17 #include <linux/kobject.h>
18 #include <linux/uaccess.h>
19 #include <linux/kdebug.h>
20 #include <linux/kernel.h>
21 #include <linux/percpu.h>
22 #include <linux/string.h>
23 #include <linux/sysdev.h>
24 #include <linux/delay.h>
25 #include <linux/ctype.h>
26 #include <linux/sched.h>
27 #include <linux/sysfs.h>
28 #include <linux/types.h>
29 #include <linux/init.h>
30 #include <linux/kmod.h>
31 #include <linux/poll.h>
32 #include <linux/nmi.h>
33 #include <linux/cpu.h>
34 #include <linux/smp.h>
35 #include <linux/fs.h>
36 #include <linux/mm.h>
37 #include <linux/debugfs.h>
39 #include <asm/processor.h>
40 #include <asm/hw_irq.h>
41 #include <asm/apic.h>
42 #include <asm/idle.h>
43 #include <asm/ipi.h>
44 #include <asm/mce.h>
45 #include <asm/msr.h>
47 #include "mce-internal.h"
49 int mce_disabled __read_mostly;
51 #define MISC_MCELOG_MINOR 227
53 #define SPINUNIT 100 /* 100ns */
55 atomic_t mce_entry;
57 DEFINE_PER_CPU(unsigned, mce_exception_count);
60 * Tolerant levels:
61 * 0: always panic on uncorrected errors, log corrected errors
62 * 1: panic or SIGBUS on uncorrected errors, log corrected errors
63 * 2: SIGBUS or log uncorrected errors (if possible), log corrected errors
64 * 3: never panic or SIGBUS, log all errors (for testing only)
66 static int tolerant __read_mostly = 1;
67 static int banks __read_mostly;
68 static int rip_msr __read_mostly;
69 static int mce_bootlog __read_mostly = -1;
70 static int monarch_timeout __read_mostly = -1;
71 static int mce_panic_timeout __read_mostly;
72 static int mce_dont_log_ce __read_mostly;
73 int mce_cmci_disabled __read_mostly;
74 int mce_ignore_ce __read_mostly;
75 int mce_ser __read_mostly;
77 struct mce_bank *mce_banks __read_mostly;
79 /* User mode helper program triggered by machine check event */
80 static unsigned long mce_need_notify;
81 static char mce_helper[128];
82 static char *mce_helper_argv[2] = { mce_helper, NULL };
84 static DECLARE_WAIT_QUEUE_HEAD(mce_wait);
85 static DEFINE_PER_CPU(struct mce, mces_seen);
86 static int cpu_missing;
88 static void default_decode_mce(struct mce *m)
90 pr_emerg("No human readable MCE decoding support on this CPU type.\n");
91 pr_emerg("Run the message through 'mcelog --ascii' to decode.\n");
95 * CPU/chipset specific EDAC code can register a callback here to print
96 * MCE errors in a human-readable form:
98 void (*x86_mce_decode_callback)(struct mce *m) = default_decode_mce;
99 EXPORT_SYMBOL(x86_mce_decode_callback);
101 /* MCA banks polled by the period polling timer for corrected events */
102 DEFINE_PER_CPU(mce_banks_t, mce_poll_banks) = {
103 [0 ... BITS_TO_LONGS(MAX_NR_BANKS)-1] = ~0UL
106 static DEFINE_PER_CPU(struct work_struct, mce_work);
108 /* Do initial initialization of a struct mce */
109 void mce_setup(struct mce *m)
111 memset(m, 0, sizeof(struct mce));
112 m->cpu = m->extcpu = smp_processor_id();
113 rdtscll(m->tsc);
114 /* We hope get_seconds stays lockless */
115 m->time = get_seconds();
116 m->cpuvendor = boot_cpu_data.x86_vendor;
117 m->cpuid = cpuid_eax(1);
118 #ifdef CONFIG_SMP
119 m->socketid = cpu_data(m->extcpu).phys_proc_id;
120 #endif
121 m->apicid = cpu_data(m->extcpu).initial_apicid;
122 rdmsrl(MSR_IA32_MCG_CAP, m->mcgcap);
125 DEFINE_PER_CPU(struct mce, injectm);
126 EXPORT_PER_CPU_SYMBOL_GPL(injectm);
129 * Lockless MCE logging infrastructure.
130 * This avoids deadlocks on printk locks without having to break locks. Also
131 * separate MCEs from kernel messages to avoid bogus bug reports.
134 static struct mce_log mcelog = {
135 .signature = MCE_LOG_SIGNATURE,
136 .len = MCE_LOG_LEN,
137 .recordlen = sizeof(struct mce),
140 void mce_log(struct mce *mce)
142 unsigned next, entry;
144 mce->finished = 0;
145 wmb();
146 for (;;) {
147 entry = rcu_dereference(mcelog.next);
148 for (;;) {
150 * When the buffer fills up discard new entries.
151 * Assume that the earlier errors are the more
152 * interesting ones:
154 if (entry >= MCE_LOG_LEN) {
155 set_bit(MCE_OVERFLOW,
156 (unsigned long *)&mcelog.flags);
157 return;
159 /* Old left over entry. Skip: */
160 if (mcelog.entry[entry].finished) {
161 entry++;
162 continue;
164 break;
166 smp_rmb();
167 next = entry + 1;
168 if (cmpxchg(&mcelog.next, entry, next) == entry)
169 break;
171 memcpy(mcelog.entry + entry, mce, sizeof(struct mce));
172 wmb();
173 mcelog.entry[entry].finished = 1;
174 wmb();
176 mce->finished = 1;
177 set_bit(0, &mce_need_notify);
180 static void print_mce(struct mce *m)
182 pr_emerg("CPU %d: Machine Check Exception: %16Lx Bank %d: %016Lx\n",
183 m->extcpu, m->mcgstatus, m->bank, m->status);
185 if (m->ip) {
186 pr_emerg("RIP%s %02x:<%016Lx> ",
187 !(m->mcgstatus & MCG_STATUS_EIPV) ? " !INEXACT!" : "",
188 m->cs, m->ip);
190 if (m->cs == __KERNEL_CS)
191 print_symbol("{%s}", m->ip);
192 pr_cont("\n");
195 pr_emerg("TSC %llx ", m->tsc);
196 if (m->addr)
197 pr_cont("ADDR %llx ", m->addr);
198 if (m->misc)
199 pr_cont("MISC %llx ", m->misc);
201 pr_cont("\n");
202 pr_emerg("PROCESSOR %u:%x TIME %llu SOCKET %u APIC %x\n",
203 m->cpuvendor, m->cpuid, m->time, m->socketid, m->apicid);
206 * Print out human-readable details about the MCE error,
207 * (if the CPU has an implementation for that):
209 x86_mce_decode_callback(m);
212 static void print_mce_head(void)
214 pr_emerg("\nHARDWARE ERROR\n");
217 static void print_mce_tail(void)
219 pr_emerg("This is not a software problem!\n");
222 #define PANIC_TIMEOUT 5 /* 5 seconds */
224 static atomic_t mce_paniced;
226 static int fake_panic;
227 static atomic_t mce_fake_paniced;
229 /* Panic in progress. Enable interrupts and wait for final IPI */
230 static void wait_for_panic(void)
232 long timeout = PANIC_TIMEOUT*USEC_PER_SEC;
234 preempt_disable();
235 local_irq_enable();
236 while (timeout-- > 0)
237 udelay(1);
238 if (panic_timeout == 0)
239 panic_timeout = mce_panic_timeout;
240 panic("Panicing machine check CPU died");
243 static void mce_panic(char *msg, struct mce *final, char *exp)
245 int i;
247 if (!fake_panic) {
249 * Make sure only one CPU runs in machine check panic
251 if (atomic_inc_return(&mce_paniced) > 1)
252 wait_for_panic();
253 barrier();
255 bust_spinlocks(1);
256 console_verbose();
257 } else {
258 /* Don't log too much for fake panic */
259 if (atomic_inc_return(&mce_fake_paniced) > 1)
260 return;
262 print_mce_head();
263 /* First print corrected ones that are still unlogged */
264 for (i = 0; i < MCE_LOG_LEN; i++) {
265 struct mce *m = &mcelog.entry[i];
266 if (!(m->status & MCI_STATUS_VAL))
267 continue;
268 if (!(m->status & MCI_STATUS_UC))
269 print_mce(m);
271 /* Now print uncorrected but with the final one last */
272 for (i = 0; i < MCE_LOG_LEN; i++) {
273 struct mce *m = &mcelog.entry[i];
274 if (!(m->status & MCI_STATUS_VAL))
275 continue;
276 if (!(m->status & MCI_STATUS_UC))
277 continue;
278 if (!final || memcmp(m, final, sizeof(struct mce)))
279 print_mce(m);
281 if (final)
282 print_mce(final);
283 if (cpu_missing)
284 printk(KERN_EMERG "Some CPUs didn't answer in synchronization\n");
285 print_mce_tail();
286 if (exp)
287 printk(KERN_EMERG "Machine check: %s\n", exp);
288 if (!fake_panic) {
289 if (panic_timeout == 0)
290 panic_timeout = mce_panic_timeout;
291 panic(msg);
292 } else
293 printk(KERN_EMERG "Fake kernel panic: %s\n", msg);
296 /* Support code for software error injection */
298 static int msr_to_offset(u32 msr)
300 unsigned bank = __get_cpu_var(injectm.bank);
302 if (msr == rip_msr)
303 return offsetof(struct mce, ip);
304 if (msr == MSR_IA32_MCx_STATUS(bank))
305 return offsetof(struct mce, status);
306 if (msr == MSR_IA32_MCx_ADDR(bank))
307 return offsetof(struct mce, addr);
308 if (msr == MSR_IA32_MCx_MISC(bank))
309 return offsetof(struct mce, misc);
310 if (msr == MSR_IA32_MCG_STATUS)
311 return offsetof(struct mce, mcgstatus);
312 return -1;
315 /* MSR access wrappers used for error injection */
316 static u64 mce_rdmsrl(u32 msr)
318 u64 v;
320 if (__get_cpu_var(injectm).finished) {
321 int offset = msr_to_offset(msr);
323 if (offset < 0)
324 return 0;
325 return *(u64 *)((char *)&__get_cpu_var(injectm) + offset);
328 if (rdmsrl_safe(msr, &v)) {
329 WARN_ONCE(1, "mce: Unable to read msr %d!\n", msr);
331 * Return zero in case the access faulted. This should
332 * not happen normally but can happen if the CPU does
333 * something weird, or if the code is buggy.
335 v = 0;
338 return v;
341 static void mce_wrmsrl(u32 msr, u64 v)
343 if (__get_cpu_var(injectm).finished) {
344 int offset = msr_to_offset(msr);
346 if (offset >= 0)
347 *(u64 *)((char *)&__get_cpu_var(injectm) + offset) = v;
348 return;
350 wrmsrl(msr, v);
354 * Simple lockless ring to communicate PFNs from the exception handler with the
355 * process context work function. This is vastly simplified because there's
356 * only a single reader and a single writer.
358 #define MCE_RING_SIZE 16 /* we use one entry less */
360 struct mce_ring {
361 unsigned short start;
362 unsigned short end;
363 unsigned long ring[MCE_RING_SIZE];
365 static DEFINE_PER_CPU(struct mce_ring, mce_ring);
367 /* Runs with CPU affinity in workqueue */
368 static int mce_ring_empty(void)
370 struct mce_ring *r = &__get_cpu_var(mce_ring);
372 return r->start == r->end;
375 static int mce_ring_get(unsigned long *pfn)
377 struct mce_ring *r;
378 int ret = 0;
380 *pfn = 0;
381 get_cpu();
382 r = &__get_cpu_var(mce_ring);
383 if (r->start == r->end)
384 goto out;
385 *pfn = r->ring[r->start];
386 r->start = (r->start + 1) % MCE_RING_SIZE;
387 ret = 1;
388 out:
389 put_cpu();
390 return ret;
393 /* Always runs in MCE context with preempt off */
394 static int mce_ring_add(unsigned long pfn)
396 struct mce_ring *r = &__get_cpu_var(mce_ring);
397 unsigned next;
399 next = (r->end + 1) % MCE_RING_SIZE;
400 if (next == r->start)
401 return -1;
402 r->ring[r->end] = pfn;
403 wmb();
404 r->end = next;
405 return 0;
408 int mce_available(struct cpuinfo_x86 *c)
410 if (mce_disabled)
411 return 0;
412 return cpu_has(c, X86_FEATURE_MCE) && cpu_has(c, X86_FEATURE_MCA);
415 static void mce_schedule_work(void)
417 if (!mce_ring_empty()) {
418 struct work_struct *work = &__get_cpu_var(mce_work);
419 if (!work_pending(work))
420 schedule_work(work);
425 * Get the address of the instruction at the time of the machine check
426 * error.
428 static inline void mce_get_rip(struct mce *m, struct pt_regs *regs)
431 if (regs && (m->mcgstatus & (MCG_STATUS_RIPV|MCG_STATUS_EIPV))) {
432 m->ip = regs->ip;
433 m->cs = regs->cs;
434 } else {
435 m->ip = 0;
436 m->cs = 0;
438 if (rip_msr)
439 m->ip = mce_rdmsrl(rip_msr);
442 #ifdef CONFIG_X86_LOCAL_APIC
444 * Called after interrupts have been reenabled again
445 * when a MCE happened during an interrupts off region
446 * in the kernel.
448 asmlinkage void smp_mce_self_interrupt(struct pt_regs *regs)
450 ack_APIC_irq();
451 exit_idle();
452 irq_enter();
453 mce_notify_irq();
454 mce_schedule_work();
455 irq_exit();
457 #endif
459 static void mce_report_event(struct pt_regs *regs)
461 if (regs->flags & (X86_VM_MASK|X86_EFLAGS_IF)) {
462 mce_notify_irq();
464 * Triggering the work queue here is just an insurance
465 * policy in case the syscall exit notify handler
466 * doesn't run soon enough or ends up running on the
467 * wrong CPU (can happen when audit sleeps)
469 mce_schedule_work();
470 return;
473 #ifdef CONFIG_X86_LOCAL_APIC
475 * Without APIC do not notify. The event will be picked
476 * up eventually.
478 if (!cpu_has_apic)
479 return;
482 * When interrupts are disabled we cannot use
483 * kernel services safely. Trigger an self interrupt
484 * through the APIC to instead do the notification
485 * after interrupts are reenabled again.
487 apic->send_IPI_self(MCE_SELF_VECTOR);
490 * Wait for idle afterwards again so that we don't leave the
491 * APIC in a non idle state because the normal APIC writes
492 * cannot exclude us.
494 apic_wait_icr_idle();
495 #endif
498 DEFINE_PER_CPU(unsigned, mce_poll_count);
501 * Poll for corrected events or events that happened before reset.
502 * Those are just logged through /dev/mcelog.
504 * This is executed in standard interrupt context.
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.
515 void machine_check_poll(enum mcp_flags flags, mce_banks_t *b)
517 struct mce m;
518 int i;
520 __get_cpu_var(mce_poll_count)++;
522 mce_setup(&m);
524 m.mcgstatus = mce_rdmsrl(MSR_IA32_MCG_STATUS);
525 for (i = 0; i < banks; i++) {
526 if (!mce_banks[i].ctl || !test_bit(i, *b))
527 continue;
529 m.misc = 0;
530 m.addr = 0;
531 m.bank = i;
532 m.tsc = 0;
534 barrier();
535 m.status = mce_rdmsrl(MSR_IA32_MCx_STATUS(i));
536 if (!(m.status & MCI_STATUS_VAL))
537 continue;
540 * Uncorrected or signalled events are handled by the exception
541 * handler when it is enabled, so don't process those here.
543 * TBD do the same check for MCI_STATUS_EN here?
545 if (!(flags & MCP_UC) &&
546 (m.status & (mce_ser ? MCI_STATUS_S : MCI_STATUS_UC)))
547 continue;
549 if (m.status & MCI_STATUS_MISCV)
550 m.misc = mce_rdmsrl(MSR_IA32_MCx_MISC(i));
551 if (m.status & MCI_STATUS_ADDRV)
552 m.addr = mce_rdmsrl(MSR_IA32_MCx_ADDR(i));
554 if (!(flags & MCP_TIMESTAMP))
555 m.tsc = 0;
557 * Don't get the IP here because it's unlikely to
558 * have anything to do with the actual error location.
560 if (!(flags & MCP_DONTLOG) && !mce_dont_log_ce) {
561 mce_log(&m);
562 add_taint(TAINT_MACHINE_CHECK);
566 * Clear state for this bank.
568 mce_wrmsrl(MSR_IA32_MCx_STATUS(i), 0);
572 * Don't clear MCG_STATUS here because it's only defined for
573 * exceptions.
576 sync_core();
578 EXPORT_SYMBOL_GPL(machine_check_poll);
581 * Do a quick check if any of the events requires a panic.
582 * This decides if we keep the events around or clear them.
584 static int mce_no_way_out(struct mce *m, char **msg)
586 int i;
588 for (i = 0; i < banks; i++) {
589 m->status = mce_rdmsrl(MSR_IA32_MCx_STATUS(i));
590 if (mce_severity(m, tolerant, msg) >= MCE_PANIC_SEVERITY)
591 return 1;
593 return 0;
597 * Variable to establish order between CPUs while scanning.
598 * Each CPU spins initially until executing is equal its number.
600 static atomic_t mce_executing;
603 * Defines order of CPUs on entry. First CPU becomes Monarch.
605 static atomic_t mce_callin;
608 * Check if a timeout waiting for other CPUs happened.
610 static int mce_timed_out(u64 *t)
613 * The others already did panic for some reason.
614 * Bail out like in a timeout.
615 * rmb() to tell the compiler that system_state
616 * might have been modified by someone else.
618 rmb();
619 if (atomic_read(&mce_paniced))
620 wait_for_panic();
621 if (!monarch_timeout)
622 goto out;
623 if ((s64)*t < SPINUNIT) {
624 /* CHECKME: Make panic default for 1 too? */
625 if (tolerant < 1)
626 mce_panic("Timeout synchronizing machine check over CPUs",
627 NULL, NULL);
628 cpu_missing = 1;
629 return 1;
631 *t -= SPINUNIT;
632 out:
633 touch_nmi_watchdog();
634 return 0;
638 * The Monarch's reign. The Monarch is the CPU who entered
639 * the machine check handler first. It waits for the others to
640 * raise the exception too and then grades them. When any
641 * error is fatal panic. Only then let the others continue.
643 * The other CPUs entering the MCE handler will be controlled by the
644 * Monarch. They are called Subjects.
646 * This way we prevent any potential data corruption in a unrecoverable case
647 * and also makes sure always all CPU's errors are examined.
649 * Also this detects the case of a machine check event coming from outer
650 * space (not detected by any CPUs) In this case some external agent wants
651 * us to shut down, so panic too.
653 * The other CPUs might still decide to panic if the handler happens
654 * in a unrecoverable place, but in this case the system is in a semi-stable
655 * state and won't corrupt anything by itself. It's ok to let the others
656 * continue for a bit first.
658 * All the spin loops have timeouts; when a timeout happens a CPU
659 * typically elects itself to be Monarch.
661 static void mce_reign(void)
663 int cpu;
664 struct mce *m = NULL;
665 int global_worst = 0;
666 char *msg = NULL;
667 char *nmsg = NULL;
670 * This CPU is the Monarch and the other CPUs have run
671 * through their handlers.
672 * Grade the severity of the errors of all the CPUs.
674 for_each_possible_cpu(cpu) {
675 int severity = mce_severity(&per_cpu(mces_seen, cpu), tolerant,
676 &nmsg);
677 if (severity > global_worst) {
678 msg = nmsg;
679 global_worst = severity;
680 m = &per_cpu(mces_seen, cpu);
685 * Cannot recover? Panic here then.
686 * This dumps all the mces in the log buffer and stops the
687 * other CPUs.
689 if (m && global_worst >= MCE_PANIC_SEVERITY && tolerant < 3)
690 mce_panic("Fatal Machine check", m, msg);
693 * For UC somewhere we let the CPU who detects it handle it.
694 * Also must let continue the others, otherwise the handling
695 * CPU could deadlock on a lock.
699 * No machine check event found. Must be some external
700 * source or one CPU is hung. Panic.
702 if (global_worst <= MCE_KEEP_SEVERITY && tolerant < 3)
703 mce_panic("Machine check from unknown source", NULL, NULL);
706 * Now clear all the mces_seen so that they don't reappear on
707 * the next mce.
709 for_each_possible_cpu(cpu)
710 memset(&per_cpu(mces_seen, cpu), 0, sizeof(struct mce));
713 static atomic_t global_nwo;
716 * Start of Monarch synchronization. This waits until all CPUs have
717 * entered the exception handler and then determines if any of them
718 * saw a fatal event that requires panic. Then it executes them
719 * in the entry order.
720 * TBD double check parallel CPU hotunplug
722 static int mce_start(int *no_way_out)
724 int order;
725 int cpus = num_online_cpus();
726 u64 timeout = (u64)monarch_timeout * NSEC_PER_USEC;
728 if (!timeout)
729 return -1;
731 atomic_add(*no_way_out, &global_nwo);
733 * global_nwo should be updated before mce_callin
735 smp_wmb();
736 order = atomic_inc_return(&mce_callin);
739 * Wait for everyone.
741 while (atomic_read(&mce_callin) != cpus) {
742 if (mce_timed_out(&timeout)) {
743 atomic_set(&global_nwo, 0);
744 return -1;
746 ndelay(SPINUNIT);
750 * mce_callin should be read before global_nwo
752 smp_rmb();
754 if (order == 1) {
756 * Monarch: Starts executing now, the others wait.
758 atomic_set(&mce_executing, 1);
759 } else {
761 * Subject: Now start the scanning loop one by one in
762 * the original callin order.
763 * This way when there are any shared banks it will be
764 * only seen by one CPU before cleared, avoiding duplicates.
766 while (atomic_read(&mce_executing) < order) {
767 if (mce_timed_out(&timeout)) {
768 atomic_set(&global_nwo, 0);
769 return -1;
771 ndelay(SPINUNIT);
776 * Cache the global no_way_out state.
778 *no_way_out = atomic_read(&global_nwo);
780 return order;
784 * Synchronize between CPUs after main scanning loop.
785 * This invokes the bulk of the Monarch processing.
787 static int mce_end(int order)
789 int ret = -1;
790 u64 timeout = (u64)monarch_timeout * NSEC_PER_USEC;
792 if (!timeout)
793 goto reset;
794 if (order < 0)
795 goto reset;
798 * Allow others to run.
800 atomic_inc(&mce_executing);
802 if (order == 1) {
803 /* CHECKME: Can this race with a parallel hotplug? */
804 int cpus = num_online_cpus();
807 * Monarch: Wait for everyone to go through their scanning
808 * loops.
810 while (atomic_read(&mce_executing) <= cpus) {
811 if (mce_timed_out(&timeout))
812 goto reset;
813 ndelay(SPINUNIT);
816 mce_reign();
817 barrier();
818 ret = 0;
819 } else {
821 * Subject: Wait for Monarch to finish.
823 while (atomic_read(&mce_executing) != 0) {
824 if (mce_timed_out(&timeout))
825 goto reset;
826 ndelay(SPINUNIT);
830 * Don't reset anything. That's done by the Monarch.
832 return 0;
836 * Reset all global state.
838 reset:
839 atomic_set(&global_nwo, 0);
840 atomic_set(&mce_callin, 0);
841 barrier();
844 * Let others run again.
846 atomic_set(&mce_executing, 0);
847 return ret;
851 * Check if the address reported by the CPU is in a format we can parse.
852 * It would be possible to add code for most other cases, but all would
853 * be somewhat complicated (e.g. segment offset would require an instruction
854 * parser). So only support physical addresses upto page granuality for now.
856 static int mce_usable_address(struct mce *m)
858 if (!(m->status & MCI_STATUS_MISCV) || !(m->status & MCI_STATUS_ADDRV))
859 return 0;
860 if ((m->misc & 0x3f) > PAGE_SHIFT)
861 return 0;
862 if (((m->misc >> 6) & 7) != MCM_ADDR_PHYS)
863 return 0;
864 return 1;
867 static void mce_clear_state(unsigned long *toclear)
869 int i;
871 for (i = 0; i < banks; i++) {
872 if (test_bit(i, toclear))
873 mce_wrmsrl(MSR_IA32_MCx_STATUS(i), 0);
878 * The actual machine check handler. This only handles real
879 * exceptions when something got corrupted coming in through int 18.
881 * This is executed in NMI context not subject to normal locking rules. This
882 * implies that most kernel services cannot be safely used. Don't even
883 * think about putting a printk in there!
885 * On Intel systems this is entered on all CPUs in parallel through
886 * MCE broadcast. However some CPUs might be broken beyond repair,
887 * so be always careful when synchronizing with others.
889 void do_machine_check(struct pt_regs *regs, long error_code)
891 struct mce m, *final;
892 int i;
893 int worst = 0;
894 int severity;
896 * Establish sequential order between the CPUs entering the machine
897 * check handler.
899 int order;
901 * If no_way_out gets set, there is no safe way to recover from this
902 * MCE. If tolerant is cranked up, we'll try anyway.
904 int no_way_out = 0;
906 * If kill_it gets set, there might be a way to recover from this
907 * error.
909 int kill_it = 0;
910 DECLARE_BITMAP(toclear, MAX_NR_BANKS);
911 char *msg = "Unknown";
913 atomic_inc(&mce_entry);
915 __get_cpu_var(mce_exception_count)++;
917 if (notify_die(DIE_NMI, "machine check", regs, error_code,
918 18, SIGKILL) == NOTIFY_STOP)
919 goto out;
920 if (!banks)
921 goto out;
923 mce_setup(&m);
925 m.mcgstatus = mce_rdmsrl(MSR_IA32_MCG_STATUS);
926 final = &__get_cpu_var(mces_seen);
927 *final = m;
929 no_way_out = mce_no_way_out(&m, &msg);
931 barrier();
934 * When no restart IP must always kill or panic.
936 if (!(m.mcgstatus & MCG_STATUS_RIPV))
937 kill_it = 1;
940 * Go through all the banks in exclusion of the other CPUs.
941 * This way we don't report duplicated events on shared banks
942 * because the first one to see it will clear it.
944 order = mce_start(&no_way_out);
945 for (i = 0; i < banks; i++) {
946 __clear_bit(i, toclear);
947 if (!mce_banks[i].ctl)
948 continue;
950 m.misc = 0;
951 m.addr = 0;
952 m.bank = i;
954 m.status = mce_rdmsrl(MSR_IA32_MCx_STATUS(i));
955 if ((m.status & MCI_STATUS_VAL) == 0)
956 continue;
959 * Non uncorrected or non signaled errors are handled by
960 * machine_check_poll. Leave them alone, unless this panics.
962 if (!(m.status & (mce_ser ? MCI_STATUS_S : MCI_STATUS_UC)) &&
963 !no_way_out)
964 continue;
967 * Set taint even when machine check was not enabled.
969 add_taint(TAINT_MACHINE_CHECK);
971 severity = mce_severity(&m, tolerant, NULL);
974 * When machine check was for corrected handler don't touch,
975 * unless we're panicing.
977 if (severity == MCE_KEEP_SEVERITY && !no_way_out)
978 continue;
979 __set_bit(i, toclear);
980 if (severity == MCE_NO_SEVERITY) {
982 * Machine check event was not enabled. Clear, but
983 * ignore.
985 continue;
989 * Kill on action required.
991 if (severity == MCE_AR_SEVERITY)
992 kill_it = 1;
994 if (m.status & MCI_STATUS_MISCV)
995 m.misc = mce_rdmsrl(MSR_IA32_MCx_MISC(i));
996 if (m.status & MCI_STATUS_ADDRV)
997 m.addr = mce_rdmsrl(MSR_IA32_MCx_ADDR(i));
1000 * Action optional error. Queue address for later processing.
1001 * When the ring overflows we just ignore the AO error.
1002 * RED-PEN add some logging mechanism when
1003 * usable_address or mce_add_ring fails.
1004 * RED-PEN don't ignore overflow for tolerant == 0
1006 if (severity == MCE_AO_SEVERITY && mce_usable_address(&m))
1007 mce_ring_add(m.addr >> PAGE_SHIFT);
1009 mce_get_rip(&m, regs);
1010 mce_log(&m);
1012 if (severity > worst) {
1013 *final = m;
1014 worst = severity;
1018 if (!no_way_out)
1019 mce_clear_state(toclear);
1022 * Do most of the synchronization with other CPUs.
1023 * When there's any problem use only local no_way_out state.
1025 if (mce_end(order) < 0)
1026 no_way_out = worst >= MCE_PANIC_SEVERITY;
1029 * If we have decided that we just CAN'T continue, and the user
1030 * has not set tolerant to an insane level, give up and die.
1032 * This is mainly used in the case when the system doesn't
1033 * support MCE broadcasting or it has been disabled.
1035 if (no_way_out && tolerant < 3)
1036 mce_panic("Fatal machine check on current CPU", final, msg);
1039 * If the error seems to be unrecoverable, something should be
1040 * done. Try to kill as little as possible. If we can kill just
1041 * one task, do that. If the user has set the tolerance very
1042 * high, don't try to do anything at all.
1045 if (kill_it && tolerant < 3)
1046 force_sig(SIGBUS, current);
1048 /* notify userspace ASAP */
1049 set_thread_flag(TIF_MCE_NOTIFY);
1051 if (worst > 0)
1052 mce_report_event(regs);
1053 mce_wrmsrl(MSR_IA32_MCG_STATUS, 0);
1054 out:
1055 atomic_dec(&mce_entry);
1056 sync_core();
1058 EXPORT_SYMBOL_GPL(do_machine_check);
1060 /* dummy to break dependency. actual code is in mm/memory-failure.c */
1061 void __attribute__((weak)) memory_failure(unsigned long pfn, int vector)
1063 printk(KERN_ERR "Action optional memory failure at %lx ignored\n", pfn);
1067 * Called after mce notification in process context. This code
1068 * is allowed to sleep. Call the high level VM handler to process
1069 * any corrupted pages.
1070 * Assume that the work queue code only calls this one at a time
1071 * per CPU.
1072 * Note we don't disable preemption, so this code might run on the wrong
1073 * CPU. In this case the event is picked up by the scheduled work queue.
1074 * This is merely a fast path to expedite processing in some common
1075 * cases.
1077 void mce_notify_process(void)
1079 unsigned long pfn;
1080 mce_notify_irq();
1081 while (mce_ring_get(&pfn))
1082 memory_failure(pfn, MCE_VECTOR);
1085 static void mce_process_work(struct work_struct *dummy)
1087 mce_notify_process();
1090 #ifdef CONFIG_X86_MCE_INTEL
1091 /***
1092 * mce_log_therm_throt_event - Logs the thermal throttling event to mcelog
1093 * @cpu: The CPU on which the event occurred.
1094 * @status: Event status information
1096 * This function should be called by the thermal interrupt after the
1097 * event has been processed and the decision was made to log the event
1098 * further.
1100 * The status parameter will be saved to the 'status' field of 'struct mce'
1101 * and historically has been the register value of the
1102 * MSR_IA32_THERMAL_STATUS (Intel) msr.
1104 void mce_log_therm_throt_event(__u64 status)
1106 struct mce m;
1108 mce_setup(&m);
1109 m.bank = MCE_THERMAL_BANK;
1110 m.status = status;
1111 mce_log(&m);
1113 #endif /* CONFIG_X86_MCE_INTEL */
1116 * Periodic polling timer for "silent" machine check errors. If the
1117 * poller finds an MCE, poll 2x faster. When the poller finds no more
1118 * errors, poll 2x slower (up to check_interval seconds).
1120 static int check_interval = 5 * 60; /* 5 minutes */
1122 static DEFINE_PER_CPU(int, mce_next_interval); /* in jiffies */
1123 static DEFINE_PER_CPU(struct timer_list, mce_timer);
1125 static void mcheck_timer(unsigned long data)
1127 struct timer_list *t = &per_cpu(mce_timer, data);
1128 int *n;
1130 WARN_ON(smp_processor_id() != data);
1132 if (mce_available(&current_cpu_data)) {
1133 machine_check_poll(MCP_TIMESTAMP,
1134 &__get_cpu_var(mce_poll_banks));
1138 * Alert userspace if needed. If we logged an MCE, reduce the
1139 * polling interval, otherwise increase the polling interval.
1141 n = &__get_cpu_var(mce_next_interval);
1142 if (mce_notify_irq())
1143 *n = max(*n/2, HZ/100);
1144 else
1145 *n = min(*n*2, (int)round_jiffies_relative(check_interval*HZ));
1147 t->expires = jiffies + *n;
1148 add_timer_on(t, smp_processor_id());
1151 static void mce_do_trigger(struct work_struct *work)
1153 call_usermodehelper(mce_helper, mce_helper_argv, NULL, UMH_NO_WAIT);
1156 static DECLARE_WORK(mce_trigger_work, mce_do_trigger);
1159 * Notify the user(s) about new machine check events.
1160 * Can be called from interrupt context, but not from machine check/NMI
1161 * context.
1163 int mce_notify_irq(void)
1165 /* Not more than two messages every minute */
1166 static DEFINE_RATELIMIT_STATE(ratelimit, 60*HZ, 2);
1168 clear_thread_flag(TIF_MCE_NOTIFY);
1170 if (test_and_clear_bit(0, &mce_need_notify)) {
1171 wake_up_interruptible(&mce_wait);
1174 * There is no risk of missing notifications because
1175 * work_pending is always cleared before the function is
1176 * executed.
1178 if (mce_helper[0] && !work_pending(&mce_trigger_work))
1179 schedule_work(&mce_trigger_work);
1181 if (__ratelimit(&ratelimit))
1182 printk(KERN_INFO "Machine check events logged\n");
1184 return 1;
1186 return 0;
1188 EXPORT_SYMBOL_GPL(mce_notify_irq);
1190 static int mce_banks_init(void)
1192 int i;
1194 mce_banks = kzalloc(banks * sizeof(struct mce_bank), GFP_KERNEL);
1195 if (!mce_banks)
1196 return -ENOMEM;
1197 for (i = 0; i < banks; i++) {
1198 struct mce_bank *b = &mce_banks[i];
1200 b->ctl = -1ULL;
1201 b->init = 1;
1203 return 0;
1207 * Initialize Machine Checks for a CPU.
1209 static int __cpuinit mce_cap_init(void)
1211 unsigned b;
1212 u64 cap;
1214 rdmsrl(MSR_IA32_MCG_CAP, cap);
1216 b = cap & MCG_BANKCNT_MASK;
1217 printk(KERN_INFO "mce: CPU supports %d MCE banks\n", b);
1219 if (b > MAX_NR_BANKS) {
1220 printk(KERN_WARNING
1221 "MCE: Using only %u machine check banks out of %u\n",
1222 MAX_NR_BANKS, b);
1223 b = MAX_NR_BANKS;
1226 /* Don't support asymmetric configurations today */
1227 WARN_ON(banks != 0 && b != banks);
1228 banks = b;
1229 if (!mce_banks) {
1230 int err = mce_banks_init();
1232 if (err)
1233 return err;
1236 /* Use accurate RIP reporting if available. */
1237 if ((cap & MCG_EXT_P) && MCG_EXT_CNT(cap) >= 9)
1238 rip_msr = MSR_IA32_MCG_EIP;
1240 if (cap & MCG_SER_P)
1241 mce_ser = 1;
1243 return 0;
1246 static void mce_init(void)
1248 mce_banks_t all_banks;
1249 u64 cap;
1250 int i;
1253 * Log the machine checks left over from the previous reset.
1255 bitmap_fill(all_banks, MAX_NR_BANKS);
1256 machine_check_poll(MCP_UC|(!mce_bootlog ? MCP_DONTLOG : 0), &all_banks);
1258 set_in_cr4(X86_CR4_MCE);
1260 rdmsrl(MSR_IA32_MCG_CAP, cap);
1261 if (cap & MCG_CTL_P)
1262 wrmsr(MSR_IA32_MCG_CTL, 0xffffffff, 0xffffffff);
1264 for (i = 0; i < banks; i++) {
1265 struct mce_bank *b = &mce_banks[i];
1267 if (!b->init)
1268 continue;
1269 wrmsrl(MSR_IA32_MCx_CTL(i), b->ctl);
1270 wrmsrl(MSR_IA32_MCx_STATUS(i), 0);
1274 /* Add per CPU specific workarounds here */
1275 static int __cpuinit mce_cpu_quirks(struct cpuinfo_x86 *c)
1277 if (c->x86_vendor == X86_VENDOR_UNKNOWN) {
1278 pr_info("MCE: unknown CPU type - not enabling MCE support.\n");
1279 return -EOPNOTSUPP;
1282 /* This should be disabled by the BIOS, but isn't always */
1283 if (c->x86_vendor == X86_VENDOR_AMD) {
1284 if (c->x86 == 15 && banks > 4) {
1286 * disable GART TBL walk error reporting, which
1287 * trips off incorrectly with the IOMMU & 3ware
1288 * & Cerberus:
1290 clear_bit(10, (unsigned long *)&mce_banks[4].ctl);
1292 if (c->x86 <= 17 && mce_bootlog < 0) {
1294 * Lots of broken BIOS around that don't clear them
1295 * by default and leave crap in there. Don't log:
1297 mce_bootlog = 0;
1300 * Various K7s with broken bank 0 around. Always disable
1301 * by default.
1303 if (c->x86 == 6 && banks > 0)
1304 mce_banks[0].ctl = 0;
1307 if (c->x86_vendor == X86_VENDOR_INTEL) {
1309 * SDM documents that on family 6 bank 0 should not be written
1310 * because it aliases to another special BIOS controlled
1311 * register.
1312 * But it's not aliased anymore on model 0x1a+
1313 * Don't ignore bank 0 completely because there could be a
1314 * valid event later, merely don't write CTL0.
1317 if (c->x86 == 6 && c->x86_model < 0x1A && banks > 0)
1318 mce_banks[0].init = 0;
1321 * All newer Intel systems support MCE broadcasting. Enable
1322 * synchronization with a one second timeout.
1324 if ((c->x86 > 6 || (c->x86 == 6 && c->x86_model >= 0xe)) &&
1325 monarch_timeout < 0)
1326 monarch_timeout = USEC_PER_SEC;
1329 * There are also broken BIOSes on some Pentium M and
1330 * earlier systems:
1332 if (c->x86 == 6 && c->x86_model <= 13 && mce_bootlog < 0)
1333 mce_bootlog = 0;
1335 if (monarch_timeout < 0)
1336 monarch_timeout = 0;
1337 if (mce_bootlog != 0)
1338 mce_panic_timeout = 30;
1340 return 0;
1343 static void __cpuinit mce_ancient_init(struct cpuinfo_x86 *c)
1345 if (c->x86 != 5)
1346 return;
1347 switch (c->x86_vendor) {
1348 case X86_VENDOR_INTEL:
1349 intel_p5_mcheck_init(c);
1350 break;
1351 case X86_VENDOR_CENTAUR:
1352 winchip_mcheck_init(c);
1353 break;
1357 static void mce_cpu_features(struct cpuinfo_x86 *c)
1359 switch (c->x86_vendor) {
1360 case X86_VENDOR_INTEL:
1361 mce_intel_feature_init(c);
1362 break;
1363 case X86_VENDOR_AMD:
1364 mce_amd_feature_init(c);
1365 break;
1366 default:
1367 break;
1371 static void mce_init_timer(void)
1373 struct timer_list *t = &__get_cpu_var(mce_timer);
1374 int *n = &__get_cpu_var(mce_next_interval);
1376 if (mce_ignore_ce)
1377 return;
1379 *n = check_interval * HZ;
1380 if (!*n)
1381 return;
1382 setup_timer(t, mcheck_timer, smp_processor_id());
1383 t->expires = round_jiffies(jiffies + *n);
1384 add_timer_on(t, smp_processor_id());
1387 /* Handle unconfigured int18 (should never happen) */
1388 static void unexpected_machine_check(struct pt_regs *regs, long error_code)
1390 printk(KERN_ERR "CPU#%d: Unexpected int18 (Machine Check).\n",
1391 smp_processor_id());
1394 /* Call the installed machine check handler for this CPU setup. */
1395 void (*machine_check_vector)(struct pt_regs *, long error_code) =
1396 unexpected_machine_check;
1399 * Called for each booted CPU to set up machine checks.
1400 * Must be called with preempt off:
1402 void __cpuinit mcheck_init(struct cpuinfo_x86 *c)
1404 if (mce_disabled)
1405 return;
1407 mce_ancient_init(c);
1409 if (!mce_available(c))
1410 return;
1412 if (mce_cap_init() < 0 || mce_cpu_quirks(c) < 0) {
1413 mce_disabled = 1;
1414 return;
1417 machine_check_vector = do_machine_check;
1419 mce_init();
1420 mce_cpu_features(c);
1421 mce_init_timer();
1422 INIT_WORK(&__get_cpu_var(mce_work), mce_process_work);
1426 * Character device to read and clear the MCE log.
1429 static DEFINE_SPINLOCK(mce_state_lock);
1430 static int open_count; /* #times opened */
1431 static int open_exclu; /* already open exclusive? */
1433 static int mce_open(struct inode *inode, struct file *file)
1435 spin_lock(&mce_state_lock);
1437 if (open_exclu || (open_count && (file->f_flags & O_EXCL))) {
1438 spin_unlock(&mce_state_lock);
1440 return -EBUSY;
1443 if (file->f_flags & O_EXCL)
1444 open_exclu = 1;
1445 open_count++;
1447 spin_unlock(&mce_state_lock);
1449 return nonseekable_open(inode, file);
1452 static int mce_release(struct inode *inode, struct file *file)
1454 spin_lock(&mce_state_lock);
1456 open_count--;
1457 open_exclu = 0;
1459 spin_unlock(&mce_state_lock);
1461 return 0;
1464 static void collect_tscs(void *data)
1466 unsigned long *cpu_tsc = (unsigned long *)data;
1468 rdtscll(cpu_tsc[smp_processor_id()]);
1471 static DEFINE_MUTEX(mce_read_mutex);
1473 static ssize_t mce_read(struct file *filp, char __user *ubuf, size_t usize,
1474 loff_t *off)
1476 char __user *buf = ubuf;
1477 unsigned long *cpu_tsc;
1478 unsigned prev, next;
1479 int i, err;
1481 cpu_tsc = kmalloc(nr_cpu_ids * sizeof(long), GFP_KERNEL);
1482 if (!cpu_tsc)
1483 return -ENOMEM;
1485 mutex_lock(&mce_read_mutex);
1486 next = rcu_dereference(mcelog.next);
1488 /* Only supports full reads right now */
1489 if (*off != 0 || usize < MCE_LOG_LEN*sizeof(struct mce)) {
1490 mutex_unlock(&mce_read_mutex);
1491 kfree(cpu_tsc);
1493 return -EINVAL;
1496 err = 0;
1497 prev = 0;
1498 do {
1499 for (i = prev; i < next; i++) {
1500 unsigned long start = jiffies;
1502 while (!mcelog.entry[i].finished) {
1503 if (time_after_eq(jiffies, start + 2)) {
1504 memset(mcelog.entry + i, 0,
1505 sizeof(struct mce));
1506 goto timeout;
1508 cpu_relax();
1510 smp_rmb();
1511 err |= copy_to_user(buf, mcelog.entry + i,
1512 sizeof(struct mce));
1513 buf += sizeof(struct mce);
1514 timeout:
1518 memset(mcelog.entry + prev, 0,
1519 (next - prev) * sizeof(struct mce));
1520 prev = next;
1521 next = cmpxchg(&mcelog.next, prev, 0);
1522 } while (next != prev);
1524 synchronize_sched();
1527 * Collect entries that were still getting written before the
1528 * synchronize.
1530 on_each_cpu(collect_tscs, cpu_tsc, 1);
1532 for (i = next; i < MCE_LOG_LEN; i++) {
1533 if (mcelog.entry[i].finished &&
1534 mcelog.entry[i].tsc < cpu_tsc[mcelog.entry[i].cpu]) {
1535 err |= copy_to_user(buf, mcelog.entry+i,
1536 sizeof(struct mce));
1537 smp_rmb();
1538 buf += sizeof(struct mce);
1539 memset(&mcelog.entry[i], 0, sizeof(struct mce));
1542 mutex_unlock(&mce_read_mutex);
1543 kfree(cpu_tsc);
1545 return err ? -EFAULT : buf - ubuf;
1548 static unsigned int mce_poll(struct file *file, poll_table *wait)
1550 poll_wait(file, &mce_wait, wait);
1551 if (rcu_dereference(mcelog.next))
1552 return POLLIN | POLLRDNORM;
1553 return 0;
1556 static long mce_ioctl(struct file *f, unsigned int cmd, unsigned long arg)
1558 int __user *p = (int __user *)arg;
1560 if (!capable(CAP_SYS_ADMIN))
1561 return -EPERM;
1563 switch (cmd) {
1564 case MCE_GET_RECORD_LEN:
1565 return put_user(sizeof(struct mce), p);
1566 case MCE_GET_LOG_LEN:
1567 return put_user(MCE_LOG_LEN, p);
1568 case MCE_GETCLEAR_FLAGS: {
1569 unsigned flags;
1571 do {
1572 flags = mcelog.flags;
1573 } while (cmpxchg(&mcelog.flags, flags, 0) != flags);
1575 return put_user(flags, p);
1577 default:
1578 return -ENOTTY;
1582 /* Modified in mce-inject.c, so not static or const */
1583 struct file_operations mce_chrdev_ops = {
1584 .open = mce_open,
1585 .release = mce_release,
1586 .read = mce_read,
1587 .poll = mce_poll,
1588 .unlocked_ioctl = mce_ioctl,
1590 EXPORT_SYMBOL_GPL(mce_chrdev_ops);
1592 static struct miscdevice mce_log_device = {
1593 MISC_MCELOG_MINOR,
1594 "mcelog",
1595 &mce_chrdev_ops,
1599 * mce=off Disables machine check
1600 * mce=no_cmci Disables CMCI
1601 * mce=dont_log_ce Clears corrected events silently, no log created for CEs.
1602 * mce=ignore_ce Disables polling and CMCI, corrected events are not cleared.
1603 * mce=TOLERANCELEVEL[,monarchtimeout] (number, see above)
1604 * monarchtimeout is how long to wait for other CPUs on machine
1605 * check, or 0 to not wait
1606 * mce=bootlog Log MCEs from before booting. Disabled by default on AMD.
1607 * mce=nobootlog Don't log MCEs from before booting.
1609 static int __init mcheck_enable(char *str)
1611 if (*str == 0) {
1612 enable_p5_mce();
1613 return 1;
1615 if (*str == '=')
1616 str++;
1617 if (!strcmp(str, "off"))
1618 mce_disabled = 1;
1619 else if (!strcmp(str, "no_cmci"))
1620 mce_cmci_disabled = 1;
1621 else if (!strcmp(str, "dont_log_ce"))
1622 mce_dont_log_ce = 1;
1623 else if (!strcmp(str, "ignore_ce"))
1624 mce_ignore_ce = 1;
1625 else if (!strcmp(str, "bootlog") || !strcmp(str, "nobootlog"))
1626 mce_bootlog = (str[0] == 'b');
1627 else if (isdigit(str[0])) {
1628 get_option(&str, &tolerant);
1629 if (*str == ',') {
1630 ++str;
1631 get_option(&str, &monarch_timeout);
1633 } else {
1634 printk(KERN_INFO "mce argument %s ignored. Please use /sys\n",
1635 str);
1636 return 0;
1638 return 1;
1640 __setup("mce", mcheck_enable);
1643 * Sysfs support
1647 * Disable machine checks on suspend and shutdown. We can't really handle
1648 * them later.
1650 static int mce_disable(void)
1652 int i;
1654 for (i = 0; i < banks; i++) {
1655 struct mce_bank *b = &mce_banks[i];
1657 if (b->init)
1658 wrmsrl(MSR_IA32_MCx_CTL(i), 0);
1660 return 0;
1663 static int mce_suspend(struct sys_device *dev, pm_message_t state)
1665 return mce_disable();
1668 static int mce_shutdown(struct sys_device *dev)
1670 return mce_disable();
1674 * On resume clear all MCE state. Don't want to see leftovers from the BIOS.
1675 * Only one CPU is active at this time, the others get re-added later using
1676 * CPU hotplug:
1678 static int mce_resume(struct sys_device *dev)
1680 mce_init();
1681 mce_cpu_features(&current_cpu_data);
1683 return 0;
1686 static void mce_cpu_restart(void *data)
1688 del_timer_sync(&__get_cpu_var(mce_timer));
1689 if (!mce_available(&current_cpu_data))
1690 return;
1691 mce_init();
1692 mce_init_timer();
1695 /* Reinit MCEs after user configuration changes */
1696 static void mce_restart(void)
1698 on_each_cpu(mce_cpu_restart, NULL, 1);
1701 /* Toggle features for corrected errors */
1702 static void mce_disable_ce(void *all)
1704 if (!mce_available(&current_cpu_data))
1705 return;
1706 if (all)
1707 del_timer_sync(&__get_cpu_var(mce_timer));
1708 cmci_clear();
1711 static void mce_enable_ce(void *all)
1713 if (!mce_available(&current_cpu_data))
1714 return;
1715 cmci_reenable();
1716 cmci_recheck();
1717 if (all)
1718 mce_init_timer();
1721 static struct sysdev_class mce_sysclass = {
1722 .suspend = mce_suspend,
1723 .shutdown = mce_shutdown,
1724 .resume = mce_resume,
1725 .name = "machinecheck",
1728 DEFINE_PER_CPU(struct sys_device, mce_dev);
1730 __cpuinitdata
1731 void (*threshold_cpu_callback)(unsigned long action, unsigned int cpu);
1733 static inline struct mce_bank *attr_to_bank(struct sysdev_attribute *attr)
1735 return container_of(attr, struct mce_bank, attr);
1738 static ssize_t show_bank(struct sys_device *s, struct sysdev_attribute *attr,
1739 char *buf)
1741 return sprintf(buf, "%llx\n", attr_to_bank(attr)->ctl);
1744 static ssize_t set_bank(struct sys_device *s, struct sysdev_attribute *attr,
1745 const char *buf, size_t size)
1747 u64 new;
1749 if (strict_strtoull(buf, 0, &new) < 0)
1750 return -EINVAL;
1752 attr_to_bank(attr)->ctl = new;
1753 mce_restart();
1755 return size;
1758 static ssize_t
1759 show_trigger(struct sys_device *s, struct sysdev_attribute *attr, char *buf)
1761 strcpy(buf, mce_helper);
1762 strcat(buf, "\n");
1763 return strlen(mce_helper) + 1;
1766 static ssize_t set_trigger(struct sys_device *s, struct sysdev_attribute *attr,
1767 const char *buf, size_t siz)
1769 char *p;
1771 strncpy(mce_helper, buf, sizeof(mce_helper));
1772 mce_helper[sizeof(mce_helper)-1] = 0;
1773 p = strchr(mce_helper, '\n');
1775 if (p)
1776 *p = 0;
1778 return strlen(mce_helper) + !!p;
1781 static ssize_t set_ignore_ce(struct sys_device *s,
1782 struct sysdev_attribute *attr,
1783 const char *buf, size_t size)
1785 u64 new;
1787 if (strict_strtoull(buf, 0, &new) < 0)
1788 return -EINVAL;
1790 if (mce_ignore_ce ^ !!new) {
1791 if (new) {
1792 /* disable ce features */
1793 on_each_cpu(mce_disable_ce, (void *)1, 1);
1794 mce_ignore_ce = 1;
1795 } else {
1796 /* enable ce features */
1797 mce_ignore_ce = 0;
1798 on_each_cpu(mce_enable_ce, (void *)1, 1);
1801 return size;
1804 static ssize_t set_cmci_disabled(struct sys_device *s,
1805 struct sysdev_attribute *attr,
1806 const char *buf, size_t size)
1808 u64 new;
1810 if (strict_strtoull(buf, 0, &new) < 0)
1811 return -EINVAL;
1813 if (mce_cmci_disabled ^ !!new) {
1814 if (new) {
1815 /* disable cmci */
1816 on_each_cpu(mce_disable_ce, NULL, 1);
1817 mce_cmci_disabled = 1;
1818 } else {
1819 /* enable cmci */
1820 mce_cmci_disabled = 0;
1821 on_each_cpu(mce_enable_ce, NULL, 1);
1824 return size;
1827 static ssize_t store_int_with_restart(struct sys_device *s,
1828 struct sysdev_attribute *attr,
1829 const char *buf, size_t size)
1831 ssize_t ret = sysdev_store_int(s, attr, buf, size);
1832 mce_restart();
1833 return ret;
1836 static SYSDEV_ATTR(trigger, 0644, show_trigger, set_trigger);
1837 static SYSDEV_INT_ATTR(tolerant, 0644, tolerant);
1838 static SYSDEV_INT_ATTR(monarch_timeout, 0644, monarch_timeout);
1839 static SYSDEV_INT_ATTR(dont_log_ce, 0644, mce_dont_log_ce);
1841 static struct sysdev_ext_attribute attr_check_interval = {
1842 _SYSDEV_ATTR(check_interval, 0644, sysdev_show_int,
1843 store_int_with_restart),
1844 &check_interval
1847 static struct sysdev_ext_attribute attr_ignore_ce = {
1848 _SYSDEV_ATTR(ignore_ce, 0644, sysdev_show_int, set_ignore_ce),
1849 &mce_ignore_ce
1852 static struct sysdev_ext_attribute attr_cmci_disabled = {
1853 _SYSDEV_ATTR(cmci_disabled, 0644, sysdev_show_int, set_cmci_disabled),
1854 &mce_cmci_disabled
1857 static struct sysdev_attribute *mce_attrs[] = {
1858 &attr_tolerant.attr,
1859 &attr_check_interval.attr,
1860 &attr_trigger,
1861 &attr_monarch_timeout.attr,
1862 &attr_dont_log_ce.attr,
1863 &attr_ignore_ce.attr,
1864 &attr_cmci_disabled.attr,
1865 NULL
1868 static cpumask_var_t mce_dev_initialized;
1870 /* Per cpu sysdev init. All of the cpus still share the same ctrl bank: */
1871 static __cpuinit int mce_create_device(unsigned int cpu)
1873 int err;
1874 int i, j;
1876 if (!mce_available(&boot_cpu_data))
1877 return -EIO;
1879 memset(&per_cpu(mce_dev, cpu).kobj, 0, sizeof(struct kobject));
1880 per_cpu(mce_dev, cpu).id = cpu;
1881 per_cpu(mce_dev, cpu).cls = &mce_sysclass;
1883 err = sysdev_register(&per_cpu(mce_dev, cpu));
1884 if (err)
1885 return err;
1887 for (i = 0; mce_attrs[i]; i++) {
1888 err = sysdev_create_file(&per_cpu(mce_dev, cpu), mce_attrs[i]);
1889 if (err)
1890 goto error;
1892 for (j = 0; j < banks; j++) {
1893 err = sysdev_create_file(&per_cpu(mce_dev, cpu),
1894 &mce_banks[j].attr);
1895 if (err)
1896 goto error2;
1898 cpumask_set_cpu(cpu, mce_dev_initialized);
1900 return 0;
1901 error2:
1902 while (--j >= 0)
1903 sysdev_remove_file(&per_cpu(mce_dev, cpu), &mce_banks[j].attr);
1904 error:
1905 while (--i >= 0)
1906 sysdev_remove_file(&per_cpu(mce_dev, cpu), &mce_banks[i].attr);
1908 sysdev_unregister(&per_cpu(mce_dev, cpu));
1910 return err;
1913 static __cpuinit void mce_remove_device(unsigned int cpu)
1915 int i;
1917 if (!cpumask_test_cpu(cpu, mce_dev_initialized))
1918 return;
1920 for (i = 0; mce_attrs[i]; i++)
1921 sysdev_remove_file(&per_cpu(mce_dev, cpu), mce_attrs[i]);
1923 for (i = 0; i < banks; i++)
1924 sysdev_remove_file(&per_cpu(mce_dev, cpu), &mce_banks[i].attr);
1926 sysdev_unregister(&per_cpu(mce_dev, cpu));
1927 cpumask_clear_cpu(cpu, mce_dev_initialized);
1930 /* Make sure there are no machine checks on offlined CPUs. */
1931 static void mce_disable_cpu(void *h)
1933 unsigned long action = *(unsigned long *)h;
1934 int i;
1936 if (!mce_available(&current_cpu_data))
1937 return;
1938 if (!(action & CPU_TASKS_FROZEN))
1939 cmci_clear();
1940 for (i = 0; i < banks; i++) {
1941 struct mce_bank *b = &mce_banks[i];
1943 if (b->init)
1944 wrmsrl(MSR_IA32_MCx_CTL(i), 0);
1948 static void mce_reenable_cpu(void *h)
1950 unsigned long action = *(unsigned long *)h;
1951 int i;
1953 if (!mce_available(&current_cpu_data))
1954 return;
1956 if (!(action & CPU_TASKS_FROZEN))
1957 cmci_reenable();
1958 for (i = 0; i < banks; i++) {
1959 struct mce_bank *b = &mce_banks[i];
1961 if (b->init)
1962 wrmsrl(MSR_IA32_MCx_CTL(i), b->ctl);
1966 /* Get notified when a cpu comes on/off. Be hotplug friendly. */
1967 static int __cpuinit
1968 mce_cpu_callback(struct notifier_block *nfb, unsigned long action, void *hcpu)
1970 unsigned int cpu = (unsigned long)hcpu;
1971 struct timer_list *t = &per_cpu(mce_timer, cpu);
1973 switch (action) {
1974 case CPU_ONLINE:
1975 case CPU_ONLINE_FROZEN:
1976 mce_create_device(cpu);
1977 if (threshold_cpu_callback)
1978 threshold_cpu_callback(action, cpu);
1979 break;
1980 case CPU_DEAD:
1981 case CPU_DEAD_FROZEN:
1982 if (threshold_cpu_callback)
1983 threshold_cpu_callback(action, cpu);
1984 mce_remove_device(cpu);
1985 break;
1986 case CPU_DOWN_PREPARE:
1987 case CPU_DOWN_PREPARE_FROZEN:
1988 del_timer_sync(t);
1989 smp_call_function_single(cpu, mce_disable_cpu, &action, 1);
1990 break;
1991 case CPU_DOWN_FAILED:
1992 case CPU_DOWN_FAILED_FROZEN:
1993 t->expires = round_jiffies(jiffies +
1994 __get_cpu_var(mce_next_interval));
1995 add_timer_on(t, cpu);
1996 smp_call_function_single(cpu, mce_reenable_cpu, &action, 1);
1997 break;
1998 case CPU_POST_DEAD:
1999 /* intentionally ignoring frozen here */
2000 cmci_rediscover(cpu);
2001 break;
2003 return NOTIFY_OK;
2006 static struct notifier_block mce_cpu_notifier __cpuinitdata = {
2007 .notifier_call = mce_cpu_callback,
2010 static __init void mce_init_banks(void)
2012 int i;
2014 for (i = 0; i < banks; i++) {
2015 struct mce_bank *b = &mce_banks[i];
2016 struct sysdev_attribute *a = &b->attr;
2018 a->attr.name = b->attrname;
2019 snprintf(b->attrname, ATTR_LEN, "bank%d", i);
2021 a->attr.mode = 0644;
2022 a->show = show_bank;
2023 a->store = set_bank;
2027 static __init int mce_init_device(void)
2029 int err;
2030 int i = 0;
2032 if (!mce_available(&boot_cpu_data))
2033 return -EIO;
2035 zalloc_cpumask_var(&mce_dev_initialized, GFP_KERNEL);
2037 mce_init_banks();
2039 err = sysdev_class_register(&mce_sysclass);
2040 if (err)
2041 return err;
2043 for_each_online_cpu(i) {
2044 err = mce_create_device(i);
2045 if (err)
2046 return err;
2049 register_hotcpu_notifier(&mce_cpu_notifier);
2050 misc_register(&mce_log_device);
2052 return err;
2055 device_initcall(mce_init_device);
2058 * Old style boot options parsing. Only for compatibility.
2060 static int __init mcheck_disable(char *str)
2062 mce_disabled = 1;
2063 return 1;
2065 __setup("nomce", mcheck_disable);
2067 #ifdef CONFIG_DEBUG_FS
2068 struct dentry *mce_get_debugfs_dir(void)
2070 static struct dentry *dmce;
2072 if (!dmce)
2073 dmce = debugfs_create_dir("mce", NULL);
2075 return dmce;
2078 static void mce_reset(void)
2080 cpu_missing = 0;
2081 atomic_set(&mce_fake_paniced, 0);
2082 atomic_set(&mce_executing, 0);
2083 atomic_set(&mce_callin, 0);
2084 atomic_set(&global_nwo, 0);
2087 static int fake_panic_get(void *data, u64 *val)
2089 *val = fake_panic;
2090 return 0;
2093 static int fake_panic_set(void *data, u64 val)
2095 mce_reset();
2096 fake_panic = val;
2097 return 0;
2100 DEFINE_SIMPLE_ATTRIBUTE(fake_panic_fops, fake_panic_get,
2101 fake_panic_set, "%llu\n");
2103 static int __init mce_debugfs_init(void)
2105 struct dentry *dmce, *ffake_panic;
2107 dmce = mce_get_debugfs_dir();
2108 if (!dmce)
2109 return -ENOMEM;
2110 ffake_panic = debugfs_create_file("fake_panic", 0444, dmce, NULL,
2111 &fake_panic_fops);
2112 if (!ffake_panic)
2113 return -ENOMEM;
2115 return 0;
2117 late_initcall(mce_debugfs_init);
2118 #endif