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