iwlwifi: don't include iwl-dev.h from iwl-devtrace.h
[GitHub/mt8127/android_kernel_alcatel_ttab.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>
89b831ef 20#include <linux/sysdev.h>
1cb2a8e1
IM
21#include <linux/errno.h>
22#include <linux/sched.h>
89b831ef 23#include <linux/sysfs.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 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 71};
204fba4a 72static DEFINE_PER_CPU(struct threshold_bank * [NR_BANKS], threshold_banks);
95268664 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 271static ssize_t
9319cec8 272store_interrupt_enable(struct threshold_block *b, const char *buf, size_t size)
89b831ef 273{
4cd4601d 274 struct thresh_restart tr;
1cb2a8e1 275 unsigned long new;
1cb2a8e1 276
9319cec8 277 if (strict_strtoul(buf, 0, &new) < 0)
89b831ef 278 return -EINVAL;
1cb2a8e1 279
89b831ef
JS
280 b->interrupt_enable = !!new;
281
1cb2a8e1
IM
282 tr.b = b;
283 tr.reset = 0;
284 tr.old_limit = 0;
285
a6b6a14e 286 smp_call_function_single(b->cpu, threshold_restart_bank, &tr, 1);
89b831ef 287
9319cec8 288 return size;
89b831ef
JS
289}
290
1cb2a8e1 291static ssize_t
9319cec8 292store_threshold_limit(struct threshold_block *b, const char *buf, size_t size)
89b831ef 293{
4cd4601d 294 struct thresh_restart tr;
1cb2a8e1 295 unsigned long new;
1cb2a8e1 296
9319cec8 297 if (strict_strtoul(buf, 0, &new) < 0)
89b831ef 298 return -EINVAL;
1cb2a8e1 299
89b831ef
JS
300 if (new > THRESHOLD_MAX)
301 new = THRESHOLD_MAX;
302 if (new < 1)
303 new = 1;
1cb2a8e1 304
4cd4601d 305 tr.old_limit = b->threshold_limit;
89b831ef 306 b->threshold_limit = new;
4cd4601d
MT
307 tr.b = b;
308 tr.reset = 0;
89b831ef 309
a6b6a14e 310 smp_call_function_single(b->cpu, threshold_restart_bank, &tr, 1);
89b831ef 311
9319cec8 312 return size;
89b831ef
JS
313}
314
a6b6a14e 315struct threshold_block_cross_cpu {
1cb2a8e1
IM
316 struct threshold_block *tb;
317 long retval;
a6b6a14e
AM
318};
319
320static void local_error_count_handler(void *_tbcc)
89b831ef 321{
a6b6a14e
AM
322 struct threshold_block_cross_cpu *tbcc = _tbcc;
323 struct threshold_block *b = tbcc->tb;
4cd4601d
MT
324 u32 low, high;
325
95268664 326 rdmsr(b->address, low, high);
a6b6a14e 327 tbcc->retval = (high & 0xFFF) - (THRESHOLD_MAX - b->threshold_limit);
4cd4601d
MT
328}
329
330static ssize_t show_error_count(struct threshold_block *b, char *buf)
331{
a6b6a14e
AM
332 struct threshold_block_cross_cpu tbcc = { .tb = b, };
333
334 smp_call_function_single(b->cpu, local_error_count_handler, &tbcc, 1);
335 return sprintf(buf, "%lx\n", tbcc.retval);
89b831ef
JS
336}
337
95268664 338static ssize_t store_error_count(struct threshold_block *b,
89b831ef
JS
339 const char *buf, size_t count)
340{
4cd4601d
MT
341 struct thresh_restart tr = { .b = b, .reset = 1, .old_limit = 0 };
342
a6b6a14e 343 smp_call_function_single(b->cpu, threshold_restart_bank, &tr, 1);
89b831ef
JS
344 return 1;
345}
346
34fa1967
HS
347#define RW_ATTR(val) \
348static struct threshold_attr val = { \
349 .attr = {.name = __stringify(val), .mode = 0644 }, \
350 .show = show_## val, \
351 .store = store_## val, \
89b831ef
JS
352};
353
2903ee85
JS
354RW_ATTR(interrupt_enable);
355RW_ATTR(threshold_limit);
356RW_ATTR(error_count);
89b831ef
JS
357
358static struct attribute *default_attrs[] = {
359 &interrupt_enable.attr,
360 &threshold_limit.attr,
361 &error_count.attr,
362 NULL
363};
364
1cb2a8e1
IM
365#define to_block(k) container_of(k, struct threshold_block, kobj)
366#define to_attr(a) container_of(a, struct threshold_attr, attr)
89b831ef
JS
367
368static ssize_t show(struct kobject *kobj, struct attribute *attr, char *buf)
369{
95268664 370 struct threshold_block *b = to_block(kobj);
89b831ef
JS
371 struct threshold_attr *a = to_attr(attr);
372 ssize_t ret;
1cb2a8e1 373
89b831ef 374 ret = a->show ? a->show(b, buf) : -EIO;
1cb2a8e1 375
89b831ef
JS
376 return ret;
377}
378
379static ssize_t store(struct kobject *kobj, struct attribute *attr,
380 const char *buf, size_t count)
381{
95268664 382 struct threshold_block *b = to_block(kobj);
89b831ef
JS
383 struct threshold_attr *a = to_attr(attr);
384 ssize_t ret;
1cb2a8e1 385
89b831ef 386 ret = a->store ? a->store(b, buf, count) : -EIO;
1cb2a8e1 387
89b831ef
JS
388 return ret;
389}
390
52cf25d0 391static const struct sysfs_ops threshold_ops = {
1cb2a8e1
IM
392 .show = show,
393 .store = store,
89b831ef
JS
394};
395
396static struct kobj_type threshold_ktype = {
1cb2a8e1
IM
397 .sysfs_ops = &threshold_ops,
398 .default_attrs = default_attrs,
89b831ef
JS
399};
400
95268664
JS
401static __cpuinit int allocate_threshold_blocks(unsigned int cpu,
402 unsigned int bank,
403 unsigned int block,
404 u32 address)
405{
95268664 406 struct threshold_block *b = NULL;
1cb2a8e1
IM
407 u32 low, high;
408 int err;
95268664
JS
409
410 if ((bank >= NR_BANKS) || (block >= NR_BLOCKS))
411 return 0;
412
a6b6a14e 413 if (rdmsr_safe_on_cpu(cpu, address, &low, &high))
24ce0e96 414 return 0;
95268664
JS
415
416 if (!(high & MASK_VALID_HI)) {
417 if (block)
418 goto recurse;
419 else
420 return 0;
421 }
422
24ce0e96
JB
423 if (!(high & MASK_CNTP_HI) ||
424 (high & MASK_LOCKED_HI))
95268664
JS
425 goto recurse;
426
427 b = kzalloc(sizeof(struct threshold_block), GFP_KERNEL);
428 if (!b)
429 return -ENOMEM;
95268664 430
1cb2a8e1
IM
431 b->block = block;
432 b->bank = bank;
433 b->cpu = cpu;
434 b->address = address;
435 b->interrupt_enable = 0;
436 b->threshold_limit = THRESHOLD_MAX;
95268664
JS
437
438 INIT_LIST_HEAD(&b->miscj);
439
1cb2a8e1 440 if (per_cpu(threshold_banks, cpu)[bank]->blocks) {
95268664
JS
441 list_add(&b->miscj,
442 &per_cpu(threshold_banks, cpu)[bank]->blocks->miscj);
1cb2a8e1 443 } else {
95268664 444 per_cpu(threshold_banks, cpu)[bank]->blocks = b;
1cb2a8e1 445 }
95268664 446
542eb75a
GKH
447 err = kobject_init_and_add(&b->kobj, &threshold_ktype,
448 per_cpu(threshold_banks, cpu)[bank]->kobj,
449 "misc%i", block);
95268664
JS
450 if (err)
451 goto out_free;
452recurse:
453 if (!block) {
454 address = (low & MASK_BLKPTR_LO) >> 21;
455 if (!address)
456 return 0;
457 address += MCG_XBLK_ADDR;
1cb2a8e1 458 } else {
95268664 459 ++address;
1cb2a8e1 460 }
95268664
JS
461
462 err = allocate_threshold_blocks(cpu, bank, ++block, address);
463 if (err)
464 goto out_free;
465
213eca7f
GKH
466 if (b)
467 kobject_uevent(&b->kobj, KOBJ_ADD);
542eb75a 468
95268664
JS
469 return err;
470
471out_free:
472 if (b) {
38a382ae 473 kobject_put(&b->kobj);
95268664
JS
474 kfree(b);
475 }
476 return err;
477}
478
a6b6a14e
AM
479static __cpuinit long
480local_allocate_threshold_blocks(int cpu, unsigned int bank)
4cd4601d 481{
a6b6a14e
AM
482 return allocate_threshold_blocks(cpu, bank, 0,
483 MSR_IA32_MC0_MISC + bank * 4);
4cd4601d
MT
484}
485
89b831ef 486/* symlinks sibling shared banks to first core. first core owns dir/files. */
95268664 487static __cpuinit int threshold_create_bank(unsigned int cpu, unsigned int bank)
89b831ef 488{
95268664 489 int i, err = 0;
68209407 490 struct threshold_bank *b = NULL;
95268664 491 char name[32];
a017421d 492#ifdef CONFIG_SMP
cb9805ab 493 struct cpuinfo_x86 *c = &cpu_data(cpu);
a017421d 494#endif
95268664
JS
495
496 sprintf(name, "threshold_bank%i", bank);
89b831ef
JS
497
498#ifdef CONFIG_SMP
92cb7612 499 if (cpu_data(cpu).cpu_core_id && shared_bank[bank]) { /* symlink */
cb9805ab 500 i = cpumask_first(c->llc_shared_map);
95268664
JS
501
502 /* first core not up yet */
92cb7612 503 if (cpu_data(i).cpu_core_id)
95268664
JS
504 goto out;
505
506 /* already linked */
507 if (per_cpu(threshold_banks, cpu)[bank])
508 goto out;
509
510 b = per_cpu(threshold_banks, i)[bank];
89b831ef 511
89b831ef
JS
512 if (!b)
513 goto out;
95268664 514
cb491fca 515 err = sysfs_create_link(&per_cpu(mce_dev, cpu).kobj,
a521cf20 516 b->kobj, name);
89b831ef
JS
517 if (err)
518 goto out;
95268664 519
cb9805ab 520 cpumask_copy(b->cpus, c->llc_shared_map);
89b831ef 521 per_cpu(threshold_banks, cpu)[bank] = b;
1cb2a8e1 522
89b831ef
JS
523 goto out;
524 }
525#endif
526
95268664 527 b = kzalloc(sizeof(struct threshold_bank), GFP_KERNEL);
89b831ef
JS
528 if (!b) {
529 err = -ENOMEM;
530 goto out;
531 }
a1c33bbe
MT
532 if (!alloc_cpumask_var(&b->cpus, GFP_KERNEL)) {
533 kfree(b);
534 err = -ENOMEM;
535 goto out;
536 }
89b831ef 537
cb491fca 538 b->kobj = kobject_create_and_add(name, &per_cpu(mce_dev, cpu).kobj);
a521cf20
GKH
539 if (!b->kobj)
540 goto out_free;
541
95268664 542#ifndef CONFIG_SMP
a1c33bbe 543 cpumask_setall(b->cpus);
95268664 544#else
cb9805ab 545 cpumask_copy(b->cpus, c->llc_shared_map);
95268664 546#endif
95268664 547
89b831ef 548 per_cpu(threshold_banks, cpu)[bank] = b;
95268664 549
a6b6a14e 550 err = local_allocate_threshold_blocks(cpu, bank);
95268664
JS
551 if (err)
552 goto out_free;
553
a1c33bbe 554 for_each_cpu(i, b->cpus) {
95268664
JS
555 if (i == cpu)
556 continue;
557
cb491fca 558 err = sysfs_create_link(&per_cpu(mce_dev, i).kobj,
a521cf20 559 b->kobj, name);
95268664
JS
560 if (err)
561 goto out;
562
563 per_cpu(threshold_banks, i)[bank] = b;
564 }
565
566 goto out;
567
568out_free:
569 per_cpu(threshold_banks, cpu)[bank] = NULL;
a1c33bbe 570 free_cpumask_var(b->cpus);
95268664 571 kfree(b);
2903ee85 572out:
89b831ef
JS
573 return err;
574}
575
576/* create dir/files for all valid threshold banks */
577static __cpuinit int threshold_create_device(unsigned int cpu)
578{
2903ee85 579 unsigned int bank;
89b831ef
JS
580 int err = 0;
581
89b831ef 582 for (bank = 0; bank < NR_BANKS; ++bank) {
5a96f4a5 583 if (!(per_cpu(bank_map, cpu) & (1 << bank)))
89b831ef
JS
584 continue;
585 err = threshold_create_bank(cpu, bank);
586 if (err)
587 goto out;
588 }
2903ee85 589out:
89b831ef
JS
590 return err;
591}
592
89b831ef
JS
593/*
594 * let's be hotplug friendly.
595 * in case of multiple core processors, the first core always takes ownership
596 * of shared sysfs dir/files, and rest of the cores will be symlinked to it.
597 */
598
be6b5a35 599static void deallocate_threshold_block(unsigned int cpu,
95268664
JS
600 unsigned int bank)
601{
602 struct threshold_block *pos = NULL;
603 struct threshold_block *tmp = NULL;
604 struct threshold_bank *head = per_cpu(threshold_banks, cpu)[bank];
605
606 if (!head)
607 return;
608
609 list_for_each_entry_safe(pos, tmp, &head->blocks->miscj, miscj) {
38a382ae 610 kobject_put(&pos->kobj);
95268664
JS
611 list_del(&pos->miscj);
612 kfree(pos);
613 }
614
615 kfree(per_cpu(threshold_banks, cpu)[bank]->blocks);
616 per_cpu(threshold_banks, cpu)[bank]->blocks = NULL;
617}
618
be6b5a35 619static void threshold_remove_bank(unsigned int cpu, int bank)
89b831ef
JS
620{
621 struct threshold_bank *b;
95268664 622 char name[32];
1cb2a8e1 623 int i = 0;
89b831ef
JS
624
625 b = per_cpu(threshold_banks, cpu)[bank];
626 if (!b)
627 return;
95268664
JS
628 if (!b->blocks)
629 goto free_out;
630
631 sprintf(name, "threshold_bank%i", bank);
632
02316067 633#ifdef CONFIG_SMP
95268664
JS
634 /* sibling symlink */
635 if (shared_bank[bank] && b->blocks->cpu != cpu) {
cb491fca 636 sysfs_remove_link(&per_cpu(mce_dev, cpu).kobj, name);
0d2caebd 637 per_cpu(threshold_banks, cpu)[bank] = NULL;
1cb2a8e1 638
95268664 639 return;
89b831ef 640 }
02316067 641#endif
95268664
JS
642
643 /* remove all sibling symlinks before unregistering */
a1c33bbe 644 for_each_cpu(i, b->cpus) {
95268664
JS
645 if (i == cpu)
646 continue;
647
cb491fca 648 sysfs_remove_link(&per_cpu(mce_dev, i).kobj, name);
95268664
JS
649 per_cpu(threshold_banks, i)[bank] = NULL;
650 }
651
652 deallocate_threshold_block(cpu, bank);
653
654free_out:
8735728e 655 kobject_del(b->kobj);
38a382ae 656 kobject_put(b->kobj);
a1c33bbe 657 free_cpumask_var(b->cpus);
95268664
JS
658 kfree(b);
659 per_cpu(threshold_banks, cpu)[bank] = NULL;
89b831ef
JS
660}
661
be6b5a35 662static void threshold_remove_device(unsigned int cpu)
89b831ef 663{
2903ee85 664 unsigned int bank;
89b831ef
JS
665
666 for (bank = 0; bank < NR_BANKS; ++bank) {
5a96f4a5 667 if (!(per_cpu(bank_map, cpu) & (1 << bank)))
89b831ef
JS
668 continue;
669 threshold_remove_bank(cpu, bank);
670 }
89b831ef
JS
671}
672
89b831ef 673/* get notified when a cpu comes on/off */
1cb2a8e1
IM
674static void __cpuinit
675amd_64_threshold_cpu_callback(unsigned long action, unsigned int cpu)
89b831ef 676{
89b831ef
JS
677 switch (action) {
678 case CPU_ONLINE:
8bb78442 679 case CPU_ONLINE_FROZEN:
89b831ef 680 threshold_create_device(cpu);
89b831ef
JS
681 break;
682 case CPU_DEAD:
8bb78442 683 case CPU_DEAD_FROZEN:
89b831ef
JS
684 threshold_remove_device(cpu);
685 break;
686 default:
687 break;
688 }
89b831ef
JS
689}
690
89b831ef
JS
691static __init int threshold_init_device(void)
692{
2903ee85 693 unsigned lcpu = 0;
89b831ef 694
89b831ef
JS
695 /* to hit CPUs online before the notifier is up */
696 for_each_online_cpu(lcpu) {
fff2e89f 697 int err = threshold_create_device(lcpu);
1cb2a8e1 698
89b831ef 699 if (err)
fff2e89f 700 return err;
89b831ef 701 }
8735728e 702 threshold_cpu_callback = amd_64_threshold_cpu_callback;
1cb2a8e1 703
fff2e89f 704 return 0;
89b831ef 705}
89b831ef 706device_initcall(threshold_init_device);