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