blob: a1e2f41796dc15a6fb1d30b00cc7c90ac54d4981 [file] [log] [blame]
Thomas Gleixner3817d2b2019-05-29 16:58:01 -07001// SPDX-License-Identifier: GPL-2.0-only
Jacob Shin89b831e2005-11-05 17:25:53 +01002/*
Aravind Gopalakrishnanea2ca362016-03-07 14:02:21 +01003 * (c) 2005-2016 Advanced Micro Devices, Inc.
Jacob Shin89b831e2005-11-05 17:25:53 +01004 *
5 * Written by Jacob Shin - AMD, Inc.
Borislav Petkove6d41e82012-10-29 18:40:08 +01006 * Maintained by: Borislav Petkov <bp@alien8.de>
Jacob Shin89b831e2005-11-05 17:25:53 +01007 *
Borislav Petkov3490c0e2015-05-07 12:06:43 +02008 * All MC4_MISCi registers are shared between cores on a node.
Jacob Shin89b831e2005-11-05 17:25:53 +01009 */
Jacob Shin89b831e2005-11-05 17:25:53 +010010#include <linux/interrupt.h>
Jacob Shin89b831e2005-11-05 17:25:53 +010011#include <linux/notifier.h>
Ingo Molnar1cb2a8e2009-04-08 12:31:18 +020012#include <linux/kobject.h>
Hidetoshi Seto34fa1962009-04-08 12:31:18 +020013#include <linux/percpu.h>
Ingo Molnar1cb2a8e2009-04-08 12:31:18 +020014#include <linux/errno.h>
15#include <linux/sched.h>
Jacob Shin89b831e2005-11-05 17:25:53 +010016#include <linux/sysfs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090017#include <linux/slab.h>
Ingo Molnar1cb2a8e2009-04-08 12:31:18 +020018#include <linux/init.h>
19#include <linux/cpu.h>
20#include <linux/smp.h>
Yazen Ghannam87a6d402016-09-12 09:59:35 +020021#include <linux/string.h>
Ingo Molnar1cb2a8e2009-04-08 12:31:18 +020022
Borislav Petkov019f34f2012-05-02 17:16:59 +020023#include <asm/amd_nb.h>
Borislav Petkov68b5e432018-11-09 23:13:13 +010024#include <asm/traps.h>
Jacob Shin89b831e2005-11-05 17:25:53 +010025#include <asm/apic.h>
26#include <asm/mce.h>
27#include <asm/msr.h>
Aravind Gopalakrishnan24fd78a2015-05-06 06:58:56 -050028#include <asm/trace/irq_vectors.h>
Jacob Shin89b831e2005-11-05 17:25:53 +010029
Borislav Petkov21afaf12018-11-18 15:15:05 +010030#include "internal.h"
Borislav Petkov262e6812017-10-02 11:28:36 +020031
Aravind Gopalakrishnan60f116f2016-01-25 20:41:50 +010032#define NR_BLOCKS 5
Jacob Shin2903ee82006-06-26 13:58:56 +020033#define THRESHOLD_MAX 0xFFF
34#define INT_TYPE_APIC 0x00020000
35#define MASK_VALID_HI 0x80000000
Jan Beulich24ce0e92007-02-13 13:26:23 +010036#define MASK_CNTP_HI 0x40000000
37#define MASK_LOCKED_HI 0x20000000
Jacob Shin2903ee82006-06-26 13:58:56 +020038#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
Jacob Shin89b831e2005-11-05 17:25:53 +010042#define MASK_ERR_COUNT_HI 0x00000FFF
Jacob Shin95268662006-06-26 13:58:53 +020043#define MASK_BLKPTR_LO 0xFF000000
44#define MCG_XBLK_ADDR 0xC0000400
Jacob Shin89b831e2005-11-05 17:25:53 +010045
Aravind Gopalakrishnan24fd78a2015-05-06 06:58:56 -050046/* 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
52
Aravind Gopalakrishnanf57a1f32016-01-25 20:41:51 +010053/* Scalable MCA: */
54
55/* Threshold LVT offset is at MSR0xC0000410[15:12] */
56#define SMCA_THR_LVT_OFF 0xF000
57
Borislav Petkov60c81442018-11-27 14:41:37 +010058static bool thresholding_irq_en;
Sebastian Andrzej Siewior4d7b02d2016-11-10 18:44:44 +010059
Borislav Petkov336d3352012-05-04 17:05:27 +020060static const char * const th_names[] = {
61 "load_store",
62 "insn_fetch",
63 "combined_unit",
Yazen Ghannam29f72ce2017-03-30 13:17:14 +020064 "decode_unit",
Borislav Petkov336d3352012-05-04 17:05:27 +020065 "northbridge",
66 "execution_unit",
67};
68
Yazen Ghannam87a6d402016-09-12 09:59:35 +020069static const char * const smca_umc_block_names[] = {
70 "dram_ecc",
71 "misc_umc"
72};
73
Yazen Ghannam91f75eb2021-12-16 16:29:05 +000074#define HWID_MCATYPE(hwid, mcatype) (((hwid) << 16) | (mcatype))
75
76struct smca_hwid {
77 unsigned int bank_type; /* Use with smca_bank_types for easy indexing. */
78 u32 hwid_mcatype; /* (hwid,mcatype) tuple */
79};
80
81struct smca_bank {
82 const struct smca_hwid *hwid;
83 u32 id; /* Value of MCA_IPID[InstanceId]. */
84 u8 sysfs_id; /* Value used for sysfs name. */
85};
86
87static DEFINE_PER_CPU_READ_MOSTLY(struct smca_bank[MAX_NR_BANKS], smca_banks);
88static DEFINE_PER_CPU_READ_MOSTLY(u8[N_SMCA_BANK_TYPES], smca_bank_counts);
89
Borislav Petkovc09a8c42016-11-03 21:12:33 +010090struct smca_bank_name {
91 const char *name; /* Short name for sysfs */
92 const char *long_name; /* Long name for pretty-printing */
93};
94
95static struct smca_bank_name smca_names[] = {
Muralidhara M K94a311c2021-05-26 22:16:01 +053096 [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." },
106
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" },
Yazen Ghannam5176a932021-12-16 16:29:04 +0000114 [SMCA_MPDMA] = { "mpdma", "MPDMA Unit" },
Muralidhara M K94a311c2021-05-26 22:16:01 +0530115 [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" },
Yazen Ghannam5176a932021-12-16 16:29:04 +0000118 [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" },
Muralidhara M K94a311c2021-05-26 22:16:01 +0530123 [SMCA_XGMI_PHY] = { "xgmi_phy", "Ext Global Memory Interconnect PHY Unit" },
124 [SMCA_WAFL_PHY] = { "wafl_phy", "WAFL PHY Unit" },
Yazen Ghannam5176a932021-12-16 16:29:04 +0000125 [SMCA_GMI_PHY] = { "gmi_phy", "Global Memory Interconnect PHY Unit" },
Aravind Gopalakrishnanbe0aec22016-03-07 14:02:18 +0100126};
Borislav Petkovc09a8c42016-11-03 21:12:33 +0100127
Borislav Petkov68b5e432018-11-09 23:13:13 +0100128static const char *smca_get_name(enum smca_bank_types t)
Borislav Petkovc09a8c42016-11-03 21:12:33 +0100129{
130 if (t >= N_SMCA_BANK_TYPES)
131 return NULL;
132
133 return smca_names[t].name;
134}
135
136const char *smca_get_long_name(enum smca_bank_types t)
137{
138 if (t >= N_SMCA_BANK_TYPES)
139 return NULL;
140
141 return smca_names[t].long_name;
142}
143EXPORT_SYMBOL_GPL(smca_get_long_name);
Aravind Gopalakrishnanbe0aec22016-03-07 14:02:18 +0100144
Yazen Ghannam91f75eb2021-12-16 16:29:05 +0000145enum smca_bank_types smca_get_bank_type(unsigned int cpu, unsigned int bank)
Yazen Ghannam11cf8872017-12-18 12:37:12 +0100146{
147 struct smca_bank *b;
148
Yazen Ghanname5d6a122018-02-21 11:18:57 +0100149 if (bank >= MAX_NR_BANKS)
Yazen Ghannam11cf8872017-12-18 12:37:12 +0100150 return N_SMCA_BANK_TYPES;
151
Yazen Ghannam91f75eb2021-12-16 16:29:05 +0000152 b = &per_cpu(smca_banks, cpu)[bank];
Yazen Ghannam11cf8872017-12-18 12:37:12 +0100153 if (!b->hwid)
154 return N_SMCA_BANK_TYPES;
155
156 return b->hwid->bank_type;
157}
Mukul Joshif38ce912021-03-27 22:54:04 -0400158EXPORT_SYMBOL_GPL(smca_get_bank_type);
Yazen Ghannam11cf8872017-12-18 12:37:12 +0100159
Yazen Ghannam91f75eb2021-12-16 16:29:05 +0000160static const struct smca_hwid smca_hwid_mcatypes[] = {
Yazen Ghannam368d1882020-07-20 14:53:53 +0000161 /* { bank_type, hwid_mcatype } */
Aravind Gopalakrishnanbe0aec22016-03-07 14:02:18 +0100162
Yazen Ghannam68627a62018-02-21 11:18:58 +0100163 /* Reserved type */
Yazen Ghannam368d1882020-07-20 14:53:53 +0000164 { SMCA_RESERVED, HWID_MCATYPE(0x00, 0x0) },
Yazen Ghannam68627a62018-02-21 11:18:58 +0100165
Yazen Ghannam58968202016-09-12 09:59:34 +0200166 /* ZN Core (HWID=0xB0) MCA types */
Yazen Ghannam368d1882020-07-20 14:53:53 +0000167 { 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) },
Yazen Ghannam58968202016-09-12 09:59:34 +0200172 /* HWID 0xB0 MCATYPE 0x4 is Reserved */
Yazen Ghannam368d1882020-07-20 14:53:53 +0000173 { SMCA_EX, HWID_MCATYPE(0xB0, 0x5) },
174 { SMCA_FP, HWID_MCATYPE(0xB0, 0x6) },
175 { SMCA_L3_CACHE, HWID_MCATYPE(0xB0, 0x7) },
Yazen Ghannam58968202016-09-12 09:59:34 +0200176
177 /* Data Fabric MCA types */
Yazen Ghannam368d1882020-07-20 14:53:53 +0000178 { SMCA_CS, HWID_MCATYPE(0x2E, 0x0) },
179 { SMCA_PIE, HWID_MCATYPE(0x2E, 0x1) },
180 { SMCA_CS_V2, HWID_MCATYPE(0x2E, 0x2) },
Yazen Ghannam58968202016-09-12 09:59:34 +0200181
182 /* Unified Memory Controller MCA type */
Yazen Ghannam368d1882020-07-20 14:53:53 +0000183 { SMCA_UMC, HWID_MCATYPE(0x96, 0x0) },
Muralidhara M K94a311c2021-05-26 22:16:01 +0530184 { SMCA_UMC_V2, HWID_MCATYPE(0x96, 0x1) },
Yazen Ghannam58968202016-09-12 09:59:34 +0200185
186 /* Parameter Block MCA type */
Yazen Ghannam368d1882020-07-20 14:53:53 +0000187 { SMCA_PB, HWID_MCATYPE(0x05, 0x0) },
Yazen Ghannam58968202016-09-12 09:59:34 +0200188
189 /* Platform Security Processor MCA type */
Yazen Ghannam368d1882020-07-20 14:53:53 +0000190 { SMCA_PSP, HWID_MCATYPE(0xFF, 0x0) },
191 { SMCA_PSP_V2, HWID_MCATYPE(0xFF, 0x1) },
Yazen Ghannam58968202016-09-12 09:59:34 +0200192
193 /* System Management Unit MCA type */
Yazen Ghannam368d1882020-07-20 14:53:53 +0000194 { SMCA_SMU, HWID_MCATYPE(0x01, 0x0) },
195 { SMCA_SMU_V2, HWID_MCATYPE(0x01, 0x1) },
Yazen Ghannamcbfa4472019-02-01 22:55:51 +0000196
197 /* Microprocessor 5 Unit MCA type */
Yazen Ghannam368d1882020-07-20 14:53:53 +0000198 { SMCA_MP5, HWID_MCATYPE(0x01, 0x2) },
Yazen Ghannamcbfa4472019-02-01 22:55:51 +0000199
Yazen Ghannam5176a932021-12-16 16:29:04 +0000200 /* MPDMA MCA type */
201 { SMCA_MPDMA, HWID_MCATYPE(0x01, 0x3) },
202
Yazen Ghannamcbfa4472019-02-01 22:55:51 +0000203 /* Northbridge IO Unit MCA type */
Yazen Ghannam368d1882020-07-20 14:53:53 +0000204 { SMCA_NBIO, HWID_MCATYPE(0x18, 0x0) },
Yazen Ghannamcbfa4472019-02-01 22:55:51 +0000205
206 /* PCI Express Unit MCA type */
Yazen Ghannam368d1882020-07-20 14:53:53 +0000207 { SMCA_PCIE, HWID_MCATYPE(0x46, 0x0) },
Muralidhara M K94a311c2021-05-26 22:16:01 +0530208 { SMCA_PCIE_V2, HWID_MCATYPE(0x46, 0x1) },
209
Muralidhara M K94a311c2021-05-26 22:16:01 +0530210 { SMCA_XGMI_PCS, HWID_MCATYPE(0x50, 0x0) },
Yazen Ghannam5176a932021-12-16 16:29:04 +0000211 { 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) },
Muralidhara M K94a311c2021-05-26 22:16:01 +0530216 { SMCA_XGMI_PHY, HWID_MCATYPE(0x259, 0x0) },
Muralidhara M K94a311c2021-05-26 22:16:01 +0530217 { SMCA_WAFL_PHY, HWID_MCATYPE(0x267, 0x0) },
Yazen Ghannam5176a932021-12-16 16:29:04 +0000218 { SMCA_GMI_PHY, HWID_MCATYPE(0x269, 0x0) },
Aravind Gopalakrishnanbe0aec22016-03-07 14:02:18 +0100219};
Yazen Ghannam58968202016-09-12 09:59:34 +0200220
Yazen Ghannam87a6d402016-09-12 09:59:35 +0200221/*
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().
225 *
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.
228 */
229#define MAX_MCATYPE_NAME_LEN 30
230static char buf_mcatype[MAX_MCATYPE_NAME_LEN];
231
Boris Ostrovskybafcdd32013-03-14 17:10:41 -0400232static DEFINE_PER_CPU(struct threshold_bank **, threshold_banks);
Thomas Gleixnercca9cc02020-03-12 20:05:43 +0100233
234/*
235 * A list of the banks enabled on each logical CPU. Controls which respective
236 * descriptors to initialize later in mce_threshold_create_device().
237 */
238static DEFINE_PER_CPU(unsigned int, bank_map);
Jacob Shin89b831e2005-11-05 17:25:53 +0100239
Yazen Ghannam95d057f2019-06-07 20:18:04 +0000240/* Map of banks that have more than MCA_MISC0 available. */
241static DEFINE_PER_CPU(u32, smca_misc_banks_map);
242
Andi Kleenb2762682009-02-12 13:49:31 +0100243static void amd_threshold_interrupt(void);
Aravind Gopalakrishnan24fd78a2015-05-06 06:58:56 -0500244static void amd_deferred_error_interrupt(void);
245
246static void default_deferred_error_interrupt(void)
247{
248 pr_err("Unexpected deferred interrupt at vector %x\n", DEFERRED_ERROR_VECTOR);
249}
250void (*deferred_error_int_vector)(void) = default_deferred_error_interrupt;
Andi Kleenb2762682009-02-12 13:49:31 +0100251
Yazen Ghannam95d057f2019-06-07 20:18:04 +0000252static void smca_set_misc_banks_map(unsigned int bank, unsigned int cpu)
253{
254 u32 low, high;
255
256 /*
257 * For SMCA enabled processors, BLKPTR field of the first MISC register
258 * (MCx_MISC0) indicates presence of additional MISC regs set (MISC1-4).
259 */
260 if (rdmsr_safe(MSR_AMD64_SMCA_MCx_CONFIG(bank), &low, &high))
261 return;
262
263 if (!(low & MCI_CONFIG_MCAX))
264 return;
265
266 if (rdmsr_safe(MSR_AMD64_SMCA_MCx_MISC(bank), &low, &high))
267 return;
268
269 if (low & MASK_BLKPTR_LO)
270 per_cpu(smca_misc_banks_map, cpu) |= BIT(bank);
271
272}
273
Yazen Ghannam84bcc1d2017-05-19 11:39:15 +0200274static void smca_configure(unsigned int bank, unsigned int cpu)
Yazen Ghannam58968202016-09-12 09:59:34 +0200275{
Yazen Ghannam91f75eb2021-12-16 16:29:05 +0000276 u8 *bank_counts = this_cpu_ptr(smca_bank_counts);
277 const struct smca_hwid *s_hwid;
Yazen Ghannam84bcc1d2017-05-19 11:39:15 +0200278 unsigned int i, hwid_mcatype;
Yazen Ghannam84bcc1d2017-05-19 11:39:15 +0200279 u32 high, low;
280 u32 smca_config = MSR_AMD64_SMCA_MCx_CONFIG(bank);
281
282 /* Set appropriate bits in MCA_CONFIG */
283 if (!rdmsr_safe(smca_config, &low, &high)) {
284 /*
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.
290 *
291 * MCA_CONFIG[MCAX] is bit 32 (0 in the high portion of the MSR.)
292 */
293 high |= BIT(0);
294
295 /*
296 * SMCA sets the Deferred Error Interrupt type per bank.
297 *
298 * MCA_CONFIG[DeferredIntTypeSupported] is bit 5, and tells us
299 * if the DeferredIntType bit field is available.
300 *
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
304 * set.
305 */
306 if ((low & BIT(5)) && !((high >> 5) & 0x3))
307 high |= BIT(5);
308
309 wrmsr(smca_config, low, high);
310 }
Yazen Ghannam58968202016-09-12 09:59:34 +0200311
Yazen Ghannam95d057f2019-06-07 20:18:04 +0000312 smca_set_misc_banks_map(bank, cpu);
313
Konstantin Khlebnikov246ff09f2019-10-31 16:04:48 +0300314 if (rdmsr_safe(MSR_AMD64_SMCA_MCx_IPID(bank), &low, &high)) {
Yazen Ghannam58968202016-09-12 09:59:34 +0200315 pr_warn("Failed to read MCA_IPID for bank %d\n", bank);
316 return;
317 }
318
Borislav Petkov1ce9cd72016-11-02 12:48:01 +0100319 hwid_mcatype = HWID_MCATYPE(high & MCI_IPID_HWID,
320 (high & MCI_IPID_MCATYPE) >> 16);
Yazen Ghannam58968202016-09-12 09:59:34 +0200321
322 for (i = 0; i < ARRAY_SIZE(smca_hwid_mcatypes); i++) {
Borislav Petkov1ce9cd72016-11-02 12:48:01 +0100323 s_hwid = &smca_hwid_mcatypes[i];
Yazen Ghannam91f75eb2021-12-16 16:29:05 +0000324
Borislav Petkov1ce9cd72016-11-02 12:48:01 +0100325 if (hwid_mcatype == s_hwid->hwid_mcatype) {
Yazen Ghannam91f75eb2021-12-16 16:29:05 +0000326 this_cpu_ptr(smca_banks)[bank].hwid = s_hwid;
327 this_cpu_ptr(smca_banks)[bank].id = low;
328 this_cpu_ptr(smca_banks)[bank].sysfs_id = bank_counts[s_hwid->bank_type]++;
Yazen Ghannam58968202016-09-12 09:59:34 +0200329 break;
330 }
331 }
332}
333
Mike Travis4cd46012008-12-16 17:34:04 -0800334struct thresh_restart {
Ingo Molnar1cb2a8e2009-04-08 12:31:18 +0200335 struct threshold_block *b;
336 int reset;
Robert Richter9c37c9d2010-10-25 16:03:35 +0200337 int set_lvt_off;
338 int lvt_off;
Ingo Molnar1cb2a8e2009-04-08 12:31:18 +0200339 u16 old_limit;
Mike Travis4cd46012008-12-16 17:34:04 -0800340};
341
Boris Ostrovskyc76e8162013-03-14 17:10:40 -0400342static inline bool is_shared_bank(int bank)
343{
Aravind Gopalakrishnan284b9652016-01-25 20:41:49 +0100344 /*
345 * Scalable MCA provides for only one core to have access to the MSRs of
346 * a shared bank.
347 */
348 if (mce_flags.smca)
349 return false;
350
Boris Ostrovskyc76e8162013-03-14 17:10:40 -0400351 /* Bank 4 is for northbridge reporting and is thus shared */
352 return (bank == 4);
353}
354
Jan Beulich2cd4c302015-01-23 08:32:01 +0000355static const char *bank4_names(const struct threshold_block *b)
Borislav Petkov336d3352012-05-04 17:05:27 +0200356{
357 switch (b->address) {
358 /* MSR4_MISC0 */
359 case 0x00000413:
360 return "dram";
361
362 case 0xc0000408:
363 return "ht_links";
364
365 case 0xc0000409:
366 return "l3_cache";
367
368 default:
369 WARN(1, "Funny MSR: 0x%08x\n", b->address);
370 return "";
371 }
372};
373
374
Borislav Petkovf227d432012-04-16 18:01:53 +0200375static bool lvt_interrupt_supported(unsigned int bank, u32 msr_high_bits)
376{
377 /*
378 * bank 4 supports APIC LVT interrupts implicitly since forever.
379 */
380 if (bank == 4)
381 return true;
382
383 /*
384 * IntP: interrupt present; if this bit is set, the thresholding
385 * bank can generate APIC LVT interrupts
386 */
387 return msr_high_bits & BIT(28);
388}
389
Robert Richterbbaff082010-10-25 16:03:37 +0200390static int lvt_off_valid(struct threshold_block *b, int apic, u32 lo, u32 hi)
391{
392 int msr = (hi & MASK_LVTOFF_HI) >> 20;
393
394 if (apic < 0) {
395 pr_err(FW_BUG "cpu %d, failed to setup threshold interrupt "
396 "for bank %d, block %d (MSR%08X=0x%x%08x)\n", b->cpu,
397 b->bank, b->block, b->address, hi, lo);
398 return 0;
399 }
400
401 if (apic != msr) {
Aravind Gopalakrishnanf57a1f32016-01-25 20:41:51 +0100402 /*
403 * On SMCA CPUs, LVT offset is programmed at a different MSR, and
404 * the BIOS provides the value. The original field where LVT offset
405 * was set is reserved. Return early here:
406 */
407 if (mce_flags.smca)
408 return 0;
409
Robert Richterbbaff082010-10-25 16:03:37 +0200410 pr_err(FW_BUG "cpu %d, invalid threshold interrupt offset %d "
411 "for bank %d, block %d (MSR%08X=0x%x%08x)\n",
412 b->cpu, apic, b->bank, b->block, b->address, hi, lo);
413 return 0;
414 }
415
416 return 1;
417};
418
Aravind Gopalakrishnanea2ca362016-03-07 14:02:21 +0100419/* Reprogram MCx_MISC MSR behind this threshold bank. */
Andrew Mortona6b6a142009-03-18 10:40:25 +1030420static void threshold_restart_bank(void *_tr)
Jacob Shin89b831e2005-11-05 17:25:53 +0100421{
Mike Travis4cd46012008-12-16 17:34:04 -0800422 struct thresh_restart *tr = _tr;
Robert Richter7203a042010-10-25 16:03:36 +0200423 u32 hi, lo;
Jacob Shin89b831e2005-11-05 17:25:53 +0100424
Thomas Gleixnera037f3c2020-03-31 13:16:44 +0200425 /* sysfs write might race against an offline operation */
426 if (this_cpu_read(threshold_banks))
427 return;
428
Robert Richter7203a042010-10-25 16:03:36 +0200429 rdmsr(tr->b->address, lo, hi);
Jacob Shin89b831e2005-11-05 17:25:53 +0100430
Robert Richter7203a042010-10-25 16:03:36 +0200431 if (tr->b->threshold_limit < (hi & THRESHOLD_MAX))
Mike Travis4cd46012008-12-16 17:34:04 -0800432 tr->reset = 1; /* limit cannot be lower than err count */
Jacob Shin89b831e2005-11-05 17:25:53 +0100433
Mike Travis4cd46012008-12-16 17:34:04 -0800434 if (tr->reset) { /* reset err count and overflow bit */
Robert Richter7203a042010-10-25 16:03:36 +0200435 hi =
436 (hi & ~(MASK_ERR_COUNT_HI | MASK_OVERFLOW_HI)) |
Mike Travis4cd46012008-12-16 17:34:04 -0800437 (THRESHOLD_MAX - tr->b->threshold_limit);
438 } else if (tr->old_limit) { /* change limit w/o reset */
Robert Richter7203a042010-10-25 16:03:36 +0200439 int new_count = (hi & THRESHOLD_MAX) +
Mike Travis4cd46012008-12-16 17:34:04 -0800440 (tr->old_limit - tr->b->threshold_limit);
Ingo Molnar1cb2a8e2009-04-08 12:31:18 +0200441
Robert Richter7203a042010-10-25 16:03:36 +0200442 hi = (hi & ~MASK_ERR_COUNT_HI) |
Jacob Shin89b831e2005-11-05 17:25:53 +0100443 (new_count & THRESHOLD_MAX);
444 }
445
Borislav Petkovf227d432012-04-16 18:01:53 +0200446 /* clear IntType */
447 hi &= ~MASK_INT_TYPE_HI;
448
449 if (!tr->b->interrupt_capable)
450 goto done;
451
Robert Richter9c37c9d2010-10-25 16:03:35 +0200452 if (tr->set_lvt_off) {
Robert Richterbbaff082010-10-25 16:03:37 +0200453 if (lvt_off_valid(tr->b, tr->lvt_off, lo, hi)) {
454 /* set new lvt offset */
455 hi &= ~MASK_LVTOFF_HI;
456 hi |= tr->lvt_off << 20;
457 }
Robert Richter9c37c9d2010-10-25 16:03:35 +0200458 }
459
Borislav Petkovf227d432012-04-16 18:01:53 +0200460 if (tr->b->interrupt_enable)
461 hi |= INT_TYPE_APIC;
462
463 done:
Jacob Shin89b831e2005-11-05 17:25:53 +0100464
Robert Richter7203a042010-10-25 16:03:36 +0200465 hi |= MASK_COUNT_EN_HI;
466 wrmsr(tr->b->address, lo, hi);
Jacob Shin89b831e2005-11-05 17:25:53 +0100467}
468
Robert Richter9c37c9d2010-10-25 16:03:35 +0200469static void mce_threshold_block_init(struct threshold_block *b, int offset)
470{
471 struct thresh_restart tr = {
472 .b = b,
473 .set_lvt_off = 1,
474 .lvt_off = offset,
475 };
476
477 b->threshold_limit = THRESHOLD_MAX;
478 threshold_restart_bank(&tr);
479};
480
Aravind Gopalakrishnan868c00b2015-05-06 06:58:58 -0500481static int setup_APIC_mce_threshold(int reserved, int new)
Robert Richterbbaff082010-10-25 16:03:37 +0200482{
483 if (reserved < 0 && !setup_APIC_eilvt(new, THRESHOLD_APIC_VECTOR,
484 APIC_EILVT_MSG_FIX, 0))
485 return new;
486
487 return reserved;
488}
489
Aravind Gopalakrishnan24fd78a2015-05-06 06:58:56 -0500490static int setup_APIC_deferred_error(int reserved, int new)
491{
492 if (reserved < 0 && !setup_APIC_eilvt(new, DEFERRED_ERROR_VECTOR,
493 APIC_EILVT_MSG_FIX, 0))
494 return new;
495
496 return reserved;
497}
498
499static void deferred_error_interrupt_enable(struct cpuinfo_x86 *c)
500{
501 u32 low = 0, high = 0;
502 int def_offset = -1, def_new;
503
504 if (rdmsr_safe(MSR_CU_DEF_ERR, &low, &high))
505 return;
506
507 def_new = (low & MASK_DEF_LVTOFF) >> 4;
508 if (!(low & MASK_DEF_LVTOFF)) {
509 pr_err(FW_BUG "Your BIOS is not setting up LVT offset 0x2 for deferred error IRQs correctly.\n");
510 def_new = DEF_LVT_OFF;
511 low = (low & ~MASK_DEF_LVTOFF) | (DEF_LVT_OFF << 4);
512 }
513
514 def_offset = setup_APIC_deferred_error(def_offset, def_new);
515 if ((def_offset == def_new) &&
516 (deferred_error_int_vector != amd_deferred_error_interrupt))
517 deferred_error_int_vector = amd_deferred_error_interrupt;
518
Yazen Ghannamc8a4364c2017-12-04 17:54:38 +0100519 if (!mce_flags.smca)
520 low = (low & ~MASK_DEF_INT_TYPE) | DEF_INT_TYPE_APIC;
521
Aravind Gopalakrishnan24fd78a2015-05-06 06:58:56 -0500522 wrmsr(MSR_CU_DEF_ERR, low, high);
523}
524
Yazen Ghannam95d057f2019-06-07 20:18:04 +0000525static u32 smca_get_block_address(unsigned int bank, unsigned int block,
526 unsigned int cpu)
Yazen Ghannam8a331f42018-02-21 11:19:00 +0100527{
Yazen Ghannam8a331f42018-02-21 11:19:00 +0100528 if (!block)
529 return MSR_AMD64_SMCA_MCx_MISC(bank);
530
Yazen Ghannam95d057f2019-06-07 20:18:04 +0000531 if (!(per_cpu(smca_misc_banks_map, cpu) & BIT(bank)))
532 return 0;
Borislav Petkov78ce2412018-05-17 10:46:26 +0200533
Yazen Ghannam95d057f2019-06-07 20:18:04 +0000534 return MSR_AMD64_SMCA_MCx_MISCy(bank, block - 1);
Yazen Ghannam8a331f42018-02-21 11:19:00 +0100535}
536
Borislav Petkovfbf96cf2018-05-17 18:32:33 +0200537static u32 get_block_address(u32 current_addr, u32 low, u32 high,
Yazen Ghannam95d057f2019-06-07 20:18:04 +0000538 unsigned int bank, unsigned int block,
539 unsigned int cpu)
Aravind Gopalakrishnan8dd1e172016-03-07 14:02:19 +0100540{
541 u32 addr = 0, offset = 0;
542
Yazen Ghannamc7d314f2019-06-07 20:18:05 +0000543 if ((bank >= per_cpu(mce_num_banks, cpu)) || (block >= NR_BLOCKS))
Yazen Ghannam27bd5952018-02-21 11:18:59 +0100544 return addr;
545
Yazen Ghannam8a331f42018-02-21 11:19:00 +0100546 if (mce_flags.smca)
Yazen Ghannam95d057f2019-06-07 20:18:04 +0000547 return smca_get_block_address(bank, block, cpu);
Aravind Gopalakrishnan8dd1e172016-03-07 14:02:19 +0100548
549 /* Fall back to method we used for older processors: */
550 switch (block) {
551 case 0:
Borislav Petkov8121b8f2021-09-02 13:33:22 +0200552 addr = mca_msr_reg(bank, MCA_MISC);
Aravind Gopalakrishnan8dd1e172016-03-07 14:02:19 +0100553 break;
554 case 1:
555 offset = ((low & MASK_BLKPTR_LO) >> 21);
556 if (offset)
557 addr = MCG_XBLK_ADDR + offset;
558 break;
559 default:
560 addr = ++current_addr;
561 }
562 return addr;
563}
564
Borislav Petkov429893b2016-01-25 20:41:52 +0100565static int
566prepare_threshold_block(unsigned int bank, unsigned int block, u32 addr,
567 int offset, u32 misc_high)
568{
569 unsigned int cpu = smp_processor_id();
Yazen Ghannam84bcc1d2017-05-19 11:39:15 +0200570 u32 smca_low, smca_high;
Borislav Petkov429893b2016-01-25 20:41:52 +0100571 struct threshold_block b;
572 int new;
573
574 if (!block)
575 per_cpu(bank_map, cpu) |= (1 << bank);
576
577 memset(&b, 0, sizeof(b));
578 b.cpu = cpu;
579 b.bank = bank;
580 b.block = block;
581 b.address = addr;
582 b.interrupt_capable = lvt_interrupt_supported(bank, misc_high);
583
584 if (!b.interrupt_capable)
585 goto done;
586
587 b.interrupt_enable = 1;
588
Borislav Petkove128b4f2016-05-11 14:58:25 +0200589 if (!mce_flags.smca) {
Borislav Petkov429893b2016-01-25 20:41:52 +0100590 new = (misc_high & MASK_LVTOFF_HI) >> 20;
Borislav Petkove128b4f2016-05-11 14:58:25 +0200591 goto set_offset;
Borislav Petkov429893b2016-01-25 20:41:52 +0100592 }
593
Borislav Petkove128b4f2016-05-11 14:58:25 +0200594 /* Gather LVT offset for thresholding: */
595 if (rdmsr_safe(MSR_CU_DEF_ERR, &smca_low, &smca_high))
596 goto out;
597
598 new = (smca_low & SMCA_THR_LVT_OFF) >> 12;
599
600set_offset:
Borislav Petkov429893b2016-01-25 20:41:52 +0100601 offset = setup_APIC_mce_threshold(offset, new);
Borislav Petkov60c81442018-11-27 14:41:37 +0100602 if (offset == new)
603 thresholding_irq_en = true;
Borislav Petkov429893b2016-01-25 20:41:52 +0100604
605done:
606 mce_threshold_block_init(&b, offset);
607
608out:
609 return offset;
610}
611
Yazen Ghannam71a84402019-03-25 16:34:22 +0000612bool amd_filter_mce(struct mce *m)
Shirish S30aa3d22019-01-16 15:10:40 +0000613{
Yazen Ghannam91f75eb2021-12-16 16:29:05 +0000614 enum smca_bank_types bank_type = smca_get_bank_type(m->extcpu, m->bank);
Yazen Ghannam71a84402019-03-25 16:34:22 +0000615 struct cpuinfo_x86 *c = &boot_cpu_data;
Yazen Ghannam71a84402019-03-25 16:34:22 +0000616
617 /* See Family 17h Models 10h-2Fh Erratum #1114. */
618 if (c->x86 == 0x17 &&
619 c->x86_model >= 0x10 && c->x86_model <= 0x2F &&
Borislav Petkov3e0fdec2020-04-07 09:55:10 +0200620 bank_type == SMCA_IF && XEC(m->status, 0x3f) == 10)
Yazen Ghannam71a84402019-03-25 16:34:22 +0000621 return true;
622
Borislav Petkov3e0fdec2020-04-07 09:55:10 +0200623 /* NB GART TLB error reporting is disabled by default. */
624 if (c->x86 < 0x17) {
625 if (m->bank == 4 && XEC(m->status, 0x1f) == 0x5)
626 return true;
627 }
628
Yazen Ghannam71a84402019-03-25 16:34:22 +0000629 return false;
630}
631
632/*
633 * Turn off thresholding banks for the following conditions:
634 * - MC4_MISC thresholding is not supported on Family 0x15.
635 * - Prevent possible spurious interrupts from the IF bank on Family 0x17
636 * Models 0x10-0x2F due to Erratum #1114.
637 */
Borislav Petkov47cd84e2019-09-28 19:02:29 +0200638static void disable_err_thresholding(struct cpuinfo_x86 *c, unsigned int bank)
Yazen Ghannam71a84402019-03-25 16:34:22 +0000639{
640 int i, num_msrs;
Shirish S30aa3d22019-01-16 15:10:40 +0000641 u64 hwcr;
642 bool need_toggle;
Yazen Ghannam71a84402019-03-25 16:34:22 +0000643 u32 msrs[NR_BLOCKS];
Shirish S30aa3d22019-01-16 15:10:40 +0000644
Yazen Ghannam71a84402019-03-25 16:34:22 +0000645 if (c->x86 == 0x15 && bank == 4) {
646 msrs[0] = 0x00000413; /* MC4_MISC0 */
647 msrs[1] = 0xc0000408; /* MC4_MISC1 */
648 num_msrs = 2;
649 } else if (c->x86 == 0x17 &&
650 (c->x86_model >= 0x10 && c->x86_model <= 0x2F)) {
651
Yazen Ghannam91f75eb2021-12-16 16:29:05 +0000652 if (smca_get_bank_type(smp_processor_id(), bank) != SMCA_IF)
Yazen Ghannam71a84402019-03-25 16:34:22 +0000653 return;
654
655 msrs[0] = MSR_AMD64_SMCA_MCx_MISC(bank);
656 num_msrs = 1;
657 } else {
Shirish S30aa3d22019-01-16 15:10:40 +0000658 return;
Yazen Ghannam71a84402019-03-25 16:34:22 +0000659 }
Shirish S30aa3d22019-01-16 15:10:40 +0000660
661 rdmsrl(MSR_K7_HWCR, hwcr);
662
663 /* McStatusWrEn has to be set */
664 need_toggle = !(hwcr & BIT(18));
Shirish S30aa3d22019-01-16 15:10:40 +0000665 if (need_toggle)
666 wrmsrl(MSR_K7_HWCR, hwcr | BIT(18));
667
668 /* Clear CntP bit safely */
Yazen Ghannam71a84402019-03-25 16:34:22 +0000669 for (i = 0; i < num_msrs; i++)
Shirish S30aa3d22019-01-16 15:10:40 +0000670 msr_clear_bit(msrs[i], 62);
671
672 /* restore old settings */
673 if (need_toggle)
674 wrmsrl(MSR_K7_HWCR, hwcr);
675}
676
Jacob Shin95268662006-06-26 13:58:53 +0200677/* cpu init entry point, called from mce.c with preempt off */
H. Peter Anvincc3ca222009-02-20 23:35:51 -0800678void mce_amd_feature_init(struct cpuinfo_x86 *c)
Jacob Shin89b831e2005-11-05 17:25:53 +0100679{
Yazen Ghannamcfee4f62016-09-12 09:59:31 +0200680 unsigned int bank, block, cpu = smp_processor_id();
Yazen Ghannamc7d314f2019-06-07 20:18:05 +0000681 u32 low = 0, high = 0, address = 0;
Borislav Petkov429893b2016-01-25 20:41:52 +0100682 int offset = -1;
Jacob Shin89b831e2005-11-05 17:25:53 +0100683
Yazen Ghannamc7d314f2019-06-07 20:18:05 +0000684
685 for (bank = 0; bank < this_cpu_read(mce_num_banks); ++bank) {
Yazen Ghannam58968202016-09-12 09:59:34 +0200686 if (mce_flags.smca)
Yazen Ghannam84bcc1d2017-05-19 11:39:15 +0200687 smca_configure(bank, cpu);
Yazen Ghannam58968202016-09-12 09:59:34 +0200688
Yazen Ghannam71a84402019-03-25 16:34:22 +0000689 disable_err_thresholding(c, bank);
690
Jacob Shin95268662006-06-26 13:58:53 +0200691 for (block = 0; block < NR_BLOCKS; ++block) {
Yazen Ghannam95d057f2019-06-07 20:18:04 +0000692 address = get_block_address(address, low, high, bank, block, cpu);
Aravind Gopalakrishnan8dd1e172016-03-07 14:02:19 +0100693 if (!address)
694 break;
Jacob Shin89b831e2005-11-05 17:25:53 +0100695
Jacob Shin95268662006-06-26 13:58:53 +0200696 if (rdmsr_safe(address, &low, &high))
Jan Beulich24ce0e92007-02-13 13:26:23 +0100697 break;
Jacob Shin89b831e2005-11-05 17:25:53 +0100698
Borislav Petkov6dcbfe42010-10-08 12:08:34 +0200699 if (!(high & MASK_VALID_HI))
700 continue;
Jacob Shin89b831e2005-11-05 17:25:53 +0100701
Jan Beulich24ce0e92007-02-13 13:26:23 +0100702 if (!(high & MASK_CNTP_HI) ||
703 (high & MASK_LOCKED_HI))
Jacob Shin95268662006-06-26 13:58:53 +0200704 continue;
705
Borislav Petkov429893b2016-01-25 20:41:52 +0100706 offset = prepare_threshold_block(bank, block, address, offset, high);
Jacob Shin95268662006-06-26 13:58:53 +0200707 }
Jacob Shin89b831e2005-11-05 17:25:53 +0100708 }
Aravind Gopalakrishnan24fd78a2015-05-06 06:58:56 -0500709
710 if (mce_flags.succor)
711 deferred_error_interrupt_enable(c);
Jacob Shin89b831e2005-11-05 17:25:53 +0100712}
713
Yazen Ghannamc6708d52017-12-18 12:37:13 +0100714bool amd_mce_is_memory_error(struct mce *m)
715{
716 /* ErrCodeExt[20:16] */
717 u8 xec = (m->status >> 16) & 0x1f;
718
719 if (mce_flags.smca)
Yazen Ghannam91f75eb2021-12-16 16:29:05 +0000720 return smca_get_bank_type(m->extcpu, m->bank) == SMCA_UMC && xec == 0x0;
Yazen Ghannamc6708d52017-12-18 12:37:13 +0100721
722 return m->bank == 4 && xec == 0x8;
723}
724
Yazen Ghannam37d43ac2017-05-19 11:39:14 +0200725static void __log_error(unsigned int bank, u64 status, u64 addr, u64 misc)
Aravind Gopalakrishnanafdf3442015-05-06 06:58:53 -0500726{
727 struct mce m;
Aravind Gopalakrishnanafdf3442015-05-06 06:58:53 -0500728
729 mce_setup(&m);
730
731 m.status = status;
Yazen Ghannam37d43ac2017-05-19 11:39:14 +0200732 m.misc = misc;
Borislav Petkov669c00f2017-01-23 19:35:09 +0100733 m.bank = bank;
734 m.tsc = rdtsc();
Aravind Gopalakrishnan6e6e7462015-05-06 06:58:54 -0500735
Yazen Ghannam4f29b732016-09-12 09:59:39 +0200736 if (m.status & MCI_STATUS_ADDRV) {
Yazen Ghannam37d43ac2017-05-19 11:39:14 +0200737 m.addr = addr;
Aravind Gopalakrishnanafdf3442015-05-06 06:58:53 -0500738
Yazen Ghannam4f29b732016-09-12 09:59:39 +0200739 /*
740 * Extract [55:<lsb>] where lsb is the least significant
741 * *valid* bit of the address bits.
742 */
743 if (mce_flags.smca) {
744 u8 lsb = (m.addr >> 56) & 0x3f;
745
746 m.addr &= GENMASK_ULL(55, lsb);
747 }
748 }
749
Yazen Ghannam5828c462016-09-12 09:59:37 +0200750 if (mce_flags.smca) {
751 rdmsrl(MSR_AMD64_SMCA_MCx_IPID(bank), m.ipid);
752
753 if (m.status & MCI_STATUS_SYNDV)
754 rdmsrl(MSR_AMD64_SMCA_MCx_SYND(bank), m.synd);
755 }
Yazen Ghannamdb819d62016-09-12 09:59:28 +0200756
Aravind Gopalakrishnan6e6e7462015-05-06 06:58:54 -0500757 mce_log(&m);
Aravind Gopalakrishnanafdf3442015-05-06 06:58:53 -0500758}
759
Thomas Gleixner720909a2020-05-21 22:05:41 +0200760DEFINE_IDTENTRY_SYSVEC(sysvec_deferred_error)
Aravind Gopalakrishnan24fd78a2015-05-06 06:58:56 -0500761{
Aravind Gopalakrishnan24fd78a2015-05-06 06:58:56 -0500762 trace_deferred_error_apic_entry(DEFERRED_ERROR_VECTOR);
Thomas Gleixner0f42ae22017-08-28 08:47:28 +0200763 inc_irq_stat(irq_deferred_error_count);
764 deferred_error_int_vector();
Aravind Gopalakrishnan24fd78a2015-05-06 06:58:56 -0500765 trace_deferred_error_apic_exit(DEFERRED_ERROR_VECTOR);
Thomas Gleixner720909a2020-05-21 22:05:41 +0200766 ack_APIC_irq();
Aravind Gopalakrishnan24fd78a2015-05-06 06:58:56 -0500767}
768
Yazen Ghannam37d43ac2017-05-19 11:39:14 +0200769/*
770 * Returns true if the logged error is deferred. False, otherwise.
771 */
772static inline bool
773_log_error_bank(unsigned int bank, u32 msr_stat, u32 msr_addr, u64 misc)
774{
775 u64 status, addr = 0;
776
777 rdmsrl(msr_stat, status);
778 if (!(status & MCI_STATUS_VAL))
779 return false;
780
781 if (status & MCI_STATUS_ADDRV)
782 rdmsrl(msr_addr, addr);
783
784 __log_error(bank, status, addr, misc);
785
Yazen Ghannama24b8c32017-06-13 18:28:28 +0200786 wrmsrl(msr_stat, 0);
Yazen Ghannam37d43ac2017-05-19 11:39:14 +0200787
788 return status & MCI_STATUS_DEFERRED;
789}
790
791/*
792 * We have three scenarios for checking for Deferred errors:
793 *
794 * 1) Non-SMCA systems check MCA_STATUS and log error if found.
795 * 2) SMCA systems check MCA_STATUS. If error is found then log it and also
796 * clear MCA_DESTAT.
797 * 3) SMCA systems check MCA_DESTAT, if error was not found in MCA_STATUS, and
798 * log it.
799 */
800static void log_error_deferred(unsigned int bank)
801{
802 bool defrd;
803
Borislav Petkov8121b8f2021-09-02 13:33:22 +0200804 defrd = _log_error_bank(bank, mca_msr_reg(bank, MCA_STATUS),
805 mca_msr_reg(bank, MCA_ADDR), 0);
Yazen Ghannam37d43ac2017-05-19 11:39:14 +0200806
807 if (!mce_flags.smca)
808 return;
809
810 /* Clear MCA_DESTAT if we logged the deferred error from MCA_STATUS. */
811 if (defrd) {
812 wrmsrl(MSR_AMD64_SMCA_MCx_DESTAT(bank), 0);
813 return;
814 }
815
816 /*
817 * Only deferred errors are logged in MCA_DE{STAT,ADDR} so just check
818 * for a valid error.
819 */
820 _log_error_bank(bank, MSR_AMD64_SMCA_MCx_DESTAT(bank),
821 MSR_AMD64_SMCA_MCx_DEADDR(bank), 0);
822}
823
Aravind Gopalakrishnan24fd78a2015-05-06 06:58:56 -0500824/* APIC interrupt handler for deferred errors */
825static void amd_deferred_error_interrupt(void)
826{
Aravind Gopalakrishnan24fd78a2015-05-06 06:58:56 -0500827 unsigned int bank;
828
Yazen Ghannamc7d314f2019-06-07 20:18:05 +0000829 for (bank = 0; bank < this_cpu_read(mce_num_banks); ++bank)
Yazen Ghannam37d43ac2017-05-19 11:39:14 +0200830 log_error_deferred(bank);
831}
Yazen Ghannam34102002016-05-11 14:58:23 +0200832
Yazen Ghannam37d43ac2017-05-19 11:39:14 +0200833static void log_error_thresholding(unsigned int bank, u64 misc)
834{
Borislav Petkov8121b8f2021-09-02 13:33:22 +0200835 _log_error_bank(bank, mca_msr_reg(bank, MCA_STATUS), mca_msr_reg(bank, MCA_ADDR), misc);
Aravind Gopalakrishnan24fd78a2015-05-06 06:58:56 -0500836}
837
Yazen Ghannam17ef4af2017-06-13 18:28:29 +0200838static void log_and_reset_block(struct threshold_block *block)
839{
840 struct thresh_restart tr;
841 u32 low = 0, high = 0;
842
843 if (!block)
844 return;
845
846 if (rdmsr_safe(block->address, &low, &high))
847 return;
848
849 if (!(high & MASK_OVERFLOW_HI))
850 return;
851
852 /* Log the MCE which caused the threshold event. */
853 log_error_thresholding(block->bank, ((u64)high << 32) | low);
854
855 /* Reset threshold block after logging error. */
856 memset(&tr, 0, sizeof(tr));
857 tr.b = block;
858 threshold_restart_bank(&tr);
859}
860
Jacob Shin89b831e2005-11-05 17:25:53 +0100861/*
Yazen Ghannam37d43ac2017-05-19 11:39:14 +0200862 * Threshold interrupt handler will service THRESHOLD_APIC_VECTOR. The interrupt
863 * goes off when error_count reaches threshold_limit.
Jacob Shin89b831e2005-11-05 17:25:53 +0100864 */
Andi Kleenb2762682009-02-12 13:49:31 +0100865static void amd_threshold_interrupt(void)
Jacob Shin89b831e2005-11-05 17:25:53 +0100866{
Yazen Ghannam17ef4af2017-06-13 18:28:29 +0200867 struct threshold_block *first_block = NULL, *block = NULL, *tmp = NULL;
Thomas Gleixnercca9cc02020-03-12 20:05:43 +0100868 struct threshold_bank **bp = this_cpu_read(threshold_banks);
Yazen Ghannam17ef4af2017-06-13 18:28:29 +0200869 unsigned int bank, cpu = smp_processor_id();
Jacob Shin89b831e2005-11-05 17:25:53 +0100870
Thomas Gleixnercca9cc02020-03-12 20:05:43 +0100871 /*
872 * Validate that the threshold bank has been initialized already. The
873 * handler is installed at boot time, but on a hotplug event the
874 * interrupt might fire before the data has been initialized.
875 */
876 if (!bp)
877 return;
878
Yazen Ghannamc7d314f2019-06-07 20:18:05 +0000879 for (bank = 0; bank < this_cpu_read(mce_num_banks); ++bank) {
Chen Yucong44612a32014-10-02 14:48:19 +0200880 if (!(per_cpu(bank_map, cpu) & (1 << bank)))
Jan Beulich24ce0e92007-02-13 13:26:23 +0100881 continue;
Jacob Shin89b831e2005-11-05 17:25:53 +0100882
Thomas Gleixnercca9cc02020-03-12 20:05:43 +0100883 first_block = bp[bank]->blocks;
Yazen Ghannam17ef4af2017-06-13 18:28:29 +0200884 if (!first_block)
885 continue;
Jacob Shin95268662006-06-26 13:58:53 +0200886
Yazen Ghannam17ef4af2017-06-13 18:28:29 +0200887 /*
888 * The first block is also the head of the list. Check it first
889 * before iterating over the rest.
890 */
891 log_and_reset_block(first_block);
892 list_for_each_entry_safe(block, tmp, &first_block->miscj, miscj)
893 log_and_reset_block(block);
Jacob Shin89b831e2005-11-05 17:25:53 +0100894 }
Jacob Shin89b831e2005-11-05 17:25:53 +0100895}
896
897/*
898 * Sysfs Interface
899 */
900
Jacob Shin89b831e2005-11-05 17:25:53 +0100901struct threshold_attr {
Jacob Shin2903ee82006-06-26 13:58:56 +0200902 struct attribute attr;
Ingo Molnar1cb2a8e2009-04-08 12:31:18 +0200903 ssize_t (*show) (struct threshold_block *, char *);
904 ssize_t (*store) (struct threshold_block *, const char *, size_t count);
Jacob Shin89b831e2005-11-05 17:25:53 +0100905};
906
Ingo Molnar1cb2a8e2009-04-08 12:31:18 +0200907#define SHOW_FIELDS(name) \
908static ssize_t show_ ## name(struct threshold_block *b, char *buf) \
909{ \
Borislav Petkov18c20f32012-04-27 12:31:34 +0200910 return sprintf(buf, "%lu\n", (unsigned long) b->name); \
Jacob Shin2903ee82006-06-26 13:58:56 +0200911}
Jacob Shin89b831e2005-11-05 17:25:53 +0100912SHOW_FIELDS(interrupt_enable)
913SHOW_FIELDS(threshold_limit)
914
Ingo Molnar1cb2a8e2009-04-08 12:31:18 +0200915static ssize_t
Hidetoshi Seto9319cec2009-04-14 17:26:30 +0900916store_interrupt_enable(struct threshold_block *b, const char *buf, size_t size)
Jacob Shin89b831e2005-11-05 17:25:53 +0100917{
Mike Travis4cd46012008-12-16 17:34:04 -0800918 struct thresh_restart tr;
Ingo Molnar1cb2a8e2009-04-08 12:31:18 +0200919 unsigned long new;
Ingo Molnar1cb2a8e2009-04-08 12:31:18 +0200920
Borislav Petkovf227d432012-04-16 18:01:53 +0200921 if (!b->interrupt_capable)
922 return -EINVAL;
923
Daniel Walter164109e2014-08-08 14:24:03 -0700924 if (kstrtoul(buf, 0, &new) < 0)
Jacob Shin89b831e2005-11-05 17:25:53 +0100925 return -EINVAL;
Ingo Molnar1cb2a8e2009-04-08 12:31:18 +0200926
Jacob Shin89b831e2005-11-05 17:25:53 +0100927 b->interrupt_enable = !!new;
928
Robert Richter9c37c9d2010-10-25 16:03:35 +0200929 memset(&tr, 0, sizeof(tr));
Ingo Molnar1cb2a8e2009-04-08 12:31:18 +0200930 tr.b = b;
Ingo Molnar1cb2a8e2009-04-08 12:31:18 +0200931
Thomas Gleixnera037f3c2020-03-31 13:16:44 +0200932 if (smp_call_function_single(b->cpu, threshold_restart_bank, &tr, 1))
933 return -ENODEV;
Jacob Shin89b831e2005-11-05 17:25:53 +0100934
Hidetoshi Seto9319cec2009-04-14 17:26:30 +0900935 return size;
Jacob Shin89b831e2005-11-05 17:25:53 +0100936}
937
Ingo Molnar1cb2a8e2009-04-08 12:31:18 +0200938static ssize_t
Hidetoshi Seto9319cec2009-04-14 17:26:30 +0900939store_threshold_limit(struct threshold_block *b, const char *buf, size_t size)
Jacob Shin89b831e2005-11-05 17:25:53 +0100940{
Mike Travis4cd46012008-12-16 17:34:04 -0800941 struct thresh_restart tr;
Ingo Molnar1cb2a8e2009-04-08 12:31:18 +0200942 unsigned long new;
Ingo Molnar1cb2a8e2009-04-08 12:31:18 +0200943
Daniel Walter164109e2014-08-08 14:24:03 -0700944 if (kstrtoul(buf, 0, &new) < 0)
Jacob Shin89b831e2005-11-05 17:25:53 +0100945 return -EINVAL;
Ingo Molnar1cb2a8e2009-04-08 12:31:18 +0200946
Jacob Shin89b831e2005-11-05 17:25:53 +0100947 if (new > THRESHOLD_MAX)
948 new = THRESHOLD_MAX;
949 if (new < 1)
950 new = 1;
Ingo Molnar1cb2a8e2009-04-08 12:31:18 +0200951
Robert Richter9c37c9d2010-10-25 16:03:35 +0200952 memset(&tr, 0, sizeof(tr));
Mike Travis4cd46012008-12-16 17:34:04 -0800953 tr.old_limit = b->threshold_limit;
Jacob Shin89b831e2005-11-05 17:25:53 +0100954 b->threshold_limit = new;
Mike Travis4cd46012008-12-16 17:34:04 -0800955 tr.b = b;
Jacob Shin89b831e2005-11-05 17:25:53 +0100956
Thomas Gleixnera037f3c2020-03-31 13:16:44 +0200957 if (smp_call_function_single(b->cpu, threshold_restart_bank, &tr, 1))
958 return -ENODEV;
Jacob Shin89b831e2005-11-05 17:25:53 +0100959
Hidetoshi Seto9319cec2009-04-14 17:26:30 +0900960 return size;
Jacob Shin89b831e2005-11-05 17:25:53 +0100961}
962
Jacob Shin95268662006-06-26 13:58:53 +0200963static ssize_t show_error_count(struct threshold_block *b, char *buf)
Jacob Shin89b831e2005-11-05 17:25:53 +0100964{
Borislav Petkov2c9c42f2012-04-27 12:53:59 +0200965 u32 lo, hi;
Andrew Mortona6b6a142009-03-18 10:40:25 +1030966
Thomas Gleixnera037f3c2020-03-31 13:16:44 +0200967 /* CPU might be offline by now */
968 if (rdmsr_on_cpu(b->cpu, b->address, &lo, &hi))
969 return -ENODEV;
Borislav Petkov2c9c42f2012-04-27 12:53:59 +0200970
971 return sprintf(buf, "%u\n", ((hi & THRESHOLD_MAX) -
972 (THRESHOLD_MAX - b->threshold_limit)));
Jacob Shin89b831e2005-11-05 17:25:53 +0100973}
974
Borislav Petkov6e927362012-04-27 15:37:25 +0200975static struct threshold_attr error_count = {
976 .attr = {.name = __stringify(error_count), .mode = 0444 },
977 .show = show_error_count,
978};
Jacob Shin89b831e2005-11-05 17:25:53 +0100979
Hidetoshi Seto34fa1962009-04-08 12:31:18 +0200980#define RW_ATTR(val) \
981static struct threshold_attr val = { \
982 .attr = {.name = __stringify(val), .mode = 0644 }, \
983 .show = show_## val, \
984 .store = store_## val, \
Jacob Shin89b831e2005-11-05 17:25:53 +0100985};
986
Jacob Shin2903ee82006-06-26 13:58:56 +0200987RW_ATTR(interrupt_enable);
988RW_ATTR(threshold_limit);
Jacob Shin89b831e2005-11-05 17:25:53 +0100989
990static struct attribute *default_attrs[] = {
Jacob Shin89b831e2005-11-05 17:25:53 +0100991 &threshold_limit.attr,
992 &error_count.attr,
Borislav Petkovd26ecc42012-04-16 18:20:36 +0200993 NULL, /* possibly interrupt_enable if supported, see below */
994 NULL,
Jacob Shin89b831e2005-11-05 17:25:53 +0100995};
996
Ingo Molnar1cb2a8e2009-04-08 12:31:18 +0200997#define to_block(k) container_of(k, struct threshold_block, kobj)
998#define to_attr(a) container_of(a, struct threshold_attr, attr)
Jacob Shin89b831e2005-11-05 17:25:53 +0100999
1000static ssize_t show(struct kobject *kobj, struct attribute *attr, char *buf)
1001{
Jacob Shin95268662006-06-26 13:58:53 +02001002 struct threshold_block *b = to_block(kobj);
Jacob Shin89b831e2005-11-05 17:25:53 +01001003 struct threshold_attr *a = to_attr(attr);
1004 ssize_t ret;
Ingo Molnar1cb2a8e2009-04-08 12:31:18 +02001005
Jacob Shin89b831e2005-11-05 17:25:53 +01001006 ret = a->show ? a->show(b, buf) : -EIO;
Ingo Molnar1cb2a8e2009-04-08 12:31:18 +02001007
Jacob Shin89b831e2005-11-05 17:25:53 +01001008 return ret;
1009}
1010
1011static ssize_t store(struct kobject *kobj, struct attribute *attr,
1012 const char *buf, size_t count)
1013{
Jacob Shin95268662006-06-26 13:58:53 +02001014 struct threshold_block *b = to_block(kobj);
Jacob Shin89b831e2005-11-05 17:25:53 +01001015 struct threshold_attr *a = to_attr(attr);
1016 ssize_t ret;
Ingo Molnar1cb2a8e2009-04-08 12:31:18 +02001017
Jacob Shin89b831e2005-11-05 17:25:53 +01001018 ret = a->store ? a->store(b, buf, count) : -EIO;
Ingo Molnar1cb2a8e2009-04-08 12:31:18 +02001019
Jacob Shin89b831e2005-11-05 17:25:53 +01001020 return ret;
1021}
1022
Emese Revfy52cf25d2010-01-19 02:58:23 +01001023static const struct sysfs_ops threshold_ops = {
Ingo Molnar1cb2a8e2009-04-08 12:31:18 +02001024 .show = show,
1025 .store = store,
Jacob Shin89b831e2005-11-05 17:25:53 +01001026};
1027
Thomas Gleixner51dede92020-02-13 19:01:34 +01001028static void threshold_block_release(struct kobject *kobj);
1029
Jacob Shin89b831e2005-11-05 17:25:53 +01001030static struct kobj_type threshold_ktype = {
Ingo Molnar1cb2a8e2009-04-08 12:31:18 +02001031 .sysfs_ops = &threshold_ops,
1032 .default_attrs = default_attrs,
Thomas Gleixner51dede92020-02-13 19:01:34 +01001033 .release = threshold_block_release,
Jacob Shin89b831e2005-11-05 17:25:53 +01001034};
1035
Yazen Ghannam91f75eb2021-12-16 16:29:05 +00001036static const char *get_name(unsigned int cpu, unsigned int bank, struct threshold_block *b)
Yazen Ghannam87a6d402016-09-12 09:59:35 +02001037{
Yazen Ghanname5d6a122018-02-21 11:18:57 +01001038 enum smca_bank_types bank_type;
Yazen Ghannam87a6d402016-09-12 09:59:35 +02001039
1040 if (!mce_flags.smca) {
1041 if (b && bank == 4)
1042 return bank4_names(b);
1043
1044 return th_names[bank];
1045 }
1046
Yazen Ghannam91f75eb2021-12-16 16:29:05 +00001047 bank_type = smca_get_bank_type(cpu, bank);
Yazen Ghanname5d6a122018-02-21 11:18:57 +01001048 if (bank_type >= N_SMCA_BANK_TYPES)
Yazen Ghannam87a6d402016-09-12 09:59:35 +02001049 return NULL;
1050
Yazen Ghannam87a6d402016-09-12 09:59:35 +02001051 if (b && bank_type == SMCA_UMC) {
1052 if (b->block < ARRAY_SIZE(smca_umc_block_names))
1053 return smca_umc_block_names[b->block];
1054 return NULL;
1055 }
1056
Yazen Ghannam91f75eb2021-12-16 16:29:05 +00001057 if (per_cpu(smca_bank_counts, cpu)[bank_type] == 1)
Yazen Ghannam0b737a92017-01-23 19:35:08 +01001058 return smca_get_name(bank_type);
1059
Yazen Ghannam87a6d402016-09-12 09:59:35 +02001060 snprintf(buf_mcatype, MAX_MCATYPE_NAME_LEN,
Yazen Ghannam91f75eb2021-12-16 16:29:05 +00001061 "%s_%u", smca_get_name(bank_type),
1062 per_cpu(smca_banks, cpu)[bank].sysfs_id);
Yazen Ghannam87a6d402016-09-12 09:59:35 +02001063 return buf_mcatype;
1064}
1065
Borislav Petkov6e5cf312020-02-04 13:28:41 +01001066static int allocate_threshold_blocks(unsigned int cpu, struct threshold_bank *tb,
1067 unsigned int bank, unsigned int block,
1068 u32 address)
Jacob Shin89b831e2005-11-05 17:25:53 +01001069{
Jacob Shin95268662006-06-26 13:58:53 +02001070 struct threshold_block *b = NULL;
Ingo Molnar1cb2a8e2009-04-08 12:31:18 +02001071 u32 low, high;
1072 int err;
Jacob Shin95268662006-06-26 13:58:53 +02001073
Thomas Gleixner6458de92020-03-30 20:30:45 +02001074 if ((bank >= this_cpu_read(mce_num_banks)) || (block >= NR_BLOCKS))
Jacob Shin95268662006-06-26 13:58:53 +02001075 return 0;
1076
Thomas Gleixner6458de92020-03-30 20:30:45 +02001077 if (rdmsr_safe(address, &low, &high))
Jan Beulich24ce0e92007-02-13 13:26:23 +01001078 return 0;
Jacob Shin95268662006-06-26 13:58:53 +02001079
1080 if (!(high & MASK_VALID_HI)) {
1081 if (block)
1082 goto recurse;
1083 else
1084 return 0;
1085 }
1086
Jan Beulich24ce0e92007-02-13 13:26:23 +01001087 if (!(high & MASK_CNTP_HI) ||
1088 (high & MASK_LOCKED_HI))
Jacob Shin95268662006-06-26 13:58:53 +02001089 goto recurse;
1090
1091 b = kzalloc(sizeof(struct threshold_block), GFP_KERNEL);
1092 if (!b)
1093 return -ENOMEM;
Jacob Shin95268662006-06-26 13:58:53 +02001094
Ingo Molnar1cb2a8e2009-04-08 12:31:18 +02001095 b->block = block;
1096 b->bank = bank;
1097 b->cpu = cpu;
1098 b->address = address;
1099 b->interrupt_enable = 0;
Borislav Petkovf227d432012-04-16 18:01:53 +02001100 b->interrupt_capable = lvt_interrupt_supported(bank, high);
Ingo Molnar1cb2a8e2009-04-08 12:31:18 +02001101 b->threshold_limit = THRESHOLD_MAX;
Jacob Shin95268662006-06-26 13:58:53 +02001102
Aravind Gopalakrishnand79f9312015-02-02 11:02:41 -06001103 if (b->interrupt_capable) {
Borislav Petkovd26ecc42012-04-16 18:20:36 +02001104 threshold_ktype.default_attrs[2] = &interrupt_enable.attr;
Aravind Gopalakrishnand79f9312015-02-02 11:02:41 -06001105 b->interrupt_enable = 1;
1106 } else {
Borislav Petkovd26ecc42012-04-16 18:20:36 +02001107 threshold_ktype.default_attrs[2] = NULL;
Aravind Gopalakrishnand79f9312015-02-02 11:02:41 -06001108 }
Borislav Petkovd26ecc42012-04-16 18:20:36 +02001109
Jacob Shin95268662006-06-26 13:58:53 +02001110 INIT_LIST_HEAD(&b->miscj);
1111
Thomas Gleixnercca9cc02020-03-12 20:05:43 +01001112 /* This is safe as @tb is not visible yet */
Borislav Petkov6e5cf312020-02-04 13:28:41 +01001113 if (tb->blocks)
1114 list_add(&b->miscj, &tb->blocks->miscj);
1115 else
1116 tb->blocks = b;
Jacob Shin95268662006-06-26 13:58:53 +02001117
Yazen Ghannam91f75eb2021-12-16 16:29:05 +00001118 err = kobject_init_and_add(&b->kobj, &threshold_ktype, tb->kobj, get_name(cpu, bank, b));
Jacob Shin95268662006-06-26 13:58:53 +02001119 if (err)
1120 goto out_free;
1121recurse:
Yazen Ghannam95d057f2019-06-07 20:18:04 +00001122 address = get_block_address(address, low, high, bank, ++block, cpu);
Aravind Gopalakrishnan8dd1e172016-03-07 14:02:19 +01001123 if (!address)
1124 return 0;
Jacob Shin95268662006-06-26 13:58:53 +02001125
Borislav Petkov6e5cf312020-02-04 13:28:41 +01001126 err = allocate_threshold_blocks(cpu, tb, bank, block, address);
Jacob Shin95268662006-06-26 13:58:53 +02001127 if (err)
1128 goto out_free;
1129
Greg KH213eca7f2008-01-30 13:29:58 +01001130 if (b)
1131 kobject_uevent(&b->kobj, KOBJ_ADD);
Greg Kroah-Hartman542eb752007-12-19 09:23:20 -08001132
Thomas Gleixnerada018b2020-02-14 18:32:43 +01001133 return 0;
Jacob Shin95268662006-06-26 13:58:53 +02001134
1135out_free:
1136 if (b) {
Julia Lawalld9a5ac92011-05-13 15:52:09 +02001137 list_del(&b->miscj);
Thomas Gleixnerada018b2020-02-14 18:32:43 +01001138 kobject_put(&b->kobj);
Jacob Shin95268662006-06-26 13:58:53 +02001139 }
1140 return err;
1141}
1142
Paul Gortmaker148f9bb2013-06-18 18:23:59 -04001143static int __threshold_add_blocks(struct threshold_bank *b)
Borislav Petkov019f34f2012-05-02 17:16:59 +02001144{
1145 struct list_head *head = &b->blocks->miscj;
1146 struct threshold_block *pos = NULL;
1147 struct threshold_block *tmp = NULL;
1148 int err = 0;
1149
1150 err = kobject_add(&b->blocks->kobj, b->kobj, b->blocks->kobj.name);
1151 if (err)
1152 return err;
1153
1154 list_for_each_entry_safe(pos, tmp, head, miscj) {
1155
1156 err = kobject_add(&pos->kobj, b->kobj, pos->kobj.name);
1157 if (err) {
1158 list_for_each_entry_safe_reverse(pos, tmp, head, miscj)
1159 kobject_del(&pos->kobj);
1160
1161 return err;
1162 }
1163 }
1164 return err;
1165}
1166
Thomas Gleixner6458de92020-03-30 20:30:45 +02001167static int threshold_create_bank(struct threshold_bank **bp, unsigned int cpu,
1168 unsigned int bank)
Jacob Shin95268662006-06-26 13:58:53 +02001169{
Thomas Gleixner6458de92020-03-30 20:30:45 +02001170 struct device *dev = this_cpu_read(mce_device);
Borislav Petkov019f34f2012-05-02 17:16:59 +02001171 struct amd_northbridge *nb = NULL;
Borislav Petkov92e26e22012-05-02 16:20:49 +02001172 struct threshold_bank *b = NULL;
Yazen Ghannam91f75eb2021-12-16 16:29:05 +00001173 const char *name = get_name(cpu, bank, NULL);
Borislav Petkov92e26e22012-05-02 16:20:49 +02001174 int err = 0;
Jacob Shin95268662006-06-26 13:58:53 +02001175
Thomas Gleixner0dad3a32016-12-26 22:58:20 +01001176 if (!dev)
1177 return -ENODEV;
1178
Boris Ostrovskyc76e8162013-03-14 17:10:40 -04001179 if (is_shared_bank(bank)) {
Yazen Ghannamdb970bd22020-11-09 21:06:57 +00001180 nb = node_to_amd_nb(topology_die_id(cpu));
Borislav Petkov019f34f2012-05-02 17:16:59 +02001181
1182 /* threshold descriptor already initialized on this node? */
Daniel J Blueman21c5e502012-10-01 14:42:05 +08001183 if (nb && nb->bank4) {
Borislav Petkov019f34f2012-05-02 17:16:59 +02001184 /* yes, use it */
1185 b = nb->bank4;
1186 err = kobject_add(b->kobj, &dev->kobj, name);
1187 if (err)
1188 goto out;
1189
Thomas Gleixner6458de92020-03-30 20:30:45 +02001190 bp[bank] = b;
Elena Reshetova473e90b2017-05-19 11:39:13 +02001191 refcount_inc(&b->cpus);
Borislav Petkov019f34f2012-05-02 17:16:59 +02001192
1193 err = __threshold_add_blocks(b);
1194
1195 goto out;
1196 }
1197 }
1198
Jacob Shin95268662006-06-26 13:58:53 +02001199 b = kzalloc(sizeof(struct threshold_bank), GFP_KERNEL);
Jacob Shin89b831e2005-11-05 17:25:53 +01001200 if (!b) {
1201 err = -ENOMEM;
1202 goto out;
1203 }
Jacob Shin89b831e2005-11-05 17:25:53 +01001204
Thomas Gleixnerada018b2020-02-14 18:32:43 +01001205 /* Associate the bank with the per-CPU MCE device */
Greg Kroah-Hartmane032d8072012-01-16 14:40:28 -08001206 b->kobj = kobject_create_and_add(name, &dev->kobj);
Borislav Petkov92e26e22012-05-02 16:20:49 +02001207 if (!b->kobj) {
1208 err = -EINVAL;
Greg Kroah-Hartmana521cf22007-12-19 09:23:20 -08001209 goto out_free;
Borislav Petkov92e26e22012-05-02 16:20:49 +02001210 }
Jacob Shin95268662006-06-26 13:58:53 +02001211
Boris Ostrovskyc76e8162013-03-14 17:10:40 -04001212 if (is_shared_bank(bank)) {
Thomas Gleixnerf26d2582020-03-31 10:53:18 +02001213 b->shared = 1;
Elena Reshetova473e90b2017-05-19 11:39:13 +02001214 refcount_set(&b->cpus, 1);
Borislav Petkov019f34f2012-05-02 17:16:59 +02001215
1216 /* nb is already initialized, see above */
Daniel J Blueman21c5e502012-10-01 14:42:05 +08001217 if (nb) {
1218 WARN_ON(nb->bank4);
1219 nb->bank4 = b;
1220 }
Borislav Petkov019f34f2012-05-02 17:16:59 +02001221 }
1222
Borislav Petkov8121b8f2021-09-02 13:33:22 +02001223 err = allocate_threshold_blocks(cpu, b, bank, 0, mca_msr_reg(bank, MCA_MISC));
Borislav Petkov6e5cf312020-02-04 13:28:41 +01001224 if (err)
Thomas Gleixnerada018b2020-02-14 18:32:43 +01001225 goto out_kobj;
Borislav Petkov6e5cf312020-02-04 13:28:41 +01001226
Thomas Gleixner6458de92020-03-30 20:30:45 +02001227 bp[bank] = b;
Borislav Petkov6e5cf312020-02-04 13:28:41 +01001228 return 0;
Jacob Shin95268662006-06-26 13:58:53 +02001229
Thomas Gleixnerada018b2020-02-14 18:32:43 +01001230out_kobj:
1231 kobject_put(b->kobj);
1232out_free:
Jacob Shin95268662006-06-26 13:58:53 +02001233 kfree(b);
Thomas Gleixnerada018b2020-02-14 18:32:43 +01001234out:
Jacob Shin89b831e2005-11-05 17:25:53 +01001235 return err;
1236}
1237
Thomas Gleixner51dede92020-02-13 19:01:34 +01001238static void threshold_block_release(struct kobject *kobj)
1239{
1240 kfree(to_block(kobj));
1241}
1242
Thomas Gleixnerf26d2582020-03-31 10:53:18 +02001243static void deallocate_threshold_blocks(struct threshold_bank *bank)
Jacob Shin95268662006-06-26 13:58:53 +02001244{
Thomas Gleixnerf26d2582020-03-31 10:53:18 +02001245 struct threshold_block *pos, *tmp;
Jacob Shin95268662006-06-26 13:58:53 +02001246
Thomas Gleixnerf26d2582020-03-31 10:53:18 +02001247 list_for_each_entry_safe(pos, tmp, &bank->blocks->miscj, miscj) {
Jacob Shin95268662006-06-26 13:58:53 +02001248 list_del(&pos->miscj);
Thomas Gleixner51dede92020-02-13 19:01:34 +01001249 kobject_put(&pos->kobj);
Jacob Shin95268662006-06-26 13:58:53 +02001250 }
1251
Thomas Gleixnerf26d2582020-03-31 10:53:18 +02001252 kobject_put(&bank->blocks->kobj);
Jacob Shin95268662006-06-26 13:58:53 +02001253}
1254
Borislav Petkov019f34f2012-05-02 17:16:59 +02001255static void __threshold_remove_blocks(struct threshold_bank *b)
1256{
1257 struct threshold_block *pos = NULL;
1258 struct threshold_block *tmp = NULL;
1259
1260 kobject_del(b->kobj);
1261
1262 list_for_each_entry_safe(pos, tmp, &b->blocks->miscj, miscj)
1263 kobject_del(&pos->kobj);
1264}
1265
Thomas Gleixnerf26d2582020-03-31 10:53:18 +02001266static void threshold_remove_bank(struct threshold_bank *bank)
Jacob Shin89b831e2005-11-05 17:25:53 +01001267{
Borislav Petkov019f34f2012-05-02 17:16:59 +02001268 struct amd_northbridge *nb;
Jacob Shin89b831e2005-11-05 17:25:53 +01001269
Thomas Gleixnerf26d2582020-03-31 10:53:18 +02001270 if (!bank->blocks)
1271 goto out_free;
1272
1273 if (!bank->shared)
1274 goto out_dealloc;
1275
1276 if (!refcount_dec_and_test(&bank->cpus)) {
1277 __threshold_remove_blocks(bank);
Jacob Shin89b831e2005-11-05 17:25:53 +01001278 return;
Thomas Gleixnerf26d2582020-03-31 10:53:18 +02001279 } else {
1280 /*
1281 * The last CPU on this node using the shared bank is going
1282 * away, remove that bank now.
1283 */
Yazen Ghannamdb970bd22020-11-09 21:06:57 +00001284 nb = node_to_amd_nb(topology_die_id(smp_processor_id()));
Thomas Gleixnerf26d2582020-03-31 10:53:18 +02001285 nb->bank4 = NULL;
Borislav Petkov019f34f2012-05-02 17:16:59 +02001286 }
1287
Thomas Gleixnerf26d2582020-03-31 10:53:18 +02001288out_dealloc:
1289 deallocate_threshold_blocks(bank);
Jacob Shin95268662006-06-26 13:58:53 +02001290
Thomas Gleixnerf26d2582020-03-31 10:53:18 +02001291out_free:
1292 kobject_put(bank->kobj);
1293 kfree(bank);
Jacob Shin89b831e2005-11-05 17:25:53 +01001294}
1295
Sebastian Andrzej Siewior4d7b02d2016-11-10 18:44:44 +01001296int mce_threshold_remove_device(unsigned int cpu)
Jacob Shin89b831e2005-11-05 17:25:53 +01001297{
Thomas Gleixnerc9bf3182020-02-12 00:34:01 +01001298 struct threshold_bank **bp = this_cpu_read(threshold_banks);
Thomas Gleixnerf26d2582020-03-31 10:53:18 +02001299 unsigned int bank, numbanks = this_cpu_read(mce_num_banks);
Jacob Shin89b831e2005-11-05 17:25:53 +01001300
Thomas Gleixnerc9bf3182020-02-12 00:34:01 +01001301 if (!bp)
1302 return 0;
1303
Thomas Gleixnerf26d2582020-03-31 10:53:18 +02001304 /*
1305 * Clear the pointer before cleaning up, so that the interrupt won't
1306 * touch anything of this.
1307 */
Thomas Gleixnerc9bf3182020-02-12 00:34:01 +01001308 this_cpu_write(threshold_banks, NULL);
Thomas Gleixnerf26d2582020-03-31 10:53:18 +02001309
1310 for (bank = 0; bank < numbanks; bank++) {
1311 if (bp[bank]) {
1312 threshold_remove_bank(bp[bank]);
1313 bp[bank] = NULL;
1314 }
1315 }
Thomas Gleixnerc9bf3182020-02-12 00:34:01 +01001316 kfree(bp);
Sebastian Andrzej Siewior4d7b02d2016-11-10 18:44:44 +01001317 return 0;
Jacob Shin89b831e2005-11-05 17:25:53 +01001318}
1319
Thomas Gleixner6e7a41c2020-03-30 16:21:54 +02001320/**
1321 * mce_threshold_create_device - Create the per-CPU MCE threshold device
1322 * @cpu: The plugged in CPU
1323 *
1324 * Create directories and files for all valid threshold banks.
1325 *
1326 * This is invoked from the CPU hotplug callback which was installed in
1327 * mcheck_init_device(). The invocation happens in context of the hotplug
1328 * thread running on @cpu. The callback is invoked on all CPUs which are
1329 * online when the callback is installed or during a real hotplug event.
1330 */
Sebastian Andrzej Siewior4d7b02d2016-11-10 18:44:44 +01001331int mce_threshold_create_device(unsigned int cpu)
Jacob Shin89b831e2005-11-05 17:25:53 +01001332{
Thomas Gleixner6458de92020-03-30 20:30:45 +02001333 unsigned int numbanks, bank;
Sebastian Andrzej Siewior09436372016-11-10 18:44:41 +01001334 struct threshold_bank **bp;
Thomas Gleixner6e7a41c2020-03-30 16:21:54 +02001335 int err;
Sebastian Andrzej Siewior09436372016-11-10 18:44:41 +01001336
Thomas Gleixnerc9bf3182020-02-12 00:34:01 +01001337 if (!mce_flags.amd_threshold)
1338 return 0;
1339
Thomas Gleixner6458de92020-03-30 20:30:45 +02001340 bp = this_cpu_read(threshold_banks);
Sebastian Andrzej Siewior7f34b932016-11-10 18:44:43 +01001341 if (bp)
1342 return 0;
1343
Thomas Gleixner6458de92020-03-30 20:30:45 +02001344 numbanks = this_cpu_read(mce_num_banks);
1345 bp = kcalloc(numbanks, sizeof(*bp), GFP_KERNEL);
Sebastian Andrzej Siewior09436372016-11-10 18:44:41 +01001346 if (!bp)
1347 return -ENOMEM;
1348
Thomas Gleixner6458de92020-03-30 20:30:45 +02001349 for (bank = 0; bank < numbanks; ++bank) {
1350 if (!(this_cpu_read(bank_map) & (1 << bank)))
Sebastian Andrzej Siewior09436372016-11-10 18:44:41 +01001351 continue;
Thomas Gleixner6458de92020-03-30 20:30:45 +02001352 err = threshold_create_bank(bp, cpu, bank);
Sebastian Andrzej Siewior09436372016-11-10 18:44:41 +01001353 if (err)
Thomas Gleixner6e7a41c2020-03-30 16:21:54 +02001354 goto out_err;
Jacob Shin89b831e2005-11-05 17:25:53 +01001355 }
Thomas Gleixner6458de92020-03-30 20:30:45 +02001356 this_cpu_write(threshold_banks, bp);
Ingo Molnar1cb2a8e2009-04-08 12:31:18 +02001357
Borislav Petkov60c81442018-11-27 14:41:37 +01001358 if (thresholding_irq_en)
1359 mce_threshold_vector = amd_threshold_interrupt;
Jacob Shinfff2e892006-06-26 13:58:50 +02001360 return 0;
Thomas Gleixner6e7a41c2020-03-30 16:21:54 +02001361out_err:
1362 mce_threshold_remove_device(cpu);
1363 return err;
Jacob Shin89b831e2005-11-05 17:25:53 +01001364}