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