mce_amd.c 15.3 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 68 69 70 71 72 73
struct threshold_bank {
	struct kobject kobj;
	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 86
#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
 */

/* must be called with correct cpu affinity */
87
static void threshold_restart_bank(struct threshold_block *b,
88 89 90 91
				   int reset, u16 old_limit)
{
	u32 mci_misc_hi, mci_misc_lo;

92
	rdmsr(b->address, mci_misc_lo, mci_misc_hi);
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112

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

	if (reset) {		/* reset err count and overflow bit */
		mci_misc_hi =
		    (mci_misc_hi & ~(MASK_ERR_COUNT_HI | MASK_OVERFLOW_HI)) |
		    (THRESHOLD_MAX - b->threshold_limit);
	} else if (old_limit) {	/* change limit w/o reset */
		int new_count = (mci_misc_hi & THRESHOLD_MAX) +
		    (old_limit - b->threshold_limit);
		mci_misc_hi = (mci_misc_hi & ~MASK_ERR_COUNT_HI) |
		    (new_count & THRESHOLD_MAX);
	}

	b->interrupt_enable ?
	    (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;
113
	wrmsr(b->address, mci_misc_lo, mci_misc_hi);
114 115
}

116
/* cpu init entry point, called from mce.c with preempt off */
117 118
void __cpuinit mce_amd_feature_init(struct cpuinfo_x86 *c)
{
119
	unsigned int bank, block;
120
	unsigned int cpu = smp_processor_id();
121
	u32 low = 0, high = 0, address = 0;
122 123

	for (bank = 0; bank < NR_BANKS; ++bank) {
124 125 126
		for (block = 0; block < NR_BLOCKS; ++block) {
			if (block == 0)
				address = MSR_IA32_MC0_MISC + bank * 4;
127 128 129 130 131 132
			else if (block == 1) {
				address = (low & MASK_BLKPTR_LO) >> 21;
				if (!address)
					break;
				address += MCG_XBLK_ADDR;
			}
133 134 135 136
			else
				++address;

			if (rdmsr_safe(address, &low, &high))
137
				break;
138 139 140 141 142 143 144 145

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

146 147
			if (!(high & MASK_CNTP_HI)  ||
			     (high & MASK_LOCKED_HI))
148 149 150 151
				continue;

			if (!block)
				per_cpu(bank_map, cpu) |= (1 << bank);
152
#ifdef CONFIG_SMP
153 154
			if (shared_bank[bank] && c->cpu_core_id)
				break;
155
#endif
156 157 158 159 160 161 162
			high &= ~MASK_LVTOFF_HI;
			high |= K8_APIC_EXT_LVT_ENTRY_THRESHOLD << 20;
			wrmsr(address, low, high);

			setup_APIC_extened_lvt(K8_APIC_EXT_LVT_ENTRY_THRESHOLD,
					       THRESHOLD_APIC_VECTOR,
					       K8_APIC_EXT_INT_MSG_FIX, 0);
163

164 165 166
			threshold_defaults.address = address;
			threshold_restart_bank(&threshold_defaults, 0, 0);
		}
167 168 169 170 171 172 173 174 175 176 177 178 179 180
	}
}

/*
 * 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)
{
181
	unsigned int bank, block;
182
	struct mce m;
183
	u32 low = 0, high = 0, address = 0;
184 185

	ack_APIC_irq();
A
Andi Kleen 已提交
186
	exit_idle();
187 188 189 190 191 192 193 194
	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) {
195 196
		if (!(per_cpu(bank_map, m.cpu) & (1 << bank)))
			continue;
197 198 199
		for (block = 0; block < NR_BLOCKS; ++block) {
			if (block == 0)
				address = MSR_IA32_MC0_MISC + bank * 4;
200 201 202 203 204 205
			else if (block == 1) {
				address = (low & MASK_BLKPTR_LO) >> 21;
				if (!address)
					break;
				address += MCG_XBLK_ADDR;
			}
206 207 208 209
			else
				++address;

			if (rdmsr_safe(address, &low, &high))
210
				break;
211 212 213 214 215 216 217 218

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

219 220
			if (!(high & MASK_CNTP_HI)  ||
			     (high & MASK_LOCKED_HI))
221 222 223 224 225 226 227 228 229 230 231 232
				continue;

			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;
			}
233 234
		}
	}
J
Jacob Shin 已提交
235
out:
236 237 238 239 240 241 242 243
	irq_exit();
}

/*
 * Sysfs Interface
 */

struct threshold_attr {
J
Jacob Shin 已提交
244
	struct attribute attr;
245 246
	ssize_t(*show) (struct threshold_block *, char *);
	ssize_t(*store) (struct threshold_block *, const char *, size_t count);
247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262
};

static cpumask_t affinity_set(unsigned int cpu)
{
	cpumask_t oldmask = current->cpus_allowed;
	cpumask_t newmask = CPU_MASK_NONE;
	cpu_set(cpu, newmask);
	set_cpus_allowed(current, newmask);
	return oldmask;
}

static void affinity_restore(cpumask_t oldmask)
{
	set_cpus_allowed(current, oldmask);
}

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

271
static ssize_t store_interrupt_enable(struct threshold_block *b,
272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287
				      const char *buf, size_t count)
{
	char *end;
	cpumask_t oldmask;
	unsigned long new = simple_strtoul(buf, &end, 0);
	if (end == buf)
		return -EINVAL;
	b->interrupt_enable = !!new;

	oldmask = affinity_set(b->cpu);
	threshold_restart_bank(b, 0, 0);
	affinity_restore(oldmask);

	return end - buf;
}

288
static ssize_t store_threshold_limit(struct threshold_block *b,
289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310
				     const char *buf, size_t count)
{
	char *end;
	cpumask_t oldmask;
	u16 old;
	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;
	old = b->threshold_limit;
	b->threshold_limit = new;

	oldmask = affinity_set(b->cpu);
	threshold_restart_bank(b, 0, old);
	affinity_restore(oldmask);

	return end - buf;
}

311
static ssize_t show_error_count(struct threshold_block *b, char *buf)
312 313 314 315
{
	u32 high, low;
	cpumask_t oldmask;
	oldmask = affinity_set(b->cpu);
316
	rdmsr(b->address, low, high);
317 318 319 320 321
	affinity_restore(oldmask);
	return sprintf(buf, "%x\n",
		       (high & 0xFFF) - (THRESHOLD_MAX - b->threshold_limit));
}

322
static ssize_t store_error_count(struct threshold_block *b,
323 324 325 326 327 328 329 330 331 332 333 334 335 336 337
				 const char *buf, size_t count)
{
	cpumask_t oldmask;
	oldmask = affinity_set(b->cpu);
	threshold_restart_bank(b, 1, 0);
	affinity_restore(oldmask);
	return 1;
}

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

J
Jacob Shin 已提交
338 339
#define RW_ATTR(name)                                           \
static struct threshold_attr name =                             \
340 341
        THRESHOLD_ATTR(name, 0644, show_## name, store_## name)

J
Jacob Shin 已提交
342 343 344
RW_ATTR(interrupt_enable);
RW_ATTR(threshold_limit);
RW_ATTR(error_count);
345 346 347 348 349 350 351 352

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

353
#define to_block(k) container_of(k, struct threshold_block, kobj)
J
Jacob Shin 已提交
354
#define to_attr(a) container_of(a, struct threshold_attr, attr)
355 356 357

static ssize_t show(struct kobject *kobj, struct attribute *attr, char *buf)
{
358
	struct threshold_block *b = to_block(kobj);
359 360 361 362 363 364 365 366 367
	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)
{
368
	struct threshold_block *b = to_block(kobj);
369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384
	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,
};

385 386 387 388 389 390 391 392 393 394 395 396 397
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))
398
		return 0;
399 400 401 402 403 404 405 406

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

407 408
	if (!(high & MASK_CNTP_HI)  ||
	     (high & MASK_LOCKED_HI))
409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458
		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;

	kobject_set_name(&b->kobj, "misc%i", block);
	b->kobj.parent = &per_cpu(threshold_banks, cpu)[bank]->kobj;
	b->kobj.ktype = &threshold_ktype;
	err = kobject_register(&b->kobj);
	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;

	return err;

out_free:
	if (b) {
		kobject_unregister(&b->kobj);
		kfree(b);
	}
	return err;
}

459
/* symlinks sibling shared banks to first core.  first core owns dir/files. */
460
static __cpuinit int threshold_create_bank(unsigned int cpu, unsigned int bank)
461
{
462
	int i, err = 0;
463
	struct threshold_bank *b = NULL;
464 465 466 467
	cpumask_t oldmask = CPU_MASK_NONE;
	char name[32];

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

#ifdef CONFIG_SMP
470
	if (cpu_data[cpu].cpu_core_id && shared_bank[bank]) {	/* symlink */
471 472 473 474 475 476 477 478 479 480 481
		i = first_cpu(cpu_core_map[cpu]);

		/* first core not up yet */
		if (cpu_data[i].cpu_core_id)
			goto out;

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

		b = per_cpu(threshold_banks, i)[bank];
482 483 484

		if (!b)
			goto out;
485

486
		err = sysfs_create_link(&per_cpu(device_mce, cpu).kobj,
487 488 489
					&b->kobj, name);
		if (err)
			goto out;
490 491

		b->cpus = cpu_core_map[cpu];
492 493 494 495 496
		per_cpu(threshold_banks, cpu)[bank] = b;
		goto out;
	}
#endif

497
	b = kzalloc(sizeof(struct threshold_bank), GFP_KERNEL);
498 499 500 501 502
	if (!b) {
		err = -ENOMEM;
		goto out;
	}

503 504
	kobject_set_name(&b->kobj, "threshold_bank%i", bank);
	b->kobj.parent = &per_cpu(device_mce, cpu).kobj;
505 506 507 508 509
#ifndef CONFIG_SMP
	b->cpus = CPU_MASK_ALL;
#else
	b->cpus = cpu_core_map[cpu];
#endif
510
	err = kobject_register(&b->kobj);
511 512 513
	if (err)
		goto out_free;

514
	per_cpu(threshold_banks, cpu)[bank] = b;
515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540

	oldmask = affinity_set(cpu);
	err = allocate_threshold_blocks(cpu, bank, 0,
					MSR_IA32_MC0_MISC + bank * 4);
	affinity_restore(oldmask);

	if (err)
		goto out_free;

	for_each_cpu_mask(i, b->cpus) {
		if (i == cpu)
			continue;

		err = sysfs_create_link(&per_cpu(device_mce, i).kobj,
					&b->kobj, name);
		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 已提交
541
out:
542 543 544 545 546 547
	return err;
}

/* create dir/files for all valid threshold banks */
static __cpuinit int threshold_create_device(unsigned int cpu)
{
J
Jacob Shin 已提交
548
	unsigned int bank;
549 550 551 552 553 554 555 556 557
	int err = 0;

	for (bank = 0; bank < NR_BANKS; ++bank) {
		if (!(per_cpu(bank_map, cpu) & 1 << bank))
			continue;
		err = threshold_create_bank(cpu, bank);
		if (err)
			goto out;
	}
J
Jacob Shin 已提交
558
out:
559 560 561 562 563 564 565 566 567
	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.
 */

568
static void deallocate_threshold_block(unsigned int cpu,
569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587
						 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) {
		kobject_unregister(&pos->kobj);
		list_del(&pos->miscj);
		kfree(pos);
	}

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

588
static void threshold_remove_bank(unsigned int cpu, int bank)
589
{
590
	int i = 0;
591
	struct threshold_bank *b;
592
	char name[32];
593 594

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

596 597
	if (!b)
		return;
598 599 600 601 602 603

	if (!b->blocks)
		goto free_out;

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

604
#ifdef CONFIG_SMP
605 606
	/* sibling symlink */
	if (shared_bank[bank] && b->blocks->cpu != cpu) {
607
		sysfs_remove_link(&per_cpu(device_mce, cpu).kobj, name);
608
		per_cpu(threshold_banks, cpu)[bank] = NULL;
609
		return;
610
	}
611
#endif
612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627

	/* remove all sibling symlinks before unregistering */
	for_each_cpu_mask(i, b->cpus) {
		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:
	kobject_unregister(&b->kobj);
	kfree(b);
	per_cpu(threshold_banks, cpu)[bank] = NULL;
628 629
}

630
static void threshold_remove_device(unsigned int cpu)
631
{
J
Jacob Shin 已提交
632
	unsigned int bank;
633 634 635 636 637 638 639 640 641

	for (bank = 0; bank < NR_BANKS; ++bank) {
		if (!(per_cpu(bank_map, cpu) & 1 << bank))
			continue;
		threshold_remove_bank(cpu, bank);
	}
}

/* get notified when a cpu comes on/off */
642
static int threshold_cpu_callback(struct notifier_block *nfb,
643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664
					    unsigned long action, void *hcpu)
{
	/* cpu was unsigned int to begin with */
	unsigned int cpu = (unsigned long)hcpu;

	if (cpu >= NR_CPUS)
		goto out;

	switch (action) {
	case CPU_ONLINE:
		threshold_create_device(cpu);
		break;
	case CPU_DEAD:
		threshold_remove_device(cpu);
		break;
	default:
		break;
	}
      out:
	return NOTIFY_OK;
}

665
static struct notifier_block threshold_cpu_notifier = {
666 667 668 669 670
	.notifier_call = threshold_cpu_callback,
};

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

	/* to hit CPUs online before the notifier is up */
	for_each_online_cpu(lcpu) {
675
		int err = threshold_create_device(lcpu);
676
		if (err)
677
			return err;
678
	}
679
	register_hotcpu_notifier(&threshold_cpu_notifier);
680
	return 0;
681 682 683
}

device_initcall(threshold_init_device);