blob: b1598a9436d09dd8f60a4fb14c75eda0f83043c8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Machine check handler.
Ingo Molnare9eee032009-04-08 12:31:17 +02003 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * K8 parts Copyright 2002,2003 Andi Kleen, SuSE Labs.
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02005 * Rest from unknown author(s).
6 * 2004 Andi Kleen. Rewrote most of it.
Andi Kleenb79109c2009-02-12 13:43:23 +01007 * Copyright 2008 Intel Corporation
8 * Author: Andi Kleen
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 */
Tim Hockine02e68d2007-07-21 17:10:36 +020010#include <linux/thread_info.h>
Ingo Molnare9eee032009-04-08 12:31:17 +020011#include <linux/capability.h>
12#include <linux/miscdevice.h>
Andi Kleenccc3c312009-05-27 21:56:54 +020013#include <linux/interrupt.h>
Andi Kleen8457c842009-02-12 13:49:33 +010014#include <linux/ratelimit.h>
Ingo Molnare9eee032009-04-08 12:31:17 +020015#include <linux/kallsyms.h>
16#include <linux/rcupdate.h>
Ingo Molnare9eee032009-04-08 12:31:17 +020017#include <linux/kobject.h>
Hidetoshi Seto14a02532009-04-30 16:04:51 +090018#include <linux/uaccess.h>
Ingo Molnare9eee032009-04-08 12:31:17 +020019#include <linux/kdebug.h>
20#include <linux/kernel.h>
21#include <linux/percpu.h>
22#include <linux/string.h>
23#include <linux/sysdev.h>
Andi Kleen3c079792009-05-27 21:56:55 +020024#include <linux/delay.h>
Ingo Molnare9eee032009-04-08 12:31:17 +020025#include <linux/ctype.h>
26#include <linux/sched.h>
27#include <linux/sysfs.h>
28#include <linux/types.h>
29#include <linux/init.h>
30#include <linux/kmod.h>
31#include <linux/poll.h>
Andi Kleen3c079792009-05-27 21:56:55 +020032#include <linux/nmi.h>
Ingo Molnare9eee032009-04-08 12:31:17 +020033#include <linux/cpu.h>
Hidetoshi Seto14a02532009-04-30 16:04:51 +090034#include <linux/smp.h>
Ingo Molnare9eee032009-04-08 12:31:17 +020035#include <linux/fs.h>
Andi Kleen9b1beaf2009-05-27 21:56:59 +020036#include <linux/mm.h>
Huang Ying5be9ed22009-07-31 09:41:42 +080037#include <linux/debugfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Ingo Molnare9eee032009-04-08 12:31:17 +020039#include <asm/processor.h>
Andi Kleenccc3c312009-05-27 21:56:54 +020040#include <asm/hw_irq.h>
41#include <asm/apic.h>
Ingo Molnare9eee032009-04-08 12:31:17 +020042#include <asm/idle.h>
Andi Kleenccc3c312009-05-27 21:56:54 +020043#include <asm/ipi.h>
Ingo Molnare9eee032009-04-08 12:31:17 +020044#include <asm/mce.h>
45#include <asm/msr.h>
Ingo Molnare9eee032009-04-08 12:31:17 +020046
Andi Kleenbd19a5e2009-05-27 21:56:55 +020047#include "mce-internal.h"
Ingo Molnar711c2e42009-04-08 12:31:26 +020048
Hidetoshi Seto4e5b3e62009-06-15 17:20:20 +090049int mce_disabled __read_mostly;
Andi Kleen04b2b1a2009-04-28 22:50:19 +020050
Ingo Molnare9eee032009-04-08 12:31:17 +020051#define MISC_MCELOG_MINOR 227
Andi Kleen0d7482e32009-02-17 23:07:13 +010052
Andi Kleen3c079792009-05-27 21:56:55 +020053#define SPINUNIT 100 /* 100ns */
54
Andi Kleen553f2652006-04-07 19:49:57 +020055atomic_t mce_entry;
56
Andi Kleen01ca79f2009-05-27 21:56:52 +020057DEFINE_PER_CPU(unsigned, mce_exception_count);
58
Tim Hockinbd784322007-07-21 17:10:37 +020059/*
60 * Tolerant levels:
61 * 0: always panic on uncorrected errors, log corrected errors
62 * 1: panic or SIGBUS on uncorrected errors, log corrected errors
63 * 2: SIGBUS or log uncorrected errors (if possible), log corrected errors
64 * 3: never panic or SIGBUS, log all errors (for testing only)
65 */
Hidetoshi Seto4e5b3e62009-06-15 17:20:20 +090066static int tolerant __read_mostly = 1;
67static int banks __read_mostly;
Hidetoshi Seto4e5b3e62009-06-15 17:20:20 +090068static int rip_msr __read_mostly;
69static int mce_bootlog __read_mostly = -1;
70static int monarch_timeout __read_mostly = -1;
71static int mce_panic_timeout __read_mostly;
72static int mce_dont_log_ce __read_mostly;
73int mce_cmci_disabled __read_mostly;
74int mce_ignore_ce __read_mostly;
75int mce_ser __read_mostly;
Andi Kleena98f0dd2007-02-13 13:26:23 +010076
Andi Kleencebe1822009-07-09 00:31:43 +020077struct mce_bank *mce_banks __read_mostly;
78
Hidetoshi Seto1020bcb2009-06-15 17:20:57 +090079/* User mode helper program triggered by machine check event */
80static unsigned long mce_need_notify;
81static char mce_helper[128];
82static char *mce_helper_argv[2] = { mce_helper, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Tim Hockine02e68d2007-07-21 17:10:36 +020084static DECLARE_WAIT_QUEUE_HEAD(mce_wait);
Andi Kleen3c079792009-05-27 21:56:55 +020085static DEFINE_PER_CPU(struct mce, mces_seen);
86static int cpu_missing;
87
Ingo Molnarf436f8b2009-10-01 16:14:32 +020088static void default_decode_mce(struct mce *m)
89{
90 pr_emerg("No human readable MCE decoding support on this CPU type.\n");
91 pr_emerg("Run the message through 'mcelog --ascii' to decode.\n");
92}
93
94/*
95 * CPU/chipset specific EDAC code can register a callback here to print
96 * MCE errors in a human-readable form:
97 */
98void (*x86_mce_decode_callback)(struct mce *m) = default_decode_mce;
99EXPORT_SYMBOL(x86_mce_decode_callback);
Tim Hockine02e68d2007-07-21 17:10:36 +0200100
Andi Kleenee031c32009-02-12 13:49:34 +0100101/* MCA banks polled by the period polling timer for corrected events */
102DEFINE_PER_CPU(mce_banks_t, mce_poll_banks) = {
103 [0 ... BITS_TO_LONGS(MAX_NR_BANKS)-1] = ~0UL
104};
105
Andi Kleen9b1beaf2009-05-27 21:56:59 +0200106static DEFINE_PER_CPU(struct work_struct, mce_work);
107
Andi Kleenb5f2fa42009-02-12 13:43:22 +0100108/* Do initial initialization of a struct mce */
109void mce_setup(struct mce *m)
110{
111 memset(m, 0, sizeof(struct mce));
Andi Kleend620c672009-05-27 21:56:56 +0200112 m->cpu = m->extcpu = smp_processor_id();
Andi Kleenb5f2fa42009-02-12 13:43:22 +0100113 rdtscll(m->tsc);
Andi Kleen8ee08342009-05-27 21:56:56 +0200114 /* We hope get_seconds stays lockless */
115 m->time = get_seconds();
116 m->cpuvendor = boot_cpu_data.x86_vendor;
117 m->cpuid = cpuid_eax(1);
118#ifdef CONFIG_SMP
119 m->socketid = cpu_data(m->extcpu).phys_proc_id;
120#endif
121 m->apicid = cpu_data(m->extcpu).initial_apicid;
122 rdmsrl(MSR_IA32_MCG_CAP, m->mcgcap);
Andi Kleenb5f2fa42009-02-12 13:43:22 +0100123}
124
Andi Kleenea149b32009-04-29 19:31:00 +0200125DEFINE_PER_CPU(struct mce, injectm);
126EXPORT_PER_CPU_SYMBOL_GPL(injectm);
127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128/*
129 * Lockless MCE logging infrastructure.
130 * This avoids deadlocks on printk locks without having to break locks. Also
131 * separate MCEs from kernel messages to avoid bogus bug reports.
132 */
133
Adrian Bunk231fd902008-01-30 13:30:30 +0100134static struct mce_log mcelog = {
Andi Kleenf6fb0ac2009-05-27 21:56:55 +0200135 .signature = MCE_LOG_SIGNATURE,
136 .len = MCE_LOG_LEN,
137 .recordlen = sizeof(struct mce),
Thomas Gleixnerd88203d2007-10-23 22:37:23 +0200138};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
140void mce_log(struct mce *mce)
141{
142 unsigned next, entry;
Ingo Molnare9eee032009-04-08 12:31:17 +0200143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 mce->finished = 0;
Mike Waychison76441432005-09-30 00:01:27 +0200145 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 for (;;) {
147 entry = rcu_dereference(mcelog.next);
Andi Kleen673242c2005-09-12 18:49:24 +0200148 for (;;) {
Ingo Molnare9eee032009-04-08 12:31:17 +0200149 /*
150 * When the buffer fills up discard new entries.
151 * Assume that the earlier errors are the more
152 * interesting ones:
153 */
Andi Kleen673242c2005-09-12 18:49:24 +0200154 if (entry >= MCE_LOG_LEN) {
Hidetoshi Seto14a02532009-04-30 16:04:51 +0900155 set_bit(MCE_OVERFLOW,
156 (unsigned long *)&mcelog.flags);
Andi Kleen673242c2005-09-12 18:49:24 +0200157 return;
158 }
Ingo Molnare9eee032009-04-08 12:31:17 +0200159 /* Old left over entry. Skip: */
Andi Kleen673242c2005-09-12 18:49:24 +0200160 if (mcelog.entry[entry].finished) {
161 entry++;
162 continue;
163 }
Mike Waychison76441432005-09-30 00:01:27 +0200164 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 smp_rmb();
167 next = entry + 1;
168 if (cmpxchg(&mcelog.next, entry, next) == entry)
169 break;
170 }
171 memcpy(mcelog.entry + entry, mce, sizeof(struct mce));
Mike Waychison76441432005-09-30 00:01:27 +0200172 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 mcelog.entry[entry].finished = 1;
Mike Waychison76441432005-09-30 00:01:27 +0200174 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
Andi Kleena0189c72009-05-27 21:56:54 +0200176 mce->finished = 1;
Hidetoshi Seto1020bcb2009-06-15 17:20:57 +0900177 set_bit(0, &mce_need_notify);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178}
179
Hidetoshi Seto77e26cc2009-06-11 16:04:35 +0900180static void print_mce(struct mce *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181{
Ingo Molnarf436f8b2009-10-01 16:14:32 +0200182 pr_emerg("CPU %d: Machine Check Exception: %16Lx Bank %d: %016Lx\n",
Andi Kleend620c672009-05-27 21:56:56 +0200183 m->extcpu, m->mcgstatus, m->bank, m->status);
Ingo Molnarf436f8b2009-10-01 16:14:32 +0200184
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100185 if (m->ip) {
Ingo Molnarf436f8b2009-10-01 16:14:32 +0200186 pr_emerg("RIP%s %02x:<%016Lx> ",
187 !(m->mcgstatus & MCG_STATUS_EIPV) ? " !INEXACT!" : "",
188 m->cs, m->ip);
189
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 if (m->cs == __KERNEL_CS)
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100191 print_symbol("{%s}", m->ip);
Ingo Molnarf436f8b2009-10-01 16:14:32 +0200192 pr_cont("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 }
Borislav Petkov549d0422009-07-24 13:51:42 +0200194
Ingo Molnarf436f8b2009-10-01 16:14:32 +0200195 pr_emerg("TSC %llx ", m->tsc);
196 if (m->addr)
197 pr_cont("ADDR %llx ", m->addr);
198 if (m->misc)
199 pr_cont("MISC %llx ", m->misc);
200
201 pr_cont("\n");
202 pr_emerg("PROCESSOR %u:%x TIME %llu SOCKET %u APIC %x\n",
203 m->cpuvendor, m->cpuid, m->time, m->socketid, m->apicid);
204
205 /*
206 * Print out human-readable details about the MCE error,
207 * (if the CPU has an implementation for that):
208 */
209 x86_mce_decode_callback(m);
Andi Kleen86503562009-05-27 21:56:58 +0200210}
211
Hidetoshi Seto77e26cc2009-06-11 16:04:35 +0900212static void print_mce_head(void)
213{
Ingo Molnarf436f8b2009-10-01 16:14:32 +0200214 pr_emerg("\nHARDWARE ERROR\n");
Hidetoshi Seto77e26cc2009-06-11 16:04:35 +0900215}
216
Andi Kleen86503562009-05-27 21:56:58 +0200217static void print_mce_tail(void)
218{
Ingo Molnarf436f8b2009-10-01 16:14:32 +0200219 pr_emerg("This is not a software problem!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220}
221
Andi Kleenf94b61c2009-05-27 21:56:55 +0200222#define PANIC_TIMEOUT 5 /* 5 seconds */
223
224static atomic_t mce_paniced;
225
Huang Yingbf783f92009-07-31 09:41:43 +0800226static int fake_panic;
227static atomic_t mce_fake_paniced;
228
Andi Kleenf94b61c2009-05-27 21:56:55 +0200229/* Panic in progress. Enable interrupts and wait for final IPI */
230static void wait_for_panic(void)
231{
232 long timeout = PANIC_TIMEOUT*USEC_PER_SEC;
Ingo Molnarf436f8b2009-10-01 16:14:32 +0200233
Andi Kleenf94b61c2009-05-27 21:56:55 +0200234 preempt_disable();
235 local_irq_enable();
236 while (timeout-- > 0)
237 udelay(1);
Andi Kleen29b0f592009-05-27 21:56:56 +0200238 if (panic_timeout == 0)
239 panic_timeout = mce_panic_timeout;
Andi Kleenf94b61c2009-05-27 21:56:55 +0200240 panic("Panicing machine check CPU died");
241}
242
Andi Kleenbd19a5e2009-05-27 21:56:55 +0200243static void mce_panic(char *msg, struct mce *final, char *exp)
Thomas Gleixnerd88203d2007-10-23 22:37:23 +0200244{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 int i;
Tim Hockine02e68d2007-07-21 17:10:36 +0200246
Huang Yingbf783f92009-07-31 09:41:43 +0800247 if (!fake_panic) {
248 /*
249 * Make sure only one CPU runs in machine check panic
250 */
251 if (atomic_inc_return(&mce_paniced) > 1)
252 wait_for_panic();
253 barrier();
Andi Kleenf94b61c2009-05-27 21:56:55 +0200254
Huang Yingbf783f92009-07-31 09:41:43 +0800255 bust_spinlocks(1);
256 console_verbose();
257 } else {
258 /* Don't log too much for fake panic */
259 if (atomic_inc_return(&mce_fake_paniced) > 1)
260 return;
261 }
Hidetoshi Seto77e26cc2009-06-11 16:04:35 +0900262 print_mce_head();
Andi Kleena0189c72009-05-27 21:56:54 +0200263 /* First print corrected ones that are still unlogged */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 for (i = 0; i < MCE_LOG_LEN; i++) {
Andi Kleena0189c72009-05-27 21:56:54 +0200265 struct mce *m = &mcelog.entry[i];
Hidetoshi Seto77e26cc2009-06-11 16:04:35 +0900266 if (!(m->status & MCI_STATUS_VAL))
267 continue;
268 if (!(m->status & MCI_STATUS_UC))
269 print_mce(m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 }
Andi Kleena0189c72009-05-27 21:56:54 +0200271 /* Now print uncorrected but with the final one last */
272 for (i = 0; i < MCE_LOG_LEN; i++) {
273 struct mce *m = &mcelog.entry[i];
274 if (!(m->status & MCI_STATUS_VAL))
275 continue;
Hidetoshi Seto77e26cc2009-06-11 16:04:35 +0900276 if (!(m->status & MCI_STATUS_UC))
277 continue;
Andi Kleena0189c72009-05-27 21:56:54 +0200278 if (!final || memcmp(m, final, sizeof(struct mce)))
Hidetoshi Seto77e26cc2009-06-11 16:04:35 +0900279 print_mce(m);
Andi Kleena0189c72009-05-27 21:56:54 +0200280 }
281 if (final)
Hidetoshi Seto77e26cc2009-06-11 16:04:35 +0900282 print_mce(final);
Andi Kleen3c079792009-05-27 21:56:55 +0200283 if (cpu_missing)
284 printk(KERN_EMERG "Some CPUs didn't answer in synchronization\n");
Andi Kleen86503562009-05-27 21:56:58 +0200285 print_mce_tail();
Andi Kleenbd19a5e2009-05-27 21:56:55 +0200286 if (exp)
287 printk(KERN_EMERG "Machine check: %s\n", exp);
Huang Yingbf783f92009-07-31 09:41:43 +0800288 if (!fake_panic) {
289 if (panic_timeout == 0)
290 panic_timeout = mce_panic_timeout;
291 panic(msg);
292 } else
293 printk(KERN_EMERG "Fake kernel panic: %s\n", msg);
Thomas Gleixnerd88203d2007-10-23 22:37:23 +0200294}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
Andi Kleenea149b32009-04-29 19:31:00 +0200296/* Support code for software error injection */
297
298static int msr_to_offset(u32 msr)
299{
300 unsigned bank = __get_cpu_var(injectm.bank);
Ingo Molnarf436f8b2009-10-01 16:14:32 +0200301
Andi Kleenea149b32009-04-29 19:31:00 +0200302 if (msr == rip_msr)
303 return offsetof(struct mce, ip);
Andi Kleena2d32bc2009-07-09 00:31:44 +0200304 if (msr == MSR_IA32_MCx_STATUS(bank))
Andi Kleenea149b32009-04-29 19:31:00 +0200305 return offsetof(struct mce, status);
Andi Kleena2d32bc2009-07-09 00:31:44 +0200306 if (msr == MSR_IA32_MCx_ADDR(bank))
Andi Kleenea149b32009-04-29 19:31:00 +0200307 return offsetof(struct mce, addr);
Andi Kleena2d32bc2009-07-09 00:31:44 +0200308 if (msr == MSR_IA32_MCx_MISC(bank))
Andi Kleenea149b32009-04-29 19:31:00 +0200309 return offsetof(struct mce, misc);
310 if (msr == MSR_IA32_MCG_STATUS)
311 return offsetof(struct mce, mcgstatus);
312 return -1;
313}
314
Andi Kleen5f8c1a52009-04-29 19:29:12 +0200315/* MSR access wrappers used for error injection */
316static u64 mce_rdmsrl(u32 msr)
317{
318 u64 v;
Ingo Molnar11868a22009-09-23 17:49:55 +0200319
Andi Kleenea149b32009-04-29 19:31:00 +0200320 if (__get_cpu_var(injectm).finished) {
321 int offset = msr_to_offset(msr);
Ingo Molnar11868a22009-09-23 17:49:55 +0200322
Andi Kleenea149b32009-04-29 19:31:00 +0200323 if (offset < 0)
324 return 0;
325 return *(u64 *)((char *)&__get_cpu_var(injectm) + offset);
326 }
Ingo Molnar11868a22009-09-23 17:49:55 +0200327
328 if (rdmsrl_safe(msr, &v)) {
329 WARN_ONCE(1, "mce: Unable to read msr %d!\n", msr);
330 /*
331 * Return zero in case the access faulted. This should
332 * not happen normally but can happen if the CPU does
333 * something weird, or if the code is buggy.
334 */
335 v = 0;
336 }
337
Andi Kleen5f8c1a52009-04-29 19:29:12 +0200338 return v;
339}
340
341static void mce_wrmsrl(u32 msr, u64 v)
342{
Andi Kleenea149b32009-04-29 19:31:00 +0200343 if (__get_cpu_var(injectm).finished) {
344 int offset = msr_to_offset(msr);
Ingo Molnar11868a22009-09-23 17:49:55 +0200345
Andi Kleenea149b32009-04-29 19:31:00 +0200346 if (offset >= 0)
347 *(u64 *)((char *)&__get_cpu_var(injectm) + offset) = v;
348 return;
349 }
Andi Kleen5f8c1a52009-04-29 19:29:12 +0200350 wrmsrl(msr, v);
351}
352
Andi Kleen9b1beaf2009-05-27 21:56:59 +0200353/*
354 * Simple lockless ring to communicate PFNs from the exception handler with the
355 * process context work function. This is vastly simplified because there's
356 * only a single reader and a single writer.
357 */
358#define MCE_RING_SIZE 16 /* we use one entry less */
359
360struct mce_ring {
361 unsigned short start;
362 unsigned short end;
363 unsigned long ring[MCE_RING_SIZE];
364};
365static DEFINE_PER_CPU(struct mce_ring, mce_ring);
366
367/* Runs with CPU affinity in workqueue */
368static int mce_ring_empty(void)
369{
370 struct mce_ring *r = &__get_cpu_var(mce_ring);
371
372 return r->start == r->end;
373}
374
375static int mce_ring_get(unsigned long *pfn)
376{
377 struct mce_ring *r;
378 int ret = 0;
379
380 *pfn = 0;
381 get_cpu();
382 r = &__get_cpu_var(mce_ring);
383 if (r->start == r->end)
384 goto out;
385 *pfn = r->ring[r->start];
386 r->start = (r->start + 1) % MCE_RING_SIZE;
387 ret = 1;
388out:
389 put_cpu();
390 return ret;
391}
392
393/* Always runs in MCE context with preempt off */
394static int mce_ring_add(unsigned long pfn)
395{
396 struct mce_ring *r = &__get_cpu_var(mce_ring);
397 unsigned next;
398
399 next = (r->end + 1) % MCE_RING_SIZE;
400 if (next == r->start)
401 return -1;
402 r->ring[r->end] = pfn;
403 wmb();
404 r->end = next;
405 return 0;
406}
407
Andi Kleen88ccbed2009-02-12 13:49:36 +0100408int mce_available(struct cpuinfo_x86 *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409{
Andi Kleen04b2b1a2009-04-28 22:50:19 +0200410 if (mce_disabled)
Andi Kleen5b4408f2009-02-12 13:39:30 +0100411 return 0;
Akinobu Mita3d1712c2006-03-24 03:15:11 -0800412 return cpu_has(c, X86_FEATURE_MCE) && cpu_has(c, X86_FEATURE_MCA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413}
414
Andi Kleen9b1beaf2009-05-27 21:56:59 +0200415static void mce_schedule_work(void)
416{
417 if (!mce_ring_empty()) {
418 struct work_struct *work = &__get_cpu_var(mce_work);
419 if (!work_pending(work))
420 schedule_work(work);
421 }
422}
423
Huang Ying1b2797d2009-05-27 21:56:51 +0200424/*
425 * Get the address of the instruction at the time of the machine check
426 * error.
427 */
Andi Kleen94ad8472005-04-16 15:25:09 -0700428static inline void mce_get_rip(struct mce *m, struct pt_regs *regs)
429{
Huang Ying1b2797d2009-05-27 21:56:51 +0200430
431 if (regs && (m->mcgstatus & (MCG_STATUS_RIPV|MCG_STATUS_EIPV))) {
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100432 m->ip = regs->ip;
Andi Kleen94ad8472005-04-16 15:25:09 -0700433 m->cs = regs->cs;
434 } else {
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100435 m->ip = 0;
Andi Kleen94ad8472005-04-16 15:25:09 -0700436 m->cs = 0;
437 }
Huang Ying1b2797d2009-05-27 21:56:51 +0200438 if (rip_msr)
Andi Kleen5f8c1a52009-04-29 19:29:12 +0200439 m->ip = mce_rdmsrl(rip_msr);
Andi Kleen94ad8472005-04-16 15:25:09 -0700440}
441
Ingo Molnar11868a22009-09-23 17:49:55 +0200442#ifdef CONFIG_X86_LOCAL_APIC
Andi Kleenccc3c312009-05-27 21:56:54 +0200443/*
444 * Called after interrupts have been reenabled again
445 * when a MCE happened during an interrupts off region
446 * in the kernel.
447 */
448asmlinkage void smp_mce_self_interrupt(struct pt_regs *regs)
449{
450 ack_APIC_irq();
451 exit_idle();
452 irq_enter();
Andi Kleen9ff36ee2009-05-27 21:56:58 +0200453 mce_notify_irq();
Andi Kleen9b1beaf2009-05-27 21:56:59 +0200454 mce_schedule_work();
Andi Kleenccc3c312009-05-27 21:56:54 +0200455 irq_exit();
456}
457#endif
458
459static void mce_report_event(struct pt_regs *regs)
460{
461 if (regs->flags & (X86_VM_MASK|X86_EFLAGS_IF)) {
Andi Kleen9ff36ee2009-05-27 21:56:58 +0200462 mce_notify_irq();
Andi Kleen9b1beaf2009-05-27 21:56:59 +0200463 /*
464 * Triggering the work queue here is just an insurance
465 * policy in case the syscall exit notify handler
466 * doesn't run soon enough or ends up running on the
467 * wrong CPU (can happen when audit sleeps)
468 */
469 mce_schedule_work();
Andi Kleenccc3c312009-05-27 21:56:54 +0200470 return;
471 }
472
473#ifdef CONFIG_X86_LOCAL_APIC
474 /*
475 * Without APIC do not notify. The event will be picked
476 * up eventually.
477 */
478 if (!cpu_has_apic)
479 return;
480
481 /*
482 * When interrupts are disabled we cannot use
483 * kernel services safely. Trigger an self interrupt
484 * through the APIC to instead do the notification
485 * after interrupts are reenabled again.
486 */
487 apic->send_IPI_self(MCE_SELF_VECTOR);
488
489 /*
490 * Wait for idle afterwards again so that we don't leave the
491 * APIC in a non idle state because the normal APIC writes
492 * cannot exclude us.
493 */
494 apic_wait_icr_idle();
495#endif
496}
497
Andi Kleenca84f692009-05-27 21:56:57 +0200498DEFINE_PER_CPU(unsigned, mce_poll_count);
499
Thomas Gleixnerd88203d2007-10-23 22:37:23 +0200500/*
Andi Kleenb79109c2009-02-12 13:43:23 +0100501 * Poll for corrected events or events that happened before reset.
502 * Those are just logged through /dev/mcelog.
503 *
504 * This is executed in standard interrupt context.
Andi Kleened7290d2009-05-27 21:56:57 +0200505 *
506 * Note: spec recommends to panic for fatal unsignalled
507 * errors here. However this would be quite problematic --
508 * we would need to reimplement the Monarch handling and
509 * it would mess up the exclusion between exception handler
510 * and poll hander -- * so we skip this for now.
511 * These cases should not happen anyways, or only when the CPU
512 * is already totally * confused. In this case it's likely it will
513 * not fully execute the machine check handler either.
Andi Kleenb79109c2009-02-12 13:43:23 +0100514 */
Andi Kleenee031c32009-02-12 13:49:34 +0100515void machine_check_poll(enum mcp_flags flags, mce_banks_t *b)
Andi Kleenb79109c2009-02-12 13:43:23 +0100516{
517 struct mce m;
518 int i;
519
Andi Kleenca84f692009-05-27 21:56:57 +0200520 __get_cpu_var(mce_poll_count)++;
521
Andi Kleenb79109c2009-02-12 13:43:23 +0100522 mce_setup(&m);
523
Andi Kleen5f8c1a52009-04-29 19:29:12 +0200524 m.mcgstatus = mce_rdmsrl(MSR_IA32_MCG_STATUS);
Andi Kleenb79109c2009-02-12 13:43:23 +0100525 for (i = 0; i < banks; i++) {
Andi Kleencebe1822009-07-09 00:31:43 +0200526 if (!mce_banks[i].ctl || !test_bit(i, *b))
Andi Kleenb79109c2009-02-12 13:43:23 +0100527 continue;
528
529 m.misc = 0;
530 m.addr = 0;
531 m.bank = i;
532 m.tsc = 0;
533
534 barrier();
Andi Kleena2d32bc2009-07-09 00:31:44 +0200535 m.status = mce_rdmsrl(MSR_IA32_MCx_STATUS(i));
Andi Kleenb79109c2009-02-12 13:43:23 +0100536 if (!(m.status & MCI_STATUS_VAL))
537 continue;
538
539 /*
Andi Kleened7290d2009-05-27 21:56:57 +0200540 * Uncorrected or signalled events are handled by the exception
541 * handler when it is enabled, so don't process those here.
Andi Kleenb79109c2009-02-12 13:43:23 +0100542 *
543 * TBD do the same check for MCI_STATUS_EN here?
544 */
Andi Kleened7290d2009-05-27 21:56:57 +0200545 if (!(flags & MCP_UC) &&
546 (m.status & (mce_ser ? MCI_STATUS_S : MCI_STATUS_UC)))
Andi Kleenb79109c2009-02-12 13:43:23 +0100547 continue;
548
549 if (m.status & MCI_STATUS_MISCV)
Andi Kleena2d32bc2009-07-09 00:31:44 +0200550 m.misc = mce_rdmsrl(MSR_IA32_MCx_MISC(i));
Andi Kleenb79109c2009-02-12 13:43:23 +0100551 if (m.status & MCI_STATUS_ADDRV)
Andi Kleena2d32bc2009-07-09 00:31:44 +0200552 m.addr = mce_rdmsrl(MSR_IA32_MCx_ADDR(i));
Andi Kleenb79109c2009-02-12 13:43:23 +0100553
554 if (!(flags & MCP_TIMESTAMP))
555 m.tsc = 0;
556 /*
557 * Don't get the IP here because it's unlikely to
558 * have anything to do with the actual error location.
559 */
Hidetoshi Seto62fdac52009-06-11 16:06:07 +0900560 if (!(flags & MCP_DONTLOG) && !mce_dont_log_ce) {
Andi Kleen5679af42009-04-07 17:06:55 +0200561 mce_log(&m);
562 add_taint(TAINT_MACHINE_CHECK);
563 }
Andi Kleenb79109c2009-02-12 13:43:23 +0100564
565 /*
566 * Clear state for this bank.
567 */
Andi Kleena2d32bc2009-07-09 00:31:44 +0200568 mce_wrmsrl(MSR_IA32_MCx_STATUS(i), 0);
Andi Kleenb79109c2009-02-12 13:43:23 +0100569 }
570
571 /*
572 * Don't clear MCG_STATUS here because it's only defined for
573 * exceptions.
574 */
Andi Kleen88921be2009-05-27 21:56:51 +0200575
576 sync_core();
Andi Kleenb79109c2009-02-12 13:43:23 +0100577}
Andi Kleenea149b32009-04-29 19:31:00 +0200578EXPORT_SYMBOL_GPL(machine_check_poll);
Andi Kleenb79109c2009-02-12 13:43:23 +0100579
580/*
Andi Kleenbd19a5e2009-05-27 21:56:55 +0200581 * Do a quick check if any of the events requires a panic.
582 * This decides if we keep the events around or clear them.
583 */
584static int mce_no_way_out(struct mce *m, char **msg)
585{
586 int i;
587
588 for (i = 0; i < banks; i++) {
Andi Kleena2d32bc2009-07-09 00:31:44 +0200589 m->status = mce_rdmsrl(MSR_IA32_MCx_STATUS(i));
Andi Kleenbd19a5e2009-05-27 21:56:55 +0200590 if (mce_severity(m, tolerant, msg) >= MCE_PANIC_SEVERITY)
591 return 1;
592 }
593 return 0;
594}
595
596/*
Andi Kleen3c079792009-05-27 21:56:55 +0200597 * Variable to establish order between CPUs while scanning.
598 * Each CPU spins initially until executing is equal its number.
599 */
600static atomic_t mce_executing;
601
602/*
603 * Defines order of CPUs on entry. First CPU becomes Monarch.
604 */
605static atomic_t mce_callin;
606
607/*
608 * Check if a timeout waiting for other CPUs happened.
609 */
610static int mce_timed_out(u64 *t)
611{
612 /*
613 * The others already did panic for some reason.
614 * Bail out like in a timeout.
615 * rmb() to tell the compiler that system_state
616 * might have been modified by someone else.
617 */
618 rmb();
619 if (atomic_read(&mce_paniced))
620 wait_for_panic();
621 if (!monarch_timeout)
622 goto out;
623 if ((s64)*t < SPINUNIT) {
624 /* CHECKME: Make panic default for 1 too? */
625 if (tolerant < 1)
626 mce_panic("Timeout synchronizing machine check over CPUs",
627 NULL, NULL);
628 cpu_missing = 1;
629 return 1;
630 }
631 *t -= SPINUNIT;
632out:
633 touch_nmi_watchdog();
634 return 0;
635}
636
637/*
638 * The Monarch's reign. The Monarch is the CPU who entered
639 * the machine check handler first. It waits for the others to
640 * raise the exception too and then grades them. When any
641 * error is fatal panic. Only then let the others continue.
642 *
643 * The other CPUs entering the MCE handler will be controlled by the
644 * Monarch. They are called Subjects.
645 *
646 * This way we prevent any potential data corruption in a unrecoverable case
647 * and also makes sure always all CPU's errors are examined.
648 *
Hidetoshi Seto680b6cf2009-08-26 16:20:36 +0900649 * Also this detects the case of a machine check event coming from outer
Andi Kleen3c079792009-05-27 21:56:55 +0200650 * space (not detected by any CPUs) In this case some external agent wants
651 * us to shut down, so panic too.
652 *
653 * The other CPUs might still decide to panic if the handler happens
654 * in a unrecoverable place, but in this case the system is in a semi-stable
655 * state and won't corrupt anything by itself. It's ok to let the others
656 * continue for a bit first.
657 *
658 * All the spin loops have timeouts; when a timeout happens a CPU
659 * typically elects itself to be Monarch.
660 */
661static void mce_reign(void)
662{
663 int cpu;
664 struct mce *m = NULL;
665 int global_worst = 0;
666 char *msg = NULL;
667 char *nmsg = NULL;
668
669 /*
670 * This CPU is the Monarch and the other CPUs have run
671 * through their handlers.
672 * Grade the severity of the errors of all the CPUs.
673 */
674 for_each_possible_cpu(cpu) {
675 int severity = mce_severity(&per_cpu(mces_seen, cpu), tolerant,
676 &nmsg);
677 if (severity > global_worst) {
678 msg = nmsg;
679 global_worst = severity;
680 m = &per_cpu(mces_seen, cpu);
681 }
682 }
683
684 /*
685 * Cannot recover? Panic here then.
686 * This dumps all the mces in the log buffer and stops the
687 * other CPUs.
688 */
689 if (m && global_worst >= MCE_PANIC_SEVERITY && tolerant < 3)
Andi Kleenac960372009-05-27 21:56:58 +0200690 mce_panic("Fatal Machine check", m, msg);
Andi Kleen3c079792009-05-27 21:56:55 +0200691
692 /*
693 * For UC somewhere we let the CPU who detects it handle it.
694 * Also must let continue the others, otherwise the handling
695 * CPU could deadlock on a lock.
696 */
697
698 /*
699 * No machine check event found. Must be some external
700 * source or one CPU is hung. Panic.
701 */
Hidetoshi Seto680b6cf2009-08-26 16:20:36 +0900702 if (global_worst <= MCE_KEEP_SEVERITY && tolerant < 3)
Andi Kleen3c079792009-05-27 21:56:55 +0200703 mce_panic("Machine check from unknown source", NULL, NULL);
704
705 /*
706 * Now clear all the mces_seen so that they don't reappear on
707 * the next mce.
708 */
709 for_each_possible_cpu(cpu)
710 memset(&per_cpu(mces_seen, cpu), 0, sizeof(struct mce));
711}
712
713static atomic_t global_nwo;
714
715/*
716 * Start of Monarch synchronization. This waits until all CPUs have
717 * entered the exception handler and then determines if any of them
718 * saw a fatal event that requires panic. Then it executes them
719 * in the entry order.
720 * TBD double check parallel CPU hotunplug
721 */
Hidetoshi Seto7fb06fc2009-06-15 18:18:43 +0900722static int mce_start(int *no_way_out)
Andi Kleen3c079792009-05-27 21:56:55 +0200723{
Hidetoshi Seto7fb06fc2009-06-15 18:18:43 +0900724 int order;
Andi Kleen3c079792009-05-27 21:56:55 +0200725 int cpus = num_online_cpus();
726 u64 timeout = (u64)monarch_timeout * NSEC_PER_USEC;
727
Hidetoshi Seto7fb06fc2009-06-15 18:18:43 +0900728 if (!timeout)
729 return -1;
Andi Kleen3c079792009-05-27 21:56:55 +0200730
Hidetoshi Seto7fb06fc2009-06-15 18:18:43 +0900731 atomic_add(*no_way_out, &global_nwo);
Huang Ying184e1fd2009-06-15 15:37:07 +0800732 /*
733 * global_nwo should be updated before mce_callin
734 */
735 smp_wmb();
Borislav Petkova95436e2009-06-20 23:28:22 -0700736 order = atomic_inc_return(&mce_callin);
Andi Kleen3c079792009-05-27 21:56:55 +0200737
738 /*
739 * Wait for everyone.
740 */
741 while (atomic_read(&mce_callin) != cpus) {
742 if (mce_timed_out(&timeout)) {
743 atomic_set(&global_nwo, 0);
Hidetoshi Seto7fb06fc2009-06-15 18:18:43 +0900744 return -1;
Andi Kleen3c079792009-05-27 21:56:55 +0200745 }
746 ndelay(SPINUNIT);
747 }
748
749 /*
Huang Ying184e1fd2009-06-15 15:37:07 +0800750 * mce_callin should be read before global_nwo
751 */
752 smp_rmb();
Hidetoshi Seto7fb06fc2009-06-15 18:18:43 +0900753
754 if (order == 1) {
755 /*
756 * Monarch: Starts executing now, the others wait.
757 */
758 atomic_set(&mce_executing, 1);
759 } else {
760 /*
761 * Subject: Now start the scanning loop one by one in
762 * the original callin order.
763 * This way when there are any shared banks it will be
764 * only seen by one CPU before cleared, avoiding duplicates.
765 */
766 while (atomic_read(&mce_executing) < order) {
767 if (mce_timed_out(&timeout)) {
768 atomic_set(&global_nwo, 0);
769 return -1;
770 }
771 ndelay(SPINUNIT);
772 }
773 }
774
Huang Ying184e1fd2009-06-15 15:37:07 +0800775 /*
Andi Kleen3c079792009-05-27 21:56:55 +0200776 * Cache the global no_way_out state.
777 */
Hidetoshi Seto7fb06fc2009-06-15 18:18:43 +0900778 *no_way_out = atomic_read(&global_nwo);
Andi Kleen3c079792009-05-27 21:56:55 +0200779
Hidetoshi Seto7fb06fc2009-06-15 18:18:43 +0900780 return order;
Andi Kleen3c079792009-05-27 21:56:55 +0200781}
782
783/*
784 * Synchronize between CPUs after main scanning loop.
785 * This invokes the bulk of the Monarch processing.
786 */
787static int mce_end(int order)
788{
789 int ret = -1;
790 u64 timeout = (u64)monarch_timeout * NSEC_PER_USEC;
791
792 if (!timeout)
793 goto reset;
794 if (order < 0)
795 goto reset;
796
797 /*
798 * Allow others to run.
799 */
800 atomic_inc(&mce_executing);
801
802 if (order == 1) {
803 /* CHECKME: Can this race with a parallel hotplug? */
804 int cpus = num_online_cpus();
805
806 /*
807 * Monarch: Wait for everyone to go through their scanning
808 * loops.
809 */
810 while (atomic_read(&mce_executing) <= cpus) {
811 if (mce_timed_out(&timeout))
812 goto reset;
813 ndelay(SPINUNIT);
814 }
815
816 mce_reign();
817 barrier();
818 ret = 0;
819 } else {
820 /*
821 * Subject: Wait for Monarch to finish.
822 */
823 while (atomic_read(&mce_executing) != 0) {
824 if (mce_timed_out(&timeout))
825 goto reset;
826 ndelay(SPINUNIT);
827 }
828
829 /*
830 * Don't reset anything. That's done by the Monarch.
831 */
832 return 0;
833 }
834
835 /*
836 * Reset all global state.
837 */
838reset:
839 atomic_set(&global_nwo, 0);
840 atomic_set(&mce_callin, 0);
841 barrier();
842
843 /*
844 * Let others run again.
845 */
846 atomic_set(&mce_executing, 0);
847 return ret;
848}
849
Andi Kleen9b1beaf2009-05-27 21:56:59 +0200850/*
851 * Check if the address reported by the CPU is in a format we can parse.
852 * It would be possible to add code for most other cases, but all would
853 * be somewhat complicated (e.g. segment offset would require an instruction
854 * parser). So only support physical addresses upto page granuality for now.
855 */
856static int mce_usable_address(struct mce *m)
857{
858 if (!(m->status & MCI_STATUS_MISCV) || !(m->status & MCI_STATUS_ADDRV))
859 return 0;
860 if ((m->misc & 0x3f) > PAGE_SHIFT)
861 return 0;
862 if (((m->misc >> 6) & 7) != MCM_ADDR_PHYS)
863 return 0;
864 return 1;
865}
866
Andi Kleen3c079792009-05-27 21:56:55 +0200867static void mce_clear_state(unsigned long *toclear)
868{
869 int i;
870
871 for (i = 0; i < banks; i++) {
872 if (test_bit(i, toclear))
Andi Kleena2d32bc2009-07-09 00:31:44 +0200873 mce_wrmsrl(MSR_IA32_MCx_STATUS(i), 0);
Andi Kleen3c079792009-05-27 21:56:55 +0200874 }
875}
876
877/*
Andi Kleenb79109c2009-02-12 13:43:23 +0100878 * The actual machine check handler. This only handles real
879 * exceptions when something got corrupted coming in through int 18.
880 *
881 * This is executed in NMI context not subject to normal locking rules. This
882 * implies that most kernel services cannot be safely used. Don't even
883 * think about putting a printk in there!
Andi Kleen3c079792009-05-27 21:56:55 +0200884 *
885 * On Intel systems this is entered on all CPUs in parallel through
886 * MCE broadcast. However some CPUs might be broken beyond repair,
887 * so be always careful when synchronizing with others.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 */
Ingo Molnare9eee032009-04-08 12:31:17 +0200889void do_machine_check(struct pt_regs *regs, long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890{
Andi Kleen3c079792009-05-27 21:56:55 +0200891 struct mce m, *final;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 int i;
Andi Kleen3c079792009-05-27 21:56:55 +0200893 int worst = 0;
894 int severity;
895 /*
896 * Establish sequential order between the CPUs entering the machine
897 * check handler.
898 */
Hidetoshi Seto7fb06fc2009-06-15 18:18:43 +0900899 int order;
Tim Hockinbd784322007-07-21 17:10:37 +0200900 /*
901 * If no_way_out gets set, there is no safe way to recover from this
902 * MCE. If tolerant is cranked up, we'll try anyway.
903 */
904 int no_way_out = 0;
905 /*
906 * If kill_it gets set, there might be a way to recover from this
907 * error.
908 */
909 int kill_it = 0;
Andi Kleenb79109c2009-02-12 13:43:23 +0100910 DECLARE_BITMAP(toclear, MAX_NR_BANKS);
Andi Kleenbd19a5e2009-05-27 21:56:55 +0200911 char *msg = "Unknown";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
Andi Kleen553f2652006-04-07 19:49:57 +0200913 atomic_inc(&mce_entry);
914
Andi Kleen01ca79f2009-05-27 21:56:52 +0200915 __get_cpu_var(mce_exception_count)++;
916
Andi Kleenb79109c2009-02-12 13:43:23 +0100917 if (notify_die(DIE_NMI, "machine check", regs, error_code,
Jan Beulich22f59912008-01-30 13:31:23 +0100918 18, SIGKILL) == NOTIFY_STOP)
Andi Kleen32561692009-05-27 21:56:53 +0200919 goto out;
Andi Kleenb79109c2009-02-12 13:43:23 +0100920 if (!banks)
Andi Kleen32561692009-05-27 21:56:53 +0200921 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
Andi Kleenb5f2fa42009-02-12 13:43:22 +0100923 mce_setup(&m);
924
Andi Kleen5f8c1a52009-04-29 19:29:12 +0200925 m.mcgstatus = mce_rdmsrl(MSR_IA32_MCG_STATUS);
Andi Kleen3c079792009-05-27 21:56:55 +0200926 final = &__get_cpu_var(mces_seen);
927 *final = m;
928
Hidetoshi Seto680b6cf2009-08-26 16:20:36 +0900929 no_way_out = mce_no_way_out(&m, &msg);
930
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 barrier();
932
Andi Kleen3c079792009-05-27 21:56:55 +0200933 /*
Andi Kleened7290d2009-05-27 21:56:57 +0200934 * When no restart IP must always kill or panic.
935 */
936 if (!(m.mcgstatus & MCG_STATUS_RIPV))
937 kill_it = 1;
938
939 /*
Andi Kleen3c079792009-05-27 21:56:55 +0200940 * Go through all the banks in exclusion of the other CPUs.
941 * This way we don't report duplicated events on shared banks
942 * because the first one to see it will clear it.
943 */
Hidetoshi Seto7fb06fc2009-06-15 18:18:43 +0900944 order = mce_start(&no_way_out);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 for (i = 0; i < banks; i++) {
Andi Kleenb79109c2009-02-12 13:43:23 +0100946 __clear_bit(i, toclear);
Andi Kleencebe1822009-07-09 00:31:43 +0200947 if (!mce_banks[i].ctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 continue;
Thomas Gleixnerd88203d2007-10-23 22:37:23 +0200949
950 m.misc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 m.addr = 0;
952 m.bank = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
Andi Kleena2d32bc2009-07-09 00:31:44 +0200954 m.status = mce_rdmsrl(MSR_IA32_MCx_STATUS(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 if ((m.status & MCI_STATUS_VAL) == 0)
956 continue;
957
Andi Kleenb79109c2009-02-12 13:43:23 +0100958 /*
Andi Kleened7290d2009-05-27 21:56:57 +0200959 * Non uncorrected or non signaled errors are handled by
960 * machine_check_poll. Leave them alone, unless this panics.
Andi Kleenb79109c2009-02-12 13:43:23 +0100961 */
Andi Kleened7290d2009-05-27 21:56:57 +0200962 if (!(m.status & (mce_ser ? MCI_STATUS_S : MCI_STATUS_UC)) &&
963 !no_way_out)
Andi Kleenb79109c2009-02-12 13:43:23 +0100964 continue;
965
966 /*
967 * Set taint even when machine check was not enabled.
968 */
969 add_taint(TAINT_MACHINE_CHECK);
970
Andi Kleened7290d2009-05-27 21:56:57 +0200971 severity = mce_severity(&m, tolerant, NULL);
Andi Kleenb79109c2009-02-12 13:43:23 +0100972
Andi Kleened7290d2009-05-27 21:56:57 +0200973 /*
974 * When machine check was for corrected handler don't touch,
975 * unless we're panicing.
976 */
977 if (severity == MCE_KEEP_SEVERITY && !no_way_out)
978 continue;
979 __set_bit(i, toclear);
980 if (severity == MCE_NO_SEVERITY) {
Andi Kleenb79109c2009-02-12 13:43:23 +0100981 /*
982 * Machine check event was not enabled. Clear, but
983 * ignore.
984 */
985 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 }
987
Andi Kleened7290d2009-05-27 21:56:57 +0200988 /*
989 * Kill on action required.
990 */
991 if (severity == MCE_AR_SEVERITY)
992 kill_it = 1;
993
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 if (m.status & MCI_STATUS_MISCV)
Andi Kleena2d32bc2009-07-09 00:31:44 +0200995 m.misc = mce_rdmsrl(MSR_IA32_MCx_MISC(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 if (m.status & MCI_STATUS_ADDRV)
Andi Kleena2d32bc2009-07-09 00:31:44 +0200997 m.addr = mce_rdmsrl(MSR_IA32_MCx_ADDR(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
Andi Kleen9b1beaf2009-05-27 21:56:59 +0200999 /*
1000 * Action optional error. Queue address for later processing.
1001 * When the ring overflows we just ignore the AO error.
1002 * RED-PEN add some logging mechanism when
1003 * usable_address or mce_add_ring fails.
1004 * RED-PEN don't ignore overflow for tolerant == 0
1005 */
1006 if (severity == MCE_AO_SEVERITY && mce_usable_address(&m))
1007 mce_ring_add(m.addr >> PAGE_SHIFT);
1008
Andi Kleen94ad8472005-04-16 15:25:09 -07001009 mce_get_rip(&m, regs);
Andi Kleenb79109c2009-02-12 13:43:23 +01001010 mce_log(&m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011
Andi Kleen3c079792009-05-27 21:56:55 +02001012 if (severity > worst) {
1013 *final = m;
1014 worst = severity;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 }
1017
Andi Kleen3c079792009-05-27 21:56:55 +02001018 if (!no_way_out)
1019 mce_clear_state(toclear);
1020
Ingo Molnare9eee032009-04-08 12:31:17 +02001021 /*
Andi Kleen3c079792009-05-27 21:56:55 +02001022 * Do most of the synchronization with other CPUs.
1023 * When there's any problem use only local no_way_out state.
Ingo Molnare9eee032009-04-08 12:31:17 +02001024 */
Andi Kleen3c079792009-05-27 21:56:55 +02001025 if (mce_end(order) < 0)
1026 no_way_out = worst >= MCE_PANIC_SEVERITY;
Tim Hockinbd784322007-07-21 17:10:37 +02001027
1028 /*
1029 * If we have decided that we just CAN'T continue, and the user
Ingo Molnare9eee032009-04-08 12:31:17 +02001030 * has not set tolerant to an insane level, give up and die.
Andi Kleen3c079792009-05-27 21:56:55 +02001031 *
1032 * This is mainly used in the case when the system doesn't
1033 * support MCE broadcasting or it has been disabled.
Tim Hockinbd784322007-07-21 17:10:37 +02001034 */
1035 if (no_way_out && tolerant < 3)
Andi Kleenac960372009-05-27 21:56:58 +02001036 mce_panic("Fatal machine check on current CPU", final, msg);
Tim Hockinbd784322007-07-21 17:10:37 +02001037
1038 /*
1039 * If the error seems to be unrecoverable, something should be
1040 * done. Try to kill as little as possible. If we can kill just
1041 * one task, do that. If the user has set the tolerance very
1042 * high, don't try to do anything at all.
1043 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044
Andi Kleened7290d2009-05-27 21:56:57 +02001045 if (kill_it && tolerant < 3)
1046 force_sig(SIGBUS, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047
Tim Hockine02e68d2007-07-21 17:10:36 +02001048 /* notify userspace ASAP */
1049 set_thread_flag(TIF_MCE_NOTIFY);
1050
Andi Kleen3c079792009-05-27 21:56:55 +02001051 if (worst > 0)
1052 mce_report_event(regs);
Andi Kleen5f8c1a52009-04-29 19:29:12 +02001053 mce_wrmsrl(MSR_IA32_MCG_STATUS, 0);
Andi Kleen32561692009-05-27 21:56:53 +02001054out:
Andi Kleen553f2652006-04-07 19:49:57 +02001055 atomic_dec(&mce_entry);
Andi Kleen88921be2009-05-27 21:56:51 +02001056 sync_core();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057}
Andi Kleenea149b32009-04-29 19:31:00 +02001058EXPORT_SYMBOL_GPL(do_machine_check);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059
Andi Kleen9b1beaf2009-05-27 21:56:59 +02001060/* dummy to break dependency. actual code is in mm/memory-failure.c */
1061void __attribute__((weak)) memory_failure(unsigned long pfn, int vector)
1062{
1063 printk(KERN_ERR "Action optional memory failure at %lx ignored\n", pfn);
1064}
1065
1066/*
1067 * Called after mce notification in process context. This code
1068 * is allowed to sleep. Call the high level VM handler to process
1069 * any corrupted pages.
1070 * Assume that the work queue code only calls this one at a time
1071 * per CPU.
1072 * Note we don't disable preemption, so this code might run on the wrong
1073 * CPU. In this case the event is picked up by the scheduled work queue.
1074 * This is merely a fast path to expedite processing in some common
1075 * cases.
1076 */
1077void mce_notify_process(void)
1078{
1079 unsigned long pfn;
1080 mce_notify_irq();
1081 while (mce_ring_get(&pfn))
1082 memory_failure(pfn, MCE_VECTOR);
1083}
1084
1085static void mce_process_work(struct work_struct *dummy)
1086{
1087 mce_notify_process();
1088}
1089
Dmitriy Zavin15d5f832006-09-26 10:52:42 +02001090#ifdef CONFIG_X86_MCE_INTEL
1091/***
1092 * mce_log_therm_throt_event - Logs the thermal throttling event to mcelog
Simon Arlott676b1852007-10-20 01:25:36 +02001093 * @cpu: The CPU on which the event occurred.
Dmitriy Zavin15d5f832006-09-26 10:52:42 +02001094 * @status: Event status information
1095 *
1096 * This function should be called by the thermal interrupt after the
1097 * event has been processed and the decision was made to log the event
1098 * further.
1099 *
1100 * The status parameter will be saved to the 'status' field of 'struct mce'
1101 * and historically has been the register value of the
1102 * MSR_IA32_THERMAL_STATUS (Intel) msr.
1103 */
Andi Kleenb5f2fa42009-02-12 13:43:22 +01001104void mce_log_therm_throt_event(__u64 status)
Dmitriy Zavin15d5f832006-09-26 10:52:42 +02001105{
1106 struct mce m;
1107
Andi Kleenb5f2fa42009-02-12 13:43:22 +01001108 mce_setup(&m);
Dmitriy Zavin15d5f832006-09-26 10:52:42 +02001109 m.bank = MCE_THERMAL_BANK;
1110 m.status = status;
Dmitriy Zavin15d5f832006-09-26 10:52:42 +02001111 mce_log(&m);
1112}
1113#endif /* CONFIG_X86_MCE_INTEL */
1114
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115/*
Tim Hockin8a336b02007-05-02 19:27:19 +02001116 * Periodic polling timer for "silent" machine check errors. If the
1117 * poller finds an MCE, poll 2x faster. When the poller finds no more
1118 * errors, poll 2x slower (up to check_interval seconds).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120static int check_interval = 5 * 60; /* 5 minutes */
Ingo Molnare9eee032009-04-08 12:31:17 +02001121
Tejun Heo245b2e72009-06-24 15:13:48 +09001122static DEFINE_PER_CPU(int, mce_next_interval); /* in jiffies */
Andi Kleen52d168e2009-02-12 13:39:29 +01001123static DEFINE_PER_CPU(struct timer_list, mce_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124
Andi Kleen52d168e2009-02-12 13:39:29 +01001125static void mcheck_timer(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126{
Andi Kleen52d168e2009-02-12 13:39:29 +01001127 struct timer_list *t = &per_cpu(mce_timer, data);
Andi Kleen6298c512009-04-09 12:28:22 +02001128 int *n;
Andi Kleen52d168e2009-02-12 13:39:29 +01001129
1130 WARN_ON(smp_processor_id() != data);
1131
Ingo Molnare9eee032009-04-08 12:31:17 +02001132 if (mce_available(&current_cpu_data)) {
Andi Kleenee031c32009-02-12 13:49:34 +01001133 machine_check_poll(MCP_TIMESTAMP,
1134 &__get_cpu_var(mce_poll_banks));
Ingo Molnare9eee032009-04-08 12:31:17 +02001135 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136
1137 /*
Tim Hockine02e68d2007-07-21 17:10:36 +02001138 * Alert userspace if needed. If we logged an MCE, reduce the
1139 * polling interval, otherwise increase the polling interval.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 */
Tejun Heo245b2e72009-06-24 15:13:48 +09001141 n = &__get_cpu_var(mce_next_interval);
Andi Kleen9ff36ee2009-05-27 21:56:58 +02001142 if (mce_notify_irq())
Andi Kleen6298c512009-04-09 12:28:22 +02001143 *n = max(*n/2, HZ/100);
Hidetoshi Seto14a02532009-04-30 16:04:51 +09001144 else
Andi Kleen6298c512009-04-09 12:28:22 +02001145 *n = min(*n*2, (int)round_jiffies_relative(check_interval*HZ));
Tim Hockin8a336b02007-05-02 19:27:19 +02001146
Andi Kleen6298c512009-04-09 12:28:22 +02001147 t->expires = jiffies + *n;
Hidetoshi Seto5be60662009-06-24 09:21:10 +09001148 add_timer_on(t, smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149}
1150
Andi Kleen9bd98402009-02-12 13:39:28 +01001151static void mce_do_trigger(struct work_struct *work)
1152{
Hidetoshi Seto1020bcb2009-06-15 17:20:57 +09001153 call_usermodehelper(mce_helper, mce_helper_argv, NULL, UMH_NO_WAIT);
Andi Kleen9bd98402009-02-12 13:39:28 +01001154}
1155
1156static DECLARE_WORK(mce_trigger_work, mce_do_trigger);
1157
Tim Hockine02e68d2007-07-21 17:10:36 +02001158/*
Andi Kleen9bd98402009-02-12 13:39:28 +01001159 * Notify the user(s) about new machine check events.
1160 * Can be called from interrupt context, but not from machine check/NMI
1161 * context.
Tim Hockine02e68d2007-07-21 17:10:36 +02001162 */
Andi Kleen9ff36ee2009-05-27 21:56:58 +02001163int mce_notify_irq(void)
Tim Hockine02e68d2007-07-21 17:10:36 +02001164{
Andi Kleen8457c842009-02-12 13:49:33 +01001165 /* Not more than two messages every minute */
1166 static DEFINE_RATELIMIT_STATE(ratelimit, 60*HZ, 2);
1167
Tim Hockine02e68d2007-07-21 17:10:36 +02001168 clear_thread_flag(TIF_MCE_NOTIFY);
Ingo Molnare9eee032009-04-08 12:31:17 +02001169
Hidetoshi Seto1020bcb2009-06-15 17:20:57 +09001170 if (test_and_clear_bit(0, &mce_need_notify)) {
Tim Hockine02e68d2007-07-21 17:10:36 +02001171 wake_up_interruptible(&mce_wait);
Andi Kleen9bd98402009-02-12 13:39:28 +01001172
1173 /*
1174 * There is no risk of missing notifications because
1175 * work_pending is always cleared before the function is
1176 * executed.
1177 */
Hidetoshi Seto1020bcb2009-06-15 17:20:57 +09001178 if (mce_helper[0] && !work_pending(&mce_trigger_work))
Andi Kleen9bd98402009-02-12 13:39:28 +01001179 schedule_work(&mce_trigger_work);
Tim Hockine02e68d2007-07-21 17:10:36 +02001180
Andi Kleen8457c842009-02-12 13:49:33 +01001181 if (__ratelimit(&ratelimit))
Tim Hockine02e68d2007-07-21 17:10:36 +02001182 printk(KERN_INFO "Machine check events logged\n");
Tim Hockine02e68d2007-07-21 17:10:36 +02001183
1184 return 1;
1185 }
1186 return 0;
1187}
Andi Kleen9ff36ee2009-05-27 21:56:58 +02001188EXPORT_SYMBOL_GPL(mce_notify_irq);
Tim Hockine02e68d2007-07-21 17:10:36 +02001189
Andi Kleencebe1822009-07-09 00:31:43 +02001190static int mce_banks_init(void)
1191{
1192 int i;
1193
1194 mce_banks = kzalloc(banks * sizeof(struct mce_bank), GFP_KERNEL);
1195 if (!mce_banks)
1196 return -ENOMEM;
1197 for (i = 0; i < banks; i++) {
1198 struct mce_bank *b = &mce_banks[i];
Ingo Molnar11868a22009-09-23 17:49:55 +02001199
Andi Kleencebe1822009-07-09 00:31:43 +02001200 b->ctl = -1ULL;
1201 b->init = 1;
1202 }
1203 return 0;
1204}
1205
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001206/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 * Initialize Machine Checks for a CPU.
1208 */
Bartlomiej Zolnierkiewicz419d6162009-07-28 23:56:00 +02001209static int __cpuinit mce_cap_init(void)
Andi Kleen0d7482e32009-02-17 23:07:13 +01001210{
Andi Kleen0d7482e32009-02-17 23:07:13 +01001211 unsigned b;
Ingo Molnare9eee032009-04-08 12:31:17 +02001212 u64 cap;
Andi Kleen0d7482e32009-02-17 23:07:13 +01001213
1214 rdmsrl(MSR_IA32_MCG_CAP, cap);
Thomas Gleixner01c66802009-04-08 12:31:24 +02001215
1216 b = cap & MCG_BANKCNT_MASK;
Ingo Molnarb6592942009-04-08 12:31:27 +02001217 printk(KERN_INFO "mce: CPU supports %d MCE banks\n", b);
1218
Andi Kleen0d7482e32009-02-17 23:07:13 +01001219 if (b > MAX_NR_BANKS) {
1220 printk(KERN_WARNING
1221 "MCE: Using only %u machine check banks out of %u\n",
1222 MAX_NR_BANKS, b);
1223 b = MAX_NR_BANKS;
1224 }
1225
1226 /* Don't support asymmetric configurations today */
1227 WARN_ON(banks != 0 && b != banks);
1228 banks = b;
Andi Kleencebe1822009-07-09 00:31:43 +02001229 if (!mce_banks) {
1230 int err = mce_banks_init();
Ingo Molnar11868a22009-09-23 17:49:55 +02001231
Andi Kleencebe1822009-07-09 00:31:43 +02001232 if (err)
1233 return err;
Andi Kleen0d7482e32009-02-17 23:07:13 +01001234 }
1235
1236 /* Use accurate RIP reporting if available. */
Thomas Gleixner01c66802009-04-08 12:31:24 +02001237 if ((cap & MCG_EXT_P) && MCG_EXT_CNT(cap) >= 9)
Andi Kleen0d7482e32009-02-17 23:07:13 +01001238 rip_msr = MSR_IA32_MCG_EIP;
1239
Andi Kleened7290d2009-05-27 21:56:57 +02001240 if (cap & MCG_SER_P)
1241 mce_ser = 1;
1242
Andi Kleen0d7482e32009-02-17 23:07:13 +01001243 return 0;
1244}
1245
Thomas Gleixner8be91102009-05-27 21:56:53 +02001246static void mce_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247{
Ingo Molnare9eee032009-04-08 12:31:17 +02001248 mce_banks_t all_banks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 u64 cap;
1250 int i;
1251
Andi Kleenb79109c2009-02-12 13:43:23 +01001252 /*
1253 * Log the machine checks left over from the previous reset.
1254 */
Andi Kleenee031c32009-02-12 13:49:34 +01001255 bitmap_fill(all_banks, MAX_NR_BANKS);
Andi Kleen5679af42009-04-07 17:06:55 +02001256 machine_check_poll(MCP_UC|(!mce_bootlog ? MCP_DONTLOG : 0), &all_banks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257
1258 set_in_cr4(X86_CR4_MCE);
1259
Andi Kleen0d7482e32009-02-17 23:07:13 +01001260 rdmsrl(MSR_IA32_MCG_CAP, cap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 if (cap & MCG_CTL_P)
1262 wrmsr(MSR_IA32_MCG_CTL, 0xffffffff, 0xffffffff);
1263
1264 for (i = 0; i < banks; i++) {
Andi Kleencebe1822009-07-09 00:31:43 +02001265 struct mce_bank *b = &mce_banks[i];
Ingo Molnar11868a22009-09-23 17:49:55 +02001266
Andi Kleencebe1822009-07-09 00:31:43 +02001267 if (!b->init)
Andi Kleen06b7a7a2009-04-27 18:37:43 +02001268 continue;
Andi Kleena2d32bc2009-07-09 00:31:44 +02001269 wrmsrl(MSR_IA32_MCx_CTL(i), b->ctl);
1270 wrmsrl(MSR_IA32_MCx_STATUS(i), 0);
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001271 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272}
1273
1274/* Add per CPU specific workarounds here */
Linus Torvaldsdf58bee2009-09-17 21:07:08 -07001275static int __cpuinit mce_cpu_quirks(struct cpuinfo_x86 *c)
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001276{
Ingo Molnare412cd22009-08-17 10:19:00 +02001277 if (c->x86_vendor == X86_VENDOR_UNKNOWN) {
1278 pr_info("MCE: unknown CPU type - not enabling MCE support.\n");
1279 return -EOPNOTSUPP;
1280 }
1281
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 /* This should be disabled by the BIOS, but isn't always */
Jan Beulich911f6a72008-04-22 16:22:21 +01001283 if (c->x86_vendor == X86_VENDOR_AMD) {
Ingo Molnare9eee032009-04-08 12:31:17 +02001284 if (c->x86 == 15 && banks > 4) {
1285 /*
1286 * disable GART TBL walk error reporting, which
1287 * trips off incorrectly with the IOMMU & 3ware
1288 * & Cerberus:
1289 */
Andi Kleencebe1822009-07-09 00:31:43 +02001290 clear_bit(10, (unsigned long *)&mce_banks[4].ctl);
Ingo Molnare9eee032009-04-08 12:31:17 +02001291 }
1292 if (c->x86 <= 17 && mce_bootlog < 0) {
1293 /*
1294 * Lots of broken BIOS around that don't clear them
1295 * by default and leave crap in there. Don't log:
1296 */
Jan Beulich911f6a72008-04-22 16:22:21 +01001297 mce_bootlog = 0;
Ingo Molnare9eee032009-04-08 12:31:17 +02001298 }
Andi Kleen2e6f6942009-04-27 18:42:48 +02001299 /*
1300 * Various K7s with broken bank 0 around. Always disable
1301 * by default.
1302 */
Andi Kleen203abd62009-06-15 14:52:01 +02001303 if (c->x86 == 6 && banks > 0)
Andi Kleencebe1822009-07-09 00:31:43 +02001304 mce_banks[0].ctl = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 }
Andi Kleene5835382005-11-05 17:25:54 +01001306
Andi Kleen06b7a7a2009-04-27 18:37:43 +02001307 if (c->x86_vendor == X86_VENDOR_INTEL) {
1308 /*
1309 * SDM documents that on family 6 bank 0 should not be written
1310 * because it aliases to another special BIOS controlled
1311 * register.
1312 * But it's not aliased anymore on model 0x1a+
1313 * Don't ignore bank 0 completely because there could be a
1314 * valid event later, merely don't write CTL0.
1315 */
1316
Andi Kleencebe1822009-07-09 00:31:43 +02001317 if (c->x86 == 6 && c->x86_model < 0x1A && banks > 0)
1318 mce_banks[0].init = 0;
Andi Kleen3c079792009-05-27 21:56:55 +02001319
1320 /*
1321 * All newer Intel systems support MCE broadcasting. Enable
1322 * synchronization with a one second timeout.
1323 */
1324 if ((c->x86 > 6 || (c->x86 == 6 && c->x86_model >= 0xe)) &&
1325 monarch_timeout < 0)
1326 monarch_timeout = USEC_PER_SEC;
Bartlomiej Zolnierkiewiczc7f6fa42009-07-28 23:52:54 +02001327
Ingo Molnare412cd22009-08-17 10:19:00 +02001328 /*
1329 * There are also broken BIOSes on some Pentium M and
1330 * earlier systems:
1331 */
1332 if (c->x86 == 6 && c->x86_model <= 13 && mce_bootlog < 0)
Bartlomiej Zolnierkiewiczc7f6fa42009-07-28 23:52:54 +02001333 mce_bootlog = 0;
Andi Kleen06b7a7a2009-04-27 18:37:43 +02001334 }
Andi Kleen3c079792009-05-27 21:56:55 +02001335 if (monarch_timeout < 0)
1336 monarch_timeout = 0;
Andi Kleen29b0f592009-05-27 21:56:56 +02001337 if (mce_bootlog != 0)
1338 mce_panic_timeout = 30;
Ingo Molnare412cd22009-08-17 10:19:00 +02001339
1340 return 0;
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001341}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342
Andi Kleen4efc0672009-04-28 19:07:31 +02001343static void __cpuinit mce_ancient_init(struct cpuinfo_x86 *c)
1344{
1345 if (c->x86 != 5)
1346 return;
1347 switch (c->x86_vendor) {
1348 case X86_VENDOR_INTEL:
Hidetoshi Setoc6978362009-06-15 17:22:49 +09001349 intel_p5_mcheck_init(c);
Andi Kleen4efc0672009-04-28 19:07:31 +02001350 break;
1351 case X86_VENDOR_CENTAUR:
1352 winchip_mcheck_init(c);
1353 break;
1354 }
1355}
1356
H. Peter Anvincc3ca222009-02-20 23:35:51 -08001357static void mce_cpu_features(struct cpuinfo_x86 *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358{
1359 switch (c->x86_vendor) {
1360 case X86_VENDOR_INTEL:
1361 mce_intel_feature_init(c);
1362 break;
Jacob Shin89b831e2005-11-05 17:25:53 +01001363 case X86_VENDOR_AMD:
1364 mce_amd_feature_init(c);
1365 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 default:
1367 break;
1368 }
1369}
1370
Andi Kleen52d168e2009-02-12 13:39:29 +01001371static void mce_init_timer(void)
1372{
1373 struct timer_list *t = &__get_cpu_var(mce_timer);
Tejun Heo245b2e72009-06-24 15:13:48 +09001374 int *n = &__get_cpu_var(mce_next_interval);
Andi Kleen52d168e2009-02-12 13:39:29 +01001375
Hidetoshi Seto62fdac52009-06-11 16:06:07 +09001376 if (mce_ignore_ce)
1377 return;
1378
Andi Kleen6298c512009-04-09 12:28:22 +02001379 *n = check_interval * HZ;
1380 if (!*n)
Andi Kleen52d168e2009-02-12 13:39:29 +01001381 return;
1382 setup_timer(t, mcheck_timer, smp_processor_id());
Andi Kleen6298c512009-04-09 12:28:22 +02001383 t->expires = round_jiffies(jiffies + *n);
Hidetoshi Seto5be60662009-06-24 09:21:10 +09001384 add_timer_on(t, smp_processor_id());
Andi Kleen52d168e2009-02-12 13:39:29 +01001385}
1386
Andi Kleen9eda8cb2009-07-09 00:31:42 +02001387/* Handle unconfigured int18 (should never happen) */
1388static void unexpected_machine_check(struct pt_regs *regs, long error_code)
1389{
1390 printk(KERN_ERR "CPU#%d: Unexpected int18 (Machine Check).\n",
1391 smp_processor_id());
1392}
1393
1394/* Call the installed machine check handler for this CPU setup. */
1395void (*machine_check_vector)(struct pt_regs *, long error_code) =
1396 unexpected_machine_check;
1397
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001398/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 * Called for each booted CPU to set up machine checks.
Ingo Molnare9eee032009-04-08 12:31:17 +02001400 * Must be called with preempt off:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 */
Ashok Raje6982c62005-06-25 14:54:58 -07001402void __cpuinit mcheck_init(struct cpuinfo_x86 *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403{
Andi Kleen4efc0672009-04-28 19:07:31 +02001404 if (mce_disabled)
1405 return;
1406
1407 mce_ancient_init(c);
1408
Andi Kleen5b4408f2009-02-12 13:39:30 +01001409 if (!mce_available(c))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 return;
1411
Ingo Molnare412cd22009-08-17 10:19:00 +02001412 if (mce_cap_init() < 0 || mce_cpu_quirks(c) < 0) {
Andi Kleen04b2b1a2009-04-28 22:50:19 +02001413 mce_disabled = 1;
Andi Kleen0d7482e32009-02-17 23:07:13 +01001414 return;
1415 }
Andi Kleen0d7482e32009-02-17 23:07:13 +01001416
Andi Kleen5d727922009-04-27 19:25:48 +02001417 machine_check_vector = do_machine_check;
1418
Thomas Gleixner8be91102009-05-27 21:56:53 +02001419 mce_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 mce_cpu_features(c);
Andi Kleen52d168e2009-02-12 13:39:29 +01001421 mce_init_timer();
Andi Kleen9b1beaf2009-05-27 21:56:59 +02001422 INIT_WORK(&__get_cpu_var(mce_work), mce_process_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423}
1424
1425/*
1426 * Character device to read and clear the MCE log.
1427 */
1428
Tim Hockinf528e7b2007-07-21 17:10:35 +02001429static DEFINE_SPINLOCK(mce_state_lock);
Ingo Molnare9eee032009-04-08 12:31:17 +02001430static int open_count; /* #times opened */
1431static int open_exclu; /* already open exclusive? */
Tim Hockinf528e7b2007-07-21 17:10:35 +02001432
1433static int mce_open(struct inode *inode, struct file *file)
1434{
1435 spin_lock(&mce_state_lock);
1436
1437 if (open_exclu || (open_count && (file->f_flags & O_EXCL))) {
1438 spin_unlock(&mce_state_lock);
Ingo Molnare9eee032009-04-08 12:31:17 +02001439
Tim Hockinf528e7b2007-07-21 17:10:35 +02001440 return -EBUSY;
1441 }
1442
1443 if (file->f_flags & O_EXCL)
1444 open_exclu = 1;
1445 open_count++;
1446
1447 spin_unlock(&mce_state_lock);
1448
Tim Hockinbd784322007-07-21 17:10:37 +02001449 return nonseekable_open(inode, file);
Tim Hockinf528e7b2007-07-21 17:10:35 +02001450}
1451
1452static int mce_release(struct inode *inode, struct file *file)
1453{
1454 spin_lock(&mce_state_lock);
1455
1456 open_count--;
1457 open_exclu = 0;
1458
1459 spin_unlock(&mce_state_lock);
1460
1461 return 0;
1462}
1463
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001464static void collect_tscs(void *data)
1465{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 unsigned long *cpu_tsc = (unsigned long *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001468 rdtscll(cpu_tsc[smp_processor_id()]);
1469}
1470
Ingo Molnare9eee032009-04-08 12:31:17 +02001471static DEFINE_MUTEX(mce_read_mutex);
1472
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001473static ssize_t mce_read(struct file *filp, char __user *ubuf, size_t usize,
1474 loff_t *off)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 char __user *buf = ubuf;
Ingo Molnare9eee032009-04-08 12:31:17 +02001477 unsigned long *cpu_tsc;
1478 unsigned prev, next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 int i, err;
1480
Mike Travis6bca67f2008-07-18 18:11:27 -07001481 cpu_tsc = kmalloc(nr_cpu_ids * sizeof(long), GFP_KERNEL);
Andi Kleenf0de53b2005-04-16 15:25:10 -07001482 if (!cpu_tsc)
1483 return -ENOMEM;
1484
Daniel Walker8c8b8852008-01-30 13:31:17 +01001485 mutex_lock(&mce_read_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 next = rcu_dereference(mcelog.next);
1487
1488 /* Only supports full reads right now */
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001489 if (*off != 0 || usize < MCE_LOG_LEN*sizeof(struct mce)) {
Daniel Walker8c8b8852008-01-30 13:31:17 +01001490 mutex_unlock(&mce_read_mutex);
Andi Kleenf0de53b2005-04-16 15:25:10 -07001491 kfree(cpu_tsc);
Ingo Molnare9eee032009-04-08 12:31:17 +02001492
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 return -EINVAL;
1494 }
1495
1496 err = 0;
Huang Yingef41df4342009-02-12 13:39:34 +01001497 prev = 0;
1498 do {
1499 for (i = prev; i < next; i++) {
1500 unsigned long start = jiffies;
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001501
Huang Yingef41df4342009-02-12 13:39:34 +01001502 while (!mcelog.entry[i].finished) {
1503 if (time_after_eq(jiffies, start + 2)) {
1504 memset(mcelog.entry + i, 0,
1505 sizeof(struct mce));
1506 goto timeout;
1507 }
1508 cpu_relax();
Andi Kleen673242c2005-09-12 18:49:24 +02001509 }
Huang Yingef41df4342009-02-12 13:39:34 +01001510 smp_rmb();
1511 err |= copy_to_user(buf, mcelog.entry + i,
1512 sizeof(struct mce));
1513 buf += sizeof(struct mce);
1514timeout:
1515 ;
Andi Kleen673242c2005-09-12 18:49:24 +02001516 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517
Huang Yingef41df4342009-02-12 13:39:34 +01001518 memset(mcelog.entry + prev, 0,
1519 (next - prev) * sizeof(struct mce));
1520 prev = next;
1521 next = cmpxchg(&mcelog.next, prev, 0);
1522 } while (next != prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523
Paul E. McKenneyb2b18662005-06-25 14:55:38 -07001524 synchronize_sched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001526 /*
1527 * Collect entries that were still getting written before the
1528 * synchronize.
1529 */
Jens Axboe15c8b6c2008-05-09 09:39:44 +02001530 on_each_cpu(collect_tscs, cpu_tsc, 1);
Ingo Molnare9eee032009-04-08 12:31:17 +02001531
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001532 for (i = next; i < MCE_LOG_LEN; i++) {
1533 if (mcelog.entry[i].finished &&
1534 mcelog.entry[i].tsc < cpu_tsc[mcelog.entry[i].cpu]) {
1535 err |= copy_to_user(buf, mcelog.entry+i,
1536 sizeof(struct mce));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 smp_rmb();
1538 buf += sizeof(struct mce);
1539 memset(&mcelog.entry[i], 0, sizeof(struct mce));
1540 }
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001541 }
Daniel Walker8c8b8852008-01-30 13:31:17 +01001542 mutex_unlock(&mce_read_mutex);
Andi Kleenf0de53b2005-04-16 15:25:10 -07001543 kfree(cpu_tsc);
Ingo Molnare9eee032009-04-08 12:31:17 +02001544
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001545 return err ? -EFAULT : buf - ubuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546}
1547
Tim Hockine02e68d2007-07-21 17:10:36 +02001548static unsigned int mce_poll(struct file *file, poll_table *wait)
1549{
1550 poll_wait(file, &mce_wait, wait);
1551 if (rcu_dereference(mcelog.next))
1552 return POLLIN | POLLRDNORM;
1553 return 0;
1554}
1555
Nikanth Karthikesanc68461b2008-01-30 13:32:59 +01001556static long mce_ioctl(struct file *f, unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557{
1558 int __user *p = (int __user *)arg;
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001559
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 if (!capable(CAP_SYS_ADMIN))
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001561 return -EPERM;
Ingo Molnare9eee032009-04-08 12:31:17 +02001562
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 switch (cmd) {
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001564 case MCE_GET_RECORD_LEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 return put_user(sizeof(struct mce), p);
1566 case MCE_GET_LOG_LEN:
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001567 return put_user(MCE_LOG_LEN, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 case MCE_GETCLEAR_FLAGS: {
1569 unsigned flags;
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001570
1571 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 flags = mcelog.flags;
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001573 } while (cmpxchg(&mcelog.flags, flags, 0) != flags);
Ingo Molnare9eee032009-04-08 12:31:17 +02001574
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001575 return put_user(flags, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 }
1577 default:
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001578 return -ENOTTY;
1579 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580}
1581
H. Peter Anvina1ff41b2009-05-25 22:16:14 -07001582/* Modified in mce-inject.c, so not static or const */
Andi Kleenea149b32009-04-29 19:31:00 +02001583struct file_operations mce_chrdev_ops = {
Ingo Molnare9eee032009-04-08 12:31:17 +02001584 .open = mce_open,
1585 .release = mce_release,
1586 .read = mce_read,
1587 .poll = mce_poll,
1588 .unlocked_ioctl = mce_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589};
Andi Kleenea149b32009-04-29 19:31:00 +02001590EXPORT_SYMBOL_GPL(mce_chrdev_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591
1592static struct miscdevice mce_log_device = {
1593 MISC_MCELOG_MINOR,
1594 "mcelog",
1595 &mce_chrdev_ops,
1596};
1597
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001598/*
Hidetoshi Seto62fdac52009-06-11 16:06:07 +09001599 * mce=off Disables machine check
1600 * mce=no_cmci Disables CMCI
1601 * mce=dont_log_ce Clears corrected events silently, no log created for CEs.
1602 * mce=ignore_ce Disables polling and CMCI, corrected events are not cleared.
Andi Kleen3c079792009-05-27 21:56:55 +02001603 * mce=TOLERANCELEVEL[,monarchtimeout] (number, see above)
1604 * monarchtimeout is how long to wait for other CPUs on machine
1605 * check, or 0 to not wait
Hidetoshi Seto13503fa2009-03-26 17:39:20 +09001606 * mce=bootlog Log MCEs from before booting. Disabled by default on AMD.
1607 * mce=nobootlog Don't log MCEs from before booting.
1608 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609static int __init mcheck_enable(char *str)
1610{
Bartlomiej Zolnierkiewicze3346fc2009-07-28 23:55:09 +02001611 if (*str == 0) {
Andi Kleen4efc0672009-04-28 19:07:31 +02001612 enable_p5_mce();
Bartlomiej Zolnierkiewicze3346fc2009-07-28 23:55:09 +02001613 return 1;
1614 }
Andi Kleen4efc0672009-04-28 19:07:31 +02001615 if (*str == '=')
1616 str++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 if (!strcmp(str, "off"))
Andi Kleen04b2b1a2009-04-28 22:50:19 +02001618 mce_disabled = 1;
Hidetoshi Seto62fdac52009-06-11 16:06:07 +09001619 else if (!strcmp(str, "no_cmci"))
1620 mce_cmci_disabled = 1;
1621 else if (!strcmp(str, "dont_log_ce"))
1622 mce_dont_log_ce = 1;
1623 else if (!strcmp(str, "ignore_ce"))
1624 mce_ignore_ce = 1;
Hidetoshi Seto13503fa2009-03-26 17:39:20 +09001625 else if (!strcmp(str, "bootlog") || !strcmp(str, "nobootlog"))
1626 mce_bootlog = (str[0] == 'b');
Andi Kleen3c079792009-05-27 21:56:55 +02001627 else if (isdigit(str[0])) {
Andi Kleen8c566ef2005-09-12 18:49:24 +02001628 get_option(&str, &tolerant);
Andi Kleen3c079792009-05-27 21:56:55 +02001629 if (*str == ',') {
1630 ++str;
1631 get_option(&str, &monarch_timeout);
1632 }
1633 } else {
Andi Kleen4efc0672009-04-28 19:07:31 +02001634 printk(KERN_INFO "mce argument %s ignored. Please use /sys\n",
Hidetoshi Seto13503fa2009-03-26 17:39:20 +09001635 str);
1636 return 0;
1637 }
OGAWA Hirofumi9b410462006-03-31 02:30:33 -08001638 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639}
Andi Kleen4efc0672009-04-28 19:07:31 +02001640__setup("mce", mcheck_enable);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001642/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 * Sysfs support
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001644 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645
Andi Kleen973a2dd2009-02-12 13:39:32 +01001646/*
1647 * Disable machine checks on suspend and shutdown. We can't really handle
1648 * them later.
1649 */
1650static int mce_disable(void)
1651{
1652 int i;
1653
Andi Kleen06b7a7a2009-04-27 18:37:43 +02001654 for (i = 0; i < banks; i++) {
Andi Kleencebe1822009-07-09 00:31:43 +02001655 struct mce_bank *b = &mce_banks[i];
Ingo Molnar11868a22009-09-23 17:49:55 +02001656
Andi Kleencebe1822009-07-09 00:31:43 +02001657 if (b->init)
Andi Kleena2d32bc2009-07-09 00:31:44 +02001658 wrmsrl(MSR_IA32_MCx_CTL(i), 0);
Andi Kleen06b7a7a2009-04-27 18:37:43 +02001659 }
Andi Kleen973a2dd2009-02-12 13:39:32 +01001660 return 0;
1661}
1662
1663static int mce_suspend(struct sys_device *dev, pm_message_t state)
1664{
1665 return mce_disable();
1666}
1667
1668static int mce_shutdown(struct sys_device *dev)
1669{
1670 return mce_disable();
1671}
1672
Ingo Molnare9eee032009-04-08 12:31:17 +02001673/*
1674 * On resume clear all MCE state. Don't want to see leftovers from the BIOS.
1675 * Only one CPU is active at this time, the others get re-added later using
1676 * CPU hotplug:
1677 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678static int mce_resume(struct sys_device *dev)
1679{
Thomas Gleixner8be91102009-05-27 21:56:53 +02001680 mce_init();
Andi Kleen6ec68bf2009-02-12 13:39:26 +01001681 mce_cpu_features(&current_cpu_data);
Ingo Molnare9eee032009-04-08 12:31:17 +02001682
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 return 0;
1684}
1685
Andi Kleen52d168e2009-02-12 13:39:29 +01001686static void mce_cpu_restart(void *data)
1687{
1688 del_timer_sync(&__get_cpu_var(mce_timer));
Hidetoshi Seto33edbf02009-06-15 17:18:45 +09001689 if (!mce_available(&current_cpu_data))
1690 return;
1691 mce_init();
Andi Kleen52d168e2009-02-12 13:39:29 +01001692 mce_init_timer();
1693}
1694
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695/* Reinit MCEs after user configuration changes */
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001696static void mce_restart(void)
1697{
Andi Kleen52d168e2009-02-12 13:39:29 +01001698 on_each_cpu(mce_cpu_restart, NULL, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699}
1700
Hidetoshi Seto9af43b52009-06-15 17:21:36 +09001701/* Toggle features for corrected errors */
1702static void mce_disable_ce(void *all)
1703{
1704 if (!mce_available(&current_cpu_data))
1705 return;
1706 if (all)
1707 del_timer_sync(&__get_cpu_var(mce_timer));
1708 cmci_clear();
1709}
1710
1711static void mce_enable_ce(void *all)
1712{
1713 if (!mce_available(&current_cpu_data))
1714 return;
1715 cmci_reenable();
1716 cmci_recheck();
1717 if (all)
1718 mce_init_timer();
1719}
1720
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721static struct sysdev_class mce_sysclass = {
Ingo Molnare9eee032009-04-08 12:31:17 +02001722 .suspend = mce_suspend,
1723 .shutdown = mce_shutdown,
1724 .resume = mce_resume,
1725 .name = "machinecheck",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726};
1727
Ingo Molnarcb491fc2009-04-08 12:31:17 +02001728DEFINE_PER_CPU(struct sys_device, mce_dev);
Ingo Molnare9eee032009-04-08 12:31:17 +02001729
1730__cpuinitdata
1731void (*threshold_cpu_callback)(unsigned long action, unsigned int cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732
Andi Kleencebe1822009-07-09 00:31:43 +02001733static inline struct mce_bank *attr_to_bank(struct sysdev_attribute *attr)
1734{
1735 return container_of(attr, struct mce_bank, attr);
1736}
Andi Kleen0d7482e32009-02-17 23:07:13 +01001737
1738static ssize_t show_bank(struct sys_device *s, struct sysdev_attribute *attr,
1739 char *buf)
1740{
Andi Kleencebe1822009-07-09 00:31:43 +02001741 return sprintf(buf, "%llx\n", attr_to_bank(attr)->ctl);
Andi Kleen0d7482e32009-02-17 23:07:13 +01001742}
1743
1744static ssize_t set_bank(struct sys_device *s, struct sysdev_attribute *attr,
Hidetoshi Seto9319cec2009-04-14 17:26:30 +09001745 const char *buf, size_t size)
Andi Kleen0d7482e32009-02-17 23:07:13 +01001746{
Hidetoshi Seto9319cec2009-04-14 17:26:30 +09001747 u64 new;
Ingo Molnare9eee032009-04-08 12:31:17 +02001748
Hidetoshi Seto9319cec2009-04-14 17:26:30 +09001749 if (strict_strtoull(buf, 0, &new) < 0)
Andi Kleen0d7482e32009-02-17 23:07:13 +01001750 return -EINVAL;
Ingo Molnare9eee032009-04-08 12:31:17 +02001751
Andi Kleencebe1822009-07-09 00:31:43 +02001752 attr_to_bank(attr)->ctl = new;
Andi Kleen0d7482e32009-02-17 23:07:13 +01001753 mce_restart();
Ingo Molnare9eee032009-04-08 12:31:17 +02001754
Hidetoshi Seto9319cec2009-04-14 17:26:30 +09001755 return size;
Andi Kleen0d7482e32009-02-17 23:07:13 +01001756}
Andi Kleena98f0dd2007-02-13 13:26:23 +01001757
Ingo Molnare9eee032009-04-08 12:31:17 +02001758static ssize_t
1759show_trigger(struct sys_device *s, struct sysdev_attribute *attr, char *buf)
Andi Kleena98f0dd2007-02-13 13:26:23 +01001760{
Hidetoshi Seto1020bcb2009-06-15 17:20:57 +09001761 strcpy(buf, mce_helper);
Andi Kleena98f0dd2007-02-13 13:26:23 +01001762 strcat(buf, "\n");
Hidetoshi Seto1020bcb2009-06-15 17:20:57 +09001763 return strlen(mce_helper) + 1;
Andi Kleena98f0dd2007-02-13 13:26:23 +01001764}
1765
Andi Kleen4a0b2b42008-07-01 18:48:41 +02001766static ssize_t set_trigger(struct sys_device *s, struct sysdev_attribute *attr,
Ingo Molnare9eee032009-04-08 12:31:17 +02001767 const char *buf, size_t siz)
Andi Kleena98f0dd2007-02-13 13:26:23 +01001768{
1769 char *p;
Ingo Molnare9eee032009-04-08 12:31:17 +02001770
Hidetoshi Seto1020bcb2009-06-15 17:20:57 +09001771 strncpy(mce_helper, buf, sizeof(mce_helper));
1772 mce_helper[sizeof(mce_helper)-1] = 0;
Hidetoshi Seto1020bcb2009-06-15 17:20:57 +09001773 p = strchr(mce_helper, '\n');
Ingo Molnare9eee032009-04-08 12:31:17 +02001774
Jan Beuliche9084ec2009-07-16 09:45:11 +01001775 if (p)
Ingo Molnare9eee032009-04-08 12:31:17 +02001776 *p = 0;
1777
Jan Beuliche9084ec2009-07-16 09:45:11 +01001778 return strlen(mce_helper) + !!p;
Andi Kleena98f0dd2007-02-13 13:26:23 +01001779}
1780
Hidetoshi Seto9af43b52009-06-15 17:21:36 +09001781static ssize_t set_ignore_ce(struct sys_device *s,
1782 struct sysdev_attribute *attr,
1783 const char *buf, size_t size)
1784{
1785 u64 new;
1786
1787 if (strict_strtoull(buf, 0, &new) < 0)
1788 return -EINVAL;
1789
1790 if (mce_ignore_ce ^ !!new) {
1791 if (new) {
1792 /* disable ce features */
1793 on_each_cpu(mce_disable_ce, (void *)1, 1);
1794 mce_ignore_ce = 1;
1795 } else {
1796 /* enable ce features */
1797 mce_ignore_ce = 0;
1798 on_each_cpu(mce_enable_ce, (void *)1, 1);
1799 }
1800 }
1801 return size;
1802}
1803
1804static ssize_t set_cmci_disabled(struct sys_device *s,
1805 struct sysdev_attribute *attr,
1806 const char *buf, size_t size)
1807{
1808 u64 new;
1809
1810 if (strict_strtoull(buf, 0, &new) < 0)
1811 return -EINVAL;
1812
1813 if (mce_cmci_disabled ^ !!new) {
1814 if (new) {
1815 /* disable cmci */
1816 on_each_cpu(mce_disable_ce, NULL, 1);
1817 mce_cmci_disabled = 1;
1818 } else {
1819 /* enable cmci */
1820 mce_cmci_disabled = 0;
1821 on_each_cpu(mce_enable_ce, NULL, 1);
1822 }
1823 }
1824 return size;
1825}
1826
Andi Kleenb56f6422009-05-27 21:56:52 +02001827static ssize_t store_int_with_restart(struct sys_device *s,
1828 struct sysdev_attribute *attr,
1829 const char *buf, size_t size)
1830{
1831 ssize_t ret = sysdev_store_int(s, attr, buf, size);
1832 mce_restart();
1833 return ret;
1834}
1835
Andi Kleena98f0dd2007-02-13 13:26:23 +01001836static SYSDEV_ATTR(trigger, 0644, show_trigger, set_trigger);
Andi Kleend95d62c2008-07-01 18:48:43 +02001837static SYSDEV_INT_ATTR(tolerant, 0644, tolerant);
Andi Kleen3c079792009-05-27 21:56:55 +02001838static SYSDEV_INT_ATTR(monarch_timeout, 0644, monarch_timeout);
Hidetoshi Seto9af43b52009-06-15 17:21:36 +09001839static SYSDEV_INT_ATTR(dont_log_ce, 0644, mce_dont_log_ce);
Ingo Molnare9eee032009-04-08 12:31:17 +02001840
Andi Kleenb56f6422009-05-27 21:56:52 +02001841static struct sysdev_ext_attribute attr_check_interval = {
1842 _SYSDEV_ATTR(check_interval, 0644, sysdev_show_int,
1843 store_int_with_restart),
1844 &check_interval
1845};
Ingo Molnare9eee032009-04-08 12:31:17 +02001846
Hidetoshi Seto9af43b52009-06-15 17:21:36 +09001847static struct sysdev_ext_attribute attr_ignore_ce = {
1848 _SYSDEV_ATTR(ignore_ce, 0644, sysdev_show_int, set_ignore_ce),
1849 &mce_ignore_ce
1850};
1851
1852static struct sysdev_ext_attribute attr_cmci_disabled = {
Yinghai Lu74b602c2009-06-17 14:43:32 -07001853 _SYSDEV_ATTR(cmci_disabled, 0644, sysdev_show_int, set_cmci_disabled),
Hidetoshi Seto9af43b52009-06-15 17:21:36 +09001854 &mce_cmci_disabled
1855};
1856
Ingo Molnarcb491fc2009-04-08 12:31:17 +02001857static struct sysdev_attribute *mce_attrs[] = {
Hidetoshi Seto9af43b52009-06-15 17:21:36 +09001858 &attr_tolerant.attr,
1859 &attr_check_interval.attr,
1860 &attr_trigger,
Andi Kleen3c079792009-05-27 21:56:55 +02001861 &attr_monarch_timeout.attr,
Hidetoshi Seto9af43b52009-06-15 17:21:36 +09001862 &attr_dont_log_ce.attr,
1863 &attr_ignore_ce.attr,
1864 &attr_cmci_disabled.attr,
Andi Kleena98f0dd2007-02-13 13:26:23 +01001865 NULL
1866};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867
Ingo Molnarcb491fc2009-04-08 12:31:17 +02001868static cpumask_var_t mce_dev_initialized;
Andreas Herrmannbae19fe2007-11-14 17:00:44 -08001869
Ingo Molnare9eee032009-04-08 12:31:17 +02001870/* Per cpu sysdev init. All of the cpus still share the same ctrl bank: */
Andi Kleen91c6d402005-07-28 21:15:39 -07001871static __cpuinit int mce_create_device(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872{
1873 int err;
Hidetoshi Setob1f49f92009-06-18 14:53:24 +09001874 int i, j;
Mike Travis92cb7612007-10-19 20:35:04 +02001875
Andreas Herrmann90367552007-11-07 02:12:58 +01001876 if (!mce_available(&boot_cpu_data))
Andi Kleen91c6d402005-07-28 21:15:39 -07001877 return -EIO;
1878
Ingo Molnarcb491fc2009-04-08 12:31:17 +02001879 memset(&per_cpu(mce_dev, cpu).kobj, 0, sizeof(struct kobject));
1880 per_cpu(mce_dev, cpu).id = cpu;
1881 per_cpu(mce_dev, cpu).cls = &mce_sysclass;
Andi Kleen91c6d402005-07-28 21:15:39 -07001882
Ingo Molnarcb491fc2009-04-08 12:31:17 +02001883 err = sysdev_register(&per_cpu(mce_dev, cpu));
Akinobu Mitad435d862007-10-18 03:05:15 -07001884 if (err)
1885 return err;
Andi Kleen91c6d402005-07-28 21:15:39 -07001886
Ingo Molnarcb491fc2009-04-08 12:31:17 +02001887 for (i = 0; mce_attrs[i]; i++) {
1888 err = sysdev_create_file(&per_cpu(mce_dev, cpu), mce_attrs[i]);
Akinobu Mitad435d862007-10-18 03:05:15 -07001889 if (err)
1890 goto error;
Andi Kleen91c6d402005-07-28 21:15:39 -07001891 }
Hidetoshi Setob1f49f92009-06-18 14:53:24 +09001892 for (j = 0; j < banks; j++) {
Ingo Molnarcb491fc2009-04-08 12:31:17 +02001893 err = sysdev_create_file(&per_cpu(mce_dev, cpu),
Andi Kleencebe1822009-07-09 00:31:43 +02001894 &mce_banks[j].attr);
Andi Kleen0d7482e32009-02-17 23:07:13 +01001895 if (err)
1896 goto error2;
1897 }
Ingo Molnarcb491fc2009-04-08 12:31:17 +02001898 cpumask_set_cpu(cpu, mce_dev_initialized);
Akinobu Mitad435d862007-10-18 03:05:15 -07001899
1900 return 0;
Andi Kleen0d7482e32009-02-17 23:07:13 +01001901error2:
Hidetoshi Setob1f49f92009-06-18 14:53:24 +09001902 while (--j >= 0)
Andi Kleencebe1822009-07-09 00:31:43 +02001903 sysdev_remove_file(&per_cpu(mce_dev, cpu), &mce_banks[j].attr);
Akinobu Mitad435d862007-10-18 03:05:15 -07001904error:
Ingo Molnarcb491fc2009-04-08 12:31:17 +02001905 while (--i >= 0)
Andi Kleencebe1822009-07-09 00:31:43 +02001906 sysdev_remove_file(&per_cpu(mce_dev, cpu), &mce_banks[i].attr);
Ingo Molnarcb491fc2009-04-08 12:31:17 +02001907
1908 sysdev_unregister(&per_cpu(mce_dev, cpu));
Akinobu Mitad435d862007-10-18 03:05:15 -07001909
Andi Kleen91c6d402005-07-28 21:15:39 -07001910 return err;
1911}
1912
Jan Beulich2d9cd6c2008-08-29 13:15:04 +01001913static __cpuinit void mce_remove_device(unsigned int cpu)
Andi Kleen91c6d402005-07-28 21:15:39 -07001914{
Shaohua Li73ca5352006-01-11 22:43:06 +01001915 int i;
1916
Ingo Molnarcb491fc2009-04-08 12:31:17 +02001917 if (!cpumask_test_cpu(cpu, mce_dev_initialized))
Andreas Herrmannbae19fe2007-11-14 17:00:44 -08001918 return;
1919
Ingo Molnarcb491fc2009-04-08 12:31:17 +02001920 for (i = 0; mce_attrs[i]; i++)
1921 sysdev_remove_file(&per_cpu(mce_dev, cpu), mce_attrs[i]);
1922
Andi Kleen0d7482e32009-02-17 23:07:13 +01001923 for (i = 0; i < banks; i++)
Andi Kleencebe1822009-07-09 00:31:43 +02001924 sysdev_remove_file(&per_cpu(mce_dev, cpu), &mce_banks[i].attr);
Ingo Molnarcb491fc2009-04-08 12:31:17 +02001925
1926 sysdev_unregister(&per_cpu(mce_dev, cpu));
1927 cpumask_clear_cpu(cpu, mce_dev_initialized);
Andi Kleen91c6d402005-07-28 21:15:39 -07001928}
Andi Kleen91c6d402005-07-28 21:15:39 -07001929
Andi Kleend6b75582009-02-12 13:39:31 +01001930/* Make sure there are no machine checks on offlined CPUs. */
H. Peter Anvinec5b3d32009-02-23 14:01:04 -08001931static void mce_disable_cpu(void *h)
Andi Kleend6b75582009-02-12 13:39:31 +01001932{
Andi Kleen88ccbed2009-02-12 13:49:36 +01001933 unsigned long action = *(unsigned long *)h;
Ingo Molnarcb491fc2009-04-08 12:31:17 +02001934 int i;
Andi Kleend6b75582009-02-12 13:39:31 +01001935
1936 if (!mce_available(&current_cpu_data))
1937 return;
Andi Kleen88ccbed2009-02-12 13:49:36 +01001938 if (!(action & CPU_TASKS_FROZEN))
1939 cmci_clear();
Andi Kleen06b7a7a2009-04-27 18:37:43 +02001940 for (i = 0; i < banks; i++) {
Andi Kleencebe1822009-07-09 00:31:43 +02001941 struct mce_bank *b = &mce_banks[i];
Ingo Molnar11868a22009-09-23 17:49:55 +02001942
Andi Kleencebe1822009-07-09 00:31:43 +02001943 if (b->init)
Andi Kleena2d32bc2009-07-09 00:31:44 +02001944 wrmsrl(MSR_IA32_MCx_CTL(i), 0);
Andi Kleen06b7a7a2009-04-27 18:37:43 +02001945 }
Andi Kleend6b75582009-02-12 13:39:31 +01001946}
1947
H. Peter Anvinec5b3d32009-02-23 14:01:04 -08001948static void mce_reenable_cpu(void *h)
Andi Kleend6b75582009-02-12 13:39:31 +01001949{
Andi Kleen88ccbed2009-02-12 13:49:36 +01001950 unsigned long action = *(unsigned long *)h;
Ingo Molnare9eee032009-04-08 12:31:17 +02001951 int i;
Andi Kleend6b75582009-02-12 13:39:31 +01001952
1953 if (!mce_available(&current_cpu_data))
1954 return;
Ingo Molnare9eee032009-04-08 12:31:17 +02001955
Andi Kleen88ccbed2009-02-12 13:49:36 +01001956 if (!(action & CPU_TASKS_FROZEN))
1957 cmci_reenable();
Andi Kleen06b7a7a2009-04-27 18:37:43 +02001958 for (i = 0; i < banks; i++) {
Andi Kleencebe1822009-07-09 00:31:43 +02001959 struct mce_bank *b = &mce_banks[i];
Ingo Molnar11868a22009-09-23 17:49:55 +02001960
Andi Kleencebe1822009-07-09 00:31:43 +02001961 if (b->init)
Andi Kleena2d32bc2009-07-09 00:31:44 +02001962 wrmsrl(MSR_IA32_MCx_CTL(i), b->ctl);
Andi Kleen06b7a7a2009-04-27 18:37:43 +02001963 }
Andi Kleend6b75582009-02-12 13:39:31 +01001964}
1965
Andi Kleen91c6d402005-07-28 21:15:39 -07001966/* Get notified when a cpu comes on/off. Be hotplug friendly. */
Ingo Molnare9eee032009-04-08 12:31:17 +02001967static int __cpuinit
1968mce_cpu_callback(struct notifier_block *nfb, unsigned long action, void *hcpu)
Andi Kleen91c6d402005-07-28 21:15:39 -07001969{
1970 unsigned int cpu = (unsigned long)hcpu;
Andi Kleen52d168e2009-02-12 13:39:29 +01001971 struct timer_list *t = &per_cpu(mce_timer, cpu);
Andi Kleen91c6d402005-07-28 21:15:39 -07001972
1973 switch (action) {
Andreas Herrmannbae19fe2007-11-14 17:00:44 -08001974 case CPU_ONLINE:
1975 case CPU_ONLINE_FROZEN:
1976 mce_create_device(cpu);
Rafael J. Wysocki87357282008-08-22 22:23:09 +02001977 if (threshold_cpu_callback)
1978 threshold_cpu_callback(action, cpu);
Andi Kleen91c6d402005-07-28 21:15:39 -07001979 break;
Andi Kleen91c6d402005-07-28 21:15:39 -07001980 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001981 case CPU_DEAD_FROZEN:
Rafael J. Wysocki87357282008-08-22 22:23:09 +02001982 if (threshold_cpu_callback)
1983 threshold_cpu_callback(action, cpu);
Andi Kleen91c6d402005-07-28 21:15:39 -07001984 mce_remove_device(cpu);
1985 break;
Andi Kleen52d168e2009-02-12 13:39:29 +01001986 case CPU_DOWN_PREPARE:
1987 case CPU_DOWN_PREPARE_FROZEN:
1988 del_timer_sync(t);
Andi Kleen88ccbed2009-02-12 13:49:36 +01001989 smp_call_function_single(cpu, mce_disable_cpu, &action, 1);
Andi Kleen52d168e2009-02-12 13:39:29 +01001990 break;
1991 case CPU_DOWN_FAILED:
1992 case CPU_DOWN_FAILED_FROZEN:
Andi Kleen6298c512009-04-09 12:28:22 +02001993 t->expires = round_jiffies(jiffies +
Tejun Heo245b2e72009-06-24 15:13:48 +09001994 __get_cpu_var(mce_next_interval));
Andi Kleen52d168e2009-02-12 13:39:29 +01001995 add_timer_on(t, cpu);
Andi Kleen88ccbed2009-02-12 13:49:36 +01001996 smp_call_function_single(cpu, mce_reenable_cpu, &action, 1);
1997 break;
1998 case CPU_POST_DEAD:
1999 /* intentionally ignoring frozen here */
2000 cmci_rediscover(cpu);
Andi Kleen52d168e2009-02-12 13:39:29 +01002001 break;
Andi Kleen91c6d402005-07-28 21:15:39 -07002002 }
Andreas Herrmannbae19fe2007-11-14 17:00:44 -08002003 return NOTIFY_OK;
Andi Kleen91c6d402005-07-28 21:15:39 -07002004}
2005
Sam Ravnborg1e356692008-01-30 13:33:36 +01002006static struct notifier_block mce_cpu_notifier __cpuinitdata = {
Andi Kleen91c6d402005-07-28 21:15:39 -07002007 .notifier_call = mce_cpu_callback,
2008};
2009
Andi Kleencebe1822009-07-09 00:31:43 +02002010static __init void mce_init_banks(void)
Andi Kleen0d7482e32009-02-17 23:07:13 +01002011{
2012 int i;
2013
Andi Kleen0d7482e32009-02-17 23:07:13 +01002014 for (i = 0; i < banks; i++) {
Andi Kleencebe1822009-07-09 00:31:43 +02002015 struct mce_bank *b = &mce_banks[i];
2016 struct sysdev_attribute *a = &b->attr;
Ingo Molnare9eee032009-04-08 12:31:17 +02002017
Andi Kleencebe1822009-07-09 00:31:43 +02002018 a->attr.name = b->attrname;
2019 snprintf(b->attrname, ATTR_LEN, "bank%d", i);
Ingo Molnare9eee032009-04-08 12:31:17 +02002020
2021 a->attr.mode = 0644;
2022 a->show = show_bank;
2023 a->store = set_bank;
Andi Kleen0d7482e32009-02-17 23:07:13 +01002024 }
Andi Kleen0d7482e32009-02-17 23:07:13 +01002025}
2026
Andi Kleen91c6d402005-07-28 21:15:39 -07002027static __init int mce_init_device(void)
2028{
2029 int err;
2030 int i = 0;
2031
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 if (!mce_available(&boot_cpu_data))
2033 return -EIO;
Andi Kleen0d7482e32009-02-17 23:07:13 +01002034
Yinghai Lue92fae02009-06-17 16:21:33 -07002035 zalloc_cpumask_var(&mce_dev_initialized, GFP_KERNEL);
Rusty Russell996867d2009-03-13 14:49:51 +10302036
Andi Kleencebe1822009-07-09 00:31:43 +02002037 mce_init_banks();
Andi Kleen0d7482e32009-02-17 23:07:13 +01002038
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 err = sysdev_class_register(&mce_sysclass);
Akinobu Mitad435d862007-10-18 03:05:15 -07002040 if (err)
2041 return err;
Andi Kleen91c6d402005-07-28 21:15:39 -07002042
2043 for_each_online_cpu(i) {
Akinobu Mitad435d862007-10-18 03:05:15 -07002044 err = mce_create_device(i);
2045 if (err)
2046 return err;
Andi Kleen91c6d402005-07-28 21:15:39 -07002047 }
2048
Chandra Seetharamanbe6b5a32006-07-30 03:03:37 -07002049 register_hotcpu_notifier(&mce_cpu_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 misc_register(&mce_log_device);
Ingo Molnare9eee032009-04-08 12:31:17 +02002051
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053}
Andi Kleen91c6d402005-07-28 21:15:39 -07002054
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055device_initcall(mce_init_device);
Ingo Molnara988d332009-04-08 12:31:25 +02002056
Andi Kleend7c3c9a2009-04-28 23:07:25 +02002057/*
2058 * Old style boot options parsing. Only for compatibility.
2059 */
2060static int __init mcheck_disable(char *str)
2061{
2062 mce_disabled = 1;
2063 return 1;
2064}
2065__setup("nomce", mcheck_disable);
Huang Ying5be9ed22009-07-31 09:41:42 +08002066
2067#ifdef CONFIG_DEBUG_FS
2068struct dentry *mce_get_debugfs_dir(void)
2069{
2070 static struct dentry *dmce;
2071
2072 if (!dmce)
2073 dmce = debugfs_create_dir("mce", NULL);
2074
2075 return dmce;
2076}
Huang Yingbf783f92009-07-31 09:41:43 +08002077
2078static void mce_reset(void)
2079{
2080 cpu_missing = 0;
2081 atomic_set(&mce_fake_paniced, 0);
2082 atomic_set(&mce_executing, 0);
2083 atomic_set(&mce_callin, 0);
2084 atomic_set(&global_nwo, 0);
2085}
2086
2087static int fake_panic_get(void *data, u64 *val)
2088{
2089 *val = fake_panic;
2090 return 0;
2091}
2092
2093static int fake_panic_set(void *data, u64 val)
2094{
2095 mce_reset();
2096 fake_panic = val;
2097 return 0;
2098}
2099
2100DEFINE_SIMPLE_ATTRIBUTE(fake_panic_fops, fake_panic_get,
2101 fake_panic_set, "%llu\n");
2102
2103static int __init mce_debugfs_init(void)
2104{
2105 struct dentry *dmce, *ffake_panic;
2106
2107 dmce = mce_get_debugfs_dir();
2108 if (!dmce)
2109 return -ENOMEM;
2110 ffake_panic = debugfs_create_file("fake_panic", 0444, dmce, NULL,
2111 &fake_panic_fops);
2112 if (!ffake_panic)
2113 return -ENOMEM;
2114
2115 return 0;
2116}
2117late_initcall(mce_debugfs_init);
Huang Ying5be9ed22009-07-31 09:41:42 +08002118#endif