]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - arch/x86/kernel/cpu/mcheck/mce_amd.c
x86/mcheck: Move threshold_create_device()
[mirror_ubuntu-jammy-kernel.git] / arch / x86 / kernel / cpu / mcheck / mce_amd.c
CommitLineData
89b831ef 1/*
ea2ca36b 2 * (c) 2005-2016 Advanced Micro Devices, Inc.
89b831ef
JS
3 * Your use of this code is subject to the terms and conditions of the
4 * GNU general public license version 2. See "COPYING" or
5 * http://www.gnu.org/licenses/gpl.html
6 *
7 * Written by Jacob Shin - AMD, Inc.
e6d41e8c 8 * Maintained by: Borislav Petkov <bp@alien8.de>
89b831ef 9 *
3490c0e4 10 * All MC4_MISCi registers are shared between cores on a node.
89b831ef 11 */
89b831ef 12#include <linux/interrupt.h>
89b831ef 13#include <linux/notifier.h>
1cb2a8e1 14#include <linux/kobject.h>
34fa1967 15#include <linux/percpu.h>
1cb2a8e1
IM
16#include <linux/errno.h>
17#include <linux/sched.h>
89b831ef 18#include <linux/sysfs.h>
5a0e3ad6 19#include <linux/slab.h>
1cb2a8e1
IM
20#include <linux/init.h>
21#include <linux/cpu.h>
22#include <linux/smp.h>
87a6d409 23#include <linux/string.h>
1cb2a8e1 24
019f34fc 25#include <asm/amd_nb.h>
89b831ef 26#include <asm/apic.h>
1cb2a8e1 27#include <asm/idle.h>
89b831ef
JS
28#include <asm/mce.h>
29#include <asm/msr.h>
24fd78a8 30#include <asm/trace/irq_vectors.h>
89b831ef 31
60f116fc 32#define NR_BLOCKS 5
2903ee85
JS
33#define THRESHOLD_MAX 0xFFF
34#define INT_TYPE_APIC 0x00020000
35#define MASK_VALID_HI 0x80000000
24ce0e96
JB
36#define MASK_CNTP_HI 0x40000000
37#define MASK_LOCKED_HI 0x20000000
2903ee85
JS
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
89b831ef 42#define MASK_ERR_COUNT_HI 0x00000FFF
95268664
JS
43#define MASK_BLKPTR_LO 0xFF000000
44#define MCG_XBLK_ADDR 0xC0000400
89b831ef 45
24fd78a8
AG
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
f57a1f3c
AG
53/* Scalable MCA: */
54
55/* Threshold LVT offset is at MSR0xC0000410[15:12] */
56#define SMCA_THR_LVT_OFF 0xF000
57
336d335a
BP
58static const char * const th_names[] = {
59 "load_store",
60 "insn_fetch",
61 "combined_unit",
62 "",
63 "northbridge",
64 "execution_unit",
65};
66
87a6d409
YG
67static const char * const smca_umc_block_names[] = {
68 "dram_ecc",
69 "misc_umc"
70};
71
5896820e
YG
72struct smca_bank_name smca_bank_names[] = {
73 [SMCA_LS] = { "load_store", "Load Store Unit" },
74 [SMCA_IF] = { "insn_fetch", "Instruction Fetch Unit" },
75 [SMCA_L2_CACHE] = { "l2_cache", "L2 Cache" },
76 [SMCA_DE] = { "decode_unit", "Decode Unit" },
77 [SMCA_EX] = { "execution_unit", "Execution Unit" },
78 [SMCA_FP] = { "floating_point", "Floating Point Unit" },
79 [SMCA_L3_CACHE] = { "l3_cache", "L3 Cache" },
80 [SMCA_CS] = { "coherent_slave", "Coherent Slave" },
81 [SMCA_PIE] = { "pie", "Power, Interrupts, etc." },
82 [SMCA_UMC] = { "umc", "Unified Memory Controller" },
83 [SMCA_PB] = { "param_block", "Parameter Block" },
84 [SMCA_PSP] = { "psp", "Platform Security Processor" },
85 [SMCA_SMU] = { "smu", "System Management Unit" },
be0aec23 86};
5896820e
YG
87EXPORT_SYMBOL_GPL(smca_bank_names);
88
89static struct smca_hwid_mcatype smca_hwid_mcatypes[] = {
90 /* { bank_type, hwid_mcatype, xec_bitmap } */
91
92 /* ZN Core (HWID=0xB0) MCA types */
93 { SMCA_LS, HWID_MCATYPE(0xB0, 0x0), 0x1FFFEF },
94 { SMCA_IF, HWID_MCATYPE(0xB0, 0x1), 0x3FFF },
95 { SMCA_L2_CACHE, HWID_MCATYPE(0xB0, 0x2), 0xF },
96 { SMCA_DE, HWID_MCATYPE(0xB0, 0x3), 0x1FF },
97 /* HWID 0xB0 MCATYPE 0x4 is Reserved */
98 { SMCA_EX, HWID_MCATYPE(0xB0, 0x5), 0x7FF },
99 { SMCA_FP, HWID_MCATYPE(0xB0, 0x6), 0x7F },
100 { SMCA_L3_CACHE, HWID_MCATYPE(0xB0, 0x7), 0xFF },
101
102 /* Data Fabric MCA types */
103 { SMCA_CS, HWID_MCATYPE(0x2E, 0x0), 0x1FF },
104 { SMCA_PIE, HWID_MCATYPE(0x2E, 0x1), 0xF },
105
106 /* Unified Memory Controller MCA type */
107 { SMCA_UMC, HWID_MCATYPE(0x96, 0x0), 0x3F },
108
109 /* Parameter Block MCA type */
110 { SMCA_PB, HWID_MCATYPE(0x05, 0x0), 0x1 },
be0aec23 111
5896820e
YG
112 /* Platform Security Processor MCA type */
113 { SMCA_PSP, HWID_MCATYPE(0xFF, 0x0), 0x1 },
114
115 /* System Management Unit MCA type */
116 { SMCA_SMU, HWID_MCATYPE(0x01, 0x0), 0x1 },
be0aec23 117};
5896820e
YG
118
119struct smca_bank_info smca_banks[MAX_NR_BANKS];
120EXPORT_SYMBOL_GPL(smca_banks);
be0aec23 121
87a6d409
YG
122/*
123 * In SMCA enabled processors, we can have multiple banks for a given IP type.
124 * So to define a unique name for each bank, we use a temp c-string to append
125 * the MCA_IPID[InstanceId] to type's name in get_name().
126 *
127 * InstanceId is 32 bits which is 8 characters. Make sure MAX_MCATYPE_NAME_LEN
128 * is greater than 8 plus 1 (for underscore) plus length of longest type name.
129 */
130#define MAX_MCATYPE_NAME_LEN 30
131static char buf_mcatype[MAX_MCATYPE_NAME_LEN];
132
bafcdd3b 133static DEFINE_PER_CPU(struct threshold_bank **, threshold_banks);
955d1427 134static DEFINE_PER_CPU(unsigned int, bank_map); /* see which banks are on */
89b831ef 135
b2762686 136static void amd_threshold_interrupt(void);
24fd78a8
AG
137static void amd_deferred_error_interrupt(void);
138
139static void default_deferred_error_interrupt(void)
140{
141 pr_err("Unexpected deferred interrupt at vector %x\n", DEFERRED_ERROR_VECTOR);
142}
143void (*deferred_error_int_vector)(void) = default_deferred_error_interrupt;
b2762686 144
89b831ef
JS
145/*
146 * CPU Initialization
147 */
148
5896820e
YG
149static void get_smca_bank_info(unsigned int bank)
150{
151 unsigned int i, hwid_mcatype, cpu = smp_processor_id();
152 struct smca_hwid_mcatype *type;
153 u32 high, instanceId;
154 u16 hwid, mcatype;
155
156 /* Collect bank_info using CPU 0 for now. */
157 if (cpu)
158 return;
159
160 if (rdmsr_safe_on_cpu(cpu, MSR_AMD64_SMCA_MCx_IPID(bank), &instanceId, &high)) {
161 pr_warn("Failed to read MCA_IPID for bank %d\n", bank);
162 return;
163 }
164
165 hwid = high & MCI_IPID_HWID;
166 mcatype = (high & MCI_IPID_MCATYPE) >> 16;
167 hwid_mcatype = HWID_MCATYPE(hwid, mcatype);
168
169 for (i = 0; i < ARRAY_SIZE(smca_hwid_mcatypes); i++) {
170 type = &smca_hwid_mcatypes[i];
171 if (hwid_mcatype == type->hwid_mcatype) {
172 smca_banks[bank].type = type;
173 smca_banks[bank].type_instance = instanceId;
174 break;
175 }
176 }
177}
178
4cd4601d 179struct thresh_restart {
1cb2a8e1
IM
180 struct threshold_block *b;
181 int reset;
9c37c9d8
RR
182 int set_lvt_off;
183 int lvt_off;
1cb2a8e1 184 u16 old_limit;
4cd4601d
MT
185};
186
c76e8164
BO
187static inline bool is_shared_bank(int bank)
188{
284b965c
AG
189 /*
190 * Scalable MCA provides for only one core to have access to the MSRs of
191 * a shared bank.
192 */
193 if (mce_flags.smca)
194 return false;
195
c76e8164
BO
196 /* Bank 4 is for northbridge reporting and is thus shared */
197 return (bank == 4);
198}
199
2cd4c303 200static const char *bank4_names(const struct threshold_block *b)
336d335a
BP
201{
202 switch (b->address) {
203 /* MSR4_MISC0 */
204 case 0x00000413:
205 return "dram";
206
207 case 0xc0000408:
208 return "ht_links";
209
210 case 0xc0000409:
211 return "l3_cache";
212
213 default:
214 WARN(1, "Funny MSR: 0x%08x\n", b->address);
215 return "";
216 }
217};
218
219
f227d430
BP
220static bool lvt_interrupt_supported(unsigned int bank, u32 msr_high_bits)
221{
222 /*
223 * bank 4 supports APIC LVT interrupts implicitly since forever.
224 */
225 if (bank == 4)
226 return true;
227
228 /*
229 * IntP: interrupt present; if this bit is set, the thresholding
230 * bank can generate APIC LVT interrupts
231 */
232 return msr_high_bits & BIT(28);
233}
234
bbaff08d
RR
235static int lvt_off_valid(struct threshold_block *b, int apic, u32 lo, u32 hi)
236{
237 int msr = (hi & MASK_LVTOFF_HI) >> 20;
238
239 if (apic < 0) {
240 pr_err(FW_BUG "cpu %d, failed to setup threshold interrupt "
241 "for bank %d, block %d (MSR%08X=0x%x%08x)\n", b->cpu,
242 b->bank, b->block, b->address, hi, lo);
243 return 0;
244 }
245
246 if (apic != msr) {
f57a1f3c
AG
247 /*
248 * On SMCA CPUs, LVT offset is programmed at a different MSR, and
249 * the BIOS provides the value. The original field where LVT offset
250 * was set is reserved. Return early here:
251 */
252 if (mce_flags.smca)
253 return 0;
254
bbaff08d
RR
255 pr_err(FW_BUG "cpu %d, invalid threshold interrupt offset %d "
256 "for bank %d, block %d (MSR%08X=0x%x%08x)\n",
257 b->cpu, apic, b->bank, b->block, b->address, hi, lo);
258 return 0;
259 }
260
261 return 1;
262};
263
ea2ca36b 264/* Reprogram MCx_MISC MSR behind this threshold bank. */
a6b6a14e 265static void threshold_restart_bank(void *_tr)
89b831ef 266{
4cd4601d 267 struct thresh_restart *tr = _tr;
7203a049 268 u32 hi, lo;
89b831ef 269
7203a049 270 rdmsr(tr->b->address, lo, hi);
89b831ef 271
7203a049 272 if (tr->b->threshold_limit < (hi & THRESHOLD_MAX))
4cd4601d 273 tr->reset = 1; /* limit cannot be lower than err count */
89b831ef 274
4cd4601d 275 if (tr->reset) { /* reset err count and overflow bit */
7203a049
RR
276 hi =
277 (hi & ~(MASK_ERR_COUNT_HI | MASK_OVERFLOW_HI)) |
4cd4601d
MT
278 (THRESHOLD_MAX - tr->b->threshold_limit);
279 } else if (tr->old_limit) { /* change limit w/o reset */
7203a049 280 int new_count = (hi & THRESHOLD_MAX) +
4cd4601d 281 (tr->old_limit - tr->b->threshold_limit);
1cb2a8e1 282
7203a049 283 hi = (hi & ~MASK_ERR_COUNT_HI) |
89b831ef
JS
284 (new_count & THRESHOLD_MAX);
285 }
286
f227d430
BP
287 /* clear IntType */
288 hi &= ~MASK_INT_TYPE_HI;
289
290 if (!tr->b->interrupt_capable)
291 goto done;
292
9c37c9d8 293 if (tr->set_lvt_off) {
bbaff08d
RR
294 if (lvt_off_valid(tr->b, tr->lvt_off, lo, hi)) {
295 /* set new lvt offset */
296 hi &= ~MASK_LVTOFF_HI;
297 hi |= tr->lvt_off << 20;
298 }
9c37c9d8
RR
299 }
300
f227d430
BP
301 if (tr->b->interrupt_enable)
302 hi |= INT_TYPE_APIC;
303
304 done:
89b831ef 305
7203a049
RR
306 hi |= MASK_COUNT_EN_HI;
307 wrmsr(tr->b->address, lo, hi);
89b831ef
JS
308}
309
9c37c9d8
RR
310static void mce_threshold_block_init(struct threshold_block *b, int offset)
311{
312 struct thresh_restart tr = {
313 .b = b,
314 .set_lvt_off = 1,
315 .lvt_off = offset,
316 };
317
318 b->threshold_limit = THRESHOLD_MAX;
319 threshold_restart_bank(&tr);
320};
321
868c00bb 322static int setup_APIC_mce_threshold(int reserved, int new)
bbaff08d
RR
323{
324 if (reserved < 0 && !setup_APIC_eilvt(new, THRESHOLD_APIC_VECTOR,
325 APIC_EILVT_MSG_FIX, 0))
326 return new;
327
328 return reserved;
329}
330
24fd78a8
AG
331static int setup_APIC_deferred_error(int reserved, int new)
332{
333 if (reserved < 0 && !setup_APIC_eilvt(new, DEFERRED_ERROR_VECTOR,
334 APIC_EILVT_MSG_FIX, 0))
335 return new;
336
337 return reserved;
338}
339
340static void deferred_error_interrupt_enable(struct cpuinfo_x86 *c)
341{
342 u32 low = 0, high = 0;
343 int def_offset = -1, def_new;
344
345 if (rdmsr_safe(MSR_CU_DEF_ERR, &low, &high))
346 return;
347
348 def_new = (low & MASK_DEF_LVTOFF) >> 4;
349 if (!(low & MASK_DEF_LVTOFF)) {
350 pr_err(FW_BUG "Your BIOS is not setting up LVT offset 0x2 for deferred error IRQs correctly.\n");
351 def_new = DEF_LVT_OFF;
352 low = (low & ~MASK_DEF_LVTOFF) | (DEF_LVT_OFF << 4);
353 }
354
355 def_offset = setup_APIC_deferred_error(def_offset, def_new);
356 if ((def_offset == def_new) &&
357 (deferred_error_int_vector != amd_deferred_error_interrupt))
358 deferred_error_int_vector = amd_deferred_error_interrupt;
359
360 low = (low & ~MASK_DEF_INT_TYPE) | DEF_INT_TYPE_APIC;
361 wrmsr(MSR_CU_DEF_ERR, low, high);
362}
363
cfee4f6f 364static u32 get_block_address(unsigned int cpu, u32 current_addr, u32 low, u32 high,
8dd1e17a
AG
365 unsigned int bank, unsigned int block)
366{
367 u32 addr = 0, offset = 0;
368
369 if (mce_flags.smca) {
370 if (!block) {
371 addr = MSR_AMD64_SMCA_MCx_MISC(bank);
372 } else {
373 /*
374 * For SMCA enabled processors, BLKPTR field of the
375 * first MISC register (MCx_MISC0) indicates presence of
376 * additional MISC register set (MISC1-4).
377 */
378 u32 low, high;
379
cfee4f6f 380 if (rdmsr_safe_on_cpu(cpu, MSR_AMD64_SMCA_MCx_CONFIG(bank), &low, &high))
8dd1e17a
AG
381 return addr;
382
383 if (!(low & MCI_CONFIG_MCAX))
384 return addr;
385
cfee4f6f 386 if (!rdmsr_safe_on_cpu(cpu, MSR_AMD64_SMCA_MCx_MISC(bank), &low, &high) &&
8dd1e17a
AG
387 (low & MASK_BLKPTR_LO))
388 addr = MSR_AMD64_SMCA_MCx_MISCy(bank, block - 1);
389 }
390 return addr;
391 }
392
393 /* Fall back to method we used for older processors: */
394 switch (block) {
395 case 0:
d9d73fcc 396 addr = msr_ops.misc(bank);
8dd1e17a
AG
397 break;
398 case 1:
399 offset = ((low & MASK_BLKPTR_LO) >> 21);
400 if (offset)
401 addr = MCG_XBLK_ADDR + offset;
402 break;
403 default:
404 addr = ++current_addr;
405 }
406 return addr;
407}
408
429893b1
BP
409static int
410prepare_threshold_block(unsigned int bank, unsigned int block, u32 addr,
411 int offset, u32 misc_high)
412{
413 unsigned int cpu = smp_processor_id();
e128b4f4 414 u32 smca_low, smca_high, smca_addr;
429893b1
BP
415 struct threshold_block b;
416 int new;
417
418 if (!block)
419 per_cpu(bank_map, cpu) |= (1 << bank);
420
421 memset(&b, 0, sizeof(b));
422 b.cpu = cpu;
423 b.bank = bank;
424 b.block = block;
425 b.address = addr;
426 b.interrupt_capable = lvt_interrupt_supported(bank, misc_high);
427
428 if (!b.interrupt_capable)
429 goto done;
430
431 b.interrupt_enable = 1;
432
e128b4f4
BP
433 if (!mce_flags.smca) {
434 new = (misc_high & MASK_LVTOFF_HI) >> 20;
435 goto set_offset;
436 }
32544f06 437
e128b4f4 438 smca_addr = MSR_AMD64_SMCA_MCx_CONFIG(bank);
32544f06 439
e128b4f4
BP
440 if (!rdmsr_safe(smca_addr, &smca_low, &smca_high)) {
441 /*
442 * OS is required to set the MCAX bit to acknowledge that it is
443 * now using the new MSR ranges and new registers under each
444 * bank. It also means that the OS will configure deferred
445 * errors in the new MCx_CONFIG register. If the bit is not set,
446 * uncorrectable errors will cause a system panic.
447 *
448 * MCA_CONFIG[MCAX] is bit 32 (0 in the high portion of the MSR.)
449 */
450 smca_high |= BIT(0);
429893b1 451
e128b4f4
BP
452 /*
453 * SMCA logs Deferred Error information in MCA_DE{STAT,ADDR}
454 * registers with the option of additionally logging to
455 * MCA_{STATUS,ADDR} if MCA_CONFIG[LogDeferredInMcaStat] is set.
456 *
457 * This bit is usually set by BIOS to retain the old behavior
458 * for OSes that don't use the new registers. Linux supports the
459 * new registers so let's disable that additional logging here.
460 *
461 * MCA_CONFIG[LogDeferredInMcaStat] is bit 34 (bit 2 in the high
462 * portion of the MSR).
463 */
464 smca_high &= ~BIT(2);
429893b1 465
66ef269d
YG
466 /*
467 * SMCA sets the Deferred Error Interrupt type per bank.
468 *
469 * MCA_CONFIG[DeferredIntTypeSupported] is bit 5, and tells us
470 * if the DeferredIntType bit field is available.
471 *
472 * MCA_CONFIG[DeferredIntType] is bits [38:37] ([6:5] in the
473 * high portion of the MSR). OS should set this to 0x1 to enable
474 * APIC based interrupt. First, check that no interrupt has been
475 * set.
476 */
477 if ((smca_low & BIT(5)) && !((smca_high >> 5) & 0x3))
478 smca_high |= BIT(5);
479
e128b4f4 480 wrmsr(smca_addr, smca_low, smca_high);
429893b1
BP
481 }
482
e128b4f4
BP
483 /* Gather LVT offset for thresholding: */
484 if (rdmsr_safe(MSR_CU_DEF_ERR, &smca_low, &smca_high))
485 goto out;
486
487 new = (smca_low & SMCA_THR_LVT_OFF) >> 12;
488
489set_offset:
429893b1
BP
490 offset = setup_APIC_mce_threshold(offset, new);
491
492 if ((offset == new) && (mce_threshold_vector != amd_threshold_interrupt))
493 mce_threshold_vector = amd_threshold_interrupt;
494
495done:
496 mce_threshold_block_init(&b, offset);
497
498out:
499 return offset;
500}
501
95268664 502/* cpu init entry point, called from mce.c with preempt off */
cc3ca220 503void mce_amd_feature_init(struct cpuinfo_x86 *c)
89b831ef 504{
95268664 505 u32 low = 0, high = 0, address = 0;
cfee4f6f 506 unsigned int bank, block, cpu = smp_processor_id();
429893b1 507 int offset = -1;
89b831ef 508
bafcdd3b 509 for (bank = 0; bank < mca_cfg.banks; ++bank) {
5896820e
YG
510 if (mce_flags.smca)
511 get_smca_bank_info(bank);
512
95268664 513 for (block = 0; block < NR_BLOCKS; ++block) {
cfee4f6f 514 address = get_block_address(cpu, address, low, high, bank, block);
8dd1e17a
AG
515 if (!address)
516 break;
95268664
JS
517
518 if (rdmsr_safe(address, &low, &high))
24ce0e96 519 break;
95268664 520
6dcbfe4f
BP
521 if (!(high & MASK_VALID_HI))
522 continue;
95268664 523
24ce0e96
JB
524 if (!(high & MASK_CNTP_HI) ||
525 (high & MASK_LOCKED_HI))
95268664
JS
526 continue;
527
429893b1 528 offset = prepare_threshold_block(bank, block, address, offset, high);
95268664 529 }
89b831ef 530 }
24fd78a8
AG
531
532 if (mce_flags.succor)
533 deferred_error_interrupt_enable(c);
89b831ef
JS
534}
535
34102009
YG
536static void
537__log_error(unsigned int bank, bool deferred_err, bool threshold_err, u64 misc)
afdf344e 538{
34102009
YG
539 u32 msr_status = msr_ops.status(bank);
540 u32 msr_addr = msr_ops.addr(bank);
afdf344e
AG
541 struct mce m;
542 u64 status;
543
34102009
YG
544 WARN_ON_ONCE(deferred_err && threshold_err);
545
546 if (deferred_err && mce_flags.smca) {
547 msr_status = MSR_AMD64_SMCA_MCx_DESTAT(bank);
548 msr_addr = MSR_AMD64_SMCA_MCx_DEADDR(bank);
549 }
550
551 rdmsrl(msr_status, status);
552
afdf344e
AG
553 if (!(status & MCI_STATUS_VAL))
554 return;
555
556 mce_setup(&m);
557
558 m.status = status;
559 m.bank = bank;
6e6e746e 560
afdf344e
AG
561 if (threshold_err)
562 m.misc = misc;
563
4f29b73b 564 if (m.status & MCI_STATUS_ADDRV) {
34102009 565 rdmsrl(msr_addr, m.addr);
afdf344e 566
4f29b73b
YG
567 /*
568 * Extract [55:<lsb>] where lsb is the least significant
569 * *valid* bit of the address bits.
570 */
571 if (mce_flags.smca) {
572 u8 lsb = (m.addr >> 56) & 0x3f;
573
574 m.addr &= GENMASK_ULL(55, lsb);
575 }
576 }
577
5828c46f
YG
578 if (mce_flags.smca) {
579 rdmsrl(MSR_AMD64_SMCA_MCx_IPID(bank), m.ipid);
580
581 if (m.status & MCI_STATUS_SYNDV)
582 rdmsrl(MSR_AMD64_SMCA_MCx_SYND(bank), m.synd);
583 }
db819d60 584
6e6e746e 585 mce_log(&m);
34102009
YG
586
587 wrmsrl(msr_status, 0);
afdf344e
AG
588}
589
24fd78a8
AG
590static inline void __smp_deferred_error_interrupt(void)
591{
592 inc_irq_stat(irq_deferred_error_count);
593 deferred_error_int_vector();
594}
595
596asmlinkage __visible void smp_deferred_error_interrupt(void)
597{
598 entering_irq();
599 __smp_deferred_error_interrupt();
600 exiting_ack_irq();
601}
602
603asmlinkage __visible void smp_trace_deferred_error_interrupt(void)
604{
605 entering_irq();
606 trace_deferred_error_apic_entry(DEFERRED_ERROR_VECTOR);
607 __smp_deferred_error_interrupt();
608 trace_deferred_error_apic_exit(DEFERRED_ERROR_VECTOR);
609 exiting_ack_irq();
610}
611
612/* APIC interrupt handler for deferred errors */
613static void amd_deferred_error_interrupt(void)
614{
24fd78a8 615 unsigned int bank;
34102009
YG
616 u32 msr_status;
617 u64 status;
24fd78a8
AG
618
619 for (bank = 0; bank < mca_cfg.banks; ++bank) {
34102009
YG
620 msr_status = (mce_flags.smca) ? MSR_AMD64_SMCA_MCx_DESTAT(bank)
621 : msr_ops.status(bank);
622
623 rdmsrl(msr_status, status);
24fd78a8
AG
624
625 if (!(status & MCI_STATUS_VAL) ||
626 !(status & MCI_STATUS_DEFERRED))
627 continue;
628
34102009 629 __log_error(bank, true, false, 0);
24fd78a8
AG
630 break;
631 }
632}
633
89b831ef
JS
634/*
635 * APIC Interrupt Handler
636 */
637
638/*
639 * threshold interrupt handler will service THRESHOLD_APIC_VECTOR.
640 * the interrupt goes off when error_count reaches threshold_limit.
641 * the handler will simply log mcelog w/ software defined bank number.
642 */
afdf344e 643
b2762686 644static void amd_threshold_interrupt(void)
89b831ef 645{
1cb2a8e1 646 u32 low = 0, high = 0, address = 0;
cfee4f6f 647 unsigned int bank, block, cpu = smp_processor_id();
89b831ef 648
89b831ef 649 /* assume first bank caused it */
bafcdd3b 650 for (bank = 0; bank < mca_cfg.banks; ++bank) {
44612a3a 651 if (!(per_cpu(bank_map, cpu) & (1 << bank)))
24ce0e96 652 continue;
95268664 653 for (block = 0; block < NR_BLOCKS; ++block) {
cfee4f6f 654 address = get_block_address(cpu, address, low, high, bank, block);
8dd1e17a
AG
655 if (!address)
656 break;
95268664
JS
657
658 if (rdmsr_safe(address, &low, &high))
24ce0e96 659 break;
95268664
JS
660
661 if (!(high & MASK_VALID_HI)) {
662 if (block)
663 continue;
664 else
665 break;
666 }
667
24ce0e96
JB
668 if (!(high & MASK_CNTP_HI) ||
669 (high & MASK_LOCKED_HI))
95268664
JS
670 continue;
671
1cb2a8e1
IM
672 /*
673 * Log the machine check that caused the threshold
674 * event.
675 */
44612a3a
CY
676 if (high & MASK_OVERFLOW_HI)
677 goto log;
89b831ef
JS
678 }
679 }
44612a3a
CY
680 return;
681
682log:
34102009 683 __log_error(bank, false, true, ((u64)high << 32) | low);
89b831ef
JS
684}
685
686/*
687 * Sysfs Interface
688 */
689
89b831ef 690struct threshold_attr {
2903ee85 691 struct attribute attr;
1cb2a8e1
IM
692 ssize_t (*show) (struct threshold_block *, char *);
693 ssize_t (*store) (struct threshold_block *, const char *, size_t count);
89b831ef
JS
694};
695
1cb2a8e1
IM
696#define SHOW_FIELDS(name) \
697static ssize_t show_ ## name(struct threshold_block *b, char *buf) \
698{ \
18c20f37 699 return sprintf(buf, "%lu\n", (unsigned long) b->name); \
2903ee85 700}
89b831ef
JS
701SHOW_FIELDS(interrupt_enable)
702SHOW_FIELDS(threshold_limit)
703
1cb2a8e1 704static ssize_t
9319cec8 705store_interrupt_enable(struct threshold_block *b, const char *buf, size_t size)
89b831ef 706{
4cd4601d 707 struct thresh_restart tr;
1cb2a8e1 708 unsigned long new;
1cb2a8e1 709
f227d430
BP
710 if (!b->interrupt_capable)
711 return -EINVAL;
712
164109e3 713 if (kstrtoul(buf, 0, &new) < 0)
89b831ef 714 return -EINVAL;
1cb2a8e1 715
89b831ef
JS
716 b->interrupt_enable = !!new;
717
9c37c9d8 718 memset(&tr, 0, sizeof(tr));
1cb2a8e1 719 tr.b = b;
1cb2a8e1 720
a6b6a14e 721 smp_call_function_single(b->cpu, threshold_restart_bank, &tr, 1);
89b831ef 722
9319cec8 723 return size;
89b831ef
JS
724}
725
1cb2a8e1 726static ssize_t
9319cec8 727store_threshold_limit(struct threshold_block *b, const char *buf, size_t size)
89b831ef 728{
4cd4601d 729 struct thresh_restart tr;
1cb2a8e1 730 unsigned long new;
1cb2a8e1 731
164109e3 732 if (kstrtoul(buf, 0, &new) < 0)
89b831ef 733 return -EINVAL;
1cb2a8e1 734
89b831ef
JS
735 if (new > THRESHOLD_MAX)
736 new = THRESHOLD_MAX;
737 if (new < 1)
738 new = 1;
1cb2a8e1 739
9c37c9d8 740 memset(&tr, 0, sizeof(tr));
4cd4601d 741 tr.old_limit = b->threshold_limit;
89b831ef 742 b->threshold_limit = new;
4cd4601d 743 tr.b = b;
89b831ef 744
a6b6a14e 745 smp_call_function_single(b->cpu, threshold_restart_bank, &tr, 1);
89b831ef 746
9319cec8 747 return size;
89b831ef
JS
748}
749
4cd4601d
MT
750static ssize_t show_error_count(struct threshold_block *b, char *buf)
751{
2c9c42fa
BP
752 u32 lo, hi;
753
754 rdmsr_on_cpu(b->cpu, b->address, &lo, &hi);
a6b6a14e 755
2c9c42fa
BP
756 return sprintf(buf, "%u\n", ((hi & THRESHOLD_MAX) -
757 (THRESHOLD_MAX - b->threshold_limit)));
89b831ef
JS
758}
759
6e927361
BP
760static struct threshold_attr error_count = {
761 .attr = {.name = __stringify(error_count), .mode = 0444 },
762 .show = show_error_count,
763};
89b831ef 764
34fa1967
HS
765#define RW_ATTR(val) \
766static struct threshold_attr val = { \
767 .attr = {.name = __stringify(val), .mode = 0644 }, \
768 .show = show_## val, \
769 .store = store_## val, \
89b831ef
JS
770};
771
2903ee85
JS
772RW_ATTR(interrupt_enable);
773RW_ATTR(threshold_limit);
89b831ef
JS
774
775static struct attribute *default_attrs[] = {
89b831ef
JS
776 &threshold_limit.attr,
777 &error_count.attr,
d26ecc48
BP
778 NULL, /* possibly interrupt_enable if supported, see below */
779 NULL,
89b831ef
JS
780};
781
1cb2a8e1
IM
782#define to_block(k) container_of(k, struct threshold_block, kobj)
783#define to_attr(a) container_of(a, struct threshold_attr, attr)
89b831ef
JS
784
785static ssize_t show(struct kobject *kobj, struct attribute *attr, char *buf)
786{
95268664 787 struct threshold_block *b = to_block(kobj);
89b831ef
JS
788 struct threshold_attr *a = to_attr(attr);
789 ssize_t ret;
1cb2a8e1 790
89b831ef 791 ret = a->show ? a->show(b, buf) : -EIO;
1cb2a8e1 792
89b831ef
JS
793 return ret;
794}
795
796static ssize_t store(struct kobject *kobj, struct attribute *attr,
797 const char *buf, size_t count)
798{
95268664 799 struct threshold_block *b = to_block(kobj);
89b831ef
JS
800 struct threshold_attr *a = to_attr(attr);
801 ssize_t ret;
1cb2a8e1 802
89b831ef 803 ret = a->store ? a->store(b, buf, count) : -EIO;
1cb2a8e1 804
89b831ef
JS
805 return ret;
806}
807
52cf25d0 808static const struct sysfs_ops threshold_ops = {
1cb2a8e1
IM
809 .show = show,
810 .store = store,
89b831ef
JS
811};
812
813static struct kobj_type threshold_ktype = {
1cb2a8e1
IM
814 .sysfs_ops = &threshold_ops,
815 .default_attrs = default_attrs,
89b831ef
JS
816};
817
87a6d409
YG
818static const char *get_name(unsigned int bank, struct threshold_block *b)
819{
820 unsigned int bank_type;
821
822 if (!mce_flags.smca) {
823 if (b && bank == 4)
824 return bank4_names(b);
825
826 return th_names[bank];
827 }
828
829 if (!smca_banks[bank].type)
830 return NULL;
831
832 bank_type = smca_banks[bank].type->bank_type;
833
834 if (b && bank_type == SMCA_UMC) {
835 if (b->block < ARRAY_SIZE(smca_umc_block_names))
836 return smca_umc_block_names[b->block];
837 return NULL;
838 }
839
840 snprintf(buf_mcatype, MAX_MCATYPE_NAME_LEN,
841 "%s_%x", smca_bank_names[bank_type].name,
842 smca_banks[bank].type_instance);
843 return buf_mcatype;
844}
845
148f9bb8
PG
846static int allocate_threshold_blocks(unsigned int cpu, unsigned int bank,
847 unsigned int block, u32 address)
95268664 848{
95268664 849 struct threshold_block *b = NULL;
1cb2a8e1
IM
850 u32 low, high;
851 int err;
95268664 852
bafcdd3b 853 if ((bank >= mca_cfg.banks) || (block >= NR_BLOCKS))
95268664
JS
854 return 0;
855
a6b6a14e 856 if (rdmsr_safe_on_cpu(cpu, address, &low, &high))
24ce0e96 857 return 0;
95268664
JS
858
859 if (!(high & MASK_VALID_HI)) {
860 if (block)
861 goto recurse;
862 else
863 return 0;
864 }
865
24ce0e96
JB
866 if (!(high & MASK_CNTP_HI) ||
867 (high & MASK_LOCKED_HI))
95268664
JS
868 goto recurse;
869
870 b = kzalloc(sizeof(struct threshold_block), GFP_KERNEL);
871 if (!b)
872 return -ENOMEM;
95268664 873
1cb2a8e1
IM
874 b->block = block;
875 b->bank = bank;
876 b->cpu = cpu;
877 b->address = address;
878 b->interrupt_enable = 0;
f227d430 879 b->interrupt_capable = lvt_interrupt_supported(bank, high);
1cb2a8e1 880 b->threshold_limit = THRESHOLD_MAX;
95268664 881
d79f931f 882 if (b->interrupt_capable) {
d26ecc48 883 threshold_ktype.default_attrs[2] = &interrupt_enable.attr;
d79f931f
AG
884 b->interrupt_enable = 1;
885 } else {
d26ecc48 886 threshold_ktype.default_attrs[2] = NULL;
d79f931f 887 }
d26ecc48 888
95268664
JS
889 INIT_LIST_HEAD(&b->miscj);
890
1cb2a8e1 891 if (per_cpu(threshold_banks, cpu)[bank]->blocks) {
95268664
JS
892 list_add(&b->miscj,
893 &per_cpu(threshold_banks, cpu)[bank]->blocks->miscj);
1cb2a8e1 894 } else {
95268664 895 per_cpu(threshold_banks, cpu)[bank]->blocks = b;
1cb2a8e1 896 }
95268664 897
542eb75a
GKH
898 err = kobject_init_and_add(&b->kobj, &threshold_ktype,
899 per_cpu(threshold_banks, cpu)[bank]->kobj,
87a6d409 900 get_name(bank, b));
95268664
JS
901 if (err)
902 goto out_free;
903recurse:
cfee4f6f 904 address = get_block_address(cpu, address, low, high, bank, ++block);
8dd1e17a
AG
905 if (!address)
906 return 0;
95268664 907
8dd1e17a 908 err = allocate_threshold_blocks(cpu, bank, block, address);
95268664
JS
909 if (err)
910 goto out_free;
911
213eca7f
GKH
912 if (b)
913 kobject_uevent(&b->kobj, KOBJ_ADD);
542eb75a 914
95268664
JS
915 return err;
916
917out_free:
918 if (b) {
38a382ae 919 kobject_put(&b->kobj);
d9a5ac9e 920 list_del(&b->miscj);
95268664
JS
921 kfree(b);
922 }
923 return err;
924}
925
148f9bb8 926static int __threshold_add_blocks(struct threshold_bank *b)
019f34fc
BP
927{
928 struct list_head *head = &b->blocks->miscj;
929 struct threshold_block *pos = NULL;
930 struct threshold_block *tmp = NULL;
931 int err = 0;
932
933 err = kobject_add(&b->blocks->kobj, b->kobj, b->blocks->kobj.name);
934 if (err)
935 return err;
936
937 list_for_each_entry_safe(pos, tmp, head, miscj) {
938
939 err = kobject_add(&pos->kobj, b->kobj, pos->kobj.name);
940 if (err) {
941 list_for_each_entry_safe_reverse(pos, tmp, head, miscj)
942 kobject_del(&pos->kobj);
943
944 return err;
945 }
946 }
947 return err;
948}
949
148f9bb8 950static int threshold_create_bank(unsigned int cpu, unsigned int bank)
89b831ef 951{
d6126ef5 952 struct device *dev = per_cpu(mce_device, cpu);
019f34fc 953 struct amd_northbridge *nb = NULL;
92e26e2a 954 struct threshold_bank *b = NULL;
87a6d409 955 const char *name = get_name(bank, NULL);
92e26e2a 956 int err = 0;
95268664 957
c76e8164 958 if (is_shared_bank(bank)) {
019f34fc 959 nb = node_to_amd_nb(amd_get_nb_id(cpu));
019f34fc
BP
960
961 /* threshold descriptor already initialized on this node? */
21c5e50e 962 if (nb && nb->bank4) {
019f34fc
BP
963 /* yes, use it */
964 b = nb->bank4;
965 err = kobject_add(b->kobj, &dev->kobj, name);
966 if (err)
967 goto out;
968
969 per_cpu(threshold_banks, cpu)[bank] = b;
970 atomic_inc(&b->cpus);
971
972 err = __threshold_add_blocks(b);
973
974 goto out;
975 }
976 }
977
95268664 978 b = kzalloc(sizeof(struct threshold_bank), GFP_KERNEL);
89b831ef
JS
979 if (!b) {
980 err = -ENOMEM;
981 goto out;
982 }
89b831ef 983
e032d807 984 b->kobj = kobject_create_and_add(name, &dev->kobj);
92e26e2a
BP
985 if (!b->kobj) {
986 err = -EINVAL;
a521cf20 987 goto out_free;
92e26e2a 988 }
95268664 989
89b831ef 990 per_cpu(threshold_banks, cpu)[bank] = b;
95268664 991
c76e8164 992 if (is_shared_bank(bank)) {
019f34fc
BP
993 atomic_set(&b->cpus, 1);
994
995 /* nb is already initialized, see above */
21c5e50e
DB
996 if (nb) {
997 WARN_ON(nb->bank4);
998 nb->bank4 = b;
999 }
019f34fc
BP
1000 }
1001
74ab0e7a 1002 err = allocate_threshold_blocks(cpu, bank, 0, msr_ops.misc(bank));
92e26e2a
BP
1003 if (!err)
1004 goto out;
95268664 1005
019f34fc 1006 out_free:
95268664 1007 kfree(b);
019f34fc
BP
1008
1009 out:
89b831ef
JS
1010 return err;
1011}
1012
be6b5a35 1013static void deallocate_threshold_block(unsigned int cpu,
95268664
JS
1014 unsigned int bank)
1015{
1016 struct threshold_block *pos = NULL;
1017 struct threshold_block *tmp = NULL;
1018 struct threshold_bank *head = per_cpu(threshold_banks, cpu)[bank];
1019
1020 if (!head)
1021 return;
1022
1023 list_for_each_entry_safe(pos, tmp, &head->blocks->miscj, miscj) {
38a382ae 1024 kobject_put(&pos->kobj);
95268664
JS
1025 list_del(&pos->miscj);
1026 kfree(pos);
1027 }
1028
1029 kfree(per_cpu(threshold_banks, cpu)[bank]->blocks);
1030 per_cpu(threshold_banks, cpu)[bank]->blocks = NULL;
1031}
1032
019f34fc
BP
1033static void __threshold_remove_blocks(struct threshold_bank *b)
1034{
1035 struct threshold_block *pos = NULL;
1036 struct threshold_block *tmp = NULL;
1037
1038 kobject_del(b->kobj);
1039
1040 list_for_each_entry_safe(pos, tmp, &b->blocks->miscj, miscj)
1041 kobject_del(&pos->kobj);
1042}
1043
be6b5a35 1044static void threshold_remove_bank(unsigned int cpu, int bank)
89b831ef 1045{
019f34fc 1046 struct amd_northbridge *nb;
89b831ef 1047 struct threshold_bank *b;
89b831ef
JS
1048
1049 b = per_cpu(threshold_banks, cpu)[bank];
1050 if (!b)
1051 return;
019f34fc 1052
95268664
JS
1053 if (!b->blocks)
1054 goto free_out;
1055
c76e8164 1056 if (is_shared_bank(bank)) {
019f34fc
BP
1057 if (!atomic_dec_and_test(&b->cpus)) {
1058 __threshold_remove_blocks(b);
1059 per_cpu(threshold_banks, cpu)[bank] = NULL;
1060 return;
1061 } else {
1062 /*
1063 * the last CPU on this node using the shared bank is
1064 * going away, remove that bank now.
1065 */
1066 nb = node_to_amd_nb(amd_get_nb_id(cpu));
1067 nb->bank4 = NULL;
1068 }
1069 }
1070
95268664
JS
1071 deallocate_threshold_block(cpu, bank);
1072
1073free_out:
8735728e 1074 kobject_del(b->kobj);
38a382ae 1075 kobject_put(b->kobj);
95268664
JS
1076 kfree(b);
1077 per_cpu(threshold_banks, cpu)[bank] = NULL;
89b831ef
JS
1078}
1079
be6b5a35 1080static void threshold_remove_device(unsigned int cpu)
89b831ef 1081{
2903ee85 1082 unsigned int bank;
89b831ef 1083
bafcdd3b 1084 for (bank = 0; bank < mca_cfg.banks; ++bank) {
5a96f4a5 1085 if (!(per_cpu(bank_map, cpu) & (1 << bank)))
89b831ef
JS
1086 continue;
1087 threshold_remove_bank(cpu, bank);
1088 }
bafcdd3b 1089 kfree(per_cpu(threshold_banks, cpu));
89b831ef
JS
1090}
1091
09436372
SAS
1092/* create dir/files for all valid threshold banks */
1093static int threshold_create_device(unsigned int cpu)
1094{
1095 unsigned int bank;
1096 struct threshold_bank **bp;
1097 int err = 0;
1098
1099 bp = kzalloc(sizeof(struct threshold_bank *) * mca_cfg.banks,
1100 GFP_KERNEL);
1101 if (!bp)
1102 return -ENOMEM;
1103
1104 per_cpu(threshold_banks, cpu) = bp;
1105
1106 for (bank = 0; bank < mca_cfg.banks; ++bank) {
1107 if (!(per_cpu(bank_map, cpu) & (1 << bank)))
1108 continue;
1109 err = threshold_create_bank(cpu, bank);
1110 if (err)
1111 return err;
1112 }
1113
1114 return err;
1115}
1116
89b831ef 1117/* get notified when a cpu comes on/off */
148f9bb8 1118static void
1cb2a8e1 1119amd_64_threshold_cpu_callback(unsigned long action, unsigned int cpu)
89b831ef 1120{
89b831ef
JS
1121 switch (action) {
1122 case CPU_ONLINE:
8bb78442 1123 case CPU_ONLINE_FROZEN:
89b831ef 1124 threshold_create_device(cpu);
89b831ef
JS
1125 break;
1126 case CPU_DEAD:
8bb78442 1127 case CPU_DEAD_FROZEN:
89b831ef
JS
1128 threshold_remove_device(cpu);
1129 break;
1130 default:
1131 break;
1132 }
89b831ef
JS
1133}
1134
89b831ef
JS
1135static __init int threshold_init_device(void)
1136{
2903ee85 1137 unsigned lcpu = 0;
89b831ef 1138
89b831ef
JS
1139 /* to hit CPUs online before the notifier is up */
1140 for_each_online_cpu(lcpu) {
fff2e89f 1141 int err = threshold_create_device(lcpu);
1cb2a8e1 1142
89b831ef 1143 if (err)
fff2e89f 1144 return err;
89b831ef 1145 }
8735728e 1146 threshold_cpu_callback = amd_64_threshold_cpu_callback;
1cb2a8e1 1147
fff2e89f 1148 return 0;
89b831ef 1149}
a8fccdb0
LJ
1150/*
1151 * there are 3 funcs which need to be _initcalled in a logic sequence:
1152 * 1. xen_late_init_mcelog
1153 * 2. mcheck_init_device
1154 * 3. threshold_init_device
1155 *
1156 * xen_late_init_mcelog must register xen_mce_chrdev_device before
1157 * native mce_chrdev_device registration if running under xen platform;
1158 *
1159 * mcheck_init_device should be inited before threshold_init_device to
1160 * initialize mce_device, otherwise a NULL ptr dereference will cause panic.
1161 *
1162 * so we use following _initcalls
1163 * 1. device_initcall(xen_late_init_mcelog);
1164 * 2. device_initcall_sync(mcheck_init_device);
1165 * 3. late_initcall(threshold_init_device);
1166 *
1167 * when running under xen, the initcall order is 1,2,3;
1168 * on baremetal, we skip 1 and we do only 2 and 3.
1169 */
1170late_initcall(threshold_init_device);