Merge tag 'sound-4.8-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai...
[deliverable/linux.git] / arch / x86 / kernel / cpu / mcheck / mce-inject.c
CommitLineData
ea149b36
AK
1/*
2 * Machine check injection support.
3 * Copyright 2008 Intel Corporation.
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; version 2
8 * of the License.
9 *
10 * Authors:
11 * Andi Kleen
12 * Ying Huang
13 */
98a9c8c3 14#include <linux/uaccess.h>
ea149b36
AK
15#include <linux/module.h>
16#include <linux/timer.h>
17#include <linux/kernel.h>
18#include <linux/string.h>
19#include <linux/fs.h>
2c29d9dd 20#include <linux/preempt.h>
ea149b36 21#include <linux/smp.h>
5b7e88ed
HY
22#include <linux/notifier.h>
23#include <linux/kdebug.h>
24#include <linux/cpu.h>
25#include <linux/sched.h>
5a0e3ad6 26#include <linux/gfp.h>
ea149b36 27#include <asm/mce.h>
5b7e88ed 28#include <asm/apic.h>
c410b830 29#include <asm/nmi.h>
ea149b36
AK
30
31/* Update fake mce registers on current CPU. */
32static void inject_mce(struct mce *m)
33{
d620c67f 34 struct mce *i = &per_cpu(injectm, m->extcpu);
ea149b36 35
0d2eb44f 36 /* Make sure no one reads partially written injectm */
ea149b36
AK
37 i->finished = 0;
38 mb();
39 m->finished = 0;
40 /* First set the fields after finished */
d620c67f 41 i->extcpu = m->extcpu;
ea149b36
AK
42 mb();
43 /* Now write record in order, finished last (except above) */
44 memcpy(i, m, sizeof(struct mce));
45 /* Finally activate it */
46 mb();
47 i->finished = 1;
48}
49
0dcc6685 50static void raise_poll(struct mce *m)
5b7e88ed
HY
51{
52 unsigned long flags;
53 mce_banks_t b;
54
55 memset(&b, 0xff, sizeof(mce_banks_t));
56 local_irq_save(flags);
57 machine_check_poll(0, &b);
58 local_irq_restore(flags);
59 m->finished = 0;
60}
61
0dcc6685 62static void raise_exception(struct mce *m, struct pt_regs *pregs)
5b7e88ed
HY
63{
64 struct pt_regs regs;
65 unsigned long flags;
66
67 if (!pregs) {
68 memset(&regs, 0, sizeof(struct pt_regs));
69 regs.ip = m->ip;
70 regs.cs = m->cs;
71 pregs = &regs;
72 }
73 /* in mcheck exeception handler, irq will be disabled */
74 local_irq_save(flags);
75 do_machine_check(pregs, 0);
76 local_irq_restore(flags);
77 m->finished = 0;
78}
79
6ac5c531 80static cpumask_var_t mce_inject_cpumask;
b5975917 81static DEFINE_MUTEX(mce_inject_mutex);
5b7e88ed 82
9c48f1c6 83static int mce_raise_notify(unsigned int cmd, struct pt_regs *regs)
5b7e88ed 84{
5b7e88ed 85 int cpu = smp_processor_id();
89cbc767 86 struct mce *m = this_cpu_ptr(&injectm);
9c48f1c6
DZ
87 if (!cpumask_test_cpu(cpu, mce_inject_cpumask))
88 return NMI_DONE;
6ac5c531 89 cpumask_clear_cpu(cpu, mce_inject_cpumask);
0dcc6685 90 if (m->inject_flags & MCJ_EXCEPTION)
9c48f1c6 91 raise_exception(m, regs);
5b7e88ed 92 else if (m->status)
0dcc6685 93 raise_poll(m);
9c48f1c6 94 return NMI_HANDLED;
5b7e88ed
HY
95}
96
2c29d9dd
CG
97static void mce_irq_ipi(void *info)
98{
99 int cpu = smp_processor_id();
89cbc767 100 struct mce *m = this_cpu_ptr(&injectm);
2c29d9dd
CG
101
102 if (cpumask_test_cpu(cpu, mce_inject_cpumask) &&
103 m->inject_flags & MCJ_EXCEPTION) {
104 cpumask_clear_cpu(cpu, mce_inject_cpumask);
105 raise_exception(m, NULL);
106 }
107}
108
ea149b36 109/* Inject mce on current CPU */
14c0abf1 110static int raise_local(void)
ea149b36 111{
89cbc767 112 struct mce *m = this_cpu_ptr(&injectm);
5b7e88ed
HY
113 int context = MCJ_CTX(m->inject_flags);
114 int ret = 0;
d620c67f 115 int cpu = m->extcpu;
ea149b36 116
0dcc6685 117 if (m->inject_flags & MCJ_EXCEPTION) {
1b74dde7 118 pr_info("Triggering MCE exception on CPU %d\n", cpu);
5b7e88ed
HY
119 switch (context) {
120 case MCJ_CTX_IRQ:
121 /*
122 * Could do more to fake interrupts like
123 * calling irq_enter, but the necessary
124 * machinery isn't exported currently.
125 */
126 /*FALL THROUGH*/
127 case MCJ_CTX_PROCESS:
0dcc6685 128 raise_exception(m, NULL);
5b7e88ed
HY
129 break;
130 default:
1b74dde7 131 pr_info("Invalid MCE context\n");
5b7e88ed
HY
132 ret = -EINVAL;
133 }
1b74dde7 134 pr_info("MCE exception done on CPU %d\n", cpu);
5b7e88ed 135 } else if (m->status) {
1b74dde7 136 pr_info("Starting machine check poll CPU %d\n", cpu);
0dcc6685 137 raise_poll(m);
9ff36ee9 138 mce_notify_irq();
1b74dde7 139 pr_info("Machine check poll done on CPU %d\n", cpu);
5b7e88ed
HY
140 } else
141 m->finished = 0;
142
143 return ret;
144}
145
146static void raise_mce(struct mce *m)
147{
148 int context = MCJ_CTX(m->inject_flags);
149
150 inject_mce(m);
151
152 if (context == MCJ_CTX_RANDOM)
153 return;
154
155#ifdef CONFIG_X86_LOCAL_APIC
a9093684 156 if (m->inject_flags & (MCJ_IRQ_BROADCAST | MCJ_NMI_BROADCAST)) {
5b7e88ed
HY
157 unsigned long start;
158 int cpu;
2c29d9dd 159
5b7e88ed 160 get_online_cpus();
6ac5c531
RR
161 cpumask_copy(mce_inject_cpumask, cpu_online_mask);
162 cpumask_clear_cpu(get_cpu(), mce_inject_cpumask);
5b7e88ed
HY
163 for_each_online_cpu(cpu) {
164 struct mce *mcpu = &per_cpu(injectm, cpu);
165 if (!mcpu->finished ||
166 MCJ_CTX(mcpu->inject_flags) != MCJ_CTX_RANDOM)
6ac5c531 167 cpumask_clear_cpu(cpu, mce_inject_cpumask);
5b7e88ed 168 }
2c29d9dd 169 if (!cpumask_empty(mce_inject_cpumask)) {
a9093684 170 if (m->inject_flags & MCJ_IRQ_BROADCAST) {
2c29d9dd
CG
171 /*
172 * don't wait because mce_irq_ipi is necessary
173 * to be sync with following raise_local
174 */
175 preempt_disable();
176 smp_call_function_many(mce_inject_cpumask,
177 mce_irq_ipi, NULL, 0);
178 preempt_enable();
179 } else if (m->inject_flags & MCJ_NMI_BROADCAST)
180 apic->send_IPI_mask(mce_inject_cpumask,
181 NMI_VECTOR);
182 }
5b7e88ed 183 start = jiffies;
6ac5c531 184 while (!cpumask_empty(mce_inject_cpumask)) {
5b7e88ed 185 if (!time_before(jiffies, start + 2*HZ)) {
1b74dde7 186 pr_err("Timeout waiting for mce inject %lx\n",
6ac5c531 187 *cpumask_bits(mce_inject_cpumask));
5b7e88ed
HY
188 break;
189 }
190 cpu_relax();
191 }
14c0abf1 192 raise_local();
5b7e88ed
HY
193 put_cpu();
194 put_online_cpus();
195 } else
196#endif
ea22571c
TG
197 {
198 preempt_disable();
14c0abf1 199 raise_local();
ea22571c
TG
200 preempt_enable();
201 }
ea149b36
AK
202}
203
204/* Error injection interface */
205static ssize_t mce_write(struct file *filp, const char __user *ubuf,
206 size_t usize, loff_t *off)
207{
ea149b36
AK
208 struct mce m;
209
210 if (!capable(CAP_SYS_ADMIN))
211 return -EPERM;
212 /*
213 * There are some cases where real MSR reads could slip
214 * through.
215 */
216 if (!boot_cpu_has(X86_FEATURE_MCE) || !boot_cpu_has(X86_FEATURE_MCA))
217 return -EIO;
218
219 if ((unsigned long)usize > sizeof(struct mce))
220 usize = sizeof(struct mce);
221 if (copy_from_user(&m, ubuf, usize))
222 return -EFAULT;
223
d620c67f 224 if (m.extcpu >= num_possible_cpus() || !cpu_online(m.extcpu))
ea149b36
AK
225 return -EINVAL;
226
ea149b36
AK
227 /*
228 * Need to give user space some time to set everything up,
229 * so do it a jiffie or two later everywhere.
ea149b36 230 */
5b7e88ed 231 schedule_timeout(2);
b5975917
TG
232
233 mutex_lock(&mce_inject_mutex);
5b7e88ed 234 raise_mce(&m);
b5975917 235 mutex_unlock(&mce_inject_mutex);
ea149b36
AK
236 return usize;
237}
238
239static int inject_init(void)
240{
6ac5c531
RR
241 if (!alloc_cpumask_var(&mce_inject_cpumask, GFP_KERNEL))
242 return -ENOMEM;
1b74dde7 243 pr_info("Machine check injector initialized\n");
66f5ddf3 244 register_mce_write_callback(mce_write);
9c48f1c6
DZ
245 register_nmi_handler(NMI_LOCAL, mce_raise_notify, 0,
246 "mce_notify");
ea149b36
AK
247 return 0;
248}
249
250module_init(inject_init);
5706001a
PA
251/*
252 * Cannot tolerate unloading currently because we cannot
ea149b36
AK
253 * guarantee all openers of mce_chrdev will get a reference to us.
254 */
255MODULE_LICENSE("GPL");
This page took 0.370486 seconds and 5 git commands to generate.