Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Machine check handler. |
Ingo Molnar | e9eee03 | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 3 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * K8 parts Copyright 2002,2003 Andi Kleen, SuSE Labs. |
Thomas Gleixner | d88203d | 2007-10-23 22:37:23 +0200 | [diff] [blame] | 5 | * Rest from unknown author(s). |
| 6 | * 2004 Andi Kleen. Rewrote most of it. |
Andi Kleen | b79109c | 2009-02-12 13:43:23 +0100 | [diff] [blame] | 7 | * Copyright 2008 Intel Corporation |
| 8 | * Author: Andi Kleen |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | */ |
Tim Hockin | e02e68d | 2007-07-21 17:10:36 +0200 | [diff] [blame] | 10 | #include <linux/thread_info.h> |
Ingo Molnar | e9eee03 | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 11 | #include <linux/capability.h> |
| 12 | #include <linux/miscdevice.h> |
Andi Kleen | ccc3c31 | 2009-05-27 21:56:54 +0200 | [diff] [blame] | 13 | #include <linux/interrupt.h> |
Andi Kleen | 8457c84 | 2009-02-12 13:49:33 +0100 | [diff] [blame] | 14 | #include <linux/ratelimit.h> |
Ingo Molnar | e9eee03 | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 15 | #include <linux/kallsyms.h> |
| 16 | #include <linux/rcupdate.h> |
Ingo Molnar | e9eee03 | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 17 | #include <linux/kobject.h> |
Hidetoshi Seto | 14a0253 | 2009-04-30 16:04:51 +0900 | [diff] [blame] | 18 | #include <linux/uaccess.h> |
Ingo Molnar | e9eee03 | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 19 | #include <linux/kdebug.h> |
| 20 | #include <linux/kernel.h> |
| 21 | #include <linux/percpu.h> |
| 22 | #include <linux/string.h> |
| 23 | #include <linux/sysdev.h> |
Andi Kleen | 3c07979 | 2009-05-27 21:56:55 +0200 | [diff] [blame] | 24 | #include <linux/delay.h> |
Ingo Molnar | e9eee03 | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 25 | #include <linux/ctype.h> |
| 26 | #include <linux/sched.h> |
| 27 | #include <linux/sysfs.h> |
| 28 | #include <linux/types.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 29 | #include <linux/slab.h> |
Ingo Molnar | e9eee03 | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 30 | #include <linux/init.h> |
| 31 | #include <linux/kmod.h> |
| 32 | #include <linux/poll.h> |
Andi Kleen | 3c07979 | 2009-05-27 21:56:55 +0200 | [diff] [blame] | 33 | #include <linux/nmi.h> |
Ingo Molnar | e9eee03 | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 34 | #include <linux/cpu.h> |
Hidetoshi Seto | 14a0253 | 2009-04-30 16:04:51 +0900 | [diff] [blame] | 35 | #include <linux/smp.h> |
Ingo Molnar | e9eee03 | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 36 | #include <linux/fs.h> |
Andi Kleen | 9b1beaf | 2009-05-27 21:56:59 +0200 | [diff] [blame] | 37 | #include <linux/mm.h> |
Huang Ying | 5be9ed2 | 2009-07-31 09:41:42 +0800 | [diff] [blame] | 38 | #include <linux/debugfs.h> |
Mauro Carvalho Chehab | 696e409 | 2009-07-23 06:57:45 -0300 | [diff] [blame] | 39 | #include <linux/edac_mce.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | |
Ingo Molnar | e9eee03 | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 41 | #include <asm/processor.h> |
Andi Kleen | ccc3c31 | 2009-05-27 21:56:54 +0200 | [diff] [blame] | 42 | #include <asm/hw_irq.h> |
| 43 | #include <asm/apic.h> |
Ingo Molnar | e9eee03 | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 44 | #include <asm/idle.h> |
Andi Kleen | ccc3c31 | 2009-05-27 21:56:54 +0200 | [diff] [blame] | 45 | #include <asm/ipi.h> |
Ingo Molnar | e9eee03 | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 46 | #include <asm/mce.h> |
| 47 | #include <asm/msr.h> |
Ingo Molnar | e9eee03 | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 48 | |
Andi Kleen | bd19a5e | 2009-05-27 21:56:55 +0200 | [diff] [blame] | 49 | #include "mce-internal.h" |
Ingo Molnar | 711c2e4 | 2009-04-08 12:31:26 +0200 | [diff] [blame] | 50 | |
Ingo Molnar | 2aa2b50dd | 2010-03-14 08:57:03 +0100 | [diff] [blame] | 51 | static DEFINE_MUTEX(mce_read_mutex); |
| 52 | |
Paul E. McKenney | f56e8a0 | 2010-03-05 15:03:27 -0800 | [diff] [blame] | 53 | #define rcu_dereference_check_mce(p) \ |
Paul E. McKenney | ec8c27e | 2010-04-30 06:45:36 -0700 | [diff] [blame] | 54 | rcu_dereference_index_check((p), \ |
Paul E. McKenney | f56e8a0 | 2010-03-05 15:03:27 -0800 | [diff] [blame] | 55 | rcu_read_lock_sched_held() || \ |
| 56 | lockdep_is_held(&mce_read_mutex)) |
| 57 | |
Hidetoshi Seto | 8968f9d | 2009-10-13 16:19:41 +0900 | [diff] [blame] | 58 | #define CREATE_TRACE_POINTS |
| 59 | #include <trace/events/mce.h> |
| 60 | |
Hidetoshi Seto | 4e5b3e6 | 2009-06-15 17:20:20 +0900 | [diff] [blame] | 61 | int mce_disabled __read_mostly; |
Andi Kleen | 04b2b1a | 2009-04-28 22:50:19 +0200 | [diff] [blame] | 62 | |
Ingo Molnar | e9eee03 | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 63 | #define MISC_MCELOG_MINOR 227 |
Andi Kleen | 0d7482e3 | 2009-02-17 23:07:13 +0100 | [diff] [blame] | 64 | |
Andi Kleen | 3c07979 | 2009-05-27 21:56:55 +0200 | [diff] [blame] | 65 | #define SPINUNIT 100 /* 100ns */ |
| 66 | |
Andi Kleen | 553f265 | 2006-04-07 19:49:57 +0200 | [diff] [blame] | 67 | atomic_t mce_entry; |
| 68 | |
Andi Kleen | 01ca79f | 2009-05-27 21:56:52 +0200 | [diff] [blame] | 69 | DEFINE_PER_CPU(unsigned, mce_exception_count); |
| 70 | |
Tim Hockin | bd78432 | 2007-07-21 17:10:37 +0200 | [diff] [blame] | 71 | /* |
| 72 | * Tolerant levels: |
| 73 | * 0: always panic on uncorrected errors, log corrected errors |
| 74 | * 1: panic or SIGBUS on uncorrected errors, log corrected errors |
| 75 | * 2: SIGBUS or log uncorrected errors (if possible), log corrected errors |
| 76 | * 3: never panic or SIGBUS, log all errors (for testing only) |
| 77 | */ |
Hidetoshi Seto | 4e5b3e6 | 2009-06-15 17:20:20 +0900 | [diff] [blame] | 78 | static int tolerant __read_mostly = 1; |
| 79 | static int banks __read_mostly; |
Hidetoshi Seto | 4e5b3e6 | 2009-06-15 17:20:20 +0900 | [diff] [blame] | 80 | static int rip_msr __read_mostly; |
| 81 | static int mce_bootlog __read_mostly = -1; |
| 82 | static int monarch_timeout __read_mostly = -1; |
| 83 | static int mce_panic_timeout __read_mostly; |
| 84 | static int mce_dont_log_ce __read_mostly; |
| 85 | int mce_cmci_disabled __read_mostly; |
| 86 | int mce_ignore_ce __read_mostly; |
| 87 | int mce_ser __read_mostly; |
Andi Kleen | a98f0dd | 2007-02-13 13:26:23 +0100 | [diff] [blame] | 88 | |
Andi Kleen | cebe182 | 2009-07-09 00:31:43 +0200 | [diff] [blame] | 89 | struct mce_bank *mce_banks __read_mostly; |
| 90 | |
Hidetoshi Seto | 1020bcb | 2009-06-15 17:20:57 +0900 | [diff] [blame] | 91 | /* User mode helper program triggered by machine check event */ |
| 92 | static unsigned long mce_need_notify; |
| 93 | static char mce_helper[128]; |
| 94 | static char *mce_helper_argv[2] = { mce_helper, NULL }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | |
Tim Hockin | e02e68d | 2007-07-21 17:10:36 +0200 | [diff] [blame] | 96 | static DECLARE_WAIT_QUEUE_HEAD(mce_wait); |
Andi Kleen | 3c07979 | 2009-05-27 21:56:55 +0200 | [diff] [blame] | 97 | static DEFINE_PER_CPU(struct mce, mces_seen); |
| 98 | static int cpu_missing; |
| 99 | |
Borislav Petkov | fb25319 | 2009-10-07 13:20:38 +0200 | [diff] [blame] | 100 | /* |
| 101 | * CPU/chipset specific EDAC code can register a notifier call here to print |
| 102 | * MCE errors in a human-readable form. |
| 103 | */ |
| 104 | ATOMIC_NOTIFIER_HEAD(x86_mce_decoder_chain); |
| 105 | EXPORT_SYMBOL_GPL(x86_mce_decoder_chain); |
| 106 | |
| 107 | static int default_decode_mce(struct notifier_block *nb, unsigned long val, |
| 108 | void *data) |
Ingo Molnar | f436f8b | 2009-10-01 16:14:32 +0200 | [diff] [blame] | 109 | { |
Huang Ying | a2d7b0d | 2010-06-08 14:35:39 +0800 | [diff] [blame] | 110 | pr_emerg(HW_ERR "No human readable MCE decoding support on this CPU type.\n"); |
| 111 | pr_emerg(HW_ERR "Run the message through 'mcelog --ascii' to decode.\n"); |
Borislav Petkov | fb25319 | 2009-10-07 13:20:38 +0200 | [diff] [blame] | 112 | |
| 113 | return NOTIFY_STOP; |
Ingo Molnar | f436f8b | 2009-10-01 16:14:32 +0200 | [diff] [blame] | 114 | } |
| 115 | |
Borislav Petkov | fb25319 | 2009-10-07 13:20:38 +0200 | [diff] [blame] | 116 | static struct notifier_block mce_dec_nb = { |
| 117 | .notifier_call = default_decode_mce, |
| 118 | .priority = -1, |
| 119 | }; |
Tim Hockin | e02e68d | 2007-07-21 17:10:36 +0200 | [diff] [blame] | 120 | |
Andi Kleen | ee031c3 | 2009-02-12 13:49:34 +0100 | [diff] [blame] | 121 | /* MCA banks polled by the period polling timer for corrected events */ |
| 122 | DEFINE_PER_CPU(mce_banks_t, mce_poll_banks) = { |
| 123 | [0 ... BITS_TO_LONGS(MAX_NR_BANKS)-1] = ~0UL |
| 124 | }; |
| 125 | |
Andi Kleen | 9b1beaf | 2009-05-27 21:56:59 +0200 | [diff] [blame] | 126 | static DEFINE_PER_CPU(struct work_struct, mce_work); |
| 127 | |
Andi Kleen | b5f2fa4 | 2009-02-12 13:43:22 +0100 | [diff] [blame] | 128 | /* Do initial initialization of a struct mce */ |
| 129 | void mce_setup(struct mce *m) |
| 130 | { |
| 131 | memset(m, 0, sizeof(struct mce)); |
Andi Kleen | d620c67 | 2009-05-27 21:56:56 +0200 | [diff] [blame] | 132 | m->cpu = m->extcpu = smp_processor_id(); |
Andi Kleen | b5f2fa4 | 2009-02-12 13:43:22 +0100 | [diff] [blame] | 133 | rdtscll(m->tsc); |
Andi Kleen | 8ee0834 | 2009-05-27 21:56:56 +0200 | [diff] [blame] | 134 | /* We hope get_seconds stays lockless */ |
| 135 | m->time = get_seconds(); |
| 136 | m->cpuvendor = boot_cpu_data.x86_vendor; |
| 137 | m->cpuid = cpuid_eax(1); |
| 138 | #ifdef CONFIG_SMP |
| 139 | m->socketid = cpu_data(m->extcpu).phys_proc_id; |
| 140 | #endif |
| 141 | m->apicid = cpu_data(m->extcpu).initial_apicid; |
| 142 | rdmsrl(MSR_IA32_MCG_CAP, m->mcgcap); |
Andi Kleen | b5f2fa4 | 2009-02-12 13:43:22 +0100 | [diff] [blame] | 143 | } |
| 144 | |
Andi Kleen | ea149b3 | 2009-04-29 19:31:00 +0200 | [diff] [blame] | 145 | DEFINE_PER_CPU(struct mce, injectm); |
| 146 | EXPORT_PER_CPU_SYMBOL_GPL(injectm); |
| 147 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | /* |
| 149 | * Lockless MCE logging infrastructure. |
| 150 | * This avoids deadlocks on printk locks without having to break locks. Also |
| 151 | * separate MCEs from kernel messages to avoid bogus bug reports. |
| 152 | */ |
| 153 | |
Adrian Bunk | 231fd90 | 2008-01-30 13:30:30 +0100 | [diff] [blame] | 154 | static struct mce_log mcelog = { |
Andi Kleen | f6fb0ac | 2009-05-27 21:56:55 +0200 | [diff] [blame] | 155 | .signature = MCE_LOG_SIGNATURE, |
| 156 | .len = MCE_LOG_LEN, |
| 157 | .recordlen = sizeof(struct mce), |
Thomas Gleixner | d88203d | 2007-10-23 22:37:23 +0200 | [diff] [blame] | 158 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | |
| 160 | void mce_log(struct mce *mce) |
| 161 | { |
| 162 | unsigned next, entry; |
Ingo Molnar | e9eee03 | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 163 | |
Hidetoshi Seto | 8968f9d | 2009-10-13 16:19:41 +0900 | [diff] [blame] | 164 | /* Emit the trace record: */ |
| 165 | trace_mce_record(mce); |
| 166 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | mce->finished = 0; |
Mike Waychison | 7644143 | 2005-09-30 00:01:27 +0200 | [diff] [blame] | 168 | wmb(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | for (;;) { |
Paul E. McKenney | f56e8a0 | 2010-03-05 15:03:27 -0800 | [diff] [blame] | 170 | entry = rcu_dereference_check_mce(mcelog.next); |
Andi Kleen | 673242c | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 171 | for (;;) { |
Ingo Molnar | e9eee03 | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 172 | /* |
Mauro Carvalho Chehab | 696e409 | 2009-07-23 06:57:45 -0300 | [diff] [blame] | 173 | * If edac_mce is enabled, it will check the error type |
| 174 | * and will process it, if it is a known error. |
| 175 | * Otherwise, the error will be sent through mcelog |
| 176 | * interface |
| 177 | */ |
| 178 | if (edac_mce_parse(mce)) |
| 179 | return; |
| 180 | |
| 181 | /* |
Ingo Molnar | e9eee03 | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 182 | * When the buffer fills up discard new entries. |
| 183 | * Assume that the earlier errors are the more |
| 184 | * interesting ones: |
| 185 | */ |
Andi Kleen | 673242c | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 186 | if (entry >= MCE_LOG_LEN) { |
Hidetoshi Seto | 14a0253 | 2009-04-30 16:04:51 +0900 | [diff] [blame] | 187 | set_bit(MCE_OVERFLOW, |
| 188 | (unsigned long *)&mcelog.flags); |
Andi Kleen | 673242c | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 189 | return; |
| 190 | } |
Ingo Molnar | e9eee03 | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 191 | /* Old left over entry. Skip: */ |
Andi Kleen | 673242c | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 192 | if (mcelog.entry[entry].finished) { |
| 193 | entry++; |
| 194 | continue; |
| 195 | } |
Mike Waychison | 7644143 | 2005-09-30 00:01:27 +0200 | [diff] [blame] | 196 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | smp_rmb(); |
| 199 | next = entry + 1; |
| 200 | if (cmpxchg(&mcelog.next, entry, next) == entry) |
| 201 | break; |
| 202 | } |
| 203 | memcpy(mcelog.entry + entry, mce, sizeof(struct mce)); |
Mike Waychison | 7644143 | 2005-09-30 00:01:27 +0200 | [diff] [blame] | 204 | wmb(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | mcelog.entry[entry].finished = 1; |
Mike Waychison | 7644143 | 2005-09-30 00:01:27 +0200 | [diff] [blame] | 206 | wmb(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | |
Andi Kleen | a0189c7 | 2009-05-27 21:56:54 +0200 | [diff] [blame] | 208 | mce->finished = 1; |
Hidetoshi Seto | 1020bcb | 2009-06-15 17:20:57 +0900 | [diff] [blame] | 209 | set_bit(0, &mce_need_notify); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | } |
| 211 | |
Hidetoshi Seto | 77e26cc | 2009-06-11 16:04:35 +0900 | [diff] [blame] | 212 | static void print_mce(struct mce *m) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | { |
Huang Ying | a2d7b0d | 2010-06-08 14:35:39 +0800 | [diff] [blame] | 214 | pr_emerg(HW_ERR "CPU %d: Machine Check Exception: %Lx Bank %d: %016Lx\n", |
Andi Kleen | d620c67 | 2009-05-27 21:56:56 +0200 | [diff] [blame] | 215 | m->extcpu, m->mcgstatus, m->bank, m->status); |
Ingo Molnar | f436f8b | 2009-10-01 16:14:32 +0200 | [diff] [blame] | 216 | |
H. Peter Anvin | 65ea5b0 | 2008-01-30 13:30:56 +0100 | [diff] [blame] | 217 | if (m->ip) { |
Huang Ying | a2d7b0d | 2010-06-08 14:35:39 +0800 | [diff] [blame] | 218 | pr_emerg(HW_ERR "RIP%s %02x:<%016Lx> ", |
Ingo Molnar | f436f8b | 2009-10-01 16:14:32 +0200 | [diff] [blame] | 219 | !(m->mcgstatus & MCG_STATUS_EIPV) ? " !INEXACT!" : "", |
| 220 | m->cs, m->ip); |
| 221 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | if (m->cs == __KERNEL_CS) |
H. Peter Anvin | 65ea5b0 | 2008-01-30 13:30:56 +0100 | [diff] [blame] | 223 | print_symbol("{%s}", m->ip); |
Ingo Molnar | f436f8b | 2009-10-01 16:14:32 +0200 | [diff] [blame] | 224 | pr_cont("\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | } |
Borislav Petkov | 549d042 | 2009-07-24 13:51:42 +0200 | [diff] [blame] | 226 | |
Huang Ying | a2d7b0d | 2010-06-08 14:35:39 +0800 | [diff] [blame] | 227 | pr_emerg(HW_ERR "TSC %llx ", m->tsc); |
Ingo Molnar | f436f8b | 2009-10-01 16:14:32 +0200 | [diff] [blame] | 228 | if (m->addr) |
| 229 | pr_cont("ADDR %llx ", m->addr); |
| 230 | if (m->misc) |
| 231 | pr_cont("MISC %llx ", m->misc); |
| 232 | |
| 233 | pr_cont("\n"); |
Huang Ying | a2d7b0d | 2010-06-08 14:35:39 +0800 | [diff] [blame] | 234 | pr_emerg(HW_ERR "PROCESSOR %u:%x TIME %llu SOCKET %u APIC %x\n", |
Ingo Molnar | f436f8b | 2009-10-01 16:14:32 +0200 | [diff] [blame] | 235 | m->cpuvendor, m->cpuid, m->time, m->socketid, m->apicid); |
| 236 | |
| 237 | /* |
| 238 | * Print out human-readable details about the MCE error, |
Borislav Petkov | fb25319 | 2009-10-07 13:20:38 +0200 | [diff] [blame] | 239 | * (if the CPU has an implementation for that) |
Ingo Molnar | f436f8b | 2009-10-01 16:14:32 +0200 | [diff] [blame] | 240 | */ |
Borislav Petkov | fb25319 | 2009-10-07 13:20:38 +0200 | [diff] [blame] | 241 | atomic_notifier_call_chain(&x86_mce_decoder_chain, 0, m); |
Andi Kleen | 8650356 | 2009-05-27 21:56:58 +0200 | [diff] [blame] | 242 | } |
| 243 | |
Andi Kleen | f94b61c | 2009-05-27 21:56:55 +0200 | [diff] [blame] | 244 | #define PANIC_TIMEOUT 5 /* 5 seconds */ |
| 245 | |
| 246 | static atomic_t mce_paniced; |
| 247 | |
Huang Ying | bf783f9 | 2009-07-31 09:41:43 +0800 | [diff] [blame] | 248 | static int fake_panic; |
| 249 | static atomic_t mce_fake_paniced; |
| 250 | |
Andi Kleen | f94b61c | 2009-05-27 21:56:55 +0200 | [diff] [blame] | 251 | /* Panic in progress. Enable interrupts and wait for final IPI */ |
| 252 | static void wait_for_panic(void) |
| 253 | { |
| 254 | long timeout = PANIC_TIMEOUT*USEC_PER_SEC; |
Ingo Molnar | f436f8b | 2009-10-01 16:14:32 +0200 | [diff] [blame] | 255 | |
Andi Kleen | f94b61c | 2009-05-27 21:56:55 +0200 | [diff] [blame] | 256 | preempt_disable(); |
| 257 | local_irq_enable(); |
| 258 | while (timeout-- > 0) |
| 259 | udelay(1); |
Andi Kleen | 29b0f59 | 2009-05-27 21:56:56 +0200 | [diff] [blame] | 260 | if (panic_timeout == 0) |
| 261 | panic_timeout = mce_panic_timeout; |
Andi Kleen | f94b61c | 2009-05-27 21:56:55 +0200 | [diff] [blame] | 262 | panic("Panicing machine check CPU died"); |
| 263 | } |
| 264 | |
Andi Kleen | bd19a5e | 2009-05-27 21:56:55 +0200 | [diff] [blame] | 265 | static void mce_panic(char *msg, struct mce *final, char *exp) |
Thomas Gleixner | d88203d | 2007-10-23 22:37:23 +0200 | [diff] [blame] | 266 | { |
Huang Ying | 482908b | 2010-05-18 14:35:22 +0800 | [diff] [blame] | 267 | int i, apei_err = 0; |
Tim Hockin | e02e68d | 2007-07-21 17:10:36 +0200 | [diff] [blame] | 268 | |
Huang Ying | bf783f9 | 2009-07-31 09:41:43 +0800 | [diff] [blame] | 269 | if (!fake_panic) { |
| 270 | /* |
| 271 | * Make sure only one CPU runs in machine check panic |
| 272 | */ |
| 273 | if (atomic_inc_return(&mce_paniced) > 1) |
| 274 | wait_for_panic(); |
| 275 | barrier(); |
Andi Kleen | f94b61c | 2009-05-27 21:56:55 +0200 | [diff] [blame] | 276 | |
Huang Ying | bf783f9 | 2009-07-31 09:41:43 +0800 | [diff] [blame] | 277 | bust_spinlocks(1); |
| 278 | console_verbose(); |
| 279 | } else { |
| 280 | /* Don't log too much for fake panic */ |
| 281 | if (atomic_inc_return(&mce_fake_paniced) > 1) |
| 282 | return; |
| 283 | } |
Andi Kleen | a0189c7 | 2009-05-27 21:56:54 +0200 | [diff] [blame] | 284 | /* First print corrected ones that are still unlogged */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | for (i = 0; i < MCE_LOG_LEN; i++) { |
Andi Kleen | a0189c7 | 2009-05-27 21:56:54 +0200 | [diff] [blame] | 286 | struct mce *m = &mcelog.entry[i]; |
Hidetoshi Seto | 77e26cc | 2009-06-11 16:04:35 +0900 | [diff] [blame] | 287 | if (!(m->status & MCI_STATUS_VAL)) |
| 288 | continue; |
Huang Ying | 482908b | 2010-05-18 14:35:22 +0800 | [diff] [blame] | 289 | if (!(m->status & MCI_STATUS_UC)) { |
Hidetoshi Seto | 77e26cc | 2009-06-11 16:04:35 +0900 | [diff] [blame] | 290 | print_mce(m); |
Huang Ying | 482908b | 2010-05-18 14:35:22 +0800 | [diff] [blame] | 291 | if (!apei_err) |
| 292 | apei_err = apei_write_mce(m); |
| 293 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | } |
Andi Kleen | a0189c7 | 2009-05-27 21:56:54 +0200 | [diff] [blame] | 295 | /* Now print uncorrected but with the final one last */ |
| 296 | for (i = 0; i < MCE_LOG_LEN; i++) { |
| 297 | struct mce *m = &mcelog.entry[i]; |
| 298 | if (!(m->status & MCI_STATUS_VAL)) |
| 299 | continue; |
Hidetoshi Seto | 77e26cc | 2009-06-11 16:04:35 +0900 | [diff] [blame] | 300 | if (!(m->status & MCI_STATUS_UC)) |
| 301 | continue; |
Huang Ying | 482908b | 2010-05-18 14:35:22 +0800 | [diff] [blame] | 302 | if (!final || memcmp(m, final, sizeof(struct mce))) { |
Hidetoshi Seto | 77e26cc | 2009-06-11 16:04:35 +0900 | [diff] [blame] | 303 | print_mce(m); |
Huang Ying | 482908b | 2010-05-18 14:35:22 +0800 | [diff] [blame] | 304 | if (!apei_err) |
| 305 | apei_err = apei_write_mce(m); |
| 306 | } |
Andi Kleen | a0189c7 | 2009-05-27 21:56:54 +0200 | [diff] [blame] | 307 | } |
Huang Ying | 482908b | 2010-05-18 14:35:22 +0800 | [diff] [blame] | 308 | if (final) { |
Hidetoshi Seto | 77e26cc | 2009-06-11 16:04:35 +0900 | [diff] [blame] | 309 | print_mce(final); |
Huang Ying | 482908b | 2010-05-18 14:35:22 +0800 | [diff] [blame] | 310 | if (!apei_err) |
| 311 | apei_err = apei_write_mce(final); |
| 312 | } |
Andi Kleen | 3c07979 | 2009-05-27 21:56:55 +0200 | [diff] [blame] | 313 | if (cpu_missing) |
Huang Ying | a2d7b0d | 2010-06-08 14:35:39 +0800 | [diff] [blame] | 314 | pr_emerg(HW_ERR "Some CPUs didn't answer in synchronization\n"); |
Andi Kleen | bd19a5e | 2009-05-27 21:56:55 +0200 | [diff] [blame] | 315 | if (exp) |
Huang Ying | a2d7b0d | 2010-06-08 14:35:39 +0800 | [diff] [blame] | 316 | pr_emerg(HW_ERR "Machine check: %s\n", exp); |
Huang Ying | bf783f9 | 2009-07-31 09:41:43 +0800 | [diff] [blame] | 317 | if (!fake_panic) { |
| 318 | if (panic_timeout == 0) |
| 319 | panic_timeout = mce_panic_timeout; |
| 320 | panic(msg); |
| 321 | } else |
Huang Ying | a2d7b0d | 2010-06-08 14:35:39 +0800 | [diff] [blame] | 322 | pr_emerg(HW_ERR "Fake kernel panic: %s\n", msg); |
Thomas Gleixner | d88203d | 2007-10-23 22:37:23 +0200 | [diff] [blame] | 323 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | |
Andi Kleen | ea149b3 | 2009-04-29 19:31:00 +0200 | [diff] [blame] | 325 | /* Support code for software error injection */ |
| 326 | |
| 327 | static int msr_to_offset(u32 msr) |
| 328 | { |
Tejun Heo | 0a3aee0 | 2010-12-18 16:28:55 +0100 | [diff] [blame] | 329 | unsigned bank = __this_cpu_read(injectm.bank); |
Ingo Molnar | f436f8b | 2009-10-01 16:14:32 +0200 | [diff] [blame] | 330 | |
Andi Kleen | ea149b3 | 2009-04-29 19:31:00 +0200 | [diff] [blame] | 331 | if (msr == rip_msr) |
| 332 | return offsetof(struct mce, ip); |
Andi Kleen | a2d32bc | 2009-07-09 00:31:44 +0200 | [diff] [blame] | 333 | if (msr == MSR_IA32_MCx_STATUS(bank)) |
Andi Kleen | ea149b3 | 2009-04-29 19:31:00 +0200 | [diff] [blame] | 334 | return offsetof(struct mce, status); |
Andi Kleen | a2d32bc | 2009-07-09 00:31:44 +0200 | [diff] [blame] | 335 | if (msr == MSR_IA32_MCx_ADDR(bank)) |
Andi Kleen | ea149b3 | 2009-04-29 19:31:00 +0200 | [diff] [blame] | 336 | return offsetof(struct mce, addr); |
Andi Kleen | a2d32bc | 2009-07-09 00:31:44 +0200 | [diff] [blame] | 337 | if (msr == MSR_IA32_MCx_MISC(bank)) |
Andi Kleen | ea149b3 | 2009-04-29 19:31:00 +0200 | [diff] [blame] | 338 | return offsetof(struct mce, misc); |
| 339 | if (msr == MSR_IA32_MCG_STATUS) |
| 340 | return offsetof(struct mce, mcgstatus); |
| 341 | return -1; |
| 342 | } |
| 343 | |
Andi Kleen | 5f8c1a5 | 2009-04-29 19:29:12 +0200 | [diff] [blame] | 344 | /* MSR access wrappers used for error injection */ |
| 345 | static u64 mce_rdmsrl(u32 msr) |
| 346 | { |
| 347 | u64 v; |
Ingo Molnar | 11868a2 | 2009-09-23 17:49:55 +0200 | [diff] [blame] | 348 | |
Tejun Heo | 0a3aee0 | 2010-12-18 16:28:55 +0100 | [diff] [blame] | 349 | if (__this_cpu_read(injectm.finished)) { |
Andi Kleen | ea149b3 | 2009-04-29 19:31:00 +0200 | [diff] [blame] | 350 | int offset = msr_to_offset(msr); |
Ingo Molnar | 11868a2 | 2009-09-23 17:49:55 +0200 | [diff] [blame] | 351 | |
Andi Kleen | ea149b3 | 2009-04-29 19:31:00 +0200 | [diff] [blame] | 352 | if (offset < 0) |
| 353 | return 0; |
| 354 | return *(u64 *)((char *)&__get_cpu_var(injectm) + offset); |
| 355 | } |
Ingo Molnar | 11868a2 | 2009-09-23 17:49:55 +0200 | [diff] [blame] | 356 | |
| 357 | if (rdmsrl_safe(msr, &v)) { |
| 358 | WARN_ONCE(1, "mce: Unable to read msr %d!\n", msr); |
| 359 | /* |
| 360 | * Return zero in case the access faulted. This should |
| 361 | * not happen normally but can happen if the CPU does |
| 362 | * something weird, or if the code is buggy. |
| 363 | */ |
| 364 | v = 0; |
| 365 | } |
| 366 | |
Andi Kleen | 5f8c1a5 | 2009-04-29 19:29:12 +0200 | [diff] [blame] | 367 | return v; |
| 368 | } |
| 369 | |
| 370 | static void mce_wrmsrl(u32 msr, u64 v) |
| 371 | { |
Tejun Heo | 0a3aee0 | 2010-12-18 16:28:55 +0100 | [diff] [blame] | 372 | if (__this_cpu_read(injectm.finished)) { |
Andi Kleen | ea149b3 | 2009-04-29 19:31:00 +0200 | [diff] [blame] | 373 | int offset = msr_to_offset(msr); |
Ingo Molnar | 11868a2 | 2009-09-23 17:49:55 +0200 | [diff] [blame] | 374 | |
Andi Kleen | ea149b3 | 2009-04-29 19:31:00 +0200 | [diff] [blame] | 375 | if (offset >= 0) |
| 376 | *(u64 *)((char *)&__get_cpu_var(injectm) + offset) = v; |
| 377 | return; |
| 378 | } |
Andi Kleen | 5f8c1a5 | 2009-04-29 19:29:12 +0200 | [diff] [blame] | 379 | wrmsrl(msr, v); |
| 380 | } |
| 381 | |
Andi Kleen | 9b1beaf | 2009-05-27 21:56:59 +0200 | [diff] [blame] | 382 | /* |
| 383 | * Simple lockless ring to communicate PFNs from the exception handler with the |
| 384 | * process context work function. This is vastly simplified because there's |
| 385 | * only a single reader and a single writer. |
| 386 | */ |
| 387 | #define MCE_RING_SIZE 16 /* we use one entry less */ |
| 388 | |
| 389 | struct mce_ring { |
| 390 | unsigned short start; |
| 391 | unsigned short end; |
| 392 | unsigned long ring[MCE_RING_SIZE]; |
| 393 | }; |
| 394 | static DEFINE_PER_CPU(struct mce_ring, mce_ring); |
| 395 | |
| 396 | /* Runs with CPU affinity in workqueue */ |
| 397 | static int mce_ring_empty(void) |
| 398 | { |
| 399 | struct mce_ring *r = &__get_cpu_var(mce_ring); |
| 400 | |
| 401 | return r->start == r->end; |
| 402 | } |
| 403 | |
| 404 | static int mce_ring_get(unsigned long *pfn) |
| 405 | { |
| 406 | struct mce_ring *r; |
| 407 | int ret = 0; |
| 408 | |
| 409 | *pfn = 0; |
| 410 | get_cpu(); |
| 411 | r = &__get_cpu_var(mce_ring); |
| 412 | if (r->start == r->end) |
| 413 | goto out; |
| 414 | *pfn = r->ring[r->start]; |
| 415 | r->start = (r->start + 1) % MCE_RING_SIZE; |
| 416 | ret = 1; |
| 417 | out: |
| 418 | put_cpu(); |
| 419 | return ret; |
| 420 | } |
| 421 | |
| 422 | /* Always runs in MCE context with preempt off */ |
| 423 | static int mce_ring_add(unsigned long pfn) |
| 424 | { |
| 425 | struct mce_ring *r = &__get_cpu_var(mce_ring); |
| 426 | unsigned next; |
| 427 | |
| 428 | next = (r->end + 1) % MCE_RING_SIZE; |
| 429 | if (next == r->start) |
| 430 | return -1; |
| 431 | r->ring[r->end] = pfn; |
| 432 | wmb(); |
| 433 | r->end = next; |
| 434 | return 0; |
| 435 | } |
| 436 | |
Andi Kleen | 88ccbed | 2009-02-12 13:49:36 +0100 | [diff] [blame] | 437 | int mce_available(struct cpuinfo_x86 *c) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 | { |
Andi Kleen | 04b2b1a | 2009-04-28 22:50:19 +0200 | [diff] [blame] | 439 | if (mce_disabled) |
Andi Kleen | 5b4408f | 2009-02-12 13:39:30 +0100 | [diff] [blame] | 440 | return 0; |
Akinobu Mita | 3d1712c | 2006-03-24 03:15:11 -0800 | [diff] [blame] | 441 | return cpu_has(c, X86_FEATURE_MCE) && cpu_has(c, X86_FEATURE_MCA); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | } |
| 443 | |
Andi Kleen | 9b1beaf | 2009-05-27 21:56:59 +0200 | [diff] [blame] | 444 | static void mce_schedule_work(void) |
| 445 | { |
| 446 | if (!mce_ring_empty()) { |
| 447 | struct work_struct *work = &__get_cpu_var(mce_work); |
| 448 | if (!work_pending(work)) |
| 449 | schedule_work(work); |
| 450 | } |
| 451 | } |
| 452 | |
Huang Ying | 1b2797d | 2009-05-27 21:56:51 +0200 | [diff] [blame] | 453 | /* |
| 454 | * Get the address of the instruction at the time of the machine check |
| 455 | * error. |
| 456 | */ |
Andi Kleen | 94ad847 | 2005-04-16 15:25:09 -0700 | [diff] [blame] | 457 | static inline void mce_get_rip(struct mce *m, struct pt_regs *regs) |
| 458 | { |
Huang Ying | 1b2797d | 2009-05-27 21:56:51 +0200 | [diff] [blame] | 459 | |
| 460 | if (regs && (m->mcgstatus & (MCG_STATUS_RIPV|MCG_STATUS_EIPV))) { |
H. Peter Anvin | 65ea5b0 | 2008-01-30 13:30:56 +0100 | [diff] [blame] | 461 | m->ip = regs->ip; |
Andi Kleen | 94ad847 | 2005-04-16 15:25:09 -0700 | [diff] [blame] | 462 | m->cs = regs->cs; |
| 463 | } else { |
H. Peter Anvin | 65ea5b0 | 2008-01-30 13:30:56 +0100 | [diff] [blame] | 464 | m->ip = 0; |
Andi Kleen | 94ad847 | 2005-04-16 15:25:09 -0700 | [diff] [blame] | 465 | m->cs = 0; |
| 466 | } |
Huang Ying | 1b2797d | 2009-05-27 21:56:51 +0200 | [diff] [blame] | 467 | if (rip_msr) |
Andi Kleen | 5f8c1a5 | 2009-04-29 19:29:12 +0200 | [diff] [blame] | 468 | m->ip = mce_rdmsrl(rip_msr); |
Andi Kleen | 94ad847 | 2005-04-16 15:25:09 -0700 | [diff] [blame] | 469 | } |
| 470 | |
Ingo Molnar | 11868a2 | 2009-09-23 17:49:55 +0200 | [diff] [blame] | 471 | #ifdef CONFIG_X86_LOCAL_APIC |
Andi Kleen | ccc3c31 | 2009-05-27 21:56:54 +0200 | [diff] [blame] | 472 | /* |
| 473 | * Called after interrupts have been reenabled again |
| 474 | * when a MCE happened during an interrupts off region |
| 475 | * in the kernel. |
| 476 | */ |
| 477 | asmlinkage void smp_mce_self_interrupt(struct pt_regs *regs) |
| 478 | { |
| 479 | ack_APIC_irq(); |
| 480 | exit_idle(); |
| 481 | irq_enter(); |
Andi Kleen | 9ff36ee | 2009-05-27 21:56:58 +0200 | [diff] [blame] | 482 | mce_notify_irq(); |
Andi Kleen | 9b1beaf | 2009-05-27 21:56:59 +0200 | [diff] [blame] | 483 | mce_schedule_work(); |
Andi Kleen | ccc3c31 | 2009-05-27 21:56:54 +0200 | [diff] [blame] | 484 | irq_exit(); |
| 485 | } |
| 486 | #endif |
| 487 | |
| 488 | static void mce_report_event(struct pt_regs *regs) |
| 489 | { |
| 490 | if (regs->flags & (X86_VM_MASK|X86_EFLAGS_IF)) { |
Andi Kleen | 9ff36ee | 2009-05-27 21:56:58 +0200 | [diff] [blame] | 491 | mce_notify_irq(); |
Andi Kleen | 9b1beaf | 2009-05-27 21:56:59 +0200 | [diff] [blame] | 492 | /* |
| 493 | * Triggering the work queue here is just an insurance |
| 494 | * policy in case the syscall exit notify handler |
| 495 | * doesn't run soon enough or ends up running on the |
| 496 | * wrong CPU (can happen when audit sleeps) |
| 497 | */ |
| 498 | mce_schedule_work(); |
Andi Kleen | ccc3c31 | 2009-05-27 21:56:54 +0200 | [diff] [blame] | 499 | return; |
| 500 | } |
| 501 | |
| 502 | #ifdef CONFIG_X86_LOCAL_APIC |
| 503 | /* |
| 504 | * Without APIC do not notify. The event will be picked |
| 505 | * up eventually. |
| 506 | */ |
| 507 | if (!cpu_has_apic) |
| 508 | return; |
| 509 | |
| 510 | /* |
| 511 | * When interrupts are disabled we cannot use |
| 512 | * kernel services safely. Trigger an self interrupt |
| 513 | * through the APIC to instead do the notification |
| 514 | * after interrupts are reenabled again. |
| 515 | */ |
| 516 | apic->send_IPI_self(MCE_SELF_VECTOR); |
| 517 | |
| 518 | /* |
| 519 | * Wait for idle afterwards again so that we don't leave the |
| 520 | * APIC in a non idle state because the normal APIC writes |
| 521 | * cannot exclude us. |
| 522 | */ |
| 523 | apic_wait_icr_idle(); |
| 524 | #endif |
| 525 | } |
| 526 | |
Andi Kleen | ca84f69 | 2009-05-27 21:56:57 +0200 | [diff] [blame] | 527 | DEFINE_PER_CPU(unsigned, mce_poll_count); |
| 528 | |
Thomas Gleixner | d88203d | 2007-10-23 22:37:23 +0200 | [diff] [blame] | 529 | /* |
Andi Kleen | b79109c | 2009-02-12 13:43:23 +0100 | [diff] [blame] | 530 | * Poll for corrected events or events that happened before reset. |
| 531 | * Those are just logged through /dev/mcelog. |
| 532 | * |
| 533 | * This is executed in standard interrupt context. |
Andi Kleen | ed7290d | 2009-05-27 21:56:57 +0200 | [diff] [blame] | 534 | * |
| 535 | * Note: spec recommends to panic for fatal unsignalled |
| 536 | * errors here. However this would be quite problematic -- |
| 537 | * we would need to reimplement the Monarch handling and |
| 538 | * it would mess up the exclusion between exception handler |
| 539 | * and poll hander -- * so we skip this for now. |
| 540 | * These cases should not happen anyways, or only when the CPU |
| 541 | * is already totally * confused. In this case it's likely it will |
| 542 | * not fully execute the machine check handler either. |
Andi Kleen | b79109c | 2009-02-12 13:43:23 +0100 | [diff] [blame] | 543 | */ |
Andi Kleen | ee031c3 | 2009-02-12 13:49:34 +0100 | [diff] [blame] | 544 | void machine_check_poll(enum mcp_flags flags, mce_banks_t *b) |
Andi Kleen | b79109c | 2009-02-12 13:43:23 +0100 | [diff] [blame] | 545 | { |
| 546 | struct mce m; |
| 547 | int i; |
| 548 | |
Jan Beulich | 402af0d | 2010-04-21 15:21:51 +0100 | [diff] [blame] | 549 | percpu_inc(mce_poll_count); |
Andi Kleen | ca84f69 | 2009-05-27 21:56:57 +0200 | [diff] [blame] | 550 | |
Andi Kleen | b79109c | 2009-02-12 13:43:23 +0100 | [diff] [blame] | 551 | mce_setup(&m); |
| 552 | |
Andi Kleen | 5f8c1a5 | 2009-04-29 19:29:12 +0200 | [diff] [blame] | 553 | m.mcgstatus = mce_rdmsrl(MSR_IA32_MCG_STATUS); |
Andi Kleen | b79109c | 2009-02-12 13:43:23 +0100 | [diff] [blame] | 554 | for (i = 0; i < banks; i++) { |
Andi Kleen | cebe182 | 2009-07-09 00:31:43 +0200 | [diff] [blame] | 555 | if (!mce_banks[i].ctl || !test_bit(i, *b)) |
Andi Kleen | b79109c | 2009-02-12 13:43:23 +0100 | [diff] [blame] | 556 | continue; |
| 557 | |
| 558 | m.misc = 0; |
| 559 | m.addr = 0; |
| 560 | m.bank = i; |
| 561 | m.tsc = 0; |
| 562 | |
| 563 | barrier(); |
Andi Kleen | a2d32bc | 2009-07-09 00:31:44 +0200 | [diff] [blame] | 564 | m.status = mce_rdmsrl(MSR_IA32_MCx_STATUS(i)); |
Andi Kleen | b79109c | 2009-02-12 13:43:23 +0100 | [diff] [blame] | 565 | if (!(m.status & MCI_STATUS_VAL)) |
| 566 | continue; |
| 567 | |
| 568 | /* |
Andi Kleen | ed7290d | 2009-05-27 21:56:57 +0200 | [diff] [blame] | 569 | * Uncorrected or signalled events are handled by the exception |
| 570 | * handler when it is enabled, so don't process those here. |
Andi Kleen | b79109c | 2009-02-12 13:43:23 +0100 | [diff] [blame] | 571 | * |
| 572 | * TBD do the same check for MCI_STATUS_EN here? |
| 573 | */ |
Andi Kleen | ed7290d | 2009-05-27 21:56:57 +0200 | [diff] [blame] | 574 | if (!(flags & MCP_UC) && |
| 575 | (m.status & (mce_ser ? MCI_STATUS_S : MCI_STATUS_UC))) |
Andi Kleen | b79109c | 2009-02-12 13:43:23 +0100 | [diff] [blame] | 576 | continue; |
| 577 | |
| 578 | if (m.status & MCI_STATUS_MISCV) |
Andi Kleen | a2d32bc | 2009-07-09 00:31:44 +0200 | [diff] [blame] | 579 | m.misc = mce_rdmsrl(MSR_IA32_MCx_MISC(i)); |
Andi Kleen | b79109c | 2009-02-12 13:43:23 +0100 | [diff] [blame] | 580 | if (m.status & MCI_STATUS_ADDRV) |
Andi Kleen | a2d32bc | 2009-07-09 00:31:44 +0200 | [diff] [blame] | 581 | m.addr = mce_rdmsrl(MSR_IA32_MCx_ADDR(i)); |
Andi Kleen | b79109c | 2009-02-12 13:43:23 +0100 | [diff] [blame] | 582 | |
| 583 | if (!(flags & MCP_TIMESTAMP)) |
| 584 | m.tsc = 0; |
| 585 | /* |
| 586 | * Don't get the IP here because it's unlikely to |
| 587 | * have anything to do with the actual error location. |
| 588 | */ |
Hidetoshi Seto | 62fdac5 | 2009-06-11 16:06:07 +0900 | [diff] [blame] | 589 | if (!(flags & MCP_DONTLOG) && !mce_dont_log_ce) { |
Andi Kleen | 5679af4 | 2009-04-07 17:06:55 +0200 | [diff] [blame] | 590 | mce_log(&m); |
Borislav Petkov | 98a5ae2 | 2010-05-18 13:59:05 +0200 | [diff] [blame] | 591 | atomic_notifier_call_chain(&x86_mce_decoder_chain, 0, &m); |
Andi Kleen | 5679af4 | 2009-04-07 17:06:55 +0200 | [diff] [blame] | 592 | add_taint(TAINT_MACHINE_CHECK); |
| 593 | } |
Andi Kleen | b79109c | 2009-02-12 13:43:23 +0100 | [diff] [blame] | 594 | |
| 595 | /* |
| 596 | * Clear state for this bank. |
| 597 | */ |
Andi Kleen | a2d32bc | 2009-07-09 00:31:44 +0200 | [diff] [blame] | 598 | mce_wrmsrl(MSR_IA32_MCx_STATUS(i), 0); |
Andi Kleen | b79109c | 2009-02-12 13:43:23 +0100 | [diff] [blame] | 599 | } |
| 600 | |
| 601 | /* |
| 602 | * Don't clear MCG_STATUS here because it's only defined for |
| 603 | * exceptions. |
| 604 | */ |
Andi Kleen | 88921be | 2009-05-27 21:56:51 +0200 | [diff] [blame] | 605 | |
| 606 | sync_core(); |
Andi Kleen | b79109c | 2009-02-12 13:43:23 +0100 | [diff] [blame] | 607 | } |
Andi Kleen | ea149b3 | 2009-04-29 19:31:00 +0200 | [diff] [blame] | 608 | EXPORT_SYMBOL_GPL(machine_check_poll); |
Andi Kleen | b79109c | 2009-02-12 13:43:23 +0100 | [diff] [blame] | 609 | |
| 610 | /* |
Andi Kleen | bd19a5e | 2009-05-27 21:56:55 +0200 | [diff] [blame] | 611 | * Do a quick check if any of the events requires a panic. |
| 612 | * This decides if we keep the events around or clear them. |
| 613 | */ |
| 614 | static int mce_no_way_out(struct mce *m, char **msg) |
| 615 | { |
| 616 | int i; |
| 617 | |
| 618 | for (i = 0; i < banks; i++) { |
Andi Kleen | a2d32bc | 2009-07-09 00:31:44 +0200 | [diff] [blame] | 619 | m->status = mce_rdmsrl(MSR_IA32_MCx_STATUS(i)); |
Andi Kleen | bd19a5e | 2009-05-27 21:56:55 +0200 | [diff] [blame] | 620 | if (mce_severity(m, tolerant, msg) >= MCE_PANIC_SEVERITY) |
| 621 | return 1; |
| 622 | } |
| 623 | return 0; |
| 624 | } |
| 625 | |
| 626 | /* |
Andi Kleen | 3c07979 | 2009-05-27 21:56:55 +0200 | [diff] [blame] | 627 | * Variable to establish order between CPUs while scanning. |
| 628 | * Each CPU spins initially until executing is equal its number. |
| 629 | */ |
| 630 | static atomic_t mce_executing; |
| 631 | |
| 632 | /* |
| 633 | * Defines order of CPUs on entry. First CPU becomes Monarch. |
| 634 | */ |
| 635 | static atomic_t mce_callin; |
| 636 | |
| 637 | /* |
| 638 | * Check if a timeout waiting for other CPUs happened. |
| 639 | */ |
| 640 | static int mce_timed_out(u64 *t) |
| 641 | { |
| 642 | /* |
| 643 | * The others already did panic for some reason. |
| 644 | * Bail out like in a timeout. |
| 645 | * rmb() to tell the compiler that system_state |
| 646 | * might have been modified by someone else. |
| 647 | */ |
| 648 | rmb(); |
| 649 | if (atomic_read(&mce_paniced)) |
| 650 | wait_for_panic(); |
| 651 | if (!monarch_timeout) |
| 652 | goto out; |
| 653 | if ((s64)*t < SPINUNIT) { |
| 654 | /* CHECKME: Make panic default for 1 too? */ |
| 655 | if (tolerant < 1) |
| 656 | mce_panic("Timeout synchronizing machine check over CPUs", |
| 657 | NULL, NULL); |
| 658 | cpu_missing = 1; |
| 659 | return 1; |
| 660 | } |
| 661 | *t -= SPINUNIT; |
| 662 | out: |
| 663 | touch_nmi_watchdog(); |
| 664 | return 0; |
| 665 | } |
| 666 | |
| 667 | /* |
| 668 | * The Monarch's reign. The Monarch is the CPU who entered |
| 669 | * the machine check handler first. It waits for the others to |
| 670 | * raise the exception too and then grades them. When any |
| 671 | * error is fatal panic. Only then let the others continue. |
| 672 | * |
| 673 | * The other CPUs entering the MCE handler will be controlled by the |
| 674 | * Monarch. They are called Subjects. |
| 675 | * |
| 676 | * This way we prevent any potential data corruption in a unrecoverable case |
| 677 | * and also makes sure always all CPU's errors are examined. |
| 678 | * |
Hidetoshi Seto | 680b6cf | 2009-08-26 16:20:36 +0900 | [diff] [blame] | 679 | * Also this detects the case of a machine check event coming from outer |
Andi Kleen | 3c07979 | 2009-05-27 21:56:55 +0200 | [diff] [blame] | 680 | * space (not detected by any CPUs) In this case some external agent wants |
| 681 | * us to shut down, so panic too. |
| 682 | * |
| 683 | * The other CPUs might still decide to panic if the handler happens |
| 684 | * in a unrecoverable place, but in this case the system is in a semi-stable |
| 685 | * state and won't corrupt anything by itself. It's ok to let the others |
| 686 | * continue for a bit first. |
| 687 | * |
| 688 | * All the spin loops have timeouts; when a timeout happens a CPU |
| 689 | * typically elects itself to be Monarch. |
| 690 | */ |
| 691 | static void mce_reign(void) |
| 692 | { |
| 693 | int cpu; |
| 694 | struct mce *m = NULL; |
| 695 | int global_worst = 0; |
| 696 | char *msg = NULL; |
| 697 | char *nmsg = NULL; |
| 698 | |
| 699 | /* |
| 700 | * This CPU is the Monarch and the other CPUs have run |
| 701 | * through their handlers. |
| 702 | * Grade the severity of the errors of all the CPUs. |
| 703 | */ |
| 704 | for_each_possible_cpu(cpu) { |
| 705 | int severity = mce_severity(&per_cpu(mces_seen, cpu), tolerant, |
| 706 | &nmsg); |
| 707 | if (severity > global_worst) { |
| 708 | msg = nmsg; |
| 709 | global_worst = severity; |
| 710 | m = &per_cpu(mces_seen, cpu); |
| 711 | } |
| 712 | } |
| 713 | |
| 714 | /* |
| 715 | * Cannot recover? Panic here then. |
| 716 | * This dumps all the mces in the log buffer and stops the |
| 717 | * other CPUs. |
| 718 | */ |
| 719 | if (m && global_worst >= MCE_PANIC_SEVERITY && tolerant < 3) |
Andi Kleen | ac96037 | 2009-05-27 21:56:58 +0200 | [diff] [blame] | 720 | mce_panic("Fatal Machine check", m, msg); |
Andi Kleen | 3c07979 | 2009-05-27 21:56:55 +0200 | [diff] [blame] | 721 | |
| 722 | /* |
| 723 | * For UC somewhere we let the CPU who detects it handle it. |
| 724 | * Also must let continue the others, otherwise the handling |
| 725 | * CPU could deadlock on a lock. |
| 726 | */ |
| 727 | |
| 728 | /* |
| 729 | * No machine check event found. Must be some external |
| 730 | * source or one CPU is hung. Panic. |
| 731 | */ |
Hidetoshi Seto | 680b6cf | 2009-08-26 16:20:36 +0900 | [diff] [blame] | 732 | if (global_worst <= MCE_KEEP_SEVERITY && tolerant < 3) |
Andi Kleen | 3c07979 | 2009-05-27 21:56:55 +0200 | [diff] [blame] | 733 | mce_panic("Machine check from unknown source", NULL, NULL); |
| 734 | |
| 735 | /* |
| 736 | * Now clear all the mces_seen so that they don't reappear on |
| 737 | * the next mce. |
| 738 | */ |
| 739 | for_each_possible_cpu(cpu) |
| 740 | memset(&per_cpu(mces_seen, cpu), 0, sizeof(struct mce)); |
| 741 | } |
| 742 | |
| 743 | static atomic_t global_nwo; |
| 744 | |
| 745 | /* |
| 746 | * Start of Monarch synchronization. This waits until all CPUs have |
| 747 | * entered the exception handler and then determines if any of them |
| 748 | * saw a fatal event that requires panic. Then it executes them |
| 749 | * in the entry order. |
| 750 | * TBD double check parallel CPU hotunplug |
| 751 | */ |
Hidetoshi Seto | 7fb06fc | 2009-06-15 18:18:43 +0900 | [diff] [blame] | 752 | static int mce_start(int *no_way_out) |
Andi Kleen | 3c07979 | 2009-05-27 21:56:55 +0200 | [diff] [blame] | 753 | { |
Hidetoshi Seto | 7fb06fc | 2009-06-15 18:18:43 +0900 | [diff] [blame] | 754 | int order; |
Andi Kleen | 3c07979 | 2009-05-27 21:56:55 +0200 | [diff] [blame] | 755 | int cpus = num_online_cpus(); |
| 756 | u64 timeout = (u64)monarch_timeout * NSEC_PER_USEC; |
| 757 | |
Hidetoshi Seto | 7fb06fc | 2009-06-15 18:18:43 +0900 | [diff] [blame] | 758 | if (!timeout) |
| 759 | return -1; |
Andi Kleen | 3c07979 | 2009-05-27 21:56:55 +0200 | [diff] [blame] | 760 | |
Hidetoshi Seto | 7fb06fc | 2009-06-15 18:18:43 +0900 | [diff] [blame] | 761 | atomic_add(*no_way_out, &global_nwo); |
Huang Ying | 184e1fd | 2009-06-15 15:37:07 +0800 | [diff] [blame] | 762 | /* |
| 763 | * global_nwo should be updated before mce_callin |
| 764 | */ |
| 765 | smp_wmb(); |
Borislav Petkov | a95436e | 2009-06-20 23:28:22 -0700 | [diff] [blame] | 766 | order = atomic_inc_return(&mce_callin); |
Andi Kleen | 3c07979 | 2009-05-27 21:56:55 +0200 | [diff] [blame] | 767 | |
| 768 | /* |
| 769 | * Wait for everyone. |
| 770 | */ |
| 771 | while (atomic_read(&mce_callin) != cpus) { |
| 772 | if (mce_timed_out(&timeout)) { |
| 773 | atomic_set(&global_nwo, 0); |
Hidetoshi Seto | 7fb06fc | 2009-06-15 18:18:43 +0900 | [diff] [blame] | 774 | return -1; |
Andi Kleen | 3c07979 | 2009-05-27 21:56:55 +0200 | [diff] [blame] | 775 | } |
| 776 | ndelay(SPINUNIT); |
| 777 | } |
| 778 | |
| 779 | /* |
Huang Ying | 184e1fd | 2009-06-15 15:37:07 +0800 | [diff] [blame] | 780 | * mce_callin should be read before global_nwo |
| 781 | */ |
| 782 | smp_rmb(); |
Hidetoshi Seto | 7fb06fc | 2009-06-15 18:18:43 +0900 | [diff] [blame] | 783 | |
| 784 | if (order == 1) { |
| 785 | /* |
| 786 | * Monarch: Starts executing now, the others wait. |
| 787 | */ |
| 788 | atomic_set(&mce_executing, 1); |
| 789 | } else { |
| 790 | /* |
| 791 | * Subject: Now start the scanning loop one by one in |
| 792 | * the original callin order. |
| 793 | * This way when there are any shared banks it will be |
| 794 | * only seen by one CPU before cleared, avoiding duplicates. |
| 795 | */ |
| 796 | while (atomic_read(&mce_executing) < order) { |
| 797 | if (mce_timed_out(&timeout)) { |
| 798 | atomic_set(&global_nwo, 0); |
| 799 | return -1; |
| 800 | } |
| 801 | ndelay(SPINUNIT); |
| 802 | } |
| 803 | } |
| 804 | |
Huang Ying | 184e1fd | 2009-06-15 15:37:07 +0800 | [diff] [blame] | 805 | /* |
Andi Kleen | 3c07979 | 2009-05-27 21:56:55 +0200 | [diff] [blame] | 806 | * Cache the global no_way_out state. |
| 807 | */ |
Hidetoshi Seto | 7fb06fc | 2009-06-15 18:18:43 +0900 | [diff] [blame] | 808 | *no_way_out = atomic_read(&global_nwo); |
Andi Kleen | 3c07979 | 2009-05-27 21:56:55 +0200 | [diff] [blame] | 809 | |
Hidetoshi Seto | 7fb06fc | 2009-06-15 18:18:43 +0900 | [diff] [blame] | 810 | return order; |
Andi Kleen | 3c07979 | 2009-05-27 21:56:55 +0200 | [diff] [blame] | 811 | } |
| 812 | |
| 813 | /* |
| 814 | * Synchronize between CPUs after main scanning loop. |
| 815 | * This invokes the bulk of the Monarch processing. |
| 816 | */ |
| 817 | static int mce_end(int order) |
| 818 | { |
| 819 | int ret = -1; |
| 820 | u64 timeout = (u64)monarch_timeout * NSEC_PER_USEC; |
| 821 | |
| 822 | if (!timeout) |
| 823 | goto reset; |
| 824 | if (order < 0) |
| 825 | goto reset; |
| 826 | |
| 827 | /* |
| 828 | * Allow others to run. |
| 829 | */ |
| 830 | atomic_inc(&mce_executing); |
| 831 | |
| 832 | if (order == 1) { |
| 833 | /* CHECKME: Can this race with a parallel hotplug? */ |
| 834 | int cpus = num_online_cpus(); |
| 835 | |
| 836 | /* |
| 837 | * Monarch: Wait for everyone to go through their scanning |
| 838 | * loops. |
| 839 | */ |
| 840 | while (atomic_read(&mce_executing) <= cpus) { |
| 841 | if (mce_timed_out(&timeout)) |
| 842 | goto reset; |
| 843 | ndelay(SPINUNIT); |
| 844 | } |
| 845 | |
| 846 | mce_reign(); |
| 847 | barrier(); |
| 848 | ret = 0; |
| 849 | } else { |
| 850 | /* |
| 851 | * Subject: Wait for Monarch to finish. |
| 852 | */ |
| 853 | while (atomic_read(&mce_executing) != 0) { |
| 854 | if (mce_timed_out(&timeout)) |
| 855 | goto reset; |
| 856 | ndelay(SPINUNIT); |
| 857 | } |
| 858 | |
| 859 | /* |
| 860 | * Don't reset anything. That's done by the Monarch. |
| 861 | */ |
| 862 | return 0; |
| 863 | } |
| 864 | |
| 865 | /* |
| 866 | * Reset all global state. |
| 867 | */ |
| 868 | reset: |
| 869 | atomic_set(&global_nwo, 0); |
| 870 | atomic_set(&mce_callin, 0); |
| 871 | barrier(); |
| 872 | |
| 873 | /* |
| 874 | * Let others run again. |
| 875 | */ |
| 876 | atomic_set(&mce_executing, 0); |
| 877 | return ret; |
| 878 | } |
| 879 | |
Andi Kleen | 9b1beaf | 2009-05-27 21:56:59 +0200 | [diff] [blame] | 880 | /* |
| 881 | * Check if the address reported by the CPU is in a format we can parse. |
| 882 | * It would be possible to add code for most other cases, but all would |
| 883 | * be somewhat complicated (e.g. segment offset would require an instruction |
| 884 | * parser). So only support physical addresses upto page granuality for now. |
| 885 | */ |
| 886 | static int mce_usable_address(struct mce *m) |
| 887 | { |
| 888 | if (!(m->status & MCI_STATUS_MISCV) || !(m->status & MCI_STATUS_ADDRV)) |
| 889 | return 0; |
| 890 | if ((m->misc & 0x3f) > PAGE_SHIFT) |
| 891 | return 0; |
| 892 | if (((m->misc >> 6) & 7) != MCM_ADDR_PHYS) |
| 893 | return 0; |
| 894 | return 1; |
| 895 | } |
| 896 | |
Andi Kleen | 3c07979 | 2009-05-27 21:56:55 +0200 | [diff] [blame] | 897 | static void mce_clear_state(unsigned long *toclear) |
| 898 | { |
| 899 | int i; |
| 900 | |
| 901 | for (i = 0; i < banks; i++) { |
| 902 | if (test_bit(i, toclear)) |
Andi Kleen | a2d32bc | 2009-07-09 00:31:44 +0200 | [diff] [blame] | 903 | mce_wrmsrl(MSR_IA32_MCx_STATUS(i), 0); |
Andi Kleen | 3c07979 | 2009-05-27 21:56:55 +0200 | [diff] [blame] | 904 | } |
| 905 | } |
| 906 | |
| 907 | /* |
Andi Kleen | b79109c | 2009-02-12 13:43:23 +0100 | [diff] [blame] | 908 | * The actual machine check handler. This only handles real |
| 909 | * exceptions when something got corrupted coming in through int 18. |
| 910 | * |
| 911 | * This is executed in NMI context not subject to normal locking rules. This |
| 912 | * implies that most kernel services cannot be safely used. Don't even |
| 913 | * think about putting a printk in there! |
Andi Kleen | 3c07979 | 2009-05-27 21:56:55 +0200 | [diff] [blame] | 914 | * |
| 915 | * On Intel systems this is entered on all CPUs in parallel through |
| 916 | * MCE broadcast. However some CPUs might be broken beyond repair, |
| 917 | * so be always careful when synchronizing with others. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 918 | */ |
Ingo Molnar | e9eee03 | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 919 | void do_machine_check(struct pt_regs *regs, long error_code) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 920 | { |
Andi Kleen | 3c07979 | 2009-05-27 21:56:55 +0200 | [diff] [blame] | 921 | struct mce m, *final; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 922 | int i; |
Andi Kleen | 3c07979 | 2009-05-27 21:56:55 +0200 | [diff] [blame] | 923 | int worst = 0; |
| 924 | int severity; |
| 925 | /* |
| 926 | * Establish sequential order between the CPUs entering the machine |
| 927 | * check handler. |
| 928 | */ |
Hidetoshi Seto | 7fb06fc | 2009-06-15 18:18:43 +0900 | [diff] [blame] | 929 | int order; |
Tim Hockin | bd78432 | 2007-07-21 17:10:37 +0200 | [diff] [blame] | 930 | /* |
| 931 | * If no_way_out gets set, there is no safe way to recover from this |
| 932 | * MCE. If tolerant is cranked up, we'll try anyway. |
| 933 | */ |
| 934 | int no_way_out = 0; |
| 935 | /* |
| 936 | * If kill_it gets set, there might be a way to recover from this |
| 937 | * error. |
| 938 | */ |
| 939 | int kill_it = 0; |
Andi Kleen | b79109c | 2009-02-12 13:43:23 +0100 | [diff] [blame] | 940 | DECLARE_BITMAP(toclear, MAX_NR_BANKS); |
Andi Kleen | bd19a5e | 2009-05-27 21:56:55 +0200 | [diff] [blame] | 941 | char *msg = "Unknown"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 942 | |
Andi Kleen | 553f265 | 2006-04-07 19:49:57 +0200 | [diff] [blame] | 943 | atomic_inc(&mce_entry); |
| 944 | |
Jan Beulich | 402af0d | 2010-04-21 15:21:51 +0100 | [diff] [blame] | 945 | percpu_inc(mce_exception_count); |
Andi Kleen | 01ca79f | 2009-05-27 21:56:52 +0200 | [diff] [blame] | 946 | |
Andi Kleen | b79109c | 2009-02-12 13:43:23 +0100 | [diff] [blame] | 947 | if (notify_die(DIE_NMI, "machine check", regs, error_code, |
Jan Beulich | 22f5991 | 2008-01-30 13:31:23 +0100 | [diff] [blame] | 948 | 18, SIGKILL) == NOTIFY_STOP) |
Andi Kleen | 3256169 | 2009-05-27 21:56:53 +0200 | [diff] [blame] | 949 | goto out; |
Andi Kleen | b79109c | 2009-02-12 13:43:23 +0100 | [diff] [blame] | 950 | if (!banks) |
Andi Kleen | 3256169 | 2009-05-27 21:56:53 +0200 | [diff] [blame] | 951 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 952 | |
Andi Kleen | b5f2fa4 | 2009-02-12 13:43:22 +0100 | [diff] [blame] | 953 | mce_setup(&m); |
| 954 | |
Andi Kleen | 5f8c1a5 | 2009-04-29 19:29:12 +0200 | [diff] [blame] | 955 | m.mcgstatus = mce_rdmsrl(MSR_IA32_MCG_STATUS); |
Andi Kleen | 3c07979 | 2009-05-27 21:56:55 +0200 | [diff] [blame] | 956 | final = &__get_cpu_var(mces_seen); |
| 957 | *final = m; |
| 958 | |
Hidetoshi Seto | 680b6cf | 2009-08-26 16:20:36 +0900 | [diff] [blame] | 959 | no_way_out = mce_no_way_out(&m, &msg); |
| 960 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 961 | barrier(); |
| 962 | |
Andi Kleen | 3c07979 | 2009-05-27 21:56:55 +0200 | [diff] [blame] | 963 | /* |
Andi Kleen | ed7290d | 2009-05-27 21:56:57 +0200 | [diff] [blame] | 964 | * When no restart IP must always kill or panic. |
| 965 | */ |
| 966 | if (!(m.mcgstatus & MCG_STATUS_RIPV)) |
| 967 | kill_it = 1; |
| 968 | |
| 969 | /* |
Andi Kleen | 3c07979 | 2009-05-27 21:56:55 +0200 | [diff] [blame] | 970 | * Go through all the banks in exclusion of the other CPUs. |
| 971 | * This way we don't report duplicated events on shared banks |
| 972 | * because the first one to see it will clear it. |
| 973 | */ |
Hidetoshi Seto | 7fb06fc | 2009-06-15 18:18:43 +0900 | [diff] [blame] | 974 | order = mce_start(&no_way_out); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 975 | for (i = 0; i < banks; i++) { |
Andi Kleen | b79109c | 2009-02-12 13:43:23 +0100 | [diff] [blame] | 976 | __clear_bit(i, toclear); |
Andi Kleen | cebe182 | 2009-07-09 00:31:43 +0200 | [diff] [blame] | 977 | if (!mce_banks[i].ctl) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 978 | continue; |
Thomas Gleixner | d88203d | 2007-10-23 22:37:23 +0200 | [diff] [blame] | 979 | |
| 980 | m.misc = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 981 | m.addr = 0; |
| 982 | m.bank = i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 983 | |
Andi Kleen | a2d32bc | 2009-07-09 00:31:44 +0200 | [diff] [blame] | 984 | m.status = mce_rdmsrl(MSR_IA32_MCx_STATUS(i)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 985 | if ((m.status & MCI_STATUS_VAL) == 0) |
| 986 | continue; |
| 987 | |
Andi Kleen | b79109c | 2009-02-12 13:43:23 +0100 | [diff] [blame] | 988 | /* |
Andi Kleen | ed7290d | 2009-05-27 21:56:57 +0200 | [diff] [blame] | 989 | * Non uncorrected or non signaled errors are handled by |
| 990 | * machine_check_poll. Leave them alone, unless this panics. |
Andi Kleen | b79109c | 2009-02-12 13:43:23 +0100 | [diff] [blame] | 991 | */ |
Andi Kleen | ed7290d | 2009-05-27 21:56:57 +0200 | [diff] [blame] | 992 | if (!(m.status & (mce_ser ? MCI_STATUS_S : MCI_STATUS_UC)) && |
| 993 | !no_way_out) |
Andi Kleen | b79109c | 2009-02-12 13:43:23 +0100 | [diff] [blame] | 994 | continue; |
| 995 | |
| 996 | /* |
| 997 | * Set taint even when machine check was not enabled. |
| 998 | */ |
| 999 | add_taint(TAINT_MACHINE_CHECK); |
| 1000 | |
Andi Kleen | ed7290d | 2009-05-27 21:56:57 +0200 | [diff] [blame] | 1001 | severity = mce_severity(&m, tolerant, NULL); |
Andi Kleen | b79109c | 2009-02-12 13:43:23 +0100 | [diff] [blame] | 1002 | |
Andi Kleen | ed7290d | 2009-05-27 21:56:57 +0200 | [diff] [blame] | 1003 | /* |
| 1004 | * When machine check was for corrected handler don't touch, |
| 1005 | * unless we're panicing. |
| 1006 | */ |
| 1007 | if (severity == MCE_KEEP_SEVERITY && !no_way_out) |
| 1008 | continue; |
| 1009 | __set_bit(i, toclear); |
| 1010 | if (severity == MCE_NO_SEVERITY) { |
Andi Kleen | b79109c | 2009-02-12 13:43:23 +0100 | [diff] [blame] | 1011 | /* |
| 1012 | * Machine check event was not enabled. Clear, but |
| 1013 | * ignore. |
| 1014 | */ |
| 1015 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1016 | } |
| 1017 | |
Andi Kleen | ed7290d | 2009-05-27 21:56:57 +0200 | [diff] [blame] | 1018 | /* |
| 1019 | * Kill on action required. |
| 1020 | */ |
| 1021 | if (severity == MCE_AR_SEVERITY) |
| 1022 | kill_it = 1; |
| 1023 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1024 | if (m.status & MCI_STATUS_MISCV) |
Andi Kleen | a2d32bc | 2009-07-09 00:31:44 +0200 | [diff] [blame] | 1025 | m.misc = mce_rdmsrl(MSR_IA32_MCx_MISC(i)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1026 | if (m.status & MCI_STATUS_ADDRV) |
Andi Kleen | a2d32bc | 2009-07-09 00:31:44 +0200 | [diff] [blame] | 1027 | m.addr = mce_rdmsrl(MSR_IA32_MCx_ADDR(i)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1028 | |
Andi Kleen | 9b1beaf | 2009-05-27 21:56:59 +0200 | [diff] [blame] | 1029 | /* |
| 1030 | * Action optional error. Queue address for later processing. |
| 1031 | * When the ring overflows we just ignore the AO error. |
| 1032 | * RED-PEN add some logging mechanism when |
| 1033 | * usable_address or mce_add_ring fails. |
| 1034 | * RED-PEN don't ignore overflow for tolerant == 0 |
| 1035 | */ |
| 1036 | if (severity == MCE_AO_SEVERITY && mce_usable_address(&m)) |
| 1037 | mce_ring_add(m.addr >> PAGE_SHIFT); |
| 1038 | |
Andi Kleen | 94ad847 | 2005-04-16 15:25:09 -0700 | [diff] [blame] | 1039 | mce_get_rip(&m, regs); |
Andi Kleen | b79109c | 2009-02-12 13:43:23 +0100 | [diff] [blame] | 1040 | mce_log(&m); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1041 | |
Andi Kleen | 3c07979 | 2009-05-27 21:56:55 +0200 | [diff] [blame] | 1042 | if (severity > worst) { |
| 1043 | *final = m; |
| 1044 | worst = severity; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1045 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1046 | } |
| 1047 | |
Andi Kleen | 3c07979 | 2009-05-27 21:56:55 +0200 | [diff] [blame] | 1048 | if (!no_way_out) |
| 1049 | mce_clear_state(toclear); |
| 1050 | |
Ingo Molnar | e9eee03 | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 1051 | /* |
Andi Kleen | 3c07979 | 2009-05-27 21:56:55 +0200 | [diff] [blame] | 1052 | * Do most of the synchronization with other CPUs. |
| 1053 | * When there's any problem use only local no_way_out state. |
Ingo Molnar | e9eee03 | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 1054 | */ |
Andi Kleen | 3c07979 | 2009-05-27 21:56:55 +0200 | [diff] [blame] | 1055 | if (mce_end(order) < 0) |
| 1056 | no_way_out = worst >= MCE_PANIC_SEVERITY; |
Tim Hockin | bd78432 | 2007-07-21 17:10:37 +0200 | [diff] [blame] | 1057 | |
| 1058 | /* |
| 1059 | * If we have decided that we just CAN'T continue, and the user |
Ingo Molnar | e9eee03 | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 1060 | * has not set tolerant to an insane level, give up and die. |
Andi Kleen | 3c07979 | 2009-05-27 21:56:55 +0200 | [diff] [blame] | 1061 | * |
| 1062 | * This is mainly used in the case when the system doesn't |
| 1063 | * support MCE broadcasting or it has been disabled. |
Tim Hockin | bd78432 | 2007-07-21 17:10:37 +0200 | [diff] [blame] | 1064 | */ |
| 1065 | if (no_way_out && tolerant < 3) |
Andi Kleen | ac96037 | 2009-05-27 21:56:58 +0200 | [diff] [blame] | 1066 | mce_panic("Fatal machine check on current CPU", final, msg); |
Tim Hockin | bd78432 | 2007-07-21 17:10:37 +0200 | [diff] [blame] | 1067 | |
| 1068 | /* |
| 1069 | * If the error seems to be unrecoverable, something should be |
| 1070 | * done. Try to kill as little as possible. If we can kill just |
| 1071 | * one task, do that. If the user has set the tolerance very |
| 1072 | * high, don't try to do anything at all. |
| 1073 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1074 | |
Andi Kleen | ed7290d | 2009-05-27 21:56:57 +0200 | [diff] [blame] | 1075 | if (kill_it && tolerant < 3) |
| 1076 | force_sig(SIGBUS, current); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1077 | |
Tim Hockin | e02e68d | 2007-07-21 17:10:36 +0200 | [diff] [blame] | 1078 | /* notify userspace ASAP */ |
| 1079 | set_thread_flag(TIF_MCE_NOTIFY); |
| 1080 | |
Andi Kleen | 3c07979 | 2009-05-27 21:56:55 +0200 | [diff] [blame] | 1081 | if (worst > 0) |
| 1082 | mce_report_event(regs); |
Andi Kleen | 5f8c1a5 | 2009-04-29 19:29:12 +0200 | [diff] [blame] | 1083 | mce_wrmsrl(MSR_IA32_MCG_STATUS, 0); |
Andi Kleen | 3256169 | 2009-05-27 21:56:53 +0200 | [diff] [blame] | 1084 | out: |
Andi Kleen | 553f265 | 2006-04-07 19:49:57 +0200 | [diff] [blame] | 1085 | atomic_dec(&mce_entry); |
Andi Kleen | 88921be | 2009-05-27 21:56:51 +0200 | [diff] [blame] | 1086 | sync_core(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1087 | } |
Andi Kleen | ea149b3 | 2009-04-29 19:31:00 +0200 | [diff] [blame] | 1088 | EXPORT_SYMBOL_GPL(do_machine_check); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1089 | |
Andi Kleen | 9b1beaf | 2009-05-27 21:56:59 +0200 | [diff] [blame] | 1090 | /* dummy to break dependency. actual code is in mm/memory-failure.c */ |
| 1091 | void __attribute__((weak)) memory_failure(unsigned long pfn, int vector) |
| 1092 | { |
| 1093 | printk(KERN_ERR "Action optional memory failure at %lx ignored\n", pfn); |
| 1094 | } |
| 1095 | |
| 1096 | /* |
| 1097 | * Called after mce notification in process context. This code |
| 1098 | * is allowed to sleep. Call the high level VM handler to process |
| 1099 | * any corrupted pages. |
| 1100 | * Assume that the work queue code only calls this one at a time |
| 1101 | * per CPU. |
| 1102 | * Note we don't disable preemption, so this code might run on the wrong |
| 1103 | * CPU. In this case the event is picked up by the scheduled work queue. |
| 1104 | * This is merely a fast path to expedite processing in some common |
| 1105 | * cases. |
| 1106 | */ |
| 1107 | void mce_notify_process(void) |
| 1108 | { |
| 1109 | unsigned long pfn; |
| 1110 | mce_notify_irq(); |
| 1111 | while (mce_ring_get(&pfn)) |
| 1112 | memory_failure(pfn, MCE_VECTOR); |
| 1113 | } |
| 1114 | |
| 1115 | static void mce_process_work(struct work_struct *dummy) |
| 1116 | { |
| 1117 | mce_notify_process(); |
| 1118 | } |
| 1119 | |
Dmitriy Zavin | 15d5f83 | 2006-09-26 10:52:42 +0200 | [diff] [blame] | 1120 | #ifdef CONFIG_X86_MCE_INTEL |
| 1121 | /*** |
| 1122 | * mce_log_therm_throt_event - Logs the thermal throttling event to mcelog |
Simon Arlott | 676b185 | 2007-10-20 01:25:36 +0200 | [diff] [blame] | 1123 | * @cpu: The CPU on which the event occurred. |
Dmitriy Zavin | 15d5f83 | 2006-09-26 10:52:42 +0200 | [diff] [blame] | 1124 | * @status: Event status information |
| 1125 | * |
| 1126 | * This function should be called by the thermal interrupt after the |
| 1127 | * event has been processed and the decision was made to log the event |
| 1128 | * further. |
| 1129 | * |
| 1130 | * The status parameter will be saved to the 'status' field of 'struct mce' |
| 1131 | * and historically has been the register value of the |
| 1132 | * MSR_IA32_THERMAL_STATUS (Intel) msr. |
| 1133 | */ |
Andi Kleen | b5f2fa4 | 2009-02-12 13:43:22 +0100 | [diff] [blame] | 1134 | void mce_log_therm_throt_event(__u64 status) |
Dmitriy Zavin | 15d5f83 | 2006-09-26 10:52:42 +0200 | [diff] [blame] | 1135 | { |
| 1136 | struct mce m; |
| 1137 | |
Andi Kleen | b5f2fa4 | 2009-02-12 13:43:22 +0100 | [diff] [blame] | 1138 | mce_setup(&m); |
Dmitriy Zavin | 15d5f83 | 2006-09-26 10:52:42 +0200 | [diff] [blame] | 1139 | m.bank = MCE_THERMAL_BANK; |
| 1140 | m.status = status; |
Dmitriy Zavin | 15d5f83 | 2006-09-26 10:52:42 +0200 | [diff] [blame] | 1141 | mce_log(&m); |
| 1142 | } |
| 1143 | #endif /* CONFIG_X86_MCE_INTEL */ |
| 1144 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1145 | /* |
Tim Hockin | 8a336b0 | 2007-05-02 19:27:19 +0200 | [diff] [blame] | 1146 | * Periodic polling timer for "silent" machine check errors. If the |
| 1147 | * poller finds an MCE, poll 2x faster. When the poller finds no more |
| 1148 | * errors, poll 2x slower (up to check_interval seconds). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1149 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1150 | static int check_interval = 5 * 60; /* 5 minutes */ |
Ingo Molnar | e9eee03 | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 1151 | |
Tejun Heo | 245b2e7 | 2009-06-24 15:13:48 +0900 | [diff] [blame] | 1152 | static DEFINE_PER_CPU(int, mce_next_interval); /* in jiffies */ |
Andi Kleen | 52d168e | 2009-02-12 13:39:29 +0100 | [diff] [blame] | 1153 | static DEFINE_PER_CPU(struct timer_list, mce_timer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1154 | |
Borislav Petkov | 5e09954 | 2009-10-16 12:31:32 +0200 | [diff] [blame] | 1155 | static void mce_start_timer(unsigned long data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1156 | { |
Andi Kleen | 52d168e | 2009-02-12 13:39:29 +0100 | [diff] [blame] | 1157 | struct timer_list *t = &per_cpu(mce_timer, data); |
Andi Kleen | 6298c51 | 2009-04-09 12:28:22 +0200 | [diff] [blame] | 1158 | int *n; |
Andi Kleen | 52d168e | 2009-02-12 13:39:29 +0100 | [diff] [blame] | 1159 | |
| 1160 | WARN_ON(smp_processor_id() != data); |
| 1161 | |
Tejun Heo | 7b543a5 | 2010-12-18 16:30:05 +0100 | [diff] [blame^] | 1162 | if (mce_available(__this_cpu_ptr(&cpu_info))) { |
Andi Kleen | ee031c3 | 2009-02-12 13:49:34 +0100 | [diff] [blame] | 1163 | machine_check_poll(MCP_TIMESTAMP, |
| 1164 | &__get_cpu_var(mce_poll_banks)); |
Ingo Molnar | e9eee03 | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 1165 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1166 | |
| 1167 | /* |
Tim Hockin | e02e68d | 2007-07-21 17:10:36 +0200 | [diff] [blame] | 1168 | * Alert userspace if needed. If we logged an MCE, reduce the |
| 1169 | * polling interval, otherwise increase the polling interval. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1170 | */ |
Tejun Heo | 245b2e7 | 2009-06-24 15:13:48 +0900 | [diff] [blame] | 1171 | n = &__get_cpu_var(mce_next_interval); |
Andi Kleen | 9ff36ee | 2009-05-27 21:56:58 +0200 | [diff] [blame] | 1172 | if (mce_notify_irq()) |
Andi Kleen | 6298c51 | 2009-04-09 12:28:22 +0200 | [diff] [blame] | 1173 | *n = max(*n/2, HZ/100); |
Hidetoshi Seto | 14a0253 | 2009-04-30 16:04:51 +0900 | [diff] [blame] | 1174 | else |
Andi Kleen | 6298c51 | 2009-04-09 12:28:22 +0200 | [diff] [blame] | 1175 | *n = min(*n*2, (int)round_jiffies_relative(check_interval*HZ)); |
Tim Hockin | 8a336b0 | 2007-05-02 19:27:19 +0200 | [diff] [blame] | 1176 | |
Andi Kleen | 6298c51 | 2009-04-09 12:28:22 +0200 | [diff] [blame] | 1177 | t->expires = jiffies + *n; |
Hidetoshi Seto | 5be6066 | 2009-06-24 09:21:10 +0900 | [diff] [blame] | 1178 | add_timer_on(t, smp_processor_id()); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1179 | } |
| 1180 | |
Andi Kleen | 9bd9840 | 2009-02-12 13:39:28 +0100 | [diff] [blame] | 1181 | static void mce_do_trigger(struct work_struct *work) |
| 1182 | { |
Hidetoshi Seto | 1020bcb | 2009-06-15 17:20:57 +0900 | [diff] [blame] | 1183 | call_usermodehelper(mce_helper, mce_helper_argv, NULL, UMH_NO_WAIT); |
Andi Kleen | 9bd9840 | 2009-02-12 13:39:28 +0100 | [diff] [blame] | 1184 | } |
| 1185 | |
| 1186 | static DECLARE_WORK(mce_trigger_work, mce_do_trigger); |
| 1187 | |
Tim Hockin | e02e68d | 2007-07-21 17:10:36 +0200 | [diff] [blame] | 1188 | /* |
Andi Kleen | 9bd9840 | 2009-02-12 13:39:28 +0100 | [diff] [blame] | 1189 | * Notify the user(s) about new machine check events. |
| 1190 | * Can be called from interrupt context, but not from machine check/NMI |
| 1191 | * context. |
Tim Hockin | e02e68d | 2007-07-21 17:10:36 +0200 | [diff] [blame] | 1192 | */ |
Andi Kleen | 9ff36ee | 2009-05-27 21:56:58 +0200 | [diff] [blame] | 1193 | int mce_notify_irq(void) |
Tim Hockin | e02e68d | 2007-07-21 17:10:36 +0200 | [diff] [blame] | 1194 | { |
Andi Kleen | 8457c84 | 2009-02-12 13:49:33 +0100 | [diff] [blame] | 1195 | /* Not more than two messages every minute */ |
| 1196 | static DEFINE_RATELIMIT_STATE(ratelimit, 60*HZ, 2); |
| 1197 | |
Tim Hockin | e02e68d | 2007-07-21 17:10:36 +0200 | [diff] [blame] | 1198 | clear_thread_flag(TIF_MCE_NOTIFY); |
Ingo Molnar | e9eee03 | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 1199 | |
Hidetoshi Seto | 1020bcb | 2009-06-15 17:20:57 +0900 | [diff] [blame] | 1200 | if (test_and_clear_bit(0, &mce_need_notify)) { |
Tim Hockin | e02e68d | 2007-07-21 17:10:36 +0200 | [diff] [blame] | 1201 | wake_up_interruptible(&mce_wait); |
Andi Kleen | 9bd9840 | 2009-02-12 13:39:28 +0100 | [diff] [blame] | 1202 | |
| 1203 | /* |
| 1204 | * There is no risk of missing notifications because |
| 1205 | * work_pending is always cleared before the function is |
| 1206 | * executed. |
| 1207 | */ |
Hidetoshi Seto | 1020bcb | 2009-06-15 17:20:57 +0900 | [diff] [blame] | 1208 | if (mce_helper[0] && !work_pending(&mce_trigger_work)) |
Andi Kleen | 9bd9840 | 2009-02-12 13:39:28 +0100 | [diff] [blame] | 1209 | schedule_work(&mce_trigger_work); |
Tim Hockin | e02e68d | 2007-07-21 17:10:36 +0200 | [diff] [blame] | 1210 | |
Andi Kleen | 8457c84 | 2009-02-12 13:49:33 +0100 | [diff] [blame] | 1211 | if (__ratelimit(&ratelimit)) |
Huang Ying | a2d7b0d | 2010-06-08 14:35:39 +0800 | [diff] [blame] | 1212 | pr_info(HW_ERR "Machine check events logged\n"); |
Tim Hockin | e02e68d | 2007-07-21 17:10:36 +0200 | [diff] [blame] | 1213 | |
| 1214 | return 1; |
| 1215 | } |
| 1216 | return 0; |
| 1217 | } |
Andi Kleen | 9ff36ee | 2009-05-27 21:56:58 +0200 | [diff] [blame] | 1218 | EXPORT_SYMBOL_GPL(mce_notify_irq); |
Tim Hockin | e02e68d | 2007-07-21 17:10:36 +0200 | [diff] [blame] | 1219 | |
Hidetoshi Seto | cffd377 | 2009-11-12 15:52:40 +0900 | [diff] [blame] | 1220 | static int __cpuinit __mcheck_cpu_mce_banks_init(void) |
Andi Kleen | cebe182 | 2009-07-09 00:31:43 +0200 | [diff] [blame] | 1221 | { |
| 1222 | int i; |
| 1223 | |
| 1224 | mce_banks = kzalloc(banks * sizeof(struct mce_bank), GFP_KERNEL); |
| 1225 | if (!mce_banks) |
| 1226 | return -ENOMEM; |
| 1227 | for (i = 0; i < banks; i++) { |
| 1228 | struct mce_bank *b = &mce_banks[i]; |
Ingo Molnar | 11868a2 | 2009-09-23 17:49:55 +0200 | [diff] [blame] | 1229 | |
Andi Kleen | cebe182 | 2009-07-09 00:31:43 +0200 | [diff] [blame] | 1230 | b->ctl = -1ULL; |
| 1231 | b->init = 1; |
| 1232 | } |
| 1233 | return 0; |
| 1234 | } |
| 1235 | |
Thomas Gleixner | d88203d | 2007-10-23 22:37:23 +0200 | [diff] [blame] | 1236 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1237 | * Initialize Machine Checks for a CPU. |
| 1238 | */ |
Borislav Petkov | 5e09954 | 2009-10-16 12:31:32 +0200 | [diff] [blame] | 1239 | static int __cpuinit __mcheck_cpu_cap_init(void) |
Andi Kleen | 0d7482e3 | 2009-02-17 23:07:13 +0100 | [diff] [blame] | 1240 | { |
Andi Kleen | 0d7482e3 | 2009-02-17 23:07:13 +0100 | [diff] [blame] | 1241 | unsigned b; |
Ingo Molnar | e9eee03 | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 1242 | u64 cap; |
Andi Kleen | 0d7482e3 | 2009-02-17 23:07:13 +0100 | [diff] [blame] | 1243 | |
| 1244 | rdmsrl(MSR_IA32_MCG_CAP, cap); |
Thomas Gleixner | 01c6680 | 2009-04-08 12:31:24 +0200 | [diff] [blame] | 1245 | |
| 1246 | b = cap & MCG_BANKCNT_MASK; |
Roland Dreier | 93ae501 | 2009-10-15 14:21:14 -0700 | [diff] [blame] | 1247 | if (!banks) |
| 1248 | printk(KERN_INFO "mce: CPU supports %d MCE banks\n", b); |
Ingo Molnar | b659294 | 2009-04-08 12:31:27 +0200 | [diff] [blame] | 1249 | |
Andi Kleen | 0d7482e3 | 2009-02-17 23:07:13 +0100 | [diff] [blame] | 1250 | if (b > MAX_NR_BANKS) { |
| 1251 | printk(KERN_WARNING |
| 1252 | "MCE: Using only %u machine check banks out of %u\n", |
| 1253 | MAX_NR_BANKS, b); |
| 1254 | b = MAX_NR_BANKS; |
| 1255 | } |
| 1256 | |
| 1257 | /* Don't support asymmetric configurations today */ |
| 1258 | WARN_ON(banks != 0 && b != banks); |
| 1259 | banks = b; |
Andi Kleen | cebe182 | 2009-07-09 00:31:43 +0200 | [diff] [blame] | 1260 | if (!mce_banks) { |
Hidetoshi Seto | cffd377 | 2009-11-12 15:52:40 +0900 | [diff] [blame] | 1261 | int err = __mcheck_cpu_mce_banks_init(); |
Ingo Molnar | 11868a2 | 2009-09-23 17:49:55 +0200 | [diff] [blame] | 1262 | |
Andi Kleen | cebe182 | 2009-07-09 00:31:43 +0200 | [diff] [blame] | 1263 | if (err) |
| 1264 | return err; |
Andi Kleen | 0d7482e3 | 2009-02-17 23:07:13 +0100 | [diff] [blame] | 1265 | } |
| 1266 | |
| 1267 | /* Use accurate RIP reporting if available. */ |
Thomas Gleixner | 01c6680 | 2009-04-08 12:31:24 +0200 | [diff] [blame] | 1268 | if ((cap & MCG_EXT_P) && MCG_EXT_CNT(cap) >= 9) |
Andi Kleen | 0d7482e3 | 2009-02-17 23:07:13 +0100 | [diff] [blame] | 1269 | rip_msr = MSR_IA32_MCG_EIP; |
| 1270 | |
Andi Kleen | ed7290d | 2009-05-27 21:56:57 +0200 | [diff] [blame] | 1271 | if (cap & MCG_SER_P) |
| 1272 | mce_ser = 1; |
| 1273 | |
Andi Kleen | 0d7482e3 | 2009-02-17 23:07:13 +0100 | [diff] [blame] | 1274 | return 0; |
| 1275 | } |
| 1276 | |
Borislav Petkov | 5e09954 | 2009-10-16 12:31:32 +0200 | [diff] [blame] | 1277 | static void __mcheck_cpu_init_generic(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1278 | { |
Ingo Molnar | e9eee03 | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 1279 | mce_banks_t all_banks; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1280 | u64 cap; |
| 1281 | int i; |
| 1282 | |
Andi Kleen | b79109c | 2009-02-12 13:43:23 +0100 | [diff] [blame] | 1283 | /* |
| 1284 | * Log the machine checks left over from the previous reset. |
| 1285 | */ |
Andi Kleen | ee031c3 | 2009-02-12 13:49:34 +0100 | [diff] [blame] | 1286 | bitmap_fill(all_banks, MAX_NR_BANKS); |
Andi Kleen | 5679af4 | 2009-04-07 17:06:55 +0200 | [diff] [blame] | 1287 | machine_check_poll(MCP_UC|(!mce_bootlog ? MCP_DONTLOG : 0), &all_banks); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1288 | |
| 1289 | set_in_cr4(X86_CR4_MCE); |
| 1290 | |
Andi Kleen | 0d7482e3 | 2009-02-17 23:07:13 +0100 | [diff] [blame] | 1291 | rdmsrl(MSR_IA32_MCG_CAP, cap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1292 | if (cap & MCG_CTL_P) |
| 1293 | wrmsr(MSR_IA32_MCG_CTL, 0xffffffff, 0xffffffff); |
| 1294 | |
| 1295 | for (i = 0; i < banks; i++) { |
Andi Kleen | cebe182 | 2009-07-09 00:31:43 +0200 | [diff] [blame] | 1296 | struct mce_bank *b = &mce_banks[i]; |
Ingo Molnar | 11868a2 | 2009-09-23 17:49:55 +0200 | [diff] [blame] | 1297 | |
Andi Kleen | cebe182 | 2009-07-09 00:31:43 +0200 | [diff] [blame] | 1298 | if (!b->init) |
Andi Kleen | 06b7a7a | 2009-04-27 18:37:43 +0200 | [diff] [blame] | 1299 | continue; |
Andi Kleen | a2d32bc | 2009-07-09 00:31:44 +0200 | [diff] [blame] | 1300 | wrmsrl(MSR_IA32_MCx_CTL(i), b->ctl); |
| 1301 | wrmsrl(MSR_IA32_MCx_STATUS(i), 0); |
Thomas Gleixner | d88203d | 2007-10-23 22:37:23 +0200 | [diff] [blame] | 1302 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1303 | } |
| 1304 | |
| 1305 | /* Add per CPU specific workarounds here */ |
Borislav Petkov | 5e09954 | 2009-10-16 12:31:32 +0200 | [diff] [blame] | 1306 | static int __cpuinit __mcheck_cpu_apply_quirks(struct cpuinfo_x86 *c) |
Thomas Gleixner | d88203d | 2007-10-23 22:37:23 +0200 | [diff] [blame] | 1307 | { |
Ingo Molnar | e412cd2 | 2009-08-17 10:19:00 +0200 | [diff] [blame] | 1308 | if (c->x86_vendor == X86_VENDOR_UNKNOWN) { |
| 1309 | pr_info("MCE: unknown CPU type - not enabling MCE support.\n"); |
| 1310 | return -EOPNOTSUPP; |
| 1311 | } |
| 1312 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1313 | /* This should be disabled by the BIOS, but isn't always */ |
Jan Beulich | 911f6a7 | 2008-04-22 16:22:21 +0100 | [diff] [blame] | 1314 | if (c->x86_vendor == X86_VENDOR_AMD) { |
Ingo Molnar | e9eee03 | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 1315 | if (c->x86 == 15 && banks > 4) { |
| 1316 | /* |
| 1317 | * disable GART TBL walk error reporting, which |
| 1318 | * trips off incorrectly with the IOMMU & 3ware |
| 1319 | * & Cerberus: |
| 1320 | */ |
Andi Kleen | cebe182 | 2009-07-09 00:31:43 +0200 | [diff] [blame] | 1321 | clear_bit(10, (unsigned long *)&mce_banks[4].ctl); |
Ingo Molnar | e9eee03 | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 1322 | } |
| 1323 | if (c->x86 <= 17 && mce_bootlog < 0) { |
| 1324 | /* |
| 1325 | * Lots of broken BIOS around that don't clear them |
| 1326 | * by default and leave crap in there. Don't log: |
| 1327 | */ |
Jan Beulich | 911f6a7 | 2008-04-22 16:22:21 +0100 | [diff] [blame] | 1328 | mce_bootlog = 0; |
Ingo Molnar | e9eee03 | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 1329 | } |
Andi Kleen | 2e6f694 | 2009-04-27 18:42:48 +0200 | [diff] [blame] | 1330 | /* |
| 1331 | * Various K7s with broken bank 0 around. Always disable |
| 1332 | * by default. |
| 1333 | */ |
Andi Kleen | 203abd6 | 2009-06-15 14:52:01 +0200 | [diff] [blame] | 1334 | if (c->x86 == 6 && banks > 0) |
Andi Kleen | cebe182 | 2009-07-09 00:31:43 +0200 | [diff] [blame] | 1335 | mce_banks[0].ctl = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1336 | } |
Andi Kleen | e583538 | 2005-11-05 17:25:54 +0100 | [diff] [blame] | 1337 | |
Andi Kleen | 06b7a7a | 2009-04-27 18:37:43 +0200 | [diff] [blame] | 1338 | if (c->x86_vendor == X86_VENDOR_INTEL) { |
| 1339 | /* |
| 1340 | * SDM documents that on family 6 bank 0 should not be written |
| 1341 | * because it aliases to another special BIOS controlled |
| 1342 | * register. |
| 1343 | * But it's not aliased anymore on model 0x1a+ |
| 1344 | * Don't ignore bank 0 completely because there could be a |
| 1345 | * valid event later, merely don't write CTL0. |
| 1346 | */ |
| 1347 | |
Andi Kleen | cebe182 | 2009-07-09 00:31:43 +0200 | [diff] [blame] | 1348 | if (c->x86 == 6 && c->x86_model < 0x1A && banks > 0) |
| 1349 | mce_banks[0].init = 0; |
Andi Kleen | 3c07979 | 2009-05-27 21:56:55 +0200 | [diff] [blame] | 1350 | |
| 1351 | /* |
| 1352 | * All newer Intel systems support MCE broadcasting. Enable |
| 1353 | * synchronization with a one second timeout. |
| 1354 | */ |
| 1355 | if ((c->x86 > 6 || (c->x86 == 6 && c->x86_model >= 0xe)) && |
| 1356 | monarch_timeout < 0) |
| 1357 | monarch_timeout = USEC_PER_SEC; |
Bartlomiej Zolnierkiewicz | c7f6fa4 | 2009-07-28 23:52:54 +0200 | [diff] [blame] | 1358 | |
Ingo Molnar | e412cd2 | 2009-08-17 10:19:00 +0200 | [diff] [blame] | 1359 | /* |
| 1360 | * There are also broken BIOSes on some Pentium M and |
| 1361 | * earlier systems: |
| 1362 | */ |
| 1363 | if (c->x86 == 6 && c->x86_model <= 13 && mce_bootlog < 0) |
Bartlomiej Zolnierkiewicz | c7f6fa4 | 2009-07-28 23:52:54 +0200 | [diff] [blame] | 1364 | mce_bootlog = 0; |
Andi Kleen | 06b7a7a | 2009-04-27 18:37:43 +0200 | [diff] [blame] | 1365 | } |
Andi Kleen | 3c07979 | 2009-05-27 21:56:55 +0200 | [diff] [blame] | 1366 | if (monarch_timeout < 0) |
| 1367 | monarch_timeout = 0; |
Andi Kleen | 29b0f59 | 2009-05-27 21:56:56 +0200 | [diff] [blame] | 1368 | if (mce_bootlog != 0) |
| 1369 | mce_panic_timeout = 30; |
Ingo Molnar | e412cd2 | 2009-08-17 10:19:00 +0200 | [diff] [blame] | 1370 | |
| 1371 | return 0; |
Thomas Gleixner | d88203d | 2007-10-23 22:37:23 +0200 | [diff] [blame] | 1372 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1373 | |
Borislav Petkov | 5e09954 | 2009-10-16 12:31:32 +0200 | [diff] [blame] | 1374 | static void __cpuinit __mcheck_cpu_ancient_init(struct cpuinfo_x86 *c) |
Andi Kleen | 4efc067 | 2009-04-28 19:07:31 +0200 | [diff] [blame] | 1375 | { |
| 1376 | if (c->x86 != 5) |
| 1377 | return; |
| 1378 | switch (c->x86_vendor) { |
| 1379 | case X86_VENDOR_INTEL: |
Hidetoshi Seto | c697836 | 2009-06-15 17:22:49 +0900 | [diff] [blame] | 1380 | intel_p5_mcheck_init(c); |
Andi Kleen | 4efc067 | 2009-04-28 19:07:31 +0200 | [diff] [blame] | 1381 | break; |
| 1382 | case X86_VENDOR_CENTAUR: |
| 1383 | winchip_mcheck_init(c); |
| 1384 | break; |
| 1385 | } |
| 1386 | } |
| 1387 | |
Borislav Petkov | 5e09954 | 2009-10-16 12:31:32 +0200 | [diff] [blame] | 1388 | static void __mcheck_cpu_init_vendor(struct cpuinfo_x86 *c) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1389 | { |
| 1390 | switch (c->x86_vendor) { |
| 1391 | case X86_VENDOR_INTEL: |
| 1392 | mce_intel_feature_init(c); |
| 1393 | break; |
Jacob Shin | 89b831e | 2005-11-05 17:25:53 +0100 | [diff] [blame] | 1394 | case X86_VENDOR_AMD: |
| 1395 | mce_amd_feature_init(c); |
| 1396 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1397 | default: |
| 1398 | break; |
| 1399 | } |
| 1400 | } |
| 1401 | |
Borislav Petkov | 5e09954 | 2009-10-16 12:31:32 +0200 | [diff] [blame] | 1402 | static void __mcheck_cpu_init_timer(void) |
Andi Kleen | 52d168e | 2009-02-12 13:39:29 +0100 | [diff] [blame] | 1403 | { |
| 1404 | struct timer_list *t = &__get_cpu_var(mce_timer); |
Tejun Heo | 245b2e7 | 2009-06-24 15:13:48 +0900 | [diff] [blame] | 1405 | int *n = &__get_cpu_var(mce_next_interval); |
Andi Kleen | 52d168e | 2009-02-12 13:39:29 +0100 | [diff] [blame] | 1406 | |
Jan Beulich | bc09eff | 2009-12-08 11:21:37 +0900 | [diff] [blame] | 1407 | setup_timer(t, mce_start_timer, smp_processor_id()); |
| 1408 | |
Hidetoshi Seto | 62fdac5 | 2009-06-11 16:06:07 +0900 | [diff] [blame] | 1409 | if (mce_ignore_ce) |
| 1410 | return; |
| 1411 | |
Andi Kleen | 6298c51 | 2009-04-09 12:28:22 +0200 | [diff] [blame] | 1412 | *n = check_interval * HZ; |
| 1413 | if (!*n) |
Andi Kleen | 52d168e | 2009-02-12 13:39:29 +0100 | [diff] [blame] | 1414 | return; |
Andi Kleen | 6298c51 | 2009-04-09 12:28:22 +0200 | [diff] [blame] | 1415 | t->expires = round_jiffies(jiffies + *n); |
Hidetoshi Seto | 5be6066 | 2009-06-24 09:21:10 +0900 | [diff] [blame] | 1416 | add_timer_on(t, smp_processor_id()); |
Andi Kleen | 52d168e | 2009-02-12 13:39:29 +0100 | [diff] [blame] | 1417 | } |
| 1418 | |
Andi Kleen | 9eda8cb | 2009-07-09 00:31:42 +0200 | [diff] [blame] | 1419 | /* Handle unconfigured int18 (should never happen) */ |
| 1420 | static void unexpected_machine_check(struct pt_regs *regs, long error_code) |
| 1421 | { |
| 1422 | printk(KERN_ERR "CPU#%d: Unexpected int18 (Machine Check).\n", |
| 1423 | smp_processor_id()); |
| 1424 | } |
| 1425 | |
| 1426 | /* Call the installed machine check handler for this CPU setup. */ |
| 1427 | void (*machine_check_vector)(struct pt_regs *, long error_code) = |
| 1428 | unexpected_machine_check; |
| 1429 | |
Thomas Gleixner | d88203d | 2007-10-23 22:37:23 +0200 | [diff] [blame] | 1430 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1431 | * Called for each booted CPU to set up machine checks. |
Ingo Molnar | e9eee03 | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 1432 | * Must be called with preempt off: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1433 | */ |
Borislav Petkov | 5e09954 | 2009-10-16 12:31:32 +0200 | [diff] [blame] | 1434 | void __cpuinit mcheck_cpu_init(struct cpuinfo_x86 *c) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1435 | { |
Andi Kleen | 4efc067 | 2009-04-28 19:07:31 +0200 | [diff] [blame] | 1436 | if (mce_disabled) |
| 1437 | return; |
| 1438 | |
Borislav Petkov | 5e09954 | 2009-10-16 12:31:32 +0200 | [diff] [blame] | 1439 | __mcheck_cpu_ancient_init(c); |
Andi Kleen | 4efc067 | 2009-04-28 19:07:31 +0200 | [diff] [blame] | 1440 | |
Andi Kleen | 5b4408f | 2009-02-12 13:39:30 +0100 | [diff] [blame] | 1441 | if (!mce_available(c)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1442 | return; |
| 1443 | |
Borislav Petkov | 5e09954 | 2009-10-16 12:31:32 +0200 | [diff] [blame] | 1444 | if (__mcheck_cpu_cap_init() < 0 || __mcheck_cpu_apply_quirks(c) < 0) { |
Andi Kleen | 04b2b1a | 2009-04-28 22:50:19 +0200 | [diff] [blame] | 1445 | mce_disabled = 1; |
Andi Kleen | 0d7482e3 | 2009-02-17 23:07:13 +0100 | [diff] [blame] | 1446 | return; |
| 1447 | } |
Andi Kleen | 0d7482e3 | 2009-02-17 23:07:13 +0100 | [diff] [blame] | 1448 | |
Andi Kleen | 5d72792 | 2009-04-27 19:25:48 +0200 | [diff] [blame] | 1449 | machine_check_vector = do_machine_check; |
| 1450 | |
Borislav Petkov | 5e09954 | 2009-10-16 12:31:32 +0200 | [diff] [blame] | 1451 | __mcheck_cpu_init_generic(); |
| 1452 | __mcheck_cpu_init_vendor(c); |
| 1453 | __mcheck_cpu_init_timer(); |
Andi Kleen | 9b1beaf | 2009-05-27 21:56:59 +0200 | [diff] [blame] | 1454 | INIT_WORK(&__get_cpu_var(mce_work), mce_process_work); |
Borislav Petkov | fb25319 | 2009-10-07 13:20:38 +0200 | [diff] [blame] | 1455 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1456 | } |
| 1457 | |
| 1458 | /* |
| 1459 | * Character device to read and clear the MCE log. |
| 1460 | */ |
| 1461 | |
Tim Hockin | f528e7b | 2007-07-21 17:10:35 +0200 | [diff] [blame] | 1462 | static DEFINE_SPINLOCK(mce_state_lock); |
Ingo Molnar | e9eee03 | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 1463 | static int open_count; /* #times opened */ |
| 1464 | static int open_exclu; /* already open exclusive? */ |
Tim Hockin | f528e7b | 2007-07-21 17:10:35 +0200 | [diff] [blame] | 1465 | |
| 1466 | static int mce_open(struct inode *inode, struct file *file) |
| 1467 | { |
| 1468 | spin_lock(&mce_state_lock); |
| 1469 | |
| 1470 | if (open_exclu || (open_count && (file->f_flags & O_EXCL))) { |
| 1471 | spin_unlock(&mce_state_lock); |
Ingo Molnar | e9eee03 | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 1472 | |
Tim Hockin | f528e7b | 2007-07-21 17:10:35 +0200 | [diff] [blame] | 1473 | return -EBUSY; |
| 1474 | } |
| 1475 | |
| 1476 | if (file->f_flags & O_EXCL) |
| 1477 | open_exclu = 1; |
| 1478 | open_count++; |
| 1479 | |
| 1480 | spin_unlock(&mce_state_lock); |
| 1481 | |
Tim Hockin | bd78432 | 2007-07-21 17:10:37 +0200 | [diff] [blame] | 1482 | return nonseekable_open(inode, file); |
Tim Hockin | f528e7b | 2007-07-21 17:10:35 +0200 | [diff] [blame] | 1483 | } |
| 1484 | |
| 1485 | static int mce_release(struct inode *inode, struct file *file) |
| 1486 | { |
| 1487 | spin_lock(&mce_state_lock); |
| 1488 | |
| 1489 | open_count--; |
| 1490 | open_exclu = 0; |
| 1491 | |
| 1492 | spin_unlock(&mce_state_lock); |
| 1493 | |
| 1494 | return 0; |
| 1495 | } |
| 1496 | |
Thomas Gleixner | d88203d | 2007-10-23 22:37:23 +0200 | [diff] [blame] | 1497 | static void collect_tscs(void *data) |
| 1498 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1499 | unsigned long *cpu_tsc = (unsigned long *)data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1500 | |
Thomas Gleixner | d88203d | 2007-10-23 22:37:23 +0200 | [diff] [blame] | 1501 | rdtscll(cpu_tsc[smp_processor_id()]); |
| 1502 | } |
| 1503 | |
Huang Ying | 482908b | 2010-05-18 14:35:22 +0800 | [diff] [blame] | 1504 | static int mce_apei_read_done; |
| 1505 | |
| 1506 | /* Collect MCE record of previous boot in persistent storage via APEI ERST. */ |
| 1507 | static int __mce_read_apei(char __user **ubuf, size_t usize) |
| 1508 | { |
| 1509 | int rc; |
| 1510 | u64 record_id; |
| 1511 | struct mce m; |
| 1512 | |
| 1513 | if (usize < sizeof(struct mce)) |
| 1514 | return -EINVAL; |
| 1515 | |
| 1516 | rc = apei_read_mce(&m, &record_id); |
| 1517 | /* Error or no more MCE record */ |
| 1518 | if (rc <= 0) { |
| 1519 | mce_apei_read_done = 1; |
| 1520 | return rc; |
| 1521 | } |
| 1522 | rc = -EFAULT; |
| 1523 | if (copy_to_user(*ubuf, &m, sizeof(struct mce))) |
| 1524 | return rc; |
| 1525 | /* |
| 1526 | * In fact, we should have cleared the record after that has |
| 1527 | * been flushed to the disk or sent to network in |
| 1528 | * /sbin/mcelog, but we have no interface to support that now, |
| 1529 | * so just clear it to avoid duplication. |
| 1530 | */ |
| 1531 | rc = apei_clear_mce(record_id); |
| 1532 | if (rc) { |
| 1533 | mce_apei_read_done = 1; |
| 1534 | return rc; |
| 1535 | } |
| 1536 | *ubuf += sizeof(struct mce); |
| 1537 | |
| 1538 | return 0; |
| 1539 | } |
| 1540 | |
Thomas Gleixner | d88203d | 2007-10-23 22:37:23 +0200 | [diff] [blame] | 1541 | static ssize_t mce_read(struct file *filp, char __user *ubuf, size_t usize, |
| 1542 | loff_t *off) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1543 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1544 | char __user *buf = ubuf; |
Ingo Molnar | e9eee03 | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 1545 | unsigned long *cpu_tsc; |
| 1546 | unsigned prev, next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1547 | int i, err; |
| 1548 | |
Mike Travis | 6bca67f | 2008-07-18 18:11:27 -0700 | [diff] [blame] | 1549 | cpu_tsc = kmalloc(nr_cpu_ids * sizeof(long), GFP_KERNEL); |
Andi Kleen | f0de53b | 2005-04-16 15:25:10 -0700 | [diff] [blame] | 1550 | if (!cpu_tsc) |
| 1551 | return -ENOMEM; |
| 1552 | |
Daniel Walker | 8c8b885 | 2008-01-30 13:31:17 +0100 | [diff] [blame] | 1553 | mutex_lock(&mce_read_mutex); |
Huang Ying | 482908b | 2010-05-18 14:35:22 +0800 | [diff] [blame] | 1554 | |
| 1555 | if (!mce_apei_read_done) { |
| 1556 | err = __mce_read_apei(&buf, usize); |
| 1557 | if (err || buf != ubuf) |
| 1558 | goto out; |
| 1559 | } |
| 1560 | |
Paul E. McKenney | f56e8a0 | 2010-03-05 15:03:27 -0800 | [diff] [blame] | 1561 | next = rcu_dereference_check_mce(mcelog.next); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1562 | |
| 1563 | /* Only supports full reads right now */ |
Huang Ying | 482908b | 2010-05-18 14:35:22 +0800 | [diff] [blame] | 1564 | err = -EINVAL; |
| 1565 | if (*off != 0 || usize < MCE_LOG_LEN*sizeof(struct mce)) |
| 1566 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1567 | |
| 1568 | err = 0; |
Huang Ying | ef41df434 | 2009-02-12 13:39:34 +0100 | [diff] [blame] | 1569 | prev = 0; |
| 1570 | do { |
| 1571 | for (i = prev; i < next; i++) { |
| 1572 | unsigned long start = jiffies; |
Thomas Gleixner | d88203d | 2007-10-23 22:37:23 +0200 | [diff] [blame] | 1573 | |
Huang Ying | ef41df434 | 2009-02-12 13:39:34 +0100 | [diff] [blame] | 1574 | while (!mcelog.entry[i].finished) { |
| 1575 | if (time_after_eq(jiffies, start + 2)) { |
| 1576 | memset(mcelog.entry + i, 0, |
| 1577 | sizeof(struct mce)); |
| 1578 | goto timeout; |
| 1579 | } |
| 1580 | cpu_relax(); |
Andi Kleen | 673242c | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 1581 | } |
Huang Ying | ef41df434 | 2009-02-12 13:39:34 +0100 | [diff] [blame] | 1582 | smp_rmb(); |
| 1583 | err |= copy_to_user(buf, mcelog.entry + i, |
| 1584 | sizeof(struct mce)); |
| 1585 | buf += sizeof(struct mce); |
| 1586 | timeout: |
| 1587 | ; |
Andi Kleen | 673242c | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 1588 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1589 | |
Huang Ying | ef41df434 | 2009-02-12 13:39:34 +0100 | [diff] [blame] | 1590 | memset(mcelog.entry + prev, 0, |
| 1591 | (next - prev) * sizeof(struct mce)); |
| 1592 | prev = next; |
| 1593 | next = cmpxchg(&mcelog.next, prev, 0); |
| 1594 | } while (next != prev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1595 | |
Paul E. McKenney | b2b1866 | 2005-06-25 14:55:38 -0700 | [diff] [blame] | 1596 | synchronize_sched(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1597 | |
Thomas Gleixner | d88203d | 2007-10-23 22:37:23 +0200 | [diff] [blame] | 1598 | /* |
| 1599 | * Collect entries that were still getting written before the |
| 1600 | * synchronize. |
| 1601 | */ |
Jens Axboe | 15c8b6c | 2008-05-09 09:39:44 +0200 | [diff] [blame] | 1602 | on_each_cpu(collect_tscs, cpu_tsc, 1); |
Ingo Molnar | e9eee03 | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 1603 | |
Thomas Gleixner | d88203d | 2007-10-23 22:37:23 +0200 | [diff] [blame] | 1604 | for (i = next; i < MCE_LOG_LEN; i++) { |
| 1605 | if (mcelog.entry[i].finished && |
| 1606 | mcelog.entry[i].tsc < cpu_tsc[mcelog.entry[i].cpu]) { |
| 1607 | err |= copy_to_user(buf, mcelog.entry+i, |
| 1608 | sizeof(struct mce)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1609 | smp_rmb(); |
| 1610 | buf += sizeof(struct mce); |
| 1611 | memset(&mcelog.entry[i], 0, sizeof(struct mce)); |
| 1612 | } |
Thomas Gleixner | d88203d | 2007-10-23 22:37:23 +0200 | [diff] [blame] | 1613 | } |
Huang Ying | 482908b | 2010-05-18 14:35:22 +0800 | [diff] [blame] | 1614 | |
| 1615 | if (err) |
| 1616 | err = -EFAULT; |
| 1617 | |
| 1618 | out: |
Daniel Walker | 8c8b885 | 2008-01-30 13:31:17 +0100 | [diff] [blame] | 1619 | mutex_unlock(&mce_read_mutex); |
Andi Kleen | f0de53b | 2005-04-16 15:25:10 -0700 | [diff] [blame] | 1620 | kfree(cpu_tsc); |
Ingo Molnar | e9eee03 | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 1621 | |
Huang Ying | 482908b | 2010-05-18 14:35:22 +0800 | [diff] [blame] | 1622 | return err ? err : buf - ubuf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1623 | } |
| 1624 | |
Tim Hockin | e02e68d | 2007-07-21 17:10:36 +0200 | [diff] [blame] | 1625 | static unsigned int mce_poll(struct file *file, poll_table *wait) |
| 1626 | { |
| 1627 | poll_wait(file, &mce_wait, wait); |
Paul E. McKenney | f56e8a0 | 2010-03-05 15:03:27 -0800 | [diff] [blame] | 1628 | if (rcu_dereference_check_mce(mcelog.next)) |
Tim Hockin | e02e68d | 2007-07-21 17:10:36 +0200 | [diff] [blame] | 1629 | return POLLIN | POLLRDNORM; |
Huang Ying | 482908b | 2010-05-18 14:35:22 +0800 | [diff] [blame] | 1630 | if (!mce_apei_read_done && apei_check_mce()) |
| 1631 | return POLLIN | POLLRDNORM; |
Tim Hockin | e02e68d | 2007-07-21 17:10:36 +0200 | [diff] [blame] | 1632 | return 0; |
| 1633 | } |
| 1634 | |
Nikanth Karthikesan | c68461b | 2008-01-30 13:32:59 +0100 | [diff] [blame] | 1635 | static long mce_ioctl(struct file *f, unsigned int cmd, unsigned long arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1636 | { |
| 1637 | int __user *p = (int __user *)arg; |
Thomas Gleixner | d88203d | 2007-10-23 22:37:23 +0200 | [diff] [blame] | 1638 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1639 | if (!capable(CAP_SYS_ADMIN)) |
Thomas Gleixner | d88203d | 2007-10-23 22:37:23 +0200 | [diff] [blame] | 1640 | return -EPERM; |
Ingo Molnar | e9eee03 | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 1641 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1642 | switch (cmd) { |
Thomas Gleixner | d88203d | 2007-10-23 22:37:23 +0200 | [diff] [blame] | 1643 | case MCE_GET_RECORD_LEN: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1644 | return put_user(sizeof(struct mce), p); |
| 1645 | case MCE_GET_LOG_LEN: |
Thomas Gleixner | d88203d | 2007-10-23 22:37:23 +0200 | [diff] [blame] | 1646 | return put_user(MCE_LOG_LEN, p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1647 | case MCE_GETCLEAR_FLAGS: { |
| 1648 | unsigned flags; |
Thomas Gleixner | d88203d | 2007-10-23 22:37:23 +0200 | [diff] [blame] | 1649 | |
| 1650 | do { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1651 | flags = mcelog.flags; |
Thomas Gleixner | d88203d | 2007-10-23 22:37:23 +0200 | [diff] [blame] | 1652 | } while (cmpxchg(&mcelog.flags, flags, 0) != flags); |
Ingo Molnar | e9eee03 | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 1653 | |
Thomas Gleixner | d88203d | 2007-10-23 22:37:23 +0200 | [diff] [blame] | 1654 | return put_user(flags, p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1655 | } |
| 1656 | default: |
Thomas Gleixner | d88203d | 2007-10-23 22:37:23 +0200 | [diff] [blame] | 1657 | return -ENOTTY; |
| 1658 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1659 | } |
| 1660 | |
H. Peter Anvin | a1ff41b | 2009-05-25 22:16:14 -0700 | [diff] [blame] | 1661 | /* Modified in mce-inject.c, so not static or const */ |
Andi Kleen | ea149b3 | 2009-04-29 19:31:00 +0200 | [diff] [blame] | 1662 | struct file_operations mce_chrdev_ops = { |
Ingo Molnar | e9eee03 | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 1663 | .open = mce_open, |
| 1664 | .release = mce_release, |
| 1665 | .read = mce_read, |
| 1666 | .poll = mce_poll, |
| 1667 | .unlocked_ioctl = mce_ioctl, |
Arnd Bergmann | 6038f37 | 2010-08-15 18:52:59 +0200 | [diff] [blame] | 1668 | .llseek = no_llseek, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1669 | }; |
Andi Kleen | ea149b3 | 2009-04-29 19:31:00 +0200 | [diff] [blame] | 1670 | EXPORT_SYMBOL_GPL(mce_chrdev_ops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1671 | |
| 1672 | static struct miscdevice mce_log_device = { |
| 1673 | MISC_MCELOG_MINOR, |
| 1674 | "mcelog", |
| 1675 | &mce_chrdev_ops, |
| 1676 | }; |
| 1677 | |
Thomas Gleixner | d88203d | 2007-10-23 22:37:23 +0200 | [diff] [blame] | 1678 | /* |
Hidetoshi Seto | 62fdac5 | 2009-06-11 16:06:07 +0900 | [diff] [blame] | 1679 | * mce=off Disables machine check |
| 1680 | * mce=no_cmci Disables CMCI |
| 1681 | * mce=dont_log_ce Clears corrected events silently, no log created for CEs. |
| 1682 | * mce=ignore_ce Disables polling and CMCI, corrected events are not cleared. |
Andi Kleen | 3c07979 | 2009-05-27 21:56:55 +0200 | [diff] [blame] | 1683 | * mce=TOLERANCELEVEL[,monarchtimeout] (number, see above) |
| 1684 | * monarchtimeout is how long to wait for other CPUs on machine |
| 1685 | * check, or 0 to not wait |
Hidetoshi Seto | 13503fa | 2009-03-26 17:39:20 +0900 | [diff] [blame] | 1686 | * mce=bootlog Log MCEs from before booting. Disabled by default on AMD. |
| 1687 | * mce=nobootlog Don't log MCEs from before booting. |
| 1688 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1689 | static int __init mcheck_enable(char *str) |
| 1690 | { |
Bartlomiej Zolnierkiewicz | e3346fc | 2009-07-28 23:55:09 +0200 | [diff] [blame] | 1691 | if (*str == 0) { |
Andi Kleen | 4efc067 | 2009-04-28 19:07:31 +0200 | [diff] [blame] | 1692 | enable_p5_mce(); |
Bartlomiej Zolnierkiewicz | e3346fc | 2009-07-28 23:55:09 +0200 | [diff] [blame] | 1693 | return 1; |
| 1694 | } |
Andi Kleen | 4efc067 | 2009-04-28 19:07:31 +0200 | [diff] [blame] | 1695 | if (*str == '=') |
| 1696 | str++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1697 | if (!strcmp(str, "off")) |
Andi Kleen | 04b2b1a | 2009-04-28 22:50:19 +0200 | [diff] [blame] | 1698 | mce_disabled = 1; |
Hidetoshi Seto | 62fdac5 | 2009-06-11 16:06:07 +0900 | [diff] [blame] | 1699 | else if (!strcmp(str, "no_cmci")) |
| 1700 | mce_cmci_disabled = 1; |
| 1701 | else if (!strcmp(str, "dont_log_ce")) |
| 1702 | mce_dont_log_ce = 1; |
| 1703 | else if (!strcmp(str, "ignore_ce")) |
| 1704 | mce_ignore_ce = 1; |
Hidetoshi Seto | 13503fa | 2009-03-26 17:39:20 +0900 | [diff] [blame] | 1705 | else if (!strcmp(str, "bootlog") || !strcmp(str, "nobootlog")) |
| 1706 | mce_bootlog = (str[0] == 'b'); |
Andi Kleen | 3c07979 | 2009-05-27 21:56:55 +0200 | [diff] [blame] | 1707 | else if (isdigit(str[0])) { |
Andi Kleen | 8c566ef | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 1708 | get_option(&str, &tolerant); |
Andi Kleen | 3c07979 | 2009-05-27 21:56:55 +0200 | [diff] [blame] | 1709 | if (*str == ',') { |
| 1710 | ++str; |
| 1711 | get_option(&str, &monarch_timeout); |
| 1712 | } |
| 1713 | } else { |
Andi Kleen | 4efc067 | 2009-04-28 19:07:31 +0200 | [diff] [blame] | 1714 | printk(KERN_INFO "mce argument %s ignored. Please use /sys\n", |
Hidetoshi Seto | 13503fa | 2009-03-26 17:39:20 +0900 | [diff] [blame] | 1715 | str); |
| 1716 | return 0; |
| 1717 | } |
OGAWA Hirofumi | 9b41046 | 2006-03-31 02:30:33 -0800 | [diff] [blame] | 1718 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1719 | } |
Andi Kleen | 4efc067 | 2009-04-28 19:07:31 +0200 | [diff] [blame] | 1720 | __setup("mce", mcheck_enable); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1721 | |
Yong Wang | a2202aa | 2009-11-10 09:38:24 +0800 | [diff] [blame] | 1722 | int __init mcheck_init(void) |
Borislav Petkov | b33a636 | 2009-10-16 12:31:33 +0200 | [diff] [blame] | 1723 | { |
| 1724 | atomic_notifier_chain_register(&x86_mce_decoder_chain, &mce_dec_nb); |
| 1725 | |
Yong Wang | a2202aa | 2009-11-10 09:38:24 +0800 | [diff] [blame] | 1726 | mcheck_intel_therm_init(); |
| 1727 | |
Borislav Petkov | b33a636 | 2009-10-16 12:31:33 +0200 | [diff] [blame] | 1728 | return 0; |
| 1729 | } |
Borislav Petkov | b33a636 | 2009-10-16 12:31:33 +0200 | [diff] [blame] | 1730 | |
Thomas Gleixner | d88203d | 2007-10-23 22:37:23 +0200 | [diff] [blame] | 1731 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1732 | * Sysfs support |
Thomas Gleixner | d88203d | 2007-10-23 22:37:23 +0200 | [diff] [blame] | 1733 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1734 | |
Andi Kleen | 973a2dd | 2009-02-12 13:39:32 +0100 | [diff] [blame] | 1735 | /* |
| 1736 | * Disable machine checks on suspend and shutdown. We can't really handle |
| 1737 | * them later. |
| 1738 | */ |
Borislav Petkov | 5e09954 | 2009-10-16 12:31:32 +0200 | [diff] [blame] | 1739 | static int mce_disable_error_reporting(void) |
Andi Kleen | 973a2dd | 2009-02-12 13:39:32 +0100 | [diff] [blame] | 1740 | { |
| 1741 | int i; |
| 1742 | |
Andi Kleen | 06b7a7a | 2009-04-27 18:37:43 +0200 | [diff] [blame] | 1743 | for (i = 0; i < banks; i++) { |
Andi Kleen | cebe182 | 2009-07-09 00:31:43 +0200 | [diff] [blame] | 1744 | struct mce_bank *b = &mce_banks[i]; |
Ingo Molnar | 11868a2 | 2009-09-23 17:49:55 +0200 | [diff] [blame] | 1745 | |
Andi Kleen | cebe182 | 2009-07-09 00:31:43 +0200 | [diff] [blame] | 1746 | if (b->init) |
Andi Kleen | a2d32bc | 2009-07-09 00:31:44 +0200 | [diff] [blame] | 1747 | wrmsrl(MSR_IA32_MCx_CTL(i), 0); |
Andi Kleen | 06b7a7a | 2009-04-27 18:37:43 +0200 | [diff] [blame] | 1748 | } |
Andi Kleen | 973a2dd | 2009-02-12 13:39:32 +0100 | [diff] [blame] | 1749 | return 0; |
| 1750 | } |
| 1751 | |
| 1752 | static int mce_suspend(struct sys_device *dev, pm_message_t state) |
| 1753 | { |
Borislav Petkov | 5e09954 | 2009-10-16 12:31:32 +0200 | [diff] [blame] | 1754 | return mce_disable_error_reporting(); |
Andi Kleen | 973a2dd | 2009-02-12 13:39:32 +0100 | [diff] [blame] | 1755 | } |
| 1756 | |
| 1757 | static int mce_shutdown(struct sys_device *dev) |
| 1758 | { |
Borislav Petkov | 5e09954 | 2009-10-16 12:31:32 +0200 | [diff] [blame] | 1759 | return mce_disable_error_reporting(); |
Andi Kleen | 973a2dd | 2009-02-12 13:39:32 +0100 | [diff] [blame] | 1760 | } |
| 1761 | |
Ingo Molnar | e9eee03 | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 1762 | /* |
| 1763 | * On resume clear all MCE state. Don't want to see leftovers from the BIOS. |
| 1764 | * Only one CPU is active at this time, the others get re-added later using |
| 1765 | * CPU hotplug: |
| 1766 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1767 | static int mce_resume(struct sys_device *dev) |
| 1768 | { |
Borislav Petkov | 5e09954 | 2009-10-16 12:31:32 +0200 | [diff] [blame] | 1769 | __mcheck_cpu_init_generic(); |
Tejun Heo | 7b543a5 | 2010-12-18 16:30:05 +0100 | [diff] [blame^] | 1770 | __mcheck_cpu_init_vendor(__this_cpu_ptr(&cpu_info)); |
Ingo Molnar | e9eee03 | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 1771 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1772 | return 0; |
| 1773 | } |
| 1774 | |
Andi Kleen | 52d168e | 2009-02-12 13:39:29 +0100 | [diff] [blame] | 1775 | static void mce_cpu_restart(void *data) |
| 1776 | { |
| 1777 | del_timer_sync(&__get_cpu_var(mce_timer)); |
Tejun Heo | 7b543a5 | 2010-12-18 16:30:05 +0100 | [diff] [blame^] | 1778 | if (!mce_available(__this_cpu_ptr(&cpu_info))) |
Hidetoshi Seto | 33edbf0 | 2009-06-15 17:18:45 +0900 | [diff] [blame] | 1779 | return; |
Borislav Petkov | 5e09954 | 2009-10-16 12:31:32 +0200 | [diff] [blame] | 1780 | __mcheck_cpu_init_generic(); |
| 1781 | __mcheck_cpu_init_timer(); |
Andi Kleen | 52d168e | 2009-02-12 13:39:29 +0100 | [diff] [blame] | 1782 | } |
| 1783 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1784 | /* Reinit MCEs after user configuration changes */ |
Thomas Gleixner | d88203d | 2007-10-23 22:37:23 +0200 | [diff] [blame] | 1785 | static void mce_restart(void) |
| 1786 | { |
Andi Kleen | 52d168e | 2009-02-12 13:39:29 +0100 | [diff] [blame] | 1787 | on_each_cpu(mce_cpu_restart, NULL, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1788 | } |
| 1789 | |
Hidetoshi Seto | 9af43b5 | 2009-06-15 17:21:36 +0900 | [diff] [blame] | 1790 | /* Toggle features for corrected errors */ |
| 1791 | static void mce_disable_ce(void *all) |
| 1792 | { |
Tejun Heo | 7b543a5 | 2010-12-18 16:30:05 +0100 | [diff] [blame^] | 1793 | if (!mce_available(__this_cpu_ptr(&cpu_info))) |
Hidetoshi Seto | 9af43b5 | 2009-06-15 17:21:36 +0900 | [diff] [blame] | 1794 | return; |
| 1795 | if (all) |
| 1796 | del_timer_sync(&__get_cpu_var(mce_timer)); |
| 1797 | cmci_clear(); |
| 1798 | } |
| 1799 | |
| 1800 | static void mce_enable_ce(void *all) |
| 1801 | { |
Tejun Heo | 7b543a5 | 2010-12-18 16:30:05 +0100 | [diff] [blame^] | 1802 | if (!mce_available(__this_cpu_ptr(&cpu_info))) |
Hidetoshi Seto | 9af43b5 | 2009-06-15 17:21:36 +0900 | [diff] [blame] | 1803 | return; |
| 1804 | cmci_reenable(); |
| 1805 | cmci_recheck(); |
| 1806 | if (all) |
Borislav Petkov | 5e09954 | 2009-10-16 12:31:32 +0200 | [diff] [blame] | 1807 | __mcheck_cpu_init_timer(); |
Hidetoshi Seto | 9af43b5 | 2009-06-15 17:21:36 +0900 | [diff] [blame] | 1808 | } |
| 1809 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1810 | static struct sysdev_class mce_sysclass = { |
Ingo Molnar | e9eee03 | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 1811 | .suspend = mce_suspend, |
| 1812 | .shutdown = mce_shutdown, |
| 1813 | .resume = mce_resume, |
| 1814 | .name = "machinecheck", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1815 | }; |
| 1816 | |
Ingo Molnar | cb491fc | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 1817 | DEFINE_PER_CPU(struct sys_device, mce_dev); |
Ingo Molnar | e9eee03 | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 1818 | |
| 1819 | __cpuinitdata |
| 1820 | void (*threshold_cpu_callback)(unsigned long action, unsigned int cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1821 | |
Andi Kleen | cebe182 | 2009-07-09 00:31:43 +0200 | [diff] [blame] | 1822 | static inline struct mce_bank *attr_to_bank(struct sysdev_attribute *attr) |
| 1823 | { |
| 1824 | return container_of(attr, struct mce_bank, attr); |
| 1825 | } |
Andi Kleen | 0d7482e3 | 2009-02-17 23:07:13 +0100 | [diff] [blame] | 1826 | |
| 1827 | static ssize_t show_bank(struct sys_device *s, struct sysdev_attribute *attr, |
| 1828 | char *buf) |
| 1829 | { |
Andi Kleen | cebe182 | 2009-07-09 00:31:43 +0200 | [diff] [blame] | 1830 | return sprintf(buf, "%llx\n", attr_to_bank(attr)->ctl); |
Andi Kleen | 0d7482e3 | 2009-02-17 23:07:13 +0100 | [diff] [blame] | 1831 | } |
| 1832 | |
| 1833 | static ssize_t set_bank(struct sys_device *s, struct sysdev_attribute *attr, |
Hidetoshi Seto | 9319cec | 2009-04-14 17:26:30 +0900 | [diff] [blame] | 1834 | const char *buf, size_t size) |
Andi Kleen | 0d7482e3 | 2009-02-17 23:07:13 +0100 | [diff] [blame] | 1835 | { |
Hidetoshi Seto | 9319cec | 2009-04-14 17:26:30 +0900 | [diff] [blame] | 1836 | u64 new; |
Ingo Molnar | e9eee03 | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 1837 | |
Hidetoshi Seto | 9319cec | 2009-04-14 17:26:30 +0900 | [diff] [blame] | 1838 | if (strict_strtoull(buf, 0, &new) < 0) |
Andi Kleen | 0d7482e3 | 2009-02-17 23:07:13 +0100 | [diff] [blame] | 1839 | return -EINVAL; |
Ingo Molnar | e9eee03 | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 1840 | |
Andi Kleen | cebe182 | 2009-07-09 00:31:43 +0200 | [diff] [blame] | 1841 | attr_to_bank(attr)->ctl = new; |
Andi Kleen | 0d7482e3 | 2009-02-17 23:07:13 +0100 | [diff] [blame] | 1842 | mce_restart(); |
Ingo Molnar | e9eee03 | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 1843 | |
Hidetoshi Seto | 9319cec | 2009-04-14 17:26:30 +0900 | [diff] [blame] | 1844 | return size; |
Andi Kleen | 0d7482e3 | 2009-02-17 23:07:13 +0100 | [diff] [blame] | 1845 | } |
Andi Kleen | a98f0dd | 2007-02-13 13:26:23 +0100 | [diff] [blame] | 1846 | |
Ingo Molnar | e9eee03 | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 1847 | static ssize_t |
| 1848 | show_trigger(struct sys_device *s, struct sysdev_attribute *attr, char *buf) |
Andi Kleen | a98f0dd | 2007-02-13 13:26:23 +0100 | [diff] [blame] | 1849 | { |
Hidetoshi Seto | 1020bcb | 2009-06-15 17:20:57 +0900 | [diff] [blame] | 1850 | strcpy(buf, mce_helper); |
Andi Kleen | a98f0dd | 2007-02-13 13:26:23 +0100 | [diff] [blame] | 1851 | strcat(buf, "\n"); |
Hidetoshi Seto | 1020bcb | 2009-06-15 17:20:57 +0900 | [diff] [blame] | 1852 | return strlen(mce_helper) + 1; |
Andi Kleen | a98f0dd | 2007-02-13 13:26:23 +0100 | [diff] [blame] | 1853 | } |
| 1854 | |
Andi Kleen | 4a0b2b4 | 2008-07-01 18:48:41 +0200 | [diff] [blame] | 1855 | static ssize_t set_trigger(struct sys_device *s, struct sysdev_attribute *attr, |
Ingo Molnar | e9eee03 | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 1856 | const char *buf, size_t siz) |
Andi Kleen | a98f0dd | 2007-02-13 13:26:23 +0100 | [diff] [blame] | 1857 | { |
| 1858 | char *p; |
Ingo Molnar | e9eee03 | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 1859 | |
Hidetoshi Seto | 1020bcb | 2009-06-15 17:20:57 +0900 | [diff] [blame] | 1860 | strncpy(mce_helper, buf, sizeof(mce_helper)); |
| 1861 | mce_helper[sizeof(mce_helper)-1] = 0; |
Hidetoshi Seto | 1020bcb | 2009-06-15 17:20:57 +0900 | [diff] [blame] | 1862 | p = strchr(mce_helper, '\n'); |
Ingo Molnar | e9eee03 | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 1863 | |
Jan Beulich | e9084ec | 2009-07-16 09:45:11 +0100 | [diff] [blame] | 1864 | if (p) |
Ingo Molnar | e9eee03 | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 1865 | *p = 0; |
| 1866 | |
Jan Beulich | e9084ec | 2009-07-16 09:45:11 +0100 | [diff] [blame] | 1867 | return strlen(mce_helper) + !!p; |
Andi Kleen | a98f0dd | 2007-02-13 13:26:23 +0100 | [diff] [blame] | 1868 | } |
| 1869 | |
Hidetoshi Seto | 9af43b5 | 2009-06-15 17:21:36 +0900 | [diff] [blame] | 1870 | static ssize_t set_ignore_ce(struct sys_device *s, |
| 1871 | struct sysdev_attribute *attr, |
| 1872 | const char *buf, size_t size) |
| 1873 | { |
| 1874 | u64 new; |
| 1875 | |
| 1876 | if (strict_strtoull(buf, 0, &new) < 0) |
| 1877 | return -EINVAL; |
| 1878 | |
| 1879 | if (mce_ignore_ce ^ !!new) { |
| 1880 | if (new) { |
| 1881 | /* disable ce features */ |
| 1882 | on_each_cpu(mce_disable_ce, (void *)1, 1); |
| 1883 | mce_ignore_ce = 1; |
| 1884 | } else { |
| 1885 | /* enable ce features */ |
| 1886 | mce_ignore_ce = 0; |
| 1887 | on_each_cpu(mce_enable_ce, (void *)1, 1); |
| 1888 | } |
| 1889 | } |
| 1890 | return size; |
| 1891 | } |
| 1892 | |
| 1893 | static ssize_t set_cmci_disabled(struct sys_device *s, |
| 1894 | struct sysdev_attribute *attr, |
| 1895 | const char *buf, size_t size) |
| 1896 | { |
| 1897 | u64 new; |
| 1898 | |
| 1899 | if (strict_strtoull(buf, 0, &new) < 0) |
| 1900 | return -EINVAL; |
| 1901 | |
| 1902 | if (mce_cmci_disabled ^ !!new) { |
| 1903 | if (new) { |
| 1904 | /* disable cmci */ |
| 1905 | on_each_cpu(mce_disable_ce, NULL, 1); |
| 1906 | mce_cmci_disabled = 1; |
| 1907 | } else { |
| 1908 | /* enable cmci */ |
| 1909 | mce_cmci_disabled = 0; |
| 1910 | on_each_cpu(mce_enable_ce, NULL, 1); |
| 1911 | } |
| 1912 | } |
| 1913 | return size; |
| 1914 | } |
| 1915 | |
Andi Kleen | b56f642 | 2009-05-27 21:56:52 +0200 | [diff] [blame] | 1916 | static ssize_t store_int_with_restart(struct sys_device *s, |
| 1917 | struct sysdev_attribute *attr, |
| 1918 | const char *buf, size_t size) |
| 1919 | { |
| 1920 | ssize_t ret = sysdev_store_int(s, attr, buf, size); |
| 1921 | mce_restart(); |
| 1922 | return ret; |
| 1923 | } |
| 1924 | |
Andi Kleen | a98f0dd | 2007-02-13 13:26:23 +0100 | [diff] [blame] | 1925 | static SYSDEV_ATTR(trigger, 0644, show_trigger, set_trigger); |
Andi Kleen | d95d62c | 2008-07-01 18:48:43 +0200 | [diff] [blame] | 1926 | static SYSDEV_INT_ATTR(tolerant, 0644, tolerant); |
Andi Kleen | 3c07979 | 2009-05-27 21:56:55 +0200 | [diff] [blame] | 1927 | static SYSDEV_INT_ATTR(monarch_timeout, 0644, monarch_timeout); |
Hidetoshi Seto | 9af43b5 | 2009-06-15 17:21:36 +0900 | [diff] [blame] | 1928 | static SYSDEV_INT_ATTR(dont_log_ce, 0644, mce_dont_log_ce); |
Ingo Molnar | e9eee03 | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 1929 | |
Andi Kleen | b56f642 | 2009-05-27 21:56:52 +0200 | [diff] [blame] | 1930 | static struct sysdev_ext_attribute attr_check_interval = { |
| 1931 | _SYSDEV_ATTR(check_interval, 0644, sysdev_show_int, |
| 1932 | store_int_with_restart), |
| 1933 | &check_interval |
| 1934 | }; |
Ingo Molnar | e9eee03 | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 1935 | |
Hidetoshi Seto | 9af43b5 | 2009-06-15 17:21:36 +0900 | [diff] [blame] | 1936 | static struct sysdev_ext_attribute attr_ignore_ce = { |
| 1937 | _SYSDEV_ATTR(ignore_ce, 0644, sysdev_show_int, set_ignore_ce), |
| 1938 | &mce_ignore_ce |
| 1939 | }; |
| 1940 | |
| 1941 | static struct sysdev_ext_attribute attr_cmci_disabled = { |
Yinghai Lu | 74b602c | 2009-06-17 14:43:32 -0700 | [diff] [blame] | 1942 | _SYSDEV_ATTR(cmci_disabled, 0644, sysdev_show_int, set_cmci_disabled), |
Hidetoshi Seto | 9af43b5 | 2009-06-15 17:21:36 +0900 | [diff] [blame] | 1943 | &mce_cmci_disabled |
| 1944 | }; |
| 1945 | |
Ingo Molnar | cb491fc | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 1946 | static struct sysdev_attribute *mce_attrs[] = { |
Hidetoshi Seto | 9af43b5 | 2009-06-15 17:21:36 +0900 | [diff] [blame] | 1947 | &attr_tolerant.attr, |
| 1948 | &attr_check_interval.attr, |
| 1949 | &attr_trigger, |
Andi Kleen | 3c07979 | 2009-05-27 21:56:55 +0200 | [diff] [blame] | 1950 | &attr_monarch_timeout.attr, |
Hidetoshi Seto | 9af43b5 | 2009-06-15 17:21:36 +0900 | [diff] [blame] | 1951 | &attr_dont_log_ce.attr, |
| 1952 | &attr_ignore_ce.attr, |
| 1953 | &attr_cmci_disabled.attr, |
Andi Kleen | a98f0dd | 2007-02-13 13:26:23 +0100 | [diff] [blame] | 1954 | NULL |
| 1955 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1956 | |
Ingo Molnar | cb491fc | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 1957 | static cpumask_var_t mce_dev_initialized; |
Andreas Herrmann | bae19fe | 2007-11-14 17:00:44 -0800 | [diff] [blame] | 1958 | |
Ingo Molnar | e9eee03 | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 1959 | /* Per cpu sysdev init. All of the cpus still share the same ctrl bank: */ |
Andi Kleen | 91c6d40 | 2005-07-28 21:15:39 -0700 | [diff] [blame] | 1960 | static __cpuinit int mce_create_device(unsigned int cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1961 | { |
| 1962 | int err; |
Hidetoshi Seto | b1f49f9 | 2009-06-18 14:53:24 +0900 | [diff] [blame] | 1963 | int i, j; |
Mike Travis | 92cb761 | 2007-10-19 20:35:04 +0200 | [diff] [blame] | 1964 | |
Andreas Herrmann | 9036755 | 2007-11-07 02:12:58 +0100 | [diff] [blame] | 1965 | if (!mce_available(&boot_cpu_data)) |
Andi Kleen | 91c6d40 | 2005-07-28 21:15:39 -0700 | [diff] [blame] | 1966 | return -EIO; |
| 1967 | |
Ingo Molnar | cb491fc | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 1968 | memset(&per_cpu(mce_dev, cpu).kobj, 0, sizeof(struct kobject)); |
| 1969 | per_cpu(mce_dev, cpu).id = cpu; |
| 1970 | per_cpu(mce_dev, cpu).cls = &mce_sysclass; |
Andi Kleen | 91c6d40 | 2005-07-28 21:15:39 -0700 | [diff] [blame] | 1971 | |
Ingo Molnar | cb491fc | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 1972 | err = sysdev_register(&per_cpu(mce_dev, cpu)); |
Akinobu Mita | d435d86 | 2007-10-18 03:05:15 -0700 | [diff] [blame] | 1973 | if (err) |
| 1974 | return err; |
Andi Kleen | 91c6d40 | 2005-07-28 21:15:39 -0700 | [diff] [blame] | 1975 | |
Ingo Molnar | cb491fc | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 1976 | for (i = 0; mce_attrs[i]; i++) { |
| 1977 | err = sysdev_create_file(&per_cpu(mce_dev, cpu), mce_attrs[i]); |
Akinobu Mita | d435d86 | 2007-10-18 03:05:15 -0700 | [diff] [blame] | 1978 | if (err) |
| 1979 | goto error; |
Andi Kleen | 91c6d40 | 2005-07-28 21:15:39 -0700 | [diff] [blame] | 1980 | } |
Hidetoshi Seto | b1f49f9 | 2009-06-18 14:53:24 +0900 | [diff] [blame] | 1981 | for (j = 0; j < banks; j++) { |
Ingo Molnar | cb491fc | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 1982 | err = sysdev_create_file(&per_cpu(mce_dev, cpu), |
Andi Kleen | cebe182 | 2009-07-09 00:31:43 +0200 | [diff] [blame] | 1983 | &mce_banks[j].attr); |
Andi Kleen | 0d7482e3 | 2009-02-17 23:07:13 +0100 | [diff] [blame] | 1984 | if (err) |
| 1985 | goto error2; |
| 1986 | } |
Ingo Molnar | cb491fc | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 1987 | cpumask_set_cpu(cpu, mce_dev_initialized); |
Akinobu Mita | d435d86 | 2007-10-18 03:05:15 -0700 | [diff] [blame] | 1988 | |
| 1989 | return 0; |
Andi Kleen | 0d7482e3 | 2009-02-17 23:07:13 +0100 | [diff] [blame] | 1990 | error2: |
Hidetoshi Seto | b1f49f9 | 2009-06-18 14:53:24 +0900 | [diff] [blame] | 1991 | while (--j >= 0) |
Andi Kleen | cebe182 | 2009-07-09 00:31:43 +0200 | [diff] [blame] | 1992 | sysdev_remove_file(&per_cpu(mce_dev, cpu), &mce_banks[j].attr); |
Akinobu Mita | d435d86 | 2007-10-18 03:05:15 -0700 | [diff] [blame] | 1993 | error: |
Ingo Molnar | cb491fc | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 1994 | while (--i >= 0) |
Hidetoshi Seto | 5c0e9f2 | 2009-12-08 16:52:44 +0900 | [diff] [blame] | 1995 | sysdev_remove_file(&per_cpu(mce_dev, cpu), mce_attrs[i]); |
Ingo Molnar | cb491fc | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 1996 | |
| 1997 | sysdev_unregister(&per_cpu(mce_dev, cpu)); |
Akinobu Mita | d435d86 | 2007-10-18 03:05:15 -0700 | [diff] [blame] | 1998 | |
Andi Kleen | 91c6d40 | 2005-07-28 21:15:39 -0700 | [diff] [blame] | 1999 | return err; |
| 2000 | } |
| 2001 | |
Jan Beulich | 2d9cd6c | 2008-08-29 13:15:04 +0100 | [diff] [blame] | 2002 | static __cpuinit void mce_remove_device(unsigned int cpu) |
Andi Kleen | 91c6d40 | 2005-07-28 21:15:39 -0700 | [diff] [blame] | 2003 | { |
Shaohua Li | 73ca535 | 2006-01-11 22:43:06 +0100 | [diff] [blame] | 2004 | int i; |
| 2005 | |
Ingo Molnar | cb491fc | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 2006 | if (!cpumask_test_cpu(cpu, mce_dev_initialized)) |
Andreas Herrmann | bae19fe | 2007-11-14 17:00:44 -0800 | [diff] [blame] | 2007 | return; |
| 2008 | |
Ingo Molnar | cb491fc | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 2009 | for (i = 0; mce_attrs[i]; i++) |
| 2010 | sysdev_remove_file(&per_cpu(mce_dev, cpu), mce_attrs[i]); |
| 2011 | |
Andi Kleen | 0d7482e3 | 2009-02-17 23:07:13 +0100 | [diff] [blame] | 2012 | for (i = 0; i < banks; i++) |
Andi Kleen | cebe182 | 2009-07-09 00:31:43 +0200 | [diff] [blame] | 2013 | sysdev_remove_file(&per_cpu(mce_dev, cpu), &mce_banks[i].attr); |
Ingo Molnar | cb491fc | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 2014 | |
| 2015 | sysdev_unregister(&per_cpu(mce_dev, cpu)); |
| 2016 | cpumask_clear_cpu(cpu, mce_dev_initialized); |
Andi Kleen | 91c6d40 | 2005-07-28 21:15:39 -0700 | [diff] [blame] | 2017 | } |
Andi Kleen | 91c6d40 | 2005-07-28 21:15:39 -0700 | [diff] [blame] | 2018 | |
Andi Kleen | d6b7558 | 2009-02-12 13:39:31 +0100 | [diff] [blame] | 2019 | /* Make sure there are no machine checks on offlined CPUs. */ |
Hidetoshi Seto | 767df1b | 2009-11-26 17:29:02 +0900 | [diff] [blame] | 2020 | static void __cpuinit mce_disable_cpu(void *h) |
Andi Kleen | d6b7558 | 2009-02-12 13:39:31 +0100 | [diff] [blame] | 2021 | { |
Andi Kleen | 88ccbed | 2009-02-12 13:49:36 +0100 | [diff] [blame] | 2022 | unsigned long action = *(unsigned long *)h; |
Ingo Molnar | cb491fc | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 2023 | int i; |
Andi Kleen | d6b7558 | 2009-02-12 13:39:31 +0100 | [diff] [blame] | 2024 | |
Tejun Heo | 7b543a5 | 2010-12-18 16:30:05 +0100 | [diff] [blame^] | 2025 | if (!mce_available(__this_cpu_ptr(&cpu_info))) |
Andi Kleen | d6b7558 | 2009-02-12 13:39:31 +0100 | [diff] [blame] | 2026 | return; |
Hidetoshi Seto | 767df1b | 2009-11-26 17:29:02 +0900 | [diff] [blame] | 2027 | |
Andi Kleen | 88ccbed | 2009-02-12 13:49:36 +0100 | [diff] [blame] | 2028 | if (!(action & CPU_TASKS_FROZEN)) |
| 2029 | cmci_clear(); |
Andi Kleen | 06b7a7a | 2009-04-27 18:37:43 +0200 | [diff] [blame] | 2030 | for (i = 0; i < banks; i++) { |
Andi Kleen | cebe182 | 2009-07-09 00:31:43 +0200 | [diff] [blame] | 2031 | struct mce_bank *b = &mce_banks[i]; |
Ingo Molnar | 11868a2 | 2009-09-23 17:49:55 +0200 | [diff] [blame] | 2032 | |
Andi Kleen | cebe182 | 2009-07-09 00:31:43 +0200 | [diff] [blame] | 2033 | if (b->init) |
Andi Kleen | a2d32bc | 2009-07-09 00:31:44 +0200 | [diff] [blame] | 2034 | wrmsrl(MSR_IA32_MCx_CTL(i), 0); |
Andi Kleen | 06b7a7a | 2009-04-27 18:37:43 +0200 | [diff] [blame] | 2035 | } |
Andi Kleen | d6b7558 | 2009-02-12 13:39:31 +0100 | [diff] [blame] | 2036 | } |
| 2037 | |
Hidetoshi Seto | 767df1b | 2009-11-26 17:29:02 +0900 | [diff] [blame] | 2038 | static void __cpuinit mce_reenable_cpu(void *h) |
Andi Kleen | d6b7558 | 2009-02-12 13:39:31 +0100 | [diff] [blame] | 2039 | { |
Andi Kleen | 88ccbed | 2009-02-12 13:49:36 +0100 | [diff] [blame] | 2040 | unsigned long action = *(unsigned long *)h; |
Ingo Molnar | e9eee03 | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 2041 | int i; |
Andi Kleen | d6b7558 | 2009-02-12 13:39:31 +0100 | [diff] [blame] | 2042 | |
Tejun Heo | 7b543a5 | 2010-12-18 16:30:05 +0100 | [diff] [blame^] | 2043 | if (!mce_available(__this_cpu_ptr(&cpu_info))) |
Andi Kleen | d6b7558 | 2009-02-12 13:39:31 +0100 | [diff] [blame] | 2044 | return; |
Ingo Molnar | e9eee03 | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 2045 | |
Andi Kleen | 88ccbed | 2009-02-12 13:49:36 +0100 | [diff] [blame] | 2046 | if (!(action & CPU_TASKS_FROZEN)) |
| 2047 | cmci_reenable(); |
Andi Kleen | 06b7a7a | 2009-04-27 18:37:43 +0200 | [diff] [blame] | 2048 | for (i = 0; i < banks; i++) { |
Andi Kleen | cebe182 | 2009-07-09 00:31:43 +0200 | [diff] [blame] | 2049 | struct mce_bank *b = &mce_banks[i]; |
Ingo Molnar | 11868a2 | 2009-09-23 17:49:55 +0200 | [diff] [blame] | 2050 | |
Andi Kleen | cebe182 | 2009-07-09 00:31:43 +0200 | [diff] [blame] | 2051 | if (b->init) |
Andi Kleen | a2d32bc | 2009-07-09 00:31:44 +0200 | [diff] [blame] | 2052 | wrmsrl(MSR_IA32_MCx_CTL(i), b->ctl); |
Andi Kleen | 06b7a7a | 2009-04-27 18:37:43 +0200 | [diff] [blame] | 2053 | } |
Andi Kleen | d6b7558 | 2009-02-12 13:39:31 +0100 | [diff] [blame] | 2054 | } |
| 2055 | |
Andi Kleen | 91c6d40 | 2005-07-28 21:15:39 -0700 | [diff] [blame] | 2056 | /* Get notified when a cpu comes on/off. Be hotplug friendly. */ |
Ingo Molnar | e9eee03 | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 2057 | static int __cpuinit |
| 2058 | mce_cpu_callback(struct notifier_block *nfb, unsigned long action, void *hcpu) |
Andi Kleen | 91c6d40 | 2005-07-28 21:15:39 -0700 | [diff] [blame] | 2059 | { |
| 2060 | unsigned int cpu = (unsigned long)hcpu; |
Andi Kleen | 52d168e | 2009-02-12 13:39:29 +0100 | [diff] [blame] | 2061 | struct timer_list *t = &per_cpu(mce_timer, cpu); |
Andi Kleen | 91c6d40 | 2005-07-28 21:15:39 -0700 | [diff] [blame] | 2062 | |
| 2063 | switch (action) { |
Andreas Herrmann | bae19fe | 2007-11-14 17:00:44 -0800 | [diff] [blame] | 2064 | case CPU_ONLINE: |
| 2065 | case CPU_ONLINE_FROZEN: |
| 2066 | mce_create_device(cpu); |
Rafael J. Wysocki | 8735728 | 2008-08-22 22:23:09 +0200 | [diff] [blame] | 2067 | if (threshold_cpu_callback) |
| 2068 | threshold_cpu_callback(action, cpu); |
Andi Kleen | 91c6d40 | 2005-07-28 21:15:39 -0700 | [diff] [blame] | 2069 | break; |
Andi Kleen | 91c6d40 | 2005-07-28 21:15:39 -0700 | [diff] [blame] | 2070 | case CPU_DEAD: |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 2071 | case CPU_DEAD_FROZEN: |
Rafael J. Wysocki | 8735728 | 2008-08-22 22:23:09 +0200 | [diff] [blame] | 2072 | if (threshold_cpu_callback) |
| 2073 | threshold_cpu_callback(action, cpu); |
Andi Kleen | 91c6d40 | 2005-07-28 21:15:39 -0700 | [diff] [blame] | 2074 | mce_remove_device(cpu); |
| 2075 | break; |
Andi Kleen | 52d168e | 2009-02-12 13:39:29 +0100 | [diff] [blame] | 2076 | case CPU_DOWN_PREPARE: |
| 2077 | case CPU_DOWN_PREPARE_FROZEN: |
| 2078 | del_timer_sync(t); |
Andi Kleen | 88ccbed | 2009-02-12 13:49:36 +0100 | [diff] [blame] | 2079 | smp_call_function_single(cpu, mce_disable_cpu, &action, 1); |
Andi Kleen | 52d168e | 2009-02-12 13:39:29 +0100 | [diff] [blame] | 2080 | break; |
| 2081 | case CPU_DOWN_FAILED: |
| 2082 | case CPU_DOWN_FAILED_FROZEN: |
Hidetoshi Seto | fe5ed91 | 2009-12-03 11:33:08 +0900 | [diff] [blame] | 2083 | if (!mce_ignore_ce && check_interval) { |
| 2084 | t->expires = round_jiffies(jiffies + |
Tejun Heo | 245b2e7 | 2009-06-24 15:13:48 +0900 | [diff] [blame] | 2085 | __get_cpu_var(mce_next_interval)); |
Hidetoshi Seto | fe5ed91 | 2009-12-03 11:33:08 +0900 | [diff] [blame] | 2086 | add_timer_on(t, cpu); |
| 2087 | } |
Andi Kleen | 88ccbed | 2009-02-12 13:49:36 +0100 | [diff] [blame] | 2088 | smp_call_function_single(cpu, mce_reenable_cpu, &action, 1); |
| 2089 | break; |
| 2090 | case CPU_POST_DEAD: |
| 2091 | /* intentionally ignoring frozen here */ |
| 2092 | cmci_rediscover(cpu); |
Andi Kleen | 52d168e | 2009-02-12 13:39:29 +0100 | [diff] [blame] | 2093 | break; |
Andi Kleen | 91c6d40 | 2005-07-28 21:15:39 -0700 | [diff] [blame] | 2094 | } |
Andreas Herrmann | bae19fe | 2007-11-14 17:00:44 -0800 | [diff] [blame] | 2095 | return NOTIFY_OK; |
Andi Kleen | 91c6d40 | 2005-07-28 21:15:39 -0700 | [diff] [blame] | 2096 | } |
| 2097 | |
Sam Ravnborg | 1e35669 | 2008-01-30 13:33:36 +0100 | [diff] [blame] | 2098 | static struct notifier_block mce_cpu_notifier __cpuinitdata = { |
Andi Kleen | 91c6d40 | 2005-07-28 21:15:39 -0700 | [diff] [blame] | 2099 | .notifier_call = mce_cpu_callback, |
| 2100 | }; |
| 2101 | |
Andi Kleen | cebe182 | 2009-07-09 00:31:43 +0200 | [diff] [blame] | 2102 | static __init void mce_init_banks(void) |
Andi Kleen | 0d7482e3 | 2009-02-17 23:07:13 +0100 | [diff] [blame] | 2103 | { |
| 2104 | int i; |
| 2105 | |
Andi Kleen | 0d7482e3 | 2009-02-17 23:07:13 +0100 | [diff] [blame] | 2106 | for (i = 0; i < banks; i++) { |
Andi Kleen | cebe182 | 2009-07-09 00:31:43 +0200 | [diff] [blame] | 2107 | struct mce_bank *b = &mce_banks[i]; |
| 2108 | struct sysdev_attribute *a = &b->attr; |
Ingo Molnar | e9eee03 | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 2109 | |
Eric W. Biederman | a07e415 | 2010-02-11 15:23:05 -0800 | [diff] [blame] | 2110 | sysfs_attr_init(&a->attr); |
Andi Kleen | cebe182 | 2009-07-09 00:31:43 +0200 | [diff] [blame] | 2111 | a->attr.name = b->attrname; |
| 2112 | snprintf(b->attrname, ATTR_LEN, "bank%d", i); |
Ingo Molnar | e9eee03 | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 2113 | |
| 2114 | a->attr.mode = 0644; |
| 2115 | a->show = show_bank; |
| 2116 | a->store = set_bank; |
Andi Kleen | 0d7482e3 | 2009-02-17 23:07:13 +0100 | [diff] [blame] | 2117 | } |
Andi Kleen | 0d7482e3 | 2009-02-17 23:07:13 +0100 | [diff] [blame] | 2118 | } |
| 2119 | |
Borislav Petkov | 5e09954 | 2009-10-16 12:31:32 +0200 | [diff] [blame] | 2120 | static __init int mcheck_init_device(void) |
Andi Kleen | 91c6d40 | 2005-07-28 21:15:39 -0700 | [diff] [blame] | 2121 | { |
| 2122 | int err; |
| 2123 | int i = 0; |
| 2124 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2125 | if (!mce_available(&boot_cpu_data)) |
| 2126 | return -EIO; |
Andi Kleen | 0d7482e3 | 2009-02-17 23:07:13 +0100 | [diff] [blame] | 2127 | |
Yinghai Lu | e92fae0 | 2009-06-17 16:21:33 -0700 | [diff] [blame] | 2128 | zalloc_cpumask_var(&mce_dev_initialized, GFP_KERNEL); |
Rusty Russell | 996867d | 2009-03-13 14:49:51 +1030 | [diff] [blame] | 2129 | |
Andi Kleen | cebe182 | 2009-07-09 00:31:43 +0200 | [diff] [blame] | 2130 | mce_init_banks(); |
Andi Kleen | 0d7482e3 | 2009-02-17 23:07:13 +0100 | [diff] [blame] | 2131 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2132 | err = sysdev_class_register(&mce_sysclass); |
Akinobu Mita | d435d86 | 2007-10-18 03:05:15 -0700 | [diff] [blame] | 2133 | if (err) |
| 2134 | return err; |
Andi Kleen | 91c6d40 | 2005-07-28 21:15:39 -0700 | [diff] [blame] | 2135 | |
| 2136 | for_each_online_cpu(i) { |
Akinobu Mita | d435d86 | 2007-10-18 03:05:15 -0700 | [diff] [blame] | 2137 | err = mce_create_device(i); |
| 2138 | if (err) |
| 2139 | return err; |
Andi Kleen | 91c6d40 | 2005-07-28 21:15:39 -0700 | [diff] [blame] | 2140 | } |
| 2141 | |
Chandra Seetharaman | be6b5a3 | 2006-07-30 03:03:37 -0700 | [diff] [blame] | 2142 | register_hotcpu_notifier(&mce_cpu_notifier); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2143 | misc_register(&mce_log_device); |
Ingo Molnar | e9eee03 | 2009-04-08 12:31:17 +0200 | [diff] [blame] | 2144 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2145 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2146 | } |
Andi Kleen | 91c6d40 | 2005-07-28 21:15:39 -0700 | [diff] [blame] | 2147 | |
Borislav Petkov | 5e09954 | 2009-10-16 12:31:32 +0200 | [diff] [blame] | 2148 | device_initcall(mcheck_init_device); |
Ingo Molnar | a988d33 | 2009-04-08 12:31:25 +0200 | [diff] [blame] | 2149 | |
Andi Kleen | d7c3c9a | 2009-04-28 23:07:25 +0200 | [diff] [blame] | 2150 | /* |
| 2151 | * Old style boot options parsing. Only for compatibility. |
| 2152 | */ |
| 2153 | static int __init mcheck_disable(char *str) |
| 2154 | { |
| 2155 | mce_disabled = 1; |
| 2156 | return 1; |
| 2157 | } |
| 2158 | __setup("nomce", mcheck_disable); |
Huang Ying | 5be9ed2 | 2009-07-31 09:41:42 +0800 | [diff] [blame] | 2159 | |
| 2160 | #ifdef CONFIG_DEBUG_FS |
| 2161 | struct dentry *mce_get_debugfs_dir(void) |
| 2162 | { |
| 2163 | static struct dentry *dmce; |
| 2164 | |
| 2165 | if (!dmce) |
| 2166 | dmce = debugfs_create_dir("mce", NULL); |
| 2167 | |
| 2168 | return dmce; |
| 2169 | } |
Huang Ying | bf783f9 | 2009-07-31 09:41:43 +0800 | [diff] [blame] | 2170 | |
| 2171 | static void mce_reset(void) |
| 2172 | { |
| 2173 | cpu_missing = 0; |
| 2174 | atomic_set(&mce_fake_paniced, 0); |
| 2175 | atomic_set(&mce_executing, 0); |
| 2176 | atomic_set(&mce_callin, 0); |
| 2177 | atomic_set(&global_nwo, 0); |
| 2178 | } |
| 2179 | |
| 2180 | static int fake_panic_get(void *data, u64 *val) |
| 2181 | { |
| 2182 | *val = fake_panic; |
| 2183 | return 0; |
| 2184 | } |
| 2185 | |
| 2186 | static int fake_panic_set(void *data, u64 val) |
| 2187 | { |
| 2188 | mce_reset(); |
| 2189 | fake_panic = val; |
| 2190 | return 0; |
| 2191 | } |
| 2192 | |
| 2193 | DEFINE_SIMPLE_ATTRIBUTE(fake_panic_fops, fake_panic_get, |
| 2194 | fake_panic_set, "%llu\n"); |
| 2195 | |
Borislav Petkov | 5e09954 | 2009-10-16 12:31:32 +0200 | [diff] [blame] | 2196 | static int __init mcheck_debugfs_init(void) |
Huang Ying | bf783f9 | 2009-07-31 09:41:43 +0800 | [diff] [blame] | 2197 | { |
| 2198 | struct dentry *dmce, *ffake_panic; |
| 2199 | |
| 2200 | dmce = mce_get_debugfs_dir(); |
| 2201 | if (!dmce) |
| 2202 | return -ENOMEM; |
| 2203 | ffake_panic = debugfs_create_file("fake_panic", 0444, dmce, NULL, |
| 2204 | &fake_panic_fops); |
| 2205 | if (!ffake_panic) |
| 2206 | return -ENOMEM; |
| 2207 | |
| 2208 | return 0; |
| 2209 | } |
Borislav Petkov | 5e09954 | 2009-10-16 12:31:32 +0200 | [diff] [blame] | 2210 | late_initcall(mcheck_debugfs_init); |
Huang Ying | 5be9ed2 | 2009-07-31 09:41:42 +0800 | [diff] [blame] | 2211 | #endif |