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