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