op_model_amd.c 11.5 KB
Newer Older
1
/*
2
 * @file op_model_amd.c
3
 * athlon / K7 / K8 / Family 10h model-specific MSR operations
L
Linus Torvalds 已提交
4
 *
5
 * @remark Copyright 2002-2009 OProfile authors
L
Linus Torvalds 已提交
6 7 8 9 10
 * @remark Read the file COPYING
 *
 * @author John Levon
 * @author Philippe Elie
 * @author Graydon Hoare
11
 * @author Robert Richter <robert.richter@amd.com>
12 13 14
 * @author Barry Kasindorf <barry.kasindorf@amd.com>
 * @author Jason Yeh <jason.yeh@amd.com>
 * @author Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
15
 */
L
Linus Torvalds 已提交
16 17

#include <linux/oprofile.h>
18 19
#include <linux/device.h>
#include <linux/pci.h>
20
#include <linux/percpu.h>
21

L
Linus Torvalds 已提交
22 23
#include <asm/ptrace.h>
#include <asm/msr.h>
24
#include <asm/nmi.h>
25
#include <asm/apic.h>
26

L
Linus Torvalds 已提交
27 28 29
#include "op_x86_model.h"
#include "op_counter.h"

30 31
#define NUM_COUNTERS 4
#define NUM_CONTROLS 4
32 33 34 35 36 37 38 39
#ifdef CONFIG_OPROFILE_EVENT_MULTIPLEX
#define NUM_VIRT_COUNTERS 32
#define NUM_VIRT_CONTROLS 32
#else
#define NUM_VIRT_COUNTERS NUM_COUNTERS
#define NUM_VIRT_CONTROLS NUM_CONTROLS
#endif

40
#define OP_EVENT_MASK			0x0FFF
41
#define OP_CTR_OVERFLOW			(1ULL<<31)
42 43

#define MSR_AMD_EVENTSEL_RESERVED	((0xFFFFFCF0ULL<<32)|(1ULL<<21))
L
Linus Torvalds 已提交
44

45
static unsigned long reset_value[NUM_VIRT_COUNTERS];
46

47
/* IbsFetchCtl bits/masks */
48 49 50 51
#define IBS_FETCH_RAND_EN		(1ULL<<57)
#define IBS_FETCH_VAL			(1ULL<<49)
#define IBS_FETCH_ENABLE		(1ULL<<48)
#define IBS_FETCH_CNT_MASK		0xFFFF0000ULL
52

53
/*IbsOpCtl bits */
54 55 56
#define IBS_OP_CNT_CTL			(1ULL<<19)
#define IBS_OP_VAL			(1ULL<<18)
#define IBS_OP_ENABLE			(1ULL<<17)
57

58 59
#define IBS_FETCH_SIZE			6
#define IBS_OP_SIZE			12
60

61
static int has_ibs;	/* AMD Family10h and later */
62 63 64 65 66 67 68 69 70 71 72

struct op_ibs_config {
	unsigned long op_enabled;
	unsigned long fetch_enabled;
	unsigned long max_cnt_fetch;
	unsigned long max_cnt_op;
	unsigned long rand_en;
	unsigned long dispatched_ops;
};

static struct op_ibs_config ibs_config;
73

74 75 76 77 78 79 80
#ifdef CONFIG_OPROFILE_EVENT_MULTIPLEX

static void op_mux_fill_in_addresses(struct op_msrs * const msrs)
{
	int i;

	for (i = 0; i < NUM_VIRT_COUNTERS; i++) {
81
		int hw_counter = op_x86_virt_to_phys(i);
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
		if (reserve_perfctr_nmi(MSR_K7_PERFCTR0 + i))
			msrs->multiplex[i].addr = MSR_K7_PERFCTR0 + hw_counter;
		else
			msrs->multiplex[i].addr = 0;
	}
}

static void op_mux_switch_ctrl(struct op_x86_model_spec const *model,
			       struct op_msrs const * const msrs)
{
	u64 val;
	int i;

	/* enable active counters */
	for (i = 0; i < NUM_COUNTERS; ++i) {
		int virt = op_x86_phys_to_virt(i);
		if (!counter_config[virt].enabled)
			continue;
		rdmsrl(msrs->controls[i].addr, val);
		val &= model->reserved;
		val |= op_x86_get_ctrl(model, &counter_config[virt]);
		wrmsrl(msrs->controls[i].addr, val);
	}
}

#else

static inline void op_mux_fill_in_addresses(struct op_msrs * const msrs) { }

#endif

113
/* functions for op_amd_spec */
114

115
static void op_amd_fill_in_addresses(struct op_msrs * const msrs)
L
Linus Torvalds 已提交
116
{
117 118
	int i;

119
	for (i = 0; i < NUM_COUNTERS; i++) {
120 121
		if (reserve_perfctr_nmi(MSR_K7_PERFCTR0 + i))
			msrs->counters[i].addr = MSR_K7_PERFCTR0 + i;
122 123 124 125
		else
			msrs->counters[i].addr = 0;
	}

126
	for (i = 0; i < NUM_CONTROLS; i++) {
127 128
		if (reserve_evntsel_nmi(MSR_K7_EVNTSEL0 + i))
			msrs->controls[i].addr = MSR_K7_EVNTSEL0 + i;
129 130 131
		else
			msrs->controls[i].addr = 0;
	}
132

133
	op_mux_fill_in_addresses(msrs);
L
Linus Torvalds 已提交
134 135
}

136 137
static void op_amd_setup_ctrs(struct op_x86_model_spec const *model,
			      struct op_msrs const * const msrs)
L
Linus Torvalds 已提交
138
{
139
	u64 val;
L
Linus Torvalds 已提交
140
	int i;
141

142 143
	/* setup reset_value */
	for (i = 0; i < NUM_VIRT_COUNTERS; ++i) {
144
		if (counter_config[i].enabled)
145
			reset_value[i] = counter_config[i].count;
146
		else
147 148 149
			reset_value[i] = 0;
	}

L
Linus Torvalds 已提交
150
	/* clear all counters */
151
	for (i = 0; i < NUM_CONTROLS; ++i) {
152
		if (unlikely(!msrs->controls[i].addr))
153
			continue;
154 155 156
		rdmsrl(msrs->controls[i].addr, val);
		val &= model->reserved;
		wrmsrl(msrs->controls[i].addr, val);
L
Linus Torvalds 已提交
157
	}
158

L
Linus Torvalds 已提交
159
	/* avoid a false detection of ctr overflows in NMI handler */
160
	for (i = 0; i < NUM_COUNTERS; ++i) {
161
		if (unlikely(!msrs->counters[i].addr))
162
			continue;
163
		wrmsrl(msrs->counters[i].addr, -1LL);
L
Linus Torvalds 已提交
164 165 166
	}

	/* enable active counters */
167
	for (i = 0; i < NUM_COUNTERS; ++i) {
168 169 170 171 172 173 174 175 176 177 178 179 180 181
		int virt = op_x86_phys_to_virt(i);
		if (!counter_config[virt].enabled)
			continue;
		if (!msrs->counters[i].addr)
			continue;

		/* setup counter registers */
		wrmsrl(msrs->counters[i].addr, -(u64)reset_value[virt]);

		/* setup control registers */
		rdmsrl(msrs->controls[i].addr, val);
		val &= model->reserved;
		val |= op_x86_get_ctrl(model, &counter_config[virt]);
		wrmsrl(msrs->controls[i].addr, val);
182 183 184
	}
}

185
static inline void
186 187
op_amd_handle_ibs(struct pt_regs * const regs,
		  struct op_msrs const * const msrs)
L
Linus Torvalds 已提交
188
{
189
	u64 val, ctl;
190
	struct op_entry entry;
L
Linus Torvalds 已提交
191

192
	if (!has_ibs)
193
		return;
L
Linus Torvalds 已提交
194

195
	if (ibs_config.fetch_enabled) {
196 197 198 199
		rdmsrl(MSR_AMD64_IBSFETCHCTL, ctl);
		if (ctl & IBS_FETCH_VAL) {
			rdmsrl(MSR_AMD64_IBSFETCHLINAD, val);
			oprofile_write_reserve(&entry, regs, val,
200
					       IBS_FETCH_CODE, IBS_FETCH_SIZE);
201 202
			oprofile_add_data64(&entry, val);
			oprofile_add_data64(&entry, ctl);
203
			rdmsrl(MSR_AMD64_IBSFETCHPHYSAD, val);
204
			oprofile_add_data64(&entry, val);
205
			oprofile_write_commit(&entry);
206

R
Robert Richter 已提交
207
			/* reenable the IRQ */
208 209 210
			ctl &= ~(IBS_FETCH_VAL | IBS_FETCH_CNT_MASK);
			ctl |= IBS_FETCH_ENABLE;
			wrmsrl(MSR_AMD64_IBSFETCHCTL, ctl);
211 212 213
		}
	}

214
	if (ibs_config.op_enabled) {
215 216 217 218
		rdmsrl(MSR_AMD64_IBSOPCTL, ctl);
		if (ctl & IBS_OP_VAL) {
			rdmsrl(MSR_AMD64_IBSOPRIP, val);
			oprofile_write_reserve(&entry, regs, val,
219
					       IBS_OP_CODE, IBS_OP_SIZE);
220
			oprofile_add_data64(&entry, val);
221
			rdmsrl(MSR_AMD64_IBSOPDATA, val);
222
			oprofile_add_data64(&entry, val);
223
			rdmsrl(MSR_AMD64_IBSOPDATA2, val);
224
			oprofile_add_data64(&entry, val);
225
			rdmsrl(MSR_AMD64_IBSOPDATA3, val);
226
			oprofile_add_data64(&entry, val);
227
			rdmsrl(MSR_AMD64_IBSDCLINAD, val);
228
			oprofile_add_data64(&entry, val);
229
			rdmsrl(MSR_AMD64_IBSDCPHYSAD, val);
230
			oprofile_add_data64(&entry, val);
231
			oprofile_write_commit(&entry);
232 233

			/* reenable the IRQ */
234 235 236
			ctl &= ~IBS_OP_VAL & 0xFFFFFFFF;
			ctl |= IBS_OP_ENABLE;
			wrmsrl(MSR_AMD64_IBSOPCTL, ctl);
237 238
		}
	}
L
Linus Torvalds 已提交
239 240
}

241 242
static inline void op_amd_start_ibs(void)
{
243
	u64 val;
244
	if (has_ibs && ibs_config.fetch_enabled) {
245 246 247 248
		val = (ibs_config.max_cnt_fetch >> 4) & 0xFFFF;
		val |= ibs_config.rand_en ? IBS_FETCH_RAND_EN : 0;
		val |= IBS_FETCH_ENABLE;
		wrmsrl(MSR_AMD64_IBSFETCHCTL, val);
249 250 251
	}

	if (has_ibs && ibs_config.op_enabled) {
252 253 254 255
		val = (ibs_config.max_cnt_op >> 4) & 0xFFFF;
		val |= ibs_config.dispatched_ops ? IBS_OP_CNT_CTL : 0;
		val |= IBS_OP_ENABLE;
		wrmsrl(MSR_AMD64_IBSOPCTL, val);
256 257 258 259 260
	}
}

static void op_amd_stop_ibs(void)
{
261
	if (has_ibs && ibs_config.fetch_enabled)
262
		/* clear max count and enable */
263
		wrmsrl(MSR_AMD64_IBSFETCHCTL, 0);
264

265
	if (has_ibs && ibs_config.op_enabled)
266
		/* clear max count and enable */
267
		wrmsrl(MSR_AMD64_IBSOPCTL, 0);
268 269
}

270 271 272
static int op_amd_check_ctrs(struct pt_regs * const regs,
			     struct op_msrs const * const msrs)
{
273
	u64 val;
274 275
	int i;

276
	for (i = 0; i < NUM_COUNTERS; ++i) {
277 278
		int virt = op_x86_phys_to_virt(i);
		if (!reset_value[virt])
279
			continue;
280 281 282 283
		rdmsrl(msrs->counters[i].addr, val);
		/* bit is clear if overflowed: */
		if (val & OP_CTR_OVERFLOW)
			continue;
284 285
		oprofile_add_sample(regs, virt);
		wrmsrl(msrs->counters[i].addr, -(u64)reset_value[virt]);
286 287 288 289 290 291 292
	}

	op_amd_handle_ibs(regs, msrs);

	/* See op_model_ppro.c */
	return 1;
}
293

294
static void op_amd_start(struct op_msrs const * const msrs)
L
Linus Torvalds 已提交
295
{
296
	u64 val;
L
Linus Torvalds 已提交
297
	int i;
298

299
	for (i = 0; i < NUM_COUNTERS; ++i) {
300 301 302 303 304
		if (!reset_value[op_x86_phys_to_virt(i)])
			continue;
		rdmsrl(msrs->controls[i].addr, val);
		val |= ARCH_PERFMON_EVENTSEL0_ENABLE;
		wrmsrl(msrs->controls[i].addr, val);
L
Linus Torvalds 已提交
305
	}
306

307
	op_amd_start_ibs();
L
Linus Torvalds 已提交
308 309
}

310
static void op_amd_stop(struct op_msrs const * const msrs)
L
Linus Torvalds 已提交
311
{
312
	u64 val;
L
Linus Torvalds 已提交
313 314
	int i;

R
Robert Richter 已提交
315 316 317 318
	/*
	 * Subtle: stop on all counters to avoid race with setting our
	 * pm callback
	 */
319
	for (i = 0; i < NUM_COUNTERS; ++i) {
320
		if (!reset_value[op_x86_phys_to_virt(i)])
321
			continue;
322 323 324
		rdmsrl(msrs->controls[i].addr, val);
		val &= ~ARCH_PERFMON_EVENTSEL0_ENABLE;
		wrmsrl(msrs->controls[i].addr, val);
L
Linus Torvalds 已提交
325
	}
326

327
	op_amd_stop_ibs();
L
Linus Torvalds 已提交
328 329
}

330
static void op_amd_shutdown(struct op_msrs const * const msrs)
331 332 333
{
	int i;

334
	for (i = 0; i < NUM_COUNTERS; ++i) {
335
		if (msrs->counters[i].addr)
336 337
			release_perfctr_nmi(MSR_K7_PERFCTR0 + i);
	}
338
	for (i = 0; i < NUM_CONTROLS; ++i) {
339
		if (msrs->controls[i].addr)
340 341 342
			release_evntsel_nmi(MSR_K7_EVNTSEL0 + i);
	}
}
L
Linus Torvalds 已提交
343

344 345
static u8 ibs_eilvt_off;

346 347
static inline void apic_init_ibs_nmi_per_cpu(void *arg)
{
348
	ibs_eilvt_off = setup_APIC_eilvt_ibs(0, APIC_EILVT_MSG_NMI, 0);
349 350 351 352 353 354 355
}

static inline void apic_clear_ibs_nmi_per_cpu(void *arg)
{
	setup_APIC_eilvt_ibs(0, APIC_EILVT_MSG_FIX, 1);
}

356
static int init_ibs_nmi(void)
357 358 359 360 361 362 363 364
{
#define IBSCTL_LVTOFFSETVAL		(1 << 8)
#define IBSCTL				0x1cc
	struct pci_dev *cpu_cfg;
	int nodes;
	u32 value = 0;

	/* per CPU setup */
365
	on_each_cpu(apic_init_ibs_nmi_per_cpu, NULL, 1);
366 367 368 369 370 371 372 373 374 375 376 377 378 379

	nodes = 0;
	cpu_cfg = NULL;
	do {
		cpu_cfg = pci_get_device(PCI_VENDOR_ID_AMD,
					 PCI_DEVICE_ID_AMD_10H_NB_MISC,
					 cpu_cfg);
		if (!cpu_cfg)
			break;
		++nodes;
		pci_write_config_dword(cpu_cfg, IBSCTL, ibs_eilvt_off
				       | IBSCTL_LVTOFFSETVAL);
		pci_read_config_dword(cpu_cfg, IBSCTL, &value);
		if (value != (ibs_eilvt_off | IBSCTL_LVTOFFSETVAL)) {
380
			pci_dev_put(cpu_cfg);
381 382 383 384 385 386 387 388 389 390 391 392 393 394
			printk(KERN_DEBUG "Failed to setup IBS LVT offset, "
				"IBSCTL = 0x%08x", value);
			return 1;
		}
	} while (1);

	if (!nodes) {
		printk(KERN_DEBUG "No CPU node configured for IBS");
		return 1;
	}

	return 0;
}

395 396 397
/* uninitialize the APIC for the IBS interrupts if needed */
static void clear_ibs_nmi(void)
{
398
	if (has_ibs)
399 400 401
		on_each_cpu(apic_clear_ibs_nmi_per_cpu, NULL, 1);
}

R
Robert Richter 已提交
402
/* initialize the APIC for the IBS interrupts if available */
403
static void ibs_init(void)
404
{
405
	has_ibs = boot_cpu_has(X86_FEATURE_IBS);
406

407
	if (!has_ibs)
408 409
		return;

410
	if (init_ibs_nmi()) {
411
		has_ibs = 0;
412 413 414 415
		return;
	}

	printk(KERN_INFO "oprofile: AMD IBS detected\n");
416 417
}

418
static void ibs_exit(void)
419
{
420
	if (!has_ibs)
421 422 423
		return;

	clear_ibs_nmi();
424 425
}

R
Robert Richter 已提交
426
static int (*create_arch_files)(struct super_block *sb, struct dentry *root);
427

R
Robert Richter 已提交
428
static int setup_ibs_files(struct super_block *sb, struct dentry *root)
429 430
{
	struct dentry *dir;
431 432 433 434 435 436 437 438
	int ret = 0;

	/* architecture specific files */
	if (create_arch_files)
		ret = create_arch_files(sb, root);

	if (ret)
		return ret;
439

440
	if (!has_ibs)
441 442 443
		return ret;

	/* model specific files */
444 445 446 447 448 449 450

	/* setup some reasonable defaults */
	ibs_config.max_cnt_fetch = 250000;
	ibs_config.fetch_enabled = 0;
	ibs_config.max_cnt_op = 250000;
	ibs_config.op_enabled = 0;
	ibs_config.dispatched_ops = 1;
451 452

	dir = oprofilefs_mkdir(sb, root, "ibs_fetch");
453
	oprofilefs_create_ulong(sb, dir, "enable",
454
				&ibs_config.fetch_enabled);
455
	oprofilefs_create_ulong(sb, dir, "max_count",
456 457 458 459
				&ibs_config.max_cnt_fetch);
	oprofilefs_create_ulong(sb, dir, "rand_enable",
				&ibs_config.rand_en);

460
	dir = oprofilefs_mkdir(sb, root, "ibs_op");
461
	oprofilefs_create_ulong(sb, dir, "enable",
462
				&ibs_config.op_enabled);
463
	oprofilefs_create_ulong(sb, dir, "max_count",
464
				&ibs_config.max_cnt_op);
465
	oprofilefs_create_ulong(sb, dir, "dispatched_ops",
466
				&ibs_config.dispatched_ops);
467 468

	return 0;
469 470
}

471 472
static int op_amd_init(struct oprofile_operations *ops)
{
473
	ibs_init();
474 475
	create_arch_files = ops->create_files;
	ops->create_files = setup_ibs_files;
476 477 478 479 480
	return 0;
}

static void op_amd_exit(void)
{
481
	ibs_exit();
482 483
}

484
struct op_x86_model_spec op_amd_spec = {
R
Robert Richter 已提交
485 486
	.num_counters		= NUM_COUNTERS,
	.num_controls		= NUM_CONTROLS,
487
	.num_virt_counters	= NUM_VIRT_COUNTERS,
488 489 490 491
	.reserved		= MSR_AMD_EVENTSEL_RESERVED,
	.event_mask		= OP_EVENT_MASK,
	.init			= op_amd_init,
	.exit			= op_amd_exit,
R
Robert Richter 已提交
492 493 494 495 496
	.fill_in_addresses	= &op_amd_fill_in_addresses,
	.setup_ctrs		= &op_amd_setup_ctrs,
	.check_ctrs		= &op_amd_check_ctrs,
	.start			= &op_amd_start,
	.stop			= &op_amd_stop,
497
	.shutdown		= &op_amd_shutdown,
498
#ifdef CONFIG_OPROFILE_EVENT_MULTIPLEX
499
	.switch_ctrl		= &op_mux_switch_ctrl,
500
#endif
L
Linus Torvalds 已提交
501
};