mce_amd_64.c 15.2 KB
Newer Older
1
/*
2
 *  (c) 2005, 2006 Advanced Micro Devices, Inc.
3 4 5 6 7 8 9 10
 *  Your use of this code is subject to the terms and conditions of the
 *  GNU general public license version 2. See "COPYING" or
 *  http://www.gnu.org/licenses/gpl.html
 *
 *  Written by Jacob Shin - AMD, Inc.
 *
 *  Support : jacob.shin@amd.com
 *
11 12
 *  April 2006
 *     - added support for AMD Family 0x10 processors
13
 *
14
 *  All MC4_MISCi registers are shared between multi-cores
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
 */

#include <linux/cpu.h>
#include <linux/errno.h>
#include <linux/init.h>
#include <linux/interrupt.h>
#include <linux/kobject.h>
#include <linux/notifier.h>
#include <linux/sched.h>
#include <linux/smp.h>
#include <linux/sysdev.h>
#include <linux/sysfs.h>
#include <asm/apic.h>
#include <asm/mce.h>
#include <asm/msr.h>
#include <asm/percpu.h>
A
Andi Kleen 已提交
31
#include <asm/idle.h>
32

J
Jacob Shin 已提交
33 34 35 36 37 38 39
#define PFX               "mce_threshold: "
#define VERSION           "version 1.1.1"
#define NR_BANKS          6
#define NR_BLOCKS         9
#define THRESHOLD_MAX     0xFFF
#define INT_TYPE_APIC     0x00020000
#define MASK_VALID_HI     0x80000000
40 41
#define MASK_CNTP_HI      0x40000000
#define MASK_LOCKED_HI    0x20000000
J
Jacob Shin 已提交
42 43 44 45
#define MASK_LVTOFF_HI    0x00F00000
#define MASK_COUNT_EN_HI  0x00080000
#define MASK_INT_TYPE_HI  0x00060000
#define MASK_OVERFLOW_HI  0x00010000
46
#define MASK_ERR_COUNT_HI 0x00000FFF
47 48
#define MASK_BLKPTR_LO    0xFF000000
#define MCG_XBLK_ADDR     0xC0000400
49

50 51 52
struct threshold_block {
	unsigned int block;
	unsigned int bank;
53
	unsigned int cpu;
54 55
	u32 address;
	u16 interrupt_enable;
56 57
	u16 threshold_limit;
	struct kobject kobj;
58
	struct list_head miscj;
59 60
};

61 62
/* defaults used early on boot */
static struct threshold_block threshold_defaults = {
63 64 65 66
	.interrupt_enable = 0,
	.threshold_limit = THRESHOLD_MAX,
};

67
struct threshold_bank {
68
	struct kobject *kobj;
69 70 71 72 73
	struct threshold_block *blocks;
	cpumask_t cpus;
};
static DEFINE_PER_CPU(struct threshold_bank *, threshold_banks[NR_BANKS]);

74 75 76 77 78 79 80 81 82 83 84 85
#ifdef CONFIG_SMP
static unsigned char shared_bank[NR_BANKS] = {
	0, 0, 0, 0, 1
};
#endif

static DEFINE_PER_CPU(unsigned char, bank_map);	/* see which banks are on */

/*
 * CPU Initialization
 */

86 87 88 89 90 91
struct thresh_restart {
	struct threshold_block *b;
	int reset;
	u16 old_limit;
};

92
/* must be called with correct cpu affinity */
93
static long threshold_restart_bank(void *_tr)
94
{
95
	struct thresh_restart *tr = _tr;
96 97
	u32 mci_misc_hi, mci_misc_lo;

98
	rdmsr(tr->b->address, mci_misc_lo, mci_misc_hi);
99

100 101
	if (tr->b->threshold_limit < (mci_misc_hi & THRESHOLD_MAX))
		tr->reset = 1;	/* limit cannot be lower than err count */
102

103
	if (tr->reset) {		/* reset err count and overflow bit */
104 105
		mci_misc_hi =
		    (mci_misc_hi & ~(MASK_ERR_COUNT_HI | MASK_OVERFLOW_HI)) |
106 107
		    (THRESHOLD_MAX - tr->b->threshold_limit);
	} else if (tr->old_limit) {	/* change limit w/o reset */
108
		int new_count = (mci_misc_hi & THRESHOLD_MAX) +
109
		    (tr->old_limit - tr->b->threshold_limit);
110 111 112 113
		mci_misc_hi = (mci_misc_hi & ~MASK_ERR_COUNT_HI) |
		    (new_count & THRESHOLD_MAX);
	}

114
	tr->b->interrupt_enable ?
115 116 117 118
	    (mci_misc_hi = (mci_misc_hi & ~MASK_INT_TYPE_HI) | INT_TYPE_APIC) :
	    (mci_misc_hi &= ~MASK_INT_TYPE_HI);

	mci_misc_hi |= MASK_COUNT_EN_HI;
119 120
	wrmsr(tr->b->address, mci_misc_lo, mci_misc_hi);
	return 0;
121 122
}

123
/* cpu init entry point, called from mce.c with preempt off */
124 125
void __cpuinit mce_amd_feature_init(struct cpuinfo_x86 *c)
{
126
	unsigned int bank, block;
127
	unsigned int cpu = smp_processor_id();
128
	u8 lvt_off;
129
	u32 low = 0, high = 0, address = 0;
130
	struct thresh_restart tr;
131 132

	for (bank = 0; bank < NR_BANKS; ++bank) {
133 134 135
		for (block = 0; block < NR_BLOCKS; ++block) {
			if (block == 0)
				address = MSR_IA32_MC0_MISC + bank * 4;
136 137 138 139 140 141
			else if (block == 1) {
				address = (low & MASK_BLKPTR_LO) >> 21;
				if (!address)
					break;
				address += MCG_XBLK_ADDR;
			}
142 143 144 145
			else
				++address;

			if (rdmsr_safe(address, &low, &high))
146
				break;
147 148 149 150 151 152 153 154

			if (!(high & MASK_VALID_HI)) {
				if (block)
					continue;
				else
					break;
			}

155 156
			if (!(high & MASK_CNTP_HI)  ||
			     (high & MASK_LOCKED_HI))
157 158 159 160
				continue;

			if (!block)
				per_cpu(bank_map, cpu) |= (1 << bank);
161
#ifdef CONFIG_SMP
162 163
			if (shared_bank[bank] && c->cpu_core_id)
				break;
164
#endif
165 166 167
			lvt_off = setup_APIC_eilvt_mce(THRESHOLD_APIC_VECTOR,
						       APIC_EILVT_MSG_FIX, 0);

168
			high &= ~MASK_LVTOFF_HI;
169
			high |= lvt_off << 20;
170 171 172
			wrmsr(address, low, high);

			threshold_defaults.address = address;
173 174 175 176
			tr.b = &threshold_defaults;
			tr.reset = 0;
			tr.old_limit = 0;
			threshold_restart_bank(&tr);
177
		}
178 179 180 181 182 183 184 185 186 187 188 189 190 191
	}
}

/*
 * APIC Interrupt Handler
 */

/*
 * threshold interrupt handler will service THRESHOLD_APIC_VECTOR.
 * the interrupt goes off when error_count reaches threshold_limit.
 * the handler will simply log mcelog w/ software defined bank number.
 */
asmlinkage void mce_threshold_interrupt(void)
{
192
	unsigned int bank, block;
193
	struct mce m;
194
	u32 low = 0, high = 0, address = 0;
195 196

	ack_APIC_irq();
A
Andi Kleen 已提交
197
	exit_idle();
198 199 200 201 202 203 204 205
	irq_enter();

	memset(&m, 0, sizeof(m));
	rdtscll(m.tsc);
	m.cpu = smp_processor_id();

	/* assume first bank caused it */
	for (bank = 0; bank < NR_BANKS; ++bank) {
206 207
		if (!(per_cpu(bank_map, m.cpu) & (1 << bank)))
			continue;
208 209 210
		for (block = 0; block < NR_BLOCKS; ++block) {
			if (block == 0)
				address = MSR_IA32_MC0_MISC + bank * 4;
211 212 213 214 215 216
			else if (block == 1) {
				address = (low & MASK_BLKPTR_LO) >> 21;
				if (!address)
					break;
				address += MCG_XBLK_ADDR;
			}
217 218 219 220
			else
				++address;

			if (rdmsr_safe(address, &low, &high))
221
				break;
222 223 224 225 226 227 228 229

			if (!(high & MASK_VALID_HI)) {
				if (block)
					continue;
				else
					break;
			}

230 231
			if (!(high & MASK_CNTP_HI)  ||
			     (high & MASK_LOCKED_HI))
232 233
				continue;

234 235 236 237
			/* Log the machine check that caused the threshold
			   event. */
			do_machine_check(NULL, 0);

238 239 240 241 242 243 244 245 246 247
			if (high & MASK_OVERFLOW_HI) {
				rdmsrl(address, m.misc);
				rdmsrl(MSR_IA32_MC0_STATUS + bank * 4,
				       m.status);
				m.bank = K8_MCE_THRESHOLD_BASE
				       + bank * NR_BLOCKS
				       + block;
				mce_log(&m);
				goto out;
			}
248 249
		}
	}
J
Jacob Shin 已提交
250
out:
251
	add_pda(irq_threshold_count, 1);
252 253 254 255 256 257 258 259
	irq_exit();
}

/*
 * Sysfs Interface
 */

struct threshold_attr {
J
Jacob Shin 已提交
260
	struct attribute attr;
261 262
	ssize_t(*show) (struct threshold_block *, char *);
	ssize_t(*store) (struct threshold_block *, const char *, size_t count);
263 264
};

J
Jacob Shin 已提交
265 266 267 268 269
#define SHOW_FIELDS(name)                                           \
static ssize_t show_ ## name(struct threshold_block * b, char *buf) \
{                                                                   \
        return sprintf(buf, "%lx\n", (unsigned long) b->name);      \
}
270 271 272
SHOW_FIELDS(interrupt_enable)
SHOW_FIELDS(threshold_limit)

273
static ssize_t store_interrupt_enable(struct threshold_block *b,
274 275 276
				      const char *buf, size_t count)
{
	char *end;
277
	struct thresh_restart tr;
278 279 280 281 282
	unsigned long new = simple_strtoul(buf, &end, 0);
	if (end == buf)
		return -EINVAL;
	b->interrupt_enable = !!new;

283 284 285 286
	tr.b = b;
	tr.reset = 0;
	tr.old_limit = 0;
	work_on_cpu(b->cpu, threshold_restart_bank, &tr);
287 288 289 290

	return end - buf;
}

291
static ssize_t store_threshold_limit(struct threshold_block *b,
292 293 294
				     const char *buf, size_t count)
{
	char *end;
295
	struct thresh_restart tr;
296 297 298 299 300 301 302
	unsigned long new = simple_strtoul(buf, &end, 0);
	if (end == buf)
		return -EINVAL;
	if (new > THRESHOLD_MAX)
		new = THRESHOLD_MAX;
	if (new < 1)
		new = 1;
303
	tr.old_limit = b->threshold_limit;
304
	b->threshold_limit = new;
305 306
	tr.b = b;
	tr.reset = 0;
307

308
	work_on_cpu(b->cpu, threshold_restart_bank, &tr);
309 310 311 312

	return end - buf;
}

313
static long local_error_count(void *_b)
314
{
315 316 317
	struct threshold_block *b = _b;
	u32 low, high;

318
	rdmsr(b->address, low, high);
319 320 321 322 323 324
	return (high & 0xFFF) - (THRESHOLD_MAX - b->threshold_limit);
}

static ssize_t show_error_count(struct threshold_block *b, char *buf)
{
	return sprintf(buf, "%lx\n", work_on_cpu(b->cpu, local_error_count, b));
325 326
}

327
static ssize_t store_error_count(struct threshold_block *b,
328 329
				 const char *buf, size_t count)
{
330 331 332
	struct thresh_restart tr = { .b = b, .reset = 1, .old_limit = 0 };

	work_on_cpu(b->cpu, threshold_restart_bank, &tr);
333 334 335 336 337 338 339 340 341
	return 1;
}

#define THRESHOLD_ATTR(_name,_mode,_show,_store) {            \
        .attr = {.name = __stringify(_name), .mode = _mode }, \
        .show = _show,                                        \
        .store = _store,                                      \
};

J
Jacob Shin 已提交
342 343
#define RW_ATTR(name)                                           \
static struct threshold_attr name =                             \
344 345
        THRESHOLD_ATTR(name, 0644, show_## name, store_## name)

J
Jacob Shin 已提交
346 347 348
RW_ATTR(interrupt_enable);
RW_ATTR(threshold_limit);
RW_ATTR(error_count);
349 350 351 352 353 354 355 356

static struct attribute *default_attrs[] = {
	&interrupt_enable.attr,
	&threshold_limit.attr,
	&error_count.attr,
	NULL
};

357
#define to_block(k) container_of(k, struct threshold_block, kobj)
J
Jacob Shin 已提交
358
#define to_attr(a) container_of(a, struct threshold_attr, attr)
359 360 361

static ssize_t show(struct kobject *kobj, struct attribute *attr, char *buf)
{
362
	struct threshold_block *b = to_block(kobj);
363 364 365 366 367 368 369 370 371
	struct threshold_attr *a = to_attr(attr);
	ssize_t ret;
	ret = a->show ? a->show(b, buf) : -EIO;
	return ret;
}

static ssize_t store(struct kobject *kobj, struct attribute *attr,
		     const char *buf, size_t count)
{
372
	struct threshold_block *b = to_block(kobj);
373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388
	struct threshold_attr *a = to_attr(attr);
	ssize_t ret;
	ret = a->store ? a->store(b, buf, count) : -EIO;
	return ret;
}

static struct sysfs_ops threshold_ops = {
	.show = show,
	.store = store,
};

static struct kobj_type threshold_ktype = {
	.sysfs_ops = &threshold_ops,
	.default_attrs = default_attrs,
};

389 390 391 392 393 394 395 396 397 398 399 400 401
static __cpuinit int allocate_threshold_blocks(unsigned int cpu,
					       unsigned int bank,
					       unsigned int block,
					       u32 address)
{
	int err;
	u32 low, high;
	struct threshold_block *b = NULL;

	if ((bank >= NR_BANKS) || (block >= NR_BLOCKS))
		return 0;

	if (rdmsr_safe(address, &low, &high))
402
		return 0;
403 404 405 406 407 408 409 410

	if (!(high & MASK_VALID_HI)) {
		if (block)
			goto recurse;
		else
			return 0;
	}

411 412
	if (!(high & MASK_CNTP_HI)  ||
	     (high & MASK_LOCKED_HI))
413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433
		goto recurse;

	b = kzalloc(sizeof(struct threshold_block), GFP_KERNEL);
	if (!b)
		return -ENOMEM;

	b->block = block;
	b->bank = bank;
	b->cpu = cpu;
	b->address = address;
	b->interrupt_enable = 0;
	b->threshold_limit = THRESHOLD_MAX;

	INIT_LIST_HEAD(&b->miscj);

	if (per_cpu(threshold_banks, cpu)[bank]->blocks)
		list_add(&b->miscj,
			 &per_cpu(threshold_banks, cpu)[bank]->blocks->miscj);
	else
		per_cpu(threshold_banks, cpu)[bank]->blocks = b;

434 435 436
	err = kobject_init_and_add(&b->kobj, &threshold_ktype,
				   per_cpu(threshold_banks, cpu)[bank]->kobj,
				   "misc%i", block);
437 438 439 440 441 442 443 444 445 446 447 448 449 450 451
	if (err)
		goto out_free;
recurse:
	if (!block) {
		address = (low & MASK_BLKPTR_LO) >> 21;
		if (!address)
			return 0;
		address += MCG_XBLK_ADDR;
	} else
		++address;

	err = allocate_threshold_blocks(cpu, bank, ++block, address);
	if (err)
		goto out_free;

452 453
	if (b)
		kobject_uevent(&b->kobj, KOBJ_ADD);
454

455 456 457 458
	return err;

out_free:
	if (b) {
459
		kobject_put(&b->kobj);
460 461 462 463 464
		kfree(b);
	}
	return err;
}

465 466 467 468 469 470 471 472
static long local_allocate_threshold_blocks(void *_bank)
{
	unsigned int *bank = _bank;

	return allocate_threshold_blocks(smp_processor_id(), *bank, 0,
					 MSR_IA32_MC0_MISC + *bank * 4);
}

473
/* symlinks sibling shared banks to first core.  first core owns dir/files. */
474
static __cpuinit int threshold_create_bank(unsigned int cpu, unsigned int bank)
475
{
476
	int i, err = 0;
477
	struct threshold_bank *b = NULL;
478 479 480
	char name[32];

	sprintf(name, "threshold_bank%i", bank);
481 482

#ifdef CONFIG_SMP
483
	if (cpu_data(cpu).cpu_core_id && shared_bank[bank]) {	/* symlink */
484
		i = first_cpu(per_cpu(cpu_core_map, cpu));
485 486

		/* first core not up yet */
487
		if (cpu_data(i).cpu_core_id)
488 489 490 491 492 493 494
			goto out;

		/* already linked */
		if (per_cpu(threshold_banks, cpu)[bank])
			goto out;

		b = per_cpu(threshold_banks, i)[bank];
495 496 497

		if (!b)
			goto out;
498

499
		err = sysfs_create_link(&per_cpu(device_mce, cpu).kobj,
500
					b->kobj, name);
501 502
		if (err)
			goto out;
503

504
		b->cpus = per_cpu(cpu_core_map, cpu);
505 506 507 508 509
		per_cpu(threshold_banks, cpu)[bank] = b;
		goto out;
	}
#endif

510
	b = kzalloc(sizeof(struct threshold_bank), GFP_KERNEL);
511 512 513 514 515
	if (!b) {
		err = -ENOMEM;
		goto out;
	}

516 517 518 519
	b->kobj = kobject_create_and_add(name, &per_cpu(device_mce, cpu).kobj);
	if (!b->kobj)
		goto out_free;

520 521 522
#ifndef CONFIG_SMP
	b->cpus = CPU_MASK_ALL;
#else
523
	b->cpus = per_cpu(cpu_core_map, cpu);
524 525
#endif

526
	per_cpu(threshold_banks, cpu)[bank] = b;
527

528
	err = work_on_cpu(cpu, local_allocate_threshold_blocks, &bank);
529 530 531
	if (err)
		goto out_free;

532
	for_each_cpu_mask_nr(i, b->cpus) {
533 534 535 536
		if (i == cpu)
			continue;

		err = sysfs_create_link(&per_cpu(device_mce, i).kobj,
537
					b->kobj, name);
538 539 540 541 542 543 544 545 546 547 548
		if (err)
			goto out;

		per_cpu(threshold_banks, i)[bank] = b;
	}

	goto out;

out_free:
	per_cpu(threshold_banks, cpu)[bank] = NULL;
	kfree(b);
J
Jacob Shin 已提交
549
out:
550 551 552 553 554 555
	return err;
}

/* create dir/files for all valid threshold banks */
static __cpuinit int threshold_create_device(unsigned int cpu)
{
J
Jacob Shin 已提交
556
	unsigned int bank;
557 558 559
	int err = 0;

	for (bank = 0; bank < NR_BANKS; ++bank) {
560
		if (!(per_cpu(bank_map, cpu) & (1 << bank)))
561 562 563 564 565
			continue;
		err = threshold_create_bank(cpu, bank);
		if (err)
			goto out;
	}
J
Jacob Shin 已提交
566
out:
567 568 569 570 571 572 573 574 575
	return err;
}

/*
 * let's be hotplug friendly.
 * in case of multiple core processors, the first core always takes ownership
 *   of shared sysfs dir/files, and rest of the cores will be symlinked to it.
 */

576
static void deallocate_threshold_block(unsigned int cpu,
577 578 579 580 581 582 583 584 585 586
						 unsigned int bank)
{
	struct threshold_block *pos = NULL;
	struct threshold_block *tmp = NULL;
	struct threshold_bank *head = per_cpu(threshold_banks, cpu)[bank];

	if (!head)
		return;

	list_for_each_entry_safe(pos, tmp, &head->blocks->miscj, miscj) {
587
		kobject_put(&pos->kobj);
588 589 590 591 592 593 594 595
		list_del(&pos->miscj);
		kfree(pos);
	}

	kfree(per_cpu(threshold_banks, cpu)[bank]->blocks);
	per_cpu(threshold_banks, cpu)[bank]->blocks = NULL;
}

596
static void threshold_remove_bank(unsigned int cpu, int bank)
597
{
598
	int i = 0;
599
	struct threshold_bank *b;
600
	char name[32];
601 602

	b = per_cpu(threshold_banks, cpu)[bank];
603

604 605
	if (!b)
		return;
606 607 608 609 610 611

	if (!b->blocks)
		goto free_out;

	sprintf(name, "threshold_bank%i", bank);

612
#ifdef CONFIG_SMP
613 614
	/* sibling symlink */
	if (shared_bank[bank] && b->blocks->cpu != cpu) {
615
		sysfs_remove_link(&per_cpu(device_mce, cpu).kobj, name);
616
		per_cpu(threshold_banks, cpu)[bank] = NULL;
617
		return;
618
	}
619
#endif
620 621

	/* remove all sibling symlinks before unregistering */
622
	for_each_cpu_mask_nr(i, b->cpus) {
623 624 625 626 627 628 629 630 631 632
		if (i == cpu)
			continue;

		sysfs_remove_link(&per_cpu(device_mce, i).kobj, name);
		per_cpu(threshold_banks, i)[bank] = NULL;
	}

	deallocate_threshold_block(cpu, bank);

free_out:
633
	kobject_del(b->kobj);
634
	kobject_put(b->kobj);
635 636
	kfree(b);
	per_cpu(threshold_banks, cpu)[bank] = NULL;
637 638
}

639
static void threshold_remove_device(unsigned int cpu)
640
{
J
Jacob Shin 已提交
641
	unsigned int bank;
642 643

	for (bank = 0; bank < NR_BANKS; ++bank) {
644
		if (!(per_cpu(bank_map, cpu) & (1 << bank)))
645 646 647 648 649 650
			continue;
		threshold_remove_bank(cpu, bank);
	}
}

/* get notified when a cpu comes on/off */
651 652
static void __cpuinit amd_64_threshold_cpu_callback(unsigned long action,
						     unsigned int cpu)
653 654
{
	if (cpu >= NR_CPUS)
655
		return;
656 657 658

	switch (action) {
	case CPU_ONLINE:
659
	case CPU_ONLINE_FROZEN:
660 661 662
		threshold_create_device(cpu);
		break;
	case CPU_DEAD:
663
	case CPU_DEAD_FROZEN:
664 665 666 667 668 669 670 671 672
		threshold_remove_device(cpu);
		break;
	default:
		break;
	}
}

static __init int threshold_init_device(void)
{
J
Jacob Shin 已提交
673
	unsigned lcpu = 0;
674 675 676

	/* to hit CPUs online before the notifier is up */
	for_each_online_cpu(lcpu) {
677
		int err = threshold_create_device(lcpu);
678
		if (err)
679
			return err;
680
	}
681
	threshold_cpu_callback = amd_64_threshold_cpu_callback;
682
	return 0;
683 684 685
}

device_initcall(threshold_init_device);