blob: 4b2af86e3e8d2388a74b2dec2b1145253b43427a [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
Tim Hockine02e68d2007-07-21 17:10:36 +020088
Andi Kleenee031c32009-02-12 13:49:34 +010089/* MCA banks polled by the period polling timer for corrected events */
90DEFINE_PER_CPU(mce_banks_t, mce_poll_banks) = {
91 [0 ... BITS_TO_LONGS(MAX_NR_BANKS)-1] = ~0UL
92};
93
Andi Kleen9b1beaf2009-05-27 21:56:59 +020094static DEFINE_PER_CPU(struct work_struct, mce_work);
95
Andi Kleenb5f2fa42009-02-12 13:43:22 +010096/* Do initial initialization of a struct mce */
97void mce_setup(struct mce *m)
98{
99 memset(m, 0, sizeof(struct mce));
Andi Kleend620c672009-05-27 21:56:56 +0200100 m->cpu = m->extcpu = smp_processor_id();
Andi Kleenb5f2fa42009-02-12 13:43:22 +0100101 rdtscll(m->tsc);
Andi Kleen8ee08342009-05-27 21:56:56 +0200102 /* We hope get_seconds stays lockless */
103 m->time = get_seconds();
104 m->cpuvendor = boot_cpu_data.x86_vendor;
105 m->cpuid = cpuid_eax(1);
106#ifdef CONFIG_SMP
107 m->socketid = cpu_data(m->extcpu).phys_proc_id;
108#endif
109 m->apicid = cpu_data(m->extcpu).initial_apicid;
110 rdmsrl(MSR_IA32_MCG_CAP, m->mcgcap);
Andi Kleenb5f2fa42009-02-12 13:43:22 +0100111}
112
Andi Kleenea149b32009-04-29 19:31:00 +0200113DEFINE_PER_CPU(struct mce, injectm);
114EXPORT_PER_CPU_SYMBOL_GPL(injectm);
115
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116/*
117 * Lockless MCE logging infrastructure.
118 * This avoids deadlocks on printk locks without having to break locks. Also
119 * separate MCEs from kernel messages to avoid bogus bug reports.
120 */
121
Adrian Bunk231fd902008-01-30 13:30:30 +0100122static struct mce_log mcelog = {
Andi Kleenf6fb0ac2009-05-27 21:56:55 +0200123 .signature = MCE_LOG_SIGNATURE,
124 .len = MCE_LOG_LEN,
125 .recordlen = sizeof(struct mce),
Thomas Gleixnerd88203d2007-10-23 22:37:23 +0200126};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
128void mce_log(struct mce *mce)
129{
130 unsigned next, entry;
Ingo Molnare9eee032009-04-08 12:31:17 +0200131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 mce->finished = 0;
Mike Waychison76441432005-09-30 00:01:27 +0200133 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 for (;;) {
135 entry = rcu_dereference(mcelog.next);
Andi Kleen673242c2005-09-12 18:49:24 +0200136 for (;;) {
Ingo Molnare9eee032009-04-08 12:31:17 +0200137 /*
138 * When the buffer fills up discard new entries.
139 * Assume that the earlier errors are the more
140 * interesting ones:
141 */
Andi Kleen673242c2005-09-12 18:49:24 +0200142 if (entry >= MCE_LOG_LEN) {
Hidetoshi Seto14a02532009-04-30 16:04:51 +0900143 set_bit(MCE_OVERFLOW,
144 (unsigned long *)&mcelog.flags);
Andi Kleen673242c2005-09-12 18:49:24 +0200145 return;
146 }
Ingo Molnare9eee032009-04-08 12:31:17 +0200147 /* Old left over entry. Skip: */
Andi Kleen673242c2005-09-12 18:49:24 +0200148 if (mcelog.entry[entry].finished) {
149 entry++;
150 continue;
151 }
Mike Waychison76441432005-09-30 00:01:27 +0200152 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 smp_rmb();
155 next = entry + 1;
156 if (cmpxchg(&mcelog.next, entry, next) == entry)
157 break;
158 }
159 memcpy(mcelog.entry + entry, mce, sizeof(struct mce));
Mike Waychison76441432005-09-30 00:01:27 +0200160 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 mcelog.entry[entry].finished = 1;
Mike Waychison76441432005-09-30 00:01:27 +0200162 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Andi Kleena0189c72009-05-27 21:56:54 +0200164 mce->finished = 1;
Hidetoshi Seto1020bcb2009-06-15 17:20:57 +0900165 set_bit(0, &mce_need_notify);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166}
167
Borislav Petkov549d0422009-07-24 13:51:42 +0200168void __weak decode_mce(struct mce *m)
169{
170 return;
171}
172
Hidetoshi Seto77e26cc2009-06-11 16:04:35 +0900173static void print_mce(struct mce *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174{
Andi Kleen86503562009-05-27 21:56:58 +0200175 printk(KERN_EMERG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 "CPU %d: Machine Check Exception: %16Lx Bank %d: %016Lx\n",
Andi Kleend620c672009-05-27 21:56:56 +0200177 m->extcpu, m->mcgstatus, m->bank, m->status);
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100178 if (m->ip) {
Thomas Gleixnerd88203d2007-10-23 22:37:23 +0200179 printk(KERN_EMERG "RIP%s %02x:<%016Lx> ",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 !(m->mcgstatus & MCG_STATUS_EIPV) ? " !INEXACT!" : "",
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100181 m->cs, m->ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 if (m->cs == __KERNEL_CS)
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100183 print_symbol("{%s}", m->ip);
Joe Perchesad361c92009-07-06 13:05:40 -0700184 printk(KERN_CONT "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 }
H. Peter Anvinf6d18262009-02-19 15:44:58 -0800186 printk(KERN_EMERG "TSC %llx ", m->tsc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 if (m->addr)
Joe Perchesad361c92009-07-06 13:05:40 -0700188 printk(KERN_CONT "ADDR %llx ", m->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 if (m->misc)
Joe Perchesad361c92009-07-06 13:05:40 -0700190 printk(KERN_CONT "MISC %llx ", m->misc);
191 printk(KERN_CONT "\n");
Andi Kleen8ee08342009-05-27 21:56:56 +0200192 printk(KERN_EMERG "PROCESSOR %u:%x TIME %llu SOCKET %u APIC %x\n",
193 m->cpuvendor, m->cpuid, m->time, m->socketid,
194 m->apicid);
Borislav Petkov549d0422009-07-24 13:51:42 +0200195
196 decode_mce(m);
Andi Kleen86503562009-05-27 21:56:58 +0200197}
198
Hidetoshi Seto77e26cc2009-06-11 16:04:35 +0900199static void print_mce_head(void)
200{
Joe Perchesad361c92009-07-06 13:05:40 -0700201 printk(KERN_EMERG "\nHARDWARE ERROR\n");
Hidetoshi Seto77e26cc2009-06-11 16:04:35 +0900202}
203
Andi Kleen86503562009-05-27 21:56:58 +0200204static void print_mce_tail(void)
205{
206 printk(KERN_EMERG "This is not a software problem!\n"
Borislav Petkov22223c92009-07-28 14:47:10 +0200207#if (!defined(CONFIG_EDAC) || !defined(CONFIG_CPU_SUP_AMD))
208 "Run through mcelog --ascii to decode and contact your hardware vendor\n"
209#endif
210 );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211}
212
Andi Kleenf94b61c2009-05-27 21:56:55 +0200213#define PANIC_TIMEOUT 5 /* 5 seconds */
214
215static atomic_t mce_paniced;
216
Huang Yingbf783f92009-07-31 09:41:43 +0800217static int fake_panic;
218static atomic_t mce_fake_paniced;
219
Andi Kleenf94b61c2009-05-27 21:56:55 +0200220/* Panic in progress. Enable interrupts and wait for final IPI */
221static void wait_for_panic(void)
222{
223 long timeout = PANIC_TIMEOUT*USEC_PER_SEC;
224 preempt_disable();
225 local_irq_enable();
226 while (timeout-- > 0)
227 udelay(1);
Andi Kleen29b0f592009-05-27 21:56:56 +0200228 if (panic_timeout == 0)
229 panic_timeout = mce_panic_timeout;
Andi Kleenf94b61c2009-05-27 21:56:55 +0200230 panic("Panicing machine check CPU died");
231}
232
Andi Kleenbd19a5e2009-05-27 21:56:55 +0200233static void mce_panic(char *msg, struct mce *final, char *exp)
Thomas Gleixnerd88203d2007-10-23 22:37:23 +0200234{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 int i;
Tim Hockine02e68d2007-07-21 17:10:36 +0200236
Huang Yingbf783f92009-07-31 09:41:43 +0800237 if (!fake_panic) {
238 /*
239 * Make sure only one CPU runs in machine check panic
240 */
241 if (atomic_inc_return(&mce_paniced) > 1)
242 wait_for_panic();
243 barrier();
Andi Kleenf94b61c2009-05-27 21:56:55 +0200244
Huang Yingbf783f92009-07-31 09:41:43 +0800245 bust_spinlocks(1);
246 console_verbose();
247 } else {
248 /* Don't log too much for fake panic */
249 if (atomic_inc_return(&mce_fake_paniced) > 1)
250 return;
251 }
Hidetoshi Seto77e26cc2009-06-11 16:04:35 +0900252 print_mce_head();
Andi Kleena0189c72009-05-27 21:56:54 +0200253 /* First print corrected ones that are still unlogged */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 for (i = 0; i < MCE_LOG_LEN; i++) {
Andi Kleena0189c72009-05-27 21:56:54 +0200255 struct mce *m = &mcelog.entry[i];
Hidetoshi Seto77e26cc2009-06-11 16:04:35 +0900256 if (!(m->status & MCI_STATUS_VAL))
257 continue;
258 if (!(m->status & MCI_STATUS_UC))
259 print_mce(m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 }
Andi Kleena0189c72009-05-27 21:56:54 +0200261 /* Now print uncorrected but with the final one last */
262 for (i = 0; i < MCE_LOG_LEN; i++) {
263 struct mce *m = &mcelog.entry[i];
264 if (!(m->status & MCI_STATUS_VAL))
265 continue;
Hidetoshi Seto77e26cc2009-06-11 16:04:35 +0900266 if (!(m->status & MCI_STATUS_UC))
267 continue;
Andi Kleena0189c72009-05-27 21:56:54 +0200268 if (!final || memcmp(m, final, sizeof(struct mce)))
Hidetoshi Seto77e26cc2009-06-11 16:04:35 +0900269 print_mce(m);
Andi Kleena0189c72009-05-27 21:56:54 +0200270 }
271 if (final)
Hidetoshi Seto77e26cc2009-06-11 16:04:35 +0900272 print_mce(final);
Andi Kleen3c079792009-05-27 21:56:55 +0200273 if (cpu_missing)
274 printk(KERN_EMERG "Some CPUs didn't answer in synchronization\n");
Andi Kleen86503562009-05-27 21:56:58 +0200275 print_mce_tail();
Andi Kleenbd19a5e2009-05-27 21:56:55 +0200276 if (exp)
277 printk(KERN_EMERG "Machine check: %s\n", exp);
Huang Yingbf783f92009-07-31 09:41:43 +0800278 if (!fake_panic) {
279 if (panic_timeout == 0)
280 panic_timeout = mce_panic_timeout;
281 panic(msg);
282 } else
283 printk(KERN_EMERG "Fake kernel panic: %s\n", msg);
Thomas Gleixnerd88203d2007-10-23 22:37:23 +0200284}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
Andi Kleenea149b32009-04-29 19:31:00 +0200286/* Support code for software error injection */
287
288static int msr_to_offset(u32 msr)
289{
290 unsigned bank = __get_cpu_var(injectm.bank);
291 if (msr == rip_msr)
292 return offsetof(struct mce, ip);
Andi Kleena2d32bc2009-07-09 00:31:44 +0200293 if (msr == MSR_IA32_MCx_STATUS(bank))
Andi Kleenea149b32009-04-29 19:31:00 +0200294 return offsetof(struct mce, status);
Andi Kleena2d32bc2009-07-09 00:31:44 +0200295 if (msr == MSR_IA32_MCx_ADDR(bank))
Andi Kleenea149b32009-04-29 19:31:00 +0200296 return offsetof(struct mce, addr);
Andi Kleena2d32bc2009-07-09 00:31:44 +0200297 if (msr == MSR_IA32_MCx_MISC(bank))
Andi Kleenea149b32009-04-29 19:31:00 +0200298 return offsetof(struct mce, misc);
299 if (msr == MSR_IA32_MCG_STATUS)
300 return offsetof(struct mce, mcgstatus);
301 return -1;
302}
303
Andi Kleen5f8c1a52009-04-29 19:29:12 +0200304/* MSR access wrappers used for error injection */
305static u64 mce_rdmsrl(u32 msr)
306{
307 u64 v;
Ingo Molnar11868a22009-09-23 17:49:55 +0200308
Andi Kleenea149b32009-04-29 19:31:00 +0200309 if (__get_cpu_var(injectm).finished) {
310 int offset = msr_to_offset(msr);
Ingo Molnar11868a22009-09-23 17:49:55 +0200311
Andi Kleenea149b32009-04-29 19:31:00 +0200312 if (offset < 0)
313 return 0;
314 return *(u64 *)((char *)&__get_cpu_var(injectm) + offset);
315 }
Ingo Molnar11868a22009-09-23 17:49:55 +0200316
317 if (rdmsrl_safe(msr, &v)) {
318 WARN_ONCE(1, "mce: Unable to read msr %d!\n", msr);
319 /*
320 * Return zero in case the access faulted. This should
321 * not happen normally but can happen if the CPU does
322 * something weird, or if the code is buggy.
323 */
324 v = 0;
325 }
326
Andi Kleen5f8c1a52009-04-29 19:29:12 +0200327 return v;
328}
329
330static void mce_wrmsrl(u32 msr, u64 v)
331{
Andi Kleenea149b32009-04-29 19:31:00 +0200332 if (__get_cpu_var(injectm).finished) {
333 int offset = msr_to_offset(msr);
Ingo Molnar11868a22009-09-23 17:49:55 +0200334
Andi Kleenea149b32009-04-29 19:31:00 +0200335 if (offset >= 0)
336 *(u64 *)((char *)&__get_cpu_var(injectm) + offset) = v;
337 return;
338 }
Andi Kleen5f8c1a52009-04-29 19:29:12 +0200339 wrmsrl(msr, v);
340}
341
Andi Kleen9b1beaf2009-05-27 21:56:59 +0200342/*
343 * Simple lockless ring to communicate PFNs from the exception handler with the
344 * process context work function. This is vastly simplified because there's
345 * only a single reader and a single writer.
346 */
347#define MCE_RING_SIZE 16 /* we use one entry less */
348
349struct mce_ring {
350 unsigned short start;
351 unsigned short end;
352 unsigned long ring[MCE_RING_SIZE];
353};
354static DEFINE_PER_CPU(struct mce_ring, mce_ring);
355
356/* Runs with CPU affinity in workqueue */
357static int mce_ring_empty(void)
358{
359 struct mce_ring *r = &__get_cpu_var(mce_ring);
360
361 return r->start == r->end;
362}
363
364static int mce_ring_get(unsigned long *pfn)
365{
366 struct mce_ring *r;
367 int ret = 0;
368
369 *pfn = 0;
370 get_cpu();
371 r = &__get_cpu_var(mce_ring);
372 if (r->start == r->end)
373 goto out;
374 *pfn = r->ring[r->start];
375 r->start = (r->start + 1) % MCE_RING_SIZE;
376 ret = 1;
377out:
378 put_cpu();
379 return ret;
380}
381
382/* Always runs in MCE context with preempt off */
383static int mce_ring_add(unsigned long pfn)
384{
385 struct mce_ring *r = &__get_cpu_var(mce_ring);
386 unsigned next;
387
388 next = (r->end + 1) % MCE_RING_SIZE;
389 if (next == r->start)
390 return -1;
391 r->ring[r->end] = pfn;
392 wmb();
393 r->end = next;
394 return 0;
395}
396
Andi Kleen88ccbed2009-02-12 13:49:36 +0100397int mce_available(struct cpuinfo_x86 *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398{
Andi Kleen04b2b1a2009-04-28 22:50:19 +0200399 if (mce_disabled)
Andi Kleen5b4408f2009-02-12 13:39:30 +0100400 return 0;
Akinobu Mita3d1712c2006-03-24 03:15:11 -0800401 return cpu_has(c, X86_FEATURE_MCE) && cpu_has(c, X86_FEATURE_MCA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402}
403
Andi Kleen9b1beaf2009-05-27 21:56:59 +0200404static void mce_schedule_work(void)
405{
406 if (!mce_ring_empty()) {
407 struct work_struct *work = &__get_cpu_var(mce_work);
408 if (!work_pending(work))
409 schedule_work(work);
410 }
411}
412
Huang Ying1b2797d2009-05-27 21:56:51 +0200413/*
414 * Get the address of the instruction at the time of the machine check
415 * error.
416 */
Andi Kleen94ad8472005-04-16 15:25:09 -0700417static inline void mce_get_rip(struct mce *m, struct pt_regs *regs)
418{
Huang Ying1b2797d2009-05-27 21:56:51 +0200419
420 if (regs && (m->mcgstatus & (MCG_STATUS_RIPV|MCG_STATUS_EIPV))) {
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100421 m->ip = regs->ip;
Andi Kleen94ad8472005-04-16 15:25:09 -0700422 m->cs = regs->cs;
423 } else {
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100424 m->ip = 0;
Andi Kleen94ad8472005-04-16 15:25:09 -0700425 m->cs = 0;
426 }
Huang Ying1b2797d2009-05-27 21:56:51 +0200427 if (rip_msr)
Andi Kleen5f8c1a52009-04-29 19:29:12 +0200428 m->ip = mce_rdmsrl(rip_msr);
Andi Kleen94ad8472005-04-16 15:25:09 -0700429}
430
Ingo Molnar11868a22009-09-23 17:49:55 +0200431#ifdef CONFIG_X86_LOCAL_APIC
Andi Kleenccc3c312009-05-27 21:56:54 +0200432/*
433 * Called after interrupts have been reenabled again
434 * when a MCE happened during an interrupts off region
435 * in the kernel.
436 */
437asmlinkage void smp_mce_self_interrupt(struct pt_regs *regs)
438{
439 ack_APIC_irq();
440 exit_idle();
441 irq_enter();
Andi Kleen9ff36ee2009-05-27 21:56:58 +0200442 mce_notify_irq();
Andi Kleen9b1beaf2009-05-27 21:56:59 +0200443 mce_schedule_work();
Andi Kleenccc3c312009-05-27 21:56:54 +0200444 irq_exit();
445}
446#endif
447
448static void mce_report_event(struct pt_regs *regs)
449{
450 if (regs->flags & (X86_VM_MASK|X86_EFLAGS_IF)) {
Andi Kleen9ff36ee2009-05-27 21:56:58 +0200451 mce_notify_irq();
Andi Kleen9b1beaf2009-05-27 21:56:59 +0200452 /*
453 * Triggering the work queue here is just an insurance
454 * policy in case the syscall exit notify handler
455 * doesn't run soon enough or ends up running on the
456 * wrong CPU (can happen when audit sleeps)
457 */
458 mce_schedule_work();
Andi Kleenccc3c312009-05-27 21:56:54 +0200459 return;
460 }
461
462#ifdef CONFIG_X86_LOCAL_APIC
463 /*
464 * Without APIC do not notify. The event will be picked
465 * up eventually.
466 */
467 if (!cpu_has_apic)
468 return;
469
470 /*
471 * When interrupts are disabled we cannot use
472 * kernel services safely. Trigger an self interrupt
473 * through the APIC to instead do the notification
474 * after interrupts are reenabled again.
475 */
476 apic->send_IPI_self(MCE_SELF_VECTOR);
477
478 /*
479 * Wait for idle afterwards again so that we don't leave the
480 * APIC in a non idle state because the normal APIC writes
481 * cannot exclude us.
482 */
483 apic_wait_icr_idle();
484#endif
485}
486
Andi Kleenca84f692009-05-27 21:56:57 +0200487DEFINE_PER_CPU(unsigned, mce_poll_count);
488
Thomas Gleixnerd88203d2007-10-23 22:37:23 +0200489/*
Andi Kleenb79109c2009-02-12 13:43:23 +0100490 * Poll for corrected events or events that happened before reset.
491 * Those are just logged through /dev/mcelog.
492 *
493 * This is executed in standard interrupt context.
Andi Kleened7290d2009-05-27 21:56:57 +0200494 *
495 * Note: spec recommends to panic for fatal unsignalled
496 * errors here. However this would be quite problematic --
497 * we would need to reimplement the Monarch handling and
498 * it would mess up the exclusion between exception handler
499 * and poll hander -- * so we skip this for now.
500 * These cases should not happen anyways, or only when the CPU
501 * is already totally * confused. In this case it's likely it will
502 * not fully execute the machine check handler either.
Andi Kleenb79109c2009-02-12 13:43:23 +0100503 */
Andi Kleenee031c32009-02-12 13:49:34 +0100504void machine_check_poll(enum mcp_flags flags, mce_banks_t *b)
Andi Kleenb79109c2009-02-12 13:43:23 +0100505{
506 struct mce m;
507 int i;
508
Andi Kleenca84f692009-05-27 21:56:57 +0200509 __get_cpu_var(mce_poll_count)++;
510
Andi Kleenb79109c2009-02-12 13:43:23 +0100511 mce_setup(&m);
512
Andi Kleen5f8c1a52009-04-29 19:29:12 +0200513 m.mcgstatus = mce_rdmsrl(MSR_IA32_MCG_STATUS);
Andi Kleenb79109c2009-02-12 13:43:23 +0100514 for (i = 0; i < banks; i++) {
Andi Kleencebe1822009-07-09 00:31:43 +0200515 if (!mce_banks[i].ctl || !test_bit(i, *b))
Andi Kleenb79109c2009-02-12 13:43:23 +0100516 continue;
517
518 m.misc = 0;
519 m.addr = 0;
520 m.bank = i;
521 m.tsc = 0;
522
523 barrier();
Andi Kleena2d32bc2009-07-09 00:31:44 +0200524 m.status = mce_rdmsrl(MSR_IA32_MCx_STATUS(i));
Andi Kleenb79109c2009-02-12 13:43:23 +0100525 if (!(m.status & MCI_STATUS_VAL))
526 continue;
527
528 /*
Andi Kleened7290d2009-05-27 21:56:57 +0200529 * Uncorrected or signalled events are handled by the exception
530 * handler when it is enabled, so don't process those here.
Andi Kleenb79109c2009-02-12 13:43:23 +0100531 *
532 * TBD do the same check for MCI_STATUS_EN here?
533 */
Andi Kleened7290d2009-05-27 21:56:57 +0200534 if (!(flags & MCP_UC) &&
535 (m.status & (mce_ser ? MCI_STATUS_S : MCI_STATUS_UC)))
Andi Kleenb79109c2009-02-12 13:43:23 +0100536 continue;
537
538 if (m.status & MCI_STATUS_MISCV)
Andi Kleena2d32bc2009-07-09 00:31:44 +0200539 m.misc = mce_rdmsrl(MSR_IA32_MCx_MISC(i));
Andi Kleenb79109c2009-02-12 13:43:23 +0100540 if (m.status & MCI_STATUS_ADDRV)
Andi Kleena2d32bc2009-07-09 00:31:44 +0200541 m.addr = mce_rdmsrl(MSR_IA32_MCx_ADDR(i));
Andi Kleenb79109c2009-02-12 13:43:23 +0100542
543 if (!(flags & MCP_TIMESTAMP))
544 m.tsc = 0;
545 /*
546 * Don't get the IP here because it's unlikely to
547 * have anything to do with the actual error location.
548 */
Hidetoshi Seto62fdac52009-06-11 16:06:07 +0900549 if (!(flags & MCP_DONTLOG) && !mce_dont_log_ce) {
Andi Kleen5679af42009-04-07 17:06:55 +0200550 mce_log(&m);
551 add_taint(TAINT_MACHINE_CHECK);
552 }
Andi Kleenb79109c2009-02-12 13:43:23 +0100553
554 /*
555 * Clear state for this bank.
556 */
Andi Kleena2d32bc2009-07-09 00:31:44 +0200557 mce_wrmsrl(MSR_IA32_MCx_STATUS(i), 0);
Andi Kleenb79109c2009-02-12 13:43:23 +0100558 }
559
560 /*
561 * Don't clear MCG_STATUS here because it's only defined for
562 * exceptions.
563 */
Andi Kleen88921be2009-05-27 21:56:51 +0200564
565 sync_core();
Andi Kleenb79109c2009-02-12 13:43:23 +0100566}
Andi Kleenea149b32009-04-29 19:31:00 +0200567EXPORT_SYMBOL_GPL(machine_check_poll);
Andi Kleenb79109c2009-02-12 13:43:23 +0100568
569/*
Andi Kleenbd19a5e2009-05-27 21:56:55 +0200570 * Do a quick check if any of the events requires a panic.
571 * This decides if we keep the events around or clear them.
572 */
573static int mce_no_way_out(struct mce *m, char **msg)
574{
575 int i;
576
577 for (i = 0; i < banks; i++) {
Andi Kleena2d32bc2009-07-09 00:31:44 +0200578 m->status = mce_rdmsrl(MSR_IA32_MCx_STATUS(i));
Andi Kleenbd19a5e2009-05-27 21:56:55 +0200579 if (mce_severity(m, tolerant, msg) >= MCE_PANIC_SEVERITY)
580 return 1;
581 }
582 return 0;
583}
584
585/*
Andi Kleen3c079792009-05-27 21:56:55 +0200586 * Variable to establish order between CPUs while scanning.
587 * Each CPU spins initially until executing is equal its number.
588 */
589static atomic_t mce_executing;
590
591/*
592 * Defines order of CPUs on entry. First CPU becomes Monarch.
593 */
594static atomic_t mce_callin;
595
596/*
597 * Check if a timeout waiting for other CPUs happened.
598 */
599static int mce_timed_out(u64 *t)
600{
601 /*
602 * The others already did panic for some reason.
603 * Bail out like in a timeout.
604 * rmb() to tell the compiler that system_state
605 * might have been modified by someone else.
606 */
607 rmb();
608 if (atomic_read(&mce_paniced))
609 wait_for_panic();
610 if (!monarch_timeout)
611 goto out;
612 if ((s64)*t < SPINUNIT) {
613 /* CHECKME: Make panic default for 1 too? */
614 if (tolerant < 1)
615 mce_panic("Timeout synchronizing machine check over CPUs",
616 NULL, NULL);
617 cpu_missing = 1;
618 return 1;
619 }
620 *t -= SPINUNIT;
621out:
622 touch_nmi_watchdog();
623 return 0;
624}
625
626/*
627 * The Monarch's reign. The Monarch is the CPU who entered
628 * the machine check handler first. It waits for the others to
629 * raise the exception too and then grades them. When any
630 * error is fatal panic. Only then let the others continue.
631 *
632 * The other CPUs entering the MCE handler will be controlled by the
633 * Monarch. They are called Subjects.
634 *
635 * This way we prevent any potential data corruption in a unrecoverable case
636 * and also makes sure always all CPU's errors are examined.
637 *
Hidetoshi Seto680b6cf2009-08-26 16:20:36 +0900638 * Also this detects the case of a machine check event coming from outer
Andi Kleen3c079792009-05-27 21:56:55 +0200639 * space (not detected by any CPUs) In this case some external agent wants
640 * us to shut down, so panic too.
641 *
642 * The other CPUs might still decide to panic if the handler happens
643 * in a unrecoverable place, but in this case the system is in a semi-stable
644 * state and won't corrupt anything by itself. It's ok to let the others
645 * continue for a bit first.
646 *
647 * All the spin loops have timeouts; when a timeout happens a CPU
648 * typically elects itself to be Monarch.
649 */
650static void mce_reign(void)
651{
652 int cpu;
653 struct mce *m = NULL;
654 int global_worst = 0;
655 char *msg = NULL;
656 char *nmsg = NULL;
657
658 /*
659 * This CPU is the Monarch and the other CPUs have run
660 * through their handlers.
661 * Grade the severity of the errors of all the CPUs.
662 */
663 for_each_possible_cpu(cpu) {
664 int severity = mce_severity(&per_cpu(mces_seen, cpu), tolerant,
665 &nmsg);
666 if (severity > global_worst) {
667 msg = nmsg;
668 global_worst = severity;
669 m = &per_cpu(mces_seen, cpu);
670 }
671 }
672
673 /*
674 * Cannot recover? Panic here then.
675 * This dumps all the mces in the log buffer and stops the
676 * other CPUs.
677 */
678 if (m && global_worst >= MCE_PANIC_SEVERITY && tolerant < 3)
Andi Kleenac960372009-05-27 21:56:58 +0200679 mce_panic("Fatal Machine check", m, msg);
Andi Kleen3c079792009-05-27 21:56:55 +0200680
681 /*
682 * For UC somewhere we let the CPU who detects it handle it.
683 * Also must let continue the others, otherwise the handling
684 * CPU could deadlock on a lock.
685 */
686
687 /*
688 * No machine check event found. Must be some external
689 * source or one CPU is hung. Panic.
690 */
Hidetoshi Seto680b6cf2009-08-26 16:20:36 +0900691 if (global_worst <= MCE_KEEP_SEVERITY && tolerant < 3)
Andi Kleen3c079792009-05-27 21:56:55 +0200692 mce_panic("Machine check from unknown source", NULL, NULL);
693
694 /*
695 * Now clear all the mces_seen so that they don't reappear on
696 * the next mce.
697 */
698 for_each_possible_cpu(cpu)
699 memset(&per_cpu(mces_seen, cpu), 0, sizeof(struct mce));
700}
701
702static atomic_t global_nwo;
703
704/*
705 * Start of Monarch synchronization. This waits until all CPUs have
706 * entered the exception handler and then determines if any of them
707 * saw a fatal event that requires panic. Then it executes them
708 * in the entry order.
709 * TBD double check parallel CPU hotunplug
710 */
Hidetoshi Seto7fb06fc2009-06-15 18:18:43 +0900711static int mce_start(int *no_way_out)
Andi Kleen3c079792009-05-27 21:56:55 +0200712{
Hidetoshi Seto7fb06fc2009-06-15 18:18:43 +0900713 int order;
Andi Kleen3c079792009-05-27 21:56:55 +0200714 int cpus = num_online_cpus();
715 u64 timeout = (u64)monarch_timeout * NSEC_PER_USEC;
716
Hidetoshi Seto7fb06fc2009-06-15 18:18:43 +0900717 if (!timeout)
718 return -1;
Andi Kleen3c079792009-05-27 21:56:55 +0200719
Hidetoshi Seto7fb06fc2009-06-15 18:18:43 +0900720 atomic_add(*no_way_out, &global_nwo);
Huang Ying184e1fd2009-06-15 15:37:07 +0800721 /*
722 * global_nwo should be updated before mce_callin
723 */
724 smp_wmb();
Borislav Petkova95436e2009-06-20 23:28:22 -0700725 order = atomic_inc_return(&mce_callin);
Andi Kleen3c079792009-05-27 21:56:55 +0200726
727 /*
728 * Wait for everyone.
729 */
730 while (atomic_read(&mce_callin) != cpus) {
731 if (mce_timed_out(&timeout)) {
732 atomic_set(&global_nwo, 0);
Hidetoshi Seto7fb06fc2009-06-15 18:18:43 +0900733 return -1;
Andi Kleen3c079792009-05-27 21:56:55 +0200734 }
735 ndelay(SPINUNIT);
736 }
737
738 /*
Huang Ying184e1fd2009-06-15 15:37:07 +0800739 * mce_callin should be read before global_nwo
740 */
741 smp_rmb();
Hidetoshi Seto7fb06fc2009-06-15 18:18:43 +0900742
743 if (order == 1) {
744 /*
745 * Monarch: Starts executing now, the others wait.
746 */
747 atomic_set(&mce_executing, 1);
748 } else {
749 /*
750 * Subject: Now start the scanning loop one by one in
751 * the original callin order.
752 * This way when there are any shared banks it will be
753 * only seen by one CPU before cleared, avoiding duplicates.
754 */
755 while (atomic_read(&mce_executing) < order) {
756 if (mce_timed_out(&timeout)) {
757 atomic_set(&global_nwo, 0);
758 return -1;
759 }
760 ndelay(SPINUNIT);
761 }
762 }
763
Huang Ying184e1fd2009-06-15 15:37:07 +0800764 /*
Andi Kleen3c079792009-05-27 21:56:55 +0200765 * Cache the global no_way_out state.
766 */
Hidetoshi Seto7fb06fc2009-06-15 18:18:43 +0900767 *no_way_out = atomic_read(&global_nwo);
Andi Kleen3c079792009-05-27 21:56:55 +0200768
Hidetoshi Seto7fb06fc2009-06-15 18:18:43 +0900769 return order;
Andi Kleen3c079792009-05-27 21:56:55 +0200770}
771
772/*
773 * Synchronize between CPUs after main scanning loop.
774 * This invokes the bulk of the Monarch processing.
775 */
776static int mce_end(int order)
777{
778 int ret = -1;
779 u64 timeout = (u64)monarch_timeout * NSEC_PER_USEC;
780
781 if (!timeout)
782 goto reset;
783 if (order < 0)
784 goto reset;
785
786 /*
787 * Allow others to run.
788 */
789 atomic_inc(&mce_executing);
790
791 if (order == 1) {
792 /* CHECKME: Can this race with a parallel hotplug? */
793 int cpus = num_online_cpus();
794
795 /*
796 * Monarch: Wait for everyone to go through their scanning
797 * loops.
798 */
799 while (atomic_read(&mce_executing) <= cpus) {
800 if (mce_timed_out(&timeout))
801 goto reset;
802 ndelay(SPINUNIT);
803 }
804
805 mce_reign();
806 barrier();
807 ret = 0;
808 } else {
809 /*
810 * Subject: Wait for Monarch to finish.
811 */
812 while (atomic_read(&mce_executing) != 0) {
813 if (mce_timed_out(&timeout))
814 goto reset;
815 ndelay(SPINUNIT);
816 }
817
818 /*
819 * Don't reset anything. That's done by the Monarch.
820 */
821 return 0;
822 }
823
824 /*
825 * Reset all global state.
826 */
827reset:
828 atomic_set(&global_nwo, 0);
829 atomic_set(&mce_callin, 0);
830 barrier();
831
832 /*
833 * Let others run again.
834 */
835 atomic_set(&mce_executing, 0);
836 return ret;
837}
838
Andi Kleen9b1beaf2009-05-27 21:56:59 +0200839/*
840 * Check if the address reported by the CPU is in a format we can parse.
841 * It would be possible to add code for most other cases, but all would
842 * be somewhat complicated (e.g. segment offset would require an instruction
843 * parser). So only support physical addresses upto page granuality for now.
844 */
845static int mce_usable_address(struct mce *m)
846{
847 if (!(m->status & MCI_STATUS_MISCV) || !(m->status & MCI_STATUS_ADDRV))
848 return 0;
849 if ((m->misc & 0x3f) > PAGE_SHIFT)
850 return 0;
851 if (((m->misc >> 6) & 7) != MCM_ADDR_PHYS)
852 return 0;
853 return 1;
854}
855
Andi Kleen3c079792009-05-27 21:56:55 +0200856static void mce_clear_state(unsigned long *toclear)
857{
858 int i;
859
860 for (i = 0; i < banks; i++) {
861 if (test_bit(i, toclear))
Andi Kleena2d32bc2009-07-09 00:31:44 +0200862 mce_wrmsrl(MSR_IA32_MCx_STATUS(i), 0);
Andi Kleen3c079792009-05-27 21:56:55 +0200863 }
864}
865
866/*
Andi Kleenb79109c2009-02-12 13:43:23 +0100867 * The actual machine check handler. This only handles real
868 * exceptions when something got corrupted coming in through int 18.
869 *
870 * This is executed in NMI context not subject to normal locking rules. This
871 * implies that most kernel services cannot be safely used. Don't even
872 * think about putting a printk in there!
Andi Kleen3c079792009-05-27 21:56:55 +0200873 *
874 * On Intel systems this is entered on all CPUs in parallel through
875 * MCE broadcast. However some CPUs might be broken beyond repair,
876 * so be always careful when synchronizing with others.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 */
Ingo Molnare9eee032009-04-08 12:31:17 +0200878void do_machine_check(struct pt_regs *regs, long error_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879{
Andi Kleen3c079792009-05-27 21:56:55 +0200880 struct mce m, *final;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 int i;
Andi Kleen3c079792009-05-27 21:56:55 +0200882 int worst = 0;
883 int severity;
884 /*
885 * Establish sequential order between the CPUs entering the machine
886 * check handler.
887 */
Hidetoshi Seto7fb06fc2009-06-15 18:18:43 +0900888 int order;
Tim Hockinbd784322007-07-21 17:10:37 +0200889 /*
890 * If no_way_out gets set, there is no safe way to recover from this
891 * MCE. If tolerant is cranked up, we'll try anyway.
892 */
893 int no_way_out = 0;
894 /*
895 * If kill_it gets set, there might be a way to recover from this
896 * error.
897 */
898 int kill_it = 0;
Andi Kleenb79109c2009-02-12 13:43:23 +0100899 DECLARE_BITMAP(toclear, MAX_NR_BANKS);
Andi Kleenbd19a5e2009-05-27 21:56:55 +0200900 char *msg = "Unknown";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901
Andi Kleen553f2652006-04-07 19:49:57 +0200902 atomic_inc(&mce_entry);
903
Andi Kleen01ca79f2009-05-27 21:56:52 +0200904 __get_cpu_var(mce_exception_count)++;
905
Andi Kleenb79109c2009-02-12 13:43:23 +0100906 if (notify_die(DIE_NMI, "machine check", regs, error_code,
Jan Beulich22f59912008-01-30 13:31:23 +0100907 18, SIGKILL) == NOTIFY_STOP)
Andi Kleen32561692009-05-27 21:56:53 +0200908 goto out;
Andi Kleenb79109c2009-02-12 13:43:23 +0100909 if (!banks)
Andi Kleen32561692009-05-27 21:56:53 +0200910 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
Andi Kleenb5f2fa42009-02-12 13:43:22 +0100912 mce_setup(&m);
913
Andi Kleen5f8c1a52009-04-29 19:29:12 +0200914 m.mcgstatus = mce_rdmsrl(MSR_IA32_MCG_STATUS);
Andi Kleen3c079792009-05-27 21:56:55 +0200915 final = &__get_cpu_var(mces_seen);
916 *final = m;
917
Hidetoshi Seto680b6cf2009-08-26 16:20:36 +0900918 no_way_out = mce_no_way_out(&m, &msg);
919
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 barrier();
921
Andi Kleen3c079792009-05-27 21:56:55 +0200922 /*
Andi Kleened7290d2009-05-27 21:56:57 +0200923 * When no restart IP must always kill or panic.
924 */
925 if (!(m.mcgstatus & MCG_STATUS_RIPV))
926 kill_it = 1;
927
928 /*
Andi Kleen3c079792009-05-27 21:56:55 +0200929 * Go through all the banks in exclusion of the other CPUs.
930 * This way we don't report duplicated events on shared banks
931 * because the first one to see it will clear it.
932 */
Hidetoshi Seto7fb06fc2009-06-15 18:18:43 +0900933 order = mce_start(&no_way_out);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 for (i = 0; i < banks; i++) {
Andi Kleenb79109c2009-02-12 13:43:23 +0100935 __clear_bit(i, toclear);
Andi Kleencebe1822009-07-09 00:31:43 +0200936 if (!mce_banks[i].ctl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 continue;
Thomas Gleixnerd88203d2007-10-23 22:37:23 +0200938
939 m.misc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 m.addr = 0;
941 m.bank = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942
Andi Kleena2d32bc2009-07-09 00:31:44 +0200943 m.status = mce_rdmsrl(MSR_IA32_MCx_STATUS(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 if ((m.status & MCI_STATUS_VAL) == 0)
945 continue;
946
Andi Kleenb79109c2009-02-12 13:43:23 +0100947 /*
Andi Kleened7290d2009-05-27 21:56:57 +0200948 * Non uncorrected or non signaled errors are handled by
949 * machine_check_poll. Leave them alone, unless this panics.
Andi Kleenb79109c2009-02-12 13:43:23 +0100950 */
Andi Kleened7290d2009-05-27 21:56:57 +0200951 if (!(m.status & (mce_ser ? MCI_STATUS_S : MCI_STATUS_UC)) &&
952 !no_way_out)
Andi Kleenb79109c2009-02-12 13:43:23 +0100953 continue;
954
955 /*
956 * Set taint even when machine check was not enabled.
957 */
958 add_taint(TAINT_MACHINE_CHECK);
959
Andi Kleened7290d2009-05-27 21:56:57 +0200960 severity = mce_severity(&m, tolerant, NULL);
Andi Kleenb79109c2009-02-12 13:43:23 +0100961
Andi Kleened7290d2009-05-27 21:56:57 +0200962 /*
963 * When machine check was for corrected handler don't touch,
964 * unless we're panicing.
965 */
966 if (severity == MCE_KEEP_SEVERITY && !no_way_out)
967 continue;
968 __set_bit(i, toclear);
969 if (severity == MCE_NO_SEVERITY) {
Andi Kleenb79109c2009-02-12 13:43:23 +0100970 /*
971 * Machine check event was not enabled. Clear, but
972 * ignore.
973 */
974 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 }
976
Andi Kleened7290d2009-05-27 21:56:57 +0200977 /*
978 * Kill on action required.
979 */
980 if (severity == MCE_AR_SEVERITY)
981 kill_it = 1;
982
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 if (m.status & MCI_STATUS_MISCV)
Andi Kleena2d32bc2009-07-09 00:31:44 +0200984 m.misc = mce_rdmsrl(MSR_IA32_MCx_MISC(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 if (m.status & MCI_STATUS_ADDRV)
Andi Kleena2d32bc2009-07-09 00:31:44 +0200986 m.addr = mce_rdmsrl(MSR_IA32_MCx_ADDR(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
Andi Kleen9b1beaf2009-05-27 21:56:59 +0200988 /*
989 * Action optional error. Queue address for later processing.
990 * When the ring overflows we just ignore the AO error.
991 * RED-PEN add some logging mechanism when
992 * usable_address or mce_add_ring fails.
993 * RED-PEN don't ignore overflow for tolerant == 0
994 */
995 if (severity == MCE_AO_SEVERITY && mce_usable_address(&m))
996 mce_ring_add(m.addr >> PAGE_SHIFT);
997
Andi Kleen94ad8472005-04-16 15:25:09 -0700998 mce_get_rip(&m, regs);
Andi Kleenb79109c2009-02-12 13:43:23 +0100999 mce_log(&m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
Andi Kleen3c079792009-05-27 21:56:55 +02001001 if (severity > worst) {
1002 *final = m;
1003 worst = severity;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 }
1006
Andi Kleen3c079792009-05-27 21:56:55 +02001007 if (!no_way_out)
1008 mce_clear_state(toclear);
1009
Ingo Molnare9eee032009-04-08 12:31:17 +02001010 /*
Andi Kleen3c079792009-05-27 21:56:55 +02001011 * Do most of the synchronization with other CPUs.
1012 * When there's any problem use only local no_way_out state.
Ingo Molnare9eee032009-04-08 12:31:17 +02001013 */
Andi Kleen3c079792009-05-27 21:56:55 +02001014 if (mce_end(order) < 0)
1015 no_way_out = worst >= MCE_PANIC_SEVERITY;
Tim Hockinbd784322007-07-21 17:10:37 +02001016
1017 /*
1018 * If we have decided that we just CAN'T continue, and the user
Ingo Molnare9eee032009-04-08 12:31:17 +02001019 * has not set tolerant to an insane level, give up and die.
Andi Kleen3c079792009-05-27 21:56:55 +02001020 *
1021 * This is mainly used in the case when the system doesn't
1022 * support MCE broadcasting or it has been disabled.
Tim Hockinbd784322007-07-21 17:10:37 +02001023 */
1024 if (no_way_out && tolerant < 3)
Andi Kleenac960372009-05-27 21:56:58 +02001025 mce_panic("Fatal machine check on current CPU", final, msg);
Tim Hockinbd784322007-07-21 17:10:37 +02001026
1027 /*
1028 * If the error seems to be unrecoverable, something should be
1029 * done. Try to kill as little as possible. If we can kill just
1030 * one task, do that. If the user has set the tolerance very
1031 * high, don't try to do anything at all.
1032 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033
Andi Kleened7290d2009-05-27 21:56:57 +02001034 if (kill_it && tolerant < 3)
1035 force_sig(SIGBUS, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036
Tim Hockine02e68d2007-07-21 17:10:36 +02001037 /* notify userspace ASAP */
1038 set_thread_flag(TIF_MCE_NOTIFY);
1039
Andi Kleen3c079792009-05-27 21:56:55 +02001040 if (worst > 0)
1041 mce_report_event(regs);
Andi Kleen5f8c1a52009-04-29 19:29:12 +02001042 mce_wrmsrl(MSR_IA32_MCG_STATUS, 0);
Andi Kleen32561692009-05-27 21:56:53 +02001043out:
Andi Kleen553f2652006-04-07 19:49:57 +02001044 atomic_dec(&mce_entry);
Andi Kleen88921be2009-05-27 21:56:51 +02001045 sync_core();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046}
Andi Kleenea149b32009-04-29 19:31:00 +02001047EXPORT_SYMBOL_GPL(do_machine_check);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048
Andi Kleen9b1beaf2009-05-27 21:56:59 +02001049/* dummy to break dependency. actual code is in mm/memory-failure.c */
1050void __attribute__((weak)) memory_failure(unsigned long pfn, int vector)
1051{
1052 printk(KERN_ERR "Action optional memory failure at %lx ignored\n", pfn);
1053}
1054
1055/*
1056 * Called after mce notification in process context. This code
1057 * is allowed to sleep. Call the high level VM handler to process
1058 * any corrupted pages.
1059 * Assume that the work queue code only calls this one at a time
1060 * per CPU.
1061 * Note we don't disable preemption, so this code might run on the wrong
1062 * CPU. In this case the event is picked up by the scheduled work queue.
1063 * This is merely a fast path to expedite processing in some common
1064 * cases.
1065 */
1066void mce_notify_process(void)
1067{
1068 unsigned long pfn;
1069 mce_notify_irq();
1070 while (mce_ring_get(&pfn))
1071 memory_failure(pfn, MCE_VECTOR);
1072}
1073
1074static void mce_process_work(struct work_struct *dummy)
1075{
1076 mce_notify_process();
1077}
1078
Dmitriy Zavin15d5f832006-09-26 10:52:42 +02001079#ifdef CONFIG_X86_MCE_INTEL
1080/***
1081 * mce_log_therm_throt_event - Logs the thermal throttling event to mcelog
Simon Arlott676b1852007-10-20 01:25:36 +02001082 * @cpu: The CPU on which the event occurred.
Dmitriy Zavin15d5f832006-09-26 10:52:42 +02001083 * @status: Event status information
1084 *
1085 * This function should be called by the thermal interrupt after the
1086 * event has been processed and the decision was made to log the event
1087 * further.
1088 *
1089 * The status parameter will be saved to the 'status' field of 'struct mce'
1090 * and historically has been the register value of the
1091 * MSR_IA32_THERMAL_STATUS (Intel) msr.
1092 */
Andi Kleenb5f2fa42009-02-12 13:43:22 +01001093void mce_log_therm_throt_event(__u64 status)
Dmitriy Zavin15d5f832006-09-26 10:52:42 +02001094{
1095 struct mce m;
1096
Andi Kleenb5f2fa42009-02-12 13:43:22 +01001097 mce_setup(&m);
Dmitriy Zavin15d5f832006-09-26 10:52:42 +02001098 m.bank = MCE_THERMAL_BANK;
1099 m.status = status;
Dmitriy Zavin15d5f832006-09-26 10:52:42 +02001100 mce_log(&m);
1101}
1102#endif /* CONFIG_X86_MCE_INTEL */
1103
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104/*
Tim Hockin8a336b02007-05-02 19:27:19 +02001105 * Periodic polling timer for "silent" machine check errors. If the
1106 * poller finds an MCE, poll 2x faster. When the poller finds no more
1107 * errors, poll 2x slower (up to check_interval seconds).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109static int check_interval = 5 * 60; /* 5 minutes */
Ingo Molnare9eee032009-04-08 12:31:17 +02001110
Tejun Heo245b2e72009-06-24 15:13:48 +09001111static DEFINE_PER_CPU(int, mce_next_interval); /* in jiffies */
Andi Kleen52d168e2009-02-12 13:39:29 +01001112static DEFINE_PER_CPU(struct timer_list, mce_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113
Andi Kleen52d168e2009-02-12 13:39:29 +01001114static void mcheck_timer(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115{
Andi Kleen52d168e2009-02-12 13:39:29 +01001116 struct timer_list *t = &per_cpu(mce_timer, data);
Andi Kleen6298c512009-04-09 12:28:22 +02001117 int *n;
Andi Kleen52d168e2009-02-12 13:39:29 +01001118
1119 WARN_ON(smp_processor_id() != data);
1120
Ingo Molnare9eee032009-04-08 12:31:17 +02001121 if (mce_available(&current_cpu_data)) {
Andi Kleenee031c32009-02-12 13:49:34 +01001122 machine_check_poll(MCP_TIMESTAMP,
1123 &__get_cpu_var(mce_poll_banks));
Ingo Molnare9eee032009-04-08 12:31:17 +02001124 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125
1126 /*
Tim Hockine02e68d2007-07-21 17:10:36 +02001127 * Alert userspace if needed. If we logged an MCE, reduce the
1128 * polling interval, otherwise increase the polling interval.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 */
Tejun Heo245b2e72009-06-24 15:13:48 +09001130 n = &__get_cpu_var(mce_next_interval);
Andi Kleen9ff36ee2009-05-27 21:56:58 +02001131 if (mce_notify_irq())
Andi Kleen6298c512009-04-09 12:28:22 +02001132 *n = max(*n/2, HZ/100);
Hidetoshi Seto14a02532009-04-30 16:04:51 +09001133 else
Andi Kleen6298c512009-04-09 12:28:22 +02001134 *n = min(*n*2, (int)round_jiffies_relative(check_interval*HZ));
Tim Hockin8a336b02007-05-02 19:27:19 +02001135
Andi Kleen6298c512009-04-09 12:28:22 +02001136 t->expires = jiffies + *n;
Hidetoshi Seto5be60662009-06-24 09:21:10 +09001137 add_timer_on(t, smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138}
1139
Andi Kleen9bd98402009-02-12 13:39:28 +01001140static void mce_do_trigger(struct work_struct *work)
1141{
Hidetoshi Seto1020bcb2009-06-15 17:20:57 +09001142 call_usermodehelper(mce_helper, mce_helper_argv, NULL, UMH_NO_WAIT);
Andi Kleen9bd98402009-02-12 13:39:28 +01001143}
1144
1145static DECLARE_WORK(mce_trigger_work, mce_do_trigger);
1146
Tim Hockine02e68d2007-07-21 17:10:36 +02001147/*
Andi Kleen9bd98402009-02-12 13:39:28 +01001148 * Notify the user(s) about new machine check events.
1149 * Can be called from interrupt context, but not from machine check/NMI
1150 * context.
Tim Hockine02e68d2007-07-21 17:10:36 +02001151 */
Andi Kleen9ff36ee2009-05-27 21:56:58 +02001152int mce_notify_irq(void)
Tim Hockine02e68d2007-07-21 17:10:36 +02001153{
Andi Kleen8457c842009-02-12 13:49:33 +01001154 /* Not more than two messages every minute */
1155 static DEFINE_RATELIMIT_STATE(ratelimit, 60*HZ, 2);
1156
Tim Hockine02e68d2007-07-21 17:10:36 +02001157 clear_thread_flag(TIF_MCE_NOTIFY);
Ingo Molnare9eee032009-04-08 12:31:17 +02001158
Hidetoshi Seto1020bcb2009-06-15 17:20:57 +09001159 if (test_and_clear_bit(0, &mce_need_notify)) {
Tim Hockine02e68d2007-07-21 17:10:36 +02001160 wake_up_interruptible(&mce_wait);
Andi Kleen9bd98402009-02-12 13:39:28 +01001161
1162 /*
1163 * There is no risk of missing notifications because
1164 * work_pending is always cleared before the function is
1165 * executed.
1166 */
Hidetoshi Seto1020bcb2009-06-15 17:20:57 +09001167 if (mce_helper[0] && !work_pending(&mce_trigger_work))
Andi Kleen9bd98402009-02-12 13:39:28 +01001168 schedule_work(&mce_trigger_work);
Tim Hockine02e68d2007-07-21 17:10:36 +02001169
Andi Kleen8457c842009-02-12 13:49:33 +01001170 if (__ratelimit(&ratelimit))
Tim Hockine02e68d2007-07-21 17:10:36 +02001171 printk(KERN_INFO "Machine check events logged\n");
Tim Hockine02e68d2007-07-21 17:10:36 +02001172
1173 return 1;
1174 }
1175 return 0;
1176}
Andi Kleen9ff36ee2009-05-27 21:56:58 +02001177EXPORT_SYMBOL_GPL(mce_notify_irq);
Tim Hockine02e68d2007-07-21 17:10:36 +02001178
Andi Kleencebe1822009-07-09 00:31:43 +02001179static int mce_banks_init(void)
1180{
1181 int i;
1182
1183 mce_banks = kzalloc(banks * sizeof(struct mce_bank), GFP_KERNEL);
1184 if (!mce_banks)
1185 return -ENOMEM;
1186 for (i = 0; i < banks; i++) {
1187 struct mce_bank *b = &mce_banks[i];
Ingo Molnar11868a22009-09-23 17:49:55 +02001188
Andi Kleencebe1822009-07-09 00:31:43 +02001189 b->ctl = -1ULL;
1190 b->init = 1;
1191 }
1192 return 0;
1193}
1194
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001195/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 * Initialize Machine Checks for a CPU.
1197 */
Bartlomiej Zolnierkiewicz419d6162009-07-28 23:56:00 +02001198static int __cpuinit mce_cap_init(void)
Andi Kleen0d7482e32009-02-17 23:07:13 +01001199{
Andi Kleen0d7482e32009-02-17 23:07:13 +01001200 unsigned b;
Ingo Molnare9eee032009-04-08 12:31:17 +02001201 u64 cap;
Andi Kleen0d7482e32009-02-17 23:07:13 +01001202
1203 rdmsrl(MSR_IA32_MCG_CAP, cap);
Thomas Gleixner01c66802009-04-08 12:31:24 +02001204
1205 b = cap & MCG_BANKCNT_MASK;
Ingo Molnarb6592942009-04-08 12:31:27 +02001206 printk(KERN_INFO "mce: CPU supports %d MCE banks\n", b);
1207
Andi Kleen0d7482e32009-02-17 23:07:13 +01001208 if (b > MAX_NR_BANKS) {
1209 printk(KERN_WARNING
1210 "MCE: Using only %u machine check banks out of %u\n",
1211 MAX_NR_BANKS, b);
1212 b = MAX_NR_BANKS;
1213 }
1214
1215 /* Don't support asymmetric configurations today */
1216 WARN_ON(banks != 0 && b != banks);
1217 banks = b;
Andi Kleencebe1822009-07-09 00:31:43 +02001218 if (!mce_banks) {
1219 int err = mce_banks_init();
Ingo Molnar11868a22009-09-23 17:49:55 +02001220
Andi Kleencebe1822009-07-09 00:31:43 +02001221 if (err)
1222 return err;
Andi Kleen0d7482e32009-02-17 23:07:13 +01001223 }
1224
1225 /* Use accurate RIP reporting if available. */
Thomas Gleixner01c66802009-04-08 12:31:24 +02001226 if ((cap & MCG_EXT_P) && MCG_EXT_CNT(cap) >= 9)
Andi Kleen0d7482e32009-02-17 23:07:13 +01001227 rip_msr = MSR_IA32_MCG_EIP;
1228
Andi Kleened7290d2009-05-27 21:56:57 +02001229 if (cap & MCG_SER_P)
1230 mce_ser = 1;
1231
Andi Kleen0d7482e32009-02-17 23:07:13 +01001232 return 0;
1233}
1234
Thomas Gleixner8be91102009-05-27 21:56:53 +02001235static void mce_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236{
Ingo Molnare9eee032009-04-08 12:31:17 +02001237 mce_banks_t all_banks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 u64 cap;
1239 int i;
1240
Andi Kleenb79109c2009-02-12 13:43:23 +01001241 /*
1242 * Log the machine checks left over from the previous reset.
1243 */
Andi Kleenee031c32009-02-12 13:49:34 +01001244 bitmap_fill(all_banks, MAX_NR_BANKS);
Andi Kleen5679af42009-04-07 17:06:55 +02001245 machine_check_poll(MCP_UC|(!mce_bootlog ? MCP_DONTLOG : 0), &all_banks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246
1247 set_in_cr4(X86_CR4_MCE);
1248
Andi Kleen0d7482e32009-02-17 23:07:13 +01001249 rdmsrl(MSR_IA32_MCG_CAP, cap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 if (cap & MCG_CTL_P)
1251 wrmsr(MSR_IA32_MCG_CTL, 0xffffffff, 0xffffffff);
1252
1253 for (i = 0; i < banks; i++) {
Andi Kleencebe1822009-07-09 00:31:43 +02001254 struct mce_bank *b = &mce_banks[i];
Ingo Molnar11868a22009-09-23 17:49:55 +02001255
Andi Kleencebe1822009-07-09 00:31:43 +02001256 if (!b->init)
Andi Kleen06b7a7a2009-04-27 18:37:43 +02001257 continue;
Andi Kleena2d32bc2009-07-09 00:31:44 +02001258 wrmsrl(MSR_IA32_MCx_CTL(i), b->ctl);
1259 wrmsrl(MSR_IA32_MCx_STATUS(i), 0);
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001260 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261}
1262
1263/* Add per CPU specific workarounds here */
Linus Torvaldsdf58bee2009-09-17 21:07:08 -07001264static int __cpuinit mce_cpu_quirks(struct cpuinfo_x86 *c)
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001265{
Ingo Molnare412cd22009-08-17 10:19:00 +02001266 if (c->x86_vendor == X86_VENDOR_UNKNOWN) {
1267 pr_info("MCE: unknown CPU type - not enabling MCE support.\n");
1268 return -EOPNOTSUPP;
1269 }
1270
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 /* This should be disabled by the BIOS, but isn't always */
Jan Beulich911f6a72008-04-22 16:22:21 +01001272 if (c->x86_vendor == X86_VENDOR_AMD) {
Ingo Molnare9eee032009-04-08 12:31:17 +02001273 if (c->x86 == 15 && banks > 4) {
1274 /*
1275 * disable GART TBL walk error reporting, which
1276 * trips off incorrectly with the IOMMU & 3ware
1277 * & Cerberus:
1278 */
Andi Kleencebe1822009-07-09 00:31:43 +02001279 clear_bit(10, (unsigned long *)&mce_banks[4].ctl);
Ingo Molnare9eee032009-04-08 12:31:17 +02001280 }
1281 if (c->x86 <= 17 && mce_bootlog < 0) {
1282 /*
1283 * Lots of broken BIOS around that don't clear them
1284 * by default and leave crap in there. Don't log:
1285 */
Jan Beulich911f6a72008-04-22 16:22:21 +01001286 mce_bootlog = 0;
Ingo Molnare9eee032009-04-08 12:31:17 +02001287 }
Andi Kleen2e6f6942009-04-27 18:42:48 +02001288 /*
1289 * Various K7s with broken bank 0 around. Always disable
1290 * by default.
1291 */
Andi Kleen203abd62009-06-15 14:52:01 +02001292 if (c->x86 == 6 && banks > 0)
Andi Kleencebe1822009-07-09 00:31:43 +02001293 mce_banks[0].ctl = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 }
Andi Kleene5835382005-11-05 17:25:54 +01001295
Andi Kleen06b7a7a2009-04-27 18:37:43 +02001296 if (c->x86_vendor == X86_VENDOR_INTEL) {
1297 /*
1298 * SDM documents that on family 6 bank 0 should not be written
1299 * because it aliases to another special BIOS controlled
1300 * register.
1301 * But it's not aliased anymore on model 0x1a+
1302 * Don't ignore bank 0 completely because there could be a
1303 * valid event later, merely don't write CTL0.
1304 */
1305
Andi Kleencebe1822009-07-09 00:31:43 +02001306 if (c->x86 == 6 && c->x86_model < 0x1A && banks > 0)
1307 mce_banks[0].init = 0;
Andi Kleen3c079792009-05-27 21:56:55 +02001308
1309 /*
1310 * All newer Intel systems support MCE broadcasting. Enable
1311 * synchronization with a one second timeout.
1312 */
1313 if ((c->x86 > 6 || (c->x86 == 6 && c->x86_model >= 0xe)) &&
1314 monarch_timeout < 0)
1315 monarch_timeout = USEC_PER_SEC;
Bartlomiej Zolnierkiewiczc7f6fa42009-07-28 23:52:54 +02001316
Ingo Molnare412cd22009-08-17 10:19:00 +02001317 /*
1318 * There are also broken BIOSes on some Pentium M and
1319 * earlier systems:
1320 */
1321 if (c->x86 == 6 && c->x86_model <= 13 && mce_bootlog < 0)
Bartlomiej Zolnierkiewiczc7f6fa42009-07-28 23:52:54 +02001322 mce_bootlog = 0;
Andi Kleen06b7a7a2009-04-27 18:37:43 +02001323 }
Andi Kleen3c079792009-05-27 21:56:55 +02001324 if (monarch_timeout < 0)
1325 monarch_timeout = 0;
Andi Kleen29b0f592009-05-27 21:56:56 +02001326 if (mce_bootlog != 0)
1327 mce_panic_timeout = 30;
Ingo Molnare412cd22009-08-17 10:19:00 +02001328
1329 return 0;
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001330}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
Andi Kleen4efc0672009-04-28 19:07:31 +02001332static void __cpuinit mce_ancient_init(struct cpuinfo_x86 *c)
1333{
1334 if (c->x86 != 5)
1335 return;
1336 switch (c->x86_vendor) {
1337 case X86_VENDOR_INTEL:
Hidetoshi Setoc6978362009-06-15 17:22:49 +09001338 intel_p5_mcheck_init(c);
Andi Kleen4efc0672009-04-28 19:07:31 +02001339 break;
1340 case X86_VENDOR_CENTAUR:
1341 winchip_mcheck_init(c);
1342 break;
1343 }
1344}
1345
H. Peter Anvincc3ca222009-02-20 23:35:51 -08001346static void mce_cpu_features(struct cpuinfo_x86 *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347{
1348 switch (c->x86_vendor) {
1349 case X86_VENDOR_INTEL:
1350 mce_intel_feature_init(c);
1351 break;
Jacob Shin89b831e2005-11-05 17:25:53 +01001352 case X86_VENDOR_AMD:
1353 mce_amd_feature_init(c);
1354 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 default:
1356 break;
1357 }
1358}
1359
Andi Kleen52d168e2009-02-12 13:39:29 +01001360static void mce_init_timer(void)
1361{
1362 struct timer_list *t = &__get_cpu_var(mce_timer);
Tejun Heo245b2e72009-06-24 15:13:48 +09001363 int *n = &__get_cpu_var(mce_next_interval);
Andi Kleen52d168e2009-02-12 13:39:29 +01001364
Hidetoshi Seto62fdac52009-06-11 16:06:07 +09001365 if (mce_ignore_ce)
1366 return;
1367
Andi Kleen6298c512009-04-09 12:28:22 +02001368 *n = check_interval * HZ;
1369 if (!*n)
Andi Kleen52d168e2009-02-12 13:39:29 +01001370 return;
1371 setup_timer(t, mcheck_timer, smp_processor_id());
Andi Kleen6298c512009-04-09 12:28:22 +02001372 t->expires = round_jiffies(jiffies + *n);
Hidetoshi Seto5be60662009-06-24 09:21:10 +09001373 add_timer_on(t, smp_processor_id());
Andi Kleen52d168e2009-02-12 13:39:29 +01001374}
1375
Andi Kleen9eda8cb2009-07-09 00:31:42 +02001376/* Handle unconfigured int18 (should never happen) */
1377static void unexpected_machine_check(struct pt_regs *regs, long error_code)
1378{
1379 printk(KERN_ERR "CPU#%d: Unexpected int18 (Machine Check).\n",
1380 smp_processor_id());
1381}
1382
1383/* Call the installed machine check handler for this CPU setup. */
1384void (*machine_check_vector)(struct pt_regs *, long error_code) =
1385 unexpected_machine_check;
1386
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001387/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 * Called for each booted CPU to set up machine checks.
Ingo Molnare9eee032009-04-08 12:31:17 +02001389 * Must be called with preempt off:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 */
Ashok Raje6982c62005-06-25 14:54:58 -07001391void __cpuinit mcheck_init(struct cpuinfo_x86 *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392{
Andi Kleen4efc0672009-04-28 19:07:31 +02001393 if (mce_disabled)
1394 return;
1395
1396 mce_ancient_init(c);
1397
Andi Kleen5b4408f2009-02-12 13:39:30 +01001398 if (!mce_available(c))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 return;
1400
Ingo Molnare412cd22009-08-17 10:19:00 +02001401 if (mce_cap_init() < 0 || mce_cpu_quirks(c) < 0) {
Andi Kleen04b2b1a2009-04-28 22:50:19 +02001402 mce_disabled = 1;
Andi Kleen0d7482e32009-02-17 23:07:13 +01001403 return;
1404 }
Andi Kleen0d7482e32009-02-17 23:07:13 +01001405
Andi Kleen5d727922009-04-27 19:25:48 +02001406 machine_check_vector = do_machine_check;
1407
Thomas Gleixner8be91102009-05-27 21:56:53 +02001408 mce_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 mce_cpu_features(c);
Andi Kleen52d168e2009-02-12 13:39:29 +01001410 mce_init_timer();
Andi Kleen9b1beaf2009-05-27 21:56:59 +02001411 INIT_WORK(&__get_cpu_var(mce_work), mce_process_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412}
1413
1414/*
1415 * Character device to read and clear the MCE log.
1416 */
1417
Tim Hockinf528e7b2007-07-21 17:10:35 +02001418static DEFINE_SPINLOCK(mce_state_lock);
Ingo Molnare9eee032009-04-08 12:31:17 +02001419static int open_count; /* #times opened */
1420static int open_exclu; /* already open exclusive? */
Tim Hockinf528e7b2007-07-21 17:10:35 +02001421
1422static int mce_open(struct inode *inode, struct file *file)
1423{
1424 spin_lock(&mce_state_lock);
1425
1426 if (open_exclu || (open_count && (file->f_flags & O_EXCL))) {
1427 spin_unlock(&mce_state_lock);
Ingo Molnare9eee032009-04-08 12:31:17 +02001428
Tim Hockinf528e7b2007-07-21 17:10:35 +02001429 return -EBUSY;
1430 }
1431
1432 if (file->f_flags & O_EXCL)
1433 open_exclu = 1;
1434 open_count++;
1435
1436 spin_unlock(&mce_state_lock);
1437
Tim Hockinbd784322007-07-21 17:10:37 +02001438 return nonseekable_open(inode, file);
Tim Hockinf528e7b2007-07-21 17:10:35 +02001439}
1440
1441static int mce_release(struct inode *inode, struct file *file)
1442{
1443 spin_lock(&mce_state_lock);
1444
1445 open_count--;
1446 open_exclu = 0;
1447
1448 spin_unlock(&mce_state_lock);
1449
1450 return 0;
1451}
1452
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001453static void collect_tscs(void *data)
1454{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 unsigned long *cpu_tsc = (unsigned long *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001457 rdtscll(cpu_tsc[smp_processor_id()]);
1458}
1459
Ingo Molnare9eee032009-04-08 12:31:17 +02001460static DEFINE_MUTEX(mce_read_mutex);
1461
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001462static ssize_t mce_read(struct file *filp, char __user *ubuf, size_t usize,
1463 loff_t *off)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 char __user *buf = ubuf;
Ingo Molnare9eee032009-04-08 12:31:17 +02001466 unsigned long *cpu_tsc;
1467 unsigned prev, next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 int i, err;
1469
Mike Travis6bca67f2008-07-18 18:11:27 -07001470 cpu_tsc = kmalloc(nr_cpu_ids * sizeof(long), GFP_KERNEL);
Andi Kleenf0de53b2005-04-16 15:25:10 -07001471 if (!cpu_tsc)
1472 return -ENOMEM;
1473
Daniel Walker8c8b8852008-01-30 13:31:17 +01001474 mutex_lock(&mce_read_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 next = rcu_dereference(mcelog.next);
1476
1477 /* Only supports full reads right now */
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001478 if (*off != 0 || usize < MCE_LOG_LEN*sizeof(struct mce)) {
Daniel Walker8c8b8852008-01-30 13:31:17 +01001479 mutex_unlock(&mce_read_mutex);
Andi Kleenf0de53b2005-04-16 15:25:10 -07001480 kfree(cpu_tsc);
Ingo Molnare9eee032009-04-08 12:31:17 +02001481
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 return -EINVAL;
1483 }
1484
1485 err = 0;
Huang Yingef41df4342009-02-12 13:39:34 +01001486 prev = 0;
1487 do {
1488 for (i = prev; i < next; i++) {
1489 unsigned long start = jiffies;
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001490
Huang Yingef41df4342009-02-12 13:39:34 +01001491 while (!mcelog.entry[i].finished) {
1492 if (time_after_eq(jiffies, start + 2)) {
1493 memset(mcelog.entry + i, 0,
1494 sizeof(struct mce));
1495 goto timeout;
1496 }
1497 cpu_relax();
Andi Kleen673242c2005-09-12 18:49:24 +02001498 }
Huang Yingef41df4342009-02-12 13:39:34 +01001499 smp_rmb();
1500 err |= copy_to_user(buf, mcelog.entry + i,
1501 sizeof(struct mce));
1502 buf += sizeof(struct mce);
1503timeout:
1504 ;
Andi Kleen673242c2005-09-12 18:49:24 +02001505 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506
Huang Yingef41df4342009-02-12 13:39:34 +01001507 memset(mcelog.entry + prev, 0,
1508 (next - prev) * sizeof(struct mce));
1509 prev = next;
1510 next = cmpxchg(&mcelog.next, prev, 0);
1511 } while (next != prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512
Paul E. McKenneyb2b18662005-06-25 14:55:38 -07001513 synchronize_sched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001515 /*
1516 * Collect entries that were still getting written before the
1517 * synchronize.
1518 */
Jens Axboe15c8b6c2008-05-09 09:39:44 +02001519 on_each_cpu(collect_tscs, cpu_tsc, 1);
Ingo Molnare9eee032009-04-08 12:31:17 +02001520
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001521 for (i = next; i < MCE_LOG_LEN; i++) {
1522 if (mcelog.entry[i].finished &&
1523 mcelog.entry[i].tsc < cpu_tsc[mcelog.entry[i].cpu]) {
1524 err |= copy_to_user(buf, mcelog.entry+i,
1525 sizeof(struct mce));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 smp_rmb();
1527 buf += sizeof(struct mce);
1528 memset(&mcelog.entry[i], 0, sizeof(struct mce));
1529 }
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001530 }
Daniel Walker8c8b8852008-01-30 13:31:17 +01001531 mutex_unlock(&mce_read_mutex);
Andi Kleenf0de53b2005-04-16 15:25:10 -07001532 kfree(cpu_tsc);
Ingo Molnare9eee032009-04-08 12:31:17 +02001533
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001534 return err ? -EFAULT : buf - ubuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535}
1536
Tim Hockine02e68d2007-07-21 17:10:36 +02001537static unsigned int mce_poll(struct file *file, poll_table *wait)
1538{
1539 poll_wait(file, &mce_wait, wait);
1540 if (rcu_dereference(mcelog.next))
1541 return POLLIN | POLLRDNORM;
1542 return 0;
1543}
1544
Nikanth Karthikesanc68461b2008-01-30 13:32:59 +01001545static long mce_ioctl(struct file *f, unsigned int cmd, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546{
1547 int __user *p = (int __user *)arg;
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001548
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 if (!capable(CAP_SYS_ADMIN))
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001550 return -EPERM;
Ingo Molnare9eee032009-04-08 12:31:17 +02001551
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 switch (cmd) {
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001553 case MCE_GET_RECORD_LEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 return put_user(sizeof(struct mce), p);
1555 case MCE_GET_LOG_LEN:
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001556 return put_user(MCE_LOG_LEN, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 case MCE_GETCLEAR_FLAGS: {
1558 unsigned flags;
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001559
1560 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 flags = mcelog.flags;
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001562 } while (cmpxchg(&mcelog.flags, flags, 0) != flags);
Ingo Molnare9eee032009-04-08 12:31:17 +02001563
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001564 return put_user(flags, p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 }
1566 default:
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001567 return -ENOTTY;
1568 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569}
1570
H. Peter Anvina1ff41b2009-05-25 22:16:14 -07001571/* Modified in mce-inject.c, so not static or const */
Andi Kleenea149b32009-04-29 19:31:00 +02001572struct file_operations mce_chrdev_ops = {
Ingo Molnare9eee032009-04-08 12:31:17 +02001573 .open = mce_open,
1574 .release = mce_release,
1575 .read = mce_read,
1576 .poll = mce_poll,
1577 .unlocked_ioctl = mce_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578};
Andi Kleenea149b32009-04-29 19:31:00 +02001579EXPORT_SYMBOL_GPL(mce_chrdev_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580
1581static struct miscdevice mce_log_device = {
1582 MISC_MCELOG_MINOR,
1583 "mcelog",
1584 &mce_chrdev_ops,
1585};
1586
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001587/*
Hidetoshi Seto62fdac52009-06-11 16:06:07 +09001588 * mce=off Disables machine check
1589 * mce=no_cmci Disables CMCI
1590 * mce=dont_log_ce Clears corrected events silently, no log created for CEs.
1591 * mce=ignore_ce Disables polling and CMCI, corrected events are not cleared.
Andi Kleen3c079792009-05-27 21:56:55 +02001592 * mce=TOLERANCELEVEL[,monarchtimeout] (number, see above)
1593 * monarchtimeout is how long to wait for other CPUs on machine
1594 * check, or 0 to not wait
Hidetoshi Seto13503fa2009-03-26 17:39:20 +09001595 * mce=bootlog Log MCEs from before booting. Disabled by default on AMD.
1596 * mce=nobootlog Don't log MCEs from before booting.
1597 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598static int __init mcheck_enable(char *str)
1599{
Bartlomiej Zolnierkiewicze3346fc2009-07-28 23:55:09 +02001600 if (*str == 0) {
Andi Kleen4efc0672009-04-28 19:07:31 +02001601 enable_p5_mce();
Bartlomiej Zolnierkiewicze3346fc2009-07-28 23:55:09 +02001602 return 1;
1603 }
Andi Kleen4efc0672009-04-28 19:07:31 +02001604 if (*str == '=')
1605 str++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 if (!strcmp(str, "off"))
Andi Kleen04b2b1a2009-04-28 22:50:19 +02001607 mce_disabled = 1;
Hidetoshi Seto62fdac52009-06-11 16:06:07 +09001608 else if (!strcmp(str, "no_cmci"))
1609 mce_cmci_disabled = 1;
1610 else if (!strcmp(str, "dont_log_ce"))
1611 mce_dont_log_ce = 1;
1612 else if (!strcmp(str, "ignore_ce"))
1613 mce_ignore_ce = 1;
Hidetoshi Seto13503fa2009-03-26 17:39:20 +09001614 else if (!strcmp(str, "bootlog") || !strcmp(str, "nobootlog"))
1615 mce_bootlog = (str[0] == 'b');
Andi Kleen3c079792009-05-27 21:56:55 +02001616 else if (isdigit(str[0])) {
Andi Kleen8c566ef2005-09-12 18:49:24 +02001617 get_option(&str, &tolerant);
Andi Kleen3c079792009-05-27 21:56:55 +02001618 if (*str == ',') {
1619 ++str;
1620 get_option(&str, &monarch_timeout);
1621 }
1622 } else {
Andi Kleen4efc0672009-04-28 19:07:31 +02001623 printk(KERN_INFO "mce argument %s ignored. Please use /sys\n",
Hidetoshi Seto13503fa2009-03-26 17:39:20 +09001624 str);
1625 return 0;
1626 }
OGAWA Hirofumi9b410462006-03-31 02:30:33 -08001627 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628}
Andi Kleen4efc0672009-04-28 19:07:31 +02001629__setup("mce", mcheck_enable);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001631/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 * Sysfs support
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001633 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634
Andi Kleen973a2dd2009-02-12 13:39:32 +01001635/*
1636 * Disable machine checks on suspend and shutdown. We can't really handle
1637 * them later.
1638 */
1639static int mce_disable(void)
1640{
1641 int i;
1642
Andi Kleen06b7a7a2009-04-27 18:37:43 +02001643 for (i = 0; i < banks; i++) {
Andi Kleencebe1822009-07-09 00:31:43 +02001644 struct mce_bank *b = &mce_banks[i];
Ingo Molnar11868a22009-09-23 17:49:55 +02001645
Andi Kleencebe1822009-07-09 00:31:43 +02001646 if (b->init)
Andi Kleena2d32bc2009-07-09 00:31:44 +02001647 wrmsrl(MSR_IA32_MCx_CTL(i), 0);
Andi Kleen06b7a7a2009-04-27 18:37:43 +02001648 }
Andi Kleen973a2dd2009-02-12 13:39:32 +01001649 return 0;
1650}
1651
1652static int mce_suspend(struct sys_device *dev, pm_message_t state)
1653{
1654 return mce_disable();
1655}
1656
1657static int mce_shutdown(struct sys_device *dev)
1658{
1659 return mce_disable();
1660}
1661
Ingo Molnare9eee032009-04-08 12:31:17 +02001662/*
1663 * On resume clear all MCE state. Don't want to see leftovers from the BIOS.
1664 * Only one CPU is active at this time, the others get re-added later using
1665 * CPU hotplug:
1666 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667static int mce_resume(struct sys_device *dev)
1668{
Thomas Gleixner8be91102009-05-27 21:56:53 +02001669 mce_init();
Andi Kleen6ec68bf2009-02-12 13:39:26 +01001670 mce_cpu_features(&current_cpu_data);
Ingo Molnare9eee032009-04-08 12:31:17 +02001671
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 return 0;
1673}
1674
Andi Kleen52d168e2009-02-12 13:39:29 +01001675static void mce_cpu_restart(void *data)
1676{
1677 del_timer_sync(&__get_cpu_var(mce_timer));
Hidetoshi Seto33edbf02009-06-15 17:18:45 +09001678 if (!mce_available(&current_cpu_data))
1679 return;
1680 mce_init();
Andi Kleen52d168e2009-02-12 13:39:29 +01001681 mce_init_timer();
1682}
1683
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684/* Reinit MCEs after user configuration changes */
Thomas Gleixnerd88203d2007-10-23 22:37:23 +02001685static void mce_restart(void)
1686{
Andi Kleen52d168e2009-02-12 13:39:29 +01001687 on_each_cpu(mce_cpu_restart, NULL, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688}
1689
Hidetoshi Seto9af43b52009-06-15 17:21:36 +09001690/* Toggle features for corrected errors */
1691static void mce_disable_ce(void *all)
1692{
1693 if (!mce_available(&current_cpu_data))
1694 return;
1695 if (all)
1696 del_timer_sync(&__get_cpu_var(mce_timer));
1697 cmci_clear();
1698}
1699
1700static void mce_enable_ce(void *all)
1701{
1702 if (!mce_available(&current_cpu_data))
1703 return;
1704 cmci_reenable();
1705 cmci_recheck();
1706 if (all)
1707 mce_init_timer();
1708}
1709
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710static struct sysdev_class mce_sysclass = {
Ingo Molnare9eee032009-04-08 12:31:17 +02001711 .suspend = mce_suspend,
1712 .shutdown = mce_shutdown,
1713 .resume = mce_resume,
1714 .name = "machinecheck",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715};
1716
Ingo Molnarcb491fc2009-04-08 12:31:17 +02001717DEFINE_PER_CPU(struct sys_device, mce_dev);
Ingo Molnare9eee032009-04-08 12:31:17 +02001718
1719__cpuinitdata
1720void (*threshold_cpu_callback)(unsigned long action, unsigned int cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721
Andi Kleencebe1822009-07-09 00:31:43 +02001722static inline struct mce_bank *attr_to_bank(struct sysdev_attribute *attr)
1723{
1724 return container_of(attr, struct mce_bank, attr);
1725}
Andi Kleen0d7482e32009-02-17 23:07:13 +01001726
1727static ssize_t show_bank(struct sys_device *s, struct sysdev_attribute *attr,
1728 char *buf)
1729{
Andi Kleencebe1822009-07-09 00:31:43 +02001730 return sprintf(buf, "%llx\n", attr_to_bank(attr)->ctl);
Andi Kleen0d7482e32009-02-17 23:07:13 +01001731}
1732
1733static ssize_t set_bank(struct sys_device *s, struct sysdev_attribute *attr,
Hidetoshi Seto9319cec2009-04-14 17:26:30 +09001734 const char *buf, size_t size)
Andi Kleen0d7482e32009-02-17 23:07:13 +01001735{
Hidetoshi Seto9319cec2009-04-14 17:26:30 +09001736 u64 new;
Ingo Molnare9eee032009-04-08 12:31:17 +02001737
Hidetoshi Seto9319cec2009-04-14 17:26:30 +09001738 if (strict_strtoull(buf, 0, &new) < 0)
Andi Kleen0d7482e32009-02-17 23:07:13 +01001739 return -EINVAL;
Ingo Molnare9eee032009-04-08 12:31:17 +02001740
Andi Kleencebe1822009-07-09 00:31:43 +02001741 attr_to_bank(attr)->ctl = new;
Andi Kleen0d7482e32009-02-17 23:07:13 +01001742 mce_restart();
Ingo Molnare9eee032009-04-08 12:31:17 +02001743
Hidetoshi Seto9319cec2009-04-14 17:26:30 +09001744 return size;
Andi Kleen0d7482e32009-02-17 23:07:13 +01001745}
Andi Kleena98f0dd2007-02-13 13:26:23 +01001746
Ingo Molnare9eee032009-04-08 12:31:17 +02001747static ssize_t
1748show_trigger(struct sys_device *s, struct sysdev_attribute *attr, char *buf)
Andi Kleena98f0dd2007-02-13 13:26:23 +01001749{
Hidetoshi Seto1020bcb2009-06-15 17:20:57 +09001750 strcpy(buf, mce_helper);
Andi Kleena98f0dd2007-02-13 13:26:23 +01001751 strcat(buf, "\n");
Hidetoshi Seto1020bcb2009-06-15 17:20:57 +09001752 return strlen(mce_helper) + 1;
Andi Kleena98f0dd2007-02-13 13:26:23 +01001753}
1754
Andi Kleen4a0b2b42008-07-01 18:48:41 +02001755static ssize_t set_trigger(struct sys_device *s, struct sysdev_attribute *attr,
Ingo Molnare9eee032009-04-08 12:31:17 +02001756 const char *buf, size_t siz)
Andi Kleena98f0dd2007-02-13 13:26:23 +01001757{
1758 char *p;
Ingo Molnare9eee032009-04-08 12:31:17 +02001759
Hidetoshi Seto1020bcb2009-06-15 17:20:57 +09001760 strncpy(mce_helper, buf, sizeof(mce_helper));
1761 mce_helper[sizeof(mce_helper)-1] = 0;
Hidetoshi Seto1020bcb2009-06-15 17:20:57 +09001762 p = strchr(mce_helper, '\n');
Ingo Molnare9eee032009-04-08 12:31:17 +02001763
Jan Beuliche9084ec2009-07-16 09:45:11 +01001764 if (p)
Ingo Molnare9eee032009-04-08 12:31:17 +02001765 *p = 0;
1766
Jan Beuliche9084ec2009-07-16 09:45:11 +01001767 return strlen(mce_helper) + !!p;
Andi Kleena98f0dd2007-02-13 13:26:23 +01001768}
1769
Hidetoshi Seto9af43b52009-06-15 17:21:36 +09001770static ssize_t set_ignore_ce(struct sys_device *s,
1771 struct sysdev_attribute *attr,
1772 const char *buf, size_t size)
1773{
1774 u64 new;
1775
1776 if (strict_strtoull(buf, 0, &new) < 0)
1777 return -EINVAL;
1778
1779 if (mce_ignore_ce ^ !!new) {
1780 if (new) {
1781 /* disable ce features */
1782 on_each_cpu(mce_disable_ce, (void *)1, 1);
1783 mce_ignore_ce = 1;
1784 } else {
1785 /* enable ce features */
1786 mce_ignore_ce = 0;
1787 on_each_cpu(mce_enable_ce, (void *)1, 1);
1788 }
1789 }
1790 return size;
1791}
1792
1793static ssize_t set_cmci_disabled(struct sys_device *s,
1794 struct sysdev_attribute *attr,
1795 const char *buf, size_t size)
1796{
1797 u64 new;
1798
1799 if (strict_strtoull(buf, 0, &new) < 0)
1800 return -EINVAL;
1801
1802 if (mce_cmci_disabled ^ !!new) {
1803 if (new) {
1804 /* disable cmci */
1805 on_each_cpu(mce_disable_ce, NULL, 1);
1806 mce_cmci_disabled = 1;
1807 } else {
1808 /* enable cmci */
1809 mce_cmci_disabled = 0;
1810 on_each_cpu(mce_enable_ce, NULL, 1);
1811 }
1812 }
1813 return size;
1814}
1815
Andi Kleenb56f6422009-05-27 21:56:52 +02001816static ssize_t store_int_with_restart(struct sys_device *s,
1817 struct sysdev_attribute *attr,
1818 const char *buf, size_t size)
1819{
1820 ssize_t ret = sysdev_store_int(s, attr, buf, size);
1821 mce_restart();
1822 return ret;
1823}
1824
Andi Kleena98f0dd2007-02-13 13:26:23 +01001825static SYSDEV_ATTR(trigger, 0644, show_trigger, set_trigger);
Andi Kleend95d62c2008-07-01 18:48:43 +02001826static SYSDEV_INT_ATTR(tolerant, 0644, tolerant);
Andi Kleen3c079792009-05-27 21:56:55 +02001827static SYSDEV_INT_ATTR(monarch_timeout, 0644, monarch_timeout);
Hidetoshi Seto9af43b52009-06-15 17:21:36 +09001828static SYSDEV_INT_ATTR(dont_log_ce, 0644, mce_dont_log_ce);
Ingo Molnare9eee032009-04-08 12:31:17 +02001829
Andi Kleenb56f6422009-05-27 21:56:52 +02001830static struct sysdev_ext_attribute attr_check_interval = {
1831 _SYSDEV_ATTR(check_interval, 0644, sysdev_show_int,
1832 store_int_with_restart),
1833 &check_interval
1834};
Ingo Molnare9eee032009-04-08 12:31:17 +02001835
Hidetoshi Seto9af43b52009-06-15 17:21:36 +09001836static struct sysdev_ext_attribute attr_ignore_ce = {
1837 _SYSDEV_ATTR(ignore_ce, 0644, sysdev_show_int, set_ignore_ce),
1838 &mce_ignore_ce
1839};
1840
1841static struct sysdev_ext_attribute attr_cmci_disabled = {
Yinghai Lu74b602c2009-06-17 14:43:32 -07001842 _SYSDEV_ATTR(cmci_disabled, 0644, sysdev_show_int, set_cmci_disabled),
Hidetoshi Seto9af43b52009-06-15 17:21:36 +09001843 &mce_cmci_disabled
1844};
1845
Ingo Molnarcb491fc2009-04-08 12:31:17 +02001846static struct sysdev_attribute *mce_attrs[] = {
Hidetoshi Seto9af43b52009-06-15 17:21:36 +09001847 &attr_tolerant.attr,
1848 &attr_check_interval.attr,
1849 &attr_trigger,
Andi Kleen3c079792009-05-27 21:56:55 +02001850 &attr_monarch_timeout.attr,
Hidetoshi Seto9af43b52009-06-15 17:21:36 +09001851 &attr_dont_log_ce.attr,
1852 &attr_ignore_ce.attr,
1853 &attr_cmci_disabled.attr,
Andi Kleena98f0dd2007-02-13 13:26:23 +01001854 NULL
1855};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856
Ingo Molnarcb491fc2009-04-08 12:31:17 +02001857static cpumask_var_t mce_dev_initialized;
Andreas Herrmannbae19fe2007-11-14 17:00:44 -08001858
Ingo Molnare9eee032009-04-08 12:31:17 +02001859/* Per cpu sysdev init. All of the cpus still share the same ctrl bank: */
Andi Kleen91c6d402005-07-28 21:15:39 -07001860static __cpuinit int mce_create_device(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861{
1862 int err;
Hidetoshi Setob1f49f92009-06-18 14:53:24 +09001863 int i, j;
Mike Travis92cb7612007-10-19 20:35:04 +02001864
Andreas Herrmann90367552007-11-07 02:12:58 +01001865 if (!mce_available(&boot_cpu_data))
Andi Kleen91c6d402005-07-28 21:15:39 -07001866 return -EIO;
1867
Ingo Molnarcb491fc2009-04-08 12:31:17 +02001868 memset(&per_cpu(mce_dev, cpu).kobj, 0, sizeof(struct kobject));
1869 per_cpu(mce_dev, cpu).id = cpu;
1870 per_cpu(mce_dev, cpu).cls = &mce_sysclass;
Andi Kleen91c6d402005-07-28 21:15:39 -07001871
Ingo Molnarcb491fc2009-04-08 12:31:17 +02001872 err = sysdev_register(&per_cpu(mce_dev, cpu));
Akinobu Mitad435d862007-10-18 03:05:15 -07001873 if (err)
1874 return err;
Andi Kleen91c6d402005-07-28 21:15:39 -07001875
Ingo Molnarcb491fc2009-04-08 12:31:17 +02001876 for (i = 0; mce_attrs[i]; i++) {
1877 err = sysdev_create_file(&per_cpu(mce_dev, cpu), mce_attrs[i]);
Akinobu Mitad435d862007-10-18 03:05:15 -07001878 if (err)
1879 goto error;
Andi Kleen91c6d402005-07-28 21:15:39 -07001880 }
Hidetoshi Setob1f49f92009-06-18 14:53:24 +09001881 for (j = 0; j < banks; j++) {
Ingo Molnarcb491fc2009-04-08 12:31:17 +02001882 err = sysdev_create_file(&per_cpu(mce_dev, cpu),
Andi Kleencebe1822009-07-09 00:31:43 +02001883 &mce_banks[j].attr);
Andi Kleen0d7482e32009-02-17 23:07:13 +01001884 if (err)
1885 goto error2;
1886 }
Ingo Molnarcb491fc2009-04-08 12:31:17 +02001887 cpumask_set_cpu(cpu, mce_dev_initialized);
Akinobu Mitad435d862007-10-18 03:05:15 -07001888
1889 return 0;
Andi Kleen0d7482e32009-02-17 23:07:13 +01001890error2:
Hidetoshi Setob1f49f92009-06-18 14:53:24 +09001891 while (--j >= 0)
Andi Kleencebe1822009-07-09 00:31:43 +02001892 sysdev_remove_file(&per_cpu(mce_dev, cpu), &mce_banks[j].attr);
Akinobu Mitad435d862007-10-18 03:05:15 -07001893error:
Ingo Molnarcb491fc2009-04-08 12:31:17 +02001894 while (--i >= 0)
Andi Kleencebe1822009-07-09 00:31:43 +02001895 sysdev_remove_file(&per_cpu(mce_dev, cpu), &mce_banks[i].attr);
Ingo Molnarcb491fc2009-04-08 12:31:17 +02001896
1897 sysdev_unregister(&per_cpu(mce_dev, cpu));
Akinobu Mitad435d862007-10-18 03:05:15 -07001898
Andi Kleen91c6d402005-07-28 21:15:39 -07001899 return err;
1900}
1901
Jan Beulich2d9cd6c2008-08-29 13:15:04 +01001902static __cpuinit void mce_remove_device(unsigned int cpu)
Andi Kleen91c6d402005-07-28 21:15:39 -07001903{
Shaohua Li73ca5352006-01-11 22:43:06 +01001904 int i;
1905
Ingo Molnarcb491fc2009-04-08 12:31:17 +02001906 if (!cpumask_test_cpu(cpu, mce_dev_initialized))
Andreas Herrmannbae19fe2007-11-14 17:00:44 -08001907 return;
1908
Ingo Molnarcb491fc2009-04-08 12:31:17 +02001909 for (i = 0; mce_attrs[i]; i++)
1910 sysdev_remove_file(&per_cpu(mce_dev, cpu), mce_attrs[i]);
1911
Andi Kleen0d7482e32009-02-17 23:07:13 +01001912 for (i = 0; i < banks; i++)
Andi Kleencebe1822009-07-09 00:31:43 +02001913 sysdev_remove_file(&per_cpu(mce_dev, cpu), &mce_banks[i].attr);
Ingo Molnarcb491fc2009-04-08 12:31:17 +02001914
1915 sysdev_unregister(&per_cpu(mce_dev, cpu));
1916 cpumask_clear_cpu(cpu, mce_dev_initialized);
Andi Kleen91c6d402005-07-28 21:15:39 -07001917}
Andi Kleen91c6d402005-07-28 21:15:39 -07001918
Andi Kleend6b75582009-02-12 13:39:31 +01001919/* Make sure there are no machine checks on offlined CPUs. */
H. Peter Anvinec5b3d32009-02-23 14:01:04 -08001920static void mce_disable_cpu(void *h)
Andi Kleend6b75582009-02-12 13:39:31 +01001921{
Andi Kleen88ccbed2009-02-12 13:49:36 +01001922 unsigned long action = *(unsigned long *)h;
Ingo Molnarcb491fc2009-04-08 12:31:17 +02001923 int i;
Andi Kleend6b75582009-02-12 13:39:31 +01001924
1925 if (!mce_available(&current_cpu_data))
1926 return;
Andi Kleen88ccbed2009-02-12 13:49:36 +01001927 if (!(action & CPU_TASKS_FROZEN))
1928 cmci_clear();
Andi Kleen06b7a7a2009-04-27 18:37:43 +02001929 for (i = 0; i < banks; i++) {
Andi Kleencebe1822009-07-09 00:31:43 +02001930 struct mce_bank *b = &mce_banks[i];
Ingo Molnar11868a22009-09-23 17:49:55 +02001931
Andi Kleencebe1822009-07-09 00:31:43 +02001932 if (b->init)
Andi Kleena2d32bc2009-07-09 00:31:44 +02001933 wrmsrl(MSR_IA32_MCx_CTL(i), 0);
Andi Kleen06b7a7a2009-04-27 18:37:43 +02001934 }
Andi Kleend6b75582009-02-12 13:39:31 +01001935}
1936
H. Peter Anvinec5b3d32009-02-23 14:01:04 -08001937static void mce_reenable_cpu(void *h)
Andi Kleend6b75582009-02-12 13:39:31 +01001938{
Andi Kleen88ccbed2009-02-12 13:49:36 +01001939 unsigned long action = *(unsigned long *)h;
Ingo Molnare9eee032009-04-08 12:31:17 +02001940 int i;
Andi Kleend6b75582009-02-12 13:39:31 +01001941
1942 if (!mce_available(&current_cpu_data))
1943 return;
Ingo Molnare9eee032009-04-08 12:31:17 +02001944
Andi Kleen88ccbed2009-02-12 13:49:36 +01001945 if (!(action & CPU_TASKS_FROZEN))
1946 cmci_reenable();
Andi Kleen06b7a7a2009-04-27 18:37:43 +02001947 for (i = 0; i < banks; i++) {
Andi Kleencebe1822009-07-09 00:31:43 +02001948 struct mce_bank *b = &mce_banks[i];
Ingo Molnar11868a22009-09-23 17:49:55 +02001949
Andi Kleencebe1822009-07-09 00:31:43 +02001950 if (b->init)
Andi Kleena2d32bc2009-07-09 00:31:44 +02001951 wrmsrl(MSR_IA32_MCx_CTL(i), b->ctl);
Andi Kleen06b7a7a2009-04-27 18:37:43 +02001952 }
Andi Kleend6b75582009-02-12 13:39:31 +01001953}
1954
Andi Kleen91c6d402005-07-28 21:15:39 -07001955/* Get notified when a cpu comes on/off. Be hotplug friendly. */
Ingo Molnare9eee032009-04-08 12:31:17 +02001956static int __cpuinit
1957mce_cpu_callback(struct notifier_block *nfb, unsigned long action, void *hcpu)
Andi Kleen91c6d402005-07-28 21:15:39 -07001958{
1959 unsigned int cpu = (unsigned long)hcpu;
Andi Kleen52d168e2009-02-12 13:39:29 +01001960 struct timer_list *t = &per_cpu(mce_timer, cpu);
Andi Kleen91c6d402005-07-28 21:15:39 -07001961
1962 switch (action) {
Andreas Herrmannbae19fe2007-11-14 17:00:44 -08001963 case CPU_ONLINE:
1964 case CPU_ONLINE_FROZEN:
1965 mce_create_device(cpu);
Rafael J. Wysocki87357282008-08-22 22:23:09 +02001966 if (threshold_cpu_callback)
1967 threshold_cpu_callback(action, cpu);
Andi Kleen91c6d402005-07-28 21:15:39 -07001968 break;
Andi Kleen91c6d402005-07-28 21:15:39 -07001969 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001970 case CPU_DEAD_FROZEN:
Rafael J. Wysocki87357282008-08-22 22:23:09 +02001971 if (threshold_cpu_callback)
1972 threshold_cpu_callback(action, cpu);
Andi Kleen91c6d402005-07-28 21:15:39 -07001973 mce_remove_device(cpu);
1974 break;
Andi Kleen52d168e2009-02-12 13:39:29 +01001975 case CPU_DOWN_PREPARE:
1976 case CPU_DOWN_PREPARE_FROZEN:
1977 del_timer_sync(t);
Andi Kleen88ccbed2009-02-12 13:49:36 +01001978 smp_call_function_single(cpu, mce_disable_cpu, &action, 1);
Andi Kleen52d168e2009-02-12 13:39:29 +01001979 break;
1980 case CPU_DOWN_FAILED:
1981 case CPU_DOWN_FAILED_FROZEN:
Andi Kleen6298c512009-04-09 12:28:22 +02001982 t->expires = round_jiffies(jiffies +
Tejun Heo245b2e72009-06-24 15:13:48 +09001983 __get_cpu_var(mce_next_interval));
Andi Kleen52d168e2009-02-12 13:39:29 +01001984 add_timer_on(t, cpu);
Andi Kleen88ccbed2009-02-12 13:49:36 +01001985 smp_call_function_single(cpu, mce_reenable_cpu, &action, 1);
1986 break;
1987 case CPU_POST_DEAD:
1988 /* intentionally ignoring frozen here */
1989 cmci_rediscover(cpu);
Andi Kleen52d168e2009-02-12 13:39:29 +01001990 break;
Andi Kleen91c6d402005-07-28 21:15:39 -07001991 }
Andreas Herrmannbae19fe2007-11-14 17:00:44 -08001992 return NOTIFY_OK;
Andi Kleen91c6d402005-07-28 21:15:39 -07001993}
1994
Sam Ravnborg1e356692008-01-30 13:33:36 +01001995static struct notifier_block mce_cpu_notifier __cpuinitdata = {
Andi Kleen91c6d402005-07-28 21:15:39 -07001996 .notifier_call = mce_cpu_callback,
1997};
1998
Andi Kleencebe1822009-07-09 00:31:43 +02001999static __init void mce_init_banks(void)
Andi Kleen0d7482e32009-02-17 23:07:13 +01002000{
2001 int i;
2002
Andi Kleen0d7482e32009-02-17 23:07:13 +01002003 for (i = 0; i < banks; i++) {
Andi Kleencebe1822009-07-09 00:31:43 +02002004 struct mce_bank *b = &mce_banks[i];
2005 struct sysdev_attribute *a = &b->attr;
Ingo Molnare9eee032009-04-08 12:31:17 +02002006
Andi Kleencebe1822009-07-09 00:31:43 +02002007 a->attr.name = b->attrname;
2008 snprintf(b->attrname, ATTR_LEN, "bank%d", i);
Ingo Molnare9eee032009-04-08 12:31:17 +02002009
2010 a->attr.mode = 0644;
2011 a->show = show_bank;
2012 a->store = set_bank;
Andi Kleen0d7482e32009-02-17 23:07:13 +01002013 }
Andi Kleen0d7482e32009-02-17 23:07:13 +01002014}
2015
Andi Kleen91c6d402005-07-28 21:15:39 -07002016static __init int mce_init_device(void)
2017{
2018 int err;
2019 int i = 0;
2020
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 if (!mce_available(&boot_cpu_data))
2022 return -EIO;
Andi Kleen0d7482e32009-02-17 23:07:13 +01002023
Yinghai Lue92fae02009-06-17 16:21:33 -07002024 zalloc_cpumask_var(&mce_dev_initialized, GFP_KERNEL);
Rusty Russell996867d2009-03-13 14:49:51 +10302025
Andi Kleencebe1822009-07-09 00:31:43 +02002026 mce_init_banks();
Andi Kleen0d7482e32009-02-17 23:07:13 +01002027
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 err = sysdev_class_register(&mce_sysclass);
Akinobu Mitad435d862007-10-18 03:05:15 -07002029 if (err)
2030 return err;
Andi Kleen91c6d402005-07-28 21:15:39 -07002031
2032 for_each_online_cpu(i) {
Akinobu Mitad435d862007-10-18 03:05:15 -07002033 err = mce_create_device(i);
2034 if (err)
2035 return err;
Andi Kleen91c6d402005-07-28 21:15:39 -07002036 }
2037
Chandra Seetharamanbe6b5a32006-07-30 03:03:37 -07002038 register_hotcpu_notifier(&mce_cpu_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 misc_register(&mce_log_device);
Ingo Molnare9eee032009-04-08 12:31:17 +02002040
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042}
Andi Kleen91c6d402005-07-28 21:15:39 -07002043
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044device_initcall(mce_init_device);
Ingo Molnara988d332009-04-08 12:31:25 +02002045
Andi Kleend7c3c9a2009-04-28 23:07:25 +02002046/*
2047 * Old style boot options parsing. Only for compatibility.
2048 */
2049static int __init mcheck_disable(char *str)
2050{
2051 mce_disabled = 1;
2052 return 1;
2053}
2054__setup("nomce", mcheck_disable);
Huang Ying5be9ed22009-07-31 09:41:42 +08002055
2056#ifdef CONFIG_DEBUG_FS
2057struct dentry *mce_get_debugfs_dir(void)
2058{
2059 static struct dentry *dmce;
2060
2061 if (!dmce)
2062 dmce = debugfs_create_dir("mce", NULL);
2063
2064 return dmce;
2065}
Huang Yingbf783f92009-07-31 09:41:43 +08002066
2067static void mce_reset(void)
2068{
2069 cpu_missing = 0;
2070 atomic_set(&mce_fake_paniced, 0);
2071 atomic_set(&mce_executing, 0);
2072 atomic_set(&mce_callin, 0);
2073 atomic_set(&global_nwo, 0);
2074}
2075
2076static int fake_panic_get(void *data, u64 *val)
2077{
2078 *val = fake_panic;
2079 return 0;
2080}
2081
2082static int fake_panic_set(void *data, u64 val)
2083{
2084 mce_reset();
2085 fake_panic = val;
2086 return 0;
2087}
2088
2089DEFINE_SIMPLE_ATTRIBUTE(fake_panic_fops, fake_panic_get,
2090 fake_panic_set, "%llu\n");
2091
2092static int __init mce_debugfs_init(void)
2093{
2094 struct dentry *dmce, *ffake_panic;
2095
2096 dmce = mce_get_debugfs_dir();
2097 if (!dmce)
2098 return -ENOMEM;
2099 ffake_panic = debugfs_create_file("fake_panic", 0444, dmce, NULL,
2100 &fake_panic_fops);
2101 if (!ffake_panic)
2102 return -ENOMEM;
2103
2104 return 0;
2105}
2106late_initcall(mce_debugfs_init);
Huang Ying5be9ed22009-07-31 09:41:42 +08002107#endif