1 // SPDX-License-Identifier: GPL-2.0-only
3 * (c) 2005-2016 Advanced Micro Devices, Inc.
5 * Written by Jacob Shin - AMD, Inc.
6 * Maintained by: Borislav Petkov <bp@alien8.de>
8 * All MC4_MISCi registers are shared between cores on a node.
10 #include <linux/interrupt.h>
11 #include <linux/notifier.h>
12 #include <linux/kobject.h>
13 #include <linux/percpu.h>
14 #include <linux/errno.h>
15 #include <linux/sched.h>
16 #include <linux/sysfs.h>
17 #include <linux/slab.h>
18 #include <linux/init.h>
19 #include <linux/cpu.h>
20 #include <linux/smp.h>
21 #include <linux/string.h>
23 #include <asm/amd_nb.h>
24 #include <asm/traps.h>
28 #include <asm/trace/irq_vectors.h>
33 #define THRESHOLD_MAX 0xFFF
34 #define INT_TYPE_APIC 0x00020000
35 #define MASK_VALID_HI 0x80000000
36 #define MASK_CNTP_HI 0x40000000
37 #define MASK_LOCKED_HI 0x20000000
38 #define MASK_LVTOFF_HI 0x00F00000
39 #define MASK_COUNT_EN_HI 0x00080000
40 #define MASK_INT_TYPE_HI 0x00060000
41 #define MASK_OVERFLOW_HI 0x00010000
42 #define MASK_ERR_COUNT_HI 0x00000FFF
43 #define MASK_BLKPTR_LO 0xFF000000
44 #define MCG_XBLK_ADDR 0xC0000400
46 /* Deferred error settings */
47 #define MSR_CU_DEF_ERR 0xC0000410
48 #define MASK_DEF_LVTOFF 0x000000F0
49 #define MASK_DEF_INT_TYPE 0x00000006
50 #define DEF_LVT_OFF 0x2
51 #define DEF_INT_TYPE_APIC 0x2
55 /* Threshold LVT offset is at MSR0xC0000410[15:12] */
56 #define SMCA_THR_LVT_OFF 0xF000
58 static bool thresholding_irq_en;
60 static const char * const th_names[] = {
69 static const char * const smca_umc_block_names[] = {
74 #define HWID_MCATYPE(hwid, mcatype) (((hwid) << 16) | (mcatype))
77 unsigned int bank_type; /* Use with smca_bank_types for easy indexing. */
78 u32 hwid_mcatype; /* (hwid,mcatype) tuple */
82 const struct smca_hwid *hwid;
83 u32 id; /* Value of MCA_IPID[InstanceId]. */
84 u8 sysfs_id; /* Value used for sysfs name. */
87 static DEFINE_PER_CPU_READ_MOSTLY(struct smca_bank[MAX_NR_BANKS], smca_banks);
88 static DEFINE_PER_CPU_READ_MOSTLY(u8[N_SMCA_BANK_TYPES], smca_bank_counts);
90 struct smca_bank_name {
91 const char *name; /* Short name for sysfs */
92 const char *long_name; /* Long name for pretty-printing */
95 static struct smca_bank_name smca_names[] = {
96 [SMCA_LS ... SMCA_LS_V2] = { "load_store", "Load Store Unit" },
97 [SMCA_IF] = { "insn_fetch", "Instruction Fetch Unit" },
98 [SMCA_L2_CACHE] = { "l2_cache", "L2 Cache" },
99 [SMCA_DE] = { "decode_unit", "Decode Unit" },
100 [SMCA_RESERVED] = { "reserved", "Reserved" },
101 [SMCA_EX] = { "execution_unit", "Execution Unit" },
102 [SMCA_FP] = { "floating_point", "Floating Point Unit" },
103 [SMCA_L3_CACHE] = { "l3_cache", "L3 Cache" },
104 [SMCA_CS ... SMCA_CS_V2] = { "coherent_slave", "Coherent Slave" },
105 [SMCA_PIE] = { "pie", "Power, Interrupts, etc." },
107 /* UMC v2 is separate because both of them can exist in a single system. */
108 [SMCA_UMC] = { "umc", "Unified Memory Controller" },
109 [SMCA_UMC_V2] = { "umc_v2", "Unified Memory Controller v2" },
110 [SMCA_PB] = { "param_block", "Parameter Block" },
111 [SMCA_PSP ... SMCA_PSP_V2] = { "psp", "Platform Security Processor" },
112 [SMCA_SMU ... SMCA_SMU_V2] = { "smu", "System Management Unit" },
113 [SMCA_MP5] = { "mp5", "Microprocessor 5 Unit" },
114 [SMCA_MPDMA] = { "mpdma", "MPDMA Unit" },
115 [SMCA_NBIO] = { "nbio", "Northbridge IO Unit" },
116 [SMCA_PCIE ... SMCA_PCIE_V2] = { "pcie", "PCI Express Unit" },
117 [SMCA_XGMI_PCS] = { "xgmi_pcs", "Ext Global Memory Interconnect PCS Unit" },
118 [SMCA_NBIF] = { "nbif", "NBIF Unit" },
119 [SMCA_SHUB] = { "shub", "System Hub Unit" },
120 [SMCA_SATA] = { "sata", "SATA Unit" },
121 [SMCA_USB] = { "usb", "USB Unit" },
122 [SMCA_GMI_PCS] = { "gmi_pcs", "Global Memory Interconnect PCS Unit" },
123 [SMCA_XGMI_PHY] = { "xgmi_phy", "Ext Global Memory Interconnect PHY Unit" },
124 [SMCA_WAFL_PHY] = { "wafl_phy", "WAFL PHY Unit" },
125 [SMCA_GMI_PHY] = { "gmi_phy", "Global Memory Interconnect PHY Unit" },
128 static const char *smca_get_name(enum smca_bank_types t)
130 if (t >= N_SMCA_BANK_TYPES)
133 return smca_names[t].name;
136 const char *smca_get_long_name(enum smca_bank_types t)
138 if (t >= N_SMCA_BANK_TYPES)
141 return smca_names[t].long_name;
143 EXPORT_SYMBOL_GPL(smca_get_long_name);
145 enum smca_bank_types smca_get_bank_type(unsigned int cpu, unsigned int bank)
149 if (bank >= MAX_NR_BANKS)
150 return N_SMCA_BANK_TYPES;
152 b = &per_cpu(smca_banks, cpu)[bank];
154 return N_SMCA_BANK_TYPES;
156 return b->hwid->bank_type;
158 EXPORT_SYMBOL_GPL(smca_get_bank_type);
160 static const struct smca_hwid smca_hwid_mcatypes[] = {
161 /* { bank_type, hwid_mcatype } */
164 { SMCA_RESERVED, HWID_MCATYPE(0x00, 0x0) },
166 /* ZN Core (HWID=0xB0) MCA types */
167 { SMCA_LS, HWID_MCATYPE(0xB0, 0x0) },
168 { SMCA_LS_V2, HWID_MCATYPE(0xB0, 0x10) },
169 { SMCA_IF, HWID_MCATYPE(0xB0, 0x1) },
170 { SMCA_L2_CACHE, HWID_MCATYPE(0xB0, 0x2) },
171 { SMCA_DE, HWID_MCATYPE(0xB0, 0x3) },
172 /* HWID 0xB0 MCATYPE 0x4 is Reserved */
173 { SMCA_EX, HWID_MCATYPE(0xB0, 0x5) },
174 { SMCA_FP, HWID_MCATYPE(0xB0, 0x6) },
175 { SMCA_L3_CACHE, HWID_MCATYPE(0xB0, 0x7) },
177 /* Data Fabric MCA types */
178 { SMCA_CS, HWID_MCATYPE(0x2E, 0x0) },
179 { SMCA_PIE, HWID_MCATYPE(0x2E, 0x1) },
180 { SMCA_CS_V2, HWID_MCATYPE(0x2E, 0x2) },
182 /* Unified Memory Controller MCA type */
183 { SMCA_UMC, HWID_MCATYPE(0x96, 0x0) },
184 { SMCA_UMC_V2, HWID_MCATYPE(0x96, 0x1) },
186 /* Parameter Block MCA type */
187 { SMCA_PB, HWID_MCATYPE(0x05, 0x0) },
189 /* Platform Security Processor MCA type */
190 { SMCA_PSP, HWID_MCATYPE(0xFF, 0x0) },
191 { SMCA_PSP_V2, HWID_MCATYPE(0xFF, 0x1) },
193 /* System Management Unit MCA type */
194 { SMCA_SMU, HWID_MCATYPE(0x01, 0x0) },
195 { SMCA_SMU_V2, HWID_MCATYPE(0x01, 0x1) },
197 /* Microprocessor 5 Unit MCA type */
198 { SMCA_MP5, HWID_MCATYPE(0x01, 0x2) },
201 { SMCA_MPDMA, HWID_MCATYPE(0x01, 0x3) },
203 /* Northbridge IO Unit MCA type */
204 { SMCA_NBIO, HWID_MCATYPE(0x18, 0x0) },
206 /* PCI Express Unit MCA type */
207 { SMCA_PCIE, HWID_MCATYPE(0x46, 0x0) },
208 { SMCA_PCIE_V2, HWID_MCATYPE(0x46, 0x1) },
210 { SMCA_XGMI_PCS, HWID_MCATYPE(0x50, 0x0) },
211 { SMCA_NBIF, HWID_MCATYPE(0x6C, 0x0) },
212 { SMCA_SHUB, HWID_MCATYPE(0x80, 0x0) },
213 { SMCA_SATA, HWID_MCATYPE(0xA8, 0x0) },
214 { SMCA_USB, HWID_MCATYPE(0xAA, 0x0) },
215 { SMCA_GMI_PCS, HWID_MCATYPE(0x241, 0x0) },
216 { SMCA_XGMI_PHY, HWID_MCATYPE(0x259, 0x0) },
217 { SMCA_WAFL_PHY, HWID_MCATYPE(0x267, 0x0) },
218 { SMCA_GMI_PHY, HWID_MCATYPE(0x269, 0x0) },
222 * In SMCA enabled processors, we can have multiple banks for a given IP type.
223 * So to define a unique name for each bank, we use a temp c-string to append
224 * the MCA_IPID[InstanceId] to type's name in get_name().
226 * InstanceId is 32 bits which is 8 characters. Make sure MAX_MCATYPE_NAME_LEN
227 * is greater than 8 plus 1 (for underscore) plus length of longest type name.
229 #define MAX_MCATYPE_NAME_LEN 30
230 static char buf_mcatype[MAX_MCATYPE_NAME_LEN];
232 static DEFINE_PER_CPU(struct threshold_bank **, threshold_banks);
235 * A list of the banks enabled on each logical CPU. Controls which respective
236 * descriptors to initialize later in mce_threshold_create_device().
238 static DEFINE_PER_CPU(u64, bank_map);
240 /* Map of banks that have more than MCA_MISC0 available. */
241 static DEFINE_PER_CPU(u64, smca_misc_banks_map);
243 static void amd_threshold_interrupt(void);
244 static void amd_deferred_error_interrupt(void);
246 static void default_deferred_error_interrupt(void)
248 pr_err("Unexpected deferred interrupt at vector %x\n", DEFERRED_ERROR_VECTOR);
250 void (*deferred_error_int_vector)(void) = default_deferred_error_interrupt;
252 static void smca_set_misc_banks_map(unsigned int bank, unsigned int cpu)
257 * For SMCA enabled processors, BLKPTR field of the first MISC register
258 * (MCx_MISC0) indicates presence of additional MISC regs set (MISC1-4).
260 if (rdmsr_safe(MSR_AMD64_SMCA_MCx_CONFIG(bank), &low, &high))
263 if (!(low & MCI_CONFIG_MCAX))
266 if (rdmsr_safe(MSR_AMD64_SMCA_MCx_MISC(bank), &low, &high))
269 if (low & MASK_BLKPTR_LO)
270 per_cpu(smca_misc_banks_map, cpu) |= BIT_ULL(bank);
274 static void smca_configure(unsigned int bank, unsigned int cpu)
276 u8 *bank_counts = this_cpu_ptr(smca_bank_counts);
277 const struct smca_hwid *s_hwid;
278 unsigned int i, hwid_mcatype;
280 u32 smca_config = MSR_AMD64_SMCA_MCx_CONFIG(bank);
282 /* Set appropriate bits in MCA_CONFIG */
283 if (!rdmsr_safe(smca_config, &low, &high)) {
285 * OS is required to set the MCAX bit to acknowledge that it is
286 * now using the new MSR ranges and new registers under each
287 * bank. It also means that the OS will configure deferred
288 * errors in the new MCx_CONFIG register. If the bit is not set,
289 * uncorrectable errors will cause a system panic.
291 * MCA_CONFIG[MCAX] is bit 32 (0 in the high portion of the MSR.)
296 * SMCA sets the Deferred Error Interrupt type per bank.
298 * MCA_CONFIG[DeferredIntTypeSupported] is bit 5, and tells us
299 * if the DeferredIntType bit field is available.
301 * MCA_CONFIG[DeferredIntType] is bits [38:37] ([6:5] in the
302 * high portion of the MSR). OS should set this to 0x1 to enable
303 * APIC based interrupt. First, check that no interrupt has been
306 if ((low & BIT(5)) && !((high >> 5) & 0x3))
309 this_cpu_ptr(mce_banks_array)[bank].lsb_in_status = !!(low & BIT(8));
311 wrmsr(smca_config, low, high);
314 smca_set_misc_banks_map(bank, cpu);
316 if (rdmsr_safe(MSR_AMD64_SMCA_MCx_IPID(bank), &low, &high)) {
317 pr_warn("Failed to read MCA_IPID for bank %d\n", bank);
321 hwid_mcatype = HWID_MCATYPE(high & MCI_IPID_HWID,
322 (high & MCI_IPID_MCATYPE) >> 16);
324 for (i = 0; i < ARRAY_SIZE(smca_hwid_mcatypes); i++) {
325 s_hwid = &smca_hwid_mcatypes[i];
327 if (hwid_mcatype == s_hwid->hwid_mcatype) {
328 this_cpu_ptr(smca_banks)[bank].hwid = s_hwid;
329 this_cpu_ptr(smca_banks)[bank].id = low;
330 this_cpu_ptr(smca_banks)[bank].sysfs_id = bank_counts[s_hwid->bank_type]++;
336 struct thresh_restart {
337 struct threshold_block *b;
344 static inline bool is_shared_bank(int bank)
347 * Scalable MCA provides for only one core to have access to the MSRs of
353 /* Bank 4 is for northbridge reporting and is thus shared */
357 static const char *bank4_names(const struct threshold_block *b)
359 switch (b->address) {
371 WARN(1, "Funny MSR: 0x%08x\n", b->address);
377 static bool lvt_interrupt_supported(unsigned int bank, u32 msr_high_bits)
380 * bank 4 supports APIC LVT interrupts implicitly since forever.
386 * IntP: interrupt present; if this bit is set, the thresholding
387 * bank can generate APIC LVT interrupts
389 return msr_high_bits & BIT(28);
392 static int lvt_off_valid(struct threshold_block *b, int apic, u32 lo, u32 hi)
394 int msr = (hi & MASK_LVTOFF_HI) >> 20;
397 pr_err(FW_BUG "cpu %d, failed to setup threshold interrupt "
398 "for bank %d, block %d (MSR%08X=0x%x%08x)\n", b->cpu,
399 b->bank, b->block, b->address, hi, lo);
405 * On SMCA CPUs, LVT offset is programmed at a different MSR, and
406 * the BIOS provides the value. The original field where LVT offset
407 * was set is reserved. Return early here:
412 pr_err(FW_BUG "cpu %d, invalid threshold interrupt offset %d "
413 "for bank %d, block %d (MSR%08X=0x%x%08x)\n",
414 b->cpu, apic, b->bank, b->block, b->address, hi, lo);
421 /* Reprogram MCx_MISC MSR behind this threshold bank. */
422 static void threshold_restart_bank(void *_tr)
424 struct thresh_restart *tr = _tr;
427 /* sysfs write might race against an offline operation */
428 if (!this_cpu_read(threshold_banks) && !tr->set_lvt_off)
431 rdmsr(tr->b->address, lo, hi);
433 if (tr->b->threshold_limit < (hi & THRESHOLD_MAX))
434 tr->reset = 1; /* limit cannot be lower than err count */
436 if (tr->reset) { /* reset err count and overflow bit */
438 (hi & ~(MASK_ERR_COUNT_HI | MASK_OVERFLOW_HI)) |
439 (THRESHOLD_MAX - tr->b->threshold_limit);
440 } else if (tr->old_limit) { /* change limit w/o reset */
441 int new_count = (hi & THRESHOLD_MAX) +
442 (tr->old_limit - tr->b->threshold_limit);
444 hi = (hi & ~MASK_ERR_COUNT_HI) |
445 (new_count & THRESHOLD_MAX);
449 hi &= ~MASK_INT_TYPE_HI;
451 if (!tr->b->interrupt_capable)
454 if (tr->set_lvt_off) {
455 if (lvt_off_valid(tr->b, tr->lvt_off, lo, hi)) {
456 /* set new lvt offset */
457 hi &= ~MASK_LVTOFF_HI;
458 hi |= tr->lvt_off << 20;
462 if (tr->b->interrupt_enable)
467 hi |= MASK_COUNT_EN_HI;
468 wrmsr(tr->b->address, lo, hi);
471 static void mce_threshold_block_init(struct threshold_block *b, int offset)
473 struct thresh_restart tr = {
479 b->threshold_limit = THRESHOLD_MAX;
480 threshold_restart_bank(&tr);
483 static int setup_APIC_mce_threshold(int reserved, int new)
485 if (reserved < 0 && !setup_APIC_eilvt(new, THRESHOLD_APIC_VECTOR,
486 APIC_EILVT_MSG_FIX, 0))
492 static int setup_APIC_deferred_error(int reserved, int new)
494 if (reserved < 0 && !setup_APIC_eilvt(new, DEFERRED_ERROR_VECTOR,
495 APIC_EILVT_MSG_FIX, 0))
501 static void deferred_error_interrupt_enable(struct cpuinfo_x86 *c)
503 u32 low = 0, high = 0;
504 int def_offset = -1, def_new;
506 if (rdmsr_safe(MSR_CU_DEF_ERR, &low, &high))
509 def_new = (low & MASK_DEF_LVTOFF) >> 4;
510 if (!(low & MASK_DEF_LVTOFF)) {
511 pr_err(FW_BUG "Your BIOS is not setting up LVT offset 0x2 for deferred error IRQs correctly.\n");
512 def_new = DEF_LVT_OFF;
513 low = (low & ~MASK_DEF_LVTOFF) | (DEF_LVT_OFF << 4);
516 def_offset = setup_APIC_deferred_error(def_offset, def_new);
517 if ((def_offset == def_new) &&
518 (deferred_error_int_vector != amd_deferred_error_interrupt))
519 deferred_error_int_vector = amd_deferred_error_interrupt;
522 low = (low & ~MASK_DEF_INT_TYPE) | DEF_INT_TYPE_APIC;
524 wrmsr(MSR_CU_DEF_ERR, low, high);
527 static u32 smca_get_block_address(unsigned int bank, unsigned int block,
531 return MSR_AMD64_SMCA_MCx_MISC(bank);
533 if (!(per_cpu(smca_misc_banks_map, cpu) & BIT_ULL(bank)))
536 return MSR_AMD64_SMCA_MCx_MISCy(bank, block - 1);
539 static u32 get_block_address(u32 current_addr, u32 low, u32 high,
540 unsigned int bank, unsigned int block,
543 u32 addr = 0, offset = 0;
545 if ((bank >= per_cpu(mce_num_banks, cpu)) || (block >= NR_BLOCKS))
549 return smca_get_block_address(bank, block, cpu);
551 /* Fall back to method we used for older processors: */
554 addr = mca_msr_reg(bank, MCA_MISC);
557 offset = ((low & MASK_BLKPTR_LO) >> 21);
559 addr = MCG_XBLK_ADDR + offset;
562 addr = ++current_addr;
568 prepare_threshold_block(unsigned int bank, unsigned int block, u32 addr,
569 int offset, u32 misc_high)
571 unsigned int cpu = smp_processor_id();
572 u32 smca_low, smca_high;
573 struct threshold_block b;
577 per_cpu(bank_map, cpu) |= BIT_ULL(bank);
579 memset(&b, 0, sizeof(b));
584 b.interrupt_capable = lvt_interrupt_supported(bank, misc_high);
586 if (!b.interrupt_capable)
589 b.interrupt_enable = 1;
591 if (!mce_flags.smca) {
592 new = (misc_high & MASK_LVTOFF_HI) >> 20;
596 /* Gather LVT offset for thresholding: */
597 if (rdmsr_safe(MSR_CU_DEF_ERR, &smca_low, &smca_high))
600 new = (smca_low & SMCA_THR_LVT_OFF) >> 12;
603 offset = setup_APIC_mce_threshold(offset, new);
605 thresholding_irq_en = true;
608 mce_threshold_block_init(&b, offset);
614 bool amd_filter_mce(struct mce *m)
616 enum smca_bank_types bank_type = smca_get_bank_type(m->extcpu, m->bank);
617 struct cpuinfo_x86 *c = &boot_cpu_data;
619 /* See Family 17h Models 10h-2Fh Erratum #1114. */
620 if (c->x86 == 0x17 &&
621 c->x86_model >= 0x10 && c->x86_model <= 0x2F &&
622 bank_type == SMCA_IF && XEC(m->status, 0x3f) == 10)
625 /* NB GART TLB error reporting is disabled by default. */
627 if (m->bank == 4 && XEC(m->status, 0x1f) == 0x5)
635 * Turn off thresholding banks for the following conditions:
636 * - MC4_MISC thresholding is not supported on Family 0x15.
637 * - Prevent possible spurious interrupts from the IF bank on Family 0x17
638 * Models 0x10-0x2F due to Erratum #1114.
640 static void disable_err_thresholding(struct cpuinfo_x86 *c, unsigned int bank)
647 if (c->x86 == 0x15 && bank == 4) {
648 msrs[0] = 0x00000413; /* MC4_MISC0 */
649 msrs[1] = 0xc0000408; /* MC4_MISC1 */
651 } else if (c->x86 == 0x17 &&
652 (c->x86_model >= 0x10 && c->x86_model <= 0x2F)) {
654 if (smca_get_bank_type(smp_processor_id(), bank) != SMCA_IF)
657 msrs[0] = MSR_AMD64_SMCA_MCx_MISC(bank);
663 rdmsrl(MSR_K7_HWCR, hwcr);
665 /* McStatusWrEn has to be set */
666 need_toggle = !(hwcr & BIT(18));
668 wrmsrl(MSR_K7_HWCR, hwcr | BIT(18));
670 /* Clear CntP bit safely */
671 for (i = 0; i < num_msrs; i++)
672 msr_clear_bit(msrs[i], 62);
674 /* restore old settings */
676 wrmsrl(MSR_K7_HWCR, hwcr);
679 /* cpu init entry point, called from mce.c with preempt off */
680 void mce_amd_feature_init(struct cpuinfo_x86 *c)
682 unsigned int bank, block, cpu = smp_processor_id();
683 u32 low = 0, high = 0, address = 0;
687 for (bank = 0; bank < this_cpu_read(mce_num_banks); ++bank) {
689 smca_configure(bank, cpu);
691 disable_err_thresholding(c, bank);
693 for (block = 0; block < NR_BLOCKS; ++block) {
694 address = get_block_address(address, low, high, bank, block, cpu);
698 if (rdmsr_safe(address, &low, &high))
701 if (!(high & MASK_VALID_HI))
704 if (!(high & MASK_CNTP_HI) ||
705 (high & MASK_LOCKED_HI))
708 offset = prepare_threshold_block(bank, block, address, offset, high);
712 if (mce_flags.succor)
713 deferred_error_interrupt_enable(c);
716 bool amd_mce_is_memory_error(struct mce *m)
718 enum smca_bank_types bank_type;
719 /* ErrCodeExt[20:16] */
720 u8 xec = (m->status >> 16) & 0x1f;
722 bank_type = smca_get_bank_type(m->extcpu, m->bank);
724 return (bank_type == SMCA_UMC || bank_type == SMCA_UMC_V2) && xec == 0x0;
726 return m->bank == 4 && xec == 0x8;
729 static void __log_error(unsigned int bank, u64 status, u64 addr, u64 misc)
740 if (m.status & MCI_STATUS_ADDRV) {
743 smca_extract_err_addr(&m);
746 if (mce_flags.smca) {
747 rdmsrl(MSR_AMD64_SMCA_MCx_IPID(bank), m.ipid);
749 if (m.status & MCI_STATUS_SYNDV)
750 rdmsrl(MSR_AMD64_SMCA_MCx_SYND(bank), m.synd);
756 DEFINE_IDTENTRY_SYSVEC(sysvec_deferred_error)
758 trace_deferred_error_apic_entry(DEFERRED_ERROR_VECTOR);
759 inc_irq_stat(irq_deferred_error_count);
760 deferred_error_int_vector();
761 trace_deferred_error_apic_exit(DEFERRED_ERROR_VECTOR);
766 * Returns true if the logged error is deferred. False, otherwise.
769 _log_error_bank(unsigned int bank, u32 msr_stat, u32 msr_addr, u64 misc)
771 u64 status, addr = 0;
773 rdmsrl(msr_stat, status);
774 if (!(status & MCI_STATUS_VAL))
777 if (status & MCI_STATUS_ADDRV)
778 rdmsrl(msr_addr, addr);
780 __log_error(bank, status, addr, misc);
784 return status & MCI_STATUS_DEFERRED;
787 static bool _log_error_deferred(unsigned int bank, u32 misc)
789 if (!_log_error_bank(bank, mca_msr_reg(bank, MCA_STATUS),
790 mca_msr_reg(bank, MCA_ADDR), misc))
794 * Non-SMCA systems don't have MCA_DESTAT/MCA_DEADDR registers.
795 * Return true here to avoid accessing these registers.
800 /* Clear MCA_DESTAT if the deferred error was logged from MCA_STATUS. */
801 wrmsrl(MSR_AMD64_SMCA_MCx_DESTAT(bank), 0);
806 * We have three scenarios for checking for Deferred errors:
808 * 1) Non-SMCA systems check MCA_STATUS and log error if found.
809 * 2) SMCA systems check MCA_STATUS. If error is found then log it and also
811 * 3) SMCA systems check MCA_DESTAT, if error was not found in MCA_STATUS, and
814 static void log_error_deferred(unsigned int bank)
816 if (_log_error_deferred(bank, 0))
820 * Only deferred errors are logged in MCA_DE{STAT,ADDR} so just check
823 _log_error_bank(bank, MSR_AMD64_SMCA_MCx_DESTAT(bank),
824 MSR_AMD64_SMCA_MCx_DEADDR(bank), 0);
827 /* APIC interrupt handler for deferred errors */
828 static void amd_deferred_error_interrupt(void)
832 for (bank = 0; bank < this_cpu_read(mce_num_banks); ++bank)
833 log_error_deferred(bank);
836 static void log_error_thresholding(unsigned int bank, u64 misc)
838 _log_error_deferred(bank, misc);
841 static void log_and_reset_block(struct threshold_block *block)
843 struct thresh_restart tr;
844 u32 low = 0, high = 0;
849 if (rdmsr_safe(block->address, &low, &high))
852 if (!(high & MASK_OVERFLOW_HI))
855 /* Log the MCE which caused the threshold event. */
856 log_error_thresholding(block->bank, ((u64)high << 32) | low);
858 /* Reset threshold block after logging error. */
859 memset(&tr, 0, sizeof(tr));
861 threshold_restart_bank(&tr);
865 * Threshold interrupt handler will service THRESHOLD_APIC_VECTOR. The interrupt
866 * goes off when error_count reaches threshold_limit.
868 static void amd_threshold_interrupt(void)
870 struct threshold_block *first_block = NULL, *block = NULL, *tmp = NULL;
871 struct threshold_bank **bp = this_cpu_read(threshold_banks);
872 unsigned int bank, cpu = smp_processor_id();
875 * Validate that the threshold bank has been initialized already. The
876 * handler is installed at boot time, but on a hotplug event the
877 * interrupt might fire before the data has been initialized.
882 for (bank = 0; bank < this_cpu_read(mce_num_banks); ++bank) {
883 if (!(per_cpu(bank_map, cpu) & BIT_ULL(bank)))
886 first_block = bp[bank]->blocks;
891 * The first block is also the head of the list. Check it first
892 * before iterating over the rest.
894 log_and_reset_block(first_block);
895 list_for_each_entry_safe(block, tmp, &first_block->miscj, miscj)
896 log_and_reset_block(block);
904 struct threshold_attr {
905 struct attribute attr;
906 ssize_t (*show) (struct threshold_block *, char *);
907 ssize_t (*store) (struct threshold_block *, const char *, size_t count);
910 #define SHOW_FIELDS(name) \
911 static ssize_t show_ ## name(struct threshold_block *b, char *buf) \
913 return sprintf(buf, "%lu\n", (unsigned long) b->name); \
915 SHOW_FIELDS(interrupt_enable)
916 SHOW_FIELDS(threshold_limit)
919 store_interrupt_enable(struct threshold_block *b, const char *buf, size_t size)
921 struct thresh_restart tr;
924 if (!b->interrupt_capable)
927 if (kstrtoul(buf, 0, &new) < 0)
930 b->interrupt_enable = !!new;
932 memset(&tr, 0, sizeof(tr));
935 if (smp_call_function_single(b->cpu, threshold_restart_bank, &tr, 1))
942 store_threshold_limit(struct threshold_block *b, const char *buf, size_t size)
944 struct thresh_restart tr;
947 if (kstrtoul(buf, 0, &new) < 0)
950 if (new > THRESHOLD_MAX)
955 memset(&tr, 0, sizeof(tr));
956 tr.old_limit = b->threshold_limit;
957 b->threshold_limit = new;
960 if (smp_call_function_single(b->cpu, threshold_restart_bank, &tr, 1))
966 static ssize_t show_error_count(struct threshold_block *b, char *buf)
970 /* CPU might be offline by now */
971 if (rdmsr_on_cpu(b->cpu, b->address, &lo, &hi))
974 return sprintf(buf, "%u\n", ((hi & THRESHOLD_MAX) -
975 (THRESHOLD_MAX - b->threshold_limit)));
978 static struct threshold_attr error_count = {
979 .attr = {.name = __stringify(error_count), .mode = 0444 },
980 .show = show_error_count,
983 #define RW_ATTR(val) \
984 static struct threshold_attr val = { \
985 .attr = {.name = __stringify(val), .mode = 0644 }, \
986 .show = show_## val, \
987 .store = store_## val, \
990 RW_ATTR(interrupt_enable);
991 RW_ATTR(threshold_limit);
993 static struct attribute *default_attrs[] = {
994 &threshold_limit.attr,
996 NULL, /* possibly interrupt_enable if supported, see below */
999 ATTRIBUTE_GROUPS(default);
1001 #define to_block(k) container_of(k, struct threshold_block, kobj)
1002 #define to_attr(a) container_of(a, struct threshold_attr, attr)
1004 static ssize_t show(struct kobject *kobj, struct attribute *attr, char *buf)
1006 struct threshold_block *b = to_block(kobj);
1007 struct threshold_attr *a = to_attr(attr);
1010 ret = a->show ? a->show(b, buf) : -EIO;
1015 static ssize_t store(struct kobject *kobj, struct attribute *attr,
1016 const char *buf, size_t count)
1018 struct threshold_block *b = to_block(kobj);
1019 struct threshold_attr *a = to_attr(attr);
1022 ret = a->store ? a->store(b, buf, count) : -EIO;
1027 static const struct sysfs_ops threshold_ops = {
1032 static void threshold_block_release(struct kobject *kobj);
1034 static const struct kobj_type threshold_ktype = {
1035 .sysfs_ops = &threshold_ops,
1036 .default_groups = default_groups,
1037 .release = threshold_block_release,
1040 static const char *get_name(unsigned int cpu, unsigned int bank, struct threshold_block *b)
1042 enum smca_bank_types bank_type;
1044 if (!mce_flags.smca) {
1046 return bank4_names(b);
1048 return th_names[bank];
1051 bank_type = smca_get_bank_type(cpu, bank);
1052 if (bank_type >= N_SMCA_BANK_TYPES)
1055 if (b && (bank_type == SMCA_UMC || bank_type == SMCA_UMC_V2)) {
1056 if (b->block < ARRAY_SIZE(smca_umc_block_names))
1057 return smca_umc_block_names[b->block];
1061 if (per_cpu(smca_bank_counts, cpu)[bank_type] == 1)
1062 return smca_get_name(bank_type);
1064 snprintf(buf_mcatype, MAX_MCATYPE_NAME_LEN,
1065 "%s_%u", smca_get_name(bank_type),
1066 per_cpu(smca_banks, cpu)[bank].sysfs_id);
1070 static int allocate_threshold_blocks(unsigned int cpu, struct threshold_bank *tb,
1071 unsigned int bank, unsigned int block,
1074 struct threshold_block *b = NULL;
1078 if ((bank >= this_cpu_read(mce_num_banks)) || (block >= NR_BLOCKS))
1081 if (rdmsr_safe(address, &low, &high))
1084 if (!(high & MASK_VALID_HI)) {
1091 if (!(high & MASK_CNTP_HI) ||
1092 (high & MASK_LOCKED_HI))
1095 b = kzalloc(sizeof(struct threshold_block), GFP_KERNEL);
1102 b->address = address;
1103 b->interrupt_enable = 0;
1104 b->interrupt_capable = lvt_interrupt_supported(bank, high);
1105 b->threshold_limit = THRESHOLD_MAX;
1107 if (b->interrupt_capable) {
1108 default_attrs[2] = &interrupt_enable.attr;
1109 b->interrupt_enable = 1;
1111 default_attrs[2] = NULL;
1114 INIT_LIST_HEAD(&b->miscj);
1116 /* This is safe as @tb is not visible yet */
1118 list_add(&b->miscj, &tb->blocks->miscj);
1122 err = kobject_init_and_add(&b->kobj, &threshold_ktype, tb->kobj, get_name(cpu, bank, b));
1126 address = get_block_address(address, low, high, bank, ++block, cpu);
1130 err = allocate_threshold_blocks(cpu, tb, bank, block, address);
1135 kobject_uevent(&b->kobj, KOBJ_ADD);
1141 list_del(&b->miscj);
1142 kobject_put(&b->kobj);
1147 static int __threshold_add_blocks(struct threshold_bank *b)
1149 struct list_head *head = &b->blocks->miscj;
1150 struct threshold_block *pos = NULL;
1151 struct threshold_block *tmp = NULL;
1154 err = kobject_add(&b->blocks->kobj, b->kobj, b->blocks->kobj.name);
1158 list_for_each_entry_safe(pos, tmp, head, miscj) {
1160 err = kobject_add(&pos->kobj, b->kobj, pos->kobj.name);
1162 list_for_each_entry_safe_reverse(pos, tmp, head, miscj)
1163 kobject_del(&pos->kobj);
1171 static int threshold_create_bank(struct threshold_bank **bp, unsigned int cpu,
1174 struct device *dev = this_cpu_read(mce_device);
1175 struct amd_northbridge *nb = NULL;
1176 struct threshold_bank *b = NULL;
1177 const char *name = get_name(cpu, bank, NULL);
1183 if (is_shared_bank(bank)) {
1184 nb = node_to_amd_nb(topology_die_id(cpu));
1186 /* threshold descriptor already initialized on this node? */
1187 if (nb && nb->bank4) {
1190 err = kobject_add(b->kobj, &dev->kobj, name);
1195 refcount_inc(&b->cpus);
1197 err = __threshold_add_blocks(b);
1203 b = kzalloc(sizeof(struct threshold_bank), GFP_KERNEL);
1209 /* Associate the bank with the per-CPU MCE device */
1210 b->kobj = kobject_create_and_add(name, &dev->kobj);
1216 if (is_shared_bank(bank)) {
1218 refcount_set(&b->cpus, 1);
1220 /* nb is already initialized, see above */
1227 err = allocate_threshold_blocks(cpu, b, bank, 0, mca_msr_reg(bank, MCA_MISC));
1235 kobject_put(b->kobj);
1242 static void threshold_block_release(struct kobject *kobj)
1244 kfree(to_block(kobj));
1247 static void deallocate_threshold_blocks(struct threshold_bank *bank)
1249 struct threshold_block *pos, *tmp;
1251 list_for_each_entry_safe(pos, tmp, &bank->blocks->miscj, miscj) {
1252 list_del(&pos->miscj);
1253 kobject_put(&pos->kobj);
1256 kobject_put(&bank->blocks->kobj);
1259 static void __threshold_remove_blocks(struct threshold_bank *b)
1261 struct threshold_block *pos = NULL;
1262 struct threshold_block *tmp = NULL;
1264 kobject_put(b->kobj);
1266 list_for_each_entry_safe(pos, tmp, &b->blocks->miscj, miscj)
1267 kobject_put(b->kobj);
1270 static void threshold_remove_bank(struct threshold_bank *bank)
1272 struct amd_northbridge *nb;
1280 if (!refcount_dec_and_test(&bank->cpus)) {
1281 __threshold_remove_blocks(bank);
1285 * The last CPU on this node using the shared bank is going
1286 * away, remove that bank now.
1288 nb = node_to_amd_nb(topology_die_id(smp_processor_id()));
1293 deallocate_threshold_blocks(bank);
1296 kobject_put(bank->kobj);
1300 static void __threshold_remove_device(struct threshold_bank **bp)
1302 unsigned int bank, numbanks = this_cpu_read(mce_num_banks);
1304 for (bank = 0; bank < numbanks; bank++) {
1308 threshold_remove_bank(bp[bank]);
1314 int mce_threshold_remove_device(unsigned int cpu)
1316 struct threshold_bank **bp = this_cpu_read(threshold_banks);
1322 * Clear the pointer before cleaning up, so that the interrupt won't
1323 * touch anything of this.
1325 this_cpu_write(threshold_banks, NULL);
1327 __threshold_remove_device(bp);
1332 * mce_threshold_create_device - Create the per-CPU MCE threshold device
1333 * @cpu: The plugged in CPU
1335 * Create directories and files for all valid threshold banks.
1337 * This is invoked from the CPU hotplug callback which was installed in
1338 * mcheck_init_device(). The invocation happens in context of the hotplug
1339 * thread running on @cpu. The callback is invoked on all CPUs which are
1340 * online when the callback is installed or during a real hotplug event.
1342 int mce_threshold_create_device(unsigned int cpu)
1344 unsigned int numbanks, bank;
1345 struct threshold_bank **bp;
1348 if (!mce_flags.amd_threshold)
1351 bp = this_cpu_read(threshold_banks);
1355 numbanks = this_cpu_read(mce_num_banks);
1356 bp = kcalloc(numbanks, sizeof(*bp), GFP_KERNEL);
1360 for (bank = 0; bank < numbanks; ++bank) {
1361 if (!(this_cpu_read(bank_map) & BIT_ULL(bank)))
1363 err = threshold_create_bank(bp, cpu, bank);
1365 __threshold_remove_device(bp);
1369 this_cpu_write(threshold_banks, bp);
1371 if (thresholding_irq_en)
1372 mce_threshold_vector = amd_threshold_interrupt;