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