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