- Update Xen patches to 3.3-rc5 and c/s 1157.
[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 = rcu_dereference_check_mce(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 DEFINE_PER_CPU(unsigned, mce_poll_count);
551
552 /*
553  * Poll for corrected events or events that happened before reset.
554  * Those are just logged through /dev/mcelog.
555  *
556  * This is executed in standard interrupt context.
557  *
558  * Note: spec recommends to panic for fatal unsignalled
559  * errors here. However this would be quite problematic --
560  * we would need to reimplement the Monarch handling and
561  * it would mess up the exclusion between exception handler
562  * and poll hander -- * so we skip this for now.
563  * These cases should not happen anyways, or only when the CPU
564  * is already totally * confused. In this case it's likely it will
565  * not fully execute the machine check handler either.
566  */
567 void machine_check_poll(enum mcp_flags flags, mce_banks_t *b)
568 {
569         struct mce m;
570         int i;
571
572         percpu_inc(mce_poll_count);
573
574         mce_gather_info(&m, NULL);
575
576         for (i = 0; i < banks; i++) {
577                 if (!mce_banks[i].ctl || !test_bit(i, *b))
578                         continue;
579
580                 m.misc = 0;
581                 m.addr = 0;
582                 m.bank = i;
583                 m.tsc = 0;
584
585                 barrier();
586                 m.status = mce_rdmsrl(MSR_IA32_MCx_STATUS(i));
587                 if (!(m.status & MCI_STATUS_VAL))
588                         continue;
589
590                 /*
591                  * Uncorrected or signalled events are handled by the exception
592                  * handler when it is enabled, so don't process those here.
593                  *
594                  * TBD do the same check for MCI_STATUS_EN here?
595                  */
596                 if (!(flags & MCP_UC) &&
597                     (m.status & (mce_ser ? MCI_STATUS_S : MCI_STATUS_UC)))
598                         continue;
599
600                 if (m.status & MCI_STATUS_MISCV)
601                         m.misc = mce_rdmsrl(MSR_IA32_MCx_MISC(i));
602                 if (m.status & MCI_STATUS_ADDRV)
603                         m.addr = mce_rdmsrl(MSR_IA32_MCx_ADDR(i));
604
605                 if (!(flags & MCP_TIMESTAMP))
606                         m.tsc = 0;
607                 /*
608                  * Don't get the IP here because it's unlikely to
609                  * have anything to do with the actual error location.
610                  */
611                 if (!(flags & MCP_DONTLOG) && !mce_dont_log_ce)
612                         mce_log(&m);
613
614                 /*
615                  * Clear state for this bank.
616                  */
617                 mce_wrmsrl(MSR_IA32_MCx_STATUS(i), 0);
618         }
619
620         /*
621          * Don't clear MCG_STATUS here because it's only defined for
622          * exceptions.
623          */
624
625         sync_core();
626 }
627 EXPORT_SYMBOL_GPL(machine_check_poll);
628
629 /*
630  * Do a quick check if any of the events requires a panic.
631  * This decides if we keep the events around or clear them.
632  */
633 static int mce_no_way_out(struct mce *m, char **msg)
634 {
635         int i;
636
637         for (i = 0; i < banks; i++) {
638                 m->status = mce_rdmsrl(MSR_IA32_MCx_STATUS(i));
639                 if (mce_severity(m, tolerant, msg) >= MCE_PANIC_SEVERITY)
640                         return 1;
641         }
642         return 0;
643 }
644
645 /*
646  * Variable to establish order between CPUs while scanning.
647  * Each CPU spins initially until executing is equal its number.
648  */
649 static atomic_t mce_executing;
650
651 /*
652  * Defines order of CPUs on entry. First CPU becomes Monarch.
653  */
654 static atomic_t mce_callin;
655
656 /*
657  * Check if a timeout waiting for other CPUs happened.
658  */
659 static int mce_timed_out(u64 *t)
660 {
661         /*
662          * The others already did panic for some reason.
663          * Bail out like in a timeout.
664          * rmb() to tell the compiler that system_state
665          * might have been modified by someone else.
666          */
667         rmb();
668         if (atomic_read(&mce_paniced))
669                 wait_for_panic();
670         if (!monarch_timeout)
671                 goto out;
672         if ((s64)*t < SPINUNIT) {
673                 /* CHECKME: Make panic default for 1 too? */
674                 if (tolerant < 1)
675                         mce_panic("Timeout synchronizing machine check over CPUs",
676                                   NULL, NULL);
677                 cpu_missing = 1;
678                 return 1;
679         }
680         *t -= SPINUNIT;
681 out:
682         touch_nmi_watchdog();
683         return 0;
684 }
685
686 /*
687  * The Monarch's reign.  The Monarch is the CPU who entered
688  * the machine check handler first. It waits for the others to
689  * raise the exception too and then grades them. When any
690  * error is fatal panic. Only then let the others continue.
691  *
692  * The other CPUs entering the MCE handler will be controlled by the
693  * Monarch. They are called Subjects.
694  *
695  * This way we prevent any potential data corruption in a unrecoverable case
696  * and also makes sure always all CPU's errors are examined.
697  *
698  * Also this detects the case of a machine check event coming from outer
699  * space (not detected by any CPUs) In this case some external agent wants
700  * us to shut down, so panic too.
701  *
702  * The other CPUs might still decide to panic if the handler happens
703  * in a unrecoverable place, but in this case the system is in a semi-stable
704  * state and won't corrupt anything by itself. It's ok to let the others
705  * continue for a bit first.
706  *
707  * All the spin loops have timeouts; when a timeout happens a CPU
708  * typically elects itself to be Monarch.
709  */
710 static void mce_reign(void)
711 {
712         int cpu;
713         struct mce *m = NULL;
714         int global_worst = 0;
715         char *msg = NULL;
716         char *nmsg = NULL;
717
718         /*
719          * This CPU is the Monarch and the other CPUs have run
720          * through their handlers.
721          * Grade the severity of the errors of all the CPUs.
722          */
723         for_each_possible_cpu(cpu) {
724                 int severity = mce_severity(&per_cpu(mces_seen, cpu), tolerant,
725                                             &nmsg);
726                 if (severity > global_worst) {
727                         msg = nmsg;
728                         global_worst = severity;
729                         m = &per_cpu(mces_seen, cpu);
730                 }
731         }
732
733         /*
734          * Cannot recover? Panic here then.
735          * This dumps all the mces in the log buffer and stops the
736          * other CPUs.
737          */
738         if (m && global_worst >= MCE_PANIC_SEVERITY && tolerant < 3)
739                 mce_panic("Fatal Machine check", m, msg);
740
741         /*
742          * For UC somewhere we let the CPU who detects it handle it.
743          * Also must let continue the others, otherwise the handling
744          * CPU could deadlock on a lock.
745          */
746
747         /*
748          * No machine check event found. Must be some external
749          * source or one CPU is hung. Panic.
750          */
751         if (global_worst <= MCE_KEEP_SEVERITY && tolerant < 3)
752                 mce_panic("Machine check from unknown source", NULL, NULL);
753
754         /*
755          * Now clear all the mces_seen so that they don't reappear on
756          * the next mce.
757          */
758         for_each_possible_cpu(cpu)
759                 memset(&per_cpu(mces_seen, cpu), 0, sizeof(struct mce));
760 }
761
762 static atomic_t global_nwo;
763
764 /*
765  * Start of Monarch synchronization. This waits until all CPUs have
766  * entered the exception handler and then determines if any of them
767  * saw a fatal event that requires panic. Then it executes them
768  * in the entry order.
769  * TBD double check parallel CPU hotunplug
770  */
771 static int mce_start(int *no_way_out)
772 {
773         int order;
774         int cpus = num_online_cpus();
775         u64 timeout = (u64)monarch_timeout * NSEC_PER_USEC;
776
777         if (!timeout)
778                 return -1;
779
780         atomic_add(*no_way_out, &global_nwo);
781         /*
782          * global_nwo should be updated before mce_callin
783          */
784         smp_wmb();
785         order = atomic_inc_return(&mce_callin);
786
787         /*
788          * Wait for everyone.
789          */
790         while (atomic_read(&mce_callin) != cpus) {
791                 if (mce_timed_out(&timeout)) {
792                         atomic_set(&global_nwo, 0);
793                         return -1;
794                 }
795                 ndelay(SPINUNIT);
796         }
797
798         /*
799          * mce_callin should be read before global_nwo
800          */
801         smp_rmb();
802
803         if (order == 1) {
804                 /*
805                  * Monarch: Starts executing now, the others wait.
806                  */
807                 atomic_set(&mce_executing, 1);
808         } else {
809                 /*
810                  * Subject: Now start the scanning loop one by one in
811                  * the original callin order.
812                  * This way when there are any shared banks it will be
813                  * only seen by one CPU before cleared, avoiding duplicates.
814                  */
815                 while (atomic_read(&mce_executing) < order) {
816                         if (mce_timed_out(&timeout)) {
817                                 atomic_set(&global_nwo, 0);
818                                 return -1;
819                         }
820                         ndelay(SPINUNIT);
821                 }
822         }
823
824         /*
825          * Cache the global no_way_out state.
826          */
827         *no_way_out = atomic_read(&global_nwo);
828
829         return order;
830 }
831
832 /*
833  * Synchronize between CPUs after main scanning loop.
834  * This invokes the bulk of the Monarch processing.
835  */
836 static int mce_end(int order)
837 {
838         int ret = -1;
839         u64 timeout = (u64)monarch_timeout * NSEC_PER_USEC;
840
841         if (!timeout)
842                 goto reset;
843         if (order < 0)
844                 goto reset;
845
846         /*
847          * Allow others to run.
848          */
849         atomic_inc(&mce_executing);
850
851         if (order == 1) {
852                 /* CHECKME: Can this race with a parallel hotplug? */
853                 int cpus = num_online_cpus();
854
855                 /*
856                  * Monarch: Wait for everyone to go through their scanning
857                  * loops.
858                  */
859                 while (atomic_read(&mce_executing) <= cpus) {
860                         if (mce_timed_out(&timeout))
861                                 goto reset;
862                         ndelay(SPINUNIT);
863                 }
864
865                 mce_reign();
866                 barrier();
867                 ret = 0;
868         } else {
869                 /*
870                  * Subject: Wait for Monarch to finish.
871                  */
872                 while (atomic_read(&mce_executing) != 0) {
873                         if (mce_timed_out(&timeout))
874                                 goto reset;
875                         ndelay(SPINUNIT);
876                 }
877
878                 /*
879                  * Don't reset anything. That's done by the Monarch.
880                  */
881                 return 0;
882         }
883
884         /*
885          * Reset all global state.
886          */
887 reset:
888         atomic_set(&global_nwo, 0);
889         atomic_set(&mce_callin, 0);
890         barrier();
891
892         /*
893          * Let others run again.
894          */
895         atomic_set(&mce_executing, 0);
896         return ret;
897 }
898
899 /*
900  * Check if the address reported by the CPU is in a format we can parse.
901  * It would be possible to add code for most other cases, but all would
902  * be somewhat complicated (e.g. segment offset would require an instruction
903  * parser). So only support physical addresses up to page granuality for now.
904  */
905 static int mce_usable_address(struct mce *m)
906 {
907         if (!(m->status & MCI_STATUS_MISCV) || !(m->status & MCI_STATUS_ADDRV))
908                 return 0;
909         if (MCI_MISC_ADDR_LSB(m->misc) > PAGE_SHIFT)
910                 return 0;
911         if (MCI_MISC_ADDR_MODE(m->misc) != MCI_MISC_ADDR_PHYS)
912                 return 0;
913         return 1;
914 }
915
916 static void mce_clear_state(unsigned long *toclear)
917 {
918         int i;
919
920         for (i = 0; i < banks; i++) {
921                 if (test_bit(i, toclear))
922                         mce_wrmsrl(MSR_IA32_MCx_STATUS(i), 0);
923         }
924 }
925
926 /*
927  * The actual machine check handler. This only handles real
928  * exceptions when something got corrupted coming in through int 18.
929  *
930  * This is executed in NMI context not subject to normal locking rules. This
931  * implies that most kernel services cannot be safely used. Don't even
932  * think about putting a printk in there!
933  *
934  * On Intel systems this is entered on all CPUs in parallel through
935  * MCE broadcast. However some CPUs might be broken beyond repair,
936  * so be always careful when synchronizing with others.
937  */
938 void do_machine_check(struct pt_regs *regs, long error_code)
939 {
940         struct mce m, *final;
941         int i;
942         int worst = 0;
943         int severity;
944         /*
945          * Establish sequential order between the CPUs entering the machine
946          * check handler.
947          */
948         int order;
949         /*
950          * If no_way_out gets set, there is no safe way to recover from this
951          * MCE.  If tolerant is cranked up, we'll try anyway.
952          */
953         int no_way_out = 0;
954         /*
955          * If kill_it gets set, there might be a way to recover from this
956          * error.
957          */
958         int kill_it = 0;
959         DECLARE_BITMAP(toclear, MAX_NR_BANKS);
960         char *msg = "Unknown";
961
962         atomic_inc(&mce_entry);
963
964         percpu_inc(mce_exception_count);
965
966         if (!banks)
967                 goto out;
968
969         mce_gather_info(&m, regs);
970
971         final = &__get_cpu_var(mces_seen);
972         *final = m;
973
974         no_way_out = mce_no_way_out(&m, &msg);
975
976         barrier();
977
978         /*
979          * When no restart IP must always kill or panic.
980          */
981         if (!(m.mcgstatus & MCG_STATUS_RIPV))
982                 kill_it = 1;
983
984         /*
985          * Go through all the banks in exclusion of the other CPUs.
986          * This way we don't report duplicated events on shared banks
987          * because the first one to see it will clear it.
988          */
989         order = mce_start(&no_way_out);
990         for (i = 0; i < banks; i++) {
991                 __clear_bit(i, toclear);
992                 if (!mce_banks[i].ctl)
993                         continue;
994
995                 m.misc = 0;
996                 m.addr = 0;
997                 m.bank = i;
998
999                 m.status = mce_rdmsrl(MSR_IA32_MCx_STATUS(i));
1000                 if ((m.status & MCI_STATUS_VAL) == 0)
1001                         continue;
1002
1003                 /*
1004                  * Non uncorrected or non signaled errors are handled by
1005                  * machine_check_poll. Leave them alone, unless this panics.
1006                  */
1007                 if (!(m.status & (mce_ser ? MCI_STATUS_S : MCI_STATUS_UC)) &&
1008                         !no_way_out)
1009                         continue;
1010
1011                 /*
1012                  * Set taint even when machine check was not enabled.
1013                  */
1014                 add_taint(TAINT_MACHINE_CHECK);
1015
1016                 severity = mce_severity(&m, tolerant, NULL);
1017
1018                 /*
1019                  * When machine check was for corrected handler don't touch,
1020                  * unless we're panicing.
1021                  */
1022                 if (severity == MCE_KEEP_SEVERITY && !no_way_out)
1023                         continue;
1024                 __set_bit(i, toclear);
1025                 if (severity == MCE_NO_SEVERITY) {
1026                         /*
1027                          * Machine check event was not enabled. Clear, but
1028                          * ignore.
1029                          */
1030                         continue;
1031                 }
1032
1033                 /*
1034                  * Kill on action required.
1035                  */
1036                 if (severity == MCE_AR_SEVERITY)
1037                         kill_it = 1;
1038
1039                 if (m.status & MCI_STATUS_MISCV)
1040                         m.misc = mce_rdmsrl(MSR_IA32_MCx_MISC(i));
1041                 if (m.status & MCI_STATUS_ADDRV)
1042                         m.addr = mce_rdmsrl(MSR_IA32_MCx_ADDR(i));
1043
1044                 /*
1045                  * Action optional error. Queue address for later processing.
1046                  * When the ring overflows we just ignore the AO error.
1047                  * RED-PEN add some logging mechanism when
1048                  * usable_address or mce_add_ring fails.
1049                  * RED-PEN don't ignore overflow for tolerant == 0
1050                  */
1051                 if (severity == MCE_AO_SEVERITY && mce_usable_address(&m))
1052                         mce_ring_add(m.addr >> PAGE_SHIFT);
1053
1054                 mce_log(&m);
1055
1056                 if (severity > worst) {
1057                         *final = m;
1058                         worst = severity;
1059                 }
1060         }
1061
1062         if (!no_way_out)
1063                 mce_clear_state(toclear);
1064
1065         /*
1066          * Do most of the synchronization with other CPUs.
1067          * When there's any problem use only local no_way_out state.
1068          */
1069         if (mce_end(order) < 0)
1070                 no_way_out = worst >= MCE_PANIC_SEVERITY;
1071
1072         /*
1073          * If we have decided that we just CAN'T continue, and the user
1074          * has not set tolerant to an insane level, give up and die.
1075          *
1076          * This is mainly used in the case when the system doesn't
1077          * support MCE broadcasting or it has been disabled.
1078          */
1079         if (no_way_out && tolerant < 3)
1080                 mce_panic("Fatal machine check on current CPU", final, msg);
1081
1082         /*
1083          * If the error seems to be unrecoverable, something should be
1084          * done.  Try to kill as little as possible.  If we can kill just
1085          * one task, do that.  If the user has set the tolerance very
1086          * high, don't try to do anything at all.
1087          */
1088
1089         if (kill_it && tolerant < 3)
1090                 force_sig(SIGBUS, current);
1091
1092         /* notify userspace ASAP */
1093         set_thread_flag(TIF_MCE_NOTIFY);
1094
1095         if (worst > 0)
1096                 mce_report_event(regs);
1097         mce_wrmsrl(MSR_IA32_MCG_STATUS, 0);
1098 out:
1099         atomic_dec(&mce_entry);
1100         sync_core();
1101 }
1102 EXPORT_SYMBOL_GPL(do_machine_check);
1103
1104 /* dummy to break dependency. actual code is in mm/memory-failure.c */
1105 void __attribute__((weak)) memory_failure(unsigned long pfn, int vector)
1106 {
1107         printk(KERN_ERR "Action optional memory failure at %lx ignored\n", pfn);
1108 }
1109
1110 /*
1111  * Called after mce notification in process context. This code
1112  * is allowed to sleep. Call the high level VM handler to process
1113  * any corrupted pages.
1114  * Assume that the work queue code only calls this one at a time
1115  * per CPU.
1116  * Note we don't disable preemption, so this code might run on the wrong
1117  * CPU. In this case the event is picked up by the scheduled work queue.
1118  * This is merely a fast path to expedite processing in some common
1119  * cases.
1120  */
1121 void mce_notify_process(void)
1122 {
1123         unsigned long pfn;
1124         mce_notify_irq();
1125         while (mce_ring_get(&pfn))
1126                 memory_failure(pfn, MCE_VECTOR);
1127 }
1128
1129 static void mce_process_work(struct work_struct *dummy)
1130 {
1131         mce_notify_process();
1132 }
1133
1134 #ifdef CONFIG_X86_MCE_INTEL
1135 /***
1136  * mce_log_therm_throt_event - Logs the thermal throttling event to mcelog
1137  * @cpu: The CPU on which the event occurred.
1138  * @status: Event status information
1139  *
1140  * This function should be called by the thermal interrupt after the
1141  * event has been processed and the decision was made to log the event
1142  * further.
1143  *
1144  * The status parameter will be saved to the 'status' field of 'struct mce'
1145  * and historically has been the register value of the
1146  * MSR_IA32_THERMAL_STATUS (Intel) msr.
1147  */
1148 void mce_log_therm_throt_event(__u64 status)
1149 {
1150         struct mce m;
1151
1152         mce_setup(&m);
1153         m.bank = MCE_THERMAL_BANK;
1154         m.status = status;
1155         mce_log(&m);
1156 }
1157 #endif /* CONFIG_X86_MCE_INTEL */
1158
1159 /*
1160  * Periodic polling timer for "silent" machine check errors.  If the
1161  * poller finds an MCE, poll 2x faster.  When the poller finds no more
1162  * errors, poll 2x slower (up to check_interval seconds).
1163  *
1164  * We will disable polling in DOM0 since all CMCI/Polling
1165  * mechanism will be done in XEN for Intel CPUs
1166  */
1167 #if defined (CONFIG_X86_XEN_MCE)
1168 static int check_interval = 0; /* disable polling */
1169 #else
1170 static int check_interval = 5 * 60; /* 5 minutes */
1171 #endif
1172
1173 static DEFINE_PER_CPU(int, mce_next_interval); /* in jiffies */
1174 static DEFINE_PER_CPU(struct timer_list, mce_timer);
1175
1176 static void mce_start_timer(unsigned long data)
1177 {
1178         struct timer_list *t = &per_cpu(mce_timer, data);
1179         int *n;
1180
1181         WARN_ON(smp_processor_id() != data);
1182
1183         if (mce_available(__this_cpu_ptr(&cpu_info))) {
1184                 machine_check_poll(MCP_TIMESTAMP,
1185                                 &__get_cpu_var(mce_poll_banks));
1186         }
1187
1188         /*
1189          * Alert userspace if needed.  If we logged an MCE, reduce the
1190          * polling interval, otherwise increase the polling interval.
1191          */
1192         n = &__get_cpu_var(mce_next_interval);
1193         if (mce_notify_irq())
1194                 *n = max(*n/2, HZ/100);
1195         else
1196                 *n = min(*n*2, (int)round_jiffies_relative(check_interval*HZ));
1197
1198         t->expires = jiffies + *n;
1199         add_timer_on(t, smp_processor_id());
1200 }
1201
1202 /* Must not be called in IRQ context where del_timer_sync() can deadlock */
1203 static void mce_timer_delete_all(void)
1204 {
1205         int cpu;
1206
1207         for_each_online_cpu(cpu)
1208                 del_timer_sync(&per_cpu(mce_timer, cpu));
1209 }
1210
1211 static void mce_do_trigger(struct work_struct *work)
1212 {
1213         call_usermodehelper(mce_helper, mce_helper_argv, NULL, UMH_NO_WAIT);
1214 }
1215
1216 static DECLARE_WORK(mce_trigger_work, mce_do_trigger);
1217
1218 /*
1219  * Notify the user(s) about new machine check events.
1220  * Can be called from interrupt context, but not from machine check/NMI
1221  * context.
1222  */
1223 int mce_notify_irq(void)
1224 {
1225         /* Not more than two messages every minute */
1226         static DEFINE_RATELIMIT_STATE(ratelimit, 60*HZ, 2);
1227
1228         clear_thread_flag(TIF_MCE_NOTIFY);
1229
1230         if (test_and_clear_bit(0, &mce_need_notify)) {
1231                 /* wake processes polling /dev/mcelog */
1232                 wake_up_interruptible(&mce_chrdev_wait);
1233
1234                 /*
1235                  * There is no risk of missing notifications because
1236                  * work_pending is always cleared before the function is
1237                  * executed.
1238                  */
1239                 if (mce_helper[0] && !work_pending(&mce_trigger_work))
1240                         schedule_work(&mce_trigger_work);
1241
1242                 if (__ratelimit(&ratelimit))
1243                         pr_info(HW_ERR "Machine check events logged\n");
1244
1245                 return 1;
1246         }
1247         return 0;
1248 }
1249 EXPORT_SYMBOL_GPL(mce_notify_irq);
1250
1251 static int __cpuinit __mcheck_cpu_mce_banks_init(void)
1252 {
1253         int i;
1254
1255         mce_banks = kzalloc(banks * sizeof(struct mce_bank), GFP_KERNEL);
1256         if (!mce_banks)
1257                 return -ENOMEM;
1258         for (i = 0; i < banks; i++) {
1259                 struct mce_bank *b = &mce_banks[i];
1260
1261                 b->ctl = -1ULL;
1262                 b->init = 1;
1263         }
1264         return 0;
1265 }
1266
1267 /*
1268  * Initialize Machine Checks for a CPU.
1269  */
1270 static int __cpuinit __mcheck_cpu_cap_init(void)
1271 {
1272         unsigned b;
1273         u64 cap;
1274
1275         rdmsrl(MSR_IA32_MCG_CAP, cap);
1276
1277         b = cap & MCG_BANKCNT_MASK;
1278         if (!banks)
1279                 printk(KERN_INFO "mce: CPU supports %d MCE banks\n", b);
1280
1281         if (b > MAX_NR_BANKS) {
1282                 printk(KERN_WARNING
1283                        "MCE: Using only %u machine check banks out of %u\n",
1284                         MAX_NR_BANKS, b);
1285                 b = MAX_NR_BANKS;
1286         }
1287
1288         /* Don't support asymmetric configurations today */
1289         WARN_ON(banks != 0 && b != banks);
1290         banks = b;
1291         if (!mce_banks) {
1292                 int err = __mcheck_cpu_mce_banks_init();
1293
1294                 if (err)
1295                         return err;
1296         }
1297
1298         /* Use accurate RIP reporting if available. */
1299         if ((cap & MCG_EXT_P) && MCG_EXT_CNT(cap) >= 9)
1300                 rip_msr = MSR_IA32_MCG_EIP;
1301
1302         if (cap & MCG_SER_P)
1303                 mce_ser = 1;
1304
1305         return 0;
1306 }
1307
1308 static void __mcheck_cpu_init_generic(void)
1309 {
1310         mce_banks_t all_banks;
1311         u64 cap;
1312         int i;
1313
1314         /*
1315          * Log the machine checks left over from the previous reset.
1316          */
1317         bitmap_fill(all_banks, MAX_NR_BANKS);
1318         machine_check_poll(MCP_UC|(!mce_bootlog ? MCP_DONTLOG : 0), &all_banks);
1319
1320         set_in_cr4(X86_CR4_MCE);
1321
1322         rdmsrl(MSR_IA32_MCG_CAP, cap);
1323         if (cap & MCG_CTL_P)
1324                 wrmsr(MSR_IA32_MCG_CTL, 0xffffffff, 0xffffffff);
1325
1326         for (i = 0; i < banks; i++) {
1327                 struct mce_bank *b = &mce_banks[i];
1328
1329                 if (!b->init)
1330                         continue;
1331                 wrmsrl(MSR_IA32_MCx_CTL(i), b->ctl);
1332                 wrmsrl(MSR_IA32_MCx_STATUS(i), 0);
1333         }
1334 }
1335
1336 /* Add per CPU specific workarounds here */
1337 static int __cpuinit __mcheck_cpu_apply_quirks(struct cpuinfo_x86 *c)
1338 {
1339         if (c->x86_vendor == X86_VENDOR_UNKNOWN) {
1340                 pr_info("MCE: unknown CPU type - not enabling MCE support.\n");
1341                 return -EOPNOTSUPP;
1342         }
1343
1344         /* This should be disabled by the BIOS, but isn't always */
1345         if (c->x86_vendor == X86_VENDOR_AMD) {
1346 #ifndef CONFIG_XEN
1347                 if (c->x86 == 15 && banks > 4) {
1348                         /*
1349                          * disable GART TBL walk error reporting, which
1350                          * trips off incorrectly with the IOMMU & 3ware
1351                          * & Cerberus:
1352                          */
1353                         clear_bit(10, (unsigned long *)&mce_banks[4].ctl);
1354                 }
1355 #endif
1356                 if (c->x86 <= 17 && mce_bootlog < 0) {
1357                         /*
1358                          * Lots of broken BIOS around that don't clear them
1359                          * by default and leave crap in there. Don't log:
1360                          */
1361                         mce_bootlog = 0;
1362                 }
1363                 /*
1364                  * Various K7s with broken bank 0 around. Always disable
1365                  * by default.
1366                  */
1367                  if (c->x86 == 6 && banks > 0)
1368                         mce_banks[0].ctl = 0;
1369         }
1370
1371         if (c->x86_vendor == X86_VENDOR_INTEL) {
1372                 /*
1373                  * SDM documents that on family 6 bank 0 should not be written
1374                  * because it aliases to another special BIOS controlled
1375                  * register.
1376                  * But it's not aliased anymore on model 0x1a+
1377                  * Don't ignore bank 0 completely because there could be a
1378                  * valid event later, merely don't write CTL0.
1379                  */
1380
1381                 if (c->x86 == 6 && c->x86_model < 0x1A && banks > 0)
1382                         mce_banks[0].init = 0;
1383
1384                 /*
1385                  * All newer Intel systems support MCE broadcasting. Enable
1386                  * synchronization with a one second timeout.
1387                  */
1388                 if ((c->x86 > 6 || (c->x86 == 6 && c->x86_model >= 0xe)) &&
1389                         monarch_timeout < 0)
1390                         monarch_timeout = USEC_PER_SEC;
1391
1392                 /*
1393                  * There are also broken BIOSes on some Pentium M and
1394                  * earlier systems:
1395                  */
1396                 if (c->x86 == 6 && c->x86_model <= 13 && mce_bootlog < 0)
1397                         mce_bootlog = 0;
1398         }
1399         if (monarch_timeout < 0)
1400                 monarch_timeout = 0;
1401         if (mce_bootlog != 0)
1402                 mce_panic_timeout = 30;
1403
1404         return 0;
1405 }
1406
1407 static int __cpuinit __mcheck_cpu_ancient_init(struct cpuinfo_x86 *c)
1408 {
1409         if (c->x86 != 5)
1410                 return 0;
1411
1412         switch (c->x86_vendor) {
1413         case X86_VENDOR_INTEL:
1414                 intel_p5_mcheck_init(c);
1415                 return 1;
1416                 break;
1417         case X86_VENDOR_CENTAUR:
1418                 winchip_mcheck_init(c);
1419                 return 1;
1420                 break;
1421         }
1422
1423         return 0;
1424 }
1425
1426 static void __mcheck_cpu_init_vendor(struct cpuinfo_x86 *c)
1427 {
1428 #ifndef CONFIG_X86_64_XEN
1429         switch (c->x86_vendor) {
1430         case X86_VENDOR_INTEL:
1431                 mce_intel_feature_init(c);
1432                 break;
1433         case X86_VENDOR_AMD:
1434                 mce_amd_feature_init(c);
1435                 break;
1436         default:
1437                 break;
1438         }
1439 #endif
1440 }
1441
1442 static void __mcheck_cpu_init_timer(void)
1443 {
1444         struct timer_list *t = &__get_cpu_var(mce_timer);
1445         int *n = &__get_cpu_var(mce_next_interval);
1446
1447         setup_timer(t, mce_start_timer, smp_processor_id());
1448
1449         if (mce_ignore_ce)
1450                 return;
1451
1452         *n = check_interval * HZ;
1453         if (!*n)
1454                 return;
1455         t->expires = round_jiffies(jiffies + *n);
1456         add_timer_on(t, smp_processor_id());
1457 }
1458
1459 /* Handle unconfigured int18 (should never happen) */
1460 static void unexpected_machine_check(struct pt_regs *regs, long error_code)
1461 {
1462         printk(KERN_ERR "CPU#%d: Unexpected int18 (Machine Check).\n",
1463                smp_processor_id());
1464 }
1465
1466 /* Call the installed machine check handler for this CPU setup. */
1467 void (*machine_check_vector)(struct pt_regs *, long error_code) =
1468                                                 unexpected_machine_check;
1469
1470 /*
1471  * Called for each booted CPU to set up machine checks.
1472  * Must be called with preempt off:
1473  */
1474 void __cpuinit mcheck_cpu_init(struct cpuinfo_x86 *c)
1475 {
1476         if (mce_disabled)
1477                 return;
1478
1479         if (__mcheck_cpu_ancient_init(c))
1480                 return;
1481
1482         if (!mce_available(c))
1483                 return;
1484
1485         if (__mcheck_cpu_cap_init() < 0 || __mcheck_cpu_apply_quirks(c) < 0) {
1486                 mce_disabled = 1;
1487                 return;
1488         }
1489
1490         machine_check_vector = do_machine_check;
1491
1492         __mcheck_cpu_init_generic();
1493         __mcheck_cpu_init_vendor(c);
1494         __mcheck_cpu_init_timer();
1495         INIT_WORK(&__get_cpu_var(mce_work), mce_process_work);
1496         init_irq_work(&__get_cpu_var(mce_irq_work), &mce_irq_work_cb);
1497 }
1498
1499 /*
1500  * mce_chrdev: Character device /dev/mcelog to read and clear the MCE log.
1501  */
1502
1503 static DEFINE_SPINLOCK(mce_chrdev_state_lock);
1504 static int mce_chrdev_open_count;       /* #times opened */
1505 static int mce_chrdev_open_exclu;       /* already open exclusive? */
1506
1507 static int mce_chrdev_open(struct inode *inode, struct file *file)
1508 {
1509         spin_lock(&mce_chrdev_state_lock);
1510
1511         if (mce_chrdev_open_exclu ||
1512             (mce_chrdev_open_count && (file->f_flags & O_EXCL))) {
1513                 spin_unlock(&mce_chrdev_state_lock);
1514
1515                 return -EBUSY;
1516         }
1517
1518         if (file->f_flags & O_EXCL)
1519                 mce_chrdev_open_exclu = 1;
1520         mce_chrdev_open_count++;
1521
1522         spin_unlock(&mce_chrdev_state_lock);
1523
1524         return nonseekable_open(inode, file);
1525 }
1526
1527 static int mce_chrdev_release(struct inode *inode, struct file *file)
1528 {
1529         spin_lock(&mce_chrdev_state_lock);
1530
1531         mce_chrdev_open_count--;
1532         mce_chrdev_open_exclu = 0;
1533
1534         spin_unlock(&mce_chrdev_state_lock);
1535
1536         return 0;
1537 }
1538
1539 static void collect_tscs(void *data)
1540 {
1541         unsigned long *cpu_tsc = (unsigned long *)data;
1542
1543         rdtscll(cpu_tsc[smp_processor_id()]);
1544 }
1545
1546 static int mce_apei_read_done;
1547
1548 /* Collect MCE record of previous boot in persistent storage via APEI ERST. */
1549 static int __mce_read_apei(char __user **ubuf, size_t usize)
1550 {
1551         int rc;
1552         u64 record_id;
1553         struct mce m;
1554
1555         if (usize < sizeof(struct mce))
1556                 return -EINVAL;
1557
1558         rc = apei_read_mce(&m, &record_id);
1559         /* Error or no more MCE record */
1560         if (rc <= 0) {
1561                 mce_apei_read_done = 1;
1562                 return rc;
1563         }
1564         rc = -EFAULT;
1565         if (copy_to_user(*ubuf, &m, sizeof(struct mce)))
1566                 return rc;
1567         /*
1568          * In fact, we should have cleared the record after that has
1569          * been flushed to the disk or sent to network in
1570          * /sbin/mcelog, but we have no interface to support that now,
1571          * so just clear it to avoid duplication.
1572          */
1573         rc = apei_clear_mce(record_id);
1574         if (rc) {
1575                 mce_apei_read_done = 1;
1576                 return rc;
1577         }
1578         *ubuf += sizeof(struct mce);
1579
1580         return 0;
1581 }
1582
1583 static ssize_t mce_chrdev_read(struct file *filp, char __user *ubuf,
1584                                 size_t usize, loff_t *off)
1585 {
1586         char __user *buf = ubuf;
1587         unsigned long *cpu_tsc;
1588         unsigned prev, next;
1589         int i, err;
1590
1591         cpu_tsc = kmalloc(nr_cpu_ids * sizeof(long), GFP_KERNEL);
1592         if (!cpu_tsc)
1593                 return -ENOMEM;
1594
1595         mutex_lock(&mce_chrdev_read_mutex);
1596
1597         if (!mce_apei_read_done) {
1598                 err = __mce_read_apei(&buf, usize);
1599                 if (err || buf != ubuf)
1600                         goto out;
1601         }
1602
1603         next = rcu_dereference_check_mce(mcelog.next);
1604
1605         /* Only supports full reads right now */
1606         err = -EINVAL;
1607         if (*off != 0 || usize < MCE_LOG_LEN*sizeof(struct mce))
1608                 goto out;
1609
1610         err = 0;
1611         prev = 0;
1612         do {
1613                 for (i = prev; i < next; i++) {
1614                         unsigned long start = jiffies;
1615                         struct mce *m = &mcelog.entry[i];
1616
1617                         while (!m->finished) {
1618                                 if (time_after_eq(jiffies, start + 2)) {
1619                                         memset(m, 0, sizeof(*m));
1620                                         goto timeout;
1621                                 }
1622                                 cpu_relax();
1623                         }
1624                         smp_rmb();
1625                         err |= copy_to_user(buf, m, sizeof(*m));
1626                         buf += sizeof(*m);
1627 timeout:
1628                         ;
1629                 }
1630
1631                 memset(mcelog.entry + prev, 0,
1632                        (next - prev) * sizeof(struct mce));
1633                 prev = next;
1634                 next = cmpxchg(&mcelog.next, prev, 0);
1635         } while (next != prev);
1636
1637         synchronize_sched();
1638
1639         /*
1640          * Collect entries that were still getting written before the
1641          * synchronize.
1642          */
1643         on_each_cpu(collect_tscs, cpu_tsc, 1);
1644
1645         for (i = next; i < MCE_LOG_LEN; i++) {
1646                 struct mce *m = &mcelog.entry[i];
1647
1648                 if (m->finished && m->tsc < cpu_tsc[m->cpu]) {
1649                         err |= copy_to_user(buf, m, sizeof(*m));
1650                         smp_rmb();
1651                         buf += sizeof(*m);
1652                         memset(m, 0, sizeof(*m));
1653                 }
1654         }
1655
1656         if (err)
1657                 err = -EFAULT;
1658
1659 out:
1660         mutex_unlock(&mce_chrdev_read_mutex);
1661         kfree(cpu_tsc);
1662
1663         return err ? err : buf - ubuf;
1664 }
1665
1666 static unsigned int mce_chrdev_poll(struct file *file, poll_table *wait)
1667 {
1668         poll_wait(file, &mce_chrdev_wait, wait);
1669         if (rcu_access_index(mcelog.next))
1670                 return POLLIN | POLLRDNORM;
1671         if (!mce_apei_read_done && apei_check_mce())
1672                 return POLLIN | POLLRDNORM;
1673         return 0;
1674 }
1675
1676 static long mce_chrdev_ioctl(struct file *f, unsigned int cmd,
1677                                 unsigned long arg)
1678 {
1679         int __user *p = (int __user *)arg;
1680
1681         if (!capable(CAP_SYS_ADMIN))
1682                 return -EPERM;
1683
1684         switch (cmd) {
1685         case MCE_GET_RECORD_LEN:
1686                 return put_user(sizeof(struct mce), p);
1687         case MCE_GET_LOG_LEN:
1688                 return put_user(MCE_LOG_LEN, p);
1689         case MCE_GETCLEAR_FLAGS: {
1690                 unsigned flags;
1691
1692                 do {
1693                         flags = mcelog.flags;
1694                 } while (cmpxchg(&mcelog.flags, flags, 0) != flags);
1695
1696                 return put_user(flags, p);
1697         }
1698         default:
1699                 return -ENOTTY;
1700         }
1701 }
1702
1703 static ssize_t (*mce_write)(struct file *filp, const char __user *ubuf,
1704                             size_t usize, loff_t *off);
1705
1706 void register_mce_write_callback(ssize_t (*fn)(struct file *filp,
1707                              const char __user *ubuf,
1708                              size_t usize, loff_t *off))
1709 {
1710         mce_write = fn;
1711 }
1712 EXPORT_SYMBOL_GPL(register_mce_write_callback);
1713
1714 ssize_t mce_chrdev_write(struct file *filp, const char __user *ubuf,
1715                          size_t usize, loff_t *off)
1716 {
1717         if (mce_write)
1718                 return mce_write(filp, ubuf, usize, off);
1719         else
1720                 return -EINVAL;
1721 }
1722
1723 static const struct file_operations mce_chrdev_ops = {
1724         .open                   = mce_chrdev_open,
1725         .release                = mce_chrdev_release,
1726         .read                   = mce_chrdev_read,
1727         .write                  = mce_chrdev_write,
1728         .poll                   = mce_chrdev_poll,
1729         .unlocked_ioctl         = mce_chrdev_ioctl,
1730         .llseek                 = no_llseek,
1731 };
1732
1733 static struct miscdevice mce_chrdev_device = {
1734         MISC_MCELOG_MINOR,
1735         "mcelog",
1736         &mce_chrdev_ops,
1737 };
1738
1739 /*
1740  * mce=off Disables machine check
1741  * mce=no_cmci Disables CMCI
1742  * mce=dont_log_ce Clears corrected events silently, no log created for CEs.
1743  * mce=ignore_ce Disables polling and CMCI, corrected events are not cleared.
1744  * mce=TOLERANCELEVEL[,monarchtimeout] (number, see above)
1745  *      monarchtimeout is how long to wait for other CPUs on machine
1746  *      check, or 0 to not wait
1747  * mce=bootlog Log MCEs from before booting. Disabled by default on AMD.
1748  * mce=nobootlog Don't log MCEs from before booting.
1749  */
1750 static int __init mcheck_enable(char *str)
1751 {
1752         if (*str == 0) {
1753                 enable_p5_mce();
1754                 return 1;
1755         }
1756         if (*str == '=')
1757                 str++;
1758         if (!strcmp(str, "off"))
1759                 mce_disabled = 1;
1760         else if (!strcmp(str, "no_cmci"))
1761                 mce_cmci_disabled = 1;
1762         else if (!strcmp(str, "dont_log_ce"))
1763                 mce_dont_log_ce = 1;
1764         else if (!strcmp(str, "ignore_ce"))
1765                 mce_ignore_ce = 1;
1766         else if (!strcmp(str, "bootlog") || !strcmp(str, "nobootlog"))
1767                 mce_bootlog = (str[0] == 'b');
1768         else if (isdigit(str[0])) {
1769                 get_option(&str, &tolerant);
1770                 if (*str == ',') {
1771                         ++str;
1772                         get_option(&str, &monarch_timeout);
1773                 }
1774         } else {
1775                 printk(KERN_INFO "mce argument %s ignored. Please use /sys\n",
1776                        str);
1777                 return 0;
1778         }
1779         return 1;
1780 }
1781 __setup("mce", mcheck_enable);
1782
1783 int __init mcheck_init(void)
1784 {
1785         mcheck_intel_therm_init();
1786
1787         return 0;
1788 }
1789
1790 /*
1791  * mce_syscore: PM support
1792  */
1793
1794 /*
1795  * Disable machine checks on suspend and shutdown. We can't really handle
1796  * them later.
1797  */
1798 static int mce_disable_error_reporting(void)
1799 {
1800         int i;
1801
1802         for (i = 0; i < banks; i++) {
1803                 struct mce_bank *b = &mce_banks[i];
1804
1805                 if (b->init)
1806                         wrmsrl(MSR_IA32_MCx_CTL(i), 0);
1807         }
1808         return 0;
1809 }
1810
1811 static int mce_syscore_suspend(void)
1812 {
1813         return mce_disable_error_reporting();
1814 }
1815
1816 static void mce_syscore_shutdown(void)
1817 {
1818         mce_disable_error_reporting();
1819 }
1820
1821 /*
1822  * On resume clear all MCE state. Don't want to see leftovers from the BIOS.
1823  * Only one CPU is active at this time, the others get re-added later using
1824  * CPU hotplug:
1825  */
1826 static void mce_syscore_resume(void)
1827 {
1828         __mcheck_cpu_init_generic();
1829         __mcheck_cpu_init_vendor(__this_cpu_ptr(&cpu_info));
1830 }
1831
1832 static struct syscore_ops mce_syscore_ops = {
1833         .suspend        = mce_syscore_suspend,
1834         .shutdown       = mce_syscore_shutdown,
1835         .resume         = mce_syscore_resume,
1836 };
1837
1838 /*
1839  * mce_device: Sysfs support
1840  */
1841
1842 static void mce_cpu_restart(void *data)
1843 {
1844         if (!mce_available(__this_cpu_ptr(&cpu_info)))
1845                 return;
1846         __mcheck_cpu_init_generic();
1847         __mcheck_cpu_init_timer();
1848 }
1849
1850 /* Reinit MCEs after user configuration changes */
1851 static void mce_restart(void)
1852 {
1853         mce_timer_delete_all();
1854         on_each_cpu(mce_cpu_restart, NULL, 1);
1855 }
1856
1857 /* Toggle features for corrected errors */
1858 static void mce_disable_cmci(void *data)
1859 {
1860         if (!mce_available(__this_cpu_ptr(&cpu_info)))
1861                 return;
1862         cmci_clear();
1863 }
1864
1865 static void mce_enable_ce(void *all)
1866 {
1867         if (!mce_available(__this_cpu_ptr(&cpu_info)))
1868                 return;
1869         cmci_reenable();
1870         cmci_recheck();
1871         if (all)
1872                 __mcheck_cpu_init_timer();
1873 }
1874
1875 static struct bus_type mce_subsys = {
1876         .name           = "machinecheck",
1877         .dev_name       = "machinecheck",
1878 };
1879
1880 struct device *mce_device[CONFIG_NR_CPUS];
1881
1882 __cpuinitdata
1883 void (*threshold_cpu_callback)(unsigned long action, unsigned int cpu);
1884
1885 static inline struct mce_bank *attr_to_bank(struct device_attribute *attr)
1886 {
1887         return container_of(attr, struct mce_bank, attr);
1888 }
1889
1890 static ssize_t show_bank(struct device *s, struct device_attribute *attr,
1891                          char *buf)
1892 {
1893         return sprintf(buf, "%llx\n", attr_to_bank(attr)->ctl);
1894 }
1895
1896 static ssize_t set_bank(struct device *s, struct device_attribute *attr,
1897                         const char *buf, size_t size)
1898 {
1899         u64 new;
1900
1901         if (strict_strtoull(buf, 0, &new) < 0)
1902                 return -EINVAL;
1903
1904         attr_to_bank(attr)->ctl = new;
1905         mce_restart();
1906
1907         return size;
1908 }
1909
1910 static ssize_t
1911 show_trigger(struct device *s, struct device_attribute *attr, char *buf)
1912 {
1913         strcpy(buf, mce_helper);
1914         strcat(buf, "\n");
1915         return strlen(mce_helper) + 1;
1916 }
1917
1918 static ssize_t set_trigger(struct device *s, struct device_attribute *attr,
1919                                 const char *buf, size_t siz)
1920 {
1921         char *p;
1922
1923         strncpy(mce_helper, buf, sizeof(mce_helper));
1924         mce_helper[sizeof(mce_helper)-1] = 0;
1925         p = strchr(mce_helper, '\n');
1926
1927         if (p)
1928                 *p = 0;
1929
1930         return strlen(mce_helper) + !!p;
1931 }
1932
1933 static ssize_t set_ignore_ce(struct device *s,
1934                              struct device_attribute *attr,
1935                              const char *buf, size_t size)
1936 {
1937         u64 new;
1938
1939         if (strict_strtoull(buf, 0, &new) < 0)
1940                 return -EINVAL;
1941
1942         if (mce_ignore_ce ^ !!new) {
1943                 if (new) {
1944                         /* disable ce features */
1945                         mce_timer_delete_all();
1946                         on_each_cpu(mce_disable_cmci, NULL, 1);
1947                         mce_ignore_ce = 1;
1948                 } else {
1949                         /* enable ce features */
1950                         mce_ignore_ce = 0;
1951                         on_each_cpu(mce_enable_ce, (void *)1, 1);
1952                 }
1953         }
1954         return size;
1955 }
1956
1957 static ssize_t set_cmci_disabled(struct device *s,
1958                                  struct device_attribute *attr,
1959                                  const char *buf, size_t size)
1960 {
1961         u64 new;
1962
1963         if (strict_strtoull(buf, 0, &new) < 0)
1964                 return -EINVAL;
1965
1966         if (mce_cmci_disabled ^ !!new) {
1967                 if (new) {
1968                         /* disable cmci */
1969                         on_each_cpu(mce_disable_cmci, NULL, 1);
1970                         mce_cmci_disabled = 1;
1971                 } else {
1972                         /* enable cmci */
1973                         mce_cmci_disabled = 0;
1974                         on_each_cpu(mce_enable_ce, NULL, 1);
1975                 }
1976         }
1977         return size;
1978 }
1979
1980 static ssize_t store_int_with_restart(struct device *s,
1981                                       struct device_attribute *attr,
1982                                       const char *buf, size_t size)
1983 {
1984         ssize_t ret = device_store_int(s, attr, buf, size);
1985         mce_restart();
1986         return ret;
1987 }
1988
1989 static DEVICE_ATTR(trigger, 0644, show_trigger, set_trigger);
1990 static DEVICE_INT_ATTR(tolerant, 0644, tolerant);
1991 static DEVICE_INT_ATTR(monarch_timeout, 0644, monarch_timeout);
1992 static DEVICE_INT_ATTR(dont_log_ce, 0644, mce_dont_log_ce);
1993
1994 static struct dev_ext_attribute dev_attr_check_interval = {
1995         __ATTR(check_interval, 0644, device_show_int, store_int_with_restart),
1996         &check_interval
1997 };
1998
1999 static struct dev_ext_attribute dev_attr_ignore_ce = {
2000         __ATTR(ignore_ce, 0644, device_show_int, set_ignore_ce),
2001         &mce_ignore_ce
2002 };
2003
2004 static struct dev_ext_attribute dev_attr_cmci_disabled = {
2005         __ATTR(cmci_disabled, 0644, device_show_int, set_cmci_disabled),
2006         &mce_cmci_disabled
2007 };
2008
2009 static struct device_attribute *mce_device_attrs[] = {
2010         &dev_attr_tolerant.attr,
2011         &dev_attr_check_interval.attr,
2012         &dev_attr_trigger,
2013         &dev_attr_monarch_timeout.attr,
2014         &dev_attr_dont_log_ce.attr,
2015         &dev_attr_ignore_ce.attr,
2016         &dev_attr_cmci_disabled.attr,
2017         NULL
2018 };
2019
2020 static cpumask_var_t mce_device_initialized;
2021
2022 static void mce_device_release(struct device *dev)
2023 {
2024         kfree(dev);
2025 }
2026
2027 /* Per cpu device init. All of the cpus still share the same ctrl bank: */
2028 static __cpuinit int mce_device_create(unsigned int cpu)
2029 {
2030         struct device *dev;
2031         int err;
2032         int i, j;
2033
2034         if (!mce_available(&boot_cpu_data))
2035                 return -EIO;
2036
2037         dev = kzalloc(sizeof *dev, GFP_KERNEL);
2038         if (!dev)
2039                 return -ENOMEM;
2040         dev->id  = cpu;
2041         dev->bus = &mce_subsys;
2042         dev->release = &mce_device_release;
2043
2044         err = device_register(dev);
2045         if (err)
2046                 return err;
2047
2048         for (i = 0; mce_device_attrs[i]; i++) {
2049                 err = device_create_file(dev, mce_device_attrs[i]);
2050                 if (err)
2051                         goto error;
2052         }
2053         for (j = 0; j < banks; j++) {
2054                 err = device_create_file(dev, &mce_banks[j].attr);
2055                 if (err)
2056                         goto error2;
2057         }
2058         cpumask_set_cpu(cpu, mce_device_initialized);
2059         mce_device[cpu] = dev;
2060
2061         return 0;
2062 error2:
2063         while (--j >= 0)
2064                 device_remove_file(dev, &mce_banks[j].attr);
2065 error:
2066         while (--i >= 0)
2067                 device_remove_file(dev, mce_device_attrs[i]);
2068
2069         device_unregister(dev);
2070
2071         return err;
2072 }
2073
2074 static __cpuinit void mce_device_remove(unsigned int cpu)
2075 {
2076         struct device *dev = mce_device[cpu];
2077         int i;
2078
2079         if (!cpumask_test_cpu(cpu, mce_device_initialized))
2080                 return;
2081
2082         for (i = 0; mce_device_attrs[i]; i++)
2083                 device_remove_file(dev, mce_device_attrs[i]);
2084
2085         for (i = 0; i < banks; i++)
2086                 device_remove_file(dev, &mce_banks[i].attr);
2087
2088         device_unregister(dev);
2089         cpumask_clear_cpu(cpu, mce_device_initialized);
2090         mce_device[cpu] = NULL;
2091 }
2092
2093 /* Make sure there are no machine checks on offlined CPUs. */
2094 static void __cpuinit mce_disable_cpu(void *h)
2095 {
2096         unsigned long action = *(unsigned long *)h;
2097         int i;
2098
2099         if (!mce_available(__this_cpu_ptr(&cpu_info)))
2100                 return;
2101
2102         if (!(action & CPU_TASKS_FROZEN))
2103                 cmci_clear();
2104         for (i = 0; i < banks; i++) {
2105                 struct mce_bank *b = &mce_banks[i];
2106
2107                 if (b->init)
2108                         wrmsrl(MSR_IA32_MCx_CTL(i), 0);
2109         }
2110 }
2111
2112 static void __cpuinit mce_reenable_cpu(void *h)
2113 {
2114         unsigned long action = *(unsigned long *)h;
2115         int i;
2116
2117         if (!mce_available(__this_cpu_ptr(&cpu_info)))
2118                 return;
2119
2120         if (!(action & CPU_TASKS_FROZEN))
2121                 cmci_reenable();
2122         for (i = 0; i < banks; i++) {
2123                 struct mce_bank *b = &mce_banks[i];
2124
2125                 if (b->init)
2126                         wrmsrl(MSR_IA32_MCx_CTL(i), b->ctl);
2127         }
2128 }
2129
2130 /* Get notified when a cpu comes on/off. Be hotplug friendly. */
2131 static int __cpuinit
2132 mce_cpu_callback(struct notifier_block *nfb, unsigned long action, void *hcpu)
2133 {
2134         unsigned int cpu = (unsigned long)hcpu;
2135         struct timer_list *t = &per_cpu(mce_timer, cpu);
2136
2137         switch (action) {
2138         case CPU_ONLINE:
2139         case CPU_ONLINE_FROZEN:
2140                 mce_device_create(cpu);
2141                 if (threshold_cpu_callback)
2142                         threshold_cpu_callback(action, cpu);
2143                 break;
2144         case CPU_DEAD:
2145         case CPU_DEAD_FROZEN:
2146                 if (threshold_cpu_callback)
2147                         threshold_cpu_callback(action, cpu);
2148                 mce_device_remove(cpu);
2149                 break;
2150         case CPU_DOWN_PREPARE:
2151         case CPU_DOWN_PREPARE_FROZEN:
2152                 del_timer_sync(t);
2153                 smp_call_function_single(cpu, mce_disable_cpu, &action, 1);
2154                 break;
2155         case CPU_DOWN_FAILED:
2156         case CPU_DOWN_FAILED_FROZEN:
2157                 if (!mce_ignore_ce && check_interval) {
2158                         t->expires = round_jiffies(jiffies +
2159                                            __get_cpu_var(mce_next_interval));
2160                         add_timer_on(t, cpu);
2161                 }
2162                 smp_call_function_single(cpu, mce_reenable_cpu, &action, 1);
2163                 break;
2164         case CPU_POST_DEAD:
2165                 /* intentionally ignoring frozen here */
2166                 cmci_rediscover(cpu);
2167                 break;
2168         }
2169         return NOTIFY_OK;
2170 }
2171
2172 static struct notifier_block mce_cpu_notifier __cpuinitdata = {
2173         .notifier_call = mce_cpu_callback,
2174 };
2175
2176 static __init void mce_init_banks(void)
2177 {
2178         int i;
2179
2180         for (i = 0; i < banks; i++) {
2181                 struct mce_bank *b = &mce_banks[i];
2182                 struct device_attribute *a = &b->attr;
2183
2184                 sysfs_attr_init(&a->attr);
2185                 a->attr.name    = b->attrname;
2186                 snprintf(b->attrname, ATTR_LEN, "bank%d", i);
2187
2188                 a->attr.mode    = 0644;
2189                 a->show         = show_bank;
2190                 a->store        = set_bank;
2191         }
2192 }
2193
2194 static __init int mcheck_init_device(void)
2195 {
2196         int err;
2197         int i = 0;
2198
2199         if (!mce_available(&boot_cpu_data))
2200                 return -EIO;
2201
2202         zalloc_cpumask_var(&mce_device_initialized, GFP_KERNEL);
2203
2204         mce_init_banks();
2205
2206         err = subsys_system_register(&mce_subsys, NULL);
2207         if (err)
2208                 return err;
2209
2210         for_each_online_cpu(i) {
2211                 err = mce_device_create(i);
2212                 if (err)
2213                         return err;
2214         }
2215
2216         register_syscore_ops(&mce_syscore_ops);
2217         register_hotcpu_notifier(&mce_cpu_notifier);
2218
2219         /* register character device /dev/mcelog */
2220         misc_register(&mce_chrdev_device);
2221
2222 #ifdef CONFIG_X86_XEN_MCE
2223         if (is_initial_xendomain()) {
2224                 /* Register vIRQ handler for MCE LOG processing */
2225                 extern int bind_virq_for_mce(void);
2226
2227                 printk(KERN_DEBUG "MCE: bind virq for DOM0 logging\n");
2228                 bind_virq_for_mce();
2229         }
2230 #endif
2231
2232         return err;
2233 }
2234 device_initcall(mcheck_init_device);
2235
2236 /*
2237  * Old style boot options parsing. Only for compatibility.
2238  */
2239 static int __init mcheck_disable(char *str)
2240 {
2241         mce_disabled = 1;
2242         return 1;
2243 }
2244 __setup("nomce", mcheck_disable);
2245
2246 #ifdef CONFIG_DEBUG_FS
2247 struct dentry *mce_get_debugfs_dir(void)
2248 {
2249         static struct dentry *dmce;
2250
2251         if (!dmce)
2252                 dmce = debugfs_create_dir("mce", NULL);
2253
2254         return dmce;
2255 }
2256
2257 static void mce_reset(void)
2258 {
2259         cpu_missing = 0;
2260         atomic_set(&mce_fake_paniced, 0);
2261         atomic_set(&mce_executing, 0);
2262         atomic_set(&mce_callin, 0);
2263         atomic_set(&global_nwo, 0);
2264 }
2265
2266 static int fake_panic_get(void *data, u64 *val)
2267 {
2268         *val = fake_panic;
2269         return 0;
2270 }
2271
2272 static int fake_panic_set(void *data, u64 val)
2273 {
2274         mce_reset();
2275         fake_panic = val;
2276         return 0;
2277 }
2278
2279 DEFINE_SIMPLE_ATTRIBUTE(fake_panic_fops, fake_panic_get,
2280                         fake_panic_set, "%llu\n");
2281
2282 static int __init mcheck_debugfs_init(void)
2283 {
2284         struct dentry *dmce, *ffake_panic;
2285
2286         dmce = mce_get_debugfs_dir();
2287         if (!dmce)
2288                 return -ENOMEM;
2289         ffake_panic = debugfs_create_file("fake_panic", 0444, dmce, NULL,
2290                                           &fake_panic_fops);
2291         if (!ffake_panic)
2292                 return -ENOMEM;
2293
2294         return 0;
2295 }
2296 late_initcall(mcheck_debugfs_init);
2297 #endif