perf_event.c 14.4 KB
Newer Older
1 2 3 4 5 6
#undef DEBUG

/*
 * ARM performance counter support.
 *
 * Copyright (C) 2009 picoChip Designs, Ltd., Jamie Iles
7
 * Copyright (C) 2010 ARM Ltd., Will Deacon <will.deacon@arm.com>
8
 *
9 10 11 12 13 14 15
 * This code is based on the sparc64 perf event code, which is in turn based
 * on the x86 code. Callchain code is based on the ARM OProfile backtrace
 * code.
 */
#define pr_fmt(fmt) "hw perfevents: " fmt

#include <linux/kernel.h>
16
#include <linux/platform_device.h>
J
Jon Hunter 已提交
17
#include <linux/pm_runtime.h>
18
#include <linux/uaccess.h>
19 20 21 22 23 24

#include <asm/irq_regs.h>
#include <asm/pmu.h>
#include <asm/stacktrace.h>

static int
M
Mark Rutland 已提交
25 26 27 28 29
armpmu_map_cache_event(const unsigned (*cache_map)
				      [PERF_COUNT_HW_CACHE_MAX]
				      [PERF_COUNT_HW_CACHE_OP_MAX]
				      [PERF_COUNT_HW_CACHE_RESULT_MAX],
		       u64 config)
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
{
	unsigned int cache_type, cache_op, cache_result, ret;

	cache_type = (config >>  0) & 0xff;
	if (cache_type >= PERF_COUNT_HW_CACHE_MAX)
		return -EINVAL;

	cache_op = (config >>  8) & 0xff;
	if (cache_op >= PERF_COUNT_HW_CACHE_OP_MAX)
		return -EINVAL;

	cache_result = (config >> 16) & 0xff;
	if (cache_result >= PERF_COUNT_HW_CACHE_RESULT_MAX)
		return -EINVAL;

M
Mark Rutland 已提交
45
	ret = (int)(*cache_map)[cache_type][cache_op][cache_result];
46 47 48 49 50 51 52

	if (ret == CACHE_OP_UNSUPPORTED)
		return -ENOENT;

	return ret;
}

53
static int
54
armpmu_map_hw_event(const unsigned (*event_map)[PERF_COUNT_HW_MAX], u64 config)
55
{
M
Mark Rutland 已提交
56 57
	int mapping = (*event_map)[config];
	return mapping == HW_OP_UNSUPPORTED ? -ENOENT : mapping;
58 59 60
}

static int
M
Mark Rutland 已提交
61
armpmu_map_raw_event(u32 raw_event_mask, u64 config)
62
{
M
Mark Rutland 已提交
63 64 65
	return (int)(config & raw_event_mask);
}

66 67 68 69 70 71 72 73
int
armpmu_map_event(struct perf_event *event,
		 const unsigned (*event_map)[PERF_COUNT_HW_MAX],
		 const unsigned (*cache_map)
				[PERF_COUNT_HW_CACHE_MAX]
				[PERF_COUNT_HW_CACHE_OP_MAX]
				[PERF_COUNT_HW_CACHE_RESULT_MAX],
		 u32 raw_event_mask)
M
Mark Rutland 已提交
74 75 76 77 78
{
	u64 config = event->attr.config;

	switch (event->attr.type) {
	case PERF_TYPE_HARDWARE:
79
		return armpmu_map_hw_event(event_map, config);
M
Mark Rutland 已提交
80 81 82 83 84 85 86
	case PERF_TYPE_HW_CACHE:
		return armpmu_map_cache_event(cache_map, config);
	case PERF_TYPE_RAW:
		return armpmu_map_raw_event(raw_event_mask, config);
	}

	return -ENOENT;
87 88
}

89
int
90 91 92 93
armpmu_event_set_period(struct perf_event *event,
			struct hw_perf_event *hwc,
			int idx)
{
94
	struct arm_pmu *armpmu = to_arm_pmu(event->pmu);
95
	s64 left = local64_read(&hwc->period_left);
96 97 98
	s64 period = hwc->sample_period;
	int ret = 0;

99 100 101 102
	/* The period may have been changed by PERF_EVENT_IOC_PERIOD */
	if (unlikely(period != hwc->last_period))
		left = period - (hwc->last_period - left);

103 104
	if (unlikely(left <= -period)) {
		left = period;
105
		local64_set(&hwc->period_left, left);
106 107 108 109 110 111
		hwc->last_period = period;
		ret = 1;
	}

	if (unlikely(left <= 0)) {
		left += period;
112
		local64_set(&hwc->period_left, left);
113 114 115 116 117 118 119
		hwc->last_period = period;
		ret = 1;
	}

	if (left > (s64)armpmu->max_period)
		left = armpmu->max_period;

120
	local64_set(&hwc->prev_count, (u64)-left);
121 122 123 124 125 126 127 128

	armpmu->write_counter(idx, (u64)(-left) & 0xffffffff);

	perf_event_update_userpage(event);

	return ret;
}

129
u64
130 131
armpmu_event_update(struct perf_event *event,
		    struct hw_perf_event *hwc,
132
		    int idx)
133
{
134
	struct arm_pmu *armpmu = to_arm_pmu(event->pmu);
135
	u64 delta, prev_raw_count, new_raw_count;
136 137

again:
138
	prev_raw_count = local64_read(&hwc->prev_count);
139 140
	new_raw_count = armpmu->read_counter(idx);

141
	if (local64_cmpxchg(&hwc->prev_count, prev_raw_count,
142 143 144
			     new_raw_count) != prev_raw_count)
		goto again;

145
	delta = (new_raw_count - prev_raw_count) & armpmu->max_period;
146

147 148
	local64_add(delta, &event->count);
	local64_sub(delta, &hwc->period_left);
149 150 151 152 153

	return new_raw_count;
}

static void
P
Peter Zijlstra 已提交
154
armpmu_read(struct perf_event *event)
155 156 157
{
	struct hw_perf_event *hwc = &event->hw;

P
Peter Zijlstra 已提交
158 159 160
	/* Don't read disabled counters! */
	if (hwc->idx < 0)
		return;
161

162
	armpmu_event_update(event, hwc, hwc->idx);
163 164 165
}

static void
P
Peter Zijlstra 已提交
166
armpmu_stop(struct perf_event *event, int flags)
167
{
168
	struct arm_pmu *armpmu = to_arm_pmu(event->pmu);
169 170
	struct hw_perf_event *hwc = &event->hw;

P
Peter Zijlstra 已提交
171 172 173 174 175 176
	/*
	 * ARM pmu always has to update the counter, so ignore
	 * PERF_EF_UPDATE, see comments in armpmu_start().
	 */
	if (!(hwc->state & PERF_HES_STOPPED)) {
		armpmu->disable(hwc, hwc->idx);
177
		armpmu_event_update(event, hwc, hwc->idx);
P
Peter Zijlstra 已提交
178 179
		hwc->state |= PERF_HES_STOPPED | PERF_HES_UPTODATE;
	}
180 181 182
}

static void
P
Peter Zijlstra 已提交
183
armpmu_start(struct perf_event *event, int flags)
184
{
185
	struct arm_pmu *armpmu = to_arm_pmu(event->pmu);
186 187
	struct hw_perf_event *hwc = &event->hw;

P
Peter Zijlstra 已提交
188 189 190 191 192 193 194 195
	/*
	 * ARM pmu always has to reprogram the period, so ignore
	 * PERF_EF_RELOAD, see the comment below.
	 */
	if (flags & PERF_EF_RELOAD)
		WARN_ON_ONCE(!(hwc->state & PERF_HES_UPTODATE));

	hwc->state = 0;
196 197
	/*
	 * Set the period again. Some counters can't be stopped, so when we
P
Peter Zijlstra 已提交
198
	 * were stopped we simply disabled the IRQ source and the counter
199 200 201 202 203 204 205 206
	 * may have been left counting. If we don't do this step then we may
	 * get an interrupt too soon or *way* too late if the overflow has
	 * happened since disabling.
	 */
	armpmu_event_set_period(event, hwc, hwc->idx);
	armpmu->enable(hwc, hwc->idx);
}

P
Peter Zijlstra 已提交
207 208 209
static void
armpmu_del(struct perf_event *event, int flags)
{
210
	struct arm_pmu *armpmu = to_arm_pmu(event->pmu);
211
	struct pmu_hw_events *hw_events = armpmu->get_hw_events();
P
Peter Zijlstra 已提交
212 213 214 215 216 217
	struct hw_perf_event *hwc = &event->hw;
	int idx = hwc->idx;

	WARN_ON(idx < 0);

	armpmu_stop(event, PERF_EF_UPDATE);
218 219
	hw_events->events[idx] = NULL;
	clear_bit(idx, hw_events->used_mask);
P
Peter Zijlstra 已提交
220 221 222 223

	perf_event_update_userpage(event);
}

224
static int
P
Peter Zijlstra 已提交
225
armpmu_add(struct perf_event *event, int flags)
226
{
227
	struct arm_pmu *armpmu = to_arm_pmu(event->pmu);
228
	struct pmu_hw_events *hw_events = armpmu->get_hw_events();
229 230 231 232
	struct hw_perf_event *hwc = &event->hw;
	int idx;
	int err = 0;

P
Peter Zijlstra 已提交
233
	perf_pmu_disable(event->pmu);
234

235
	/* If we don't have a space for the counter then finish early. */
236
	idx = armpmu->get_event_idx(hw_events, hwc);
237 238 239 240 241 242 243 244 245 246 247
	if (idx < 0) {
		err = idx;
		goto out;
	}

	/*
	 * If there is an event in the counter we are going to use then make
	 * sure it is disabled.
	 */
	event->hw.idx = idx;
	armpmu->disable(hwc, idx);
248
	hw_events->events[idx] = event;
249

P
Peter Zijlstra 已提交
250 251 252
	hwc->state = PERF_HES_STOPPED | PERF_HES_UPTODATE;
	if (flags & PERF_EF_START)
		armpmu_start(event, PERF_EF_RELOAD);
253 254 255 256 257

	/* Propagate our changes to the userspace mapping. */
	perf_event_update_userpage(event);

out:
P
Peter Zijlstra 已提交
258
	perf_pmu_enable(event->pmu);
259 260 261 262
	return err;
}

static int
263
validate_event(struct pmu_hw_events *hw_events,
264 265
	       struct perf_event *event)
{
266
	struct arm_pmu *armpmu = to_arm_pmu(event->pmu);
267
	struct hw_perf_event fake_event = event->hw;
268
	struct pmu *leader_pmu = event->group_leader->pmu;
269

270
	if (event->pmu != leader_pmu || event->state <= PERF_EVENT_STATE_OFF)
271
		return 1;
272

273
	return armpmu->get_event_idx(hw_events, &fake_event) >= 0;
274 275 276 277 278 279
}

static int
validate_group(struct perf_event *event)
{
	struct perf_event *sibling, *leader = event->group_leader;
280
	struct pmu_hw_events fake_pmu;
281
	DECLARE_BITMAP(fake_used_mask, ARMPMU_MAX_HWEVENTS);
282

283 284 285 286 287 288
	/*
	 * Initialise the fake PMU. We only need to populate the
	 * used_mask for the purposes of validation.
	 */
	memset(fake_used_mask, 0, sizeof(fake_used_mask));
	fake_pmu.used_mask = fake_used_mask;
289 290

	if (!validate_event(&fake_pmu, leader))
291
		return -EINVAL;
292 293 294

	list_for_each_entry(sibling, &leader->sibling_list, group_entry) {
		if (!validate_event(&fake_pmu, sibling))
295
			return -EINVAL;
296 297 298
	}

	if (!validate_event(&fake_pmu, event))
299
		return -EINVAL;
300 301 302 303

	return 0;
}

304
static irqreturn_t armpmu_dispatch_irq(int irq, void *dev)
305
{
306
	struct arm_pmu *armpmu = (struct arm_pmu *) dev;
307 308
	struct platform_device *plat_device = armpmu->plat_device;
	struct arm_pmu_platdata *plat = dev_get_platdata(&plat_device->dev);
309

310 311 312 313
	if (plat && plat->handle_irq)
		return plat->handle_irq(irq, dev, armpmu->handle_irq);
	else
		return armpmu->handle_irq(irq, dev);
314 315
}

316
static void
317
armpmu_release_hardware(struct arm_pmu *armpmu)
318
{
319 320
	armpmu->free_irq();
	pm_runtime_put_sync(&armpmu->plat_device->dev);
321 322
}

323
static int
324
armpmu_reserve_hardware(struct arm_pmu *armpmu)
325
{
326
	int err;
327
	struct platform_device *pmu_device = armpmu->plat_device;
328

329 330 331
	if (!pmu_device)
		return -ENODEV;

J
Jon Hunter 已提交
332
	pm_runtime_get_sync(&pmu_device->dev);
333 334 335 336
	err = armpmu->request_irq(armpmu_dispatch_irq);
	if (err) {
		armpmu_release_hardware(armpmu);
		return err;
337
	}
338

339
	return 0;
340 341 342 343 344
}

static void
hw_perf_event_destroy(struct perf_event *event)
{
345
	struct arm_pmu *armpmu = to_arm_pmu(event->pmu);
346 347 348 349
	atomic_t *active_events	 = &armpmu->active_events;
	struct mutex *pmu_reserve_mutex = &armpmu->reserve_mutex;

	if (atomic_dec_and_mutex_lock(active_events, pmu_reserve_mutex)) {
350
		armpmu_release_hardware(armpmu);
351
		mutex_unlock(pmu_reserve_mutex);
352 353 354
	}
}

355 356 357 358 359 360 361
static int
event_requires_mode_exclusion(struct perf_event_attr *attr)
{
	return attr->exclude_idle || attr->exclude_user ||
	       attr->exclude_kernel || attr->exclude_hv;
}

362 363 364
static int
__hw_perf_event_init(struct perf_event *event)
{
365
	struct arm_pmu *armpmu = to_arm_pmu(event->pmu);
366 367 368
	struct hw_perf_event *hwc = &event->hw;
	int mapping, err;

M
Mark Rutland 已提交
369
	mapping = armpmu->map_event(event);
370 371 372 373 374 375 376

	if (mapping < 0) {
		pr_debug("event %x:%llx not supported\n", event->attr.type,
			 event->attr.config);
		return mapping;
	}

377 378 379 380 381 382 383 384 385 386 387
	/*
	 * We don't assign an index until we actually place the event onto
	 * hardware. Use -1 to signify that we haven't decided where to put it
	 * yet. For SMP systems, each core has it's own PMU so we can't do any
	 * clever allocation or constraints checking at this point.
	 */
	hwc->idx		= -1;
	hwc->config_base	= 0;
	hwc->config		= 0;
	hwc->event_base		= 0;

388 389 390
	/*
	 * Check whether we need to exclude the counter from certain modes.
	 */
391 392 393
	if ((!armpmu->set_event_filter ||
	     armpmu->set_event_filter(hwc, &event->attr)) &&
	     event_requires_mode_exclusion(&event->attr)) {
394 395
		pr_debug("ARM performance counters do not support "
			 "mode exclusion\n");
396
		return -EOPNOTSUPP;
397 398 399
	}

	/*
400
	 * Store the event encoding into the config_base field.
401
	 */
402
	hwc->config_base	    |= (unsigned long)mapping;
403 404

	if (!hwc->sample_period) {
405 406 407 408 409 410 411
		/*
		 * For non-sampling runs, limit the sample_period to half
		 * of the counter width. That way, the new counter value
		 * is far less likely to overtake the previous one unless
		 * you have some serious IRQ latency issues.
		 */
		hwc->sample_period  = armpmu->max_period >> 1;
412
		hwc->last_period    = hwc->sample_period;
413
		local64_set(&hwc->period_left, hwc->sample_period);
414 415 416 417 418 419 420 421 422 423 424 425
	}

	err = 0;
	if (event->group_leader != event) {
		err = validate_group(event);
		if (err)
			return -EINVAL;
	}

	return err;
}

426
static int armpmu_event_init(struct perf_event *event)
427
{
428
	struct arm_pmu *armpmu = to_arm_pmu(event->pmu);
429
	int err = 0;
430
	atomic_t *active_events = &armpmu->active_events;
431

432 433 434 435
	/* does not support taken branch sampling */
	if (has_branch_stack(event))
		return -EOPNOTSUPP;

M
Mark Rutland 已提交
436
	if (armpmu->map_event(event) == -ENOENT)
437 438
		return -ENOENT;

439 440
	event->destroy = hw_perf_event_destroy;

441 442 443
	if (!atomic_inc_not_zero(active_events)) {
		mutex_lock(&armpmu->reserve_mutex);
		if (atomic_read(active_events) == 0)
444
			err = armpmu_reserve_hardware(armpmu);
445 446

		if (!err)
447 448
			atomic_inc(active_events);
		mutex_unlock(&armpmu->reserve_mutex);
449 450 451
	}

	if (err)
452
		return err;
453 454 455 456 457

	err = __hw_perf_event_init(event);
	if (err)
		hw_perf_event_destroy(event);

458
	return err;
459 460
}

P
Peter Zijlstra 已提交
461
static void armpmu_enable(struct pmu *pmu)
462
{
463 464
	struct arm_pmu *armpmu = to_arm_pmu(pmu);
	struct pmu_hw_events *hw_events = armpmu->get_hw_events();
465
	int enabled = bitmap_weight(hw_events->used_mask, armpmu->num_events);
466

467 468
	if (enabled)
		armpmu->start();
469 470
}

P
Peter Zijlstra 已提交
471
static void armpmu_disable(struct pmu *pmu)
472
{
473
	struct arm_pmu *armpmu = to_arm_pmu(pmu);
474
	armpmu->stop();
475 476
}

J
Jon Hunter 已提交
477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498
#ifdef CONFIG_PM_RUNTIME
static int armpmu_runtime_resume(struct device *dev)
{
	struct arm_pmu_platdata *plat = dev_get_platdata(dev);

	if (plat && plat->runtime_resume)
		return plat->runtime_resume(dev);

	return 0;
}

static int armpmu_runtime_suspend(struct device *dev)
{
	struct arm_pmu_platdata *plat = dev_get_platdata(dev);

	if (plat && plat->runtime_suspend)
		return plat->runtime_suspend(dev);

	return 0;
}
#endif

499 500 501 502
const struct dev_pm_ops armpmu_dev_pm_ops = {
	SET_RUNTIME_PM_OPS(armpmu_runtime_suspend, armpmu_runtime_resume, NULL)
};

503 504 505 506
static void __init armpmu_init(struct arm_pmu *armpmu)
{
	atomic_set(&armpmu->active_events, 0);
	mutex_init(&armpmu->reserve_mutex);
507 508 509 510 511 512 513 514 515 516 517 518 519

	armpmu->pmu = (struct pmu) {
		.pmu_enable	= armpmu_enable,
		.pmu_disable	= armpmu_disable,
		.event_init	= armpmu_event_init,
		.add		= armpmu_add,
		.del		= armpmu_del,
		.start		= armpmu_start,
		.stop		= armpmu_stop,
		.read		= armpmu_read,
	};
}

520
int armpmu_register(struct arm_pmu *armpmu, char *name, int type)
521 522
{
	armpmu_init(armpmu);
523 524
	pr_info("enabled with %s PMU driver, %d counters available\n",
			armpmu->name, armpmu->num_events);
525
	return perf_pmu_register(&armpmu->pmu, name, type);
526 527
}

528 529 530 531 532 533 534 535 536 537 538 539 540
/*
 * Callchain handling code.
 */

/*
 * The registers we're interested in are at the end of the variable
 * length saved register structure. The fp points at the end of this
 * structure so the address of this struct is:
 * (struct frame_tail *)(xxx->fp)-1
 *
 * This code has been adapted from the ARM OProfile support.
 */
struct frame_tail {
541 542 543
	struct frame_tail __user *fp;
	unsigned long sp;
	unsigned long lr;
544 545 546 547 548 549
} __attribute__((packed));

/*
 * Get the return address for a single stackframe and return a pointer to the
 * next frame tail.
 */
550 551
static struct frame_tail __user *
user_backtrace(struct frame_tail __user *tail,
552 553 554 555 556 557 558 559 560 561
	       struct perf_callchain_entry *entry)
{
	struct frame_tail buftail;

	/* Also check accessibility of one struct frame_tail beyond */
	if (!access_ok(VERIFY_READ, tail, sizeof(buftail)))
		return NULL;
	if (__copy_from_user_inatomic(&buftail, tail, sizeof(buftail)))
		return NULL;

562
	perf_callchain_store(entry, buftail.lr);
563 564 565 566 567

	/*
	 * Frame pointers should strictly progress back up the stack
	 * (towards higher addresses).
	 */
568
	if (tail + 1 >= buftail.fp)
569 570 571 572 573
		return NULL;

	return buftail.fp - 1;
}

574 575
void
perf_callchain_user(struct perf_callchain_entry *entry, struct pt_regs *regs)
576
{
577
	struct frame_tail __user *tail;
578 579


580
	tail = (struct frame_tail __user *)regs->ARM_fp - 1;
581

582 583
	while ((entry->nr < PERF_MAX_STACK_DEPTH) &&
	       tail && !((unsigned long)tail & 0x3))
584 585 586 587 588 589 590 591 592 593 594 595 596
		tail = user_backtrace(tail, entry);
}

/*
 * Gets called by walk_stackframe() for every stackframe. This will be called
 * whist unwinding the stackframe and is like a subroutine return so we use
 * the PC.
 */
static int
callchain_trace(struct stackframe *fr,
		void *data)
{
	struct perf_callchain_entry *entry = data;
597
	perf_callchain_store(entry, fr->pc);
598 599 600
	return 0;
}

601 602
void
perf_callchain_kernel(struct perf_callchain_entry *entry, struct pt_regs *regs)
603 604 605 606 607 608 609 610 611
{
	struct stackframe fr;

	fr.fp = regs->ARM_fp;
	fr.sp = regs->ARM_sp;
	fr.lr = regs->ARM_lr;
	fr.pc = regs->ARM_pc;
	walk_stackframe(&fr, callchain_trace, entry);
}