]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - arch/x86/kernel/cpu/mcheck/mce_amd.c
x86, amd_nb: Export model 0x10 and later PCI id
[mirror_ubuntu-bionic-kernel.git] / arch / x86 / kernel / cpu / mcheck / mce_amd.c
CommitLineData
89b831ef 1/*
95268664 2 * (c) 2005, 2006 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.
8 *
9 * Support : jacob.shin@amd.com
10 *
95268664
JS
11 * April 2006
12 * - added support for AMD Family 0x10 processors
89b831ef 13 *
95268664 14 * All MC4_MISCi registers are shared between multi-cores
89b831ef 15 */
89b831ef 16#include <linux/interrupt.h>
89b831ef 17#include <linux/notifier.h>
1cb2a8e1 18#include <linux/kobject.h>
34fa1967 19#include <linux/percpu.h>
1cb2a8e1
IM
20#include <linux/errno.h>
21#include <linux/sched.h>
89b831ef 22#include <linux/sysfs.h>
5a0e3ad6 23#include <linux/slab.h>
1cb2a8e1
IM
24#include <linux/init.h>
25#include <linux/cpu.h>
26#include <linux/smp.h>
27
89b831ef 28#include <asm/apic.h>
1cb2a8e1 29#include <asm/idle.h>
89b831ef
JS
30#include <asm/mce.h>
31#include <asm/msr.h>
89b831ef 32
2903ee85
JS
33#define NR_BANKS 6
34#define NR_BLOCKS 9
35#define THRESHOLD_MAX 0xFFF
36#define INT_TYPE_APIC 0x00020000
37#define MASK_VALID_HI 0x80000000
24ce0e96
JB
38#define MASK_CNTP_HI 0x40000000
39#define MASK_LOCKED_HI 0x20000000
2903ee85
JS
40#define MASK_LVTOFF_HI 0x00F00000
41#define MASK_COUNT_EN_HI 0x00080000
42#define MASK_INT_TYPE_HI 0x00060000
43#define MASK_OVERFLOW_HI 0x00010000
89b831ef 44#define MASK_ERR_COUNT_HI 0x00000FFF
95268664
JS
45#define MASK_BLKPTR_LO 0xFF000000
46#define MCG_XBLK_ADDR 0xC0000400
89b831ef 47
95268664 48struct threshold_block {
1cb2a8e1
IM
49 unsigned int block;
50 unsigned int bank;
51 unsigned int cpu;
52 u32 address;
53 u16 interrupt_enable;
f227d430 54 bool interrupt_capable;
1cb2a8e1
IM
55 u16 threshold_limit;
56 struct kobject kobj;
57 struct list_head miscj;
89b831ef
JS
58};
59
95268664 60struct threshold_bank {
1cb2a8e1
IM
61 struct kobject *kobj;
62 struct threshold_block *blocks;
63 cpumask_var_t cpus;
95268664 64};
204fba4a 65static DEFINE_PER_CPU(struct threshold_bank * [NR_BANKS], threshold_banks);
95268664 66
89b831ef
JS
67static unsigned char shared_bank[NR_BANKS] = {
68 0, 0, 0, 0, 1
69};
89b831ef
JS
70
71static DEFINE_PER_CPU(unsigned char, bank_map); /* see which banks are on */
72
b2762686
AK
73static void amd_threshold_interrupt(void);
74
89b831ef
JS
75/*
76 * CPU Initialization
77 */
78
4cd4601d 79struct thresh_restart {
1cb2a8e1
IM
80 struct threshold_block *b;
81 int reset;
9c37c9d8
RR
82 int set_lvt_off;
83 int lvt_off;
1cb2a8e1 84 u16 old_limit;
4cd4601d
MT
85};
86
f227d430
BP
87static bool lvt_interrupt_supported(unsigned int bank, u32 msr_high_bits)
88{
89 /*
90 * bank 4 supports APIC LVT interrupts implicitly since forever.
91 */
92 if (bank == 4)
93 return true;
94
95 /*
96 * IntP: interrupt present; if this bit is set, the thresholding
97 * bank can generate APIC LVT interrupts
98 */
99 return msr_high_bits & BIT(28);
100}
101
bbaff08d
RR
102static int lvt_off_valid(struct threshold_block *b, int apic, u32 lo, u32 hi)
103{
104 int msr = (hi & MASK_LVTOFF_HI) >> 20;
105
106 if (apic < 0) {
107 pr_err(FW_BUG "cpu %d, failed to setup threshold interrupt "
108 "for bank %d, block %d (MSR%08X=0x%x%08x)\n", b->cpu,
109 b->bank, b->block, b->address, hi, lo);
110 return 0;
111 }
112
113 if (apic != msr) {
114 pr_err(FW_BUG "cpu %d, invalid threshold interrupt offset %d "
115 "for bank %d, block %d (MSR%08X=0x%x%08x)\n",
116 b->cpu, apic, b->bank, b->block, b->address, hi, lo);
117 return 0;
118 }
119
120 return 1;
121};
122
f227d430
BP
123/*
124 * Called via smp_call_function_single(), must be called with correct
125 * cpu affinity.
126 */
a6b6a14e 127static void threshold_restart_bank(void *_tr)
89b831ef 128{
4cd4601d 129 struct thresh_restart *tr = _tr;
7203a049 130 u32 hi, lo;
89b831ef 131
7203a049 132 rdmsr(tr->b->address, lo, hi);
89b831ef 133
7203a049 134 if (tr->b->threshold_limit < (hi & THRESHOLD_MAX))
4cd4601d 135 tr->reset = 1; /* limit cannot be lower than err count */
89b831ef 136
4cd4601d 137 if (tr->reset) { /* reset err count and overflow bit */
7203a049
RR
138 hi =
139 (hi & ~(MASK_ERR_COUNT_HI | MASK_OVERFLOW_HI)) |
4cd4601d
MT
140 (THRESHOLD_MAX - tr->b->threshold_limit);
141 } else if (tr->old_limit) { /* change limit w/o reset */
7203a049 142 int new_count = (hi & THRESHOLD_MAX) +
4cd4601d 143 (tr->old_limit - tr->b->threshold_limit);
1cb2a8e1 144
7203a049 145 hi = (hi & ~MASK_ERR_COUNT_HI) |
89b831ef
JS
146 (new_count & THRESHOLD_MAX);
147 }
148
f227d430
BP
149 /* clear IntType */
150 hi &= ~MASK_INT_TYPE_HI;
151
152 if (!tr->b->interrupt_capable)
153 goto done;
154
9c37c9d8 155 if (tr->set_lvt_off) {
bbaff08d
RR
156 if (lvt_off_valid(tr->b, tr->lvt_off, lo, hi)) {
157 /* set new lvt offset */
158 hi &= ~MASK_LVTOFF_HI;
159 hi |= tr->lvt_off << 20;
160 }
9c37c9d8
RR
161 }
162
f227d430
BP
163 if (tr->b->interrupt_enable)
164 hi |= INT_TYPE_APIC;
165
166 done:
89b831ef 167
7203a049
RR
168 hi |= MASK_COUNT_EN_HI;
169 wrmsr(tr->b->address, lo, hi);
89b831ef
JS
170}
171
9c37c9d8
RR
172static void mce_threshold_block_init(struct threshold_block *b, int offset)
173{
174 struct thresh_restart tr = {
175 .b = b,
176 .set_lvt_off = 1,
177 .lvt_off = offset,
178 };
179
180 b->threshold_limit = THRESHOLD_MAX;
181 threshold_restart_bank(&tr);
182};
183
bbaff08d
RR
184static int setup_APIC_mce(int reserved, int new)
185{
186 if (reserved < 0 && !setup_APIC_eilvt(new, THRESHOLD_APIC_VECTOR,
187 APIC_EILVT_MSG_FIX, 0))
188 return new;
189
190 return reserved;
191}
192
95268664 193/* cpu init entry point, called from mce.c with preempt off */
cc3ca220 194void mce_amd_feature_init(struct cpuinfo_x86 *c)
89b831ef 195{
9c37c9d8 196 struct threshold_block b;
89b831ef 197 unsigned int cpu = smp_processor_id();
95268664 198 u32 low = 0, high = 0, address = 0;
1cb2a8e1 199 unsigned int bank, block;
bbaff08d 200 int offset = -1;
89b831ef
JS
201
202 for (bank = 0; bank < NR_BANKS; ++bank) {
95268664
JS
203 for (block = 0; block < NR_BLOCKS; ++block) {
204 if (block == 0)
205 address = MSR_IA32_MC0_MISC + bank * 4;
24ce0e96
JB
206 else if (block == 1) {
207 address = (low & MASK_BLKPTR_LO) >> 21;
208 if (!address)
209 break;
6dcbfe4f 210
24ce0e96 211 address += MCG_XBLK_ADDR;
1cb2a8e1 212 } else
95268664
JS
213 ++address;
214
215 if (rdmsr_safe(address, &low, &high))
24ce0e96 216 break;
95268664 217
6dcbfe4f
BP
218 if (!(high & MASK_VALID_HI))
219 continue;
95268664 220
24ce0e96
JB
221 if (!(high & MASK_CNTP_HI) ||
222 (high & MASK_LOCKED_HI))
95268664
JS
223 continue;
224
225 if (!block)
226 per_cpu(bank_map, cpu) |= (1 << bank);
95268664
JS
227 if (shared_bank[bank] && c->cpu_core_id)
228 break;
141168c3 229
9c37c9d8 230 memset(&b, 0, sizeof(b));
f227d430
BP
231 b.cpu = cpu;
232 b.bank = bank;
233 b.block = block;
234 b.address = address;
235 b.interrupt_capable = lvt_interrupt_supported(bank, high);
236
237 if (b.interrupt_capable) {
238 int new = (high & MASK_LVTOFF_HI) >> 20;
239 offset = setup_APIC_mce(offset, new);
240 }
b2762686 241
9c37c9d8 242 mce_threshold_block_init(&b, offset);
b2762686 243 mce_threshold_vector = amd_threshold_interrupt;
95268664 244 }
89b831ef
JS
245 }
246}
247
248/*
249 * APIC Interrupt Handler
250 */
251
252/*
253 * threshold interrupt handler will service THRESHOLD_APIC_VECTOR.
254 * the interrupt goes off when error_count reaches threshold_limit.
255 * the handler will simply log mcelog w/ software defined bank number.
256 */
b2762686 257static void amd_threshold_interrupt(void)
89b831ef 258{
1cb2a8e1 259 u32 low = 0, high = 0, address = 0;
95268664 260 unsigned int bank, block;
89b831ef
JS
261 struct mce m;
262
b5f2fa4e 263 mce_setup(&m);
89b831ef
JS
264
265 /* assume first bank caused it */
266 for (bank = 0; bank < NR_BANKS; ++bank) {
24ce0e96
JB
267 if (!(per_cpu(bank_map, m.cpu) & (1 << bank)))
268 continue;
95268664 269 for (block = 0; block < NR_BLOCKS; ++block) {
1cb2a8e1 270 if (block == 0) {
95268664 271 address = MSR_IA32_MC0_MISC + bank * 4;
1cb2a8e1 272 } else if (block == 1) {
24ce0e96
JB
273 address = (low & MASK_BLKPTR_LO) >> 21;
274 if (!address)
275 break;
276 address += MCG_XBLK_ADDR;
1cb2a8e1 277 } else {
95268664 278 ++address;
1cb2a8e1 279 }
95268664
JS
280
281 if (rdmsr_safe(address, &low, &high))
24ce0e96 282 break;
95268664
JS
283
284 if (!(high & MASK_VALID_HI)) {
285 if (block)
286 continue;
287 else
288 break;
289 }
290
24ce0e96
JB
291 if (!(high & MASK_CNTP_HI) ||
292 (high & MASK_LOCKED_HI))
95268664
JS
293 continue;
294
1cb2a8e1
IM
295 /*
296 * Log the machine check that caused the threshold
297 * event.
298 */
ee031c31
AK
299 machine_check_poll(MCP_TIMESTAMP,
300 &__get_cpu_var(mce_poll_banks));
a98f0dd3 301
95268664
JS
302 if (high & MASK_OVERFLOW_HI) {
303 rdmsrl(address, m.misc);
304 rdmsrl(MSR_IA32_MC0_STATUS + bank * 4,
305 m.status);
306 m.bank = K8_MCE_THRESHOLD_BASE
307 + bank * NR_BLOCKS
308 + block;
309 mce_log(&m);
b2762686 310 return;
95268664 311 }
89b831ef
JS
312 }
313 }
89b831ef
JS
314}
315
316/*
317 * Sysfs Interface
318 */
319
89b831ef 320struct threshold_attr {
2903ee85 321 struct attribute attr;
1cb2a8e1
IM
322 ssize_t (*show) (struct threshold_block *, char *);
323 ssize_t (*store) (struct threshold_block *, const char *, size_t count);
89b831ef
JS
324};
325
1cb2a8e1
IM
326#define SHOW_FIELDS(name) \
327static ssize_t show_ ## name(struct threshold_block *b, char *buf) \
328{ \
329 return sprintf(buf, "%lx\n", (unsigned long) b->name); \
2903ee85 330}
89b831ef
JS
331SHOW_FIELDS(interrupt_enable)
332SHOW_FIELDS(threshold_limit)
333
1cb2a8e1 334static ssize_t
9319cec8 335store_interrupt_enable(struct threshold_block *b, const char *buf, size_t size)
89b831ef 336{
4cd4601d 337 struct thresh_restart tr;
1cb2a8e1 338 unsigned long new;
1cb2a8e1 339
f227d430
BP
340 if (!b->interrupt_capable)
341 return -EINVAL;
342
9319cec8 343 if (strict_strtoul(buf, 0, &new) < 0)
89b831ef 344 return -EINVAL;
1cb2a8e1 345
89b831ef
JS
346 b->interrupt_enable = !!new;
347
9c37c9d8 348 memset(&tr, 0, sizeof(tr));
1cb2a8e1 349 tr.b = b;
1cb2a8e1 350
a6b6a14e 351 smp_call_function_single(b->cpu, threshold_restart_bank, &tr, 1);
89b831ef 352
9319cec8 353 return size;
89b831ef
JS
354}
355
1cb2a8e1 356static ssize_t
9319cec8 357store_threshold_limit(struct threshold_block *b, const char *buf, size_t size)
89b831ef 358{
4cd4601d 359 struct thresh_restart tr;
1cb2a8e1 360 unsigned long new;
1cb2a8e1 361
9319cec8 362 if (strict_strtoul(buf, 0, &new) < 0)
89b831ef 363 return -EINVAL;
1cb2a8e1 364
89b831ef
JS
365 if (new > THRESHOLD_MAX)
366 new = THRESHOLD_MAX;
367 if (new < 1)
368 new = 1;
1cb2a8e1 369
9c37c9d8 370 memset(&tr, 0, sizeof(tr));
4cd4601d 371 tr.old_limit = b->threshold_limit;
89b831ef 372 b->threshold_limit = new;
4cd4601d 373 tr.b = b;
89b831ef 374
a6b6a14e 375 smp_call_function_single(b->cpu, threshold_restart_bank, &tr, 1);
89b831ef 376
9319cec8 377 return size;
89b831ef
JS
378}
379
a6b6a14e 380struct threshold_block_cross_cpu {
1cb2a8e1
IM
381 struct threshold_block *tb;
382 long retval;
a6b6a14e
AM
383};
384
385static void local_error_count_handler(void *_tbcc)
89b831ef 386{
a6b6a14e
AM
387 struct threshold_block_cross_cpu *tbcc = _tbcc;
388 struct threshold_block *b = tbcc->tb;
4cd4601d
MT
389 u32 low, high;
390
95268664 391 rdmsr(b->address, low, high);
a6b6a14e 392 tbcc->retval = (high & 0xFFF) - (THRESHOLD_MAX - b->threshold_limit);
4cd4601d
MT
393}
394
395static ssize_t show_error_count(struct threshold_block *b, char *buf)
396{
a6b6a14e
AM
397 struct threshold_block_cross_cpu tbcc = { .tb = b, };
398
399 smp_call_function_single(b->cpu, local_error_count_handler, &tbcc, 1);
400 return sprintf(buf, "%lx\n", tbcc.retval);
89b831ef
JS
401}
402
95268664 403static ssize_t store_error_count(struct threshold_block *b,
89b831ef
JS
404 const char *buf, size_t count)
405{
4cd4601d
MT
406 struct thresh_restart tr = { .b = b, .reset = 1, .old_limit = 0 };
407
a6b6a14e 408 smp_call_function_single(b->cpu, threshold_restart_bank, &tr, 1);
89b831ef
JS
409 return 1;
410}
411
34fa1967
HS
412#define RW_ATTR(val) \
413static struct threshold_attr val = { \
414 .attr = {.name = __stringify(val), .mode = 0644 }, \
415 .show = show_## val, \
416 .store = store_## val, \
89b831ef
JS
417};
418
2903ee85
JS
419RW_ATTR(interrupt_enable);
420RW_ATTR(threshold_limit);
421RW_ATTR(error_count);
89b831ef
JS
422
423static struct attribute *default_attrs[] = {
89b831ef
JS
424 &threshold_limit.attr,
425 &error_count.attr,
d26ecc48
BP
426 NULL, /* possibly interrupt_enable if supported, see below */
427 NULL,
89b831ef
JS
428};
429
1cb2a8e1
IM
430#define to_block(k) container_of(k, struct threshold_block, kobj)
431#define to_attr(a) container_of(a, struct threshold_attr, attr)
89b831ef
JS
432
433static ssize_t show(struct kobject *kobj, struct attribute *attr, char *buf)
434{
95268664 435 struct threshold_block *b = to_block(kobj);
89b831ef
JS
436 struct threshold_attr *a = to_attr(attr);
437 ssize_t ret;
1cb2a8e1 438
89b831ef 439 ret = a->show ? a->show(b, buf) : -EIO;
1cb2a8e1 440
89b831ef
JS
441 return ret;
442}
443
444static ssize_t store(struct kobject *kobj, struct attribute *attr,
445 const char *buf, size_t count)
446{
95268664 447 struct threshold_block *b = to_block(kobj);
89b831ef
JS
448 struct threshold_attr *a = to_attr(attr);
449 ssize_t ret;
1cb2a8e1 450
89b831ef 451 ret = a->store ? a->store(b, buf, count) : -EIO;
1cb2a8e1 452
89b831ef
JS
453 return ret;
454}
455
52cf25d0 456static const struct sysfs_ops threshold_ops = {
1cb2a8e1
IM
457 .show = show,
458 .store = store,
89b831ef
JS
459};
460
461static struct kobj_type threshold_ktype = {
1cb2a8e1
IM
462 .sysfs_ops = &threshold_ops,
463 .default_attrs = default_attrs,
89b831ef
JS
464};
465
95268664
JS
466static __cpuinit int allocate_threshold_blocks(unsigned int cpu,
467 unsigned int bank,
468 unsigned int block,
469 u32 address)
470{
95268664 471 struct threshold_block *b = NULL;
1cb2a8e1
IM
472 u32 low, high;
473 int err;
95268664
JS
474
475 if ((bank >= NR_BANKS) || (block >= NR_BLOCKS))
476 return 0;
477
a6b6a14e 478 if (rdmsr_safe_on_cpu(cpu, address, &low, &high))
24ce0e96 479 return 0;
95268664
JS
480
481 if (!(high & MASK_VALID_HI)) {
482 if (block)
483 goto recurse;
484 else
485 return 0;
486 }
487
24ce0e96
JB
488 if (!(high & MASK_CNTP_HI) ||
489 (high & MASK_LOCKED_HI))
95268664
JS
490 goto recurse;
491
492 b = kzalloc(sizeof(struct threshold_block), GFP_KERNEL);
493 if (!b)
494 return -ENOMEM;
95268664 495
1cb2a8e1
IM
496 b->block = block;
497 b->bank = bank;
498 b->cpu = cpu;
499 b->address = address;
500 b->interrupt_enable = 0;
f227d430 501 b->interrupt_capable = lvt_interrupt_supported(bank, high);
1cb2a8e1 502 b->threshold_limit = THRESHOLD_MAX;
95268664 503
d26ecc48
BP
504 if (b->interrupt_capable)
505 threshold_ktype.default_attrs[2] = &interrupt_enable.attr;
506 else
507 threshold_ktype.default_attrs[2] = NULL;
508
95268664
JS
509 INIT_LIST_HEAD(&b->miscj);
510
1cb2a8e1 511 if (per_cpu(threshold_banks, cpu)[bank]->blocks) {
95268664
JS
512 list_add(&b->miscj,
513 &per_cpu(threshold_banks, cpu)[bank]->blocks->miscj);
1cb2a8e1 514 } else {
95268664 515 per_cpu(threshold_banks, cpu)[bank]->blocks = b;
1cb2a8e1 516 }
95268664 517
542eb75a
GKH
518 err = kobject_init_and_add(&b->kobj, &threshold_ktype,
519 per_cpu(threshold_banks, cpu)[bank]->kobj,
520 "misc%i", block);
95268664
JS
521 if (err)
522 goto out_free;
523recurse:
524 if (!block) {
525 address = (low & MASK_BLKPTR_LO) >> 21;
526 if (!address)
527 return 0;
528 address += MCG_XBLK_ADDR;
1cb2a8e1 529 } else {
95268664 530 ++address;
1cb2a8e1 531 }
95268664
JS
532
533 err = allocate_threshold_blocks(cpu, bank, ++block, address);
534 if (err)
535 goto out_free;
536
213eca7f
GKH
537 if (b)
538 kobject_uevent(&b->kobj, KOBJ_ADD);
542eb75a 539
95268664
JS
540 return err;
541
542out_free:
543 if (b) {
38a382ae 544 kobject_put(&b->kobj);
d9a5ac9e 545 list_del(&b->miscj);
95268664
JS
546 kfree(b);
547 }
548 return err;
549}
550
a6b6a14e
AM
551static __cpuinit long
552local_allocate_threshold_blocks(int cpu, unsigned int bank)
4cd4601d 553{
a6b6a14e
AM
554 return allocate_threshold_blocks(cpu, bank, 0,
555 MSR_IA32_MC0_MISC + bank * 4);
4cd4601d
MT
556}
557
89b831ef 558/* symlinks sibling shared banks to first core. first core owns dir/files. */
95268664 559static __cpuinit int threshold_create_bank(unsigned int cpu, unsigned int bank)
89b831ef 560{
95268664 561 int i, err = 0;
68209407 562 struct threshold_bank *b = NULL;
d6126ef5 563 struct device *dev = per_cpu(mce_device, cpu);
95268664
JS
564 char name[32];
565
566 sprintf(name, "threshold_bank%i", bank);
89b831ef 567
3f806e50 568#ifdef CONFIG_SMP
92cb7612 569 if (cpu_data(cpu).cpu_core_id && shared_bank[bank]) { /* symlink */
b3d7336d 570 i = cpumask_first(cpu_llc_shared_mask(cpu));
95268664
JS
571
572 /* first core not up yet */
92cb7612 573 if (cpu_data(i).cpu_core_id)
95268664
JS
574 goto out;
575
576 /* already linked */
577 if (per_cpu(threshold_banks, cpu)[bank])
578 goto out;
579
580 b = per_cpu(threshold_banks, i)[bank];
89b831ef 581
89b831ef
JS
582 if (!b)
583 goto out;
95268664 584
e032d807 585 err = sysfs_create_link(&dev->kobj, b->kobj, name);
89b831ef
JS
586 if (err)
587 goto out;
95268664 588
b3d7336d 589 cpumask_copy(b->cpus, cpu_llc_shared_mask(cpu));
89b831ef 590 per_cpu(threshold_banks, cpu)[bank] = b;
1cb2a8e1 591
89b831ef
JS
592 goto out;
593 }
3f806e50 594#endif
89b831ef 595
95268664 596 b = kzalloc(sizeof(struct threshold_bank), GFP_KERNEL);
89b831ef
JS
597 if (!b) {
598 err = -ENOMEM;
599 goto out;
600 }
1389298f 601 if (!zalloc_cpumask_var(&b->cpus, GFP_KERNEL)) {
a1c33bbe
MT
602 kfree(b);
603 err = -ENOMEM;
604 goto out;
605 }
89b831ef 606
e032d807 607 b->kobj = kobject_create_and_add(name, &dev->kobj);
a521cf20
GKH
608 if (!b->kobj)
609 goto out_free;
610
95268664 611#ifndef CONFIG_SMP
a1c33bbe 612 cpumask_setall(b->cpus);
95268664 613#else
1389298f 614 cpumask_set_cpu(cpu, b->cpus);
95268664 615#endif
95268664 616
89b831ef 617 per_cpu(threshold_banks, cpu)[bank] = b;
95268664 618
a6b6a14e 619 err = local_allocate_threshold_blocks(cpu, bank);
95268664
JS
620 if (err)
621 goto out_free;
622
a1c33bbe 623 for_each_cpu(i, b->cpus) {
95268664
JS
624 if (i == cpu)
625 continue;
626
d6126ef5 627 dev = per_cpu(mce_device, i);
e032d807
GKH
628 if (dev)
629 err = sysfs_create_link(&dev->kobj,b->kobj, name);
95268664
JS
630 if (err)
631 goto out;
632
633 per_cpu(threshold_banks, i)[bank] = b;
634 }
635
636 goto out;
637
638out_free:
639 per_cpu(threshold_banks, cpu)[bank] = NULL;
a1c33bbe 640 free_cpumask_var(b->cpus);
95268664 641 kfree(b);
2903ee85 642out:
89b831ef
JS
643 return err;
644}
645
646/* create dir/files for all valid threshold banks */
647static __cpuinit int threshold_create_device(unsigned int cpu)
648{
2903ee85 649 unsigned int bank;
89b831ef
JS
650 int err = 0;
651
89b831ef 652 for (bank = 0; bank < NR_BANKS; ++bank) {
5a96f4a5 653 if (!(per_cpu(bank_map, cpu) & (1 << bank)))
89b831ef
JS
654 continue;
655 err = threshold_create_bank(cpu, bank);
656 if (err)
0a17941e 657 return err;
89b831ef 658 }
0a17941e 659
89b831ef
JS
660 return err;
661}
662
89b831ef
JS
663/*
664 * let's be hotplug friendly.
665 * in case of multiple core processors, the first core always takes ownership
666 * of shared sysfs dir/files, and rest of the cores will be symlinked to it.
667 */
668
be6b5a35 669static void deallocate_threshold_block(unsigned int cpu,
95268664
JS
670 unsigned int bank)
671{
672 struct threshold_block *pos = NULL;
673 struct threshold_block *tmp = NULL;
674 struct threshold_bank *head = per_cpu(threshold_banks, cpu)[bank];
675
676 if (!head)
677 return;
678
679 list_for_each_entry_safe(pos, tmp, &head->blocks->miscj, miscj) {
38a382ae 680 kobject_put(&pos->kobj);
95268664
JS
681 list_del(&pos->miscj);
682 kfree(pos);
683 }
684
685 kfree(per_cpu(threshold_banks, cpu)[bank]->blocks);
686 per_cpu(threshold_banks, cpu)[bank]->blocks = NULL;
687}
688
be6b5a35 689static void threshold_remove_bank(unsigned int cpu, int bank)
89b831ef
JS
690{
691 struct threshold_bank *b;
e032d807 692 struct device *dev;
95268664 693 char name[32];
1cb2a8e1 694 int i = 0;
89b831ef
JS
695
696 b = per_cpu(threshold_banks, cpu)[bank];
697 if (!b)
698 return;
95268664
JS
699 if (!b->blocks)
700 goto free_out;
701
702 sprintf(name, "threshold_bank%i", bank);
703
02316067 704#ifdef CONFIG_SMP
95268664
JS
705 /* sibling symlink */
706 if (shared_bank[bank] && b->blocks->cpu != cpu) {
d6126ef5
GKH
707 dev = per_cpu(mce_device, cpu);
708 sysfs_remove_link(&dev->kobj, name);
0d2caebd 709 per_cpu(threshold_banks, cpu)[bank] = NULL;
1cb2a8e1 710
95268664 711 return;
89b831ef 712 }
02316067 713#endif
95268664
JS
714
715 /* remove all sibling symlinks before unregistering */
a1c33bbe 716 for_each_cpu(i, b->cpus) {
95268664
JS
717 if (i == cpu)
718 continue;
719
d6126ef5 720 dev = per_cpu(mce_device, i);
e032d807
GKH
721 if (dev)
722 sysfs_remove_link(&dev->kobj, name);
95268664
JS
723 per_cpu(threshold_banks, i)[bank] = NULL;
724 }
725
726 deallocate_threshold_block(cpu, bank);
727
728free_out:
8735728e 729 kobject_del(b->kobj);
38a382ae 730 kobject_put(b->kobj);
a1c33bbe 731 free_cpumask_var(b->cpus);
95268664
JS
732 kfree(b);
733 per_cpu(threshold_banks, cpu)[bank] = NULL;
89b831ef
JS
734}
735
be6b5a35 736static void threshold_remove_device(unsigned int cpu)
89b831ef 737{
2903ee85 738 unsigned int bank;
89b831ef
JS
739
740 for (bank = 0; bank < NR_BANKS; ++bank) {
5a96f4a5 741 if (!(per_cpu(bank_map, cpu) & (1 << bank)))
89b831ef
JS
742 continue;
743 threshold_remove_bank(cpu, bank);
744 }
89b831ef
JS
745}
746
89b831ef 747/* get notified when a cpu comes on/off */
1cb2a8e1
IM
748static void __cpuinit
749amd_64_threshold_cpu_callback(unsigned long action, unsigned int cpu)
89b831ef 750{
89b831ef
JS
751 switch (action) {
752 case CPU_ONLINE:
8bb78442 753 case CPU_ONLINE_FROZEN:
89b831ef 754 threshold_create_device(cpu);
89b831ef
JS
755 break;
756 case CPU_DEAD:
8bb78442 757 case CPU_DEAD_FROZEN:
89b831ef
JS
758 threshold_remove_device(cpu);
759 break;
760 default:
761 break;
762 }
89b831ef
JS
763}
764
89b831ef
JS
765static __init int threshold_init_device(void)
766{
2903ee85 767 unsigned lcpu = 0;
89b831ef 768
89b831ef
JS
769 /* to hit CPUs online before the notifier is up */
770 for_each_online_cpu(lcpu) {
fff2e89f 771 int err = threshold_create_device(lcpu);
1cb2a8e1 772
89b831ef 773 if (err)
fff2e89f 774 return err;
89b831ef 775 }
8735728e 776 threshold_cpu_callback = amd_64_threshold_cpu_callback;
1cb2a8e1 777
fff2e89f 778 return 0;
89b831ef 779}
89b831ef 780device_initcall(threshold_init_device);