1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * (c) 2005-2016 Advanced Micro Devices, Inc.
4 *
5 * Written by Jacob Shin - AMD, Inc.
6 * Maintained by: Borislav Petkov <bp@alien8.de>
7 *
8 * All MC4_MISCi registers are shared between cores on a node.
9 */
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>
22
23 #include <asm/amd_nb.h>
24 #include <asm/traps.h>
25 #include <asm/apic.h>
26 #include <asm/mce.h>
27 #include <asm/msr.h>
28 #include <asm/trace/irq_vectors.h>
29
30 #include "internal.h"
31
32 #define NR_BLOCKS 5
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
45
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
52
53 /* Scalable MCA: */
54
55 /* Threshold LVT offset is at MSR0xC0000410[15:12] */
56 #define SMCA_THR_LVT_OFF 0xF000
57
58 static bool thresholding_irq_en;
59
60 static const char * const th_names[] = {
61 "load_store",
62 "insn_fetch",
63 "combined_unit",
64 "decode_unit",
65 "northbridge",
66 "execution_unit",
67 };
68
69 static const char * const smca_umc_block_names[] = {
70 "dram_ecc",
71 "misc_umc"
72 };
73
74 #define HWID_MCATYPE(hwid, mcatype) (((hwid) << 16) | (mcatype))
75
76 struct smca_hwid {
77 unsigned int bank_type; /* Use with smca_bank_types for easy indexing. */
78 u32 hwid_mcatype; /* (hwid,mcatype) tuple */
79 };
80
81 struct 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
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);
89
90 static const char * const smca_names[] = {
91 [SMCA_LS ... SMCA_LS_V2] = "load_store",
92 [SMCA_IF] = "insn_fetch",
93 [SMCA_L2_CACHE] = "l2_cache",
94 [SMCA_DE] = "decode_unit",
95 [SMCA_RESERVED] = "reserved",
96 [SMCA_EX] = "execution_unit",
97 [SMCA_FP] = "floating_point",
98 [SMCA_L3_CACHE] = "l3_cache",
99 [SMCA_CS ... SMCA_CS_V2] = "coherent_slave",
100 [SMCA_PIE] = "pie",
101
102 /* UMC v2 is separate because both of them can exist in a single system. */
103 [SMCA_UMC] = "umc",
104 [SMCA_UMC_V2] = "umc_v2",
105 [SMCA_MA_LLC] = "ma_llc",
106 [SMCA_PB] = "param_block",
107 [SMCA_PSP ... SMCA_PSP_V2] = "psp",
108 [SMCA_SMU ... SMCA_SMU_V2] = "smu",
109 [SMCA_MP5] = "mp5",
110 [SMCA_MPDMA] = "mpdma",
111 [SMCA_NBIO] = "nbio",
112 [SMCA_PCIE ... SMCA_PCIE_V2] = "pcie",
113 [SMCA_XGMI_PCS] = "xgmi_pcs",
114 [SMCA_NBIF] = "nbif",
115 [SMCA_SHUB] = "shub",
116 [SMCA_SATA] = "sata",
117 [SMCA_USB] = "usb",
118 [SMCA_USR_DP] = "usr_dp",
119 [SMCA_USR_CP] = "usr_cp",
120 [SMCA_GMI_PCS] = "gmi_pcs",
121 [SMCA_XGMI_PHY] = "xgmi_phy",
122 [SMCA_WAFL_PHY] = "wafl_phy",
123 [SMCA_GMI_PHY] = "gmi_phy",
124 };
125
smca_get_name(enum smca_bank_types t)126 static const char *smca_get_name(enum smca_bank_types t)
127 {
128 if (t >= N_SMCA_BANK_TYPES)
129 return NULL;
130
131 return smca_names[t];
132 }
133
smca_get_bank_type(unsigned int cpu,unsigned int bank)134 enum smca_bank_types smca_get_bank_type(unsigned int cpu, unsigned int bank)
135 {
136 struct smca_bank *b;
137
138 if (bank >= MAX_NR_BANKS)
139 return N_SMCA_BANK_TYPES;
140
141 b = &per_cpu(smca_banks, cpu)[bank];
142 if (!b->hwid)
143 return N_SMCA_BANK_TYPES;
144
145 return b->hwid->bank_type;
146 }
147 EXPORT_SYMBOL_GPL(smca_get_bank_type);
148
149 static const struct smca_hwid smca_hwid_mcatypes[] = {
150 /* { bank_type, hwid_mcatype } */
151
152 /* Reserved type */
153 { SMCA_RESERVED, HWID_MCATYPE(0x00, 0x0) },
154
155 /* ZN Core (HWID=0xB0) MCA types */
156 { SMCA_LS, HWID_MCATYPE(0xB0, 0x0) },
157 { SMCA_LS_V2, HWID_MCATYPE(0xB0, 0x10) },
158 { SMCA_IF, HWID_MCATYPE(0xB0, 0x1) },
159 { SMCA_L2_CACHE, HWID_MCATYPE(0xB0, 0x2) },
160 { SMCA_DE, HWID_MCATYPE(0xB0, 0x3) },
161 /* HWID 0xB0 MCATYPE 0x4 is Reserved */
162 { SMCA_EX, HWID_MCATYPE(0xB0, 0x5) },
163 { SMCA_FP, HWID_MCATYPE(0xB0, 0x6) },
164 { SMCA_L3_CACHE, HWID_MCATYPE(0xB0, 0x7) },
165
166 /* Data Fabric MCA types */
167 { SMCA_CS, HWID_MCATYPE(0x2E, 0x0) },
168 { SMCA_PIE, HWID_MCATYPE(0x2E, 0x1) },
169 { SMCA_CS_V2, HWID_MCATYPE(0x2E, 0x2) },
170 { SMCA_MA_LLC, HWID_MCATYPE(0x2E, 0x4) },
171
172 /* Unified Memory Controller MCA type */
173 { SMCA_UMC, HWID_MCATYPE(0x96, 0x0) },
174 { SMCA_UMC_V2, HWID_MCATYPE(0x96, 0x1) },
175
176 /* Parameter Block MCA type */
177 { SMCA_PB, HWID_MCATYPE(0x05, 0x0) },
178
179 /* Platform Security Processor MCA type */
180 { SMCA_PSP, HWID_MCATYPE(0xFF, 0x0) },
181 { SMCA_PSP_V2, HWID_MCATYPE(0xFF, 0x1) },
182
183 /* System Management Unit MCA type */
184 { SMCA_SMU, HWID_MCATYPE(0x01, 0x0) },
185 { SMCA_SMU_V2, HWID_MCATYPE(0x01, 0x1) },
186
187 /* Microprocessor 5 Unit MCA type */
188 { SMCA_MP5, HWID_MCATYPE(0x01, 0x2) },
189
190 /* MPDMA MCA type */
191 { SMCA_MPDMA, HWID_MCATYPE(0x01, 0x3) },
192
193 /* Northbridge IO Unit MCA type */
194 { SMCA_NBIO, HWID_MCATYPE(0x18, 0x0) },
195
196 /* PCI Express Unit MCA type */
197 { SMCA_PCIE, HWID_MCATYPE(0x46, 0x0) },
198 { SMCA_PCIE_V2, HWID_MCATYPE(0x46, 0x1) },
199
200 { SMCA_XGMI_PCS, HWID_MCATYPE(0x50, 0x0) },
201 { SMCA_NBIF, HWID_MCATYPE(0x6C, 0x0) },
202 { SMCA_SHUB, HWID_MCATYPE(0x80, 0x0) },
203 { SMCA_SATA, HWID_MCATYPE(0xA8, 0x0) },
204 { SMCA_USB, HWID_MCATYPE(0xAA, 0x0) },
205 { SMCA_USR_DP, HWID_MCATYPE(0x170, 0x0) },
206 { SMCA_USR_CP, HWID_MCATYPE(0x180, 0x0) },
207 { SMCA_GMI_PCS, HWID_MCATYPE(0x241, 0x0) },
208 { SMCA_XGMI_PHY, HWID_MCATYPE(0x259, 0x0) },
209 { SMCA_WAFL_PHY, HWID_MCATYPE(0x267, 0x0) },
210 { SMCA_GMI_PHY, HWID_MCATYPE(0x269, 0x0) },
211 };
212
213 /*
214 * In SMCA enabled processors, we can have multiple banks for a given IP type.
215 * So to define a unique name for each bank, we use a temp c-string to append
216 * the MCA_IPID[InstanceId] to type's name in get_name().
217 *
218 * InstanceId is 32 bits which is 8 characters. Make sure MAX_MCATYPE_NAME_LEN
219 * is greater than 8 plus 1 (for underscore) plus length of longest type name.
220 */
221 #define MAX_MCATYPE_NAME_LEN 30
222 static char buf_mcatype[MAX_MCATYPE_NAME_LEN];
223
224 static DEFINE_PER_CPU(struct threshold_bank **, threshold_banks);
225
226 /*
227 * A list of the banks enabled on each logical CPU. Controls which respective
228 * descriptors to initialize later in mce_threshold_create_device().
229 */
230 static DEFINE_PER_CPU(u64, bank_map);
231
232 /* Map of banks that have more than MCA_MISC0 available. */
233 static DEFINE_PER_CPU(u64, smca_misc_banks_map);
234
235 static void amd_threshold_interrupt(void);
236 static void amd_deferred_error_interrupt(void);
237
default_deferred_error_interrupt(void)238 static void default_deferred_error_interrupt(void)
239 {
240 pr_err("Unexpected deferred interrupt at vector %x\n", DEFERRED_ERROR_VECTOR);
241 }
242 void (*deferred_error_int_vector)(void) = default_deferred_error_interrupt;
243
smca_set_misc_banks_map(unsigned int bank,unsigned int cpu)244 static void smca_set_misc_banks_map(unsigned int bank, unsigned int cpu)
245 {
246 u32 low, high;
247
248 /*
249 * For SMCA enabled processors, BLKPTR field of the first MISC register
250 * (MCx_MISC0) indicates presence of additional MISC regs set (MISC1-4).
251 */
252 if (rdmsr_safe(MSR_AMD64_SMCA_MCx_CONFIG(bank), &low, &high))
253 return;
254
255 if (!(low & MCI_CONFIG_MCAX))
256 return;
257
258 if (rdmsr_safe(MSR_AMD64_SMCA_MCx_MISC(bank), &low, &high))
259 return;
260
261 if (low & MASK_BLKPTR_LO)
262 per_cpu(smca_misc_banks_map, cpu) |= BIT_ULL(bank);
263
264 }
265
smca_configure(unsigned int bank,unsigned int cpu)266 static void smca_configure(unsigned int bank, unsigned int cpu)
267 {
268 u8 *bank_counts = this_cpu_ptr(smca_bank_counts);
269 const struct smca_hwid *s_hwid;
270 unsigned int i, hwid_mcatype;
271 u32 high, low;
272 u32 smca_config = MSR_AMD64_SMCA_MCx_CONFIG(bank);
273
274 /* Set appropriate bits in MCA_CONFIG */
275 if (!rdmsr_safe(smca_config, &low, &high)) {
276 /*
277 * OS is required to set the MCAX bit to acknowledge that it is
278 * now using the new MSR ranges and new registers under each
279 * bank. It also means that the OS will configure deferred
280 * errors in the new MCx_CONFIG register. If the bit is not set,
281 * uncorrectable errors will cause a system panic.
282 *
283 * MCA_CONFIG[MCAX] is bit 32 (0 in the high portion of the MSR.)
284 */
285 high |= BIT(0);
286
287 /*
288 * SMCA sets the Deferred Error Interrupt type per bank.
289 *
290 * MCA_CONFIG[DeferredIntTypeSupported] is bit 5, and tells us
291 * if the DeferredIntType bit field is available.
292 *
293 * MCA_CONFIG[DeferredIntType] is bits [38:37] ([6:5] in the
294 * high portion of the MSR). OS should set this to 0x1 to enable
295 * APIC based interrupt. First, check that no interrupt has been
296 * set.
297 */
298 if ((low & BIT(5)) && !((high >> 5) & 0x3))
299 high |= BIT(5);
300
301 this_cpu_ptr(mce_banks_array)[bank].lsb_in_status = !!(low & BIT(8));
302
303 wrmsr(smca_config, low, high);
304 }
305
306 smca_set_misc_banks_map(bank, cpu);
307
308 if (rdmsr_safe(MSR_AMD64_SMCA_MCx_IPID(bank), &low, &high)) {
309 pr_warn("Failed to read MCA_IPID for bank %d\n", bank);
310 return;
311 }
312
313 hwid_mcatype = HWID_MCATYPE(high & MCI_IPID_HWID,
314 (high & MCI_IPID_MCATYPE) >> 16);
315
316 for (i = 0; i < ARRAY_SIZE(smca_hwid_mcatypes); i++) {
317 s_hwid = &smca_hwid_mcatypes[i];
318
319 if (hwid_mcatype == s_hwid->hwid_mcatype) {
320 this_cpu_ptr(smca_banks)[bank].hwid = s_hwid;
321 this_cpu_ptr(smca_banks)[bank].id = low;
322 this_cpu_ptr(smca_banks)[bank].sysfs_id = bank_counts[s_hwid->bank_type]++;
323 break;
324 }
325 }
326 }
327
328 struct thresh_restart {
329 struct threshold_block *b;
330 int set_lvt_off;
331 int lvt_off;
332 u16 old_limit;
333 };
334
is_shared_bank(int bank)335 static inline bool is_shared_bank(int bank)
336 {
337 /*
338 * Scalable MCA provides for only one core to have access to the MSRs of
339 * a shared bank.
340 */
341 if (mce_flags.smca)
342 return false;
343
344 /* Bank 4 is for northbridge reporting and is thus shared */
345 return (bank == 4);
346 }
347
bank4_names(const struct threshold_block * b)348 static const char *bank4_names(const struct threshold_block *b)
349 {
350 switch (b->address) {
351 /* MSR4_MISC0 */
352 case 0x00000413:
353 return "dram";
354
355 case 0xc0000408:
356 return "ht_links";
357
358 case 0xc0000409:
359 return "l3_cache";
360
361 default:
362 WARN(1, "Funny MSR: 0x%08x\n", b->address);
363 return "";
364 }
365 };
366
367
lvt_interrupt_supported(unsigned int bank,u32 msr_high_bits)368 static bool lvt_interrupt_supported(unsigned int bank, u32 msr_high_bits)
369 {
370 /*
371 * bank 4 supports APIC LVT interrupts implicitly since forever.
372 */
373 if (bank == 4)
374 return true;
375
376 /*
377 * IntP: interrupt present; if this bit is set, the thresholding
378 * bank can generate APIC LVT interrupts
379 */
380 return msr_high_bits & BIT(28);
381 }
382
lvt_off_valid(struct threshold_block * b,int apic,u32 lo,u32 hi)383 static int lvt_off_valid(struct threshold_block *b, int apic, u32 lo, u32 hi)
384 {
385 int msr = (hi & MASK_LVTOFF_HI) >> 20;
386
387 if (apic < 0) {
388 pr_err(FW_BUG "cpu %d, failed to setup threshold interrupt "
389 "for bank %d, block %d (MSR%08X=0x%x%08x)\n", b->cpu,
390 b->bank, b->block, b->address, hi, lo);
391 return 0;
392 }
393
394 if (apic != msr) {
395 /*
396 * On SMCA CPUs, LVT offset is programmed at a different MSR, and
397 * the BIOS provides the value. The original field where LVT offset
398 * was set is reserved. Return early here:
399 */
400 if (mce_flags.smca)
401 return 0;
402
403 pr_err(FW_BUG "cpu %d, invalid threshold interrupt offset %d "
404 "for bank %d, block %d (MSR%08X=0x%x%08x)\n",
405 b->cpu, apic, b->bank, b->block, b->address, hi, lo);
406 return 0;
407 }
408
409 return 1;
410 };
411
412 /* Reprogram MCx_MISC MSR behind this threshold bank. */
threshold_restart_bank(void * _tr)413 static void threshold_restart_bank(void *_tr)
414 {
415 struct thresh_restart *tr = _tr;
416 u32 hi, lo;
417
418 /* sysfs write might race against an offline operation */
419 if (!this_cpu_read(threshold_banks) && !tr->set_lvt_off)
420 return;
421
422 rdmsr(tr->b->address, lo, hi);
423
424 /*
425 * Reset error count and overflow bit.
426 * This is done during init or after handling an interrupt.
427 */
428 if (hi & MASK_OVERFLOW_HI || tr->set_lvt_off) {
429 hi &= ~(MASK_ERR_COUNT_HI | MASK_OVERFLOW_HI);
430 hi |= THRESHOLD_MAX - tr->b->threshold_limit;
431 } else if (tr->old_limit) { /* change limit w/o reset */
432 int new_count = (hi & THRESHOLD_MAX) +
433 (tr->old_limit - tr->b->threshold_limit);
434
435 hi = (hi & ~MASK_ERR_COUNT_HI) |
436 (new_count & THRESHOLD_MAX);
437 }
438
439 /* clear IntType */
440 hi &= ~MASK_INT_TYPE_HI;
441
442 if (!tr->b->interrupt_capable)
443 goto done;
444
445 if (tr->set_lvt_off) {
446 if (lvt_off_valid(tr->b, tr->lvt_off, lo, hi)) {
447 /* set new lvt offset */
448 hi &= ~MASK_LVTOFF_HI;
449 hi |= tr->lvt_off << 20;
450 }
451 }
452
453 if (tr->b->interrupt_enable)
454 hi |= INT_TYPE_APIC;
455
456 done:
457
458 hi |= MASK_COUNT_EN_HI;
459 wrmsr(tr->b->address, lo, hi);
460 }
461
mce_threshold_block_init(struct threshold_block * b,int offset)462 static void mce_threshold_block_init(struct threshold_block *b, int offset)
463 {
464 struct thresh_restart tr = {
465 .b = b,
466 .set_lvt_off = 1,
467 .lvt_off = offset,
468 };
469
470 b->threshold_limit = THRESHOLD_MAX;
471 threshold_restart_bank(&tr);
472 };
473
setup_APIC_mce_threshold(int reserved,int new)474 static int setup_APIC_mce_threshold(int reserved, int new)
475 {
476 if (reserved < 0 && !setup_APIC_eilvt(new, THRESHOLD_APIC_VECTOR,
477 APIC_EILVT_MSG_FIX, 0))
478 return new;
479
480 return reserved;
481 }
482
setup_APIC_deferred_error(int reserved,int new)483 static int setup_APIC_deferred_error(int reserved, int new)
484 {
485 if (reserved < 0 && !setup_APIC_eilvt(new, DEFERRED_ERROR_VECTOR,
486 APIC_EILVT_MSG_FIX, 0))
487 return new;
488
489 return reserved;
490 }
491
deferred_error_interrupt_enable(struct cpuinfo_x86 * c)492 static void deferred_error_interrupt_enable(struct cpuinfo_x86 *c)
493 {
494 u32 low = 0, high = 0;
495 int def_offset = -1, def_new;
496
497 if (rdmsr_safe(MSR_CU_DEF_ERR, &low, &high))
498 return;
499
500 def_new = (low & MASK_DEF_LVTOFF) >> 4;
501 if (!(low & MASK_DEF_LVTOFF)) {
502 pr_err(FW_BUG "Your BIOS is not setting up LVT offset 0x2 for deferred error IRQs correctly.\n");
503 def_new = DEF_LVT_OFF;
504 low = (low & ~MASK_DEF_LVTOFF) | (DEF_LVT_OFF << 4);
505 }
506
507 def_offset = setup_APIC_deferred_error(def_offset, def_new);
508 if ((def_offset == def_new) &&
509 (deferred_error_int_vector != amd_deferred_error_interrupt))
510 deferred_error_int_vector = amd_deferred_error_interrupt;
511
512 if (!mce_flags.smca)
513 low = (low & ~MASK_DEF_INT_TYPE) | DEF_INT_TYPE_APIC;
514
515 wrmsr(MSR_CU_DEF_ERR, low, high);
516 }
517
smca_get_block_address(unsigned int bank,unsigned int block,unsigned int cpu)518 static u32 smca_get_block_address(unsigned int bank, unsigned int block,
519 unsigned int cpu)
520 {
521 if (!block)
522 return MSR_AMD64_SMCA_MCx_MISC(bank);
523
524 if (!(per_cpu(smca_misc_banks_map, cpu) & BIT_ULL(bank)))
525 return 0;
526
527 return MSR_AMD64_SMCA_MCx_MISCy(bank, block - 1);
528 }
529
get_block_address(u32 current_addr,u32 low,u32 high,unsigned int bank,unsigned int block,unsigned int cpu)530 static u32 get_block_address(u32 current_addr, u32 low, u32 high,
531 unsigned int bank, unsigned int block,
532 unsigned int cpu)
533 {
534 u32 addr = 0, offset = 0;
535
536 if ((bank >= per_cpu(mce_num_banks, cpu)) || (block >= NR_BLOCKS))
537 return addr;
538
539 if (mce_flags.smca)
540 return smca_get_block_address(bank, block, cpu);
541
542 /* Fall back to method we used for older processors: */
543 switch (block) {
544 case 0:
545 addr = mca_msr_reg(bank, MCA_MISC);
546 break;
547 case 1:
548 offset = ((low & MASK_BLKPTR_LO) >> 21);
549 if (offset)
550 addr = MCG_XBLK_ADDR + offset;
551 break;
552 default:
553 addr = ++current_addr;
554 }
555 return addr;
556 }
557
558 static int
prepare_threshold_block(unsigned int bank,unsigned int block,u32 addr,int offset,u32 misc_high)559 prepare_threshold_block(unsigned int bank, unsigned int block, u32 addr,
560 int offset, u32 misc_high)
561 {
562 unsigned int cpu = smp_processor_id();
563 u32 smca_low, smca_high;
564 struct threshold_block b;
565 int new;
566
567 if (!block)
568 per_cpu(bank_map, cpu) |= BIT_ULL(bank);
569
570 memset(&b, 0, sizeof(b));
571 b.cpu = cpu;
572 b.bank = bank;
573 b.block = block;
574 b.address = addr;
575 b.interrupt_capable = lvt_interrupt_supported(bank, misc_high);
576
577 if (!b.interrupt_capable)
578 goto done;
579
580 b.interrupt_enable = 1;
581
582 if (!mce_flags.smca) {
583 new = (misc_high & MASK_LVTOFF_HI) >> 20;
584 goto set_offset;
585 }
586
587 /* Gather LVT offset for thresholding: */
588 if (rdmsr_safe(MSR_CU_DEF_ERR, &smca_low, &smca_high))
589 goto out;
590
591 new = (smca_low & SMCA_THR_LVT_OFF) >> 12;
592
593 set_offset:
594 offset = setup_APIC_mce_threshold(offset, new);
595 if (offset == new)
596 thresholding_irq_en = true;
597
598 done:
599 mce_threshold_block_init(&b, offset);
600
601 out:
602 return offset;
603 }
604
amd_filter_mce(struct mce * m)605 bool amd_filter_mce(struct mce *m)
606 {
607 enum smca_bank_types bank_type = smca_get_bank_type(m->extcpu, m->bank);
608 struct cpuinfo_x86 *c = &boot_cpu_data;
609
610 /* See Family 17h Models 10h-2Fh Erratum #1114. */
611 if (c->x86 == 0x17 &&
612 c->x86_model >= 0x10 && c->x86_model <= 0x2F &&
613 bank_type == SMCA_IF && XEC(m->status, 0x3f) == 10)
614 return true;
615
616 /* NB GART TLB error reporting is disabled by default. */
617 if (c->x86 < 0x17) {
618 if (m->bank == 4 && XEC(m->status, 0x1f) == 0x5)
619 return true;
620 }
621
622 return false;
623 }
624
625 /*
626 * Turn off thresholding banks for the following conditions:
627 * - MC4_MISC thresholding is not supported on Family 0x15.
628 * - Prevent possible spurious interrupts from the IF bank on Family 0x17
629 * Models 0x10-0x2F due to Erratum #1114.
630 */
disable_err_thresholding(struct cpuinfo_x86 * c,unsigned int bank)631 static void disable_err_thresholding(struct cpuinfo_x86 *c, unsigned int bank)
632 {
633 int i, num_msrs;
634 u64 hwcr;
635 bool need_toggle;
636 u32 msrs[NR_BLOCKS];
637
638 if (c->x86 == 0x15 && bank == 4) {
639 msrs[0] = 0x00000413; /* MC4_MISC0 */
640 msrs[1] = 0xc0000408; /* MC4_MISC1 */
641 num_msrs = 2;
642 } else if (c->x86 == 0x17 &&
643 (c->x86_model >= 0x10 && c->x86_model <= 0x2F)) {
644
645 if (smca_get_bank_type(smp_processor_id(), bank) != SMCA_IF)
646 return;
647
648 msrs[0] = MSR_AMD64_SMCA_MCx_MISC(bank);
649 num_msrs = 1;
650 } else {
651 return;
652 }
653
654 rdmsrl(MSR_K7_HWCR, hwcr);
655
656 /* McStatusWrEn has to be set */
657 need_toggle = !(hwcr & BIT(18));
658 if (need_toggle)
659 wrmsrl(MSR_K7_HWCR, hwcr | BIT(18));
660
661 /* Clear CntP bit safely */
662 for (i = 0; i < num_msrs; i++)
663 msr_clear_bit(msrs[i], 62);
664
665 /* restore old settings */
666 if (need_toggle)
667 wrmsrl(MSR_K7_HWCR, hwcr);
668 }
669
670 /* cpu init entry point, called from mce.c with preempt off */
mce_amd_feature_init(struct cpuinfo_x86 * c)671 void mce_amd_feature_init(struct cpuinfo_x86 *c)
672 {
673 unsigned int bank, block, cpu = smp_processor_id();
674 u32 low = 0, high = 0, address = 0;
675 int offset = -1;
676
677
678 for (bank = 0; bank < this_cpu_read(mce_num_banks); ++bank) {
679 if (mce_flags.smca)
680 smca_configure(bank, cpu);
681
682 disable_err_thresholding(c, bank);
683
684 for (block = 0; block < NR_BLOCKS; ++block) {
685 address = get_block_address(address, low, high, bank, block, cpu);
686 if (!address)
687 break;
688
689 if (rdmsr_safe(address, &low, &high))
690 break;
691
692 if (!(high & MASK_VALID_HI))
693 continue;
694
695 if (!(high & MASK_CNTP_HI) ||
696 (high & MASK_LOCKED_HI))
697 continue;
698
699 offset = prepare_threshold_block(bank, block, address, offset, high);
700 }
701 }
702
703 if (mce_flags.succor)
704 deferred_error_interrupt_enable(c);
705 }
706
707 /*
708 * DRAM ECC errors are reported in the Northbridge (bank 4) with
709 * Extended Error Code 8.
710 */
legacy_mce_is_memory_error(struct mce * m)711 static bool legacy_mce_is_memory_error(struct mce *m)
712 {
713 return m->bank == 4 && XEC(m->status, 0x1f) == 8;
714 }
715
716 /*
717 * DRAM ECC errors are reported in Unified Memory Controllers with
718 * Extended Error Code 0.
719 */
smca_mce_is_memory_error(struct mce * m)720 static bool smca_mce_is_memory_error(struct mce *m)
721 {
722 enum smca_bank_types bank_type;
723
724 if (XEC(m->status, 0x3f))
725 return false;
726
727 bank_type = smca_get_bank_type(m->extcpu, m->bank);
728
729 return bank_type == SMCA_UMC || bank_type == SMCA_UMC_V2;
730 }
731
amd_mce_is_memory_error(struct mce * m)732 bool amd_mce_is_memory_error(struct mce *m)
733 {
734 if (mce_flags.smca)
735 return smca_mce_is_memory_error(m);
736 else
737 return legacy_mce_is_memory_error(m);
738 }
739
740 /*
741 * AMD systems do not have an explicit indicator that the value in MCA_ADDR is
742 * a system physical address. Therefore, individual cases need to be detected.
743 * Future cases and checks will be added as needed.
744 *
745 * 1) General case
746 * a) Assume address is not usable.
747 * 2) Poison errors
748 * a) Indicated by MCA_STATUS[43]: poison. Defined for all banks except legacy
749 * northbridge (bank 4).
750 * b) Refers to poison consumption in the core. Does not include "no action",
751 * "action optional", or "deferred" error severities.
752 * c) Will include a usable address so that immediate action can be taken.
753 * 3) Northbridge DRAM ECC errors
754 * a) Reported in legacy bank 4 with extended error code (XEC) 8.
755 * b) MCA_STATUS[43] is *not* defined as poison in legacy bank 4. Therefore,
756 * this bit should not be checked.
757 *
758 * NOTE: SMCA UMC memory errors fall into case #1.
759 */
amd_mce_usable_address(struct mce * m)760 bool amd_mce_usable_address(struct mce *m)
761 {
762 /* Check special northbridge case 3) first. */
763 if (!mce_flags.smca) {
764 if (legacy_mce_is_memory_error(m))
765 return true;
766 else if (m->bank == 4)
767 return false;
768 }
769
770 /* Check poison bit for all other bank types. */
771 if (m->status & MCI_STATUS_POISON)
772 return true;
773
774 /* Assume address is not usable for all others. */
775 return false;
776 }
777
__log_error(unsigned int bank,u64 status,u64 addr,u64 misc)778 static void __log_error(unsigned int bank, u64 status, u64 addr, u64 misc)
779 {
780 struct mce m;
781
782 mce_prep_record(&m);
783
784 m.status = status;
785 m.misc = misc;
786 m.bank = bank;
787 m.tsc = rdtsc();
788
789 if (m.status & MCI_STATUS_ADDRV) {
790 m.addr = addr;
791
792 smca_extract_err_addr(&m);
793 }
794
795 if (mce_flags.smca) {
796 rdmsrl(MSR_AMD64_SMCA_MCx_IPID(bank), m.ipid);
797
798 if (m.status & MCI_STATUS_SYNDV)
799 rdmsrl(MSR_AMD64_SMCA_MCx_SYND(bank), m.synd);
800 }
801
802 mce_log(&m);
803 }
804
DEFINE_IDTENTRY_SYSVEC(sysvec_deferred_error)805 DEFINE_IDTENTRY_SYSVEC(sysvec_deferred_error)
806 {
807 trace_deferred_error_apic_entry(DEFERRED_ERROR_VECTOR);
808 inc_irq_stat(irq_deferred_error_count);
809 deferred_error_int_vector();
810 trace_deferred_error_apic_exit(DEFERRED_ERROR_VECTOR);
811 apic_eoi();
812 }
813
814 /*
815 * Returns true if the logged error is deferred. False, otherwise.
816 */
817 static inline bool
_log_error_bank(unsigned int bank,u32 msr_stat,u32 msr_addr,u64 misc)818 _log_error_bank(unsigned int bank, u32 msr_stat, u32 msr_addr, u64 misc)
819 {
820 u64 status, addr = 0;
821
822 rdmsrl(msr_stat, status);
823 if (!(status & MCI_STATUS_VAL))
824 return false;
825
826 if (status & MCI_STATUS_ADDRV)
827 rdmsrl(msr_addr, addr);
828
829 __log_error(bank, status, addr, misc);
830
831 wrmsrl(msr_stat, 0);
832
833 return status & MCI_STATUS_DEFERRED;
834 }
835
_log_error_deferred(unsigned int bank,u32 misc)836 static bool _log_error_deferred(unsigned int bank, u32 misc)
837 {
838 if (!_log_error_bank(bank, mca_msr_reg(bank, MCA_STATUS),
839 mca_msr_reg(bank, MCA_ADDR), misc))
840 return false;
841
842 /*
843 * Non-SMCA systems don't have MCA_DESTAT/MCA_DEADDR registers.
844 * Return true here to avoid accessing these registers.
845 */
846 if (!mce_flags.smca)
847 return true;
848
849 /* Clear MCA_DESTAT if the deferred error was logged from MCA_STATUS. */
850 wrmsrl(MSR_AMD64_SMCA_MCx_DESTAT(bank), 0);
851 return true;
852 }
853
854 /*
855 * We have three scenarios for checking for Deferred errors:
856 *
857 * 1) Non-SMCA systems check MCA_STATUS and log error if found.
858 * 2) SMCA systems check MCA_STATUS. If error is found then log it and also
859 * clear MCA_DESTAT.
860 * 3) SMCA systems check MCA_DESTAT, if error was not found in MCA_STATUS, and
861 * log it.
862 */
log_error_deferred(unsigned int bank)863 static void log_error_deferred(unsigned int bank)
864 {
865 if (_log_error_deferred(bank, 0))
866 return;
867
868 /*
869 * Only deferred errors are logged in MCA_DE{STAT,ADDR} so just check
870 * for a valid error.
871 */
872 _log_error_bank(bank, MSR_AMD64_SMCA_MCx_DESTAT(bank),
873 MSR_AMD64_SMCA_MCx_DEADDR(bank), 0);
874 }
875
876 /* APIC interrupt handler for deferred errors */
amd_deferred_error_interrupt(void)877 static void amd_deferred_error_interrupt(void)
878 {
879 unsigned int bank;
880
881 for (bank = 0; bank < this_cpu_read(mce_num_banks); ++bank)
882 log_error_deferred(bank);
883 }
884
log_error_thresholding(unsigned int bank,u64 misc)885 static void log_error_thresholding(unsigned int bank, u64 misc)
886 {
887 _log_error_deferred(bank, misc);
888 }
889
log_and_reset_block(struct threshold_block * block)890 static void log_and_reset_block(struct threshold_block *block)
891 {
892 struct thresh_restart tr;
893 u32 low = 0, high = 0;
894
895 if (!block)
896 return;
897
898 if (rdmsr_safe(block->address, &low, &high))
899 return;
900
901 if (!(high & MASK_OVERFLOW_HI))
902 return;
903
904 /* Log the MCE which caused the threshold event. */
905 log_error_thresholding(block->bank, ((u64)high << 32) | low);
906
907 /* Reset threshold block after logging error. */
908 memset(&tr, 0, sizeof(tr));
909 tr.b = block;
910 threshold_restart_bank(&tr);
911 }
912
913 /*
914 * Threshold interrupt handler will service THRESHOLD_APIC_VECTOR. The interrupt
915 * goes off when error_count reaches threshold_limit.
916 */
amd_threshold_interrupt(void)917 static void amd_threshold_interrupt(void)
918 {
919 struct threshold_block *first_block = NULL, *block = NULL, *tmp = NULL;
920 struct threshold_bank **bp = this_cpu_read(threshold_banks);
921 unsigned int bank, cpu = smp_processor_id();
922
923 /*
924 * Validate that the threshold bank has been initialized already. The
925 * handler is installed at boot time, but on a hotplug event the
926 * interrupt might fire before the data has been initialized.
927 */
928 if (!bp)
929 return;
930
931 for (bank = 0; bank < this_cpu_read(mce_num_banks); ++bank) {
932 if (!(per_cpu(bank_map, cpu) & BIT_ULL(bank)))
933 continue;
934
935 first_block = bp[bank]->blocks;
936 if (!first_block)
937 continue;
938
939 /*
940 * The first block is also the head of the list. Check it first
941 * before iterating over the rest.
942 */
943 log_and_reset_block(first_block);
944 list_for_each_entry_safe(block, tmp, &first_block->miscj, miscj)
945 log_and_reset_block(block);
946 }
947 }
948
949 /*
950 * Sysfs Interface
951 */
952
953 struct threshold_attr {
954 struct attribute attr;
955 ssize_t (*show) (struct threshold_block *, char *);
956 ssize_t (*store) (struct threshold_block *, const char *, size_t count);
957 };
958
959 #define SHOW_FIELDS(name) \
960 static ssize_t show_ ## name(struct threshold_block *b, char *buf) \
961 { \
962 return sprintf(buf, "%lu\n", (unsigned long) b->name); \
963 }
964 SHOW_FIELDS(interrupt_enable)
SHOW_FIELDS(threshold_limit)965 SHOW_FIELDS(threshold_limit)
966
967 static ssize_t
968 store_interrupt_enable(struct threshold_block *b, const char *buf, size_t size)
969 {
970 struct thresh_restart tr;
971 unsigned long new;
972
973 if (!b->interrupt_capable)
974 return -EINVAL;
975
976 if (kstrtoul(buf, 0, &new) < 0)
977 return -EINVAL;
978
979 b->interrupt_enable = !!new;
980
981 memset(&tr, 0, sizeof(tr));
982 tr.b = b;
983
984 if (smp_call_function_single(b->cpu, threshold_restart_bank, &tr, 1))
985 return -ENODEV;
986
987 return size;
988 }
989
990 static ssize_t
store_threshold_limit(struct threshold_block * b,const char * buf,size_t size)991 store_threshold_limit(struct threshold_block *b, const char *buf, size_t size)
992 {
993 struct thresh_restart tr;
994 unsigned long new;
995
996 if (kstrtoul(buf, 0, &new) < 0)
997 return -EINVAL;
998
999 if (new > THRESHOLD_MAX)
1000 new = THRESHOLD_MAX;
1001 if (new < 1)
1002 new = 1;
1003
1004 memset(&tr, 0, sizeof(tr));
1005 tr.old_limit = b->threshold_limit;
1006 b->threshold_limit = new;
1007 tr.b = b;
1008
1009 if (smp_call_function_single(b->cpu, threshold_restart_bank, &tr, 1))
1010 return -ENODEV;
1011
1012 return size;
1013 }
1014
show_error_count(struct threshold_block * b,char * buf)1015 static ssize_t show_error_count(struct threshold_block *b, char *buf)
1016 {
1017 u32 lo, hi;
1018
1019 /* CPU might be offline by now */
1020 if (rdmsr_on_cpu(b->cpu, b->address, &lo, &hi))
1021 return -ENODEV;
1022
1023 return sprintf(buf, "%u\n", ((hi & THRESHOLD_MAX) -
1024 (THRESHOLD_MAX - b->threshold_limit)));
1025 }
1026
1027 static struct threshold_attr error_count = {
1028 .attr = {.name = __stringify(error_count), .mode = 0444 },
1029 .show = show_error_count,
1030 };
1031
1032 #define RW_ATTR(val) \
1033 static struct threshold_attr val = { \
1034 .attr = {.name = __stringify(val), .mode = 0644 }, \
1035 .show = show_## val, \
1036 .store = store_## val, \
1037 };
1038
1039 RW_ATTR(interrupt_enable);
1040 RW_ATTR(threshold_limit);
1041
1042 static struct attribute *default_attrs[] = {
1043 &threshold_limit.attr,
1044 &error_count.attr,
1045 NULL, /* possibly interrupt_enable if supported, see below */
1046 NULL,
1047 };
1048 ATTRIBUTE_GROUPS(default);
1049
1050 #define to_block(k) container_of(k, struct threshold_block, kobj)
1051 #define to_attr(a) container_of(a, struct threshold_attr, attr)
1052
show(struct kobject * kobj,struct attribute * attr,char * buf)1053 static ssize_t show(struct kobject *kobj, struct attribute *attr, char *buf)
1054 {
1055 struct threshold_block *b = to_block(kobj);
1056 struct threshold_attr *a = to_attr(attr);
1057 ssize_t ret;
1058
1059 ret = a->show ? a->show(b, buf) : -EIO;
1060
1061 return ret;
1062 }
1063
store(struct kobject * kobj,struct attribute * attr,const char * buf,size_t count)1064 static ssize_t store(struct kobject *kobj, struct attribute *attr,
1065 const char *buf, size_t count)
1066 {
1067 struct threshold_block *b = to_block(kobj);
1068 struct threshold_attr *a = to_attr(attr);
1069 ssize_t ret;
1070
1071 ret = a->store ? a->store(b, buf, count) : -EIO;
1072
1073 return ret;
1074 }
1075
1076 static const struct sysfs_ops threshold_ops = {
1077 .show = show,
1078 .store = store,
1079 };
1080
1081 static void threshold_block_release(struct kobject *kobj);
1082
1083 static const struct kobj_type threshold_ktype = {
1084 .sysfs_ops = &threshold_ops,
1085 .default_groups = default_groups,
1086 .release = threshold_block_release,
1087 };
1088
get_name(unsigned int cpu,unsigned int bank,struct threshold_block * b)1089 static const char *get_name(unsigned int cpu, unsigned int bank, struct threshold_block *b)
1090 {
1091 enum smca_bank_types bank_type;
1092
1093 if (!mce_flags.smca) {
1094 if (b && bank == 4)
1095 return bank4_names(b);
1096
1097 return th_names[bank];
1098 }
1099
1100 bank_type = smca_get_bank_type(cpu, bank);
1101
1102 if (b && (bank_type == SMCA_UMC || bank_type == SMCA_UMC_V2)) {
1103 if (b->block < ARRAY_SIZE(smca_umc_block_names))
1104 return smca_umc_block_names[b->block];
1105 }
1106
1107 if (b && b->block) {
1108 snprintf(buf_mcatype, MAX_MCATYPE_NAME_LEN, "th_block_%u", b->block);
1109 return buf_mcatype;
1110 }
1111
1112 if (bank_type >= N_SMCA_BANK_TYPES) {
1113 snprintf(buf_mcatype, MAX_MCATYPE_NAME_LEN, "th_bank_%u", bank);
1114 return buf_mcatype;
1115 }
1116
1117 if (per_cpu(smca_bank_counts, cpu)[bank_type] == 1)
1118 return smca_get_name(bank_type);
1119
1120 snprintf(buf_mcatype, MAX_MCATYPE_NAME_LEN,
1121 "%s_%u", smca_get_name(bank_type),
1122 per_cpu(smca_banks, cpu)[bank].sysfs_id);
1123 return buf_mcatype;
1124 }
1125
allocate_threshold_blocks(unsigned int cpu,struct threshold_bank * tb,unsigned int bank,unsigned int block,u32 address)1126 static int allocate_threshold_blocks(unsigned int cpu, struct threshold_bank *tb,
1127 unsigned int bank, unsigned int block,
1128 u32 address)
1129 {
1130 struct threshold_block *b = NULL;
1131 u32 low, high;
1132 int err;
1133
1134 if ((bank >= this_cpu_read(mce_num_banks)) || (block >= NR_BLOCKS))
1135 return 0;
1136
1137 if (rdmsr_safe(address, &low, &high))
1138 return 0;
1139
1140 if (!(high & MASK_VALID_HI)) {
1141 if (block)
1142 goto recurse;
1143 else
1144 return 0;
1145 }
1146
1147 if (!(high & MASK_CNTP_HI) ||
1148 (high & MASK_LOCKED_HI))
1149 goto recurse;
1150
1151 b = kzalloc(sizeof(struct threshold_block), GFP_KERNEL);
1152 if (!b)
1153 return -ENOMEM;
1154
1155 b->block = block;
1156 b->bank = bank;
1157 b->cpu = cpu;
1158 b->address = address;
1159 b->interrupt_enable = 0;
1160 b->interrupt_capable = lvt_interrupt_supported(bank, high);
1161 b->threshold_limit = THRESHOLD_MAX;
1162
1163 if (b->interrupt_capable) {
1164 default_attrs[2] = &interrupt_enable.attr;
1165 b->interrupt_enable = 1;
1166 } else {
1167 default_attrs[2] = NULL;
1168 }
1169
1170 INIT_LIST_HEAD(&b->miscj);
1171
1172 /* This is safe as @tb is not visible yet */
1173 if (tb->blocks)
1174 list_add(&b->miscj, &tb->blocks->miscj);
1175 else
1176 tb->blocks = b;
1177
1178 err = kobject_init_and_add(&b->kobj, &threshold_ktype, tb->kobj, get_name(cpu, bank, b));
1179 if (err)
1180 goto out_free;
1181 recurse:
1182 address = get_block_address(address, low, high, bank, ++block, cpu);
1183 if (!address)
1184 return 0;
1185
1186 err = allocate_threshold_blocks(cpu, tb, bank, block, address);
1187 if (err)
1188 goto out_free;
1189
1190 if (b)
1191 kobject_uevent(&b->kobj, KOBJ_ADD);
1192
1193 return 0;
1194
1195 out_free:
1196 if (b) {
1197 list_del(&b->miscj);
1198 kobject_put(&b->kobj);
1199 }
1200 return err;
1201 }
1202
__threshold_add_blocks(struct threshold_bank * b)1203 static int __threshold_add_blocks(struct threshold_bank *b)
1204 {
1205 struct list_head *head = &b->blocks->miscj;
1206 struct threshold_block *pos = NULL;
1207 struct threshold_block *tmp = NULL;
1208 int err = 0;
1209
1210 err = kobject_add(&b->blocks->kobj, b->kobj, b->blocks->kobj.name);
1211 if (err)
1212 return err;
1213
1214 list_for_each_entry_safe(pos, tmp, head, miscj) {
1215
1216 err = kobject_add(&pos->kobj, b->kobj, pos->kobj.name);
1217 if (err) {
1218 list_for_each_entry_safe_reverse(pos, tmp, head, miscj)
1219 kobject_del(&pos->kobj);
1220
1221 return err;
1222 }
1223 }
1224 return err;
1225 }
1226
threshold_create_bank(struct threshold_bank ** bp,unsigned int cpu,unsigned int bank)1227 static int threshold_create_bank(struct threshold_bank **bp, unsigned int cpu,
1228 unsigned int bank)
1229 {
1230 struct device *dev = this_cpu_read(mce_device);
1231 struct amd_northbridge *nb = NULL;
1232 struct threshold_bank *b = NULL;
1233 const char *name = get_name(cpu, bank, NULL);
1234 int err = 0;
1235
1236 if (!dev)
1237 return -ENODEV;
1238
1239 if (is_shared_bank(bank)) {
1240 nb = node_to_amd_nb(topology_amd_node_id(cpu));
1241
1242 /* threshold descriptor already initialized on this node? */
1243 if (nb && nb->bank4) {
1244 /* yes, use it */
1245 b = nb->bank4;
1246 err = kobject_add(b->kobj, &dev->kobj, name);
1247 if (err)
1248 goto out;
1249
1250 bp[bank] = b;
1251 refcount_inc(&b->cpus);
1252
1253 err = __threshold_add_blocks(b);
1254
1255 goto out;
1256 }
1257 }
1258
1259 b = kzalloc(sizeof(struct threshold_bank), GFP_KERNEL);
1260 if (!b) {
1261 err = -ENOMEM;
1262 goto out;
1263 }
1264
1265 /* Associate the bank with the per-CPU MCE device */
1266 b->kobj = kobject_create_and_add(name, &dev->kobj);
1267 if (!b->kobj) {
1268 err = -EINVAL;
1269 goto out_free;
1270 }
1271
1272 if (is_shared_bank(bank)) {
1273 b->shared = 1;
1274 refcount_set(&b->cpus, 1);
1275
1276 /* nb is already initialized, see above */
1277 if (nb) {
1278 WARN_ON(nb->bank4);
1279 nb->bank4 = b;
1280 }
1281 }
1282
1283 err = allocate_threshold_blocks(cpu, b, bank, 0, mca_msr_reg(bank, MCA_MISC));
1284 if (err)
1285 goto out_kobj;
1286
1287 bp[bank] = b;
1288 return 0;
1289
1290 out_kobj:
1291 kobject_put(b->kobj);
1292 out_free:
1293 kfree(b);
1294 out:
1295 return err;
1296 }
1297
threshold_block_release(struct kobject * kobj)1298 static void threshold_block_release(struct kobject *kobj)
1299 {
1300 kfree(to_block(kobj));
1301 }
1302
deallocate_threshold_blocks(struct threshold_bank * bank)1303 static void deallocate_threshold_blocks(struct threshold_bank *bank)
1304 {
1305 struct threshold_block *pos, *tmp;
1306
1307 list_for_each_entry_safe(pos, tmp, &bank->blocks->miscj, miscj) {
1308 list_del(&pos->miscj);
1309 kobject_put(&pos->kobj);
1310 }
1311
1312 kobject_put(&bank->blocks->kobj);
1313 }
1314
__threshold_remove_blocks(struct threshold_bank * b)1315 static void __threshold_remove_blocks(struct threshold_bank *b)
1316 {
1317 struct threshold_block *pos = NULL;
1318 struct threshold_block *tmp = NULL;
1319
1320 kobject_put(b->kobj);
1321
1322 list_for_each_entry_safe(pos, tmp, &b->blocks->miscj, miscj)
1323 kobject_put(b->kobj);
1324 }
1325
threshold_remove_bank(struct threshold_bank * bank)1326 static void threshold_remove_bank(struct threshold_bank *bank)
1327 {
1328 struct amd_northbridge *nb;
1329
1330 if (!bank->blocks)
1331 goto out_free;
1332
1333 if (!bank->shared)
1334 goto out_dealloc;
1335
1336 if (!refcount_dec_and_test(&bank->cpus)) {
1337 __threshold_remove_blocks(bank);
1338 return;
1339 } else {
1340 /*
1341 * The last CPU on this node using the shared bank is going
1342 * away, remove that bank now.
1343 */
1344 nb = node_to_amd_nb(topology_amd_node_id(smp_processor_id()));
1345 nb->bank4 = NULL;
1346 }
1347
1348 out_dealloc:
1349 deallocate_threshold_blocks(bank);
1350
1351 out_free:
1352 kobject_put(bank->kobj);
1353 kfree(bank);
1354 }
1355
__threshold_remove_device(struct threshold_bank ** bp)1356 static void __threshold_remove_device(struct threshold_bank **bp)
1357 {
1358 unsigned int bank, numbanks = this_cpu_read(mce_num_banks);
1359
1360 for (bank = 0; bank < numbanks; bank++) {
1361 if (!bp[bank])
1362 continue;
1363
1364 threshold_remove_bank(bp[bank]);
1365 bp[bank] = NULL;
1366 }
1367 kfree(bp);
1368 }
1369
mce_threshold_remove_device(unsigned int cpu)1370 int mce_threshold_remove_device(unsigned int cpu)
1371 {
1372 struct threshold_bank **bp = this_cpu_read(threshold_banks);
1373
1374 if (!bp)
1375 return 0;
1376
1377 /*
1378 * Clear the pointer before cleaning up, so that the interrupt won't
1379 * touch anything of this.
1380 */
1381 this_cpu_write(threshold_banks, NULL);
1382
1383 __threshold_remove_device(bp);
1384 return 0;
1385 }
1386
1387 /**
1388 * mce_threshold_create_device - Create the per-CPU MCE threshold device
1389 * @cpu: The plugged in CPU
1390 *
1391 * Create directories and files for all valid threshold banks.
1392 *
1393 * This is invoked from the CPU hotplug callback which was installed in
1394 * mcheck_init_device(). The invocation happens in context of the hotplug
1395 * thread running on @cpu. The callback is invoked on all CPUs which are
1396 * online when the callback is installed or during a real hotplug event.
1397 */
mce_threshold_create_device(unsigned int cpu)1398 int mce_threshold_create_device(unsigned int cpu)
1399 {
1400 unsigned int numbanks, bank;
1401 struct threshold_bank **bp;
1402 int err;
1403
1404 if (!mce_flags.amd_threshold)
1405 return 0;
1406
1407 bp = this_cpu_read(threshold_banks);
1408 if (bp)
1409 return 0;
1410
1411 numbanks = this_cpu_read(mce_num_banks);
1412 bp = kcalloc(numbanks, sizeof(*bp), GFP_KERNEL);
1413 if (!bp)
1414 return -ENOMEM;
1415
1416 for (bank = 0; bank < numbanks; ++bank) {
1417 if (!(this_cpu_read(bank_map) & BIT_ULL(bank)))
1418 continue;
1419 err = threshold_create_bank(bp, cpu, bank);
1420 if (err) {
1421 __threshold_remove_device(bp);
1422 return err;
1423 }
1424 }
1425 this_cpu_write(threshold_banks, bp);
1426
1427 if (thresholding_irq_en)
1428 mce_threshold_vector = amd_threshold_interrupt;
1429 return 0;
1430 }
1431