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