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