op_model_amd.c 10.6 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
 * @author Barry Kasindorf
13
 */
L
Linus Torvalds 已提交
14 15

#include <linux/oprofile.h>
16 17 18
#include <linux/device.h>
#include <linux/pci.h>

L
Linus Torvalds 已提交
19 20
#include <asm/ptrace.h>
#include <asm/msr.h>
21
#include <asm/nmi.h>
22

L
Linus Torvalds 已提交
23 24 25
#include "op_x86_model.h"
#include "op_counter.h"

26 27
#define NUM_COUNTERS 4
#define NUM_CONTROLS 4
28
#define OP_EVENT_MASK			0x0FFF
29
#define OP_CTR_OVERFLOW			(1ULL<<31)
30 31

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

33 34 35 36
static unsigned long reset_value[NUM_COUNTERS];

#ifdef CONFIG_OPROFILE_IBS

37
/* IbsFetchCtl bits/masks */
38 39 40 41
#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
42

43
/*IbsOpCtl bits */
44 45 46
#define IBS_OP_CNT_CTL			(1ULL<<19)
#define IBS_OP_VAL			(1ULL<<18)
#define IBS_OP_ENABLE			(1ULL<<17)
47

48 49
#define IBS_FETCH_SIZE			6
#define IBS_OP_SIZE			12
50

51
static int has_ibs;	/* AMD Family10h and later */
52 53 54 55 56 57 58 59 60 61 62

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;
63

64 65
#endif

66
/* functions for op_amd_spec */
67

68
static void op_amd_fill_in_addresses(struct op_msrs * const msrs)
L
Linus Torvalds 已提交
69
{
70 71
	int i;

72
	for (i = 0; i < NUM_COUNTERS; i++) {
73 74
		if (reserve_perfctr_nmi(MSR_K7_PERFCTR0 + i))
			msrs->counters[i].addr = MSR_K7_PERFCTR0 + i;
75 76 77 78
		else
			msrs->counters[i].addr = 0;
	}

79
	for (i = 0; i < NUM_CONTROLS; i++) {
80 81
		if (reserve_evntsel_nmi(MSR_K7_EVNTSEL0 + i))
			msrs->controls[i].addr = MSR_K7_EVNTSEL0 + i;
82 83 84
		else
			msrs->controls[i].addr = 0;
	}
L
Linus Torvalds 已提交
85 86
}

87 88
static void op_amd_setup_ctrs(struct op_x86_model_spec const *model,
			      struct op_msrs const * const msrs)
L
Linus Torvalds 已提交
89
{
90
	u64 val;
L
Linus Torvalds 已提交
91
	int i;
92

L
Linus Torvalds 已提交
93
	/* clear all counters */
94
	for (i = 0 ; i < NUM_CONTROLS; ++i) {
95
		if (unlikely(!msrs->controls[i].addr))
96
			continue;
97 98 99
		rdmsrl(msrs->controls[i].addr, val);
		val &= model->reserved;
		wrmsrl(msrs->controls[i].addr, val);
L
Linus Torvalds 已提交
100
	}
101

L
Linus Torvalds 已提交
102
	/* avoid a false detection of ctr overflows in NMI handler */
103
	for (i = 0; i < NUM_COUNTERS; ++i) {
104
		if (unlikely(!msrs->counters[i].addr))
105
			continue;
106
		wrmsrl(msrs->counters[i].addr, -1LL);
L
Linus Torvalds 已提交
107 108 109
	}

	/* enable active counters */
110
	for (i = 0; i < NUM_COUNTERS; ++i) {
111
		if (counter_config[i].enabled && msrs->counters[i].addr) {
112
			reset_value[i] = counter_config[i].count;
113
			wrmsrl(msrs->counters[i].addr,
114
			       -(u64)counter_config[i].count);
115 116 117 118
			rdmsrl(msrs->controls[i].addr, val);
			val &= model->reserved;
			val |= op_x86_get_ctrl(model, &counter_config[i]);
			wrmsrl(msrs->controls[i].addr, val);
119 120
		} else {
			reset_value[i] = 0;
L
Linus Torvalds 已提交
121 122 123 124
		}
	}
}

125 126
#ifdef CONFIG_OPROFILE_IBS

127 128 129
static inline int
op_amd_handle_ibs(struct pt_regs * const regs,
		  struct op_msrs const * const msrs)
L
Linus Torvalds 已提交
130
{
131
	u64 val, ctl;
132
	struct op_entry entry;
L
Linus Torvalds 已提交
133

134
	if (!has_ibs)
135
		return 0;
L
Linus Torvalds 已提交
136

137
	if (ibs_config.fetch_enabled) {
138 139 140 141
		rdmsrl(MSR_AMD64_IBSFETCHCTL, ctl);
		if (ctl & IBS_FETCH_VAL) {
			rdmsrl(MSR_AMD64_IBSFETCHLINAD, val);
			oprofile_write_reserve(&entry, regs, val,
142
					       IBS_FETCH_CODE, IBS_FETCH_SIZE);
143 144
			oprofile_add_data64(&entry, val);
			oprofile_add_data64(&entry, ctl);
145
			rdmsrl(MSR_AMD64_IBSFETCHPHYSAD, val);
146
			oprofile_add_data64(&entry, val);
147
			oprofile_write_commit(&entry);
148

R
Robert Richter 已提交
149
			/* reenable the IRQ */
150 151 152
			ctl &= ~(IBS_FETCH_VAL | IBS_FETCH_CNT_MASK);
			ctl |= IBS_FETCH_ENABLE;
			wrmsrl(MSR_AMD64_IBSFETCHCTL, ctl);
153 154 155
		}
	}

156
	if (ibs_config.op_enabled) {
157 158 159 160
		rdmsrl(MSR_AMD64_IBSOPCTL, ctl);
		if (ctl & IBS_OP_VAL) {
			rdmsrl(MSR_AMD64_IBSOPRIP, val);
			oprofile_write_reserve(&entry, regs, val,
161
					       IBS_OP_CODE, IBS_OP_SIZE);
162
			oprofile_add_data64(&entry, val);
163
			rdmsrl(MSR_AMD64_IBSOPDATA, val);
164
			oprofile_add_data64(&entry, val);
165
			rdmsrl(MSR_AMD64_IBSOPDATA2, val);
166
			oprofile_add_data64(&entry, val);
167
			rdmsrl(MSR_AMD64_IBSOPDATA3, val);
168
			oprofile_add_data64(&entry, val);
169
			rdmsrl(MSR_AMD64_IBSDCLINAD, val);
170
			oprofile_add_data64(&entry, val);
171
			rdmsrl(MSR_AMD64_IBSDCPHYSAD, val);
172
			oprofile_add_data64(&entry, val);
173
			oprofile_write_commit(&entry);
174 175

			/* reenable the IRQ */
176 177 178
			ctl &= ~IBS_OP_VAL & 0xFFFFFFFF;
			ctl |= IBS_OP_ENABLE;
			wrmsrl(MSR_AMD64_IBSOPCTL, ctl);
179 180 181
		}
	}

L
Linus Torvalds 已提交
182 183 184
	return 1;
}

185 186
static inline void op_amd_start_ibs(void)
{
187
	u64 val;
188
	if (has_ibs && ibs_config.fetch_enabled) {
189 190 191 192
		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);
193 194 195
	}

	if (has_ibs && ibs_config.op_enabled) {
196 197 198 199
		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);
200 201 202 203 204
	}
}

static void op_amd_stop_ibs(void)
{
205
	if (has_ibs && ibs_config.fetch_enabled)
206
		/* clear max count and enable */
207
		wrmsrl(MSR_AMD64_IBSFETCHCTL, 0);
208

209
	if (has_ibs && ibs_config.op_enabled)
210
		/* clear max count and enable */
211
		wrmsrl(MSR_AMD64_IBSOPCTL, 0);
212 213 214 215 216
}

#else

static inline int op_amd_handle_ibs(struct pt_regs * const regs,
217 218 219 220
				    struct op_msrs const * const msrs)
{
	return 0;
}
221 222 223
static inline void op_amd_start_ibs(void) { }
static inline void op_amd_stop_ibs(void) { }

224 225
#endif

226 227 228
static int op_amd_check_ctrs(struct pt_regs * const regs,
			     struct op_msrs const * const msrs)
{
229
	u64 val;
230 231
	int i;

232 233
	for (i = 0 ; i < NUM_COUNTERS; ++i) {
		if (!reset_value[i])
234
			continue;
235 236 237 238 239
		rdmsrl(msrs->counters[i].addr, val);
		/* bit is clear if overflowed: */
		if (val & OP_CTR_OVERFLOW)
			continue;
		oprofile_add_sample(regs, i);
240
		wrmsrl(msrs->counters[i].addr, -(u64)reset_value[i]);
241 242 243 244 245 246 247
	}

	op_amd_handle_ibs(regs, msrs);

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

249
static void op_amd_start(struct op_msrs const * const msrs)
L
Linus Torvalds 已提交
250
{
251
	u64 val;
L
Linus Torvalds 已提交
252
	int i;
253 254
	for (i = 0 ; i < NUM_COUNTERS ; ++i) {
		if (reset_value[i]) {
255 256 257
			rdmsrl(msrs->controls[i].addr, val);
			val |= ARCH_PERFMON_EVENTSEL0_ENABLE;
			wrmsrl(msrs->controls[i].addr, val);
L
Linus Torvalds 已提交
258 259
		}
	}
260

261
	op_amd_start_ibs();
L
Linus Torvalds 已提交
262 263
}

264
static void op_amd_stop(struct op_msrs const * const msrs)
L
Linus Torvalds 已提交
265
{
266
	u64 val;
L
Linus Torvalds 已提交
267 268
	int i;

R
Robert Richter 已提交
269 270 271 272
	/*
	 * Subtle: stop on all counters to avoid race with setting our
	 * pm callback
	 */
273 274
	for (i = 0 ; i < NUM_COUNTERS ; ++i) {
		if (!reset_value[i])
275
			continue;
276 277 278
		rdmsrl(msrs->controls[i].addr, val);
		val &= ~ARCH_PERFMON_EVENTSEL0_ENABLE;
		wrmsrl(msrs->controls[i].addr, val);
L
Linus Torvalds 已提交
279
	}
280

281
	op_amd_stop_ibs();
L
Linus Torvalds 已提交
282 283
}

284
static void op_amd_shutdown(struct op_msrs const * const msrs)
285 286 287
{
	int i;

288
	for (i = 0 ; i < NUM_COUNTERS ; ++i) {
289
		if (msrs->counters[i].addr)
290 291
			release_perfctr_nmi(MSR_K7_PERFCTR0 + i);
	}
292
	for (i = 0 ; i < NUM_CONTROLS ; ++i) {
293
		if (msrs->controls[i].addr)
294 295 296
			release_evntsel_nmi(MSR_K7_EVNTSEL0 + i);
	}
}
L
Linus Torvalds 已提交
297

298
#ifdef CONFIG_OPROFILE_IBS
299

300 301
static u8 ibs_eilvt_off;

302 303
static inline void apic_init_ibs_nmi_per_cpu(void *arg)
{
304
	ibs_eilvt_off = setup_APIC_eilvt_ibs(0, APIC_EILVT_MSG_NMI, 0);
305 306 307 308 309 310 311
}

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

312
static int init_ibs_nmi(void)
313 314 315 316 317 318 319 320
{
#define IBSCTL_LVTOFFSETVAL		(1 << 8)
#define IBSCTL				0x1cc
	struct pci_dev *cpu_cfg;
	int nodes;
	u32 value = 0;

	/* per CPU setup */
321
	on_each_cpu(apic_init_ibs_nmi_per_cpu, NULL, 1);
322 323 324 325 326 327 328 329 330 331 332 333 334 335

	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)) {
336
			pci_dev_put(cpu_cfg);
337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360
			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;
	}

#ifdef CONFIG_NUMA
	/* Sanity check */
	/* Works only for 64bit with proper numa implementation. */
	if (nodes != num_possible_nodes()) {
		printk(KERN_DEBUG "Failed to setup CPU node(s) for IBS, "
			"found: %d, expected %d",
			nodes, num_possible_nodes());
		return 1;
	}
#endif
	return 0;
}

361 362 363
/* uninitialize the APIC for the IBS interrupts if needed */
static void clear_ibs_nmi(void)
{
364
	if (has_ibs)
365 366 367
		on_each_cpu(apic_clear_ibs_nmi_per_cpu, NULL, 1);
}

R
Robert Richter 已提交
368
/* initialize the APIC for the IBS interrupts if available */
369
static void ibs_init(void)
370
{
371
	has_ibs = boot_cpu_has(X86_FEATURE_IBS);
372

373
	if (!has_ibs)
374 375
		return;

376
	if (init_ibs_nmi()) {
377
		has_ibs = 0;
378 379 380 381
		return;
	}

	printk(KERN_INFO "oprofile: AMD IBS detected\n");
382 383
}

384
static void ibs_exit(void)
385
{
386
	if (!has_ibs)
387 388 389
		return;

	clear_ibs_nmi();
390 391
}

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

R
Robert Richter 已提交
394
static int setup_ibs_files(struct super_block *sb, struct dentry *root)
395 396
{
	struct dentry *dir;
397 398 399 400 401 402 403 404
	int ret = 0;

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

	if (ret)
		return ret;
405

406
	if (!has_ibs)
407 408 409
		return ret;

	/* model specific files */
410 411 412 413 414 415 416

	/* 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;
417 418

	dir = oprofilefs_mkdir(sb, root, "ibs_fetch");
419
	oprofilefs_create_ulong(sb, dir, "enable",
420
				&ibs_config.fetch_enabled);
421
	oprofilefs_create_ulong(sb, dir, "max_count",
422 423 424 425
				&ibs_config.max_cnt_fetch);
	oprofilefs_create_ulong(sb, dir, "rand_enable",
				&ibs_config.rand_en);

426
	dir = oprofilefs_mkdir(sb, root, "ibs_op");
427
	oprofilefs_create_ulong(sb, dir, "enable",
428
				&ibs_config.op_enabled);
429
	oprofilefs_create_ulong(sb, dir, "max_count",
430
				&ibs_config.max_cnt_op);
431
	oprofilefs_create_ulong(sb, dir, "dispatched_ops",
432
				&ibs_config.dispatched_ops);
433 434

	return 0;
435 436
}

437 438
static int op_amd_init(struct oprofile_operations *ops)
{
439
	ibs_init();
440 441
	create_arch_files = ops->create_files;
	ops->create_files = setup_ibs_files;
442 443 444 445 446
	return 0;
}

static void op_amd_exit(void)
{
447
	ibs_exit();
448 449
}

450 451 452 453 454 455 456 457 458 459 460 461
#else

/* no IBS support */

static int op_amd_init(struct oprofile_operations *ops)
{
	return 0;
}

static void op_amd_exit(void) {}

#endif /* CONFIG_OPROFILE_IBS */
462

463
struct op_x86_model_spec const op_amd_spec = {
R
Robert Richter 已提交
464 465
	.num_counters		= NUM_COUNTERS,
	.num_controls		= NUM_CONTROLS,
466 467 468 469
	.reserved		= MSR_AMD_EVENTSEL_RESERVED,
	.event_mask		= OP_EVENT_MASK,
	.init			= op_amd_init,
	.exit			= op_amd_exit,
R
Robert Richter 已提交
470 471 472 473 474
	.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,
475
	.shutdown		= &op_amd_shutdown,
L
Linus Torvalds 已提交
476
};