blob: 3ab9c886b61338e80f9a4f4fbc66814fc177f58b [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
Ingo Molnar2aa2b502010-03-14 08:57:03 +010049static DEFINE_MUTEX(mce_read_mutex);
50
Paul E. McKenneyf56e8a02010-03-05 15:03:27 -080051#define rcu_dereference_check_mce(p) \
52 rcu_dereference_check((p), \
53 rcu_read_lock_sched_held() || \
54 lockdep_is_held(&mce_read_mutex))
55
Hidetoshi Seto8968f9d2009-10-13 16:19:41 +090056#define CREATE_TRACE_POINTS
57#include <trace/events/mce.h>
58
Hidetoshi Seto4e5b3e62009-06-15 17:20:20 +090059int mce_disabled __read_mostly;
Andi Kleen04b2b1a2009-04-28 22:50:19 +020060
Ingo Molnare9eee032009-04-08 12:31:17 +020061#define MISC_MCELOG_MINOR 227
Andi Kleen0d7482e32009-02-17 23:07:13 +010062
Andi Kleen3c079792009-05-27 21:56:55 +020063#define SPINUNIT 100 /* 100ns */
64
Andi Kleen553f2652006-04-07 19:49:57 +020065atomic_t mce_entry;
66
Andi Kleen01ca79f2009-05-27 21:56:52 +020067DEFINE_PER_CPU(unsigned, mce_exception_count);
68
Tim Hockinbd784322007-07-21 17:10:37 +020069/*
70 * Tolerant levels:
71 * 0: always panic on uncorrected errors, log corrected errors
72 * 1: panic or SIGBUS on uncorrected errors, log corrected errors
73 * 2: SIGBUS or log uncorrected errors (if possible), log corrected errors
74 * 3: never panic or SIGBUS, log all errors (for testing only)
75 */
Hidetoshi Seto4e5b3e62009-06-15 17:20:20 +090076static int tolerant __read_mostly = 1;
77static int banks __read_mostly;
Hidetoshi Seto4e5b3e62009-06-15 17:20:20 +090078static int rip_msr __read_mostly;
79static int mce_bootlog __read_mostly = -1;
80static int monarch_timeout __read_mostly = -1;
81static int mce_panic_timeout __read_mostly;
82static int mce_dont_log_ce __read_mostly;
83int mce_cmci_disabled __read_mostly;
84int mce_ignore_ce __read_mostly;
85int mce_ser __read_mostly;
Andi Kleena98f0dd2007-02-13 13:26:23 +010086
Andi Kleencebe1822009-07-09 00:31:43 +020087struct mce_bank *mce_banks __read_mostly;
88
Hidetoshi Seto1020bcb2009-06-15 17:20:57 +090089/* User mode helper program triggered by machine check event */
90static unsigned long mce_need_notify;
91static char mce_helper[128];
92static char *mce_helper_argv[2] = { mce_helper, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Tim Hockine02e68d2007-07-21 17:10:36 +020094static DECLARE_WAIT_QUEUE_HEAD(mce_wait);
Andi Kleen3c079792009-05-27 21:56:55 +020095static DEFINE_PER_CPU(struct mce, mces_seen);
96static int cpu_missing;
97
Borislav Petkovfb253192009-10-07 13:20:38 +020098/*
99 * CPU/chipset specific EDAC code can register a notifier call here to print
100 * MCE errors in a human-readable form.
101 */
102ATOMIC_NOTIFIER_HEAD(x86_mce_decoder_chain);
103EXPORT_SYMBOL_GPL(x86_mce_decoder_chain);
104
105static int default_decode_mce(struct notifier_block *nb, unsigned long val,
106 void *data)
Ingo Molnarf436f8b2009-10-01 16:14:32 +0200107{
108 pr_emerg("No human readable MCE decoding support on this CPU type.\n");
109 pr_emerg("Run the message through 'mcelog --ascii' to decode.\n");
Borislav Petkovfb253192009-10-07 13:20:38 +0200110
111 return NOTIFY_STOP;
Ingo Molnarf436f8b2009-10-01 16:14:32 +0200112}
113
Borislav Petkovfb253192009-10-07 13:20:38 +0200114static struct notifier_block mce_dec_nb = {
115 .notifier_call = default_decode_mce,
116 .priority = -1,
117};
Tim Hockine02e68d2007-07-21 17:10:36 +0200118
Andi Kleenee031c32009-02-12 13:49:34 +0100119/* MCA banks polled by the period polling timer for corrected events */
120DEFINE_PER_CPU(mce_banks_t, mce_poll_banks) = {
121 [0 ... BITS_TO_LONGS(MAX_NR_BANKS)-1] = ~0UL
122};
123
Andi Kleen9b1beaf2009-05-27 21:56:59 +0200124static DEFINE_PER_CPU(struct work_struct, mce_work);
125
Andi Kleenb5f2fa42009-02-12 13:43:22 +0100126/* Do initial initialization of a struct mce */
127void mce_setup(struct mce *m)
128{
129 memset(m, 0, sizeof(struct mce));
Andi Kleend620c672009-05-27 21:56:56 +0200130 m->cpu = m->extcpu = smp_processor_id();
Andi Kleenb5f2fa42009-02-12 13:43:22 +0100131 rdtscll(m->tsc);
Andi Kleen8ee08342009-05-27 21:56:56 +0200132 /* We hope get_seconds stays lockless */
133 m->time = get_seconds();
134 m->cpuvendor = boot_cpu_data.x86_vendor;
135 m->cpuid = cpuid_eax(1);
136#ifdef CONFIG_SMP
137 m->socketid = cpu_data(m->extcpu).phys_proc_id;
138#endif
139 m->apicid = cpu_data(m->extcpu).initial_apicid;
140 rdmsrl(MSR_IA32_MCG_CAP, m->mcgcap);
Andi Kleenb5f2fa42009-02-12 13:43:22 +0100141}
142
Andi Kleenea149b32009-04-29 19:31:00 +0200143DEFINE_PER_CPU(struct mce, injectm);
144EXPORT_PER_CPU_SYMBOL_GPL(injectm);
145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146/*
147 * Lockless MCE logging infrastructure.
148 * This avoids deadlocks on printk locks without having to break locks. Also
149 * separate MCEs from kernel messages to avoid bogus bug reports.
150 */
151
Adrian Bunk231fd902008-01-30 13:30:30 +0100152static struct mce_log mcelog = {
Andi Kleenf6fb0ac2009-05-27 21:56:55 +0200153 .signature = MCE_LOG_SIGNATURE,
154 .len = MCE_LOG_LEN,
155 .recordlen = sizeof(struct mce),
Thomas Gleixnerd88203d2007-10-23 22:37:23 +0200156};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
158void mce_log(struct mce *mce)
159{
160 unsigned next, entry;
Ingo Molnare9eee032009-04-08 12:31:17 +0200161
Hidetoshi Seto8968f9d2009-10-13 16:19:41 +0900162 /* Emit the trace record: */
163 trace_mce_record(mce);
164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 mce->finished = 0;
Mike Waychison76441432005-09-30 00:01:27 +0200166 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 for (;;) {
Paul E. McKenneyf56e8a02010-03-05 15:03:27 -0800168 entry = rcu_dereference_check_mce(mcelog.next);
Andi Kleen673242c2005-09-12 18:49:24 +0200169 for (;;) {
Ingo Molnare9eee032009-04-08 12:31:17 +0200170 /*
171 * When the buffer fills up discard new entries.
172 * Assume that the earlier errors are the more
173 * interesting ones:
174 */
Andi Kleen673242c2005-09-12 18:49:24 +0200175 if (entry >= MCE_LOG_LEN) {
Hidetoshi Seto14a02532009-04-30 16:04:51 +0900176 set_bit(MCE_OVERFLOW,
177 (unsigned long *)&mcelog.flags);
Andi Kleen673242c2005-09-12 18:49:24 +0200178 return;
179 }
Ingo Molnare9eee032009-04-08 12:31:17 +0200180 /* Old left over entry. Skip: */
Andi Kleen673242c2005-09-12 18:49:24 +0200181 if (mcelog.entry[entry].finished) {
182 entry++;
183 continue;
184 }
Mike Waychison76441432005-09-30 00:01:27 +0200185 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 smp_rmb();
188 next = entry + 1;
189 if (cmpxchg(&mcelog.next, entry, next) == entry)
190 break;
191 }
192 memcpy(mcelog.entry + entry, mce, sizeof(struct mce));
Mike Waychison76441432005-09-30 00:01:27 +0200193 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 mcelog.entry[entry].finished = 1;
Mike Waychison76441432005-09-30 00:01:27 +0200195 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
Andi Kleena0189c72009-05-27 21:56:54 +0200197 mce->finished = 1;
Hidetoshi Seto1020bcb2009-06-15 17:20:57 +0900198 set_bit(0, &mce_need_notify);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199}
200
Hidetoshi Seto77e26cc2009-06-11 16:04:35 +0900201static void print_mce(struct mce *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202{
Ingo Molnarf436f8b2009-10-01 16:14:32 +0200203 pr_emerg("CPU %d: Machine Check Exception: %16Lx Bank %d: %016Lx\n",
Andi Kleend620c672009-05-27 21:56:56 +0200204 m->extcpu, m->mcgstatus, m->bank, m->status);
Ingo Molnarf436f8b2009-10-01 16:14:32 +0200205
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100206 if (m->ip) {
Ingo Molnarf436f8b2009-10-01 16:14:32 +0200207 pr_emerg("RIP%s %02x:<%016Lx> ",
208 !(m->mcgstatus & MCG_STATUS_EIPV) ? " !INEXACT!" : "",
209 m->cs, m->ip);
210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 if (m->cs == __KERNEL_CS)
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100212 print_symbol("{%s}", m->ip);
Ingo Molnarf436f8b2009-10-01 16:14:32 +0200213 pr_cont("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 }
Borislav Petkov549d0422009-07-24 13:51:42 +0200215
Ingo Molnarf436f8b2009-10-01 16:14:32 +0200216 pr_emerg("TSC %llx ", m->tsc);
217 if (m->addr)
218 pr_cont("ADDR %llx ", m->addr);
219 if (m->misc)
220 pr_cont("MISC %llx ", m->misc);
221
222 pr_cont("\n");
223 pr_emerg("PROCESSOR %u:%x TIME %llu SOCKET %u APIC %x\n",
224 m->cpuvendor, m->cpuid, m->time, m->socketid, m->apicid);
225
226 /*
227 * Print out human-readable details about the MCE error,
Borislav Petkovfb253192009-10-07 13:20:38 +0200228 * (if the CPU has an implementation for that)
Ingo Molnarf436f8b2009-10-01 16:14:32 +0200229 */
Borislav Petkovfb253192009-10-07 13:20:38 +0200230 atomic_notifier_call_chain(&x86_mce_decoder_chain, 0, m);
Andi Kleen86503562009-05-27 21:56:58 +0200231}
232
Hidetoshi Seto77e26cc2009-06-11 16:04:35 +0900233static void print_mce_head(void)
234{
Ingo Molnarf436f8b2009-10-01 16:14:32 +0200235 pr_emerg("\nHARDWARE ERROR\n");
Hidetoshi Seto77e26cc2009-06-11 16:04:35 +0900236}
237
Andi Kleen86503562009-05-27 21:56:58 +0200238static void print_mce_tail(void)
239{
Ingo Molnarf436f8b2009-10-01 16:14:32 +0200240 pr_emerg("This is not a software problem!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241}
242
Andi Kleenf94b61c2009-05-27 21:56:55 +0200243#define PANIC_TIMEOUT 5 /* 5 seconds */
244
245static atomic_t mce_paniced;
246
Huang Yingbf783f92009-07-31 09:41:43 +0800247static int fake_panic;
248static atomic_t mce_fake_paniced;
249
Andi Kleenf94b61c2009-05-27 21:56:55 +0200250/* Panic in progress. Enable interrupts and wait for final IPI */
251static void wait_for_panic(void)
252{
253 long timeout = PANIC_TIMEOUT*USEC_PER_SEC;
Ingo Molnarf436f8b2009-10-01 16:14:32 +0200254
Andi Kleenf94b61c2009-05-27 21:56:55 +0200255 preempt_disable();
256 local_irq_enable();
257 while (timeout-- > 0)
258 udelay(1);
Andi Kleen29b0f592009-05-27 21:56:56 +0200259 if (panic_timeout == 0)
260 panic_timeout = mce_panic_timeout;
Andi Kleenf94b61c2009-05-27 21:56:55 +0200261 panic("Panicing machine check CPU died");
262}
263
Andi Kleenbd19a5e2009-05-27 21:56:55 +0200264static void mce_panic(char *msg, struct mce *final, char *exp)
Thomas Gleixnerd88203d2007-10-23 22:37:23 +0200265{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 int i;
Tim Hockine02e68d2007-07-21 17:10:36 +0200267
Huang Yingbf783f92009-07-31 09:41:43 +0800268 if (!fake_panic) {
269 /*
270 * Make sure only one CPU runs in machine check panic
271 */
272 if (atomic_inc_return(&mce_paniced) > 1)
273 wait_for_panic();
274 barrier();
Andi Kleenf94b61c2009-05-27 21:56:55 +0200275
Huang Yingbf783f92009-07-31 09:41:43 +0800276 bust_spinlocks(1);
277 console_verbose();
278 } else {
279 /* Don't log too much for fake panic */
280 if (atomic_inc_return(&mce_fake_paniced) > 1)
281 return;
282 }
Hidetoshi Seto77e26cc2009-06-11 16:04:35 +0900283 print_mce_head();
Andi Kleena0189c72009-05-27 21:56:54 +0200284 /* First print corrected ones that are still unlogged */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 for (i = 0; i < MCE_LOG_LEN; i++) {
Andi Kleena0189c72009-05-27 21:56:54 +0200286 struct mce *m = &mcelog.entry[i];
Hidetoshi Seto77e26cc2009-06-11 16:04:35 +0900287 if (!(m->status & MCI_STATUS_VAL))
288 continue;
289 if (!(m->status & MCI_STATUS_UC))
290 print_mce(m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 }
Andi Kleena0189c72009-05-27 21:56:54 +0200292 /* Now print uncorrected but with the final one last */
293 for (i = 0; i < MCE_LOG_LEN; i++) {
294 struct mce *m = &mcelog.entry[i];
295 if (!(m->status & MCI_STATUS_VAL))
296 continue;
Hidetoshi Seto77e26cc2009-06-11 16:04:35 +0900297 if (!(m->status & MCI_STATUS_UC))
298 continue;
Andi Kleena0189c72009-05-27 21:56:54 +0200299 if (!final || memcmp(m, final, sizeof(struct mce)))
Hidetoshi Seto77e26cc2009-06-11 16:04:35 +0900300 print_mce(m);
Andi Kleena0189c72009-05-27 21:56:54 +0200301 }
302 if (final)
Hidetoshi Seto77e26cc2009-06-11 16:04:35 +0900303 print_mce(final);
Andi Kleen3c079792009-05-27 21:56:55 +0200304 if (cpu_missing)
305 printk(KERN_EMERG "Some CPUs didn't answer in synchronization\n");
Andi Kleen86503562009-05-27 21:56:58 +0200306 print_mce_tail();
Andi Kleenbd19a5e2009-05-27 21:56:55 +0200307 if (exp)
308 printk(KERN_EMERG "Machine check: %s\n", exp);
Huang Yingbf783f92009-07-31 09:41:43 +0800309 if (!fake_panic) {
310 if (panic_timeout == 0)
311 panic_timeout = mce_panic_timeout;
312 panic(msg);
313 } else
314 printk(KERN_EMERG "Fake kernel panic: %s\n", msg);
Thomas Gleixnerd88203d2007-10-23 22:37:23 +0200315}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
Andi Kleenea149b32009-04-29 19:31:00 +0200317/* Support code for software error injection */
318
319static int msr_to_offset(u32 msr)
320{
321 unsigned bank = __get_cpu_var(injectm.bank);
Ingo Molnarf436f8b2009-10-01 16:14:32 +0200322
Andi Kleenea149b32009-04-29 19:31:00 +0200323 if (msr == rip_msr)
324 return offsetof(struct mce, ip);
Andi Kleena2d32bc2009-07-09 00:31:44 +0200325 if (msr == MSR_IA32_MCx_STATUS(bank))
Andi Kleenea149b32009-04-29 19:31:00 +0200326 return offsetof(struct mce, status);
Andi Kleena2d32bc2009-07-09 00:31:44 +0200327 if (msr == MSR_IA32_MCx_ADDR(bank))
Andi Kleenea149b32009-04-29 19:31:00 +0200328 return offsetof(struct mce, addr);
Andi Kleena2d32bc2009-07-09 00:31:44 +0200329 if (msr == MSR_IA32_MCx_MISC(bank))
Andi Kleenea149b32009-04-29 19:31:00 +0200330 return offsetof(struct mce, misc);
331 if (msr == MSR_IA32_MCG_STATUS)
332 return offsetof(struct mce, mcgstatus);
333 return -1;
334}
335
Andi Kleen5f8c1a52009-04-29 19:29:12 +0200336/* MSR access wrappers used for error injection */
337static u64 mce_rdmsrl(u32 msr)
338{
339 u64 v;
Ingo Molnar11868a22009-09-23 17:49:55 +0200340
Andi Kleenea149b32009-04-29 19:31:00 +0200341 if (__get_cpu_var(injectm).finished) {
342 int offset = msr_to_offset(msr);
Ingo Molnar11868a22009-09-23 17:49:55 +0200343
Andi Kleenea149b32009-04-29 19:31:00 +0200344 if (offset < 0)
345 return 0;
346 return *(u64 *)((char *)&__get_cpu_var(injectm) + offset);
347 }
Ingo Molnar11868a22009-09-23 17:49:55 +0200348
349 if (rdmsrl_safe(msr, &v)) {
350 WARN_ONCE(1, "mce: Unable to read msr %d!\n", msr);
351 /*
352 * Return zero in case the access faulted. This should
353 * not happen normally but can happen if the CPU does
354 * something weird, or if the code is buggy.
355 */
356 v = 0;
357 }
358
Andi Kleen5f8c1a52009-04-29 19:29:12 +0200359 return v;
360}
361
362static void mce_wrmsrl(u32 msr, u64 v)
363{
Andi Kleenea149b32009-04-29 19:31:00 +0200364 if (__get_cpu_var(injectm).finished) {
365 int offset = msr_to_offset(msr);
Ingo Molnar11868a22009-09-23 17:49:55 +0200366
Andi Kleenea149b32009-04-29 19:31:00 +0200367 if (offset >= 0)
368 *(u64 *)((char *)&__get_cpu_var(injectm) + offset) = v;
369 return;
370 }
Andi Kleen5f8c1a52009-04-29 19:29:12 +0200371 wrmsrl(msr, v);
372}
373
Andi Kleen9b1beaf2009-05-27 21:56:59 +0200374/*
375 * Simple lockless ring to communicate PFNs from the exception handler with the
376 * process context work function. This is vastly simplified because there's
377 * only a single reader and a single writer.
378 */
379#define MCE_RING_SIZE 16 /* we use one entry less */
380
381struct mce_ring {
382 unsigned short start;
383 unsigned short end;
384 unsigned long ring[MCE_RING_SIZE];
385};
386static DEFINE_PER_CPU(struct mce_ring, mce_ring);
387
388/* Runs with CPU affinity in workqueue */
389static int mce_ring_empty(void)
390{
391 struct mce_ring *r = &__get_cpu_var(mce_ring);
392
393 return r->start == r->end;
394}
395
396static int mce_ring_get(unsigned long *pfn)
397{
398 struct mce_ring *r;
399 int ret = 0;
400
401 *pfn = 0;
402 get_cpu();
403 r = &__get_cpu_var(mce_ring);
404 if (r->start == r->end)
405 goto out;
406 *pfn = r->ring[r->start];
407 r->start = (r->start + 1) % MCE_RING_SIZE;
408 ret = 1;
409out:
410 put_cpu();
411 return ret;
412}
413
414/* Always runs in MCE context with preempt off */
415static int mce_ring_add(unsigned long pfn)
416{
417 struct mce_ring *r = &__get_cpu_var(mce_ring);
418 unsigned next;
419
420 next = (r->end + 1) % MCE_RING_SIZE;
421 if (next == r->start)
422 return -1;
423 r->ring[r->end] = pfn;
424 wmb();
425 r->end = next;
426 return 0;
427}
428
Andi Kleen88ccbed2009-02-12 13:49:36 +0100429int mce_available(struct cpuinfo_x86 *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430{
Andi Kleen04b2b1a2009-04-28 22:50:19 +0200431 if (mce_disabled)
Andi Kleen5b4408f2009-02-12 13:39:30 +0100432 return 0;
Akinobu Mita3d1712c2006-03-24 03:15:11 -0800433 return cpu_has(c, X86_FEATURE_MCE) && cpu_has(c, X86_FEATURE_MCA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434}
435
Andi Kleen9b1beaf2009-05-27 21:56:59 +0200436static void mce_schedule_work(void)
437{
438 if (!mce_ring_empty()) {
439 struct work_struct *work = &__get_cpu_var(mce_work);
440 if (!work_pending(work))
441 schedule_work(work);
442 }
443}
444
Huang Ying1b2797d2009-05-27 21:56:51 +0200445/*
446 * Get the address of the instruction at the time of the machine check
447 * error.
448 */
Andi Kleen94ad8472005-04-16 15:25:09 -0700449static inline void mce_get_rip(struct mce *m, struct pt_regs *regs)
450{
Huang Ying1b2797d2009-05-27 21:56:51 +0200451
452 if (regs && (m->mcgstatus & (MCG_STATUS_RIPV|MCG_STATUS_EIPV))) {
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100453 m->ip = regs->ip;
Andi Kleen94ad8472005-04-16 15:25:09 -0700454 m->cs = regs->cs;
455 } else {
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100456 m->ip = 0;
Andi Kleen94ad8472005-04-16 15:25:09 -0700457 m->cs = 0;
458 }
Huang Ying1b2797d2009-05-27 21:56:51 +0200459 if (rip_msr)
Andi Kleen5f8c1a52009-04-29 19:29:12 +0200460 m->ip = mce_rdmsrl(rip_msr);
Andi Kleen94ad8472005-04-16 15:25:09 -0700461}
462
Ingo Molnar11868a22009-09-23 17:49:55 +0200463#ifdef CONFIG_X86_LOCAL_APIC
Andi Kleenccc3c312009-05-27 21:56:54 +0200464/*
465 * Called after interrupts have been reenabled again
466 * when a MCE happened during an interrupts off region
467 * in the kernel.
468 */
469asmlinkage void smp_mce_self_interrupt(struct pt_regs *regs)
470{
471 ack_APIC_irq();
472 exit_idle();
473 irq_enter();
Andi Kleen9ff36ee2009-05-27 21:56:58 +0200474 mce_notify_irq();
Andi Kleen9b1beaf2009-05-27 21:56:59 +0200475 mce_schedule_work();
Andi Kleenccc3c312009-05-27 21:56:54 +0200476 irq_exit();
477}
478#endif
479
480static void mce_report_event(struct pt_regs *regs)
481{
482 if (regs->flags & (X86_VM_MASK|X86_EFLAGS_IF)) {
Andi Kleen9ff36ee2009-05-27 21:56:58 +0200483 mce_notify_irq();
Andi Kleen9b1beaf2009-05-27 21:56:59 +0200484 /*
485 * Triggering the work queue here is just an insurance
486 * policy in case the syscall exit notify handler
487 * doesn't run soon enough or ends up running on the
488 * wrong CPU (can happen when audit sleeps)
489 */
490 mce_schedule_work();
Andi Kleenccc3c312009-05-27 21:56:54 +0200491 return;
492 }
493
494#ifdef CONFIG_X86_LOCAL_APIC
495 /*
496 * Without APIC do not notify. The event will be picked
497 * up eventually.
498 */
499 if (!cpu_has_apic)
500 return;
501
502 /*
503 * When interrupts are disabled we cannot use
504 * kernel services safely. Trigger an self interrupt
505 * through the APIC to instead do the notification
506 * after interrupts are reenabled again.
507 */
508 apic->send_IPI_self(MCE_SELF_VECTOR);
509
510 /*
511 * Wait for idle afterwards again so that we don't leave the
512 * APIC in a non idle state because the normal APIC writes
513 * cannot exclude us.
514 */
515 apic_wait_icr_idle();
516#endif
517}
518
Andi Kleenca84f692009-05-27 21:56:57 +0200519DEFINE_PER_CPU(unsigned, mce_poll_count);
520
Thomas Gleixnerd88203d2007-10-23 22:37:23 +0200521/*
Andi Kleenb79109c2009-02-12 13:43:23 +0100522 * Poll for corrected events or events that happened before reset.
523 * Those are just logged through /dev/mcelog.
524 *
525 * This is executed in standard interrupt context.
Andi Kleened7290d2009-05-27 21:56:57 +0200526 *
527 * Note: spec recommends to panic for fatal unsignalled
528 * errors here. However this would be quite problematic --
529 * we would need to reimplement the Monarch handling and
530 * it would mess up the exclusion between exception handler
531 * and poll hander -- * so we skip this for now.
532 * These cases should not happen anyways, or only when the CPU
533 * is already totally * confused. In this case it's likely it will
534 * not fully execute the machine check handler either.
Andi Kleenb79109c2009-02-12 13:43:23 +0100535 */
Andi Kleenee031c32009-02-12 13:49:34 +0100536void machine_check_poll(enum mcp_flags flags, mce_banks_t *b)
Andi Kleenb79109c2009-02-12 13:43:23 +0100537{
538 struct mce m;
539 int i;
540
Andi Kleenca84f692009-05-27 21:56:57 +0200541 __get_cpu_var(mce_poll_count)++;
542
Andi Kleenb79109c2009-02-12 13:43:23 +0100543 mce_setup(&m);
544
Andi Kleen5f8c1a52009-04-29 19:29:12 +0200545 m.mcgstatus = mce_rdmsrl(MSR_IA32_MCG_STATUS);
Andi Kleenb79109c2009-02-12 13:43:23 +0100546 for (i = 0; i < banks; i++) {
Andi Kleencebe1822009-07-09 00:31:43 +0200547 if (!mce_banks[i].ctl || !test_bit(i, *b))
Andi Kleenb79109c2009-02-12 13:43:23 +0100548 continue;
549
550 m.misc = 0;
551 m.addr = 0;
552 m.bank = i;
553 m.tsc = 0;
554
555 barrier();
Andi Kleena2d32bc2009-07-09 00:31:44 +0200556 m.status = mce_rdmsrl(MSR_IA32_MCx_STATUS(i));
Andi Kleenb79109c2009-02-12 13:43:23 +0100557 if (!(m.status & MCI_STATUS_VAL))
558 continue;
559
560 /*
Andi Kleened7290d2009-05-27 21:56:57 +0200561 * Uncorrected or signalled events are handled by the exception
562 * handler when it is enabled, so don't process those here.
Andi Kleenb79109c2009-02-12 13:43:23 +0100563 *
564 * TBD do the same check for MCI_STATUS_EN here?
565 */
Andi Kleened7290d2009-05-27 21:56:57 +0200566 if (!(flags & MCP_UC) &&
567 (m.status & (mce_ser ? MCI_STATUS_S : MCI_STATUS_UC)))
Andi Kleenb79109c2009-02-12 13:43:23 +0100568 continue;
569
570 if (m.status & MCI_STATUS_MISCV)
Andi Kleena2d32bc2009-07-09 00:31:44 +0200571 m.misc = mce_rdmsrl(MSR_IA32_MCx_MISC(i));
Andi Kleenb79109c2009-02-12 13:43:23 +0100572 if (m.status & MCI_STATUS_ADDRV)
Andi Kleena2d32bc2009-07-09 00:31:44 +0200573 m.addr = mce_rdmsrl(MSR_IA32_MCx_ADDR(i));
Andi Kleenb79109c2009-02-12 13:43:23 +0100574
575 if (!(flags & MCP_TIMESTAMP))
576 m.tsc = 0;
577 /*
578 * Don't get the IP here because it's unlikely to
579 * have anything to do with the actual error location.
580 */
Hidetoshi Seto62fdac52009-06-11 16:06:07 +0900581 if (!(flags & MCP_DONTLOG) && !mce_dont_log_ce) {
Andi Kleen5679af42009-04-07 17:06:55 +0200582 mce_log(&m);
583 add_taint(TAINT_MACHINE_CHECK);
584 }
Andi Kleenb79109c2009-02-12 13:43:23 +0100585
586 /*
587 * Clear state for this bank.
588 */
Andi Kleena2d32bc2009-07-09 00:31:44 +0200589 mce_wrmsrl(MSR_IA32_MCx_STATUS(i), 0);
Andi Kleenb79109c2009-02-12 13:43:23 +0100590 }
591
592 /*
593 * Don't clear MCG_STATUS here because it's only defined for
594 * exceptions.
595 */
Andi Kleen88921be2009-05-27 21:56:51 +0200596
597 sync_core();
Andi Kleenb79109c2009-02-12 13:43:23 +0100598}
Andi Kleenea149b32009-04-29 19:31:00 +0200599EXPORT_SYMBOL_GPL(machine_check_poll);
Andi Kleenb79109c2009-02-12 13:43:23 +0100600
601/*
Andi Kleenbd19a5e2009-05-27 21:56:55 +0200602 * Do a quick check if any of the events requires a panic.
603 * This decides if we keep the events around or clear them.
604 */
605static int mce_no_way_out(struct mce *m, char **msg)
606{
607 int i;
608
609 for (i = 0; i < banks; i++) {
Andi Kleena2d32bc2009-07-09 00:31:44 +0200610 m->status = mce_rdmsrl(MSR_IA32_MCx_STATUS(i));
Andi Kleenbd19a5e2009-05-27 21:56:55 +0200611 if (mce_severity(m, tolerant, msg) >= MCE_PANIC_SEVERITY)
612 return 1;
613 }
614 return 0;
615}
616
617/*
Andi Kleen3c079792009-05-27 21:56:55 +0200618 * Variable to establish order between CPUs while scanning.
619 * Each CPU spins initially until executing is equal its number.
620 */
621static atomic_t mce_executing;
622
623/*
624 * Defines order of CPUs on entry. First CPU becomes Monarch.
625 */
626static atomic_t mce_callin;
627
628/*
629 * Check if a timeout waiting for other CPUs happened.
630 */
631static int mce_timed_out(u64 *t)
632{
633 /*
634 * The others already did panic for some reason.
635 * Bail out like in a timeout.
636 * rmb() to tell the compiler that system_state
637 * might have been modified by someone else.
638 */
639 rmb();
640 if (atomic_read(&mce_paniced))
641 wait_for_panic();
642 if (!monarch_timeout)
643 goto out;
644 if ((s64)*t < SPINUNIT) {
645 /* CHECKME: Make panic default for 1 too? */
646 if (tolerant < 1)
647 mce_panic("Timeout synchronizing machine check over CPUs",
648 NULL, NULL);
649 cpu_missing = 1;
650 return 1;
651 }
652 *t -= SPINUNIT;
653out:
654 touch_nmi_watchdog();
655 return 0;
656}
657
658/*
659 * The Monarch's reign. The Monarch is the CPU who entered
660 * the machine check handler first. It waits for the others to
661 * raise the exception too and then grades them. When any
662 * error is fatal panic. Only then let the others continue.
663 *
664 * The other CPUs entering the MCE handler will be controlled by the
665 * Monarch. They are called Subjects.
666 *
667 * This way we prevent any potential data corruption in a unrecoverable case
668 * and also makes sure always all CPU's errors are examined.
669 *
Hidetoshi Seto680b6cf2009-08-26 16:20:36 +0900670 * Also this detects the case of a machine check event coming from outer
Andi Kleen3c079792009-05-27 21:56:55 +0200671 * space (not detected by any CPUs) In this case some external agent wants
672 * us to shut down, so panic too.
673 *
674 * The other CPUs might still decide to panic if the handler happens
675 * in a unrecoverable place, but in this case the system is in a semi-stable
676 * state and won't corrupt anything by itself. It's ok to let the others
677 * continue for a bit first.
678 *
679 * All the spin loops have timeouts; when a timeout happens a CPU
680 * typically elects itself to be Monarch.
681 */
682static void mce_reign(void)
683{
684 int cpu;
685 struct mce *m = NULL;
686 int global_worst = 0;
687 char *msg = NULL;
688 char *nmsg = NULL;
689
690 /*
691 * This CPU is the Monarch and the other CPUs have run
692 * through their handlers.
693 * Grade the severity of the errors of all the CPUs.
694 */
695 for_each_possible_cpu(cpu) {
696 int severity = mce_severity(&per_cpu(mces_seen, cpu), tolerant,
697 &nmsg);
698 if (severity > global_worst) {
699 msg = nmsg;
700 global_worst = severity;
701 m = &per_cpu(mces_seen, cpu);
702 }
703 }
704
705 /*
706 * Cannot recover? Panic here then.
707 * This dumps all the mces in the log buffer and stops the
708 * other CPUs.
709 */
710 if (m && global_worst >= MCE_PANIC_SEVERITY && tolerant < 3)
Andi Kleenac960372009-05-27 21:56:58 +0200711 mce_panic("Fatal Machine check", m, msg);
Andi Kleen3c079792009-05-27 21:56:55 +0200712
713 /*
714 * For UC somewhere we let the CPU who detects it handle it.
715 * Also must let continue the others, otherwise the handling
716 * CPU could deadlock on a lock.
717 */
718
719 /*
720 * No machine check event found. Must be some external
721 * source or one CPU is hung. Panic.
722 */
Hidetoshi Seto680b6cf2009-08-26 16:20:36 +0900723 if (global_worst <= MCE_KEEP_SEVERITY && tolerant < 3)
Andi Kleen3c079792009-05-27 21:56:55 +0200724 mce_panic("Machine check from unknown source", NULL, NULL);
725
726 /*
727 * Now clear all the mces_seen so that they don't reappear on
728 * the next mce.
729 */
730 for_each_possible_cpu(cpu)
731 memset(&per_cpu(mces_seen, cpu), 0, sizeof(struct mce));
732}
733
734static atomic_t global_nwo;
735
736/*
737 * Start of Monarch synchronization. This waits until all CPUs have
738 * entered the exception handler and then determines if any of them
739 * saw a fatal event that requires panic. Then it executes them
740 * in the entry order.
741 * TBD double check parallel CPU hotunplug
742 */
Hidetoshi Seto7fb06fc2009-06-15 18:18:43 +0900743static int mce_start(int *no_way_out)
Andi Kleen3c079792009-05-27 21:56:55 +0200744{
Hidetoshi Seto7fb06fc2009-06-15 18:18:43 +0900745 int order;
Andi Kleen3c079792009-05-27 21:56:55 +0200746 int cpus = num_online_cpus();
747 u64 timeout = (u64)monarch_timeout * NSEC_PER_USEC;
748
Hidetoshi Seto7fb06fc2009-06-15 18:18:43 +0900749 if (!timeout)
750 return -1;
Andi Kleen3c079792009-05-27 21:56:55 +0200751
Hidetoshi Seto7fb06fc2009-06-15 18:18:43 +0900752 atomic_add(*no_way_out, &global_nwo);
Huang Ying184e1fd2009-06-15 15:37:07 +0800753 /*
754 * global_nwo should be updated before mce_callin
755 */
756 smp_wmb();
Borislav Petkova95436e2009-06-20 23:28:22 -0700757 order = atomic_inc_return(&mce_callin);
Andi Kleen3c079792009-05-27 21:56:55 +0200758
759 /*
760 * Wait for everyone.
761 */
762 while (atomic_read(&mce_callin) != cpus) {
763 if (mce_timed_out(&timeout)) {
764 atomic_set(&global_nwo, 0);
Hidetoshi Seto7fb06fc2009-06-15 18:18:43 +0900765 return -1;
Andi Kleen3c079792009-05-27 21:56:55 +0200766 }
767 ndelay(SPINUNIT);
768 }
769
770 /*
Huang Ying184e1fd2009-06-15 15:37:07 +0800771 * mce_callin should be read before global_nwo
772 */
773 smp_rmb();
Hidetoshi Seto7fb06fc2009-06-15 18:18:43 +0900774
775 if (order == 1) {
776 /*
777 * Monarch: Starts executing now, the others wait.
778 */
779 atomic_set(&mce_executing, 1);
780 } else {
781 /*
782 * Subject: Now start the scanning loop one by one in
783 * the original callin order.
784 * This way when there are any shared banks it will be
785 * only seen by one CPU before cleared, avoiding duplicates.
786 */
787 while (atomic_read(&mce_executing) < order) {
788 if (mce_timed_out(&timeout)) {
789 atomic_set(&global_nwo, 0);
790 return -1;
791 }
792 ndelay(SPINUNIT);
793 }
794 }
795
Huang Ying184e1fd2009-06-15 15:37:07 +0800796 /*
Andi Kleen3c079792009-05-27 21:56:55 +0200797 * Cache the global no_way_out state.
798 */
Hidetoshi Seto7fb06fc2009-06-15 18:18:43 +0900799 *no_way_out = atomic_read(&global_nwo);
Andi Kleen3c079792009-05-27 21:56:55 +0200800
Hidetoshi Seto7fb06fc2009-06-15 18:18:43 +0900801 return order;
Andi Kleen3c079792009-05-27 21:56:55 +0200802}
803
804/*
805 * Synchronize between CPUs after main scanning loop.
806 * This invokes the bulk of the Monarch processing.
807 */
808static int mce_end(int order)
809{
810 int ret = -1;
811 u64 timeout = (u64)monarch_timeout * NSEC_PER_USEC;
812
813 if (!timeout)
814 goto reset;
815 if (order < 0)
816 goto reset;
817
818 /*
819 * Allow others to run.
820 */
821 atomic_inc(&mce_executing);
822
823 if (order == 1) {
824 /* CHECKME: Can this race with a parallel hotplug? */
825 int cpus = num_online_cpus();
826
827 /*
828 * Monarch: Wait for everyone to go through their scanning
829 * loops.
830 */
831 while (atomic_read(&mce_executing) <= cpus) {
832 if (mce_timed_out(&timeout))
833 goto reset;
834 ndelay(SPINUNIT);
835 }
836
837 mce_reign();
838 barrier();
839 ret = 0;
840 } else {
841 /*
842 * Subject: Wait for Monarch to finish.
843 */
844 while (atomic_read(&mce_executing) != 0) {
845 if (mce_timed_out(&timeout))
846 goto reset;
847 ndelay(SPINUNIT);
848 }
849
850 /*
851 * Don't reset anything. That's done by the Monarch.
852 */
853 return 0;
854 }
855
856 /*
857 * Reset all global state.
858 */
859reset:
860 atomic_set(&global_nwo, 0);
861 atomic_set(&mce_callin, 0);
862 barrier();
863
864 /*
865 * Let others run again.
866 */
867 atomic_set(&mce_executing, 0);
868 return ret;
869}
870
Andi Kleen9b1beaf2009-05-27 21:56:59 +0200871/*
872 * Check if the address reported by the CPU is in a format we can parse.
873 * It would be possible to add code for most other cases, but all would
874 * be somewhat complicated (e.g. segment offset would require an instruction
875 * parser). So only support physical addresses upto page granuality for now.
876 */
877static int mce_usable_address(struct mce *m)
878{
879 if (!(m->status & MCI_STATUS_MISCV) || !(m->status & MCI_STATUS_ADDRV))
880 return 0;
881 if ((m->misc & 0x3f) > PAGE_SHIFT)
882 return 0;
883 if (((m->misc >> 6) & 7) != MCM_ADDR_PHYS)
884 return 0;
885 return 1;
886}
887
Andi Kleen3c079792009-05-27 21:56:55 +0200888static void mce_clear_state(unsigned long *toclear)
889{
890 int i;
891
892 for (i = 0; i < banks; i++) {
893 if (test_bit(i, toclear))
Andi Kleena2d32bc2009-07-09 00:31:44 +0200894 mce_wrmsrl(MSR_IA32_MCx_STATUS(i), 0);
Andi Kleen3c079792009-05-27 21:56:55 +0200895 }
896}
897
898/*
Andi Kleenb79109c2009-02-12 13:43:23 +0100899 * The actual machine check handler. This only handles real
900 * exceptions when something got corrupted coming in through int 18.
901 *
902 * This is executed in NMI context not subject to normal locking rules. This
903 * implies that most kernel services cannot be safely used. Don't even
904 * think about putting a printk in there!
Andi Kleen3c079792009-05-27 21:56:55 +0200905 *
906 * On Intel systems this is entered on all CPUs in parallel through
907 * MCE broadcast. However some CPUs might be broken beyond repair,
908 * so be always careful when synchronizing with others.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 */
Ingo Molnare9eee032009-04-08 12:31:17 +0200910void do_machine_check(struct pt_regs *regs, long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911{
Andi Kleen3c079792009-05-27 21:56:55 +0200912 struct mce m, *final;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 int i;
Andi Kleen3c079792009-05-27 21:56:55 +0200914 int worst = 0;
915 int severity;
916 /*
917 * Establish sequential order between the CPUs entering the machine
918 * check handler.
919 */
Hidetoshi Seto7fb06fc2009-06-15 18:18:43 +0900920 int order;
Tim Hockinbd784322007-07-21 17:10:37 +0200921 /*
922 * If no_way_out gets set, there is no safe way to recover from this
923 * MCE. If tolerant is cranked up, we'll try anyway.
924 */
925 int no_way_out = 0;
926 /*
927 * If kill_it gets set, there might be a way to recover from this
928 * error.
929 */
930 int kill_it = 0;
Andi Kleenb79109c2009-02-12 13:43:23 +0100931 DECLARE_BITMAP(toclear, MAX_NR_BANKS);
Andi Kleenbd19a5e2009-05-27 21:56:55 +0200932 char *msg = "Unknown";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933
Andi Kleen553f2652006-04-07 19:49:57 +0200934 atomic_inc(&mce_entry);
935
Andi Kleen01ca79f2009-05-27 21:56:52 +0200936 __get_cpu_var(mce_exception_count)++;
937
Andi Kleenb79109c2009-02-12 13:43:23 +0100938 if (notify_die(DIE_NMI, "machine check", regs, error_code,
Jan Beulich22f59912008-01-30 13:31:23 +0100939 18, SIGKILL) == NOTIFY_STOP)
Andi Kleen32561692009-05-27 21:56:53 +0200940 goto out;
Andi Kleenb79109c2009-02-12 13:43:23 +0100941 if (!banks)
Andi Kleen32561692009-05-27 21:56:53 +0200942 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
Andi Kleenb5f2fa42009-02-12 13:43:22 +0100944 mce_setup(&m);
945
Andi Kleen5f8c1a52009-04-29 19:29:12 +0200946 m.mcgstatus = mce_rdmsrl(MSR_IA32_MCG_STATUS);
Andi Kleen3c079792009-05-27 21:56:55 +0200947 final = &__get_cpu_var(mces_seen);
948 *final = m;
949
Hidetoshi Seto680b6cf2009-08-26 16:20:36 +0900950 no_way_out = mce_no_way_out(&m, &msg);
951
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 barrier();
953
Andi Kleen3c079792009-05-27 21:56:55 +0200954 /*
Andi Kleened7290d2009-05-27 21:56:57 +0200955 * When no restart IP must always kill or panic.
956 */
957 if (!(m.mcgstatus & MCG_STATUS_RIPV))
958 kill_it = 1;
959
960 /*
Andi Kleen3c079792009-05-27 21:56:55 +0200961 * Go through all the banks in exclusion of the other CPUs.
962 * This way we don't report duplicated events on shared banks
963 * because the first one to see it will clear it.
964 */
Hidetoshi Seto7fb06fc2009-06-15 18:18:43 +0900965 order = mce_start(&no_way_out);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 for (i = 0; i < banks; i++) {
Andi Kleenb79109c2009-02-12 13:43:23 +0100967 __clear_bit(i, toclear);
Andi Kleencebe1822009-07-09 00:31:43 +0200968 if (!mce_banks[i].ctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 continue;
Thomas Gleixnerd88203d2007-10-23 22:37:23 +0200970
971 m.misc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 m.addr = 0;
973 m.bank = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
Andi Kleena2d32bc2009-07-09 00:31:44 +0200975 m.status = mce_rdmsrl(MSR_IA32_MCx_STATUS(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 if ((m.status & MCI_STATUS_VAL) == 0)
977 continue;
978
Andi Kleenb79109c2009-02-12 13:43:23 +0100979 /*
Andi Kleened7290d2009-05-27 21:56:57 +0200980 * Non uncorrected or non signaled errors are handled by
981 * machine_check_poll. Leave them alone, unless this panics.
Andi Kleenb79109c2009-02-12 13:43:23 +0100982 */
Andi Kleened7290d2009-05-27 21:56:57 +0200983 if (!(m.status & (mce_ser ? MCI_STATUS_S : MCI_STATUS_UC)) &&
984 !no_way_out)
Andi Kleenb79109c2009-02-12 13:43:23 +0100985 continue;
986
987 /*
988 * Set taint even when machine check was not enabled.
989 */
990 add_taint(TAINT_MACHINE_CHECK);
991
Andi Kleened7290d2009-05-27 21:56:57 +0200992 severity = mce_severity(&m, tolerant, NULL);
Andi Kleenb79109c2009-02-12 13:43:23 +0100993
Andi Kleened7290d2009-05-27 21:56:57 +0200994 /*
995 * When machine check was for corrected handler don't touch,
996 * unless we're panicing.
997 */
998 if (severity == MCE_KEEP_SEVERITY && !no_way_out)
999 continue;
1000 __set_bit(i, toclear);
1001 if (severity == MCE_NO_SEVERITY) {
Andi Kleenb79109c2009-02-12 13:43:23 +01001002 /*
1003 * Machine check event was not enabled. Clear, but
1004 * ignore.
1005 */
1006 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 }
1008
Andi Kleened7290d2009-05-27 21:56:57 +02001009 /*
1010 * Kill on action required.
1011 */
1012 if (severity == MCE_AR_SEVERITY)
1013 kill_it = 1;
1014
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 if (m.status & MCI_STATUS_MISCV)
Andi Kleena2d32bc2009-07-09 00:31:44 +02001016 m.misc = mce_rdmsrl(MSR_IA32_MCx_MISC(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 if (m.status & MCI_STATUS_ADDRV)
Andi Kleena2d32bc2009-07-09 00:31:44 +02001018 m.addr = mce_rdmsrl(MSR_IA32_MCx_ADDR(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019
Andi Kleen9b1beaf2009-05-27 21:56:59 +02001020 /*
1021 * Action optional error. Queue address for later processing.
1022 * When the ring overflows we just ignore the AO error.
1023 * RED-PEN add some logging mechanism when
1024 * usable_address or mce_add_ring fails.
1025 * RED-PEN don't ignore overflow for tolerant == 0
1026 */
1027 if (severity == MCE_AO_SEVERITY && mce_usable_address(&m))
1028 mce_ring_add(m.addr >> PAGE_SHIFT);
1029
Andi Kleen94ad8472005-04-16 15:25:09 -07001030 mce_get_rip(&m, regs);
Andi Kleenb79109c2009-02-12 13:43:23 +01001031 mce_log(&m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032
Andi Kleen3c079792009-05-27 21:56:55 +02001033 if (severity > worst) {
1034 *final = m;
1035 worst = severity;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 }
1038
Andi Kleen3c079792009-05-27 21:56:55 +02001039 if (!no_way_out)
1040 mce_clear_state(toclear);
1041
Ingo Molnare9eee032009-04-08 12:31:17 +02001042 /*
Andi Kleen3c079792009-05-27 21:56:55 +02001043 * Do most of the synchronization with other CPUs.
1044 * When there's any problem use only local no_way_out state.
Ingo Molnare9eee032009-04-08 12:31:17 +02001045 */
Andi Kleen3c079792009-05-27 21:56:55 +02001046 if (mce_end(order) < 0)
1047 no_way_out = worst >= MCE_PANIC_SEVERITY;
Tim Hockinbd784322007-07-21 17:10:37 +02001048
1049 /*
1050 * If we have decided that we just CAN'T continue, and the user
Ingo Molnare9eee032009-04-08 12:31:17 +02001051 * has not set tolerant to an insane level, give up and die.
Andi Kleen3c079792009-05-27 21:56:55 +02001052 *
1053 * This is mainly used in the case when the system doesn't
1054 * support MCE broadcasting or it has been disabled.
Tim Hockinbd784322007-07-21 17:10:37 +02001055 */
1056 if (no_way_out && tolerant < 3)
Andi Kleenac960372009-05-27 21:56:58 +02001057 mce_panic("Fatal machine check on current CPU", final, msg);
Tim Hockinbd784322007-07-21 17:10:37 +02001058
1059 /*
1060 * If the error seems to be unrecoverable, something should be
1061 * done. Try to kill as little as possible. If we can kill just
1062 * one task, do that. If the user has set the tolerance very
1063 * high, don't try to do anything at all.
1064 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065
Andi Kleened7290d2009-05-27 21:56:57 +02001066 if (kill_it && tolerant < 3)
1067 force_sig(SIGBUS, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068
Tim Hockine02e68d2007-07-21 17:10:36 +02001069 /* notify userspace ASAP */
1070 set_thread_flag(TIF_MCE_NOTIFY);
1071
Andi Kleen3c079792009-05-27 21:56:55 +02001072 if (worst > 0)
1073 mce_report_event(regs);
Andi Kleen5f8c1a52009-04-29 19:29:12 +02001074 mce_wrmsrl(MSR_IA32_MCG_STATUS, 0);
Andi Kleen32561692009-05-27 21:56:53 +02001075out:
Andi Kleen553f2652006-04-07 19:49:57 +02001076 atomic_dec(&mce_entry);
Andi Kleen88921be2009-05-27 21:56:51 +02001077 sync_core();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078}
Andi Kleenea149b32009-04-29 19:31:00 +02001079EXPORT_SYMBOL_GPL(do_machine_check);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080
Andi Kleen9b1beaf2009-05-27 21:56:59 +02001081/* dummy to break dependency. actual code is in mm/memory-failure.c */
1082void __attribute__((weak)) memory_failure(unsigned long pfn, int vector)
1083{
1084 printk(KERN_ERR "Action optional memory failure at %lx ignored\n", pfn);
1085}
1086
1087/*
1088 * Called after mce notification in process context. This code
1089 * is allowed to sleep. Call the high level VM handler to process
1090 * any corrupted pages.
1091 * Assume that the work queue code only calls this one at a time
1092 * per CPU.
1093 * Note we don't disable preemption, so this code might run on the wrong
1094 * CPU. In this case the event is picked up by the scheduled work queue.
1095 * This is merely a fast path to expedite processing in some common
1096 * cases.
1097 */
1098void mce_notify_process(void)
1099{
1100 unsigned long pfn;
1101 mce_notify_irq();
1102 while (mce_ring_get(&pfn))
1103 memory_failure(pfn, MCE_VECTOR);
1104}
1105
1106static void mce_process_work(struct work_struct *dummy)
1107{
1108 mce_notify_process();
1109}
1110
Dmitriy Zavin15d5f832006-09-26 10:52:42 +02001111#ifdef CONFIG_X86_MCE_INTEL
1112/***
1113 * mce_log_therm_throt_event - Logs the thermal throttling event to mcelog
Simon Arlott676b1852007-10-20 01:25:36 +02001114 * @cpu: The CPU on which the event occurred.
Dmitriy Zavin15d5f832006-09-26 10:52:42 +02001115 * @status: Event status information
1116 *
1117 * This function should be called by the thermal interrupt after the
1118 * event has been processed and the decision was made to log the event
1119 * further.
1120 *
1121 * The status parameter will be saved to the 'status' field of 'struct mce'
1122 * and historically has been the register value of the
1123 * MSR_IA32_THERMAL_STATUS (Intel) msr.
1124 */
Andi Kleenb5f2fa42009-02-12 13:43:22 +01001125void mce_log_therm_throt_event(__u64 status)
Dmitriy Zavin15d5f832006-09-26 10:52:42 +02001126{
1127 struct mce m;
1128
Andi Kleenb5f2fa42009-02-12 13:43:22 +01001129 mce_setup(&m);
Dmitriy Zavin15d5f832006-09-26 10:52:42 +02001130 m.bank = MCE_THERMAL_BANK;
1131 m.status = status;
Dmitriy Zavin15d5f832006-09-26 10:52:42 +02001132 mce_log(&m);
1133}
1134#endif /* CONFIG_X86_MCE_INTEL */
1135
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136/*
Tim Hockin8a336b02007-05-02 19:27:19 +02001137 * Periodic polling timer for "silent" machine check errors. If the
1138 * poller finds an MCE, poll 2x faster. When the poller finds no more
1139 * errors, poll 2x slower (up to check_interval seconds).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141static int check_interval = 5 * 60; /* 5 minutes */
Ingo Molnare9eee032009-04-08 12:31:17 +02001142
Tejun Heo245b2e72009-06-24 15:13:48 +09001143static DEFINE_PER_CPU(int, mce_next_interval); /* in jiffies */
Andi Kleen52d168e2009-02-12 13:39:29 +01001144static DEFINE_PER_CPU(struct timer_list, mce_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
Borislav Petkov5e099542009-10-16 12:31:32 +02001146static void mce_start_timer(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147{
Andi Kleen52d168e2009-02-12 13:39:29 +01001148 struct timer_list *t = &per_cpu(mce_timer, data);
Andi Kleen6298c512009-04-09 12:28:22 +02001149 int *n;
Andi Kleen52d168e2009-02-12 13:39:29 +01001150
1151 WARN_ON(smp_processor_id() != data);
1152
Ingo Molnare9eee032009-04-08 12:31:17 +02001153 if (mce_available(&current_cpu_data)) {
Andi Kleenee031c32009-02-12 13:49:34 +01001154 machine_check_poll(MCP_TIMESTAMP,
1155 &__get_cpu_var(mce_poll_banks));
Ingo Molnare9eee032009-04-08 12:31:17 +02001156 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157
1158 /*
Tim Hockine02e68d2007-07-21 17:10:36 +02001159 * Alert userspace if needed. If we logged an MCE, reduce the
1160 * polling interval, otherwise increase the polling interval.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 */
Tejun Heo245b2e72009-06-24 15:13:48 +09001162 n = &__get_cpu_var(mce_next_interval);
Andi Kleen9ff36ee2009-05-27 21:56:58 +02001163 if (mce_notify_irq())
Andi Kleen6298c512009-04-09 12:28:22 +02001164 *n = max(*n/2, HZ/100);
Hidetoshi Seto14a02532009-04-30 16:04:51 +09001165 else
Andi Kleen6298c512009-04-09 12:28:22 +02001166 *n = min(*n*2, (int)round_jiffies_relative(check_interval*HZ));
Tim Hockin8a336b02007-05-02 19:27:19 +02001167
Andi Kleen6298c512009-04-09 12:28:22 +02001168 t->expires = jiffies + *n;
Hidetoshi Seto5be60662009-06-24 09:21:10 +09001169 add_timer_on(t, smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170}
1171
Andi Kleen9bd98402009-02-12 13:39:28 +01001172static void mce_do_trigger(struct work_struct *work)
1173{
Hidetoshi Seto1020bcb2009-06-15 17:20:57 +09001174 call_usermodehelper(mce_helper, mce_helper_argv, NULL, UMH_NO_WAIT);
Andi Kleen9bd98402009-02-12 13:39:28 +01001175}
1176
1177static DECLARE_WORK(mce_trigger_work, mce_do_trigger);
1178
Tim Hockine02e68d2007-07-21 17:10:36 +02001179/*
Andi Kleen9bd98402009-02-12 13:39:28 +01001180 * Notify the user(s) about new machine check events.
1181 * Can be called from interrupt context, but not from machine check/NMI
1182 * context.
Tim Hockine02e68d2007-07-21 17:10:36 +02001183 */
Andi Kleen9ff36ee2009-05-27 21:56:58 +02001184int mce_notify_irq(void)
Tim Hockine02e68d2007-07-21 17:10:36 +02001185{
Andi Kleen8457c842009-02-12 13:49:33 +01001186 /* Not more than two messages every minute */
1187 static DEFINE_RATELIMIT_STATE(ratelimit, 60*HZ, 2);
1188
Tim Hockine02e68d2007-07-21 17:10:36 +02001189 clear_thread_flag(TIF_MCE_NOTIFY);
Ingo Molnare9eee032009-04-08 12:31:17 +02001190
Hidetoshi Seto1020bcb2009-06-15 17:20:57 +09001191 if (test_and_clear_bit(0, &mce_need_notify)) {
Tim Hockine02e68d2007-07-21 17:10:36 +02001192 wake_up_interruptible(&mce_wait);
Andi Kleen9bd98402009-02-12 13:39:28 +01001193
1194 /*
1195 * There is no risk of missing notifications because
1196 * work_pending is always cleared before the function is
1197 * executed.
1198 */
Hidetoshi Seto1020bcb2009-06-15 17:20:57 +09001199 if (mce_helper[0] && !work_pending(&mce_trigger_work))
Andi Kleen9bd98402009-02-12 13:39:28 +01001200 schedule_work(&mce_trigger_work);
Tim Hockine02e68d2007-07-21 17:10:36 +02001201
Andi Kleen8457c842009-02-12 13:49:33 +01001202 if (__ratelimit(&ratelimit))
Tim Hockine02e68d2007-07-21 17:10:36 +02001203 printk(KERN_INFO "Machine check events logged\n");
Tim Hockine02e68d2007-07-21 17:10:36 +02001204
1205 return 1;
1206 }
1207 return 0;
1208}
Andi Kleen9ff36ee2009-05-27 21:56:58 +02001209EXPORT_SYMBOL_GPL(mce_notify_irq);
Tim Hockine02e68d2007-07-21 17:10:36 +02001210
Hidetoshi Setocffd3772009-11-12 15:52:40 +09001211static int __cpuinit __mcheck_cpu_mce_banks_init(void)
Andi Kleencebe1822009-07-09 00:31:43 +02001212{
1213 int i;
1214
1215 mce_banks = kzalloc(banks * sizeof(struct mce_bank), GFP_KERNEL);
1216 if (!mce_banks)
1217 return -ENOMEM;
1218 for (i = 0; i < banks; i++) {
1219 struct mce_bank *b = &mce_banks[i];
Ingo Molnar11868a22009-09-23 17:49:55 +02001220
Andi Kleencebe1822009-07-09 00:31:43 +02001221 b->ctl = -1ULL;
1222 b->init = 1;
1223 }
1224 return 0;
1225}
1226
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001227/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 * Initialize Machine Checks for a CPU.
1229 */
Borislav Petkov5e099542009-10-16 12:31:32 +02001230static int __cpuinit __mcheck_cpu_cap_init(void)
Andi Kleen0d7482e32009-02-17 23:07:13 +01001231{
Andi Kleen0d7482e32009-02-17 23:07:13 +01001232 unsigned b;
Ingo Molnare9eee032009-04-08 12:31:17 +02001233 u64 cap;
Andi Kleen0d7482e32009-02-17 23:07:13 +01001234
1235 rdmsrl(MSR_IA32_MCG_CAP, cap);
Thomas Gleixner01c66802009-04-08 12:31:24 +02001236
1237 b = cap & MCG_BANKCNT_MASK;
Roland Dreier93ae5012009-10-15 14:21:14 -07001238 if (!banks)
1239 printk(KERN_INFO "mce: CPU supports %d MCE banks\n", b);
Ingo Molnarb6592942009-04-08 12:31:27 +02001240
Andi Kleen0d7482e32009-02-17 23:07:13 +01001241 if (b > MAX_NR_BANKS) {
1242 printk(KERN_WARNING
1243 "MCE: Using only %u machine check banks out of %u\n",
1244 MAX_NR_BANKS, b);
1245 b = MAX_NR_BANKS;
1246 }
1247
1248 /* Don't support asymmetric configurations today */
1249 WARN_ON(banks != 0 && b != banks);
1250 banks = b;
Andi Kleencebe1822009-07-09 00:31:43 +02001251 if (!mce_banks) {
Hidetoshi Setocffd3772009-11-12 15:52:40 +09001252 int err = __mcheck_cpu_mce_banks_init();
Ingo Molnar11868a22009-09-23 17:49:55 +02001253
Andi Kleencebe1822009-07-09 00:31:43 +02001254 if (err)
1255 return err;
Andi Kleen0d7482e32009-02-17 23:07:13 +01001256 }
1257
1258 /* Use accurate RIP reporting if available. */
Thomas Gleixner01c66802009-04-08 12:31:24 +02001259 if ((cap & MCG_EXT_P) && MCG_EXT_CNT(cap) >= 9)
Andi Kleen0d7482e32009-02-17 23:07:13 +01001260 rip_msr = MSR_IA32_MCG_EIP;
1261
Andi Kleened7290d2009-05-27 21:56:57 +02001262 if (cap & MCG_SER_P)
1263 mce_ser = 1;
1264
Andi Kleen0d7482e32009-02-17 23:07:13 +01001265 return 0;
1266}
1267
Borislav Petkov5e099542009-10-16 12:31:32 +02001268static void __mcheck_cpu_init_generic(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269{
Ingo Molnare9eee032009-04-08 12:31:17 +02001270 mce_banks_t all_banks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 u64 cap;
1272 int i;
1273
Andi Kleenb79109c2009-02-12 13:43:23 +01001274 /*
1275 * Log the machine checks left over from the previous reset.
1276 */
Andi Kleenee031c32009-02-12 13:49:34 +01001277 bitmap_fill(all_banks, MAX_NR_BANKS);
Andi Kleen5679af42009-04-07 17:06:55 +02001278 machine_check_poll(MCP_UC|(!mce_bootlog ? MCP_DONTLOG : 0), &all_banks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
1280 set_in_cr4(X86_CR4_MCE);
1281
Andi Kleen0d7482e32009-02-17 23:07:13 +01001282 rdmsrl(MSR_IA32_MCG_CAP, cap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 if (cap & MCG_CTL_P)
1284 wrmsr(MSR_IA32_MCG_CTL, 0xffffffff, 0xffffffff);
1285
1286 for (i = 0; i < banks; i++) {
Andi Kleencebe1822009-07-09 00:31:43 +02001287 struct mce_bank *b = &mce_banks[i];
Ingo Molnar11868a22009-09-23 17:49:55 +02001288
Andi Kleencebe1822009-07-09 00:31:43 +02001289 if (!b->init)
Andi Kleen06b7a7a2009-04-27 18:37:43 +02001290 continue;
Andi Kleena2d32bc2009-07-09 00:31:44 +02001291 wrmsrl(MSR_IA32_MCx_CTL(i), b->ctl);
1292 wrmsrl(MSR_IA32_MCx_STATUS(i), 0);
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001293 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294}
1295
1296/* Add per CPU specific workarounds here */
Borislav Petkov5e099542009-10-16 12:31:32 +02001297static int __cpuinit __mcheck_cpu_apply_quirks(struct cpuinfo_x86 *c)
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001298{
Ingo Molnare412cd22009-08-17 10:19:00 +02001299 if (c->x86_vendor == X86_VENDOR_UNKNOWN) {
1300 pr_info("MCE: unknown CPU type - not enabling MCE support.\n");
1301 return -EOPNOTSUPP;
1302 }
1303
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 /* This should be disabled by the BIOS, but isn't always */
Jan Beulich911f6a72008-04-22 16:22:21 +01001305 if (c->x86_vendor == X86_VENDOR_AMD) {
Ingo Molnare9eee032009-04-08 12:31:17 +02001306 if (c->x86 == 15 && banks > 4) {
1307 /*
1308 * disable GART TBL walk error reporting, which
1309 * trips off incorrectly with the IOMMU & 3ware
1310 * & Cerberus:
1311 */
Andi Kleencebe1822009-07-09 00:31:43 +02001312 clear_bit(10, (unsigned long *)&mce_banks[4].ctl);
Ingo Molnare9eee032009-04-08 12:31:17 +02001313 }
1314 if (c->x86 <= 17 && mce_bootlog < 0) {
1315 /*
1316 * Lots of broken BIOS around that don't clear them
1317 * by default and leave crap in there. Don't log:
1318 */
Jan Beulich911f6a72008-04-22 16:22:21 +01001319 mce_bootlog = 0;
Ingo Molnare9eee032009-04-08 12:31:17 +02001320 }
Andi Kleen2e6f6942009-04-27 18:42:48 +02001321 /*
1322 * Various K7s with broken bank 0 around. Always disable
1323 * by default.
1324 */
Andi Kleen203abd62009-06-15 14:52:01 +02001325 if (c->x86 == 6 && banks > 0)
Andi Kleencebe1822009-07-09 00:31:43 +02001326 mce_banks[0].ctl = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 }
Andi Kleene5835382005-11-05 17:25:54 +01001328
Andi Kleen06b7a7a2009-04-27 18:37:43 +02001329 if (c->x86_vendor == X86_VENDOR_INTEL) {
1330 /*
1331 * SDM documents that on family 6 bank 0 should not be written
1332 * because it aliases to another special BIOS controlled
1333 * register.
1334 * But it's not aliased anymore on model 0x1a+
1335 * Don't ignore bank 0 completely because there could be a
1336 * valid event later, merely don't write CTL0.
1337 */
1338
Andi Kleencebe1822009-07-09 00:31:43 +02001339 if (c->x86 == 6 && c->x86_model < 0x1A && banks > 0)
1340 mce_banks[0].init = 0;
Andi Kleen3c079792009-05-27 21:56:55 +02001341
1342 /*
1343 * All newer Intel systems support MCE broadcasting. Enable
1344 * synchronization with a one second timeout.
1345 */
1346 if ((c->x86 > 6 || (c->x86 == 6 && c->x86_model >= 0xe)) &&
1347 monarch_timeout < 0)
1348 monarch_timeout = USEC_PER_SEC;
Bartlomiej Zolnierkiewiczc7f6fa42009-07-28 23:52:54 +02001349
Ingo Molnare412cd22009-08-17 10:19:00 +02001350 /*
1351 * There are also broken BIOSes on some Pentium M and
1352 * earlier systems:
1353 */
1354 if (c->x86 == 6 && c->x86_model <= 13 && mce_bootlog < 0)
Bartlomiej Zolnierkiewiczc7f6fa42009-07-28 23:52:54 +02001355 mce_bootlog = 0;
Andi Kleen06b7a7a2009-04-27 18:37:43 +02001356 }
Andi Kleen3c079792009-05-27 21:56:55 +02001357 if (monarch_timeout < 0)
1358 monarch_timeout = 0;
Andi Kleen29b0f592009-05-27 21:56:56 +02001359 if (mce_bootlog != 0)
1360 mce_panic_timeout = 30;
Ingo Molnare412cd22009-08-17 10:19:00 +02001361
1362 return 0;
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001363}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
Borislav Petkov5e099542009-10-16 12:31:32 +02001365static void __cpuinit __mcheck_cpu_ancient_init(struct cpuinfo_x86 *c)
Andi Kleen4efc0672009-04-28 19:07:31 +02001366{
1367 if (c->x86 != 5)
1368 return;
1369 switch (c->x86_vendor) {
1370 case X86_VENDOR_INTEL:
Hidetoshi Setoc6978362009-06-15 17:22:49 +09001371 intel_p5_mcheck_init(c);
Andi Kleen4efc0672009-04-28 19:07:31 +02001372 break;
1373 case X86_VENDOR_CENTAUR:
1374 winchip_mcheck_init(c);
1375 break;
1376 }
1377}
1378
Borislav Petkov5e099542009-10-16 12:31:32 +02001379static void __mcheck_cpu_init_vendor(struct cpuinfo_x86 *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380{
1381 switch (c->x86_vendor) {
1382 case X86_VENDOR_INTEL:
1383 mce_intel_feature_init(c);
1384 break;
Jacob Shin89b831e2005-11-05 17:25:53 +01001385 case X86_VENDOR_AMD:
1386 mce_amd_feature_init(c);
1387 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 default:
1389 break;
1390 }
1391}
1392
Borislav Petkov5e099542009-10-16 12:31:32 +02001393static void __mcheck_cpu_init_timer(void)
Andi Kleen52d168e2009-02-12 13:39:29 +01001394{
1395 struct timer_list *t = &__get_cpu_var(mce_timer);
Tejun Heo245b2e72009-06-24 15:13:48 +09001396 int *n = &__get_cpu_var(mce_next_interval);
Andi Kleen52d168e2009-02-12 13:39:29 +01001397
Jan Beulichbc09eff2009-12-08 11:21:37 +09001398 setup_timer(t, mce_start_timer, smp_processor_id());
1399
Hidetoshi Seto62fdac52009-06-11 16:06:07 +09001400 if (mce_ignore_ce)
1401 return;
1402
Andi Kleen6298c512009-04-09 12:28:22 +02001403 *n = check_interval * HZ;
1404 if (!*n)
Andi Kleen52d168e2009-02-12 13:39:29 +01001405 return;
Andi Kleen6298c512009-04-09 12:28:22 +02001406 t->expires = round_jiffies(jiffies + *n);
Hidetoshi Seto5be60662009-06-24 09:21:10 +09001407 add_timer_on(t, smp_processor_id());
Andi Kleen52d168e2009-02-12 13:39:29 +01001408}
1409
Andi Kleen9eda8cb2009-07-09 00:31:42 +02001410/* Handle unconfigured int18 (should never happen) */
1411static void unexpected_machine_check(struct pt_regs *regs, long error_code)
1412{
1413 printk(KERN_ERR "CPU#%d: Unexpected int18 (Machine Check).\n",
1414 smp_processor_id());
1415}
1416
1417/* Call the installed machine check handler for this CPU setup. */
1418void (*machine_check_vector)(struct pt_regs *, long error_code) =
1419 unexpected_machine_check;
1420
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001421/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 * Called for each booted CPU to set up machine checks.
Ingo Molnare9eee032009-04-08 12:31:17 +02001423 * Must be called with preempt off:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 */
Borislav Petkov5e099542009-10-16 12:31:32 +02001425void __cpuinit mcheck_cpu_init(struct cpuinfo_x86 *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426{
Andi Kleen4efc0672009-04-28 19:07:31 +02001427 if (mce_disabled)
1428 return;
1429
Borislav Petkov5e099542009-10-16 12:31:32 +02001430 __mcheck_cpu_ancient_init(c);
Andi Kleen4efc0672009-04-28 19:07:31 +02001431
Andi Kleen5b4408f2009-02-12 13:39:30 +01001432 if (!mce_available(c))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 return;
1434
Borislav Petkov5e099542009-10-16 12:31:32 +02001435 if (__mcheck_cpu_cap_init() < 0 || __mcheck_cpu_apply_quirks(c) < 0) {
Andi Kleen04b2b1a2009-04-28 22:50:19 +02001436 mce_disabled = 1;
Andi Kleen0d7482e32009-02-17 23:07:13 +01001437 return;
1438 }
Andi Kleen0d7482e32009-02-17 23:07:13 +01001439
Andi Kleen5d727922009-04-27 19:25:48 +02001440 machine_check_vector = do_machine_check;
1441
Borislav Petkov5e099542009-10-16 12:31:32 +02001442 __mcheck_cpu_init_generic();
1443 __mcheck_cpu_init_vendor(c);
1444 __mcheck_cpu_init_timer();
Andi Kleen9b1beaf2009-05-27 21:56:59 +02001445 INIT_WORK(&__get_cpu_var(mce_work), mce_process_work);
Borislav Petkovfb253192009-10-07 13:20:38 +02001446
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447}
1448
1449/*
1450 * Character device to read and clear the MCE log.
1451 */
1452
Tim Hockinf528e7b2007-07-21 17:10:35 +02001453static DEFINE_SPINLOCK(mce_state_lock);
Ingo Molnare9eee032009-04-08 12:31:17 +02001454static int open_count; /* #times opened */
1455static int open_exclu; /* already open exclusive? */
Tim Hockinf528e7b2007-07-21 17:10:35 +02001456
1457static int mce_open(struct inode *inode, struct file *file)
1458{
1459 spin_lock(&mce_state_lock);
1460
1461 if (open_exclu || (open_count && (file->f_flags & O_EXCL))) {
1462 spin_unlock(&mce_state_lock);
Ingo Molnare9eee032009-04-08 12:31:17 +02001463
Tim Hockinf528e7b2007-07-21 17:10:35 +02001464 return -EBUSY;
1465 }
1466
1467 if (file->f_flags & O_EXCL)
1468 open_exclu = 1;
1469 open_count++;
1470
1471 spin_unlock(&mce_state_lock);
1472
Tim Hockinbd784322007-07-21 17:10:37 +02001473 return nonseekable_open(inode, file);
Tim Hockinf528e7b2007-07-21 17:10:35 +02001474}
1475
1476static int mce_release(struct inode *inode, struct file *file)
1477{
1478 spin_lock(&mce_state_lock);
1479
1480 open_count--;
1481 open_exclu = 0;
1482
1483 spin_unlock(&mce_state_lock);
1484
1485 return 0;
1486}
1487
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001488static void collect_tscs(void *data)
1489{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 unsigned long *cpu_tsc = (unsigned long *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001492 rdtscll(cpu_tsc[smp_processor_id()]);
1493}
1494
1495static ssize_t mce_read(struct file *filp, char __user *ubuf, size_t usize,
1496 loff_t *off)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 char __user *buf = ubuf;
Ingo Molnare9eee032009-04-08 12:31:17 +02001499 unsigned long *cpu_tsc;
1500 unsigned prev, next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 int i, err;
1502
Mike Travis6bca67f2008-07-18 18:11:27 -07001503 cpu_tsc = kmalloc(nr_cpu_ids * sizeof(long), GFP_KERNEL);
Andi Kleenf0de53b2005-04-16 15:25:10 -07001504 if (!cpu_tsc)
1505 return -ENOMEM;
1506
Daniel Walker8c8b8852008-01-30 13:31:17 +01001507 mutex_lock(&mce_read_mutex);
Paul E. McKenneyf56e8a02010-03-05 15:03:27 -08001508 next = rcu_dereference_check_mce(mcelog.next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509
1510 /* Only supports full reads right now */
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001511 if (*off != 0 || usize < MCE_LOG_LEN*sizeof(struct mce)) {
Daniel Walker8c8b8852008-01-30 13:31:17 +01001512 mutex_unlock(&mce_read_mutex);
Andi Kleenf0de53b2005-04-16 15:25:10 -07001513 kfree(cpu_tsc);
Ingo Molnare9eee032009-04-08 12:31:17 +02001514
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 return -EINVAL;
1516 }
1517
1518 err = 0;
Huang Yingef41df4342009-02-12 13:39:34 +01001519 prev = 0;
1520 do {
1521 for (i = prev; i < next; i++) {
1522 unsigned long start = jiffies;
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001523
Huang Yingef41df4342009-02-12 13:39:34 +01001524 while (!mcelog.entry[i].finished) {
1525 if (time_after_eq(jiffies, start + 2)) {
1526 memset(mcelog.entry + i, 0,
1527 sizeof(struct mce));
1528 goto timeout;
1529 }
1530 cpu_relax();
Andi Kleen673242c2005-09-12 18:49:24 +02001531 }
Huang Yingef41df4342009-02-12 13:39:34 +01001532 smp_rmb();
1533 err |= copy_to_user(buf, mcelog.entry + i,
1534 sizeof(struct mce));
1535 buf += sizeof(struct mce);
1536timeout:
1537 ;
Andi Kleen673242c2005-09-12 18:49:24 +02001538 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539
Huang Yingef41df4342009-02-12 13:39:34 +01001540 memset(mcelog.entry + prev, 0,
1541 (next - prev) * sizeof(struct mce));
1542 prev = next;
1543 next = cmpxchg(&mcelog.next, prev, 0);
1544 } while (next != prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545
Paul E. McKenneyb2b18662005-06-25 14:55:38 -07001546 synchronize_sched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001548 /*
1549 * Collect entries that were still getting written before the
1550 * synchronize.
1551 */
Jens Axboe15c8b6c2008-05-09 09:39:44 +02001552 on_each_cpu(collect_tscs, cpu_tsc, 1);
Ingo Molnare9eee032009-04-08 12:31:17 +02001553
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001554 for (i = next; i < MCE_LOG_LEN; i++) {
1555 if (mcelog.entry[i].finished &&
1556 mcelog.entry[i].tsc < cpu_tsc[mcelog.entry[i].cpu]) {
1557 err |= copy_to_user(buf, mcelog.entry+i,
1558 sizeof(struct mce));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 smp_rmb();
1560 buf += sizeof(struct mce);
1561 memset(&mcelog.entry[i], 0, sizeof(struct mce));
1562 }
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001563 }
Daniel Walker8c8b8852008-01-30 13:31:17 +01001564 mutex_unlock(&mce_read_mutex);
Andi Kleenf0de53b2005-04-16 15:25:10 -07001565 kfree(cpu_tsc);
Ingo Molnare9eee032009-04-08 12:31:17 +02001566
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001567 return err ? -EFAULT : buf - ubuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568}
1569
Tim Hockine02e68d2007-07-21 17:10:36 +02001570static unsigned int mce_poll(struct file *file, poll_table *wait)
1571{
1572 poll_wait(file, &mce_wait, wait);
Paul E. McKenneyf56e8a02010-03-05 15:03:27 -08001573 if (rcu_dereference_check_mce(mcelog.next))
Tim Hockine02e68d2007-07-21 17:10:36 +02001574 return POLLIN | POLLRDNORM;
1575 return 0;
1576}
1577
Nikanth Karthikesanc68461b2008-01-30 13:32:59 +01001578static long mce_ioctl(struct file *f, unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579{
1580 int __user *p = (int __user *)arg;
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001581
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 if (!capable(CAP_SYS_ADMIN))
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001583 return -EPERM;
Ingo Molnare9eee032009-04-08 12:31:17 +02001584
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 switch (cmd) {
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001586 case MCE_GET_RECORD_LEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 return put_user(sizeof(struct mce), p);
1588 case MCE_GET_LOG_LEN:
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001589 return put_user(MCE_LOG_LEN, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 case MCE_GETCLEAR_FLAGS: {
1591 unsigned flags;
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001592
1593 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 flags = mcelog.flags;
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001595 } while (cmpxchg(&mcelog.flags, flags, 0) != flags);
Ingo Molnare9eee032009-04-08 12:31:17 +02001596
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001597 return put_user(flags, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 }
1599 default:
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001600 return -ENOTTY;
1601 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602}
1603
H. Peter Anvina1ff41b2009-05-25 22:16:14 -07001604/* Modified in mce-inject.c, so not static or const */
Andi Kleenea149b32009-04-29 19:31:00 +02001605struct file_operations mce_chrdev_ops = {
Ingo Molnare9eee032009-04-08 12:31:17 +02001606 .open = mce_open,
1607 .release = mce_release,
1608 .read = mce_read,
1609 .poll = mce_poll,
1610 .unlocked_ioctl = mce_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611};
Andi Kleenea149b32009-04-29 19:31:00 +02001612EXPORT_SYMBOL_GPL(mce_chrdev_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613
1614static struct miscdevice mce_log_device = {
1615 MISC_MCELOG_MINOR,
1616 "mcelog",
1617 &mce_chrdev_ops,
1618};
1619
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001620/*
Hidetoshi Seto62fdac52009-06-11 16:06:07 +09001621 * mce=off Disables machine check
1622 * mce=no_cmci Disables CMCI
1623 * mce=dont_log_ce Clears corrected events silently, no log created for CEs.
1624 * mce=ignore_ce Disables polling and CMCI, corrected events are not cleared.
Andi Kleen3c079792009-05-27 21:56:55 +02001625 * mce=TOLERANCELEVEL[,monarchtimeout] (number, see above)
1626 * monarchtimeout is how long to wait for other CPUs on machine
1627 * check, or 0 to not wait
Hidetoshi Seto13503fa2009-03-26 17:39:20 +09001628 * mce=bootlog Log MCEs from before booting. Disabled by default on AMD.
1629 * mce=nobootlog Don't log MCEs from before booting.
1630 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631static int __init mcheck_enable(char *str)
1632{
Bartlomiej Zolnierkiewicze3346fc2009-07-28 23:55:09 +02001633 if (*str == 0) {
Andi Kleen4efc0672009-04-28 19:07:31 +02001634 enable_p5_mce();
Bartlomiej Zolnierkiewicze3346fc2009-07-28 23:55:09 +02001635 return 1;
1636 }
Andi Kleen4efc0672009-04-28 19:07:31 +02001637 if (*str == '=')
1638 str++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 if (!strcmp(str, "off"))
Andi Kleen04b2b1a2009-04-28 22:50:19 +02001640 mce_disabled = 1;
Hidetoshi Seto62fdac52009-06-11 16:06:07 +09001641 else if (!strcmp(str, "no_cmci"))
1642 mce_cmci_disabled = 1;
1643 else if (!strcmp(str, "dont_log_ce"))
1644 mce_dont_log_ce = 1;
1645 else if (!strcmp(str, "ignore_ce"))
1646 mce_ignore_ce = 1;
Hidetoshi Seto13503fa2009-03-26 17:39:20 +09001647 else if (!strcmp(str, "bootlog") || !strcmp(str, "nobootlog"))
1648 mce_bootlog = (str[0] == 'b');
Andi Kleen3c079792009-05-27 21:56:55 +02001649 else if (isdigit(str[0])) {
Andi Kleen8c566ef2005-09-12 18:49:24 +02001650 get_option(&str, &tolerant);
Andi Kleen3c079792009-05-27 21:56:55 +02001651 if (*str == ',') {
1652 ++str;
1653 get_option(&str, &monarch_timeout);
1654 }
1655 } else {
Andi Kleen4efc0672009-04-28 19:07:31 +02001656 printk(KERN_INFO "mce argument %s ignored. Please use /sys\n",
Hidetoshi Seto13503fa2009-03-26 17:39:20 +09001657 str);
1658 return 0;
1659 }
OGAWA Hirofumi9b410462006-03-31 02:30:33 -08001660 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661}
Andi Kleen4efc0672009-04-28 19:07:31 +02001662__setup("mce", mcheck_enable);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663
Yong Wanga2202aa2009-11-10 09:38:24 +08001664int __init mcheck_init(void)
Borislav Petkovb33a6362009-10-16 12:31:33 +02001665{
1666 atomic_notifier_chain_register(&x86_mce_decoder_chain, &mce_dec_nb);
1667
Yong Wanga2202aa2009-11-10 09:38:24 +08001668 mcheck_intel_therm_init();
1669
Borislav Petkovb33a6362009-10-16 12:31:33 +02001670 return 0;
1671}
Borislav Petkovb33a6362009-10-16 12:31:33 +02001672
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001673/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 * Sysfs support
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001675 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676
Andi Kleen973a2dd2009-02-12 13:39:32 +01001677/*
1678 * Disable machine checks on suspend and shutdown. We can't really handle
1679 * them later.
1680 */
Borislav Petkov5e099542009-10-16 12:31:32 +02001681static int mce_disable_error_reporting(void)
Andi Kleen973a2dd2009-02-12 13:39:32 +01001682{
1683 int i;
1684
Andi Kleen06b7a7a2009-04-27 18:37:43 +02001685 for (i = 0; i < banks; i++) {
Andi Kleencebe1822009-07-09 00:31:43 +02001686 struct mce_bank *b = &mce_banks[i];
Ingo Molnar11868a22009-09-23 17:49:55 +02001687
Andi Kleencebe1822009-07-09 00:31:43 +02001688 if (b->init)
Andi Kleena2d32bc2009-07-09 00:31:44 +02001689 wrmsrl(MSR_IA32_MCx_CTL(i), 0);
Andi Kleen06b7a7a2009-04-27 18:37:43 +02001690 }
Andi Kleen973a2dd2009-02-12 13:39:32 +01001691 return 0;
1692}
1693
1694static int mce_suspend(struct sys_device *dev, pm_message_t state)
1695{
Borislav Petkov5e099542009-10-16 12:31:32 +02001696 return mce_disable_error_reporting();
Andi Kleen973a2dd2009-02-12 13:39:32 +01001697}
1698
1699static int mce_shutdown(struct sys_device *dev)
1700{
Borislav Petkov5e099542009-10-16 12:31:32 +02001701 return mce_disable_error_reporting();
Andi Kleen973a2dd2009-02-12 13:39:32 +01001702}
1703
Ingo Molnare9eee032009-04-08 12:31:17 +02001704/*
1705 * On resume clear all MCE state. Don't want to see leftovers from the BIOS.
1706 * Only one CPU is active at this time, the others get re-added later using
1707 * CPU hotplug:
1708 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709static int mce_resume(struct sys_device *dev)
1710{
Borislav Petkov5e099542009-10-16 12:31:32 +02001711 __mcheck_cpu_init_generic();
1712 __mcheck_cpu_init_vendor(&current_cpu_data);
Ingo Molnare9eee032009-04-08 12:31:17 +02001713
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 return 0;
1715}
1716
Andi Kleen52d168e2009-02-12 13:39:29 +01001717static void mce_cpu_restart(void *data)
1718{
1719 del_timer_sync(&__get_cpu_var(mce_timer));
Hidetoshi Seto33edbf02009-06-15 17:18:45 +09001720 if (!mce_available(&current_cpu_data))
1721 return;
Borislav Petkov5e099542009-10-16 12:31:32 +02001722 __mcheck_cpu_init_generic();
1723 __mcheck_cpu_init_timer();
Andi Kleen52d168e2009-02-12 13:39:29 +01001724}
1725
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726/* Reinit MCEs after user configuration changes */
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001727static void mce_restart(void)
1728{
Andi Kleen52d168e2009-02-12 13:39:29 +01001729 on_each_cpu(mce_cpu_restart, NULL, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730}
1731
Hidetoshi Seto9af43b52009-06-15 17:21:36 +09001732/* Toggle features for corrected errors */
1733static void mce_disable_ce(void *all)
1734{
1735 if (!mce_available(&current_cpu_data))
1736 return;
1737 if (all)
1738 del_timer_sync(&__get_cpu_var(mce_timer));
1739 cmci_clear();
1740}
1741
1742static void mce_enable_ce(void *all)
1743{
1744 if (!mce_available(&current_cpu_data))
1745 return;
1746 cmci_reenable();
1747 cmci_recheck();
1748 if (all)
Borislav Petkov5e099542009-10-16 12:31:32 +02001749 __mcheck_cpu_init_timer();
Hidetoshi Seto9af43b52009-06-15 17:21:36 +09001750}
1751
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752static struct sysdev_class mce_sysclass = {
Ingo Molnare9eee032009-04-08 12:31:17 +02001753 .suspend = mce_suspend,
1754 .shutdown = mce_shutdown,
1755 .resume = mce_resume,
1756 .name = "machinecheck",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757};
1758
Ingo Molnarcb491fc2009-04-08 12:31:17 +02001759DEFINE_PER_CPU(struct sys_device, mce_dev);
Ingo Molnare9eee032009-04-08 12:31:17 +02001760
1761__cpuinitdata
1762void (*threshold_cpu_callback)(unsigned long action, unsigned int cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763
Andi Kleencebe1822009-07-09 00:31:43 +02001764static inline struct mce_bank *attr_to_bank(struct sysdev_attribute *attr)
1765{
1766 return container_of(attr, struct mce_bank, attr);
1767}
Andi Kleen0d7482e32009-02-17 23:07:13 +01001768
1769static ssize_t show_bank(struct sys_device *s, struct sysdev_attribute *attr,
1770 char *buf)
1771{
Andi Kleencebe1822009-07-09 00:31:43 +02001772 return sprintf(buf, "%llx\n", attr_to_bank(attr)->ctl);
Andi Kleen0d7482e32009-02-17 23:07:13 +01001773}
1774
1775static ssize_t set_bank(struct sys_device *s, struct sysdev_attribute *attr,
Hidetoshi Seto9319cec2009-04-14 17:26:30 +09001776 const char *buf, size_t size)
Andi Kleen0d7482e32009-02-17 23:07:13 +01001777{
Hidetoshi Seto9319cec2009-04-14 17:26:30 +09001778 u64 new;
Ingo Molnare9eee032009-04-08 12:31:17 +02001779
Hidetoshi Seto9319cec2009-04-14 17:26:30 +09001780 if (strict_strtoull(buf, 0, &new) < 0)
Andi Kleen0d7482e32009-02-17 23:07:13 +01001781 return -EINVAL;
Ingo Molnare9eee032009-04-08 12:31:17 +02001782
Andi Kleencebe1822009-07-09 00:31:43 +02001783 attr_to_bank(attr)->ctl = new;
Andi Kleen0d7482e32009-02-17 23:07:13 +01001784 mce_restart();
Ingo Molnare9eee032009-04-08 12:31:17 +02001785
Hidetoshi Seto9319cec2009-04-14 17:26:30 +09001786 return size;
Andi Kleen0d7482e32009-02-17 23:07:13 +01001787}
Andi Kleena98f0dd2007-02-13 13:26:23 +01001788
Ingo Molnare9eee032009-04-08 12:31:17 +02001789static ssize_t
1790show_trigger(struct sys_device *s, struct sysdev_attribute *attr, char *buf)
Andi Kleena98f0dd2007-02-13 13:26:23 +01001791{
Hidetoshi Seto1020bcb2009-06-15 17:20:57 +09001792 strcpy(buf, mce_helper);
Andi Kleena98f0dd2007-02-13 13:26:23 +01001793 strcat(buf, "\n");
Hidetoshi Seto1020bcb2009-06-15 17:20:57 +09001794 return strlen(mce_helper) + 1;
Andi Kleena98f0dd2007-02-13 13:26:23 +01001795}
1796
Andi Kleen4a0b2b42008-07-01 18:48:41 +02001797static ssize_t set_trigger(struct sys_device *s, struct sysdev_attribute *attr,
Ingo Molnare9eee032009-04-08 12:31:17 +02001798 const char *buf, size_t siz)
Andi Kleena98f0dd2007-02-13 13:26:23 +01001799{
1800 char *p;
Ingo Molnare9eee032009-04-08 12:31:17 +02001801
Hidetoshi Seto1020bcb2009-06-15 17:20:57 +09001802 strncpy(mce_helper, buf, sizeof(mce_helper));
1803 mce_helper[sizeof(mce_helper)-1] = 0;
Hidetoshi Seto1020bcb2009-06-15 17:20:57 +09001804 p = strchr(mce_helper, '\n');
Ingo Molnare9eee032009-04-08 12:31:17 +02001805
Jan Beuliche9084ec2009-07-16 09:45:11 +01001806 if (p)
Ingo Molnare9eee032009-04-08 12:31:17 +02001807 *p = 0;
1808
Jan Beuliche9084ec2009-07-16 09:45:11 +01001809 return strlen(mce_helper) + !!p;
Andi Kleena98f0dd2007-02-13 13:26:23 +01001810}
1811
Hidetoshi Seto9af43b52009-06-15 17:21:36 +09001812static ssize_t set_ignore_ce(struct sys_device *s,
1813 struct sysdev_attribute *attr,
1814 const char *buf, size_t size)
1815{
1816 u64 new;
1817
1818 if (strict_strtoull(buf, 0, &new) < 0)
1819 return -EINVAL;
1820
1821 if (mce_ignore_ce ^ !!new) {
1822 if (new) {
1823 /* disable ce features */
1824 on_each_cpu(mce_disable_ce, (void *)1, 1);
1825 mce_ignore_ce = 1;
1826 } else {
1827 /* enable ce features */
1828 mce_ignore_ce = 0;
1829 on_each_cpu(mce_enable_ce, (void *)1, 1);
1830 }
1831 }
1832 return size;
1833}
1834
1835static ssize_t set_cmci_disabled(struct sys_device *s,
1836 struct sysdev_attribute *attr,
1837 const char *buf, size_t size)
1838{
1839 u64 new;
1840
1841 if (strict_strtoull(buf, 0, &new) < 0)
1842 return -EINVAL;
1843
1844 if (mce_cmci_disabled ^ !!new) {
1845 if (new) {
1846 /* disable cmci */
1847 on_each_cpu(mce_disable_ce, NULL, 1);
1848 mce_cmci_disabled = 1;
1849 } else {
1850 /* enable cmci */
1851 mce_cmci_disabled = 0;
1852 on_each_cpu(mce_enable_ce, NULL, 1);
1853 }
1854 }
1855 return size;
1856}
1857
Andi Kleenb56f6422009-05-27 21:56:52 +02001858static ssize_t store_int_with_restart(struct sys_device *s,
1859 struct sysdev_attribute *attr,
1860 const char *buf, size_t size)
1861{
1862 ssize_t ret = sysdev_store_int(s, attr, buf, size);
1863 mce_restart();
1864 return ret;
1865}
1866
Andi Kleena98f0dd2007-02-13 13:26:23 +01001867static SYSDEV_ATTR(trigger, 0644, show_trigger, set_trigger);
Andi Kleend95d62c2008-07-01 18:48:43 +02001868static SYSDEV_INT_ATTR(tolerant, 0644, tolerant);
Andi Kleen3c079792009-05-27 21:56:55 +02001869static SYSDEV_INT_ATTR(monarch_timeout, 0644, monarch_timeout);
Hidetoshi Seto9af43b52009-06-15 17:21:36 +09001870static SYSDEV_INT_ATTR(dont_log_ce, 0644, mce_dont_log_ce);
Ingo Molnare9eee032009-04-08 12:31:17 +02001871
Andi Kleenb56f6422009-05-27 21:56:52 +02001872static struct sysdev_ext_attribute attr_check_interval = {
1873 _SYSDEV_ATTR(check_interval, 0644, sysdev_show_int,
1874 store_int_with_restart),
1875 &check_interval
1876};
Ingo Molnare9eee032009-04-08 12:31:17 +02001877
Hidetoshi Seto9af43b52009-06-15 17:21:36 +09001878static struct sysdev_ext_attribute attr_ignore_ce = {
1879 _SYSDEV_ATTR(ignore_ce, 0644, sysdev_show_int, set_ignore_ce),
1880 &mce_ignore_ce
1881};
1882
1883static struct sysdev_ext_attribute attr_cmci_disabled = {
Yinghai Lu74b602c2009-06-17 14:43:32 -07001884 _SYSDEV_ATTR(cmci_disabled, 0644, sysdev_show_int, set_cmci_disabled),
Hidetoshi Seto9af43b52009-06-15 17:21:36 +09001885 &mce_cmci_disabled
1886};
1887
Ingo Molnarcb491fc2009-04-08 12:31:17 +02001888static struct sysdev_attribute *mce_attrs[] = {
Hidetoshi Seto9af43b52009-06-15 17:21:36 +09001889 &attr_tolerant.attr,
1890 &attr_check_interval.attr,
1891 &attr_trigger,
Andi Kleen3c079792009-05-27 21:56:55 +02001892 &attr_monarch_timeout.attr,
Hidetoshi Seto9af43b52009-06-15 17:21:36 +09001893 &attr_dont_log_ce.attr,
1894 &attr_ignore_ce.attr,
1895 &attr_cmci_disabled.attr,
Andi Kleena98f0dd2007-02-13 13:26:23 +01001896 NULL
1897};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898
Ingo Molnarcb491fc2009-04-08 12:31:17 +02001899static cpumask_var_t mce_dev_initialized;
Andreas Herrmannbae19fe2007-11-14 17:00:44 -08001900
Ingo Molnare9eee032009-04-08 12:31:17 +02001901/* Per cpu sysdev init. All of the cpus still share the same ctrl bank: */
Andi Kleen91c6d402005-07-28 21:15:39 -07001902static __cpuinit int mce_create_device(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903{
1904 int err;
Hidetoshi Setob1f49f92009-06-18 14:53:24 +09001905 int i, j;
Mike Travis92cb7612007-10-19 20:35:04 +02001906
Andreas Herrmann90367552007-11-07 02:12:58 +01001907 if (!mce_available(&boot_cpu_data))
Andi Kleen91c6d402005-07-28 21:15:39 -07001908 return -EIO;
1909
Ingo Molnarcb491fc2009-04-08 12:31:17 +02001910 memset(&per_cpu(mce_dev, cpu).kobj, 0, sizeof(struct kobject));
1911 per_cpu(mce_dev, cpu).id = cpu;
1912 per_cpu(mce_dev, cpu).cls = &mce_sysclass;
Andi Kleen91c6d402005-07-28 21:15:39 -07001913
Ingo Molnarcb491fc2009-04-08 12:31:17 +02001914 err = sysdev_register(&per_cpu(mce_dev, cpu));
Akinobu Mitad435d862007-10-18 03:05:15 -07001915 if (err)
1916 return err;
Andi Kleen91c6d402005-07-28 21:15:39 -07001917
Ingo Molnarcb491fc2009-04-08 12:31:17 +02001918 for (i = 0; mce_attrs[i]; i++) {
1919 err = sysdev_create_file(&per_cpu(mce_dev, cpu), mce_attrs[i]);
Akinobu Mitad435d862007-10-18 03:05:15 -07001920 if (err)
1921 goto error;
Andi Kleen91c6d402005-07-28 21:15:39 -07001922 }
Hidetoshi Setob1f49f92009-06-18 14:53:24 +09001923 for (j = 0; j < banks; j++) {
Ingo Molnarcb491fc2009-04-08 12:31:17 +02001924 err = sysdev_create_file(&per_cpu(mce_dev, cpu),
Andi Kleencebe1822009-07-09 00:31:43 +02001925 &mce_banks[j].attr);
Andi Kleen0d7482e32009-02-17 23:07:13 +01001926 if (err)
1927 goto error2;
1928 }
Ingo Molnarcb491fc2009-04-08 12:31:17 +02001929 cpumask_set_cpu(cpu, mce_dev_initialized);
Akinobu Mitad435d862007-10-18 03:05:15 -07001930
1931 return 0;
Andi Kleen0d7482e32009-02-17 23:07:13 +01001932error2:
Hidetoshi Setob1f49f92009-06-18 14:53:24 +09001933 while (--j >= 0)
Andi Kleencebe1822009-07-09 00:31:43 +02001934 sysdev_remove_file(&per_cpu(mce_dev, cpu), &mce_banks[j].attr);
Akinobu Mitad435d862007-10-18 03:05:15 -07001935error:
Ingo Molnarcb491fc2009-04-08 12:31:17 +02001936 while (--i >= 0)
Hidetoshi Seto5c0e9f22009-12-08 16:52:44 +09001937 sysdev_remove_file(&per_cpu(mce_dev, cpu), mce_attrs[i]);
Ingo Molnarcb491fc2009-04-08 12:31:17 +02001938
1939 sysdev_unregister(&per_cpu(mce_dev, cpu));
Akinobu Mitad435d862007-10-18 03:05:15 -07001940
Andi Kleen91c6d402005-07-28 21:15:39 -07001941 return err;
1942}
1943
Jan Beulich2d9cd6c2008-08-29 13:15:04 +01001944static __cpuinit void mce_remove_device(unsigned int cpu)
Andi Kleen91c6d402005-07-28 21:15:39 -07001945{
Shaohua Li73ca5352006-01-11 22:43:06 +01001946 int i;
1947
Ingo Molnarcb491fc2009-04-08 12:31:17 +02001948 if (!cpumask_test_cpu(cpu, mce_dev_initialized))
Andreas Herrmannbae19fe2007-11-14 17:00:44 -08001949 return;
1950
Ingo Molnarcb491fc2009-04-08 12:31:17 +02001951 for (i = 0; mce_attrs[i]; i++)
1952 sysdev_remove_file(&per_cpu(mce_dev, cpu), mce_attrs[i]);
1953
Andi Kleen0d7482e32009-02-17 23:07:13 +01001954 for (i = 0; i < banks; i++)
Andi Kleencebe1822009-07-09 00:31:43 +02001955 sysdev_remove_file(&per_cpu(mce_dev, cpu), &mce_banks[i].attr);
Ingo Molnarcb491fc2009-04-08 12:31:17 +02001956
1957 sysdev_unregister(&per_cpu(mce_dev, cpu));
1958 cpumask_clear_cpu(cpu, mce_dev_initialized);
Andi Kleen91c6d402005-07-28 21:15:39 -07001959}
Andi Kleen91c6d402005-07-28 21:15:39 -07001960
Andi Kleend6b75582009-02-12 13:39:31 +01001961/* Make sure there are no machine checks on offlined CPUs. */
Hidetoshi Seto767df1b2009-11-26 17:29:02 +09001962static void __cpuinit mce_disable_cpu(void *h)
Andi Kleend6b75582009-02-12 13:39:31 +01001963{
Andi Kleen88ccbed2009-02-12 13:49:36 +01001964 unsigned long action = *(unsigned long *)h;
Ingo Molnarcb491fc2009-04-08 12:31:17 +02001965 int i;
Andi Kleend6b75582009-02-12 13:39:31 +01001966
1967 if (!mce_available(&current_cpu_data))
1968 return;
Hidetoshi Seto767df1b2009-11-26 17:29:02 +09001969
Andi Kleen88ccbed2009-02-12 13:49:36 +01001970 if (!(action & CPU_TASKS_FROZEN))
1971 cmci_clear();
Andi Kleen06b7a7a2009-04-27 18:37:43 +02001972 for (i = 0; i < banks; i++) {
Andi Kleencebe1822009-07-09 00:31:43 +02001973 struct mce_bank *b = &mce_banks[i];
Ingo Molnar11868a22009-09-23 17:49:55 +02001974
Andi Kleencebe1822009-07-09 00:31:43 +02001975 if (b->init)
Andi Kleena2d32bc2009-07-09 00:31:44 +02001976 wrmsrl(MSR_IA32_MCx_CTL(i), 0);
Andi Kleen06b7a7a2009-04-27 18:37:43 +02001977 }
Andi Kleend6b75582009-02-12 13:39:31 +01001978}
1979
Hidetoshi Seto767df1b2009-11-26 17:29:02 +09001980static void __cpuinit mce_reenable_cpu(void *h)
Andi Kleend6b75582009-02-12 13:39:31 +01001981{
Andi Kleen88ccbed2009-02-12 13:49:36 +01001982 unsigned long action = *(unsigned long *)h;
Ingo Molnare9eee032009-04-08 12:31:17 +02001983 int i;
Andi Kleend6b75582009-02-12 13:39:31 +01001984
1985 if (!mce_available(&current_cpu_data))
1986 return;
Ingo Molnare9eee032009-04-08 12:31:17 +02001987
Andi Kleen88ccbed2009-02-12 13:49:36 +01001988 if (!(action & CPU_TASKS_FROZEN))
1989 cmci_reenable();
Andi Kleen06b7a7a2009-04-27 18:37:43 +02001990 for (i = 0; i < banks; i++) {
Andi Kleencebe1822009-07-09 00:31:43 +02001991 struct mce_bank *b = &mce_banks[i];
Ingo Molnar11868a22009-09-23 17:49:55 +02001992
Andi Kleencebe1822009-07-09 00:31:43 +02001993 if (b->init)
Andi Kleena2d32bc2009-07-09 00:31:44 +02001994 wrmsrl(MSR_IA32_MCx_CTL(i), b->ctl);
Andi Kleen06b7a7a2009-04-27 18:37:43 +02001995 }
Andi Kleend6b75582009-02-12 13:39:31 +01001996}
1997
Andi Kleen91c6d402005-07-28 21:15:39 -07001998/* Get notified when a cpu comes on/off. Be hotplug friendly. */
Ingo Molnare9eee032009-04-08 12:31:17 +02001999static int __cpuinit
2000mce_cpu_callback(struct notifier_block *nfb, unsigned long action, void *hcpu)
Andi Kleen91c6d402005-07-28 21:15:39 -07002001{
2002 unsigned int cpu = (unsigned long)hcpu;
Andi Kleen52d168e2009-02-12 13:39:29 +01002003 struct timer_list *t = &per_cpu(mce_timer, cpu);
Andi Kleen91c6d402005-07-28 21:15:39 -07002004
2005 switch (action) {
Andreas Herrmannbae19fe2007-11-14 17:00:44 -08002006 case CPU_ONLINE:
2007 case CPU_ONLINE_FROZEN:
2008 mce_create_device(cpu);
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 break;
Andi Kleen91c6d402005-07-28 21:15:39 -07002012 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07002013 case CPU_DEAD_FROZEN:
Rafael J. Wysocki87357282008-08-22 22:23:09 +02002014 if (threshold_cpu_callback)
2015 threshold_cpu_callback(action, cpu);
Andi Kleen91c6d402005-07-28 21:15:39 -07002016 mce_remove_device(cpu);
2017 break;
Andi Kleen52d168e2009-02-12 13:39:29 +01002018 case CPU_DOWN_PREPARE:
2019 case CPU_DOWN_PREPARE_FROZEN:
2020 del_timer_sync(t);
Andi Kleen88ccbed2009-02-12 13:49:36 +01002021 smp_call_function_single(cpu, mce_disable_cpu, &action, 1);
Andi Kleen52d168e2009-02-12 13:39:29 +01002022 break;
2023 case CPU_DOWN_FAILED:
2024 case CPU_DOWN_FAILED_FROZEN:
Hidetoshi Setofe5ed912009-12-03 11:33:08 +09002025 if (!mce_ignore_ce && check_interval) {
2026 t->expires = round_jiffies(jiffies +
Tejun Heo245b2e72009-06-24 15:13:48 +09002027 __get_cpu_var(mce_next_interval));
Hidetoshi Setofe5ed912009-12-03 11:33:08 +09002028 add_timer_on(t, cpu);
2029 }
Andi Kleen88ccbed2009-02-12 13:49:36 +01002030 smp_call_function_single(cpu, mce_reenable_cpu, &action, 1);
2031 break;
2032 case CPU_POST_DEAD:
2033 /* intentionally ignoring frozen here */
2034 cmci_rediscover(cpu);
Andi Kleen52d168e2009-02-12 13:39:29 +01002035 break;
Andi Kleen91c6d402005-07-28 21:15:39 -07002036 }
Andreas Herrmannbae19fe2007-11-14 17:00:44 -08002037 return NOTIFY_OK;
Andi Kleen91c6d402005-07-28 21:15:39 -07002038}
2039
Sam Ravnborg1e356692008-01-30 13:33:36 +01002040static struct notifier_block mce_cpu_notifier __cpuinitdata = {
Andi Kleen91c6d402005-07-28 21:15:39 -07002041 .notifier_call = mce_cpu_callback,
2042};
2043
Andi Kleencebe1822009-07-09 00:31:43 +02002044static __init void mce_init_banks(void)
Andi Kleen0d7482e32009-02-17 23:07:13 +01002045{
2046 int i;
2047
Andi Kleen0d7482e32009-02-17 23:07:13 +01002048 for (i = 0; i < banks; i++) {
Andi Kleencebe1822009-07-09 00:31:43 +02002049 struct mce_bank *b = &mce_banks[i];
2050 struct sysdev_attribute *a = &b->attr;
Ingo Molnare9eee032009-04-08 12:31:17 +02002051
Eric W. Biedermana07e4152010-02-11 15:23:05 -08002052 sysfs_attr_init(&a->attr);
Andi Kleencebe1822009-07-09 00:31:43 +02002053 a->attr.name = b->attrname;
2054 snprintf(b->attrname, ATTR_LEN, "bank%d", i);
Ingo Molnare9eee032009-04-08 12:31:17 +02002055
2056 a->attr.mode = 0644;
2057 a->show = show_bank;
2058 a->store = set_bank;
Andi Kleen0d7482e32009-02-17 23:07:13 +01002059 }
Andi Kleen0d7482e32009-02-17 23:07:13 +01002060}
2061
Borislav Petkov5e099542009-10-16 12:31:32 +02002062static __init int mcheck_init_device(void)
Andi Kleen91c6d402005-07-28 21:15:39 -07002063{
2064 int err;
2065 int i = 0;
2066
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 if (!mce_available(&boot_cpu_data))
2068 return -EIO;
Andi Kleen0d7482e32009-02-17 23:07:13 +01002069
Yinghai Lue92fae02009-06-17 16:21:33 -07002070 zalloc_cpumask_var(&mce_dev_initialized, GFP_KERNEL);
Rusty Russell996867d2009-03-13 14:49:51 +10302071
Andi Kleencebe1822009-07-09 00:31:43 +02002072 mce_init_banks();
Andi Kleen0d7482e32009-02-17 23:07:13 +01002073
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 err = sysdev_class_register(&mce_sysclass);
Akinobu Mitad435d862007-10-18 03:05:15 -07002075 if (err)
2076 return err;
Andi Kleen91c6d402005-07-28 21:15:39 -07002077
2078 for_each_online_cpu(i) {
Akinobu Mitad435d862007-10-18 03:05:15 -07002079 err = mce_create_device(i);
2080 if (err)
2081 return err;
Andi Kleen91c6d402005-07-28 21:15:39 -07002082 }
2083
Chandra Seetharamanbe6b5a32006-07-30 03:03:37 -07002084 register_hotcpu_notifier(&mce_cpu_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 misc_register(&mce_log_device);
Ingo Molnare9eee032009-04-08 12:31:17 +02002086
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088}
Andi Kleen91c6d402005-07-28 21:15:39 -07002089
Borislav Petkov5e099542009-10-16 12:31:32 +02002090device_initcall(mcheck_init_device);
Ingo Molnara988d332009-04-08 12:31:25 +02002091
Andi Kleend7c3c9a2009-04-28 23:07:25 +02002092/*
2093 * Old style boot options parsing. Only for compatibility.
2094 */
2095static int __init mcheck_disable(char *str)
2096{
2097 mce_disabled = 1;
2098 return 1;
2099}
2100__setup("nomce", mcheck_disable);
Huang Ying5be9ed22009-07-31 09:41:42 +08002101
2102#ifdef CONFIG_DEBUG_FS
2103struct dentry *mce_get_debugfs_dir(void)
2104{
2105 static struct dentry *dmce;
2106
2107 if (!dmce)
2108 dmce = debugfs_create_dir("mce", NULL);
2109
2110 return dmce;
2111}
Huang Yingbf783f92009-07-31 09:41:43 +08002112
2113static void mce_reset(void)
2114{
2115 cpu_missing = 0;
2116 atomic_set(&mce_fake_paniced, 0);
2117 atomic_set(&mce_executing, 0);
2118 atomic_set(&mce_callin, 0);
2119 atomic_set(&global_nwo, 0);
2120}
2121
2122static int fake_panic_get(void *data, u64 *val)
2123{
2124 *val = fake_panic;
2125 return 0;
2126}
2127
2128static int fake_panic_set(void *data, u64 val)
2129{
2130 mce_reset();
2131 fake_panic = val;
2132 return 0;
2133}
2134
2135DEFINE_SIMPLE_ATTRIBUTE(fake_panic_fops, fake_panic_get,
2136 fake_panic_set, "%llu\n");
2137
Borislav Petkov5e099542009-10-16 12:31:32 +02002138static int __init mcheck_debugfs_init(void)
Huang Yingbf783f92009-07-31 09:41:43 +08002139{
2140 struct dentry *dmce, *ffake_panic;
2141
2142 dmce = mce_get_debugfs_dir();
2143 if (!dmce)
2144 return -ENOMEM;
2145 ffake_panic = debugfs_create_file("fake_panic", 0444, dmce, NULL,
2146 &fake_panic_fops);
2147 if (!ffake_panic)
2148 return -ENOMEM;
2149
2150 return 0;
2151}
Borislav Petkov5e099542009-10-16 12:31:32 +02002152late_initcall(mcheck_debugfs_init);
Huang Ying5be9ed22009-07-31 09:41:42 +08002153#endif