blob: 28cba46bf32c5221afcfb2115237750d4da56dec [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Machine check handler.
Ingo Molnare9eee032009-04-08 12:31:17 +02003 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * K8 parts Copyright 2002,2003 Andi Kleen, SuSE Labs.
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02005 * Rest from unknown author(s).
6 * 2004 Andi Kleen. Rewrote most of it.
Andi Kleenb79109c2009-02-12 13:43:23 +01007 * Copyright 2008 Intel Corporation
8 * Author: Andi Kleen
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 */
Tim Hockine02e68d2007-07-21 17:10:36 +020010#include <linux/thread_info.h>
Ingo Molnare9eee032009-04-08 12:31:17 +020011#include <linux/capability.h>
12#include <linux/miscdevice.h>
Andi Kleenccc3c312009-05-27 21:56:54 +020013#include <linux/interrupt.h>
Andi Kleen8457c842009-02-12 13:49:33 +010014#include <linux/ratelimit.h>
Ingo Molnare9eee032009-04-08 12:31:17 +020015#include <linux/kallsyms.h>
16#include <linux/rcupdate.h>
Ingo Molnare9eee032009-04-08 12:31:17 +020017#include <linux/kobject.h>
Hidetoshi Seto14a02532009-04-30 16:04:51 +090018#include <linux/uaccess.h>
Ingo Molnare9eee032009-04-08 12:31:17 +020019#include <linux/kdebug.h>
20#include <linux/kernel.h>
21#include <linux/percpu.h>
22#include <linux/string.h>
23#include <linux/sysdev.h>
Andi Kleen3c079792009-05-27 21:56:55 +020024#include <linux/delay.h>
Ingo Molnare9eee032009-04-08 12:31:17 +020025#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>
Andi Kleen3c079792009-05-27 21:56:55 +020032#include <linux/nmi.h>
Ingo Molnare9eee032009-04-08 12:31:17 +020033#include <linux/cpu.h>
Hidetoshi Seto14a02532009-04-30 16:04:51 +090034#include <linux/smp.h>
Ingo Molnare9eee032009-04-08 12:31:17 +020035#include <linux/fs.h>
Andi Kleen9b1beaf2009-05-27 21:56:59 +020036#include <linux/mm.h>
Huang Ying5be9ed22009-07-31 09:41:42 +080037#include <linux/debugfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Ingo Molnare9eee032009-04-08 12:31:17 +020039#include <asm/processor.h>
Andi Kleenccc3c312009-05-27 21:56:54 +020040#include <asm/hw_irq.h>
41#include <asm/apic.h>
Ingo Molnare9eee032009-04-08 12:31:17 +020042#include <asm/idle.h>
Andi Kleenccc3c312009-05-27 21:56:54 +020043#include <asm/ipi.h>
Ingo Molnare9eee032009-04-08 12:31:17 +020044#include <asm/mce.h>
45#include <asm/msr.h>
Ingo Molnare9eee032009-04-08 12:31:17 +020046
Andi Kleenbd19a5e2009-05-27 21:56:55 +020047#include "mce-internal.h"
Ingo Molnar711c2e42009-04-08 12:31:26 +020048
Hidetoshi Seto8968f9d2009-10-13 16:19:41 +090049#define CREATE_TRACE_POINTS
50#include <trace/events/mce.h>
51
Hidetoshi Seto4e5b3e62009-06-15 17:20:20 +090052int mce_disabled __read_mostly;
Andi Kleen04b2b1a2009-04-28 22:50:19 +020053
Ingo Molnare9eee032009-04-08 12:31:17 +020054#define MISC_MCELOG_MINOR 227
Andi Kleen0d7482e32009-02-17 23:07:13 +010055
Andi Kleen3c079792009-05-27 21:56:55 +020056#define SPINUNIT 100 /* 100ns */
57
Andi Kleen553f2652006-04-07 19:49:57 +020058atomic_t mce_entry;
59
Andi Kleen01ca79f2009-05-27 21:56:52 +020060DEFINE_PER_CPU(unsigned, mce_exception_count);
61
Tim Hockinbd784322007-07-21 17:10:37 +020062/*
63 * Tolerant levels:
64 * 0: always panic on uncorrected errors, log corrected errors
65 * 1: panic or SIGBUS on uncorrected errors, log corrected errors
66 * 2: SIGBUS or log uncorrected errors (if possible), log corrected errors
67 * 3: never panic or SIGBUS, log all errors (for testing only)
68 */
Hidetoshi Seto4e5b3e62009-06-15 17:20:20 +090069static int tolerant __read_mostly = 1;
70static int banks __read_mostly;
Hidetoshi Seto4e5b3e62009-06-15 17:20:20 +090071static int rip_msr __read_mostly;
72static int mce_bootlog __read_mostly = -1;
73static int monarch_timeout __read_mostly = -1;
74static int mce_panic_timeout __read_mostly;
75static int mce_dont_log_ce __read_mostly;
76int mce_cmci_disabled __read_mostly;
77int mce_ignore_ce __read_mostly;
78int mce_ser __read_mostly;
Andi Kleena98f0dd2007-02-13 13:26:23 +010079
Andi Kleencebe1822009-07-09 00:31:43 +020080struct mce_bank *mce_banks __read_mostly;
81
Hidetoshi Seto1020bcb2009-06-15 17:20:57 +090082/* User mode helper program triggered by machine check event */
83static unsigned long mce_need_notify;
84static char mce_helper[128];
85static char *mce_helper_argv[2] = { mce_helper, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Tim Hockine02e68d2007-07-21 17:10:36 +020087static DECLARE_WAIT_QUEUE_HEAD(mce_wait);
Andi Kleen3c079792009-05-27 21:56:55 +020088static DEFINE_PER_CPU(struct mce, mces_seen);
89static int cpu_missing;
90
Borislav Petkovfb253192009-10-07 13:20:38 +020091/*
92 * CPU/chipset specific EDAC code can register a notifier call here to print
93 * MCE errors in a human-readable form.
94 */
95ATOMIC_NOTIFIER_HEAD(x86_mce_decoder_chain);
96EXPORT_SYMBOL_GPL(x86_mce_decoder_chain);
97
98static int default_decode_mce(struct notifier_block *nb, unsigned long val,
99 void *data)
Ingo Molnarf436f8b2009-10-01 16:14:32 +0200100{
101 pr_emerg("No human readable MCE decoding support on this CPU type.\n");
102 pr_emerg("Run the message through 'mcelog --ascii' to decode.\n");
Borislav Petkovfb253192009-10-07 13:20:38 +0200103
104 return NOTIFY_STOP;
Ingo Molnarf436f8b2009-10-01 16:14:32 +0200105}
106
Borislav Petkovfb253192009-10-07 13:20:38 +0200107static struct notifier_block mce_dec_nb = {
108 .notifier_call = default_decode_mce,
109 .priority = -1,
110};
Tim Hockine02e68d2007-07-21 17:10:36 +0200111
Andi Kleenee031c32009-02-12 13:49:34 +0100112/* MCA banks polled by the period polling timer for corrected events */
113DEFINE_PER_CPU(mce_banks_t, mce_poll_banks) = {
114 [0 ... BITS_TO_LONGS(MAX_NR_BANKS)-1] = ~0UL
115};
116
Andi Kleen9b1beaf2009-05-27 21:56:59 +0200117static DEFINE_PER_CPU(struct work_struct, mce_work);
118
Andi Kleenb5f2fa42009-02-12 13:43:22 +0100119/* Do initial initialization of a struct mce */
120void mce_setup(struct mce *m)
121{
122 memset(m, 0, sizeof(struct mce));
Andi Kleend620c672009-05-27 21:56:56 +0200123 m->cpu = m->extcpu = smp_processor_id();
Andi Kleenb5f2fa42009-02-12 13:43:22 +0100124 rdtscll(m->tsc);
Andi Kleen8ee08342009-05-27 21:56:56 +0200125 /* We hope get_seconds stays lockless */
126 m->time = get_seconds();
127 m->cpuvendor = boot_cpu_data.x86_vendor;
128 m->cpuid = cpuid_eax(1);
129#ifdef CONFIG_SMP
130 m->socketid = cpu_data(m->extcpu).phys_proc_id;
131#endif
132 m->apicid = cpu_data(m->extcpu).initial_apicid;
133 rdmsrl(MSR_IA32_MCG_CAP, m->mcgcap);
Andi Kleenb5f2fa42009-02-12 13:43:22 +0100134}
135
Andi Kleenea149b32009-04-29 19:31:00 +0200136DEFINE_PER_CPU(struct mce, injectm);
137EXPORT_PER_CPU_SYMBOL_GPL(injectm);
138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139/*
140 * Lockless MCE logging infrastructure.
141 * This avoids deadlocks on printk locks without having to break locks. Also
142 * separate MCEs from kernel messages to avoid bogus bug reports.
143 */
144
Adrian Bunk231fd902008-01-30 13:30:30 +0100145static struct mce_log mcelog = {
Andi Kleenf6fb0ac2009-05-27 21:56:55 +0200146 .signature = MCE_LOG_SIGNATURE,
147 .len = MCE_LOG_LEN,
148 .recordlen = sizeof(struct mce),
Thomas Gleixnerd88203d2007-10-23 22:37:23 +0200149};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
151void mce_log(struct mce *mce)
152{
153 unsigned next, entry;
Ingo Molnare9eee032009-04-08 12:31:17 +0200154
Hidetoshi Seto8968f9d2009-10-13 16:19:41 +0900155 /* Emit the trace record: */
156 trace_mce_record(mce);
157
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 mce->finished = 0;
Mike Waychison76441432005-09-30 00:01:27 +0200159 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 for (;;) {
161 entry = rcu_dereference(mcelog.next);
Andi Kleen673242c2005-09-12 18:49:24 +0200162 for (;;) {
Ingo Molnare9eee032009-04-08 12:31:17 +0200163 /*
164 * When the buffer fills up discard new entries.
165 * Assume that the earlier errors are the more
166 * interesting ones:
167 */
Andi Kleen673242c2005-09-12 18:49:24 +0200168 if (entry >= MCE_LOG_LEN) {
Hidetoshi Seto14a02532009-04-30 16:04:51 +0900169 set_bit(MCE_OVERFLOW,
170 (unsigned long *)&mcelog.flags);
Andi Kleen673242c2005-09-12 18:49:24 +0200171 return;
172 }
Ingo Molnare9eee032009-04-08 12:31:17 +0200173 /* Old left over entry. Skip: */
Andi Kleen673242c2005-09-12 18:49:24 +0200174 if (mcelog.entry[entry].finished) {
175 entry++;
176 continue;
177 }
Mike Waychison76441432005-09-30 00:01:27 +0200178 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 smp_rmb();
181 next = entry + 1;
182 if (cmpxchg(&mcelog.next, entry, next) == entry)
183 break;
184 }
185 memcpy(mcelog.entry + entry, mce, sizeof(struct mce));
Mike Waychison76441432005-09-30 00:01:27 +0200186 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 mcelog.entry[entry].finished = 1;
Mike Waychison76441432005-09-30 00:01:27 +0200188 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
Andi Kleena0189c72009-05-27 21:56:54 +0200190 mce->finished = 1;
Hidetoshi Seto1020bcb2009-06-15 17:20:57 +0900191 set_bit(0, &mce_need_notify);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192}
193
Hidetoshi Seto77e26cc2009-06-11 16:04:35 +0900194static void print_mce(struct mce *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195{
Ingo Molnarf436f8b2009-10-01 16:14:32 +0200196 pr_emerg("CPU %d: Machine Check Exception: %16Lx Bank %d: %016Lx\n",
Andi Kleend620c672009-05-27 21:56:56 +0200197 m->extcpu, m->mcgstatus, m->bank, m->status);
Ingo Molnarf436f8b2009-10-01 16:14:32 +0200198
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100199 if (m->ip) {
Ingo Molnarf436f8b2009-10-01 16:14:32 +0200200 pr_emerg("RIP%s %02x:<%016Lx> ",
201 !(m->mcgstatus & MCG_STATUS_EIPV) ? " !INEXACT!" : "",
202 m->cs, m->ip);
203
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 if (m->cs == __KERNEL_CS)
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100205 print_symbol("{%s}", m->ip);
Ingo Molnarf436f8b2009-10-01 16:14:32 +0200206 pr_cont("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 }
Borislav Petkov549d0422009-07-24 13:51:42 +0200208
Ingo Molnarf436f8b2009-10-01 16:14:32 +0200209 pr_emerg("TSC %llx ", m->tsc);
210 if (m->addr)
211 pr_cont("ADDR %llx ", m->addr);
212 if (m->misc)
213 pr_cont("MISC %llx ", m->misc);
214
215 pr_cont("\n");
216 pr_emerg("PROCESSOR %u:%x TIME %llu SOCKET %u APIC %x\n",
217 m->cpuvendor, m->cpuid, m->time, m->socketid, m->apicid);
218
219 /*
220 * Print out human-readable details about the MCE error,
Borislav Petkovfb253192009-10-07 13:20:38 +0200221 * (if the CPU has an implementation for that)
Ingo Molnarf436f8b2009-10-01 16:14:32 +0200222 */
Borislav Petkovfb253192009-10-07 13:20:38 +0200223 atomic_notifier_call_chain(&x86_mce_decoder_chain, 0, m);
Andi Kleen86503562009-05-27 21:56:58 +0200224}
225
Hidetoshi Seto77e26cc2009-06-11 16:04:35 +0900226static void print_mce_head(void)
227{
Ingo Molnarf436f8b2009-10-01 16:14:32 +0200228 pr_emerg("\nHARDWARE ERROR\n");
Hidetoshi Seto77e26cc2009-06-11 16:04:35 +0900229}
230
Andi Kleen86503562009-05-27 21:56:58 +0200231static void print_mce_tail(void)
232{
Ingo Molnarf436f8b2009-10-01 16:14:32 +0200233 pr_emerg("This is not a software problem!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234}
235
Andi Kleenf94b61c2009-05-27 21:56:55 +0200236#define PANIC_TIMEOUT 5 /* 5 seconds */
237
238static atomic_t mce_paniced;
239
Huang Yingbf783f92009-07-31 09:41:43 +0800240static int fake_panic;
241static atomic_t mce_fake_paniced;
242
Andi Kleenf94b61c2009-05-27 21:56:55 +0200243/* Panic in progress. Enable interrupts and wait for final IPI */
244static void wait_for_panic(void)
245{
246 long timeout = PANIC_TIMEOUT*USEC_PER_SEC;
Ingo Molnarf436f8b2009-10-01 16:14:32 +0200247
Andi Kleenf94b61c2009-05-27 21:56:55 +0200248 preempt_disable();
249 local_irq_enable();
250 while (timeout-- > 0)
251 udelay(1);
Andi Kleen29b0f592009-05-27 21:56:56 +0200252 if (panic_timeout == 0)
253 panic_timeout = mce_panic_timeout;
Andi Kleenf94b61c2009-05-27 21:56:55 +0200254 panic("Panicing machine check CPU died");
255}
256
Andi Kleenbd19a5e2009-05-27 21:56:55 +0200257static void mce_panic(char *msg, struct mce *final, char *exp)
Thomas Gleixnerd88203d2007-10-23 22:37:23 +0200258{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 int i;
Tim Hockine02e68d2007-07-21 17:10:36 +0200260
Huang Yingbf783f92009-07-31 09:41:43 +0800261 if (!fake_panic) {
262 /*
263 * Make sure only one CPU runs in machine check panic
264 */
265 if (atomic_inc_return(&mce_paniced) > 1)
266 wait_for_panic();
267 barrier();
Andi Kleenf94b61c2009-05-27 21:56:55 +0200268
Huang Yingbf783f92009-07-31 09:41:43 +0800269 bust_spinlocks(1);
270 console_verbose();
271 } else {
272 /* Don't log too much for fake panic */
273 if (atomic_inc_return(&mce_fake_paniced) > 1)
274 return;
275 }
Hidetoshi Seto77e26cc2009-06-11 16:04:35 +0900276 print_mce_head();
Andi Kleena0189c72009-05-27 21:56:54 +0200277 /* First print corrected ones that are still unlogged */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 for (i = 0; i < MCE_LOG_LEN; i++) {
Andi Kleena0189c72009-05-27 21:56:54 +0200279 struct mce *m = &mcelog.entry[i];
Hidetoshi Seto77e26cc2009-06-11 16:04:35 +0900280 if (!(m->status & MCI_STATUS_VAL))
281 continue;
282 if (!(m->status & MCI_STATUS_UC))
283 print_mce(m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 }
Andi Kleena0189c72009-05-27 21:56:54 +0200285 /* 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))
289 continue;
Hidetoshi Seto77e26cc2009-06-11 16:04:35 +0900290 if (!(m->status & MCI_STATUS_UC))
291 continue;
Andi Kleena0189c72009-05-27 21:56:54 +0200292 if (!final || memcmp(m, final, sizeof(struct mce)))
Hidetoshi Seto77e26cc2009-06-11 16:04:35 +0900293 print_mce(m);
Andi Kleena0189c72009-05-27 21:56:54 +0200294 }
295 if (final)
Hidetoshi Seto77e26cc2009-06-11 16:04:35 +0900296 print_mce(final);
Andi Kleen3c079792009-05-27 21:56:55 +0200297 if (cpu_missing)
298 printk(KERN_EMERG "Some CPUs didn't answer in synchronization\n");
Andi Kleen86503562009-05-27 21:56:58 +0200299 print_mce_tail();
Andi Kleenbd19a5e2009-05-27 21:56:55 +0200300 if (exp)
301 printk(KERN_EMERG "Machine check: %s\n", exp);
Huang Yingbf783f92009-07-31 09:41:43 +0800302 if (!fake_panic) {
303 if (panic_timeout == 0)
304 panic_timeout = mce_panic_timeout;
305 panic(msg);
306 } else
307 printk(KERN_EMERG "Fake kernel panic: %s\n", msg);
Thomas Gleixnerd88203d2007-10-23 22:37:23 +0200308}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
Andi Kleenea149b32009-04-29 19:31:00 +0200310/* Support code for software error injection */
311
312static int msr_to_offset(u32 msr)
313{
314 unsigned bank = __get_cpu_var(injectm.bank);
Ingo Molnarf436f8b2009-10-01 16:14:32 +0200315
Andi Kleenea149b32009-04-29 19:31:00 +0200316 if (msr == rip_msr)
317 return offsetof(struct mce, ip);
Andi Kleena2d32bc2009-07-09 00:31:44 +0200318 if (msr == MSR_IA32_MCx_STATUS(bank))
Andi Kleenea149b32009-04-29 19:31:00 +0200319 return offsetof(struct mce, status);
Andi Kleena2d32bc2009-07-09 00:31:44 +0200320 if (msr == MSR_IA32_MCx_ADDR(bank))
Andi Kleenea149b32009-04-29 19:31:00 +0200321 return offsetof(struct mce, addr);
Andi Kleena2d32bc2009-07-09 00:31:44 +0200322 if (msr == MSR_IA32_MCx_MISC(bank))
Andi Kleenea149b32009-04-29 19:31:00 +0200323 return offsetof(struct mce, misc);
324 if (msr == MSR_IA32_MCG_STATUS)
325 return offsetof(struct mce, mcgstatus);
326 return -1;
327}
328
Andi Kleen5f8c1a52009-04-29 19:29:12 +0200329/* MSR access wrappers used for error injection */
330static u64 mce_rdmsrl(u32 msr)
331{
332 u64 v;
Ingo Molnar11868a22009-09-23 17:49:55 +0200333
Andi Kleenea149b32009-04-29 19:31:00 +0200334 if (__get_cpu_var(injectm).finished) {
335 int offset = msr_to_offset(msr);
Ingo Molnar11868a22009-09-23 17:49:55 +0200336
Andi Kleenea149b32009-04-29 19:31:00 +0200337 if (offset < 0)
338 return 0;
339 return *(u64 *)((char *)&__get_cpu_var(injectm) + offset);
340 }
Ingo Molnar11868a22009-09-23 17:49:55 +0200341
342 if (rdmsrl_safe(msr, &v)) {
343 WARN_ONCE(1, "mce: Unable to read msr %d!\n", msr);
344 /*
345 * Return zero in case the access faulted. This should
346 * not happen normally but can happen if the CPU does
347 * something weird, or if the code is buggy.
348 */
349 v = 0;
350 }
351
Andi Kleen5f8c1a52009-04-29 19:29:12 +0200352 return v;
353}
354
355static void mce_wrmsrl(u32 msr, u64 v)
356{
Andi Kleenea149b32009-04-29 19:31:00 +0200357 if (__get_cpu_var(injectm).finished) {
358 int offset = msr_to_offset(msr);
Ingo Molnar11868a22009-09-23 17:49:55 +0200359
Andi Kleenea149b32009-04-29 19:31:00 +0200360 if (offset >= 0)
361 *(u64 *)((char *)&__get_cpu_var(injectm) + offset) = v;
362 return;
363 }
Andi Kleen5f8c1a52009-04-29 19:29:12 +0200364 wrmsrl(msr, v);
365}
366
Andi Kleen9b1beaf2009-05-27 21:56:59 +0200367/*
368 * Simple lockless ring to communicate PFNs from the exception handler with the
369 * process context work function. This is vastly simplified because there's
370 * only a single reader and a single writer.
371 */
372#define MCE_RING_SIZE 16 /* we use one entry less */
373
374struct mce_ring {
375 unsigned short start;
376 unsigned short end;
377 unsigned long ring[MCE_RING_SIZE];
378};
379static DEFINE_PER_CPU(struct mce_ring, mce_ring);
380
381/* Runs with CPU affinity in workqueue */
382static int mce_ring_empty(void)
383{
384 struct mce_ring *r = &__get_cpu_var(mce_ring);
385
386 return r->start == r->end;
387}
388
389static int mce_ring_get(unsigned long *pfn)
390{
391 struct mce_ring *r;
392 int ret = 0;
393
394 *pfn = 0;
395 get_cpu();
396 r = &__get_cpu_var(mce_ring);
397 if (r->start == r->end)
398 goto out;
399 *pfn = r->ring[r->start];
400 r->start = (r->start + 1) % MCE_RING_SIZE;
401 ret = 1;
402out:
403 put_cpu();
404 return ret;
405}
406
407/* Always runs in MCE context with preempt off */
408static int mce_ring_add(unsigned long pfn)
409{
410 struct mce_ring *r = &__get_cpu_var(mce_ring);
411 unsigned next;
412
413 next = (r->end + 1) % MCE_RING_SIZE;
414 if (next == r->start)
415 return -1;
416 r->ring[r->end] = pfn;
417 wmb();
418 r->end = next;
419 return 0;
420}
421
Andi Kleen88ccbed2009-02-12 13:49:36 +0100422int mce_available(struct cpuinfo_x86 *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423{
Andi Kleen04b2b1a2009-04-28 22:50:19 +0200424 if (mce_disabled)
Andi Kleen5b4408f2009-02-12 13:39:30 +0100425 return 0;
Akinobu Mita3d1712c2006-03-24 03:15:11 -0800426 return cpu_has(c, X86_FEATURE_MCE) && cpu_has(c, X86_FEATURE_MCA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427}
428
Andi Kleen9b1beaf2009-05-27 21:56:59 +0200429static void mce_schedule_work(void)
430{
431 if (!mce_ring_empty()) {
432 struct work_struct *work = &__get_cpu_var(mce_work);
433 if (!work_pending(work))
434 schedule_work(work);
435 }
436}
437
Huang Ying1b2797d2009-05-27 21:56:51 +0200438/*
439 * Get the address of the instruction at the time of the machine check
440 * error.
441 */
Andi Kleen94ad8472005-04-16 15:25:09 -0700442static inline void mce_get_rip(struct mce *m, struct pt_regs *regs)
443{
Huang Ying1b2797d2009-05-27 21:56:51 +0200444
445 if (regs && (m->mcgstatus & (MCG_STATUS_RIPV|MCG_STATUS_EIPV))) {
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100446 m->ip = regs->ip;
Andi Kleen94ad8472005-04-16 15:25:09 -0700447 m->cs = regs->cs;
448 } else {
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100449 m->ip = 0;
Andi Kleen94ad8472005-04-16 15:25:09 -0700450 m->cs = 0;
451 }
Huang Ying1b2797d2009-05-27 21:56:51 +0200452 if (rip_msr)
Andi Kleen5f8c1a52009-04-29 19:29:12 +0200453 m->ip = mce_rdmsrl(rip_msr);
Andi Kleen94ad8472005-04-16 15:25:09 -0700454}
455
Ingo Molnar11868a22009-09-23 17:49:55 +0200456#ifdef CONFIG_X86_LOCAL_APIC
Andi Kleenccc3c312009-05-27 21:56:54 +0200457/*
458 * Called after interrupts have been reenabled again
459 * when a MCE happened during an interrupts off region
460 * in the kernel.
461 */
462asmlinkage void smp_mce_self_interrupt(struct pt_regs *regs)
463{
464 ack_APIC_irq();
465 exit_idle();
466 irq_enter();
Andi Kleen9ff36ee2009-05-27 21:56:58 +0200467 mce_notify_irq();
Andi Kleen9b1beaf2009-05-27 21:56:59 +0200468 mce_schedule_work();
Andi Kleenccc3c312009-05-27 21:56:54 +0200469 irq_exit();
470}
471#endif
472
473static void mce_report_event(struct pt_regs *regs)
474{
475 if (regs->flags & (X86_VM_MASK|X86_EFLAGS_IF)) {
Andi Kleen9ff36ee2009-05-27 21:56:58 +0200476 mce_notify_irq();
Andi Kleen9b1beaf2009-05-27 21:56:59 +0200477 /*
478 * Triggering the work queue here is just an insurance
479 * policy in case the syscall exit notify handler
480 * doesn't run soon enough or ends up running on the
481 * wrong CPU (can happen when audit sleeps)
482 */
483 mce_schedule_work();
Andi Kleenccc3c312009-05-27 21:56:54 +0200484 return;
485 }
486
487#ifdef CONFIG_X86_LOCAL_APIC
488 /*
489 * Without APIC do not notify. The event will be picked
490 * up eventually.
491 */
492 if (!cpu_has_apic)
493 return;
494
495 /*
496 * When interrupts are disabled we cannot use
497 * kernel services safely. Trigger an self interrupt
498 * through the APIC to instead do the notification
499 * after interrupts are reenabled again.
500 */
501 apic->send_IPI_self(MCE_SELF_VECTOR);
502
503 /*
504 * Wait for idle afterwards again so that we don't leave the
505 * APIC in a non idle state because the normal APIC writes
506 * cannot exclude us.
507 */
508 apic_wait_icr_idle();
509#endif
510}
511
Andi Kleenca84f692009-05-27 21:56:57 +0200512DEFINE_PER_CPU(unsigned, mce_poll_count);
513
Thomas Gleixnerd88203d2007-10-23 22:37:23 +0200514/*
Andi Kleenb79109c2009-02-12 13:43:23 +0100515 * Poll for corrected events or events that happened before reset.
516 * Those are just logged through /dev/mcelog.
517 *
518 * This is executed in standard interrupt context.
Andi Kleened7290d2009-05-27 21:56:57 +0200519 *
520 * Note: spec recommends to panic for fatal unsignalled
521 * errors here. However this would be quite problematic --
522 * we would need to reimplement the Monarch handling and
523 * it would mess up the exclusion between exception handler
524 * and poll hander -- * so we skip this for now.
525 * These cases should not happen anyways, or only when the CPU
526 * is already totally * confused. In this case it's likely it will
527 * not fully execute the machine check handler either.
Andi Kleenb79109c2009-02-12 13:43:23 +0100528 */
Andi Kleenee031c32009-02-12 13:49:34 +0100529void machine_check_poll(enum mcp_flags flags, mce_banks_t *b)
Andi Kleenb79109c2009-02-12 13:43:23 +0100530{
531 struct mce m;
532 int i;
533
Andi Kleenca84f692009-05-27 21:56:57 +0200534 __get_cpu_var(mce_poll_count)++;
535
Andi Kleenb79109c2009-02-12 13:43:23 +0100536 mce_setup(&m);
537
Andi Kleen5f8c1a52009-04-29 19:29:12 +0200538 m.mcgstatus = mce_rdmsrl(MSR_IA32_MCG_STATUS);
Andi Kleenb79109c2009-02-12 13:43:23 +0100539 for (i = 0; i < banks; i++) {
Andi Kleencebe1822009-07-09 00:31:43 +0200540 if (!mce_banks[i].ctl || !test_bit(i, *b))
Andi Kleenb79109c2009-02-12 13:43:23 +0100541 continue;
542
543 m.misc = 0;
544 m.addr = 0;
545 m.bank = i;
546 m.tsc = 0;
547
548 barrier();
Andi Kleena2d32bc2009-07-09 00:31:44 +0200549 m.status = mce_rdmsrl(MSR_IA32_MCx_STATUS(i));
Andi Kleenb79109c2009-02-12 13:43:23 +0100550 if (!(m.status & MCI_STATUS_VAL))
551 continue;
552
553 /*
Andi Kleened7290d2009-05-27 21:56:57 +0200554 * Uncorrected or signalled events are handled by the exception
555 * handler when it is enabled, so don't process those here.
Andi Kleenb79109c2009-02-12 13:43:23 +0100556 *
557 * TBD do the same check for MCI_STATUS_EN here?
558 */
Andi Kleened7290d2009-05-27 21:56:57 +0200559 if (!(flags & MCP_UC) &&
560 (m.status & (mce_ser ? MCI_STATUS_S : MCI_STATUS_UC)))
Andi Kleenb79109c2009-02-12 13:43:23 +0100561 continue;
562
563 if (m.status & MCI_STATUS_MISCV)
Andi Kleena2d32bc2009-07-09 00:31:44 +0200564 m.misc = mce_rdmsrl(MSR_IA32_MCx_MISC(i));
Andi Kleenb79109c2009-02-12 13:43:23 +0100565 if (m.status & MCI_STATUS_ADDRV)
Andi Kleena2d32bc2009-07-09 00:31:44 +0200566 m.addr = mce_rdmsrl(MSR_IA32_MCx_ADDR(i));
Andi Kleenb79109c2009-02-12 13:43:23 +0100567
568 if (!(flags & MCP_TIMESTAMP))
569 m.tsc = 0;
570 /*
571 * Don't get the IP here because it's unlikely to
572 * have anything to do with the actual error location.
573 */
Hidetoshi Seto62fdac52009-06-11 16:06:07 +0900574 if (!(flags & MCP_DONTLOG) && !mce_dont_log_ce) {
Andi Kleen5679af42009-04-07 17:06:55 +0200575 mce_log(&m);
576 add_taint(TAINT_MACHINE_CHECK);
577 }
Andi Kleenb79109c2009-02-12 13:43:23 +0100578
579 /*
580 * Clear state for this bank.
581 */
Andi Kleena2d32bc2009-07-09 00:31:44 +0200582 mce_wrmsrl(MSR_IA32_MCx_STATUS(i), 0);
Andi Kleenb79109c2009-02-12 13:43:23 +0100583 }
584
585 /*
586 * Don't clear MCG_STATUS here because it's only defined for
587 * exceptions.
588 */
Andi Kleen88921be2009-05-27 21:56:51 +0200589
590 sync_core();
Andi Kleenb79109c2009-02-12 13:43:23 +0100591}
Andi Kleenea149b32009-04-29 19:31:00 +0200592EXPORT_SYMBOL_GPL(machine_check_poll);
Andi Kleenb79109c2009-02-12 13:43:23 +0100593
594/*
Andi Kleenbd19a5e2009-05-27 21:56:55 +0200595 * Do a quick check if any of the events requires a panic.
596 * This decides if we keep the events around or clear them.
597 */
598static int mce_no_way_out(struct mce *m, char **msg)
599{
600 int i;
601
602 for (i = 0; i < banks; i++) {
Andi Kleena2d32bc2009-07-09 00:31:44 +0200603 m->status = mce_rdmsrl(MSR_IA32_MCx_STATUS(i));
Andi Kleenbd19a5e2009-05-27 21:56:55 +0200604 if (mce_severity(m, tolerant, msg) >= MCE_PANIC_SEVERITY)
605 return 1;
606 }
607 return 0;
608}
609
610/*
Andi Kleen3c079792009-05-27 21:56:55 +0200611 * Variable to establish order between CPUs while scanning.
612 * Each CPU spins initially until executing is equal its number.
613 */
614static atomic_t mce_executing;
615
616/*
617 * Defines order of CPUs on entry. First CPU becomes Monarch.
618 */
619static atomic_t mce_callin;
620
621/*
622 * Check if a timeout waiting for other CPUs happened.
623 */
624static int mce_timed_out(u64 *t)
625{
626 /*
627 * The others already did panic for some reason.
628 * Bail out like in a timeout.
629 * rmb() to tell the compiler that system_state
630 * might have been modified by someone else.
631 */
632 rmb();
633 if (atomic_read(&mce_paniced))
634 wait_for_panic();
635 if (!monarch_timeout)
636 goto out;
637 if ((s64)*t < SPINUNIT) {
638 /* CHECKME: Make panic default for 1 too? */
639 if (tolerant < 1)
640 mce_panic("Timeout synchronizing machine check over CPUs",
641 NULL, NULL);
642 cpu_missing = 1;
643 return 1;
644 }
645 *t -= SPINUNIT;
646out:
647 touch_nmi_watchdog();
648 return 0;
649}
650
651/*
652 * The Monarch's reign. The Monarch is the CPU who entered
653 * the machine check handler first. It waits for the others to
654 * raise the exception too and then grades them. When any
655 * error is fatal panic. Only then let the others continue.
656 *
657 * The other CPUs entering the MCE handler will be controlled by the
658 * Monarch. They are called Subjects.
659 *
660 * This way we prevent any potential data corruption in a unrecoverable case
661 * and also makes sure always all CPU's errors are examined.
662 *
Hidetoshi Seto680b6cf2009-08-26 16:20:36 +0900663 * Also this detects the case of a machine check event coming from outer
Andi Kleen3c079792009-05-27 21:56:55 +0200664 * space (not detected by any CPUs) In this case some external agent wants
665 * us to shut down, so panic too.
666 *
667 * The other CPUs might still decide to panic if the handler happens
668 * in a unrecoverable place, but in this case the system is in a semi-stable
669 * state and won't corrupt anything by itself. It's ok to let the others
670 * continue for a bit first.
671 *
672 * All the spin loops have timeouts; when a timeout happens a CPU
673 * typically elects itself to be Monarch.
674 */
675static void mce_reign(void)
676{
677 int cpu;
678 struct mce *m = NULL;
679 int global_worst = 0;
680 char *msg = NULL;
681 char *nmsg = NULL;
682
683 /*
684 * This CPU is the Monarch and the other CPUs have run
685 * through their handlers.
686 * Grade the severity of the errors of all the CPUs.
687 */
688 for_each_possible_cpu(cpu) {
689 int severity = mce_severity(&per_cpu(mces_seen, cpu), tolerant,
690 &nmsg);
691 if (severity > global_worst) {
692 msg = nmsg;
693 global_worst = severity;
694 m = &per_cpu(mces_seen, cpu);
695 }
696 }
697
698 /*
699 * Cannot recover? Panic here then.
700 * This dumps all the mces in the log buffer and stops the
701 * other CPUs.
702 */
703 if (m && global_worst >= MCE_PANIC_SEVERITY && tolerant < 3)
Andi Kleenac960372009-05-27 21:56:58 +0200704 mce_panic("Fatal Machine check", m, msg);
Andi Kleen3c079792009-05-27 21:56:55 +0200705
706 /*
707 * For UC somewhere we let the CPU who detects it handle it.
708 * Also must let continue the others, otherwise the handling
709 * CPU could deadlock on a lock.
710 */
711
712 /*
713 * No machine check event found. Must be some external
714 * source or one CPU is hung. Panic.
715 */
Hidetoshi Seto680b6cf2009-08-26 16:20:36 +0900716 if (global_worst <= MCE_KEEP_SEVERITY && tolerant < 3)
Andi Kleen3c079792009-05-27 21:56:55 +0200717 mce_panic("Machine check from unknown source", NULL, NULL);
718
719 /*
720 * Now clear all the mces_seen so that they don't reappear on
721 * the next mce.
722 */
723 for_each_possible_cpu(cpu)
724 memset(&per_cpu(mces_seen, cpu), 0, sizeof(struct mce));
725}
726
727static atomic_t global_nwo;
728
729/*
730 * Start of Monarch synchronization. This waits until all CPUs have
731 * entered the exception handler and then determines if any of them
732 * saw a fatal event that requires panic. Then it executes them
733 * in the entry order.
734 * TBD double check parallel CPU hotunplug
735 */
Hidetoshi Seto7fb06fc2009-06-15 18:18:43 +0900736static int mce_start(int *no_way_out)
Andi Kleen3c079792009-05-27 21:56:55 +0200737{
Hidetoshi Seto7fb06fc2009-06-15 18:18:43 +0900738 int order;
Andi Kleen3c079792009-05-27 21:56:55 +0200739 int cpus = num_online_cpus();
740 u64 timeout = (u64)monarch_timeout * NSEC_PER_USEC;
741
Hidetoshi Seto7fb06fc2009-06-15 18:18:43 +0900742 if (!timeout)
743 return -1;
Andi Kleen3c079792009-05-27 21:56:55 +0200744
Hidetoshi Seto7fb06fc2009-06-15 18:18:43 +0900745 atomic_add(*no_way_out, &global_nwo);
Huang Ying184e1fd2009-06-15 15:37:07 +0800746 /*
747 * global_nwo should be updated before mce_callin
748 */
749 smp_wmb();
Borislav Petkova95436e2009-06-20 23:28:22 -0700750 order = atomic_inc_return(&mce_callin);
Andi Kleen3c079792009-05-27 21:56:55 +0200751
752 /*
753 * Wait for everyone.
754 */
755 while (atomic_read(&mce_callin) != cpus) {
756 if (mce_timed_out(&timeout)) {
757 atomic_set(&global_nwo, 0);
Hidetoshi Seto7fb06fc2009-06-15 18:18:43 +0900758 return -1;
Andi Kleen3c079792009-05-27 21:56:55 +0200759 }
760 ndelay(SPINUNIT);
761 }
762
763 /*
Huang Ying184e1fd2009-06-15 15:37:07 +0800764 * mce_callin should be read before global_nwo
765 */
766 smp_rmb();
Hidetoshi Seto7fb06fc2009-06-15 18:18:43 +0900767
768 if (order == 1) {
769 /*
770 * Monarch: Starts executing now, the others wait.
771 */
772 atomic_set(&mce_executing, 1);
773 } else {
774 /*
775 * Subject: Now start the scanning loop one by one in
776 * the original callin order.
777 * This way when there are any shared banks it will be
778 * only seen by one CPU before cleared, avoiding duplicates.
779 */
780 while (atomic_read(&mce_executing) < order) {
781 if (mce_timed_out(&timeout)) {
782 atomic_set(&global_nwo, 0);
783 return -1;
784 }
785 ndelay(SPINUNIT);
786 }
787 }
788
Huang Ying184e1fd2009-06-15 15:37:07 +0800789 /*
Andi Kleen3c079792009-05-27 21:56:55 +0200790 * Cache the global no_way_out state.
791 */
Hidetoshi Seto7fb06fc2009-06-15 18:18:43 +0900792 *no_way_out = atomic_read(&global_nwo);
Andi Kleen3c079792009-05-27 21:56:55 +0200793
Hidetoshi Seto7fb06fc2009-06-15 18:18:43 +0900794 return order;
Andi Kleen3c079792009-05-27 21:56:55 +0200795}
796
797/*
798 * Synchronize between CPUs after main scanning loop.
799 * This invokes the bulk of the Monarch processing.
800 */
801static int mce_end(int order)
802{
803 int ret = -1;
804 u64 timeout = (u64)monarch_timeout * NSEC_PER_USEC;
805
806 if (!timeout)
807 goto reset;
808 if (order < 0)
809 goto reset;
810
811 /*
812 * Allow others to run.
813 */
814 atomic_inc(&mce_executing);
815
816 if (order == 1) {
817 /* CHECKME: Can this race with a parallel hotplug? */
818 int cpus = num_online_cpus();
819
820 /*
821 * Monarch: Wait for everyone to go through their scanning
822 * loops.
823 */
824 while (atomic_read(&mce_executing) <= cpus) {
825 if (mce_timed_out(&timeout))
826 goto reset;
827 ndelay(SPINUNIT);
828 }
829
830 mce_reign();
831 barrier();
832 ret = 0;
833 } else {
834 /*
835 * Subject: Wait for Monarch to finish.
836 */
837 while (atomic_read(&mce_executing) != 0) {
838 if (mce_timed_out(&timeout))
839 goto reset;
840 ndelay(SPINUNIT);
841 }
842
843 /*
844 * Don't reset anything. That's done by the Monarch.
845 */
846 return 0;
847 }
848
849 /*
850 * Reset all global state.
851 */
852reset:
853 atomic_set(&global_nwo, 0);
854 atomic_set(&mce_callin, 0);
855 barrier();
856
857 /*
858 * Let others run again.
859 */
860 atomic_set(&mce_executing, 0);
861 return ret;
862}
863
Andi Kleen9b1beaf2009-05-27 21:56:59 +0200864/*
865 * Check if the address reported by the CPU is in a format we can parse.
866 * It would be possible to add code for most other cases, but all would
867 * be somewhat complicated (e.g. segment offset would require an instruction
868 * parser). So only support physical addresses upto page granuality for now.
869 */
870static int mce_usable_address(struct mce *m)
871{
872 if (!(m->status & MCI_STATUS_MISCV) || !(m->status & MCI_STATUS_ADDRV))
873 return 0;
874 if ((m->misc & 0x3f) > PAGE_SHIFT)
875 return 0;
876 if (((m->misc >> 6) & 7) != MCM_ADDR_PHYS)
877 return 0;
878 return 1;
879}
880
Andi Kleen3c079792009-05-27 21:56:55 +0200881static void mce_clear_state(unsigned long *toclear)
882{
883 int i;
884
885 for (i = 0; i < banks; i++) {
886 if (test_bit(i, toclear))
Andi Kleena2d32bc2009-07-09 00:31:44 +0200887 mce_wrmsrl(MSR_IA32_MCx_STATUS(i), 0);
Andi Kleen3c079792009-05-27 21:56:55 +0200888 }
889}
890
891/*
Andi Kleenb79109c2009-02-12 13:43:23 +0100892 * The actual machine check handler. This only handles real
893 * exceptions when something got corrupted coming in through int 18.
894 *
895 * This is executed in NMI context not subject to normal locking rules. This
896 * implies that most kernel services cannot be safely used. Don't even
897 * think about putting a printk in there!
Andi Kleen3c079792009-05-27 21:56:55 +0200898 *
899 * On Intel systems this is entered on all CPUs in parallel through
900 * MCE broadcast. However some CPUs might be broken beyond repair,
901 * so be always careful when synchronizing with others.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 */
Ingo Molnare9eee032009-04-08 12:31:17 +0200903void do_machine_check(struct pt_regs *regs, long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904{
Andi Kleen3c079792009-05-27 21:56:55 +0200905 struct mce m, *final;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 int i;
Andi Kleen3c079792009-05-27 21:56:55 +0200907 int worst = 0;
908 int severity;
909 /*
910 * Establish sequential order between the CPUs entering the machine
911 * check handler.
912 */
Hidetoshi Seto7fb06fc2009-06-15 18:18:43 +0900913 int order;
Tim Hockinbd784322007-07-21 17:10:37 +0200914 /*
915 * If no_way_out gets set, there is no safe way to recover from this
916 * MCE. If tolerant is cranked up, we'll try anyway.
917 */
918 int no_way_out = 0;
919 /*
920 * If kill_it gets set, there might be a way to recover from this
921 * error.
922 */
923 int kill_it = 0;
Andi Kleenb79109c2009-02-12 13:43:23 +0100924 DECLARE_BITMAP(toclear, MAX_NR_BANKS);
Andi Kleenbd19a5e2009-05-27 21:56:55 +0200925 char *msg = "Unknown";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
Andi Kleen553f2652006-04-07 19:49:57 +0200927 atomic_inc(&mce_entry);
928
Andi Kleen01ca79f2009-05-27 21:56:52 +0200929 __get_cpu_var(mce_exception_count)++;
930
Andi Kleenb79109c2009-02-12 13:43:23 +0100931 if (notify_die(DIE_NMI, "machine check", regs, error_code,
Jan Beulich22f59912008-01-30 13:31:23 +0100932 18, SIGKILL) == NOTIFY_STOP)
Andi Kleen32561692009-05-27 21:56:53 +0200933 goto out;
Andi Kleenb79109c2009-02-12 13:43:23 +0100934 if (!banks)
Andi Kleen32561692009-05-27 21:56:53 +0200935 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
Andi Kleenb5f2fa42009-02-12 13:43:22 +0100937 mce_setup(&m);
938
Andi Kleen5f8c1a52009-04-29 19:29:12 +0200939 m.mcgstatus = mce_rdmsrl(MSR_IA32_MCG_STATUS);
Andi Kleen3c079792009-05-27 21:56:55 +0200940 final = &__get_cpu_var(mces_seen);
941 *final = m;
942
Hidetoshi Seto680b6cf2009-08-26 16:20:36 +0900943 no_way_out = mce_no_way_out(&m, &msg);
944
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 barrier();
946
Andi Kleen3c079792009-05-27 21:56:55 +0200947 /*
Andi Kleened7290d2009-05-27 21:56:57 +0200948 * When no restart IP must always kill or panic.
949 */
950 if (!(m.mcgstatus & MCG_STATUS_RIPV))
951 kill_it = 1;
952
953 /*
Andi Kleen3c079792009-05-27 21:56:55 +0200954 * Go through all the banks in exclusion of the other CPUs.
955 * This way we don't report duplicated events on shared banks
956 * because the first one to see it will clear it.
957 */
Hidetoshi Seto7fb06fc2009-06-15 18:18:43 +0900958 order = mce_start(&no_way_out);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 for (i = 0; i < banks; i++) {
Andi Kleenb79109c2009-02-12 13:43:23 +0100960 __clear_bit(i, toclear);
Andi Kleencebe1822009-07-09 00:31:43 +0200961 if (!mce_banks[i].ctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 continue;
Thomas Gleixnerd88203d2007-10-23 22:37:23 +0200963
964 m.misc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 m.addr = 0;
966 m.bank = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967
Andi Kleena2d32bc2009-07-09 00:31:44 +0200968 m.status = mce_rdmsrl(MSR_IA32_MCx_STATUS(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 if ((m.status & MCI_STATUS_VAL) == 0)
970 continue;
971
Andi Kleenb79109c2009-02-12 13:43:23 +0100972 /*
Andi Kleened7290d2009-05-27 21:56:57 +0200973 * Non uncorrected or non signaled errors are handled by
974 * machine_check_poll. Leave them alone, unless this panics.
Andi Kleenb79109c2009-02-12 13:43:23 +0100975 */
Andi Kleened7290d2009-05-27 21:56:57 +0200976 if (!(m.status & (mce_ser ? MCI_STATUS_S : MCI_STATUS_UC)) &&
977 !no_way_out)
Andi Kleenb79109c2009-02-12 13:43:23 +0100978 continue;
979
980 /*
981 * Set taint even when machine check was not enabled.
982 */
983 add_taint(TAINT_MACHINE_CHECK);
984
Andi Kleened7290d2009-05-27 21:56:57 +0200985 severity = mce_severity(&m, tolerant, NULL);
Andi Kleenb79109c2009-02-12 13:43:23 +0100986
Andi Kleened7290d2009-05-27 21:56:57 +0200987 /*
988 * When machine check was for corrected handler don't touch,
989 * unless we're panicing.
990 */
991 if (severity == MCE_KEEP_SEVERITY && !no_way_out)
992 continue;
993 __set_bit(i, toclear);
994 if (severity == MCE_NO_SEVERITY) {
Andi Kleenb79109c2009-02-12 13:43:23 +0100995 /*
996 * Machine check event was not enabled. Clear, but
997 * ignore.
998 */
999 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 }
1001
Andi Kleened7290d2009-05-27 21:56:57 +02001002 /*
1003 * Kill on action required.
1004 */
1005 if (severity == MCE_AR_SEVERITY)
1006 kill_it = 1;
1007
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 if (m.status & MCI_STATUS_MISCV)
Andi Kleena2d32bc2009-07-09 00:31:44 +02001009 m.misc = mce_rdmsrl(MSR_IA32_MCx_MISC(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 if (m.status & MCI_STATUS_ADDRV)
Andi Kleena2d32bc2009-07-09 00:31:44 +02001011 m.addr = mce_rdmsrl(MSR_IA32_MCx_ADDR(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
Andi Kleen9b1beaf2009-05-27 21:56:59 +02001013 /*
1014 * Action optional error. Queue address for later processing.
1015 * When the ring overflows we just ignore the AO error.
1016 * RED-PEN add some logging mechanism when
1017 * usable_address or mce_add_ring fails.
1018 * RED-PEN don't ignore overflow for tolerant == 0
1019 */
1020 if (severity == MCE_AO_SEVERITY && mce_usable_address(&m))
1021 mce_ring_add(m.addr >> PAGE_SHIFT);
1022
Andi Kleen94ad8472005-04-16 15:25:09 -07001023 mce_get_rip(&m, regs);
Andi Kleenb79109c2009-02-12 13:43:23 +01001024 mce_log(&m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025
Andi Kleen3c079792009-05-27 21:56:55 +02001026 if (severity > worst) {
1027 *final = m;
1028 worst = severity;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 }
1031
Andi Kleen3c079792009-05-27 21:56:55 +02001032 if (!no_way_out)
1033 mce_clear_state(toclear);
1034
Ingo Molnare9eee032009-04-08 12:31:17 +02001035 /*
Andi Kleen3c079792009-05-27 21:56:55 +02001036 * Do most of the synchronization with other CPUs.
1037 * When there's any problem use only local no_way_out state.
Ingo Molnare9eee032009-04-08 12:31:17 +02001038 */
Andi Kleen3c079792009-05-27 21:56:55 +02001039 if (mce_end(order) < 0)
1040 no_way_out = worst >= MCE_PANIC_SEVERITY;
Tim Hockinbd784322007-07-21 17:10:37 +02001041
1042 /*
1043 * If we have decided that we just CAN'T continue, and the user
Ingo Molnare9eee032009-04-08 12:31:17 +02001044 * has not set tolerant to an insane level, give up and die.
Andi Kleen3c079792009-05-27 21:56:55 +02001045 *
1046 * This is mainly used in the case when the system doesn't
1047 * support MCE broadcasting or it has been disabled.
Tim Hockinbd784322007-07-21 17:10:37 +02001048 */
1049 if (no_way_out && tolerant < 3)
Andi Kleenac960372009-05-27 21:56:58 +02001050 mce_panic("Fatal machine check on current CPU", final, msg);
Tim Hockinbd784322007-07-21 17:10:37 +02001051
1052 /*
1053 * If the error seems to be unrecoverable, something should be
1054 * done. Try to kill as little as possible. If we can kill just
1055 * one task, do that. If the user has set the tolerance very
1056 * high, don't try to do anything at all.
1057 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058
Andi Kleened7290d2009-05-27 21:56:57 +02001059 if (kill_it && tolerant < 3)
1060 force_sig(SIGBUS, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061
Tim Hockine02e68d2007-07-21 17:10:36 +02001062 /* notify userspace ASAP */
1063 set_thread_flag(TIF_MCE_NOTIFY);
1064
Andi Kleen3c079792009-05-27 21:56:55 +02001065 if (worst > 0)
1066 mce_report_event(regs);
Andi Kleen5f8c1a52009-04-29 19:29:12 +02001067 mce_wrmsrl(MSR_IA32_MCG_STATUS, 0);
Andi Kleen32561692009-05-27 21:56:53 +02001068out:
Andi Kleen553f2652006-04-07 19:49:57 +02001069 atomic_dec(&mce_entry);
Andi Kleen88921be2009-05-27 21:56:51 +02001070 sync_core();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071}
Andi Kleenea149b32009-04-29 19:31:00 +02001072EXPORT_SYMBOL_GPL(do_machine_check);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
Andi Kleen9b1beaf2009-05-27 21:56:59 +02001074/* dummy to break dependency. actual code is in mm/memory-failure.c */
1075void __attribute__((weak)) memory_failure(unsigned long pfn, int vector)
1076{
1077 printk(KERN_ERR "Action optional memory failure at %lx ignored\n", pfn);
1078}
1079
1080/*
1081 * Called after mce notification in process context. This code
1082 * is allowed to sleep. Call the high level VM handler to process
1083 * any corrupted pages.
1084 * Assume that the work queue code only calls this one at a time
1085 * per CPU.
1086 * Note we don't disable preemption, so this code might run on the wrong
1087 * CPU. In this case the event is picked up by the scheduled work queue.
1088 * This is merely a fast path to expedite processing in some common
1089 * cases.
1090 */
1091void mce_notify_process(void)
1092{
1093 unsigned long pfn;
1094 mce_notify_irq();
1095 while (mce_ring_get(&pfn))
1096 memory_failure(pfn, MCE_VECTOR);
1097}
1098
1099static void mce_process_work(struct work_struct *dummy)
1100{
1101 mce_notify_process();
1102}
1103
Dmitriy Zavin15d5f832006-09-26 10:52:42 +02001104#ifdef CONFIG_X86_MCE_INTEL
1105/***
1106 * mce_log_therm_throt_event - Logs the thermal throttling event to mcelog
Simon Arlott676b1852007-10-20 01:25:36 +02001107 * @cpu: The CPU on which the event occurred.
Dmitriy Zavin15d5f832006-09-26 10:52:42 +02001108 * @status: Event status information
1109 *
1110 * This function should be called by the thermal interrupt after the
1111 * event has been processed and the decision was made to log the event
1112 * further.
1113 *
1114 * The status parameter will be saved to the 'status' field of 'struct mce'
1115 * and historically has been the register value of the
1116 * MSR_IA32_THERMAL_STATUS (Intel) msr.
1117 */
Andi Kleenb5f2fa42009-02-12 13:43:22 +01001118void mce_log_therm_throt_event(__u64 status)
Dmitriy Zavin15d5f832006-09-26 10:52:42 +02001119{
1120 struct mce m;
1121
Andi Kleenb5f2fa42009-02-12 13:43:22 +01001122 mce_setup(&m);
Dmitriy Zavin15d5f832006-09-26 10:52:42 +02001123 m.bank = MCE_THERMAL_BANK;
1124 m.status = status;
Dmitriy Zavin15d5f832006-09-26 10:52:42 +02001125 mce_log(&m);
1126}
1127#endif /* CONFIG_X86_MCE_INTEL */
1128
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129/*
Tim Hockin8a336b02007-05-02 19:27:19 +02001130 * Periodic polling timer for "silent" machine check errors. If the
1131 * poller finds an MCE, poll 2x faster. When the poller finds no more
1132 * errors, poll 2x slower (up to check_interval seconds).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134static int check_interval = 5 * 60; /* 5 minutes */
Ingo Molnare9eee032009-04-08 12:31:17 +02001135
Tejun Heo245b2e72009-06-24 15:13:48 +09001136static DEFINE_PER_CPU(int, mce_next_interval); /* in jiffies */
Andi Kleen52d168e2009-02-12 13:39:29 +01001137static DEFINE_PER_CPU(struct timer_list, mce_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138
Borislav Petkov5e099542009-10-16 12:31:32 +02001139static void mce_start_timer(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140{
Andi Kleen52d168e2009-02-12 13:39:29 +01001141 struct timer_list *t = &per_cpu(mce_timer, data);
Andi Kleen6298c512009-04-09 12:28:22 +02001142 int *n;
Andi Kleen52d168e2009-02-12 13:39:29 +01001143
1144 WARN_ON(smp_processor_id() != data);
1145
Ingo Molnare9eee032009-04-08 12:31:17 +02001146 if (mce_available(&current_cpu_data)) {
Andi Kleenee031c32009-02-12 13:49:34 +01001147 machine_check_poll(MCP_TIMESTAMP,
1148 &__get_cpu_var(mce_poll_banks));
Ingo Molnare9eee032009-04-08 12:31:17 +02001149 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150
1151 /*
Tim Hockine02e68d2007-07-21 17:10:36 +02001152 * Alert userspace if needed. If we logged an MCE, reduce the
1153 * polling interval, otherwise increase the polling interval.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 */
Tejun Heo245b2e72009-06-24 15:13:48 +09001155 n = &__get_cpu_var(mce_next_interval);
Andi Kleen9ff36ee2009-05-27 21:56:58 +02001156 if (mce_notify_irq())
Andi Kleen6298c512009-04-09 12:28:22 +02001157 *n = max(*n/2, HZ/100);
Hidetoshi Seto14a02532009-04-30 16:04:51 +09001158 else
Andi Kleen6298c512009-04-09 12:28:22 +02001159 *n = min(*n*2, (int)round_jiffies_relative(check_interval*HZ));
Tim Hockin8a336b02007-05-02 19:27:19 +02001160
Andi Kleen6298c512009-04-09 12:28:22 +02001161 t->expires = jiffies + *n;
Hidetoshi Seto5be60662009-06-24 09:21:10 +09001162 add_timer_on(t, smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163}
1164
Andi Kleen9bd98402009-02-12 13:39:28 +01001165static void mce_do_trigger(struct work_struct *work)
1166{
Hidetoshi Seto1020bcb2009-06-15 17:20:57 +09001167 call_usermodehelper(mce_helper, mce_helper_argv, NULL, UMH_NO_WAIT);
Andi Kleen9bd98402009-02-12 13:39:28 +01001168}
1169
1170static DECLARE_WORK(mce_trigger_work, mce_do_trigger);
1171
Tim Hockine02e68d2007-07-21 17:10:36 +02001172/*
Andi Kleen9bd98402009-02-12 13:39:28 +01001173 * Notify the user(s) about new machine check events.
1174 * Can be called from interrupt context, but not from machine check/NMI
1175 * context.
Tim Hockine02e68d2007-07-21 17:10:36 +02001176 */
Andi Kleen9ff36ee2009-05-27 21:56:58 +02001177int mce_notify_irq(void)
Tim Hockine02e68d2007-07-21 17:10:36 +02001178{
Andi Kleen8457c842009-02-12 13:49:33 +01001179 /* Not more than two messages every minute */
1180 static DEFINE_RATELIMIT_STATE(ratelimit, 60*HZ, 2);
1181
Tim Hockine02e68d2007-07-21 17:10:36 +02001182 clear_thread_flag(TIF_MCE_NOTIFY);
Ingo Molnare9eee032009-04-08 12:31:17 +02001183
Hidetoshi Seto1020bcb2009-06-15 17:20:57 +09001184 if (test_and_clear_bit(0, &mce_need_notify)) {
Tim Hockine02e68d2007-07-21 17:10:36 +02001185 wake_up_interruptible(&mce_wait);
Andi Kleen9bd98402009-02-12 13:39:28 +01001186
1187 /*
1188 * There is no risk of missing notifications because
1189 * work_pending is always cleared before the function is
1190 * executed.
1191 */
Hidetoshi Seto1020bcb2009-06-15 17:20:57 +09001192 if (mce_helper[0] && !work_pending(&mce_trigger_work))
Andi Kleen9bd98402009-02-12 13:39:28 +01001193 schedule_work(&mce_trigger_work);
Tim Hockine02e68d2007-07-21 17:10:36 +02001194
Andi Kleen8457c842009-02-12 13:49:33 +01001195 if (__ratelimit(&ratelimit))
Tim Hockine02e68d2007-07-21 17:10:36 +02001196 printk(KERN_INFO "Machine check events logged\n");
Tim Hockine02e68d2007-07-21 17:10:36 +02001197
1198 return 1;
1199 }
1200 return 0;
1201}
Andi Kleen9ff36ee2009-05-27 21:56:58 +02001202EXPORT_SYMBOL_GPL(mce_notify_irq);
Tim Hockine02e68d2007-07-21 17:10:36 +02001203
Hidetoshi Setocffd3772009-11-12 15:52:40 +09001204static int __cpuinit __mcheck_cpu_mce_banks_init(void)
Andi Kleencebe1822009-07-09 00:31:43 +02001205{
1206 int i;
1207
1208 mce_banks = kzalloc(banks * sizeof(struct mce_bank), GFP_KERNEL);
1209 if (!mce_banks)
1210 return -ENOMEM;
1211 for (i = 0; i < banks; i++) {
1212 struct mce_bank *b = &mce_banks[i];
Ingo Molnar11868a22009-09-23 17:49:55 +02001213
Andi Kleencebe1822009-07-09 00:31:43 +02001214 b->ctl = -1ULL;
1215 b->init = 1;
1216 }
1217 return 0;
1218}
1219
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001220/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 * Initialize Machine Checks for a CPU.
1222 */
Borislav Petkov5e099542009-10-16 12:31:32 +02001223static int __cpuinit __mcheck_cpu_cap_init(void)
Andi Kleen0d7482e32009-02-17 23:07:13 +01001224{
Andi Kleen0d7482e32009-02-17 23:07:13 +01001225 unsigned b;
Ingo Molnare9eee032009-04-08 12:31:17 +02001226 u64 cap;
Andi Kleen0d7482e32009-02-17 23:07:13 +01001227
1228 rdmsrl(MSR_IA32_MCG_CAP, cap);
Thomas Gleixner01c66802009-04-08 12:31:24 +02001229
1230 b = cap & MCG_BANKCNT_MASK;
Roland Dreier93ae5012009-10-15 14:21:14 -07001231 if (!banks)
1232 printk(KERN_INFO "mce: CPU supports %d MCE banks\n", b);
Ingo Molnarb6592942009-04-08 12:31:27 +02001233
Andi Kleen0d7482e32009-02-17 23:07:13 +01001234 if (b > MAX_NR_BANKS) {
1235 printk(KERN_WARNING
1236 "MCE: Using only %u machine check banks out of %u\n",
1237 MAX_NR_BANKS, b);
1238 b = MAX_NR_BANKS;
1239 }
1240
1241 /* Don't support asymmetric configurations today */
1242 WARN_ON(banks != 0 && b != banks);
1243 banks = b;
Andi Kleencebe1822009-07-09 00:31:43 +02001244 if (!mce_banks) {
Hidetoshi Setocffd3772009-11-12 15:52:40 +09001245 int err = __mcheck_cpu_mce_banks_init();
Ingo Molnar11868a22009-09-23 17:49:55 +02001246
Andi Kleencebe1822009-07-09 00:31:43 +02001247 if (err)
1248 return err;
Andi Kleen0d7482e32009-02-17 23:07:13 +01001249 }
1250
1251 /* Use accurate RIP reporting if available. */
Thomas Gleixner01c66802009-04-08 12:31:24 +02001252 if ((cap & MCG_EXT_P) && MCG_EXT_CNT(cap) >= 9)
Andi Kleen0d7482e32009-02-17 23:07:13 +01001253 rip_msr = MSR_IA32_MCG_EIP;
1254
Andi Kleened7290d2009-05-27 21:56:57 +02001255 if (cap & MCG_SER_P)
1256 mce_ser = 1;
1257
Andi Kleen0d7482e32009-02-17 23:07:13 +01001258 return 0;
1259}
1260
Borislav Petkov5e099542009-10-16 12:31:32 +02001261static void __mcheck_cpu_init_generic(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262{
Ingo Molnare9eee032009-04-08 12:31:17 +02001263 mce_banks_t all_banks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 u64 cap;
1265 int i;
1266
Andi Kleenb79109c2009-02-12 13:43:23 +01001267 /*
1268 * Log the machine checks left over from the previous reset.
1269 */
Andi Kleenee031c32009-02-12 13:49:34 +01001270 bitmap_fill(all_banks, MAX_NR_BANKS);
Andi Kleen5679af42009-04-07 17:06:55 +02001271 machine_check_poll(MCP_UC|(!mce_bootlog ? MCP_DONTLOG : 0), &all_banks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
1273 set_in_cr4(X86_CR4_MCE);
1274
Andi Kleen0d7482e32009-02-17 23:07:13 +01001275 rdmsrl(MSR_IA32_MCG_CAP, cap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 if (cap & MCG_CTL_P)
1277 wrmsr(MSR_IA32_MCG_CTL, 0xffffffff, 0xffffffff);
1278
1279 for (i = 0; i < banks; i++) {
Andi Kleencebe1822009-07-09 00:31:43 +02001280 struct mce_bank *b = &mce_banks[i];
Ingo Molnar11868a22009-09-23 17:49:55 +02001281
Andi Kleencebe1822009-07-09 00:31:43 +02001282 if (!b->init)
Andi Kleen06b7a7a2009-04-27 18:37:43 +02001283 continue;
Andi Kleena2d32bc2009-07-09 00:31:44 +02001284 wrmsrl(MSR_IA32_MCx_CTL(i), b->ctl);
1285 wrmsrl(MSR_IA32_MCx_STATUS(i), 0);
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001286 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287}
1288
1289/* Add per CPU specific workarounds here */
Borislav Petkov5e099542009-10-16 12:31:32 +02001290static int __cpuinit __mcheck_cpu_apply_quirks(struct cpuinfo_x86 *c)
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001291{
Ingo Molnare412cd22009-08-17 10:19:00 +02001292 if (c->x86_vendor == X86_VENDOR_UNKNOWN) {
1293 pr_info("MCE: unknown CPU type - not enabling MCE support.\n");
1294 return -EOPNOTSUPP;
1295 }
1296
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 /* This should be disabled by the BIOS, but isn't always */
Jan Beulich911f6a72008-04-22 16:22:21 +01001298 if (c->x86_vendor == X86_VENDOR_AMD) {
Ingo Molnare9eee032009-04-08 12:31:17 +02001299 if (c->x86 == 15 && banks > 4) {
1300 /*
1301 * disable GART TBL walk error reporting, which
1302 * trips off incorrectly with the IOMMU & 3ware
1303 * & Cerberus:
1304 */
Andi Kleencebe1822009-07-09 00:31:43 +02001305 clear_bit(10, (unsigned long *)&mce_banks[4].ctl);
Ingo Molnare9eee032009-04-08 12:31:17 +02001306 }
1307 if (c->x86 <= 17 && mce_bootlog < 0) {
1308 /*
1309 * Lots of broken BIOS around that don't clear them
1310 * by default and leave crap in there. Don't log:
1311 */
Jan Beulich911f6a72008-04-22 16:22:21 +01001312 mce_bootlog = 0;
Ingo Molnare9eee032009-04-08 12:31:17 +02001313 }
Andi Kleen2e6f6942009-04-27 18:42:48 +02001314 /*
1315 * Various K7s with broken bank 0 around. Always disable
1316 * by default.
1317 */
Andi Kleen203abd62009-06-15 14:52:01 +02001318 if (c->x86 == 6 && banks > 0)
Andi Kleencebe1822009-07-09 00:31:43 +02001319 mce_banks[0].ctl = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 }
Andi Kleene5835382005-11-05 17:25:54 +01001321
Andi Kleen06b7a7a2009-04-27 18:37:43 +02001322 if (c->x86_vendor == X86_VENDOR_INTEL) {
1323 /*
1324 * SDM documents that on family 6 bank 0 should not be written
1325 * because it aliases to another special BIOS controlled
1326 * register.
1327 * But it's not aliased anymore on model 0x1a+
1328 * Don't ignore bank 0 completely because there could be a
1329 * valid event later, merely don't write CTL0.
1330 */
1331
Andi Kleencebe1822009-07-09 00:31:43 +02001332 if (c->x86 == 6 && c->x86_model < 0x1A && banks > 0)
1333 mce_banks[0].init = 0;
Andi Kleen3c079792009-05-27 21:56:55 +02001334
1335 /*
1336 * All newer Intel systems support MCE broadcasting. Enable
1337 * synchronization with a one second timeout.
1338 */
1339 if ((c->x86 > 6 || (c->x86 == 6 && c->x86_model >= 0xe)) &&
1340 monarch_timeout < 0)
1341 monarch_timeout = USEC_PER_SEC;
Bartlomiej Zolnierkiewiczc7f6fa42009-07-28 23:52:54 +02001342
Ingo Molnare412cd22009-08-17 10:19:00 +02001343 /*
1344 * There are also broken BIOSes on some Pentium M and
1345 * earlier systems:
1346 */
1347 if (c->x86 == 6 && c->x86_model <= 13 && mce_bootlog < 0)
Bartlomiej Zolnierkiewiczc7f6fa42009-07-28 23:52:54 +02001348 mce_bootlog = 0;
Andi Kleen06b7a7a2009-04-27 18:37:43 +02001349 }
Andi Kleen3c079792009-05-27 21:56:55 +02001350 if (monarch_timeout < 0)
1351 monarch_timeout = 0;
Andi Kleen29b0f592009-05-27 21:56:56 +02001352 if (mce_bootlog != 0)
1353 mce_panic_timeout = 30;
Ingo Molnare412cd22009-08-17 10:19:00 +02001354
1355 return 0;
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001356}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357
Borislav Petkov5e099542009-10-16 12:31:32 +02001358static void __cpuinit __mcheck_cpu_ancient_init(struct cpuinfo_x86 *c)
Andi Kleen4efc0672009-04-28 19:07:31 +02001359{
1360 if (c->x86 != 5)
1361 return;
1362 switch (c->x86_vendor) {
1363 case X86_VENDOR_INTEL:
Hidetoshi Setoc6978362009-06-15 17:22:49 +09001364 intel_p5_mcheck_init(c);
Andi Kleen4efc0672009-04-28 19:07:31 +02001365 break;
1366 case X86_VENDOR_CENTAUR:
1367 winchip_mcheck_init(c);
1368 break;
1369 }
1370}
1371
Borislav Petkov5e099542009-10-16 12:31:32 +02001372static void __mcheck_cpu_init_vendor(struct cpuinfo_x86 *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373{
1374 switch (c->x86_vendor) {
1375 case X86_VENDOR_INTEL:
1376 mce_intel_feature_init(c);
1377 break;
Jacob Shin89b831e2005-11-05 17:25:53 +01001378 case X86_VENDOR_AMD:
1379 mce_amd_feature_init(c);
1380 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 default:
1382 break;
1383 }
1384}
1385
Borislav Petkov5e099542009-10-16 12:31:32 +02001386static void __mcheck_cpu_init_timer(void)
Andi Kleen52d168e2009-02-12 13:39:29 +01001387{
1388 struct timer_list *t = &__get_cpu_var(mce_timer);
Tejun Heo245b2e72009-06-24 15:13:48 +09001389 int *n = &__get_cpu_var(mce_next_interval);
Andi Kleen52d168e2009-02-12 13:39:29 +01001390
Jan Beulichbc09eff2009-12-08 11:21:37 +09001391 setup_timer(t, mce_start_timer, smp_processor_id());
1392
Hidetoshi Seto62fdac52009-06-11 16:06:07 +09001393 if (mce_ignore_ce)
1394 return;
1395
Andi Kleen6298c512009-04-09 12:28:22 +02001396 *n = check_interval * HZ;
1397 if (!*n)
Andi Kleen52d168e2009-02-12 13:39:29 +01001398 return;
Andi Kleen6298c512009-04-09 12:28:22 +02001399 t->expires = round_jiffies(jiffies + *n);
Hidetoshi Seto5be60662009-06-24 09:21:10 +09001400 add_timer_on(t, smp_processor_id());
Andi Kleen52d168e2009-02-12 13:39:29 +01001401}
1402
Andi Kleen9eda8cb2009-07-09 00:31:42 +02001403/* Handle unconfigured int18 (should never happen) */
1404static void unexpected_machine_check(struct pt_regs *regs, long error_code)
1405{
1406 printk(KERN_ERR "CPU#%d: Unexpected int18 (Machine Check).\n",
1407 smp_processor_id());
1408}
1409
1410/* Call the installed machine check handler for this CPU setup. */
1411void (*machine_check_vector)(struct pt_regs *, long error_code) =
1412 unexpected_machine_check;
1413
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001414/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 * Called for each booted CPU to set up machine checks.
Ingo Molnare9eee032009-04-08 12:31:17 +02001416 * Must be called with preempt off:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 */
Borislav Petkov5e099542009-10-16 12:31:32 +02001418void __cpuinit mcheck_cpu_init(struct cpuinfo_x86 *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419{
Andi Kleen4efc0672009-04-28 19:07:31 +02001420 if (mce_disabled)
1421 return;
1422
Borislav Petkov5e099542009-10-16 12:31:32 +02001423 __mcheck_cpu_ancient_init(c);
Andi Kleen4efc0672009-04-28 19:07:31 +02001424
Andi Kleen5b4408f2009-02-12 13:39:30 +01001425 if (!mce_available(c))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 return;
1427
Borislav Petkov5e099542009-10-16 12:31:32 +02001428 if (__mcheck_cpu_cap_init() < 0 || __mcheck_cpu_apply_quirks(c) < 0) {
Andi Kleen04b2b1a2009-04-28 22:50:19 +02001429 mce_disabled = 1;
Andi Kleen0d7482e32009-02-17 23:07:13 +01001430 return;
1431 }
Andi Kleen0d7482e32009-02-17 23:07:13 +01001432
Andi Kleen5d727922009-04-27 19:25:48 +02001433 machine_check_vector = do_machine_check;
1434
Borislav Petkov5e099542009-10-16 12:31:32 +02001435 __mcheck_cpu_init_generic();
1436 __mcheck_cpu_init_vendor(c);
1437 __mcheck_cpu_init_timer();
Andi Kleen9b1beaf2009-05-27 21:56:59 +02001438 INIT_WORK(&__get_cpu_var(mce_work), mce_process_work);
Borislav Petkovfb253192009-10-07 13:20:38 +02001439
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440}
1441
1442/*
1443 * Character device to read and clear the MCE log.
1444 */
1445
Tim Hockinf528e7b2007-07-21 17:10:35 +02001446static DEFINE_SPINLOCK(mce_state_lock);
Ingo Molnare9eee032009-04-08 12:31:17 +02001447static int open_count; /* #times opened */
1448static int open_exclu; /* already open exclusive? */
Tim Hockinf528e7b2007-07-21 17:10:35 +02001449
1450static int mce_open(struct inode *inode, struct file *file)
1451{
1452 spin_lock(&mce_state_lock);
1453
1454 if (open_exclu || (open_count && (file->f_flags & O_EXCL))) {
1455 spin_unlock(&mce_state_lock);
Ingo Molnare9eee032009-04-08 12:31:17 +02001456
Tim Hockinf528e7b2007-07-21 17:10:35 +02001457 return -EBUSY;
1458 }
1459
1460 if (file->f_flags & O_EXCL)
1461 open_exclu = 1;
1462 open_count++;
1463
1464 spin_unlock(&mce_state_lock);
1465
Tim Hockinbd784322007-07-21 17:10:37 +02001466 return nonseekable_open(inode, file);
Tim Hockinf528e7b2007-07-21 17:10:35 +02001467}
1468
1469static int mce_release(struct inode *inode, struct file *file)
1470{
1471 spin_lock(&mce_state_lock);
1472
1473 open_count--;
1474 open_exclu = 0;
1475
1476 spin_unlock(&mce_state_lock);
1477
1478 return 0;
1479}
1480
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001481static void collect_tscs(void *data)
1482{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 unsigned long *cpu_tsc = (unsigned long *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001485 rdtscll(cpu_tsc[smp_processor_id()]);
1486}
1487
Ingo Molnare9eee032009-04-08 12:31:17 +02001488static DEFINE_MUTEX(mce_read_mutex);
1489
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001490static ssize_t mce_read(struct file *filp, char __user *ubuf, size_t usize,
1491 loff_t *off)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 char __user *buf = ubuf;
Ingo Molnare9eee032009-04-08 12:31:17 +02001494 unsigned long *cpu_tsc;
1495 unsigned prev, next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 int i, err;
1497
Mike Travis6bca67f2008-07-18 18:11:27 -07001498 cpu_tsc = kmalloc(nr_cpu_ids * sizeof(long), GFP_KERNEL);
Andi Kleenf0de53b2005-04-16 15:25:10 -07001499 if (!cpu_tsc)
1500 return -ENOMEM;
1501
Daniel Walker8c8b8852008-01-30 13:31:17 +01001502 mutex_lock(&mce_read_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 next = rcu_dereference(mcelog.next);
1504
1505 /* Only supports full reads right now */
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001506 if (*off != 0 || usize < MCE_LOG_LEN*sizeof(struct mce)) {
Daniel Walker8c8b8852008-01-30 13:31:17 +01001507 mutex_unlock(&mce_read_mutex);
Andi Kleenf0de53b2005-04-16 15:25:10 -07001508 kfree(cpu_tsc);
Ingo Molnare9eee032009-04-08 12:31:17 +02001509
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 return -EINVAL;
1511 }
1512
1513 err = 0;
Huang Yingef41df4342009-02-12 13:39:34 +01001514 prev = 0;
1515 do {
1516 for (i = prev; i < next; i++) {
1517 unsigned long start = jiffies;
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001518
Huang Yingef41df4342009-02-12 13:39:34 +01001519 while (!mcelog.entry[i].finished) {
1520 if (time_after_eq(jiffies, start + 2)) {
1521 memset(mcelog.entry + i, 0,
1522 sizeof(struct mce));
1523 goto timeout;
1524 }
1525 cpu_relax();
Andi Kleen673242c2005-09-12 18:49:24 +02001526 }
Huang Yingef41df4342009-02-12 13:39:34 +01001527 smp_rmb();
1528 err |= copy_to_user(buf, mcelog.entry + i,
1529 sizeof(struct mce));
1530 buf += sizeof(struct mce);
1531timeout:
1532 ;
Andi Kleen673242c2005-09-12 18:49:24 +02001533 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534
Huang Yingef41df4342009-02-12 13:39:34 +01001535 memset(mcelog.entry + prev, 0,
1536 (next - prev) * sizeof(struct mce));
1537 prev = next;
1538 next = cmpxchg(&mcelog.next, prev, 0);
1539 } while (next != prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540
Paul E. McKenneyb2b18662005-06-25 14:55:38 -07001541 synchronize_sched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001543 /*
1544 * Collect entries that were still getting written before the
1545 * synchronize.
1546 */
Jens Axboe15c8b6c2008-05-09 09:39:44 +02001547 on_each_cpu(collect_tscs, cpu_tsc, 1);
Ingo Molnare9eee032009-04-08 12:31:17 +02001548
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001549 for (i = next; i < MCE_LOG_LEN; i++) {
1550 if (mcelog.entry[i].finished &&
1551 mcelog.entry[i].tsc < cpu_tsc[mcelog.entry[i].cpu]) {
1552 err |= copy_to_user(buf, mcelog.entry+i,
1553 sizeof(struct mce));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 smp_rmb();
1555 buf += sizeof(struct mce);
1556 memset(&mcelog.entry[i], 0, sizeof(struct mce));
1557 }
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001558 }
Daniel Walker8c8b8852008-01-30 13:31:17 +01001559 mutex_unlock(&mce_read_mutex);
Andi Kleenf0de53b2005-04-16 15:25:10 -07001560 kfree(cpu_tsc);
Ingo Molnare9eee032009-04-08 12:31:17 +02001561
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001562 return err ? -EFAULT : buf - ubuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563}
1564
Tim Hockine02e68d2007-07-21 17:10:36 +02001565static unsigned int mce_poll(struct file *file, poll_table *wait)
1566{
1567 poll_wait(file, &mce_wait, wait);
1568 if (rcu_dereference(mcelog.next))
1569 return POLLIN | POLLRDNORM;
1570 return 0;
1571}
1572
Nikanth Karthikesanc68461b2008-01-30 13:32:59 +01001573static long mce_ioctl(struct file *f, unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574{
1575 int __user *p = (int __user *)arg;
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001576
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 if (!capable(CAP_SYS_ADMIN))
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001578 return -EPERM;
Ingo Molnare9eee032009-04-08 12:31:17 +02001579
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 switch (cmd) {
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001581 case MCE_GET_RECORD_LEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 return put_user(sizeof(struct mce), p);
1583 case MCE_GET_LOG_LEN:
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001584 return put_user(MCE_LOG_LEN, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 case MCE_GETCLEAR_FLAGS: {
1586 unsigned flags;
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001587
1588 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 flags = mcelog.flags;
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001590 } while (cmpxchg(&mcelog.flags, flags, 0) != flags);
Ingo Molnare9eee032009-04-08 12:31:17 +02001591
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001592 return put_user(flags, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 }
1594 default:
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001595 return -ENOTTY;
1596 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597}
1598
H. Peter Anvina1ff41b2009-05-25 22:16:14 -07001599/* Modified in mce-inject.c, so not static or const */
Andi Kleenea149b32009-04-29 19:31:00 +02001600struct file_operations mce_chrdev_ops = {
Ingo Molnare9eee032009-04-08 12:31:17 +02001601 .open = mce_open,
1602 .release = mce_release,
1603 .read = mce_read,
1604 .poll = mce_poll,
1605 .unlocked_ioctl = mce_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606};
Andi Kleenea149b32009-04-29 19:31:00 +02001607EXPORT_SYMBOL_GPL(mce_chrdev_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608
1609static struct miscdevice mce_log_device = {
1610 MISC_MCELOG_MINOR,
1611 "mcelog",
1612 &mce_chrdev_ops,
1613};
1614
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001615/*
Hidetoshi Seto62fdac52009-06-11 16:06:07 +09001616 * mce=off Disables machine check
1617 * mce=no_cmci Disables CMCI
1618 * mce=dont_log_ce Clears corrected events silently, no log created for CEs.
1619 * mce=ignore_ce Disables polling and CMCI, corrected events are not cleared.
Andi Kleen3c079792009-05-27 21:56:55 +02001620 * mce=TOLERANCELEVEL[,monarchtimeout] (number, see above)
1621 * monarchtimeout is how long to wait for other CPUs on machine
1622 * check, or 0 to not wait
Hidetoshi Seto13503fa2009-03-26 17:39:20 +09001623 * mce=bootlog Log MCEs from before booting. Disabled by default on AMD.
1624 * mce=nobootlog Don't log MCEs from before booting.
1625 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626static int __init mcheck_enable(char *str)
1627{
Bartlomiej Zolnierkiewicze3346fc2009-07-28 23:55:09 +02001628 if (*str == 0) {
Andi Kleen4efc0672009-04-28 19:07:31 +02001629 enable_p5_mce();
Bartlomiej Zolnierkiewicze3346fc2009-07-28 23:55:09 +02001630 return 1;
1631 }
Andi Kleen4efc0672009-04-28 19:07:31 +02001632 if (*str == '=')
1633 str++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 if (!strcmp(str, "off"))
Andi Kleen04b2b1a2009-04-28 22:50:19 +02001635 mce_disabled = 1;
Hidetoshi Seto62fdac52009-06-11 16:06:07 +09001636 else if (!strcmp(str, "no_cmci"))
1637 mce_cmci_disabled = 1;
1638 else if (!strcmp(str, "dont_log_ce"))
1639 mce_dont_log_ce = 1;
1640 else if (!strcmp(str, "ignore_ce"))
1641 mce_ignore_ce = 1;
Hidetoshi Seto13503fa2009-03-26 17:39:20 +09001642 else if (!strcmp(str, "bootlog") || !strcmp(str, "nobootlog"))
1643 mce_bootlog = (str[0] == 'b');
Andi Kleen3c079792009-05-27 21:56:55 +02001644 else if (isdigit(str[0])) {
Andi Kleen8c566ef2005-09-12 18:49:24 +02001645 get_option(&str, &tolerant);
Andi Kleen3c079792009-05-27 21:56:55 +02001646 if (*str == ',') {
1647 ++str;
1648 get_option(&str, &monarch_timeout);
1649 }
1650 } else {
Andi Kleen4efc0672009-04-28 19:07:31 +02001651 printk(KERN_INFO "mce argument %s ignored. Please use /sys\n",
Hidetoshi Seto13503fa2009-03-26 17:39:20 +09001652 str);
1653 return 0;
1654 }
OGAWA Hirofumi9b410462006-03-31 02:30:33 -08001655 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656}
Andi Kleen4efc0672009-04-28 19:07:31 +02001657__setup("mce", mcheck_enable);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658
Yong Wanga2202aa2009-11-10 09:38:24 +08001659int __init mcheck_init(void)
Borislav Petkovb33a6362009-10-16 12:31:33 +02001660{
1661 atomic_notifier_chain_register(&x86_mce_decoder_chain, &mce_dec_nb);
1662
Yong Wanga2202aa2009-11-10 09:38:24 +08001663 mcheck_intel_therm_init();
1664
Borislav Petkovb33a6362009-10-16 12:31:33 +02001665 return 0;
1666}
Borislav Petkovb33a6362009-10-16 12:31:33 +02001667
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001668/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 * Sysfs support
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001670 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671
Andi Kleen973a2dd2009-02-12 13:39:32 +01001672/*
1673 * Disable machine checks on suspend and shutdown. We can't really handle
1674 * them later.
1675 */
Borislav Petkov5e099542009-10-16 12:31:32 +02001676static int mce_disable_error_reporting(void)
Andi Kleen973a2dd2009-02-12 13:39:32 +01001677{
1678 int i;
1679
Andi Kleen06b7a7a2009-04-27 18:37:43 +02001680 for (i = 0; i < banks; i++) {
Andi Kleencebe1822009-07-09 00:31:43 +02001681 struct mce_bank *b = &mce_banks[i];
Ingo Molnar11868a22009-09-23 17:49:55 +02001682
Andi Kleencebe1822009-07-09 00:31:43 +02001683 if (b->init)
Andi Kleena2d32bc2009-07-09 00:31:44 +02001684 wrmsrl(MSR_IA32_MCx_CTL(i), 0);
Andi Kleen06b7a7a2009-04-27 18:37:43 +02001685 }
Andi Kleen973a2dd2009-02-12 13:39:32 +01001686 return 0;
1687}
1688
1689static int mce_suspend(struct sys_device *dev, pm_message_t state)
1690{
Borislav Petkov5e099542009-10-16 12:31:32 +02001691 return mce_disable_error_reporting();
Andi Kleen973a2dd2009-02-12 13:39:32 +01001692}
1693
1694static int mce_shutdown(struct sys_device *dev)
1695{
Borislav Petkov5e099542009-10-16 12:31:32 +02001696 return mce_disable_error_reporting();
Andi Kleen973a2dd2009-02-12 13:39:32 +01001697}
1698
Ingo Molnare9eee032009-04-08 12:31:17 +02001699/*
1700 * On resume clear all MCE state. Don't want to see leftovers from the BIOS.
1701 * Only one CPU is active at this time, the others get re-added later using
1702 * CPU hotplug:
1703 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704static int mce_resume(struct sys_device *dev)
1705{
Borislav Petkov5e099542009-10-16 12:31:32 +02001706 __mcheck_cpu_init_generic();
1707 __mcheck_cpu_init_vendor(&current_cpu_data);
Ingo Molnare9eee032009-04-08 12:31:17 +02001708
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 return 0;
1710}
1711
Andi Kleen52d168e2009-02-12 13:39:29 +01001712static void mce_cpu_restart(void *data)
1713{
1714 del_timer_sync(&__get_cpu_var(mce_timer));
Hidetoshi Seto33edbf02009-06-15 17:18:45 +09001715 if (!mce_available(&current_cpu_data))
1716 return;
Borislav Petkov5e099542009-10-16 12:31:32 +02001717 __mcheck_cpu_init_generic();
1718 __mcheck_cpu_init_timer();
Andi Kleen52d168e2009-02-12 13:39:29 +01001719}
1720
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721/* Reinit MCEs after user configuration changes */
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001722static void mce_restart(void)
1723{
Andi Kleen52d168e2009-02-12 13:39:29 +01001724 on_each_cpu(mce_cpu_restart, NULL, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725}
1726
Hidetoshi Seto9af43b52009-06-15 17:21:36 +09001727/* Toggle features for corrected errors */
1728static void mce_disable_ce(void *all)
1729{
1730 if (!mce_available(&current_cpu_data))
1731 return;
1732 if (all)
1733 del_timer_sync(&__get_cpu_var(mce_timer));
1734 cmci_clear();
1735}
1736
1737static void mce_enable_ce(void *all)
1738{
1739 if (!mce_available(&current_cpu_data))
1740 return;
1741 cmci_reenable();
1742 cmci_recheck();
1743 if (all)
Borislav Petkov5e099542009-10-16 12:31:32 +02001744 __mcheck_cpu_init_timer();
Hidetoshi Seto9af43b52009-06-15 17:21:36 +09001745}
1746
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747static struct sysdev_class mce_sysclass = {
Ingo Molnare9eee032009-04-08 12:31:17 +02001748 .suspend = mce_suspend,
1749 .shutdown = mce_shutdown,
1750 .resume = mce_resume,
1751 .name = "machinecheck",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752};
1753
Ingo Molnarcb491fc2009-04-08 12:31:17 +02001754DEFINE_PER_CPU(struct sys_device, mce_dev);
Ingo Molnare9eee032009-04-08 12:31:17 +02001755
1756__cpuinitdata
1757void (*threshold_cpu_callback)(unsigned long action, unsigned int cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758
Andi Kleencebe1822009-07-09 00:31:43 +02001759static inline struct mce_bank *attr_to_bank(struct sysdev_attribute *attr)
1760{
1761 return container_of(attr, struct mce_bank, attr);
1762}
Andi Kleen0d7482e32009-02-17 23:07:13 +01001763
1764static ssize_t show_bank(struct sys_device *s, struct sysdev_attribute *attr,
1765 char *buf)
1766{
Andi Kleencebe1822009-07-09 00:31:43 +02001767 return sprintf(buf, "%llx\n", attr_to_bank(attr)->ctl);
Andi Kleen0d7482e32009-02-17 23:07:13 +01001768}
1769
1770static ssize_t set_bank(struct sys_device *s, struct sysdev_attribute *attr,
Hidetoshi Seto9319cec2009-04-14 17:26:30 +09001771 const char *buf, size_t size)
Andi Kleen0d7482e32009-02-17 23:07:13 +01001772{
Hidetoshi Seto9319cec2009-04-14 17:26:30 +09001773 u64 new;
Ingo Molnare9eee032009-04-08 12:31:17 +02001774
Hidetoshi Seto9319cec2009-04-14 17:26:30 +09001775 if (strict_strtoull(buf, 0, &new) < 0)
Andi Kleen0d7482e32009-02-17 23:07:13 +01001776 return -EINVAL;
Ingo Molnare9eee032009-04-08 12:31:17 +02001777
Andi Kleencebe1822009-07-09 00:31:43 +02001778 attr_to_bank(attr)->ctl = new;
Andi Kleen0d7482e32009-02-17 23:07:13 +01001779 mce_restart();
Ingo Molnare9eee032009-04-08 12:31:17 +02001780
Hidetoshi Seto9319cec2009-04-14 17:26:30 +09001781 return size;
Andi Kleen0d7482e32009-02-17 23:07:13 +01001782}
Andi Kleena98f0dd2007-02-13 13:26:23 +01001783
Ingo Molnare9eee032009-04-08 12:31:17 +02001784static ssize_t
1785show_trigger(struct sys_device *s, struct sysdev_attribute *attr, char *buf)
Andi Kleena98f0dd2007-02-13 13:26:23 +01001786{
Hidetoshi Seto1020bcb2009-06-15 17:20:57 +09001787 strcpy(buf, mce_helper);
Andi Kleena98f0dd2007-02-13 13:26:23 +01001788 strcat(buf, "\n");
Hidetoshi Seto1020bcb2009-06-15 17:20:57 +09001789 return strlen(mce_helper) + 1;
Andi Kleena98f0dd2007-02-13 13:26:23 +01001790}
1791
Andi Kleen4a0b2b42008-07-01 18:48:41 +02001792static ssize_t set_trigger(struct sys_device *s, struct sysdev_attribute *attr,
Ingo Molnare9eee032009-04-08 12:31:17 +02001793 const char *buf, size_t siz)
Andi Kleena98f0dd2007-02-13 13:26:23 +01001794{
1795 char *p;
Ingo Molnare9eee032009-04-08 12:31:17 +02001796
Hidetoshi Seto1020bcb2009-06-15 17:20:57 +09001797 strncpy(mce_helper, buf, sizeof(mce_helper));
1798 mce_helper[sizeof(mce_helper)-1] = 0;
Hidetoshi Seto1020bcb2009-06-15 17:20:57 +09001799 p = strchr(mce_helper, '\n');
Ingo Molnare9eee032009-04-08 12:31:17 +02001800
Jan Beuliche9084ec2009-07-16 09:45:11 +01001801 if (p)
Ingo Molnare9eee032009-04-08 12:31:17 +02001802 *p = 0;
1803
Jan Beuliche9084ec2009-07-16 09:45:11 +01001804 return strlen(mce_helper) + !!p;
Andi Kleena98f0dd2007-02-13 13:26:23 +01001805}
1806
Hidetoshi Seto9af43b52009-06-15 17:21:36 +09001807static ssize_t set_ignore_ce(struct sys_device *s,
1808 struct sysdev_attribute *attr,
1809 const char *buf, size_t size)
1810{
1811 u64 new;
1812
1813 if (strict_strtoull(buf, 0, &new) < 0)
1814 return -EINVAL;
1815
1816 if (mce_ignore_ce ^ !!new) {
1817 if (new) {
1818 /* disable ce features */
1819 on_each_cpu(mce_disable_ce, (void *)1, 1);
1820 mce_ignore_ce = 1;
1821 } else {
1822 /* enable ce features */
1823 mce_ignore_ce = 0;
1824 on_each_cpu(mce_enable_ce, (void *)1, 1);
1825 }
1826 }
1827 return size;
1828}
1829
1830static ssize_t set_cmci_disabled(struct sys_device *s,
1831 struct sysdev_attribute *attr,
1832 const char *buf, size_t size)
1833{
1834 u64 new;
1835
1836 if (strict_strtoull(buf, 0, &new) < 0)
1837 return -EINVAL;
1838
1839 if (mce_cmci_disabled ^ !!new) {
1840 if (new) {
1841 /* disable cmci */
1842 on_each_cpu(mce_disable_ce, NULL, 1);
1843 mce_cmci_disabled = 1;
1844 } else {
1845 /* enable cmci */
1846 mce_cmci_disabled = 0;
1847 on_each_cpu(mce_enable_ce, NULL, 1);
1848 }
1849 }
1850 return size;
1851}
1852
Andi Kleenb56f6422009-05-27 21:56:52 +02001853static ssize_t store_int_with_restart(struct sys_device *s,
1854 struct sysdev_attribute *attr,
1855 const char *buf, size_t size)
1856{
1857 ssize_t ret = sysdev_store_int(s, attr, buf, size);
1858 mce_restart();
1859 return ret;
1860}
1861
Andi Kleena98f0dd2007-02-13 13:26:23 +01001862static SYSDEV_ATTR(trigger, 0644, show_trigger, set_trigger);
Andi Kleend95d62c2008-07-01 18:48:43 +02001863static SYSDEV_INT_ATTR(tolerant, 0644, tolerant);
Andi Kleen3c079792009-05-27 21:56:55 +02001864static SYSDEV_INT_ATTR(monarch_timeout, 0644, monarch_timeout);
Hidetoshi Seto9af43b52009-06-15 17:21:36 +09001865static SYSDEV_INT_ATTR(dont_log_ce, 0644, mce_dont_log_ce);
Ingo Molnare9eee032009-04-08 12:31:17 +02001866
Andi Kleenb56f6422009-05-27 21:56:52 +02001867static struct sysdev_ext_attribute attr_check_interval = {
1868 _SYSDEV_ATTR(check_interval, 0644, sysdev_show_int,
1869 store_int_with_restart),
1870 &check_interval
1871};
Ingo Molnare9eee032009-04-08 12:31:17 +02001872
Hidetoshi Seto9af43b52009-06-15 17:21:36 +09001873static struct sysdev_ext_attribute attr_ignore_ce = {
1874 _SYSDEV_ATTR(ignore_ce, 0644, sysdev_show_int, set_ignore_ce),
1875 &mce_ignore_ce
1876};
1877
1878static struct sysdev_ext_attribute attr_cmci_disabled = {
Yinghai Lu74b602c2009-06-17 14:43:32 -07001879 _SYSDEV_ATTR(cmci_disabled, 0644, sysdev_show_int, set_cmci_disabled),
Hidetoshi Seto9af43b52009-06-15 17:21:36 +09001880 &mce_cmci_disabled
1881};
1882
Ingo Molnarcb491fc2009-04-08 12:31:17 +02001883static struct sysdev_attribute *mce_attrs[] = {
Hidetoshi Seto9af43b52009-06-15 17:21:36 +09001884 &attr_tolerant.attr,
1885 &attr_check_interval.attr,
1886 &attr_trigger,
Andi Kleen3c079792009-05-27 21:56:55 +02001887 &attr_monarch_timeout.attr,
Hidetoshi Seto9af43b52009-06-15 17:21:36 +09001888 &attr_dont_log_ce.attr,
1889 &attr_ignore_ce.attr,
1890 &attr_cmci_disabled.attr,
Andi Kleena98f0dd2007-02-13 13:26:23 +01001891 NULL
1892};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893
Ingo Molnarcb491fc2009-04-08 12:31:17 +02001894static cpumask_var_t mce_dev_initialized;
Andreas Herrmannbae19fe2007-11-14 17:00:44 -08001895
Ingo Molnare9eee032009-04-08 12:31:17 +02001896/* Per cpu sysdev init. All of the cpus still share the same ctrl bank: */
Andi Kleen91c6d402005-07-28 21:15:39 -07001897static __cpuinit int mce_create_device(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898{
1899 int err;
Hidetoshi Setob1f49f92009-06-18 14:53:24 +09001900 int i, j;
Mike Travis92cb7612007-10-19 20:35:04 +02001901
Andreas Herrmann90367552007-11-07 02:12:58 +01001902 if (!mce_available(&boot_cpu_data))
Andi Kleen91c6d402005-07-28 21:15:39 -07001903 return -EIO;
1904
Ingo Molnarcb491fc2009-04-08 12:31:17 +02001905 memset(&per_cpu(mce_dev, cpu).kobj, 0, sizeof(struct kobject));
1906 per_cpu(mce_dev, cpu).id = cpu;
1907 per_cpu(mce_dev, cpu).cls = &mce_sysclass;
Andi Kleen91c6d402005-07-28 21:15:39 -07001908
Ingo Molnarcb491fc2009-04-08 12:31:17 +02001909 err = sysdev_register(&per_cpu(mce_dev, cpu));
Akinobu Mitad435d862007-10-18 03:05:15 -07001910 if (err)
1911 return err;
Andi Kleen91c6d402005-07-28 21:15:39 -07001912
Ingo Molnarcb491fc2009-04-08 12:31:17 +02001913 for (i = 0; mce_attrs[i]; i++) {
1914 err = sysdev_create_file(&per_cpu(mce_dev, cpu), mce_attrs[i]);
Akinobu Mitad435d862007-10-18 03:05:15 -07001915 if (err)
1916 goto error;
Andi Kleen91c6d402005-07-28 21:15:39 -07001917 }
Hidetoshi Setob1f49f92009-06-18 14:53:24 +09001918 for (j = 0; j < banks; j++) {
Ingo Molnarcb491fc2009-04-08 12:31:17 +02001919 err = sysdev_create_file(&per_cpu(mce_dev, cpu),
Andi Kleencebe1822009-07-09 00:31:43 +02001920 &mce_banks[j].attr);
Andi Kleen0d7482e32009-02-17 23:07:13 +01001921 if (err)
1922 goto error2;
1923 }
Ingo Molnarcb491fc2009-04-08 12:31:17 +02001924 cpumask_set_cpu(cpu, mce_dev_initialized);
Akinobu Mitad435d862007-10-18 03:05:15 -07001925
1926 return 0;
Andi Kleen0d7482e32009-02-17 23:07:13 +01001927error2:
Hidetoshi Setob1f49f92009-06-18 14:53:24 +09001928 while (--j >= 0)
Andi Kleencebe1822009-07-09 00:31:43 +02001929 sysdev_remove_file(&per_cpu(mce_dev, cpu), &mce_banks[j].attr);
Akinobu Mitad435d862007-10-18 03:05:15 -07001930error:
Ingo Molnarcb491fc2009-04-08 12:31:17 +02001931 while (--i >= 0)
Hidetoshi Seto5c0e9f22009-12-08 16:52:44 +09001932 sysdev_remove_file(&per_cpu(mce_dev, cpu), mce_attrs[i]);
Ingo Molnarcb491fc2009-04-08 12:31:17 +02001933
1934 sysdev_unregister(&per_cpu(mce_dev, cpu));
Akinobu Mitad435d862007-10-18 03:05:15 -07001935
Andi Kleen91c6d402005-07-28 21:15:39 -07001936 return err;
1937}
1938
Jan Beulich2d9cd6c2008-08-29 13:15:04 +01001939static __cpuinit void mce_remove_device(unsigned int cpu)
Andi Kleen91c6d402005-07-28 21:15:39 -07001940{
Shaohua Li73ca5352006-01-11 22:43:06 +01001941 int i;
1942
Ingo Molnarcb491fc2009-04-08 12:31:17 +02001943 if (!cpumask_test_cpu(cpu, mce_dev_initialized))
Andreas Herrmannbae19fe2007-11-14 17:00:44 -08001944 return;
1945
Ingo Molnarcb491fc2009-04-08 12:31:17 +02001946 for (i = 0; mce_attrs[i]; i++)
1947 sysdev_remove_file(&per_cpu(mce_dev, cpu), mce_attrs[i]);
1948
Andi Kleen0d7482e32009-02-17 23:07:13 +01001949 for (i = 0; i < banks; i++)
Andi Kleencebe1822009-07-09 00:31:43 +02001950 sysdev_remove_file(&per_cpu(mce_dev, cpu), &mce_banks[i].attr);
Ingo Molnarcb491fc2009-04-08 12:31:17 +02001951
1952 sysdev_unregister(&per_cpu(mce_dev, cpu));
1953 cpumask_clear_cpu(cpu, mce_dev_initialized);
Andi Kleen91c6d402005-07-28 21:15:39 -07001954}
Andi Kleen91c6d402005-07-28 21:15:39 -07001955
Andi Kleend6b75582009-02-12 13:39:31 +01001956/* Make sure there are no machine checks on offlined CPUs. */
Hidetoshi Seto767df1b2009-11-26 17:29:02 +09001957static void __cpuinit mce_disable_cpu(void *h)
Andi Kleend6b75582009-02-12 13:39:31 +01001958{
Andi Kleen88ccbed2009-02-12 13:49:36 +01001959 unsigned long action = *(unsigned long *)h;
Ingo Molnarcb491fc2009-04-08 12:31:17 +02001960 int i;
Andi Kleend6b75582009-02-12 13:39:31 +01001961
1962 if (!mce_available(&current_cpu_data))
1963 return;
Hidetoshi Seto767df1b2009-11-26 17:29:02 +09001964
Andi Kleen88ccbed2009-02-12 13:49:36 +01001965 if (!(action & CPU_TASKS_FROZEN))
1966 cmci_clear();
Andi Kleen06b7a7a2009-04-27 18:37:43 +02001967 for (i = 0; i < banks; i++) {
Andi Kleencebe1822009-07-09 00:31:43 +02001968 struct mce_bank *b = &mce_banks[i];
Ingo Molnar11868a22009-09-23 17:49:55 +02001969
Andi Kleencebe1822009-07-09 00:31:43 +02001970 if (b->init)
Andi Kleena2d32bc2009-07-09 00:31:44 +02001971 wrmsrl(MSR_IA32_MCx_CTL(i), 0);
Andi Kleen06b7a7a2009-04-27 18:37:43 +02001972 }
Andi Kleend6b75582009-02-12 13:39:31 +01001973}
1974
Hidetoshi Seto767df1b2009-11-26 17:29:02 +09001975static void __cpuinit mce_reenable_cpu(void *h)
Andi Kleend6b75582009-02-12 13:39:31 +01001976{
Andi Kleen88ccbed2009-02-12 13:49:36 +01001977 unsigned long action = *(unsigned long *)h;
Ingo Molnare9eee032009-04-08 12:31:17 +02001978 int i;
Andi Kleend6b75582009-02-12 13:39:31 +01001979
1980 if (!mce_available(&current_cpu_data))
1981 return;
Ingo Molnare9eee032009-04-08 12:31:17 +02001982
Andi Kleen88ccbed2009-02-12 13:49:36 +01001983 if (!(action & CPU_TASKS_FROZEN))
1984 cmci_reenable();
Andi Kleen06b7a7a2009-04-27 18:37:43 +02001985 for (i = 0; i < banks; i++) {
Andi Kleencebe1822009-07-09 00:31:43 +02001986 struct mce_bank *b = &mce_banks[i];
Ingo Molnar11868a22009-09-23 17:49:55 +02001987
Andi Kleencebe1822009-07-09 00:31:43 +02001988 if (b->init)
Andi Kleena2d32bc2009-07-09 00:31:44 +02001989 wrmsrl(MSR_IA32_MCx_CTL(i), b->ctl);
Andi Kleen06b7a7a2009-04-27 18:37:43 +02001990 }
Andi Kleend6b75582009-02-12 13:39:31 +01001991}
1992
Andi Kleen91c6d402005-07-28 21:15:39 -07001993/* Get notified when a cpu comes on/off. Be hotplug friendly. */
Ingo Molnare9eee032009-04-08 12:31:17 +02001994static int __cpuinit
1995mce_cpu_callback(struct notifier_block *nfb, unsigned long action, void *hcpu)
Andi Kleen91c6d402005-07-28 21:15:39 -07001996{
1997 unsigned int cpu = (unsigned long)hcpu;
Andi Kleen52d168e2009-02-12 13:39:29 +01001998 struct timer_list *t = &per_cpu(mce_timer, cpu);
Andi Kleen91c6d402005-07-28 21:15:39 -07001999
2000 switch (action) {
Andreas Herrmannbae19fe2007-11-14 17:00:44 -08002001 case CPU_ONLINE:
2002 case CPU_ONLINE_FROZEN:
2003 mce_create_device(cpu);
Rafael J. Wysocki87357282008-08-22 22:23:09 +02002004 if (threshold_cpu_callback)
2005 threshold_cpu_callback(action, cpu);
Andi Kleen91c6d402005-07-28 21:15:39 -07002006 break;
Andi Kleen91c6d402005-07-28 21:15:39 -07002007 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07002008 case CPU_DEAD_FROZEN:
Rafael J. Wysocki87357282008-08-22 22:23:09 +02002009 if (threshold_cpu_callback)
2010 threshold_cpu_callback(action, cpu);
Andi Kleen91c6d402005-07-28 21:15:39 -07002011 mce_remove_device(cpu);
2012 break;
Andi Kleen52d168e2009-02-12 13:39:29 +01002013 case CPU_DOWN_PREPARE:
2014 case CPU_DOWN_PREPARE_FROZEN:
2015 del_timer_sync(t);
Andi Kleen88ccbed2009-02-12 13:49:36 +01002016 smp_call_function_single(cpu, mce_disable_cpu, &action, 1);
Andi Kleen52d168e2009-02-12 13:39:29 +01002017 break;
2018 case CPU_DOWN_FAILED:
2019 case CPU_DOWN_FAILED_FROZEN:
Hidetoshi Setofe5ed912009-12-03 11:33:08 +09002020 if (!mce_ignore_ce && check_interval) {
2021 t->expires = round_jiffies(jiffies +
Tejun Heo245b2e72009-06-24 15:13:48 +09002022 __get_cpu_var(mce_next_interval));
Hidetoshi Setofe5ed912009-12-03 11:33:08 +09002023 add_timer_on(t, cpu);
2024 }
Andi Kleen88ccbed2009-02-12 13:49:36 +01002025 smp_call_function_single(cpu, mce_reenable_cpu, &action, 1);
2026 break;
2027 case CPU_POST_DEAD:
2028 /* intentionally ignoring frozen here */
2029 cmci_rediscover(cpu);
Andi Kleen52d168e2009-02-12 13:39:29 +01002030 break;
Andi Kleen91c6d402005-07-28 21:15:39 -07002031 }
Andreas Herrmannbae19fe2007-11-14 17:00:44 -08002032 return NOTIFY_OK;
Andi Kleen91c6d402005-07-28 21:15:39 -07002033}
2034
Sam Ravnborg1e356692008-01-30 13:33:36 +01002035static struct notifier_block mce_cpu_notifier __cpuinitdata = {
Andi Kleen91c6d402005-07-28 21:15:39 -07002036 .notifier_call = mce_cpu_callback,
2037};
2038
Andi Kleencebe1822009-07-09 00:31:43 +02002039static __init void mce_init_banks(void)
Andi Kleen0d7482e32009-02-17 23:07:13 +01002040{
2041 int i;
2042
Andi Kleen0d7482e32009-02-17 23:07:13 +01002043 for (i = 0; i < banks; i++) {
Andi Kleencebe1822009-07-09 00:31:43 +02002044 struct mce_bank *b = &mce_banks[i];
2045 struct sysdev_attribute *a = &b->attr;
Ingo Molnare9eee032009-04-08 12:31:17 +02002046
Eric W. Biedermana07e4152010-02-11 15:23:05 -08002047 sysfs_attr_init(&a->attr);
Andi Kleencebe1822009-07-09 00:31:43 +02002048 a->attr.name = b->attrname;
2049 snprintf(b->attrname, ATTR_LEN, "bank%d", i);
Ingo Molnare9eee032009-04-08 12:31:17 +02002050
2051 a->attr.mode = 0644;
2052 a->show = show_bank;
2053 a->store = set_bank;
Andi Kleen0d7482e32009-02-17 23:07:13 +01002054 }
Andi Kleen0d7482e32009-02-17 23:07:13 +01002055}
2056
Borislav Petkov5e099542009-10-16 12:31:32 +02002057static __init int mcheck_init_device(void)
Andi Kleen91c6d402005-07-28 21:15:39 -07002058{
2059 int err;
2060 int i = 0;
2061
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 if (!mce_available(&boot_cpu_data))
2063 return -EIO;
Andi Kleen0d7482e32009-02-17 23:07:13 +01002064
Yinghai Lue92fae02009-06-17 16:21:33 -07002065 zalloc_cpumask_var(&mce_dev_initialized, GFP_KERNEL);
Rusty Russell996867d2009-03-13 14:49:51 +10302066
Andi Kleencebe1822009-07-09 00:31:43 +02002067 mce_init_banks();
Andi Kleen0d7482e32009-02-17 23:07:13 +01002068
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 err = sysdev_class_register(&mce_sysclass);
Akinobu Mitad435d862007-10-18 03:05:15 -07002070 if (err)
2071 return err;
Andi Kleen91c6d402005-07-28 21:15:39 -07002072
2073 for_each_online_cpu(i) {
Akinobu Mitad435d862007-10-18 03:05:15 -07002074 err = mce_create_device(i);
2075 if (err)
2076 return err;
Andi Kleen91c6d402005-07-28 21:15:39 -07002077 }
2078
Chandra Seetharamanbe6b5a32006-07-30 03:03:37 -07002079 register_hotcpu_notifier(&mce_cpu_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 misc_register(&mce_log_device);
Ingo Molnare9eee032009-04-08 12:31:17 +02002081
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083}
Andi Kleen91c6d402005-07-28 21:15:39 -07002084
Borislav Petkov5e099542009-10-16 12:31:32 +02002085device_initcall(mcheck_init_device);
Ingo Molnara988d332009-04-08 12:31:25 +02002086
Andi Kleend7c3c9a2009-04-28 23:07:25 +02002087/*
2088 * Old style boot options parsing. Only for compatibility.
2089 */
2090static int __init mcheck_disable(char *str)
2091{
2092 mce_disabled = 1;
2093 return 1;
2094}
2095__setup("nomce", mcheck_disable);
Huang Ying5be9ed22009-07-31 09:41:42 +08002096
2097#ifdef CONFIG_DEBUG_FS
2098struct dentry *mce_get_debugfs_dir(void)
2099{
2100 static struct dentry *dmce;
2101
2102 if (!dmce)
2103 dmce = debugfs_create_dir("mce", NULL);
2104
2105 return dmce;
2106}
Huang Yingbf783f92009-07-31 09:41:43 +08002107
2108static void mce_reset(void)
2109{
2110 cpu_missing = 0;
2111 atomic_set(&mce_fake_paniced, 0);
2112 atomic_set(&mce_executing, 0);
2113 atomic_set(&mce_callin, 0);
2114 atomic_set(&global_nwo, 0);
2115}
2116
2117static int fake_panic_get(void *data, u64 *val)
2118{
2119 *val = fake_panic;
2120 return 0;
2121}
2122
2123static int fake_panic_set(void *data, u64 val)
2124{
2125 mce_reset();
2126 fake_panic = val;
2127 return 0;
2128}
2129
2130DEFINE_SIMPLE_ATTRIBUTE(fake_panic_fops, fake_panic_get,
2131 fake_panic_set, "%llu\n");
2132
Borislav Petkov5e099542009-10-16 12:31:32 +02002133static int __init mcheck_debugfs_init(void)
Huang Yingbf783f92009-07-31 09:41:43 +08002134{
2135 struct dentry *dmce, *ffake_panic;
2136
2137 dmce = mce_get_debugfs_dir();
2138 if (!dmce)
2139 return -ENOMEM;
2140 ffake_panic = debugfs_create_file("fake_panic", 0444, dmce, NULL,
2141 &fake_panic_fops);
2142 if (!ffake_panic)
2143 return -ENOMEM;
2144
2145 return 0;
2146}
Borislav Petkov5e099542009-10-16 12:31:32 +02002147late_initcall(mcheck_debugfs_init);
Huang Ying5be9ed22009-07-31 09:41:42 +08002148#endif