ALSA: hda - Add the top speaker pin config for HP Spectre x360
[linux/fpc-iii.git] / arch / x86 / ras / mce_amd_inj.c
blob1104515d5ad2aadee8711425e089bce3857b8139
1 /*
2 * A simple MCE injection facility for testing different aspects of the RAS
3 * code. This driver should be built as module so that it can be loaded
4 * on production kernels for testing purposes.
6 * This file may be distributed under the terms of the GNU General Public
7 * License version 2.
9 * Copyright (c) 2010-15: Borislav Petkov <bp@alien8.de>
10 * Advanced Micro Devices Inc.
13 #include <linux/kobject.h>
14 #include <linux/debugfs.h>
15 #include <linux/device.h>
16 #include <linux/module.h>
17 #include <linux/cpu.h>
18 #include <linux/string.h>
19 #include <linux/uaccess.h>
20 #include <linux/pci.h>
22 #include <asm/mce.h>
23 #include <asm/smp.h>
24 #include <asm/amd_nb.h>
25 #include <asm/irq_vectors.h>
27 #include "../kernel/cpu/mcheck/mce-internal.h"
30 * Collect all the MCi_XXX settings
32 static struct mce i_mce;
33 static struct dentry *dfs_inj;
35 static u8 n_banks;
37 #define MAX_FLAG_OPT_SIZE 3
38 #define NBCFG 0x44
40 enum injection_type {
41 SW_INJ = 0, /* SW injection, simply decode the error */
42 HW_INJ, /* Trigger a #MC */
43 DFR_INT_INJ, /* Trigger Deferred error interrupt */
44 THR_INT_INJ, /* Trigger threshold interrupt */
45 N_INJ_TYPES,
48 static const char * const flags_options[] = {
49 [SW_INJ] = "sw",
50 [HW_INJ] = "hw",
51 [DFR_INT_INJ] = "df",
52 [THR_INT_INJ] = "th",
53 NULL
56 /* Set default injection to SW_INJ */
57 static enum injection_type inj_type = SW_INJ;
59 #define MCE_INJECT_SET(reg) \
60 static int inj_##reg##_set(void *data, u64 val) \
61 { \
62 struct mce *m = (struct mce *)data; \
64 m->reg = val; \
65 return 0; \
68 MCE_INJECT_SET(status);
69 MCE_INJECT_SET(misc);
70 MCE_INJECT_SET(addr);
72 #define MCE_INJECT_GET(reg) \
73 static int inj_##reg##_get(void *data, u64 *val) \
74 { \
75 struct mce *m = (struct mce *)data; \
77 *val = m->reg; \
78 return 0; \
81 MCE_INJECT_GET(status);
82 MCE_INJECT_GET(misc);
83 MCE_INJECT_GET(addr);
85 DEFINE_SIMPLE_ATTRIBUTE(status_fops, inj_status_get, inj_status_set, "%llx\n");
86 DEFINE_SIMPLE_ATTRIBUTE(misc_fops, inj_misc_get, inj_misc_set, "%llx\n");
87 DEFINE_SIMPLE_ATTRIBUTE(addr_fops, inj_addr_get, inj_addr_set, "%llx\n");
90 * Caller needs to be make sure this cpu doesn't disappear
91 * from under us, i.e.: get_cpu/put_cpu.
93 static int toggle_hw_mce_inject(unsigned int cpu, bool enable)
95 u32 l, h;
96 int err;
98 err = rdmsr_on_cpu(cpu, MSR_K7_HWCR, &l, &h);
99 if (err) {
100 pr_err("%s: error reading HWCR\n", __func__);
101 return err;
104 enable ? (l |= BIT(18)) : (l &= ~BIT(18));
106 err = wrmsr_on_cpu(cpu, MSR_K7_HWCR, l, h);
107 if (err)
108 pr_err("%s: error writing HWCR\n", __func__);
110 return err;
113 static int __set_inj(const char *buf)
115 int i;
117 for (i = 0; i < N_INJ_TYPES; i++) {
118 if (!strncmp(flags_options[i], buf, strlen(flags_options[i]))) {
119 inj_type = i;
120 return 0;
123 return -EINVAL;
126 static ssize_t flags_read(struct file *filp, char __user *ubuf,
127 size_t cnt, loff_t *ppos)
129 char buf[MAX_FLAG_OPT_SIZE];
130 int n;
132 n = sprintf(buf, "%s\n", flags_options[inj_type]);
134 return simple_read_from_buffer(ubuf, cnt, ppos, buf, n);
137 static ssize_t flags_write(struct file *filp, const char __user *ubuf,
138 size_t cnt, loff_t *ppos)
140 char buf[MAX_FLAG_OPT_SIZE], *__buf;
141 int err;
143 if (cnt > MAX_FLAG_OPT_SIZE)
144 return -EINVAL;
146 if (copy_from_user(&buf, ubuf, cnt))
147 return -EFAULT;
149 buf[cnt - 1] = 0;
151 /* strip whitespace */
152 __buf = strstrip(buf);
154 err = __set_inj(__buf);
155 if (err) {
156 pr_err("%s: Invalid flags value: %s\n", __func__, __buf);
157 return err;
160 *ppos += cnt;
162 return cnt;
165 static const struct file_operations flags_fops = {
166 .read = flags_read,
167 .write = flags_write,
168 .llseek = generic_file_llseek,
172 * On which CPU to inject?
174 MCE_INJECT_GET(extcpu);
176 static int inj_extcpu_set(void *data, u64 val)
178 struct mce *m = (struct mce *)data;
180 if (val >= nr_cpu_ids || !cpu_online(val)) {
181 pr_err("%s: Invalid CPU: %llu\n", __func__, val);
182 return -EINVAL;
184 m->extcpu = val;
185 return 0;
188 DEFINE_SIMPLE_ATTRIBUTE(extcpu_fops, inj_extcpu_get, inj_extcpu_set, "%llu\n");
190 static void trigger_mce(void *info)
192 asm volatile("int $18");
195 static void trigger_dfr_int(void *info)
197 asm volatile("int %0" :: "i" (DEFERRED_ERROR_VECTOR));
200 static void trigger_thr_int(void *info)
202 asm volatile("int %0" :: "i" (THRESHOLD_APIC_VECTOR));
205 static u32 get_nbc_for_node(int node_id)
207 struct cpuinfo_x86 *c = &boot_cpu_data;
208 u32 cores_per_node;
210 cores_per_node = (c->x86_max_cores * smp_num_siblings) / amd_get_nodes_per_socket();
212 return cores_per_node * node_id;
215 static void toggle_nb_mca_mst_cpu(u16 nid)
217 struct pci_dev *F3 = node_to_amd_nb(nid)->misc;
218 u32 val;
219 int err;
221 if (!F3)
222 return;
224 err = pci_read_config_dword(F3, NBCFG, &val);
225 if (err) {
226 pr_err("%s: Error reading F%dx%03x.\n",
227 __func__, PCI_FUNC(F3->devfn), NBCFG);
228 return;
231 if (val & BIT(27))
232 return;
234 pr_err("%s: Set D18F3x44[NbMcaToMstCpuEn] which BIOS hasn't done.\n",
235 __func__);
237 val |= BIT(27);
238 err = pci_write_config_dword(F3, NBCFG, val);
239 if (err)
240 pr_err("%s: Error writing F%dx%03x.\n",
241 __func__, PCI_FUNC(F3->devfn), NBCFG);
244 static void prepare_msrs(void *info)
246 struct mce i_mce = *(struct mce *)info;
247 u8 b = i_mce.bank;
249 wrmsrl(MSR_IA32_MCG_STATUS, i_mce.mcgstatus);
251 if (boot_cpu_has(X86_FEATURE_SMCA)) {
252 if (i_mce.inject_flags == DFR_INT_INJ) {
253 wrmsrl(MSR_AMD64_SMCA_MCx_DESTAT(b), i_mce.status);
254 wrmsrl(MSR_AMD64_SMCA_MCx_DEADDR(b), i_mce.addr);
255 } else {
256 wrmsrl(MSR_AMD64_SMCA_MCx_STATUS(b), i_mce.status);
257 wrmsrl(MSR_AMD64_SMCA_MCx_ADDR(b), i_mce.addr);
260 wrmsrl(MSR_AMD64_SMCA_MCx_MISC(b), i_mce.misc);
261 } else {
262 wrmsrl(MSR_IA32_MCx_STATUS(b), i_mce.status);
263 wrmsrl(MSR_IA32_MCx_ADDR(b), i_mce.addr);
264 wrmsrl(MSR_IA32_MCx_MISC(b), i_mce.misc);
269 static void do_inject(void)
271 u64 mcg_status = 0;
272 unsigned int cpu = i_mce.extcpu;
273 u8 b = i_mce.bank;
275 if (i_mce.misc)
276 i_mce.status |= MCI_STATUS_MISCV;
278 if (inj_type == SW_INJ) {
279 mce_inject_log(&i_mce);
280 return;
283 /* prep MCE global settings for the injection */
284 mcg_status = MCG_STATUS_MCIP | MCG_STATUS_EIPV;
286 if (!(i_mce.status & MCI_STATUS_PCC))
287 mcg_status |= MCG_STATUS_RIPV;
290 * Ensure necessary status bits for deferred errors:
291 * - MCx_STATUS[Deferred]: make sure it is a deferred error
292 * - MCx_STATUS[UC] cleared: deferred errors are _not_ UC
294 if (inj_type == DFR_INT_INJ) {
295 i_mce.status |= MCI_STATUS_DEFERRED;
296 i_mce.status |= (i_mce.status & ~MCI_STATUS_UC);
300 * For multi node CPUs, logging and reporting of bank 4 errors happens
301 * only on the node base core. Refer to D18F3x44[NbMcaToMstCpuEn] for
302 * Fam10h and later BKDGs.
304 if (static_cpu_has(X86_FEATURE_AMD_DCM) && b == 4) {
305 toggle_nb_mca_mst_cpu(amd_get_nb_id(cpu));
306 cpu = get_nbc_for_node(amd_get_nb_id(cpu));
309 get_online_cpus();
310 if (!cpu_online(cpu))
311 goto err;
313 toggle_hw_mce_inject(cpu, true);
315 i_mce.mcgstatus = mcg_status;
316 i_mce.inject_flags = inj_type;
317 smp_call_function_single(cpu, prepare_msrs, &i_mce, 0);
319 toggle_hw_mce_inject(cpu, false);
321 switch (inj_type) {
322 case DFR_INT_INJ:
323 smp_call_function_single(cpu, trigger_dfr_int, NULL, 0);
324 break;
325 case THR_INT_INJ:
326 smp_call_function_single(cpu, trigger_thr_int, NULL, 0);
327 break;
328 default:
329 smp_call_function_single(cpu, trigger_mce, NULL, 0);
332 err:
333 put_online_cpus();
338 * This denotes into which bank we're injecting and triggers
339 * the injection, at the same time.
341 static int inj_bank_set(void *data, u64 val)
343 struct mce *m = (struct mce *)data;
345 if (val >= n_banks) {
346 pr_err("Non-existent MCE bank: %llu\n", val);
347 return -EINVAL;
350 m->bank = val;
351 do_inject();
353 return 0;
356 MCE_INJECT_GET(bank);
358 DEFINE_SIMPLE_ATTRIBUTE(bank_fops, inj_bank_get, inj_bank_set, "%llu\n");
360 static const char readme_msg[] =
361 "Description of the files and their usages:\n"
362 "\n"
363 "Note1: i refers to the bank number below.\n"
364 "Note2: See respective BKDGs for the exact bit definitions of the files below\n"
365 "as they mirror the hardware registers.\n"
366 "\n"
367 "status:\t Set MCi_STATUS: the bits in that MSR control the error type and\n"
368 "\t attributes of the error which caused the MCE.\n"
369 "\n"
370 "misc:\t Set MCi_MISC: provide auxiliary info about the error. It is mostly\n"
371 "\t used for error thresholding purposes and its validity is indicated by\n"
372 "\t MCi_STATUS[MiscV].\n"
373 "\n"
374 "addr:\t Error address value to be written to MCi_ADDR. Log address information\n"
375 "\t associated with the error.\n"
376 "\n"
377 "cpu:\t The CPU to inject the error on.\n"
378 "\n"
379 "bank:\t Specify the bank you want to inject the error into: the number of\n"
380 "\t banks in a processor varies and is family/model-specific, therefore, the\n"
381 "\t supplied value is sanity-checked. Setting the bank value also triggers the\n"
382 "\t injection.\n"
383 "\n"
384 "flags:\t Injection type to be performed. Writing to this file will trigger a\n"
385 "\t real machine check, an APIC interrupt or invoke the error decoder routines\n"
386 "\t for AMD processors.\n"
387 "\n"
388 "\t Allowed error injection types:\n"
389 "\t - \"sw\": Software error injection. Decode error to a human-readable \n"
390 "\t format only. Safe to use.\n"
391 "\t - \"hw\": Hardware error injection. Causes the #MC exception handler to \n"
392 "\t handle the error. Be warned: might cause system panic if MCi_STATUS[PCC] \n"
393 "\t is set. Therefore, consider setting (debugfs_mountpoint)/mce/fake_panic \n"
394 "\t before injecting.\n"
395 "\t - \"df\": Trigger APIC interrupt for Deferred error. Causes deferred \n"
396 "\t error APIC interrupt handler to handle the error if the feature is \n"
397 "\t is present in hardware. \n"
398 "\t - \"th\": Trigger APIC interrupt for Threshold errors. Causes threshold \n"
399 "\t APIC interrupt handler to handle the error. \n"
400 "\n";
402 static ssize_t
403 inj_readme_read(struct file *filp, char __user *ubuf,
404 size_t cnt, loff_t *ppos)
406 return simple_read_from_buffer(ubuf, cnt, ppos,
407 readme_msg, strlen(readme_msg));
410 static const struct file_operations readme_fops = {
411 .read = inj_readme_read,
414 static struct dfs_node {
415 char *name;
416 struct dentry *d;
417 const struct file_operations *fops;
418 umode_t perm;
419 } dfs_fls[] = {
420 { .name = "status", .fops = &status_fops, .perm = S_IRUSR | S_IWUSR },
421 { .name = "misc", .fops = &misc_fops, .perm = S_IRUSR | S_IWUSR },
422 { .name = "addr", .fops = &addr_fops, .perm = S_IRUSR | S_IWUSR },
423 { .name = "bank", .fops = &bank_fops, .perm = S_IRUSR | S_IWUSR },
424 { .name = "flags", .fops = &flags_fops, .perm = S_IRUSR | S_IWUSR },
425 { .name = "cpu", .fops = &extcpu_fops, .perm = S_IRUSR | S_IWUSR },
426 { .name = "README", .fops = &readme_fops, .perm = S_IRUSR | S_IRGRP | S_IROTH },
429 static int __init init_mce_inject(void)
431 int i;
432 u64 cap;
434 rdmsrl(MSR_IA32_MCG_CAP, cap);
435 n_banks = cap & MCG_BANKCNT_MASK;
437 dfs_inj = debugfs_create_dir("mce-inject", NULL);
438 if (!dfs_inj)
439 return -EINVAL;
441 for (i = 0; i < ARRAY_SIZE(dfs_fls); i++) {
442 dfs_fls[i].d = debugfs_create_file(dfs_fls[i].name,
443 dfs_fls[i].perm,
444 dfs_inj,
445 &i_mce,
446 dfs_fls[i].fops);
448 if (!dfs_fls[i].d)
449 goto err_dfs_add;
452 return 0;
454 err_dfs_add:
455 while (--i >= 0)
456 debugfs_remove(dfs_fls[i].d);
458 debugfs_remove(dfs_inj);
459 dfs_inj = NULL;
461 return -ENOMEM;
464 static void __exit exit_mce_inject(void)
466 int i;
468 for (i = 0; i < ARRAY_SIZE(dfs_fls); i++)
469 debugfs_remove(dfs_fls[i].d);
471 memset(&dfs_fls, 0, sizeof(dfs_fls));
473 debugfs_remove(dfs_inj);
474 dfs_inj = NULL;
476 module_init(init_mce_inject);
477 module_exit(exit_mce_inject);
479 MODULE_LICENSE("GPL");
480 MODULE_AUTHOR("Borislav Petkov <bp@alien8.de>");
481 MODULE_AUTHOR("AMD Inc.");
482 MODULE_DESCRIPTION("MCE injection facility for RAS testing");