123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800 |
- // SPDX-License-Identifier: GPL-2.0-only
- /*
- * Machine check injection support.
- * Copyright 2008 Intel Corporation.
- *
- * Authors:
- * Andi Kleen
- * Ying Huang
- *
- * The AMD part (from mce_amd_inj.c): a simple MCE injection facility
- * for testing different aspects of the RAS code. This driver should be
- * built as module so that it can be loaded on production kernels for
- * testing purposes.
- *
- * Copyright (c) 2010-17: Borislav Petkov <[email protected]>
- * Advanced Micro Devices Inc.
- */
- #include <linux/cpu.h>
- #include <linux/debugfs.h>
- #include <linux/kernel.h>
- #include <linux/module.h>
- #include <linux/notifier.h>
- #include <linux/pci.h>
- #include <linux/uaccess.h>
- #include <asm/amd_nb.h>
- #include <asm/apic.h>
- #include <asm/irq_vectors.h>
- #include <asm/mce.h>
- #include <asm/nmi.h>
- #include <asm/smp.h>
- #include "internal.h"
- static bool hw_injection_possible = true;
- /*
- * Collect all the MCi_XXX settings
- */
- static struct mce i_mce;
- static struct dentry *dfs_inj;
- #define MAX_FLAG_OPT_SIZE 4
- #define NBCFG 0x44
- enum injection_type {
- SW_INJ = 0, /* SW injection, simply decode the error */
- HW_INJ, /* Trigger a #MC */
- DFR_INT_INJ, /* Trigger Deferred error interrupt */
- THR_INT_INJ, /* Trigger threshold interrupt */
- N_INJ_TYPES,
- };
- static const char * const flags_options[] = {
- [SW_INJ] = "sw",
- [HW_INJ] = "hw",
- [DFR_INT_INJ] = "df",
- [THR_INT_INJ] = "th",
- NULL
- };
- /* Set default injection to SW_INJ */
- static enum injection_type inj_type = SW_INJ;
- #define MCE_INJECT_SET(reg) \
- static int inj_##reg##_set(void *data, u64 val) \
- { \
- struct mce *m = (struct mce *)data; \
- \
- m->reg = val; \
- return 0; \
- }
- MCE_INJECT_SET(status);
- MCE_INJECT_SET(misc);
- MCE_INJECT_SET(addr);
- MCE_INJECT_SET(synd);
- #define MCE_INJECT_GET(reg) \
- static int inj_##reg##_get(void *data, u64 *val) \
- { \
- struct mce *m = (struct mce *)data; \
- \
- *val = m->reg; \
- return 0; \
- }
- MCE_INJECT_GET(status);
- MCE_INJECT_GET(misc);
- MCE_INJECT_GET(addr);
- MCE_INJECT_GET(synd);
- MCE_INJECT_GET(ipid);
- DEFINE_SIMPLE_ATTRIBUTE(status_fops, inj_status_get, inj_status_set, "%llx\n");
- DEFINE_SIMPLE_ATTRIBUTE(misc_fops, inj_misc_get, inj_misc_set, "%llx\n");
- DEFINE_SIMPLE_ATTRIBUTE(addr_fops, inj_addr_get, inj_addr_set, "%llx\n");
- DEFINE_SIMPLE_ATTRIBUTE(synd_fops, inj_synd_get, inj_synd_set, "%llx\n");
- /* Use the user provided IPID value on a sw injection. */
- static int inj_ipid_set(void *data, u64 val)
- {
- struct mce *m = (struct mce *)data;
- if (cpu_feature_enabled(X86_FEATURE_SMCA)) {
- if (inj_type == SW_INJ)
- m->ipid = val;
- }
- return 0;
- }
- DEFINE_SIMPLE_ATTRIBUTE(ipid_fops, inj_ipid_get, inj_ipid_set, "%llx\n");
- static void setup_inj_struct(struct mce *m)
- {
- memset(m, 0, sizeof(struct mce));
- m->cpuvendor = boot_cpu_data.x86_vendor;
- m->time = ktime_get_real_seconds();
- m->cpuid = cpuid_eax(1);
- m->microcode = boot_cpu_data.microcode;
- }
- /* Update fake mce registers on current CPU. */
- static void inject_mce(struct mce *m)
- {
- struct mce *i = &per_cpu(injectm, m->extcpu);
- /* Make sure no one reads partially written injectm */
- i->finished = 0;
- mb();
- m->finished = 0;
- /* First set the fields after finished */
- i->extcpu = m->extcpu;
- mb();
- /* Now write record in order, finished last (except above) */
- memcpy(i, m, sizeof(struct mce));
- /* Finally activate it */
- mb();
- i->finished = 1;
- }
- static void raise_poll(struct mce *m)
- {
- unsigned long flags;
- mce_banks_t b;
- memset(&b, 0xff, sizeof(mce_banks_t));
- local_irq_save(flags);
- machine_check_poll(0, &b);
- local_irq_restore(flags);
- m->finished = 0;
- }
- static void raise_exception(struct mce *m, struct pt_regs *pregs)
- {
- struct pt_regs regs;
- unsigned long flags;
- if (!pregs) {
- memset(®s, 0, sizeof(struct pt_regs));
- regs.ip = m->ip;
- regs.cs = m->cs;
- pregs = ®s;
- }
- /* do_machine_check() expects interrupts disabled -- at least */
- local_irq_save(flags);
- do_machine_check(pregs);
- local_irq_restore(flags);
- m->finished = 0;
- }
- static cpumask_var_t mce_inject_cpumask;
- static DEFINE_MUTEX(mce_inject_mutex);
- static int mce_raise_notify(unsigned int cmd, struct pt_regs *regs)
- {
- int cpu = smp_processor_id();
- struct mce *m = this_cpu_ptr(&injectm);
- if (!cpumask_test_cpu(cpu, mce_inject_cpumask))
- return NMI_DONE;
- cpumask_clear_cpu(cpu, mce_inject_cpumask);
- if (m->inject_flags & MCJ_EXCEPTION)
- raise_exception(m, regs);
- else if (m->status)
- raise_poll(m);
- return NMI_HANDLED;
- }
- static void mce_irq_ipi(void *info)
- {
- int cpu = smp_processor_id();
- struct mce *m = this_cpu_ptr(&injectm);
- if (cpumask_test_cpu(cpu, mce_inject_cpumask) &&
- m->inject_flags & MCJ_EXCEPTION) {
- cpumask_clear_cpu(cpu, mce_inject_cpumask);
- raise_exception(m, NULL);
- }
- }
- /* Inject mce on current CPU */
- static int raise_local(void)
- {
- struct mce *m = this_cpu_ptr(&injectm);
- int context = MCJ_CTX(m->inject_flags);
- int ret = 0;
- int cpu = m->extcpu;
- if (m->inject_flags & MCJ_EXCEPTION) {
- pr_info("Triggering MCE exception on CPU %d\n", cpu);
- switch (context) {
- case MCJ_CTX_IRQ:
- /*
- * Could do more to fake interrupts like
- * calling irq_enter, but the necessary
- * machinery isn't exported currently.
- */
- fallthrough;
- case MCJ_CTX_PROCESS:
- raise_exception(m, NULL);
- break;
- default:
- pr_info("Invalid MCE context\n");
- ret = -EINVAL;
- }
- pr_info("MCE exception done on CPU %d\n", cpu);
- } else if (m->status) {
- pr_info("Starting machine check poll CPU %d\n", cpu);
- raise_poll(m);
- mce_notify_irq();
- pr_info("Machine check poll done on CPU %d\n", cpu);
- } else
- m->finished = 0;
- return ret;
- }
- static void __maybe_unused raise_mce(struct mce *m)
- {
- int context = MCJ_CTX(m->inject_flags);
- inject_mce(m);
- if (context == MCJ_CTX_RANDOM)
- return;
- if (m->inject_flags & (MCJ_IRQ_BROADCAST | MCJ_NMI_BROADCAST)) {
- unsigned long start;
- int cpu;
- cpus_read_lock();
- cpumask_copy(mce_inject_cpumask, cpu_online_mask);
- cpumask_clear_cpu(get_cpu(), mce_inject_cpumask);
- for_each_online_cpu(cpu) {
- struct mce *mcpu = &per_cpu(injectm, cpu);
- if (!mcpu->finished ||
- MCJ_CTX(mcpu->inject_flags) != MCJ_CTX_RANDOM)
- cpumask_clear_cpu(cpu, mce_inject_cpumask);
- }
- if (!cpumask_empty(mce_inject_cpumask)) {
- if (m->inject_flags & MCJ_IRQ_BROADCAST) {
- /*
- * don't wait because mce_irq_ipi is necessary
- * to be sync with following raise_local
- */
- preempt_disable();
- smp_call_function_many(mce_inject_cpumask,
- mce_irq_ipi, NULL, 0);
- preempt_enable();
- } else if (m->inject_flags & MCJ_NMI_BROADCAST)
- apic->send_IPI_mask(mce_inject_cpumask,
- NMI_VECTOR);
- }
- start = jiffies;
- while (!cpumask_empty(mce_inject_cpumask)) {
- if (!time_before(jiffies, start + 2*HZ)) {
- pr_err("Timeout waiting for mce inject %lx\n",
- *cpumask_bits(mce_inject_cpumask));
- break;
- }
- cpu_relax();
- }
- raise_local();
- put_cpu();
- cpus_read_unlock();
- } else {
- preempt_disable();
- raise_local();
- preempt_enable();
- }
- }
- static int mce_inject_raise(struct notifier_block *nb, unsigned long val,
- void *data)
- {
- struct mce *m = (struct mce *)data;
- if (!m)
- return NOTIFY_DONE;
- mutex_lock(&mce_inject_mutex);
- raise_mce(m);
- mutex_unlock(&mce_inject_mutex);
- return NOTIFY_DONE;
- }
- static struct notifier_block inject_nb = {
- .notifier_call = mce_inject_raise,
- };
- /*
- * Caller needs to be make sure this cpu doesn't disappear
- * from under us, i.e.: get_cpu/put_cpu.
- */
- static int toggle_hw_mce_inject(unsigned int cpu, bool enable)
- {
- u32 l, h;
- int err;
- err = rdmsr_on_cpu(cpu, MSR_K7_HWCR, &l, &h);
- if (err) {
- pr_err("%s: error reading HWCR\n", __func__);
- return err;
- }
- enable ? (l |= BIT(18)) : (l &= ~BIT(18));
- err = wrmsr_on_cpu(cpu, MSR_K7_HWCR, l, h);
- if (err)
- pr_err("%s: error writing HWCR\n", __func__);
- return err;
- }
- static int __set_inj(const char *buf)
- {
- int i;
- for (i = 0; i < N_INJ_TYPES; i++) {
- if (!strncmp(flags_options[i], buf, strlen(flags_options[i]))) {
- if (i > SW_INJ && !hw_injection_possible)
- continue;
- inj_type = i;
- return 0;
- }
- }
- return -EINVAL;
- }
- static ssize_t flags_read(struct file *filp, char __user *ubuf,
- size_t cnt, loff_t *ppos)
- {
- char buf[MAX_FLAG_OPT_SIZE];
- int n;
- n = sprintf(buf, "%s\n", flags_options[inj_type]);
- return simple_read_from_buffer(ubuf, cnt, ppos, buf, n);
- }
- static ssize_t flags_write(struct file *filp, const char __user *ubuf,
- size_t cnt, loff_t *ppos)
- {
- char buf[MAX_FLAG_OPT_SIZE], *__buf;
- int err;
- if (!cnt || cnt > MAX_FLAG_OPT_SIZE)
- return -EINVAL;
- if (copy_from_user(&buf, ubuf, cnt))
- return -EFAULT;
- buf[cnt - 1] = 0;
- /* strip whitespace */
- __buf = strstrip(buf);
- err = __set_inj(__buf);
- if (err) {
- pr_err("%s: Invalid flags value: %s\n", __func__, __buf);
- return err;
- }
- *ppos += cnt;
- return cnt;
- }
- static const struct file_operations flags_fops = {
- .read = flags_read,
- .write = flags_write,
- .llseek = generic_file_llseek,
- };
- /*
- * On which CPU to inject?
- */
- MCE_INJECT_GET(extcpu);
- static int inj_extcpu_set(void *data, u64 val)
- {
- struct mce *m = (struct mce *)data;
- if (val >= nr_cpu_ids || !cpu_online(val)) {
- pr_err("%s: Invalid CPU: %llu\n", __func__, val);
- return -EINVAL;
- }
- m->extcpu = val;
- return 0;
- }
- DEFINE_SIMPLE_ATTRIBUTE(extcpu_fops, inj_extcpu_get, inj_extcpu_set, "%llu\n");
- static void trigger_mce(void *info)
- {
- asm volatile("int $18");
- }
- static void trigger_dfr_int(void *info)
- {
- asm volatile("int %0" :: "i" (DEFERRED_ERROR_VECTOR));
- }
- static void trigger_thr_int(void *info)
- {
- asm volatile("int %0" :: "i" (THRESHOLD_APIC_VECTOR));
- }
- static u32 get_nbc_for_node(int node_id)
- {
- struct cpuinfo_x86 *c = &boot_cpu_data;
- u32 cores_per_node;
- cores_per_node = (c->x86_max_cores * smp_num_siblings) / amd_get_nodes_per_socket();
- return cores_per_node * node_id;
- }
- static void toggle_nb_mca_mst_cpu(u16 nid)
- {
- struct amd_northbridge *nb;
- struct pci_dev *F3;
- u32 val;
- int err;
- nb = node_to_amd_nb(nid);
- if (!nb)
- return;
- F3 = nb->misc;
- if (!F3)
- return;
- err = pci_read_config_dword(F3, NBCFG, &val);
- if (err) {
- pr_err("%s: Error reading F%dx%03x.\n",
- __func__, PCI_FUNC(F3->devfn), NBCFG);
- return;
- }
- if (val & BIT(27))
- return;
- pr_err("%s: Set D18F3x44[NbMcaToMstCpuEn] which BIOS hasn't done.\n",
- __func__);
- val |= BIT(27);
- err = pci_write_config_dword(F3, NBCFG, val);
- if (err)
- pr_err("%s: Error writing F%dx%03x.\n",
- __func__, PCI_FUNC(F3->devfn), NBCFG);
- }
- static void prepare_msrs(void *info)
- {
- struct mce m = *(struct mce *)info;
- u8 b = m.bank;
- wrmsrl(MSR_IA32_MCG_STATUS, m.mcgstatus);
- if (boot_cpu_has(X86_FEATURE_SMCA)) {
- if (m.inject_flags == DFR_INT_INJ) {
- wrmsrl(MSR_AMD64_SMCA_MCx_DESTAT(b), m.status);
- wrmsrl(MSR_AMD64_SMCA_MCx_DEADDR(b), m.addr);
- } else {
- wrmsrl(MSR_AMD64_SMCA_MCx_STATUS(b), m.status);
- wrmsrl(MSR_AMD64_SMCA_MCx_ADDR(b), m.addr);
- }
- wrmsrl(MSR_AMD64_SMCA_MCx_MISC(b), m.misc);
- wrmsrl(MSR_AMD64_SMCA_MCx_SYND(b), m.synd);
- } else {
- wrmsrl(MSR_IA32_MCx_STATUS(b), m.status);
- wrmsrl(MSR_IA32_MCx_ADDR(b), m.addr);
- wrmsrl(MSR_IA32_MCx_MISC(b), m.misc);
- }
- }
- static void do_inject(void)
- {
- u64 mcg_status = 0;
- unsigned int cpu = i_mce.extcpu;
- u8 b = i_mce.bank;
- i_mce.tsc = rdtsc_ordered();
- i_mce.status |= MCI_STATUS_VAL;
- if (i_mce.misc)
- i_mce.status |= MCI_STATUS_MISCV;
- if (i_mce.synd)
- i_mce.status |= MCI_STATUS_SYNDV;
- if (inj_type == SW_INJ) {
- mce_log(&i_mce);
- return;
- }
- /* prep MCE global settings for the injection */
- mcg_status = MCG_STATUS_MCIP | MCG_STATUS_EIPV;
- if (!(i_mce.status & MCI_STATUS_PCC))
- mcg_status |= MCG_STATUS_RIPV;
- /*
- * Ensure necessary status bits for deferred errors:
- * - MCx_STATUS[Deferred]: make sure it is a deferred error
- * - MCx_STATUS[UC] cleared: deferred errors are _not_ UC
- */
- if (inj_type == DFR_INT_INJ) {
- i_mce.status |= MCI_STATUS_DEFERRED;
- i_mce.status &= ~MCI_STATUS_UC;
- }
- /*
- * For multi node CPUs, logging and reporting of bank 4 errors happens
- * only on the node base core. Refer to D18F3x44[NbMcaToMstCpuEn] for
- * Fam10h and later BKDGs.
- */
- if (boot_cpu_has(X86_FEATURE_AMD_DCM) &&
- b == 4 &&
- boot_cpu_data.x86 < 0x17) {
- toggle_nb_mca_mst_cpu(topology_die_id(cpu));
- cpu = get_nbc_for_node(topology_die_id(cpu));
- }
- cpus_read_lock();
- if (!cpu_online(cpu))
- goto err;
- toggle_hw_mce_inject(cpu, true);
- i_mce.mcgstatus = mcg_status;
- i_mce.inject_flags = inj_type;
- smp_call_function_single(cpu, prepare_msrs, &i_mce, 0);
- toggle_hw_mce_inject(cpu, false);
- switch (inj_type) {
- case DFR_INT_INJ:
- smp_call_function_single(cpu, trigger_dfr_int, NULL, 0);
- break;
- case THR_INT_INJ:
- smp_call_function_single(cpu, trigger_thr_int, NULL, 0);
- break;
- default:
- smp_call_function_single(cpu, trigger_mce, NULL, 0);
- }
- err:
- cpus_read_unlock();
- }
- /*
- * This denotes into which bank we're injecting and triggers
- * the injection, at the same time.
- */
- static int inj_bank_set(void *data, u64 val)
- {
- struct mce *m = (struct mce *)data;
- u8 n_banks;
- u64 cap;
- /* Get bank count on target CPU so we can handle non-uniform values. */
- rdmsrl_on_cpu(m->extcpu, MSR_IA32_MCG_CAP, &cap);
- n_banks = cap & MCG_BANKCNT_MASK;
- if (val >= n_banks) {
- pr_err("MCA bank %llu non-existent on CPU%d\n", val, m->extcpu);
- return -EINVAL;
- }
- m->bank = val;
- /*
- * sw-only injection allows to write arbitrary values into the MCA
- * registers because it tests only the decoding paths.
- */
- if (inj_type == SW_INJ)
- goto inject;
- /*
- * Read IPID value to determine if a bank is populated on the target
- * CPU.
- */
- if (cpu_feature_enabled(X86_FEATURE_SMCA)) {
- u64 ipid;
- if (rdmsrl_on_cpu(m->extcpu, MSR_AMD64_SMCA_MCx_IPID(val), &ipid)) {
- pr_err("Error reading IPID on CPU%d\n", m->extcpu);
- return -EINVAL;
- }
- if (!ipid) {
- pr_err("Cannot inject into unpopulated bank %llu\n", val);
- return -ENODEV;
- }
- }
- inject:
- do_inject();
- /* Reset injection struct */
- setup_inj_struct(&i_mce);
- return 0;
- }
- MCE_INJECT_GET(bank);
- DEFINE_SIMPLE_ATTRIBUTE(bank_fops, inj_bank_get, inj_bank_set, "%llu\n");
- static const char readme_msg[] =
- "Description of the files and their usages:\n"
- "\n"
- "Note1: i refers to the bank number below.\n"
- "Note2: See respective BKDGs for the exact bit definitions of the files below\n"
- "as they mirror the hardware registers.\n"
- "\n"
- "status:\t Set MCi_STATUS: the bits in that MSR control the error type and\n"
- "\t attributes of the error which caused the MCE.\n"
- "\n"
- "misc:\t Set MCi_MISC: provide auxiliary info about the error. It is mostly\n"
- "\t used for error thresholding purposes and its validity is indicated by\n"
- "\t MCi_STATUS[MiscV].\n"
- "\n"
- "synd:\t Set MCi_SYND: provide syndrome info about the error. Only valid on\n"
- "\t Scalable MCA systems, and its validity is indicated by MCi_STATUS[SyndV].\n"
- "\n"
- "addr:\t Error address value to be written to MCi_ADDR. Log address information\n"
- "\t associated with the error.\n"
- "\n"
- "cpu:\t The CPU to inject the error on.\n"
- "\n"
- "bank:\t Specify the bank you want to inject the error into: the number of\n"
- "\t banks in a processor varies and is family/model-specific, therefore, the\n"
- "\t supplied value is sanity-checked. Setting the bank value also triggers the\n"
- "\t injection.\n"
- "\n"
- "flags:\t Injection type to be performed. Writing to this file will trigger a\n"
- "\t real machine check, an APIC interrupt or invoke the error decoder routines\n"
- "\t for AMD processors.\n"
- "\n"
- "\t Allowed error injection types:\n"
- "\t - \"sw\": Software error injection. Decode error to a human-readable \n"
- "\t format only. Safe to use.\n"
- "\t - \"hw\": Hardware error injection. Causes the #MC exception handler to \n"
- "\t handle the error. Be warned: might cause system panic if MCi_STATUS[PCC] \n"
- "\t is set. Therefore, consider setting (debugfs_mountpoint)/mce/fake_panic \n"
- "\t before injecting.\n"
- "\t - \"df\": Trigger APIC interrupt for Deferred error. Causes deferred \n"
- "\t error APIC interrupt handler to handle the error if the feature is \n"
- "\t is present in hardware. \n"
- "\t - \"th\": Trigger APIC interrupt for Threshold errors. Causes threshold \n"
- "\t APIC interrupt handler to handle the error. \n"
- "\n"
- "ipid:\t IPID (AMD-specific)\n"
- "\n";
- static ssize_t
- inj_readme_read(struct file *filp, char __user *ubuf,
- size_t cnt, loff_t *ppos)
- {
- return simple_read_from_buffer(ubuf, cnt, ppos,
- readme_msg, strlen(readme_msg));
- }
- static const struct file_operations readme_fops = {
- .read = inj_readme_read,
- };
- static struct dfs_node {
- char *name;
- const struct file_operations *fops;
- umode_t perm;
- } dfs_fls[] = {
- { .name = "status", .fops = &status_fops, .perm = S_IRUSR | S_IWUSR },
- { .name = "misc", .fops = &misc_fops, .perm = S_IRUSR | S_IWUSR },
- { .name = "addr", .fops = &addr_fops, .perm = S_IRUSR | S_IWUSR },
- { .name = "synd", .fops = &synd_fops, .perm = S_IRUSR | S_IWUSR },
- { .name = "ipid", .fops = &ipid_fops, .perm = S_IRUSR | S_IWUSR },
- { .name = "bank", .fops = &bank_fops, .perm = S_IRUSR | S_IWUSR },
- { .name = "flags", .fops = &flags_fops, .perm = S_IRUSR | S_IWUSR },
- { .name = "cpu", .fops = &extcpu_fops, .perm = S_IRUSR | S_IWUSR },
- { .name = "README", .fops = &readme_fops, .perm = S_IRUSR | S_IRGRP | S_IROTH },
- };
- static void __init debugfs_init(void)
- {
- unsigned int i;
- dfs_inj = debugfs_create_dir("mce-inject", NULL);
- for (i = 0; i < ARRAY_SIZE(dfs_fls); i++)
- debugfs_create_file(dfs_fls[i].name, dfs_fls[i].perm, dfs_inj,
- &i_mce, dfs_fls[i].fops);
- }
- static void check_hw_inj_possible(void)
- {
- int cpu;
- u8 bank;
- /*
- * This behavior exists only on SMCA systems though its not directly
- * related to SMCA.
- */
- if (!cpu_feature_enabled(X86_FEATURE_SMCA))
- return;
- cpu = get_cpu();
- for (bank = 0; bank < MAX_NR_BANKS; ++bank) {
- u64 status = MCI_STATUS_VAL, ipid;
- /* Check whether bank is populated */
- rdmsrl(MSR_AMD64_SMCA_MCx_IPID(bank), ipid);
- if (!ipid)
- continue;
- toggle_hw_mce_inject(cpu, true);
- wrmsrl_safe(mca_msr_reg(bank, MCA_STATUS), status);
- rdmsrl_safe(mca_msr_reg(bank, MCA_STATUS), &status);
- if (!status) {
- hw_injection_possible = false;
- pr_warn("Platform does not allow *hardware* error injection."
- "Try using APEI EINJ instead.\n");
- }
- toggle_hw_mce_inject(cpu, false);
- break;
- }
- put_cpu();
- }
- static int __init inject_init(void)
- {
- if (!alloc_cpumask_var(&mce_inject_cpumask, GFP_KERNEL))
- return -ENOMEM;
- check_hw_inj_possible();
- debugfs_init();
- register_nmi_handler(NMI_LOCAL, mce_raise_notify, 0, "mce_notify");
- mce_register_injector_chain(&inject_nb);
- setup_inj_struct(&i_mce);
- pr_info("Machine check injector initialized\n");
- return 0;
- }
- static void __exit inject_exit(void)
- {
- mce_unregister_injector_chain(&inject_nb);
- unregister_nmi_handler(NMI_LOCAL, "mce_notify");
- debugfs_remove_recursive(dfs_inj);
- dfs_inj = NULL;
- memset(&dfs_fls, 0, sizeof(dfs_fls));
- free_cpumask_var(mce_inject_cpumask);
- }
- module_init(inject_init);
- module_exit(inject_exit);
- MODULE_LICENSE("GPL");
|