i915_pmu.c 28.2 KB
Newer Older
1
/*
2
 * SPDX-License-Identifier: MIT
3
 *
4
 * Copyright © 2017-2018 Intel Corporation
5 6
 */

7
#include <linux/irq.h>
8
#include <linux/pm_runtime.h>
9 10

#include "gt/intel_engine.h"
11
#include "gt/intel_engine_pm.h"
12
#include "gt/intel_engine_user.h"
13
#include "gt/intel_gt_pm.h"
14
#include "gt/intel_rc6.h"
15
#include "gt/intel_rps.h"
16

17
#include "i915_drv.h"
18 19
#include "i915_pmu.h"
#include "intel_pm.h"
20 21 22 23 24 25 26 27 28 29 30 31

/* Frequency for the sampling timer for events which need it. */
#define FREQUENCY 200
#define PERIOD max_t(u64, 10000, NSEC_PER_SEC / FREQUENCY)

#define ENGINE_SAMPLE_MASK \
	(BIT(I915_SAMPLE_BUSY) | \
	 BIT(I915_SAMPLE_WAIT) | \
	 BIT(I915_SAMPLE_SEMA))

#define ENGINE_SAMPLE_BITS (1 << I915_PMU_SAMPLE_BITS)

32
static cpumask_t i915_pmu_cpumask;
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81

static u8 engine_config_sample(u64 config)
{
	return config & I915_PMU_SAMPLE_MASK;
}

static u8 engine_event_sample(struct perf_event *event)
{
	return engine_config_sample(event->attr.config);
}

static u8 engine_event_class(struct perf_event *event)
{
	return (event->attr.config >> I915_PMU_CLASS_SHIFT) & 0xff;
}

static u8 engine_event_instance(struct perf_event *event)
{
	return (event->attr.config >> I915_PMU_SAMPLE_BITS) & 0xff;
}

static bool is_engine_config(u64 config)
{
	return config < __I915_PMU_OTHER(0);
}

static unsigned int config_enabled_bit(u64 config)
{
	if (is_engine_config(config))
		return engine_config_sample(config);
	else
		return ENGINE_SAMPLE_BITS + (config - __I915_PMU_OTHER(0));
}

static u64 config_enabled_mask(u64 config)
{
	return BIT_ULL(config_enabled_bit(config));
}

static bool is_engine_event(struct perf_event *event)
{
	return is_engine_config(event->attr.config);
}

static unsigned int event_enabled_bit(struct perf_event *event)
{
	return config_enabled_bit(event->attr.config);
}

82
static bool pmu_needs_timer(struct i915_pmu *pmu, bool gpu_active)
83
{
84
	struct drm_i915_private *i915 = container_of(pmu, typeof(*i915), pmu);
85 86 87 88 89 90 91
	u64 enable;

	/*
	 * Only some counters need the sampling timer.
	 *
	 * We start with a bitmask of all currently enabled events.
	 */
92
	enable = pmu->enable;
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107

	/*
	 * Mask out all the ones which do not need the timer, or in
	 * other words keep all the ones that could need the timer.
	 */
	enable &= config_enabled_mask(I915_PMU_ACTUAL_FREQUENCY) |
		  config_enabled_mask(I915_PMU_REQUESTED_FREQUENCY) |
		  ENGINE_SAMPLE_MASK;

	/*
	 * When the GPU is idle per-engine counters do not need to be
	 * running so clear those bits out.
	 */
	if (!gpu_active)
		enable &= ~ENGINE_SAMPLE_MASK;
108 109 110 111
	/*
	 * Also there is software busyness tracking available we do not
	 * need the timer for I915_SAMPLE_BUSY counter.
	 */
112
	else if (i915->caps.scheduler & I915_SCHEDULER_CAP_ENGINE_BUSY_STATS)
113
		enable &= ~BIT(I915_SAMPLE_BUSY);
114 115 116 117 118 119 120

	/*
	 * If some bits remain it means we need the sampling timer running.
	 */
	return enable;
}

121
static u64 __get_rc6(struct intel_gt *gt)
122
{
123 124
	struct drm_i915_private *i915 = gt->i915;
	u64 val;
125

126
	val = intel_rc6_residency_ns(&gt->rc6,
127 128 129 130 131
				     IS_VALLEYVIEW(i915) ?
				     VLV_GT_RENDER_RC6 :
				     GEN6_GT_GFX_RC6);

	if (HAS_RC6p(i915))
132
		val += intel_rc6_residency_ns(&gt->rc6, GEN6_GT_GFX_RC6p);
133 134

	if (HAS_RC6pp(i915))
135
		val += intel_rc6_residency_ns(&gt->rc6, GEN6_GT_GFX_RC6pp);
136 137 138 139 140 141 142 143 144 145 146 147 148 149

	return val;
}

#if IS_ENABLED(CONFIG_PM)

static inline s64 ktime_since(const ktime_t kt)
{
	return ktime_to_ns(ktime_sub(ktime_get(), kt));
}

static u64 __pmu_estimate_rc6(struct i915_pmu *pmu)
{
	u64 val;
150 151

	/*
152 153 154 155 156
	 * We think we are runtime suspended.
	 *
	 * Report the delta from when the device was suspended to now,
	 * on top of the last known real value, as the approximated RC6
	 * counter value.
157
	 */
158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231
	val = ktime_since(pmu->sleep_last);
	val += pmu->sample[__I915_SAMPLE_RC6].cur;

	pmu->sample[__I915_SAMPLE_RC6_ESTIMATED].cur = val;

	return val;
}

static u64 __pmu_update_rc6(struct i915_pmu *pmu, u64 val)
{
	/*
	 * If we are coming back from being runtime suspended we must
	 * be careful not to report a larger value than returned
	 * previously.
	 */
	if (val >= pmu->sample[__I915_SAMPLE_RC6_ESTIMATED].cur) {
		pmu->sample[__I915_SAMPLE_RC6_ESTIMATED].cur = 0;
		pmu->sample[__I915_SAMPLE_RC6].cur = val;
	} else {
		val = pmu->sample[__I915_SAMPLE_RC6_ESTIMATED].cur;
	}

	return val;
}

static u64 get_rc6(struct intel_gt *gt)
{
	struct drm_i915_private *i915 = gt->i915;
	struct i915_pmu *pmu = &i915->pmu;
	unsigned long flags;
	u64 val;

	val = 0;
	if (intel_gt_pm_get_if_awake(gt)) {
		val = __get_rc6(gt);
		intel_gt_pm_put(gt);
	}

	spin_lock_irqsave(&pmu->lock, flags);

	if (val)
		val = __pmu_update_rc6(pmu, val);
	else
		val = __pmu_estimate_rc6(pmu);

	spin_unlock_irqrestore(&pmu->lock, flags);

	return val;
}

static void park_rc6(struct drm_i915_private *i915)
{
	struct i915_pmu *pmu = &i915->pmu;

	if (pmu->enable & config_enabled_mask(I915_PMU_RC6_RESIDENCY))
		__pmu_update_rc6(pmu, __get_rc6(&i915->gt));

	pmu->sleep_last = ktime_get();
}

static void unpark_rc6(struct drm_i915_private *i915)
{
	struct i915_pmu *pmu = &i915->pmu;

	/* Estimate how long we slept and accumulate that into rc6 counters */
	if (pmu->enable & config_enabled_mask(I915_PMU_RC6_RESIDENCY))
		__pmu_estimate_rc6(pmu);
}

#else

static u64 get_rc6(struct intel_gt *gt)
{
	return __get_rc6(gt);
232 233
}

234 235 236 237 238
static void park_rc6(struct drm_i915_private *i915) {}
static void unpark_rc6(struct drm_i915_private *i915) {}

#endif

239
static void __i915_pmu_maybe_start_timer(struct i915_pmu *pmu)
240
{
241 242 243 244
	if (!pmu->timer_enabled && pmu_needs_timer(pmu, true)) {
		pmu->timer_enabled = true;
		pmu->timer_last = ktime_get();
		hrtimer_start_range_ns(&pmu->timer,
245 246 247 248 249
				       ns_to_ktime(PERIOD), 0,
				       HRTIMER_MODE_REL_PINNED);
	}
}

250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269
void i915_pmu_gt_parked(struct drm_i915_private *i915)
{
	struct i915_pmu *pmu = &i915->pmu;

	if (!pmu->base.event_init)
		return;

	spin_lock_irq(&pmu->lock);

	park_rc6(i915);

	/*
	 * Signal sampling timer to stop if only engine events are enabled and
	 * GPU went idle.
	 */
	pmu->timer_enabled = pmu_needs_timer(pmu, false);

	spin_unlock_irq(&pmu->lock);
}

270 271
void i915_pmu_gt_unparked(struct drm_i915_private *i915)
{
272 273 274
	struct i915_pmu *pmu = &i915->pmu;

	if (!pmu->base.event_init)
275 276
		return;

277
	spin_lock_irq(&pmu->lock);
278

279 280 281
	/*
	 * Re-enable sampling timer when GPU goes active.
	 */
282
	__i915_pmu_maybe_start_timer(pmu);
283 284 285

	unpark_rc6(i915);

286
	spin_unlock_irq(&pmu->lock);
287 288
}

289
static void
290
add_sample(struct i915_pmu_sample *sample, u32 val)
291
{
292
	sample->cur += val;
293 294
}

295 296 297 298 299 300 301 302 303 304
static bool exclusive_mmio_access(const struct drm_i915_private *i915)
{
	/*
	 * We have to avoid concurrent mmio cache line access on gen7 or
	 * risk a machine hang. For a fun history lesson dig out the old
	 * userspace intel_gpu_top and run it on Ivybridge or Haswell!
	 */
	return IS_GEN(i915, 7);
}

305
static void
306
engines_sample(struct intel_gt *gt, unsigned int period_ns)
307
{
308
	struct drm_i915_private *i915 = gt->i915;
309 310 311
	struct intel_engine_cs *engine;
	enum intel_engine_id id;

312
	if ((i915->pmu.enable & ENGINE_SAMPLE_MASK) == 0)
313 314
		return;

315
	for_each_engine(engine, gt, id) {
316
		struct intel_engine_pmu *pmu = &engine->pmu;
317
		spinlock_t *mmio_lock;
318
		unsigned long flags;
319
		bool busy;
320 321
		u32 val;

322 323 324
		if (!intel_engine_pm_get_if_awake(engine))
			continue;

325 326 327 328 329 330
		mmio_lock = NULL;
		if (exclusive_mmio_access(i915))
			mmio_lock = &engine->uncore->lock;

		if (unlikely(mmio_lock))
			spin_lock_irqsave(mmio_lock, flags);
331

332
		val = ENGINE_READ_FW(engine, RING_CTL);
333
		if (val == 0) /* powerwell off => engine idle */
334
			goto skip;
335

336
		if (val & RING_WAIT)
337
			add_sample(&pmu->sample[I915_SAMPLE_WAIT], period_ns);
338
		if (val & RING_WAIT_SEMAPHORE)
339 340
			add_sample(&pmu->sample[I915_SAMPLE_SEMA], period_ns);

341 342 343 344
		/* No need to sample when busy stats are supported. */
		if (intel_engine_supports_stats(engine))
			goto skip;

345 346 347 348 349 350 351 352 353
		/*
		 * While waiting on a semaphore or event, MI_MODE reports the
		 * ring as idle. However, previously using the seqno, and with
		 * execlists sampling, we account for the ring waiting as the
		 * engine being busy. Therefore, we record the sample as being
		 * busy if either waiting or !idle.
		 */
		busy = val & (RING_WAIT_SEMAPHORE | RING_WAIT);
		if (!busy) {
354
			val = ENGINE_READ_FW(engine, RING_MI_MODE);
355 356 357 358
			busy = !(val & MODE_IDLE);
		}
		if (busy)
			add_sample(&pmu->sample[I915_SAMPLE_BUSY], period_ns);
359

360
skip:
361 362
		if (unlikely(mmio_lock))
			spin_unlock_irqrestore(mmio_lock, flags);
363 364
		intel_engine_pm_put(engine);
	}
365 366
}

367 368 369 370 371 372 373
static void
add_sample_mult(struct i915_pmu_sample *sample, u32 val, u32 mul)
{
	sample->cur += mul_u32_u32(val, mul);
}

static void
374
frequency_sample(struct intel_gt *gt, unsigned int period_ns)
375
{
376 377 378
	struct drm_i915_private *i915 = gt->i915;
	struct intel_uncore *uncore = gt->uncore;
	struct i915_pmu *pmu = &i915->pmu;
379
	struct intel_rps *rps = &gt->rps;
380 381

	if (pmu->enable & config_enabled_mask(I915_PMU_ACTUAL_FREQUENCY)) {
382 383
		u32 val;

384
		val = rps->cur_freq;
385
		if (intel_gt_pm_get_if_awake(gt)) {
386 387 388 389 390 391 392 393 394 395 396 397 398 399 400
			u32 stat;

			/*
			 * We take a quick peek here without using forcewake
			 * so that we don't perturb the system under observation
			 * (forcewake => !rc6 => increased power use). We expect
			 * that if the read fails because it is outside of the
			 * mmio power well, then it will return 0 -- in which
			 * case we assume the system is running at the intended
			 * frequency. Fortunately, the read should rarely fail!
			 */
			stat = intel_uncore_read_fw(uncore, GEN6_RPSTAT1);
			if (stat)
				val = intel_get_cagf(rps, stat);

401
			intel_gt_pm_put(gt);
402 403
		}

404
		add_sample_mult(&pmu->sample[__I915_SAMPLE_FREQ_ACT],
405
				intel_gpu_freq(rps, val),
406
				period_ns / 1000);
407 408
	}

409 410
	if (pmu->enable & config_enabled_mask(I915_PMU_REQUESTED_FREQUENCY)) {
		add_sample_mult(&pmu->sample[__I915_SAMPLE_FREQ_REQ],
411
				intel_gpu_freq(rps, rps->cur_freq),
412
				period_ns / 1000);
413 414 415 416 417 418 419
	}
}

static enum hrtimer_restart i915_sample(struct hrtimer *hrtimer)
{
	struct drm_i915_private *i915 =
		container_of(hrtimer, struct drm_i915_private, pmu.timer);
420
	struct i915_pmu *pmu = &i915->pmu;
421
	struct intel_gt *gt = &i915->gt;
422 423
	unsigned int period_ns;
	ktime_t now;
424

425
	if (!READ_ONCE(pmu->timer_enabled))
426 427
		return HRTIMER_NORESTART;

428
	now = ktime_get();
429 430
	period_ns = ktime_to_ns(ktime_sub(now, pmu->timer_last));
	pmu->timer_last = now;
431 432 433 434 435 436 437

	/*
	 * Strictly speaking the passed in period may not be 100% accurate for
	 * all internal calculation, since some amount of time can be spent on
	 * grabbing the forcewake. However the potential error from timer call-
	 * back delay greatly dominates this so we keep it simple.
	 */
438 439
	engines_sample(gt, period_ns);
	frequency_sample(gt, period_ns);
440 441

	hrtimer_forward(hrtimer, now, ns_to_ktime(PERIOD));
442 443 444 445

	return HRTIMER_RESTART;
}

446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461
static u64 count_interrupts(struct drm_i915_private *i915)
{
	/* open-coded kstat_irqs() */
	struct irq_desc *desc = irq_to_desc(i915->drm.pdev->irq);
	u64 sum = 0;
	int cpu;

	if (!desc || !desc->kstat_irqs)
		return 0;

	for_each_possible_cpu(cpu)
		sum += *per_cpu_ptr(desc->kstat_irqs, cpu);

	return sum;
}

462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478
static void engine_event_destroy(struct perf_event *event)
{
	struct drm_i915_private *i915 =
		container_of(event->pmu, typeof(*i915), pmu.base);
	struct intel_engine_cs *engine;

	engine = intel_engine_lookup_user(i915,
					  engine_event_class(event),
					  engine_event_instance(event));
	if (WARN_ON_ONCE(!engine))
		return;

	if (engine_event_sample(event) == I915_SAMPLE_BUSY &&
	    intel_engine_supports_stats(engine))
		intel_disable_engine_stats(engine);
}

479 480 481
static void i915_pmu_event_destroy(struct perf_event *event)
{
	WARN_ON(event->parent);
482 483 484

	if (is_engine_event(event))
		engine_event_destroy(event);
485 486
}

487 488 489
static int
engine_event_status(struct intel_engine_cs *engine,
		    enum drm_i915_pmu_engine_sample sample)
490
{
491
	switch (sample) {
492 493 494 495
	case I915_SAMPLE_BUSY:
	case I915_SAMPLE_WAIT:
		break;
	case I915_SAMPLE_SEMA:
496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515
		if (INTEL_GEN(engine->i915) < 6)
			return -ENODEV;
		break;
	default:
		return -ENOENT;
	}

	return 0;
}

static int
config_status(struct drm_i915_private *i915, u64 config)
{
	switch (config) {
	case I915_PMU_ACTUAL_FREQUENCY:
		if (IS_VALLEYVIEW(i915) || IS_CHERRYVIEW(i915))
			/* Requires a mutex for sampling! */
			return -ENODEV;
		/* Fall-through. */
	case I915_PMU_REQUESTED_FREQUENCY:
516 517 518
		if (INTEL_GEN(i915) < 6)
			return -ENODEV;
		break;
519 520 521 522 523 524
	case I915_PMU_INTERRUPTS:
		break;
	case I915_PMU_RC6_RESIDENCY:
		if (!HAS_RC6(i915))
			return -ENODEV;
		break;
525 526 527 528 529 530 531
	default:
		return -ENOENT;
	}

	return 0;
}

532 533 534 535 536
static int engine_event_init(struct perf_event *event)
{
	struct drm_i915_private *i915 =
		container_of(event->pmu, typeof(*i915), pmu.base);
	struct intel_engine_cs *engine;
537 538
	u8 sample;
	int ret;
539 540 541 542 543 544

	engine = intel_engine_lookup_user(i915, engine_event_class(event),
					  engine_event_instance(event));
	if (!engine)
		return -ENODEV;

545 546 547 548 549 550 551 552 553
	sample = engine_event_sample(event);
	ret = engine_event_status(engine, sample);
	if (ret)
		return ret;

	if (sample == I915_SAMPLE_BUSY && intel_engine_supports_stats(engine))
		ret = intel_enable_engine_stats(engine);

	return ret;
554 555
}

556 557 558 559
static int i915_pmu_event_init(struct perf_event *event)
{
	struct drm_i915_private *i915 =
		container_of(event->pmu, typeof(*i915), pmu.base);
560
	int ret;
561 562 563 564 565 566 567 568 569 570 571 572 573 574

	if (event->attr.type != event->pmu->type)
		return -ENOENT;

	/* unsupported modes and filters */
	if (event->attr.sample_period) /* no sampling */
		return -EINVAL;

	if (has_branch_stack(event))
		return -EOPNOTSUPP;

	if (event->cpu < 0)
		return -EINVAL;

575 576
	/* only allow running on one cpu at a time */
	if (!cpumask_test_cpu(event->cpu, &i915_pmu_cpumask))
577
		return -EINVAL;
578

579
	if (is_engine_event(event))
580
		ret = engine_event_init(event);
581 582
	else
		ret = config_status(i915, event->attr.config);
583 584 585 586 587 588 589 590 591
	if (ret)
		return ret;

	if (!event->parent)
		event->destroy = i915_pmu_event_destroy;

	return 0;
}

592
static u64 __i915_pmu_event_read(struct perf_event *event)
593 594 595
{
	struct drm_i915_private *i915 =
		container_of(event->pmu, typeof(*i915), pmu.base);
596
	struct i915_pmu *pmu = &i915->pmu;
597 598 599 600 601 602 603 604 605 606 607 608
	u64 val = 0;

	if (is_engine_event(event)) {
		u8 sample = engine_event_sample(event);
		struct intel_engine_cs *engine;

		engine = intel_engine_lookup_user(i915,
						  engine_event_class(event),
						  engine_event_instance(event));

		if (WARN_ON_ONCE(!engine)) {
			/* Do nothing */
609
		} else if (sample == I915_SAMPLE_BUSY &&
610
			   intel_engine_supports_stats(engine)) {
611
			val = ktime_to_ns(intel_engine_get_busy_time(engine));
612 613 614 615 616 617 618
		} else {
			val = engine->pmu.sample[sample].cur;
		}
	} else {
		switch (event->attr.config) {
		case I915_PMU_ACTUAL_FREQUENCY:
			val =
619
			   div_u64(pmu->sample[__I915_SAMPLE_FREQ_ACT].cur,
620
				   USEC_PER_SEC /* to MHz */);
621 622 623
			break;
		case I915_PMU_REQUESTED_FREQUENCY:
			val =
624
			   div_u64(pmu->sample[__I915_SAMPLE_FREQ_REQ].cur,
625
				   USEC_PER_SEC /* to MHz */);
626
			break;
627 628 629
		case I915_PMU_INTERRUPTS:
			val = count_interrupts(i915);
			break;
630
		case I915_PMU_RC6_RESIDENCY:
631
			val = get_rc6(&i915->gt);
632
			break;
633 634 635 636 637 638 639 640 641 642 643 644 645
		}
	}

	return val;
}

static void i915_pmu_event_read(struct perf_event *event)
{
	struct hw_perf_event *hwc = &event->hw;
	u64 prev, new;

again:
	prev = local64_read(&hwc->prev_count);
646
	new = __i915_pmu_event_read(event);
647 648 649 650 651 652 653 654 655 656 657 658

	if (local64_cmpxchg(&hwc->prev_count, prev, new) != prev)
		goto again;

	local64_add(new - prev, &event->count);
}

static void i915_pmu_enable(struct perf_event *event)
{
	struct drm_i915_private *i915 =
		container_of(event->pmu, typeof(*i915), pmu.base);
	unsigned int bit = event_enabled_bit(event);
659
	struct i915_pmu *pmu = &i915->pmu;
660 661
	unsigned long flags;

662
	spin_lock_irqsave(&pmu->lock, flags);
663 664 665 666 667

	/*
	 * Update the bitmask of enabled events and increment
	 * the event reference counter.
	 */
668 669 670 671 672
	BUILD_BUG_ON(ARRAY_SIZE(pmu->enable_count) != I915_PMU_MASK_BITS);
	GEM_BUG_ON(bit >= ARRAY_SIZE(pmu->enable_count));
	GEM_BUG_ON(pmu->enable_count[bit] == ~0);
	pmu->enable |= BIT_ULL(bit);
	pmu->enable_count[bit]++;
673

674 675 676
	/*
	 * Start the sampling timer if needed and not already enabled.
	 */
677
	__i915_pmu_maybe_start_timer(pmu);
678

679 680 681 682 683 684 685 686 687 688 689 690
	/*
	 * For per-engine events the bitmask and reference counting
	 * is stored per engine.
	 */
	if (is_engine_event(event)) {
		u8 sample = engine_event_sample(event);
		struct intel_engine_cs *engine;

		engine = intel_engine_lookup_user(i915,
						  engine_event_class(event),
						  engine_event_instance(event));

691 692 693 694 695 696
		BUILD_BUG_ON(ARRAY_SIZE(engine->pmu.enable_count) !=
			     I915_ENGINE_SAMPLE_COUNT);
		BUILD_BUG_ON(ARRAY_SIZE(engine->pmu.sample) !=
			     I915_ENGINE_SAMPLE_COUNT);
		GEM_BUG_ON(sample >= ARRAY_SIZE(engine->pmu.enable_count));
		GEM_BUG_ON(sample >= ARRAY_SIZE(engine->pmu.sample));
697
		GEM_BUG_ON(engine->pmu.enable_count[sample] == ~0);
698 699

		engine->pmu.enable |= BIT(sample);
700
		engine->pmu.enable_count[sample]++;
701 702
	}

703
	spin_unlock_irqrestore(&pmu->lock, flags);
704

705 706 707 708 709
	/*
	 * Store the current counter value so we can report the correct delta
	 * for all listeners. Even when the event was already enabled and has
	 * an existing non-zero value.
	 */
710
	local64_set(&event->hw.prev_count, __i915_pmu_event_read(event));
711 712 713 714 715 716 717
}

static void i915_pmu_disable(struct perf_event *event)
{
	struct drm_i915_private *i915 =
		container_of(event->pmu, typeof(*i915), pmu.base);
	unsigned int bit = event_enabled_bit(event);
718
	struct i915_pmu *pmu = &i915->pmu;
719 720
	unsigned long flags;

721
	spin_lock_irqsave(&pmu->lock, flags);
722 723 724 725 726 727 728 729

	if (is_engine_event(event)) {
		u8 sample = engine_event_sample(event);
		struct intel_engine_cs *engine;

		engine = intel_engine_lookup_user(i915,
						  engine_event_class(event),
						  engine_event_instance(event));
730 731 732

		GEM_BUG_ON(sample >= ARRAY_SIZE(engine->pmu.enable_count));
		GEM_BUG_ON(sample >= ARRAY_SIZE(engine->pmu.sample));
733
		GEM_BUG_ON(engine->pmu.enable_count[sample] == 0);
734

735 736 737 738
		/*
		 * Decrement the reference count and clear the enabled
		 * bitmask when the last listener on an event goes away.
		 */
739
		if (--engine->pmu.enable_count[sample] == 0)
740 741 742
			engine->pmu.enable &= ~BIT(sample);
	}

743 744
	GEM_BUG_ON(bit >= ARRAY_SIZE(pmu->enable_count));
	GEM_BUG_ON(pmu->enable_count[bit] == 0);
745 746 747 748
	/*
	 * Decrement the reference count and clear the enabled
	 * bitmask when the last listener on an event goes away.
	 */
749 750 751
	if (--pmu->enable_count[bit] == 0) {
		pmu->enable &= ~BIT_ULL(bit);
		pmu->timer_enabled &= pmu_needs_timer(pmu, true);
752
	}
753

754
	spin_unlock_irqrestore(&pmu->lock, flags);
755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788
}

static void i915_pmu_event_start(struct perf_event *event, int flags)
{
	i915_pmu_enable(event);
	event->hw.state = 0;
}

static void i915_pmu_event_stop(struct perf_event *event, int flags)
{
	if (flags & PERF_EF_UPDATE)
		i915_pmu_event_read(event);
	i915_pmu_disable(event);
	event->hw.state = PERF_HES_STOPPED;
}

static int i915_pmu_event_add(struct perf_event *event, int flags)
{
	if (flags & PERF_EF_START)
		i915_pmu_event_start(event, flags);

	return 0;
}

static void i915_pmu_event_del(struct perf_event *event, int flags)
{
	i915_pmu_event_stop(event, PERF_EF_UPDATE);
}

static int i915_pmu_event_event_idx(struct perf_event *event)
{
	return 0;
}

789 790 791 792 793
struct i915_str_attribute {
	struct device_attribute attr;
	const char *str;
};

794 795 796
static ssize_t i915_pmu_format_show(struct device *dev,
				    struct device_attribute *attr, char *buf)
{
797
	struct i915_str_attribute *eattr;
798

799 800
	eattr = container_of(attr, struct i915_str_attribute, attr);
	return sprintf(buf, "%s\n", eattr->str);
801 802 803
}

#define I915_PMU_FORMAT_ATTR(_name, _config) \
804
	(&((struct i915_str_attribute[]) { \
805
		{ .attr = __ATTR(_name, 0444, i915_pmu_format_show, NULL), \
806
		  .str = _config, } \
807 808 809 810 811 812 813 814 815 816 817 818
	})[0].attr.attr)

static struct attribute *i915_pmu_format_attrs[] = {
	I915_PMU_FORMAT_ATTR(i915_eventid, "config:0-20"),
	NULL,
};

static const struct attribute_group i915_pmu_format_attr_group = {
	.name = "format",
	.attrs = i915_pmu_format_attrs,
};

819 820 821 822 823
struct i915_ext_attribute {
	struct device_attribute attr;
	unsigned long val;
};

824 825 826
static ssize_t i915_pmu_event_show(struct device *dev,
				   struct device_attribute *attr, char *buf)
{
827
	struct i915_ext_attribute *eattr;
828

829 830
	eattr = container_of(attr, struct i915_ext_attribute, attr);
	return sprintf(buf, "config=0x%lx\n", eattr->val);
831 832
}

833
static struct attribute_group i915_pmu_events_attr_group = {
834
	.name = "events",
835
	/* Patch in attrs at runtime. */
836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852
};

static ssize_t
i915_pmu_get_attr_cpumask(struct device *dev,
			  struct device_attribute *attr,
			  char *buf)
{
	return cpumap_print_to_pagebuf(true, buf, &i915_pmu_cpumask);
}

static DEVICE_ATTR(cpumask, 0444, i915_pmu_get_attr_cpumask, NULL);

static struct attribute *i915_cpumask_attrs[] = {
	&dev_attr_cpumask.attr,
	NULL,
};

853
static const struct attribute_group i915_pmu_cpumask_attr_group = {
854 855 856 857 858 859 860 861 862 863
	.attrs = i915_cpumask_attrs,
};

static const struct attribute_group *i915_pmu_attr_groups[] = {
	&i915_pmu_format_attr_group,
	&i915_pmu_events_attr_group,
	&i915_pmu_cpumask_attr_group,
	NULL
};

864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879
#define __event(__config, __name, __unit) \
{ \
	.config = (__config), \
	.name = (__name), \
	.unit = (__unit), \
}

#define __engine_event(__sample, __name) \
{ \
	.sample = (__sample), \
	.name = (__name), \
}

static struct i915_ext_attribute *
add_i915_attr(struct i915_ext_attribute *attr, const char *name, u64 config)
{
880
	sysfs_attr_init(&attr->attr.attr);
881 882 883 884 885 886 887 888 889 890 891 892
	attr->attr.attr.name = name;
	attr->attr.attr.mode = 0444;
	attr->attr.show = i915_pmu_event_show;
	attr->val = config;

	return ++attr;
}

static struct perf_pmu_events_attr *
add_pmu_attr(struct perf_pmu_events_attr *attr, const char *name,
	     const char *str)
{
893
	sysfs_attr_init(&attr->attr.attr);
894 895 896 897 898 899 900 901 902
	attr->attr.attr.name = name;
	attr->attr.attr.mode = 0444;
	attr->attr.show = perf_event_sysfs_show;
	attr->event_str = str;

	return ++attr;
}

static struct attribute **
903
create_event_attributes(struct i915_pmu *pmu)
904
{
905
	struct drm_i915_private *i915 = container_of(pmu, typeof(*i915), pmu);
906 907 908 909 910
	static const struct {
		u64 config;
		const char *name;
		const char *unit;
	} events[] = {
911 912
		__event(I915_PMU_ACTUAL_FREQUENCY, "actual-frequency", "M"),
		__event(I915_PMU_REQUESTED_FREQUENCY, "requested-frequency", "M"),
913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936
		__event(I915_PMU_INTERRUPTS, "interrupts", NULL),
		__event(I915_PMU_RC6_RESIDENCY, "rc6-residency", "ns"),
	};
	static const struct {
		enum drm_i915_pmu_engine_sample sample;
		char *name;
	} engine_events[] = {
		__engine_event(I915_SAMPLE_BUSY, "busy"),
		__engine_event(I915_SAMPLE_SEMA, "sema"),
		__engine_event(I915_SAMPLE_WAIT, "wait"),
	};
	unsigned int count = 0;
	struct perf_pmu_events_attr *pmu_attr = NULL, *pmu_iter;
	struct i915_ext_attribute *i915_attr = NULL, *i915_iter;
	struct attribute **attr = NULL, **attr_iter;
	struct intel_engine_cs *engine;
	unsigned int i;

	/* Count how many counters we will be exposing. */
	for (i = 0; i < ARRAY_SIZE(events); i++) {
		if (!config_status(i915, events[i].config))
			count++;
	}

937
	for_each_uabi_engine(engine, i915) {
938 939 940 941 942 943 944 945
		for (i = 0; i < ARRAY_SIZE(engine_events); i++) {
			if (!engine_event_status(engine,
						 engine_events[i].sample))
				count++;
		}
	}

	/* Allocate attribute objects and table. */
946
	i915_attr = kcalloc(count, sizeof(*i915_attr), GFP_KERNEL);
947 948 949
	if (!i915_attr)
		goto err_alloc;

950
	pmu_attr = kcalloc(count, sizeof(*pmu_attr), GFP_KERNEL);
951 952 953 954
	if (!pmu_attr)
		goto err_alloc;

	/* Max one pointer of each attribute type plus a termination entry. */
955
	attr = kcalloc(count * 2 + 1, sizeof(*attr), GFP_KERNEL);
956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987
	if (!attr)
		goto err_alloc;

	i915_iter = i915_attr;
	pmu_iter = pmu_attr;
	attr_iter = attr;

	/* Initialize supported non-engine counters. */
	for (i = 0; i < ARRAY_SIZE(events); i++) {
		char *str;

		if (config_status(i915, events[i].config))
			continue;

		str = kstrdup(events[i].name, GFP_KERNEL);
		if (!str)
			goto err;

		*attr_iter++ = &i915_iter->attr.attr;
		i915_iter = add_i915_attr(i915_iter, str, events[i].config);

		if (events[i].unit) {
			str = kasprintf(GFP_KERNEL, "%s.unit", events[i].name);
			if (!str)
				goto err;

			*attr_iter++ = &pmu_iter->attr.attr;
			pmu_iter = add_pmu_attr(pmu_iter, str, events[i].unit);
		}
	}

	/* Initialize supported engine counters. */
988
	for_each_uabi_engine(engine, i915) {
989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003
		for (i = 0; i < ARRAY_SIZE(engine_events); i++) {
			char *str;

			if (engine_event_status(engine,
						engine_events[i].sample))
				continue;

			str = kasprintf(GFP_KERNEL, "%s-%s",
					engine->name, engine_events[i].name);
			if (!str)
				goto err;

			*attr_iter++ = &i915_iter->attr.attr;
			i915_iter =
				add_i915_attr(i915_iter, str,
1004
					      __I915_PMU_ENGINE(engine->uabi_class,
1005
								engine->uabi_instance,
1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017
								engine_events[i].sample));

			str = kasprintf(GFP_KERNEL, "%s-%s.unit",
					engine->name, engine_events[i].name);
			if (!str)
				goto err;

			*attr_iter++ = &pmu_iter->attr.attr;
			pmu_iter = add_pmu_attr(pmu_iter, str, "ns");
		}
	}

1018 1019
	pmu->i915_attr = i915_attr;
	pmu->pmu_attr = pmu_attr;
1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034

	return attr;

err:;
	for (attr_iter = attr; *attr_iter; attr_iter++)
		kfree((*attr_iter)->name);

err_alloc:
	kfree(attr);
	kfree(i915_attr);
	kfree(pmu_attr);

	return NULL;
}

1035
static void free_event_attributes(struct i915_pmu *pmu)
1036 1037 1038 1039 1040 1041 1042
{
	struct attribute **attr_iter = i915_pmu_events_attr_group.attrs;

	for (; *attr_iter; attr_iter++)
		kfree((*attr_iter)->name);

	kfree(i915_pmu_events_attr_group.attrs);
1043 1044
	kfree(pmu->i915_attr);
	kfree(pmu->pmu_attr);
1045 1046

	i915_pmu_events_attr_group.attrs = NULL;
1047 1048
	pmu->i915_attr = NULL;
	pmu->pmu_attr = NULL;
1049 1050
}

1051 1052 1053 1054 1055 1056 1057
static int i915_pmu_cpu_online(unsigned int cpu, struct hlist_node *node)
{
	struct i915_pmu *pmu = hlist_entry_safe(node, typeof(*pmu), node);

	GEM_BUG_ON(!pmu->base.event_init);

	/* Select the first online CPU as a designated reader. */
1058
	if (!cpumask_weight(&i915_pmu_cpumask))
1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084
		cpumask_set_cpu(cpu, &i915_pmu_cpumask);

	return 0;
}

static int i915_pmu_cpu_offline(unsigned int cpu, struct hlist_node *node)
{
	struct i915_pmu *pmu = hlist_entry_safe(node, typeof(*pmu), node);
	unsigned int target;

	GEM_BUG_ON(!pmu->base.event_init);

	if (cpumask_test_and_clear_cpu(cpu, &i915_pmu_cpumask)) {
		target = cpumask_any_but(topology_sibling_cpumask(cpu), cpu);
		/* Migrate events if there is a valid target */
		if (target < nr_cpu_ids) {
			cpumask_set_cpu(target, &i915_pmu_cpumask);
			perf_pmu_migrate_context(&pmu->base, cpu, target);
		}
	}

	return 0;
}

static enum cpuhp_state cpuhp_slot = CPUHP_INVALID;

1085
static int i915_pmu_register_cpuhp_state(struct i915_pmu *pmu)
1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097
{
	enum cpuhp_state slot;
	int ret;

	ret = cpuhp_setup_state_multi(CPUHP_AP_ONLINE_DYN,
				      "perf/x86/intel/i915:online",
				      i915_pmu_cpu_online,
				      i915_pmu_cpu_offline);
	if (ret < 0)
		return ret;

	slot = ret;
1098
	ret = cpuhp_state_add_instance(slot, &pmu->node);
1099 1100 1101 1102 1103 1104 1105 1106 1107
	if (ret) {
		cpuhp_remove_multi_state(slot);
		return ret;
	}

	cpuhp_slot = slot;
	return 0;
}

1108
static void i915_pmu_unregister_cpuhp_state(struct i915_pmu *pmu)
1109 1110
{
	WARN_ON(cpuhp_slot == CPUHP_INVALID);
1111
	WARN_ON(cpuhp_state_remove_instance(cpuhp_slot, &pmu->node));
1112 1113 1114
	cpuhp_remove_multi_state(cpuhp_slot);
}

1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125
static bool is_igp(struct drm_i915_private *i915)
{
	struct pci_dev *pdev = i915->drm.pdev;

	/* IGP is 0000:00:02.0 */
	return pci_domain_nr(pdev->bus) == 0 &&
	       pdev->bus->number == 0 &&
	       PCI_SLOT(pdev->devfn) == 2 &&
	       PCI_FUNC(pdev->devfn) == 0;
}

1126 1127
void i915_pmu_register(struct drm_i915_private *i915)
{
1128
	struct i915_pmu *pmu = &i915->pmu;
1129
	int ret = -ENOMEM;
1130 1131

	if (INTEL_GEN(i915) <= 2) {
1132
		dev_info(i915->drm.dev, "PMU not supported for this GPU.");
1133 1134 1135
		return;
	}

1136 1137 1138 1139
	spin_lock_init(&pmu->lock);
	hrtimer_init(&pmu->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
	pmu->timer.function = i915_sample;

1140 1141 1142 1143 1144 1145 1146
	if (!is_igp(i915))
		pmu->name = kasprintf(GFP_KERNEL,
				      "i915-%s",
				      dev_name(i915->drm.dev));
	else
		pmu->name = "i915";
	if (!pmu->name)
1147 1148
		goto err;

1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162
	i915_pmu_events_attr_group.attrs = create_event_attributes(pmu);
	if (!i915_pmu_events_attr_group.attrs)
		goto err_name;

	pmu->base.attr_groups	= i915_pmu_attr_groups;
	pmu->base.task_ctx_nr	= perf_invalid_context;
	pmu->base.event_init	= i915_pmu_event_init;
	pmu->base.add		= i915_pmu_event_add;
	pmu->base.del		= i915_pmu_event_del;
	pmu->base.start		= i915_pmu_event_start;
	pmu->base.stop		= i915_pmu_event_stop;
	pmu->base.read		= i915_pmu_event_read;
	pmu->base.event_idx	= i915_pmu_event_event_idx;

1163 1164
	ret = perf_pmu_register(&pmu->base, pmu->name, -1);
	if (ret)
1165
		goto err_attr;
1166

1167
	ret = i915_pmu_register_cpuhp_state(pmu);
1168 1169 1170 1171 1172 1173
	if (ret)
		goto err_unreg;

	return;

err_unreg:
1174
	perf_pmu_unregister(&pmu->base);
1175 1176 1177
err_attr:
	pmu->base.event_init = NULL;
	free_event_attributes(pmu);
1178 1179 1180
err_name:
	if (!is_igp(i915))
		kfree(pmu->name);
1181
err:
1182
	dev_notice(i915->drm.dev, "Failed to register PMU!\n");
1183 1184 1185 1186
}

void i915_pmu_unregister(struct drm_i915_private *i915)
{
1187 1188 1189
	struct i915_pmu *pmu = &i915->pmu;

	if (!pmu->base.event_init)
1190 1191
		return;

1192
	WARN_ON(pmu->enable);
1193

1194
	hrtimer_cancel(&pmu->timer);
1195

1196
	i915_pmu_unregister_cpuhp_state(pmu);
1197

1198 1199
	perf_pmu_unregister(&pmu->base);
	pmu->base.event_init = NULL;
1200 1201
	if (!is_igp(i915))
		kfree(pmu->name);
1202
	free_event_attributes(pmu);
1203
}