2 * SPDX-License-Identifier: MIT
4 * Copyright © 2017-2018 Intel Corporation
7 #include <linux/pm_runtime.h>
9 #include "gt/intel_engine.h"
10 #include "gt/intel_engine_pm.h"
11 #include "gt/intel_engine_user.h"
12 #include "gt/intel_gt_pm.h"
13 #include "gt/intel_rc6.h"
14 #include "gt/intel_rps.h"
20 /* Frequency for the sampling timer for events which need it. */
22 #define PERIOD max_t(u64, 10000, NSEC_PER_SEC / FREQUENCY)
24 #define ENGINE_SAMPLE_MASK \
25 (BIT(I915_SAMPLE_BUSY) | \
26 BIT(I915_SAMPLE_WAIT) | \
27 BIT(I915_SAMPLE_SEMA))
29 static cpumask_t i915_pmu_cpumask;
30 static unsigned int i915_pmu_target_cpu = -1;
32 static u8 engine_config_sample(u64 config)
34 return config & I915_PMU_SAMPLE_MASK;
37 static u8 engine_event_sample(struct perf_event *event)
39 return engine_config_sample(event->attr.config);
42 static u8 engine_event_class(struct perf_event *event)
44 return (event->attr.config >> I915_PMU_CLASS_SHIFT) & 0xff;
47 static u8 engine_event_instance(struct perf_event *event)
49 return (event->attr.config >> I915_PMU_SAMPLE_BITS) & 0xff;
52 static bool is_engine_config(u64 config)
54 return config < __I915_PMU_OTHER(0);
57 static unsigned int other_bit(const u64 config)
62 case I915_PMU_ACTUAL_FREQUENCY:
63 val = __I915_PMU_ACTUAL_FREQUENCY_ENABLED;
65 case I915_PMU_REQUESTED_FREQUENCY:
66 val = __I915_PMU_REQUESTED_FREQUENCY_ENABLED;
68 case I915_PMU_RC6_RESIDENCY:
69 val = __I915_PMU_RC6_RESIDENCY_ENABLED;
73 * Events that do not require sampling, or tracking state
74 * transitions between enabled and disabled can be ignored.
79 return I915_ENGINE_SAMPLE_COUNT + val;
82 static unsigned int config_bit(const u64 config)
84 if (is_engine_config(config))
85 return engine_config_sample(config);
87 return other_bit(config);
90 static u64 config_mask(u64 config)
92 return BIT_ULL(config_bit(config));
95 static bool is_engine_event(struct perf_event *event)
97 return is_engine_config(event->attr.config);
100 static unsigned int event_bit(struct perf_event *event)
102 return config_bit(event->attr.config);
105 static bool pmu_needs_timer(struct i915_pmu *pmu, bool gpu_active)
107 struct drm_i915_private *i915 = container_of(pmu, typeof(*i915), pmu);
111 * Only some counters need the sampling timer.
113 * We start with a bitmask of all currently enabled events.
115 enable = pmu->enable;
118 * Mask out all the ones which do not need the timer, or in
119 * other words keep all the ones that could need the timer.
121 enable &= config_mask(I915_PMU_ACTUAL_FREQUENCY) |
122 config_mask(I915_PMU_REQUESTED_FREQUENCY) |
126 * When the GPU is idle per-engine counters do not need to be
127 * running so clear those bits out.
130 enable &= ~ENGINE_SAMPLE_MASK;
132 * Also there is software busyness tracking available we do not
133 * need the timer for I915_SAMPLE_BUSY counter.
135 else if (i915->caps.scheduler & I915_SCHEDULER_CAP_ENGINE_BUSY_STATS)
136 enable &= ~BIT(I915_SAMPLE_BUSY);
139 * If some bits remain it means we need the sampling timer running.
144 static u64 __get_rc6(struct intel_gt *gt)
146 struct drm_i915_private *i915 = gt->i915;
149 val = intel_rc6_residency_ns(>->rc6,
150 IS_VALLEYVIEW(i915) ?
155 val += intel_rc6_residency_ns(>->rc6, GEN6_GT_GFX_RC6p);
158 val += intel_rc6_residency_ns(>->rc6, GEN6_GT_GFX_RC6pp);
163 static inline s64 ktime_since_raw(const ktime_t kt)
165 return ktime_to_ns(ktime_sub(ktime_get_raw(), kt));
168 static u64 get_rc6(struct intel_gt *gt)
170 struct drm_i915_private *i915 = gt->i915;
171 struct i915_pmu *pmu = &i915->pmu;
176 if (intel_gt_pm_get_if_awake(gt)) {
178 intel_gt_pm_put_async(gt);
182 spin_lock_irqsave(&pmu->lock, flags);
185 pmu->sample[__I915_SAMPLE_RC6].cur = val;
188 * We think we are runtime suspended.
190 * Report the delta from when the device was suspended to now,
191 * on top of the last known real value, as the approximated RC6
194 val = ktime_since_raw(pmu->sleep_last);
195 val += pmu->sample[__I915_SAMPLE_RC6].cur;
198 if (val < pmu->sample[__I915_SAMPLE_RC6_LAST_REPORTED].cur)
199 val = pmu->sample[__I915_SAMPLE_RC6_LAST_REPORTED].cur;
201 pmu->sample[__I915_SAMPLE_RC6_LAST_REPORTED].cur = val;
203 spin_unlock_irqrestore(&pmu->lock, flags);
208 static void init_rc6(struct i915_pmu *pmu)
210 struct drm_i915_private *i915 = container_of(pmu, typeof(*i915), pmu);
211 intel_wakeref_t wakeref;
213 with_intel_runtime_pm(i915->gt.uncore->rpm, wakeref) {
214 pmu->sample[__I915_SAMPLE_RC6].cur = __get_rc6(&i915->gt);
215 pmu->sample[__I915_SAMPLE_RC6_LAST_REPORTED].cur =
216 pmu->sample[__I915_SAMPLE_RC6].cur;
217 pmu->sleep_last = ktime_get_raw();
221 static void park_rc6(struct drm_i915_private *i915)
223 struct i915_pmu *pmu = &i915->pmu;
225 pmu->sample[__I915_SAMPLE_RC6].cur = __get_rc6(&i915->gt);
226 pmu->sleep_last = ktime_get_raw();
229 static void __i915_pmu_maybe_start_timer(struct i915_pmu *pmu)
231 if (!pmu->timer_enabled && pmu_needs_timer(pmu, true)) {
232 pmu->timer_enabled = true;
233 pmu->timer_last = ktime_get();
234 hrtimer_start_range_ns(&pmu->timer,
235 ns_to_ktime(PERIOD), 0,
236 HRTIMER_MODE_REL_PINNED);
240 void i915_pmu_gt_parked(struct drm_i915_private *i915)
242 struct i915_pmu *pmu = &i915->pmu;
244 if (!pmu->base.event_init)
247 spin_lock_irq(&pmu->lock);
252 * Signal sampling timer to stop if only engine events are enabled and
255 pmu->timer_enabled = pmu_needs_timer(pmu, false);
257 spin_unlock_irq(&pmu->lock);
260 void i915_pmu_gt_unparked(struct drm_i915_private *i915)
262 struct i915_pmu *pmu = &i915->pmu;
264 if (!pmu->base.event_init)
267 spin_lock_irq(&pmu->lock);
270 * Re-enable sampling timer when GPU goes active.
272 __i915_pmu_maybe_start_timer(pmu);
274 spin_unlock_irq(&pmu->lock);
278 add_sample(struct i915_pmu_sample *sample, u32 val)
283 static bool exclusive_mmio_access(const struct drm_i915_private *i915)
286 * We have to avoid concurrent mmio cache line access on gen7 or
287 * risk a machine hang. For a fun history lesson dig out the old
288 * userspace intel_gpu_top and run it on Ivybridge or Haswell!
290 return IS_GEN(i915, 7);
293 static void engine_sample(struct intel_engine_cs *engine, unsigned int period_ns)
295 struct intel_engine_pmu *pmu = &engine->pmu;
299 val = ENGINE_READ_FW(engine, RING_CTL);
300 if (val == 0) /* powerwell off => engine idle */
304 add_sample(&pmu->sample[I915_SAMPLE_WAIT], period_ns);
305 if (val & RING_WAIT_SEMAPHORE)
306 add_sample(&pmu->sample[I915_SAMPLE_SEMA], period_ns);
308 /* No need to sample when busy stats are supported. */
309 if (intel_engine_supports_stats(engine))
313 * While waiting on a semaphore or event, MI_MODE reports the
314 * ring as idle. However, previously using the seqno, and with
315 * execlists sampling, we account for the ring waiting as the
316 * engine being busy. Therefore, we record the sample as being
317 * busy if either waiting or !idle.
319 busy = val & (RING_WAIT_SEMAPHORE | RING_WAIT);
321 val = ENGINE_READ_FW(engine, RING_MI_MODE);
322 busy = !(val & MODE_IDLE);
325 add_sample(&pmu->sample[I915_SAMPLE_BUSY], period_ns);
329 engines_sample(struct intel_gt *gt, unsigned int period_ns)
331 struct drm_i915_private *i915 = gt->i915;
332 struct intel_engine_cs *engine;
333 enum intel_engine_id id;
336 if ((i915->pmu.enable & ENGINE_SAMPLE_MASK) == 0)
339 if (!intel_gt_pm_is_awake(gt))
342 for_each_engine(engine, gt, id) {
343 if (!intel_engine_pm_get_if_awake(engine))
346 if (exclusive_mmio_access(i915)) {
347 spin_lock_irqsave(&engine->uncore->lock, flags);
348 engine_sample(engine, period_ns);
349 spin_unlock_irqrestore(&engine->uncore->lock, flags);
351 engine_sample(engine, period_ns);
354 intel_engine_pm_put_async(engine);
359 add_sample_mult(struct i915_pmu_sample *sample, u32 val, u32 mul)
361 sample->cur += mul_u32_u32(val, mul);
364 static bool frequency_sampling_enabled(struct i915_pmu *pmu)
367 (config_mask(I915_PMU_ACTUAL_FREQUENCY) |
368 config_mask(I915_PMU_REQUESTED_FREQUENCY));
372 frequency_sample(struct intel_gt *gt, unsigned int period_ns)
374 struct drm_i915_private *i915 = gt->i915;
375 struct intel_uncore *uncore = gt->uncore;
376 struct i915_pmu *pmu = &i915->pmu;
377 struct intel_rps *rps = >->rps;
379 if (!frequency_sampling_enabled(pmu))
382 /* Report 0/0 (actual/requested) frequency while parked. */
383 if (!intel_gt_pm_get_if_awake(gt))
386 if (pmu->enable & config_mask(I915_PMU_ACTUAL_FREQUENCY)) {
390 * We take a quick peek here without using forcewake
391 * so that we don't perturb the system under observation
392 * (forcewake => !rc6 => increased power use). We expect
393 * that if the read fails because it is outside of the
394 * mmio power well, then it will return 0 -- in which
395 * case we assume the system is running at the intended
396 * frequency. Fortunately, the read should rarely fail!
398 val = intel_uncore_read_fw(uncore, GEN6_RPSTAT1);
400 val = intel_rps_get_cagf(rps, val);
404 add_sample_mult(&pmu->sample[__I915_SAMPLE_FREQ_ACT],
405 intel_gpu_freq(rps, val), period_ns / 1000);
408 if (pmu->enable & config_mask(I915_PMU_REQUESTED_FREQUENCY)) {
409 add_sample_mult(&pmu->sample[__I915_SAMPLE_FREQ_REQ],
410 intel_gpu_freq(rps, rps->cur_freq),
414 intel_gt_pm_put_async(gt);
417 static enum hrtimer_restart i915_sample(struct hrtimer *hrtimer)
419 struct drm_i915_private *i915 =
420 container_of(hrtimer, struct drm_i915_private, pmu.timer);
421 struct i915_pmu *pmu = &i915->pmu;
422 struct intel_gt *gt = &i915->gt;
423 unsigned int period_ns;
426 if (!READ_ONCE(pmu->timer_enabled))
427 return HRTIMER_NORESTART;
430 period_ns = ktime_to_ns(ktime_sub(now, pmu->timer_last));
431 pmu->timer_last = now;
434 * Strictly speaking the passed in period may not be 100% accurate for
435 * all internal calculation, since some amount of time can be spent on
436 * grabbing the forcewake. However the potential error from timer call-
437 * back delay greatly dominates this so we keep it simple.
439 engines_sample(gt, period_ns);
440 frequency_sample(gt, period_ns);
442 hrtimer_forward(hrtimer, now, ns_to_ktime(PERIOD));
444 return HRTIMER_RESTART;
447 static void i915_pmu_event_destroy(struct perf_event *event)
449 struct drm_i915_private *i915 =
450 container_of(event->pmu, typeof(*i915), pmu.base);
452 drm_WARN_ON(&i915->drm, event->parent);
454 drm_dev_put(&i915->drm);
458 engine_event_status(struct intel_engine_cs *engine,
459 enum drm_i915_pmu_engine_sample sample)
462 case I915_SAMPLE_BUSY:
463 case I915_SAMPLE_WAIT:
465 case I915_SAMPLE_SEMA:
466 if (INTEL_GEN(engine->i915) < 6)
477 config_status(struct drm_i915_private *i915, u64 config)
480 case I915_PMU_ACTUAL_FREQUENCY:
481 if (IS_VALLEYVIEW(i915) || IS_CHERRYVIEW(i915))
482 /* Requires a mutex for sampling! */
485 case I915_PMU_REQUESTED_FREQUENCY:
486 if (INTEL_GEN(i915) < 6)
489 case I915_PMU_INTERRUPTS:
491 case I915_PMU_RC6_RESIDENCY:
495 case I915_PMU_SOFTWARE_GT_AWAKE_TIME:
504 static int engine_event_init(struct perf_event *event)
506 struct drm_i915_private *i915 =
507 container_of(event->pmu, typeof(*i915), pmu.base);
508 struct intel_engine_cs *engine;
510 engine = intel_engine_lookup_user(i915, engine_event_class(event),
511 engine_event_instance(event));
515 return engine_event_status(engine, engine_event_sample(event));
518 static int i915_pmu_event_init(struct perf_event *event)
520 struct drm_i915_private *i915 =
521 container_of(event->pmu, typeof(*i915), pmu.base);
522 struct i915_pmu *pmu = &i915->pmu;
528 if (event->attr.type != event->pmu->type)
531 /* unsupported modes and filters */
532 if (event->attr.sample_period) /* no sampling */
535 if (has_branch_stack(event))
541 /* only allow running on one cpu at a time */
542 if (!cpumask_test_cpu(event->cpu, &i915_pmu_cpumask))
545 if (is_engine_event(event))
546 ret = engine_event_init(event);
548 ret = config_status(i915, event->attr.config);
552 if (!event->parent) {
553 drm_dev_get(&i915->drm);
554 event->destroy = i915_pmu_event_destroy;
560 static u64 __i915_pmu_event_read(struct perf_event *event)
562 struct drm_i915_private *i915 =
563 container_of(event->pmu, typeof(*i915), pmu.base);
564 struct i915_pmu *pmu = &i915->pmu;
567 if (is_engine_event(event)) {
568 u8 sample = engine_event_sample(event);
569 struct intel_engine_cs *engine;
571 engine = intel_engine_lookup_user(i915,
572 engine_event_class(event),
573 engine_event_instance(event));
575 if (drm_WARN_ON_ONCE(&i915->drm, !engine)) {
577 } else if (sample == I915_SAMPLE_BUSY &&
578 intel_engine_supports_stats(engine)) {
581 val = ktime_to_ns(intel_engine_get_busy_time(engine,
584 val = engine->pmu.sample[sample].cur;
587 switch (event->attr.config) {
588 case I915_PMU_ACTUAL_FREQUENCY:
590 div_u64(pmu->sample[__I915_SAMPLE_FREQ_ACT].cur,
591 USEC_PER_SEC /* to MHz */);
593 case I915_PMU_REQUESTED_FREQUENCY:
595 div_u64(pmu->sample[__I915_SAMPLE_FREQ_REQ].cur,
596 USEC_PER_SEC /* to MHz */);
598 case I915_PMU_INTERRUPTS:
599 val = READ_ONCE(pmu->irq_count);
601 case I915_PMU_RC6_RESIDENCY:
602 val = get_rc6(&i915->gt);
604 case I915_PMU_SOFTWARE_GT_AWAKE_TIME:
605 val = ktime_to_ns(intel_gt_get_awake_time(&i915->gt));
613 static void i915_pmu_event_read(struct perf_event *event)
615 struct drm_i915_private *i915 =
616 container_of(event->pmu, typeof(*i915), pmu.base);
617 struct hw_perf_event *hwc = &event->hw;
618 struct i915_pmu *pmu = &i915->pmu;
622 event->hw.state = PERF_HES_STOPPED;
626 prev = local64_read(&hwc->prev_count);
627 new = __i915_pmu_event_read(event);
629 if (local64_cmpxchg(&hwc->prev_count, prev, new) != prev)
632 local64_add(new - prev, &event->count);
635 static void i915_pmu_enable(struct perf_event *event)
637 struct drm_i915_private *i915 =
638 container_of(event->pmu, typeof(*i915), pmu.base);
639 struct i915_pmu *pmu = &i915->pmu;
643 bit = event_bit(event);
647 spin_lock_irqsave(&pmu->lock, flags);
650 * Update the bitmask of enabled events and increment
651 * the event reference counter.
653 BUILD_BUG_ON(ARRAY_SIZE(pmu->enable_count) != I915_PMU_MASK_BITS);
654 GEM_BUG_ON(bit >= ARRAY_SIZE(pmu->enable_count));
655 GEM_BUG_ON(pmu->enable_count[bit] == ~0);
657 pmu->enable |= BIT_ULL(bit);
658 pmu->enable_count[bit]++;
661 * Start the sampling timer if needed and not already enabled.
663 __i915_pmu_maybe_start_timer(pmu);
666 * For per-engine events the bitmask and reference counting
667 * is stored per engine.
669 if (is_engine_event(event)) {
670 u8 sample = engine_event_sample(event);
671 struct intel_engine_cs *engine;
673 engine = intel_engine_lookup_user(i915,
674 engine_event_class(event),
675 engine_event_instance(event));
677 BUILD_BUG_ON(ARRAY_SIZE(engine->pmu.enable_count) !=
678 I915_ENGINE_SAMPLE_COUNT);
679 BUILD_BUG_ON(ARRAY_SIZE(engine->pmu.sample) !=
680 I915_ENGINE_SAMPLE_COUNT);
681 GEM_BUG_ON(sample >= ARRAY_SIZE(engine->pmu.enable_count));
682 GEM_BUG_ON(sample >= ARRAY_SIZE(engine->pmu.sample));
683 GEM_BUG_ON(engine->pmu.enable_count[sample] == ~0);
685 engine->pmu.enable |= BIT(sample);
686 engine->pmu.enable_count[sample]++;
689 spin_unlock_irqrestore(&pmu->lock, flags);
693 * Store the current counter value so we can report the correct delta
694 * for all listeners. Even when the event was already enabled and has
695 * an existing non-zero value.
697 local64_set(&event->hw.prev_count, __i915_pmu_event_read(event));
700 static void i915_pmu_disable(struct perf_event *event)
702 struct drm_i915_private *i915 =
703 container_of(event->pmu, typeof(*i915), pmu.base);
704 unsigned int bit = event_bit(event);
705 struct i915_pmu *pmu = &i915->pmu;
711 spin_lock_irqsave(&pmu->lock, flags);
713 if (is_engine_event(event)) {
714 u8 sample = engine_event_sample(event);
715 struct intel_engine_cs *engine;
717 engine = intel_engine_lookup_user(i915,
718 engine_event_class(event),
719 engine_event_instance(event));
721 GEM_BUG_ON(sample >= ARRAY_SIZE(engine->pmu.enable_count));
722 GEM_BUG_ON(sample >= ARRAY_SIZE(engine->pmu.sample));
723 GEM_BUG_ON(engine->pmu.enable_count[sample] == 0);
726 * Decrement the reference count and clear the enabled
727 * bitmask when the last listener on an event goes away.
729 if (--engine->pmu.enable_count[sample] == 0)
730 engine->pmu.enable &= ~BIT(sample);
733 GEM_BUG_ON(bit >= ARRAY_SIZE(pmu->enable_count));
734 GEM_BUG_ON(pmu->enable_count[bit] == 0);
736 * Decrement the reference count and clear the enabled
737 * bitmask when the last listener on an event goes away.
739 if (--pmu->enable_count[bit] == 0) {
740 pmu->enable &= ~BIT_ULL(bit);
741 pmu->timer_enabled &= pmu_needs_timer(pmu, true);
744 spin_unlock_irqrestore(&pmu->lock, flags);
747 static void i915_pmu_event_start(struct perf_event *event, int flags)
749 struct drm_i915_private *i915 =
750 container_of(event->pmu, typeof(*i915), pmu.base);
751 struct i915_pmu *pmu = &i915->pmu;
756 i915_pmu_enable(event);
760 static void i915_pmu_event_stop(struct perf_event *event, int flags)
762 if (flags & PERF_EF_UPDATE)
763 i915_pmu_event_read(event);
764 i915_pmu_disable(event);
765 event->hw.state = PERF_HES_STOPPED;
768 static int i915_pmu_event_add(struct perf_event *event, int flags)
770 struct drm_i915_private *i915 =
771 container_of(event->pmu, typeof(*i915), pmu.base);
772 struct i915_pmu *pmu = &i915->pmu;
777 if (flags & PERF_EF_START)
778 i915_pmu_event_start(event, flags);
783 static void i915_pmu_event_del(struct perf_event *event, int flags)
785 i915_pmu_event_stop(event, PERF_EF_UPDATE);
788 static int i915_pmu_event_event_idx(struct perf_event *event)
793 struct i915_str_attribute {
794 struct device_attribute attr;
798 static ssize_t i915_pmu_format_show(struct device *dev,
799 struct device_attribute *attr, char *buf)
801 struct i915_str_attribute *eattr;
803 eattr = container_of(attr, struct i915_str_attribute, attr);
804 return sprintf(buf, "%s\n", eattr->str);
807 #define I915_PMU_FORMAT_ATTR(_name, _config) \
808 (&((struct i915_str_attribute[]) { \
809 { .attr = __ATTR(_name, 0444, i915_pmu_format_show, NULL), \
813 static struct attribute *i915_pmu_format_attrs[] = {
814 I915_PMU_FORMAT_ATTR(i915_eventid, "config:0-20"),
818 static const struct attribute_group i915_pmu_format_attr_group = {
820 .attrs = i915_pmu_format_attrs,
823 struct i915_ext_attribute {
824 struct device_attribute attr;
828 static ssize_t i915_pmu_event_show(struct device *dev,
829 struct device_attribute *attr, char *buf)
831 struct i915_ext_attribute *eattr;
833 eattr = container_of(attr, struct i915_ext_attribute, attr);
834 return sprintf(buf, "config=0x%lx\n", eattr->val);
838 i915_pmu_get_attr_cpumask(struct device *dev,
839 struct device_attribute *attr,
842 return cpumap_print_to_pagebuf(true, buf, &i915_pmu_cpumask);
845 static DEVICE_ATTR(cpumask, 0444, i915_pmu_get_attr_cpumask, NULL);
847 static struct attribute *i915_cpumask_attrs[] = {
848 &dev_attr_cpumask.attr,
852 static const struct attribute_group i915_pmu_cpumask_attr_group = {
853 .attrs = i915_cpumask_attrs,
856 #define __event(__config, __name, __unit) \
858 .config = (__config), \
863 #define __engine_event(__sample, __name) \
865 .sample = (__sample), \
869 static struct i915_ext_attribute *
870 add_i915_attr(struct i915_ext_attribute *attr, const char *name, u64 config)
872 sysfs_attr_init(&attr->attr.attr);
873 attr->attr.attr.name = name;
874 attr->attr.attr.mode = 0444;
875 attr->attr.show = i915_pmu_event_show;
881 static struct perf_pmu_events_attr *
882 add_pmu_attr(struct perf_pmu_events_attr *attr, const char *name,
885 sysfs_attr_init(&attr->attr.attr);
886 attr->attr.attr.name = name;
887 attr->attr.attr.mode = 0444;
888 attr->attr.show = perf_event_sysfs_show;
889 attr->event_str = str;
894 static struct attribute **
895 create_event_attributes(struct i915_pmu *pmu)
897 struct drm_i915_private *i915 = container_of(pmu, typeof(*i915), pmu);
898 static const struct {
903 __event(I915_PMU_ACTUAL_FREQUENCY, "actual-frequency", "M"),
904 __event(I915_PMU_REQUESTED_FREQUENCY, "requested-frequency", "M"),
905 __event(I915_PMU_INTERRUPTS, "interrupts", NULL),
906 __event(I915_PMU_RC6_RESIDENCY, "rc6-residency", "ns"),
907 __event(I915_PMU_SOFTWARE_GT_AWAKE_TIME, "software-gt-awake-time", "ns"),
909 static const struct {
910 enum drm_i915_pmu_engine_sample sample;
912 } engine_events[] = {
913 __engine_event(I915_SAMPLE_BUSY, "busy"),
914 __engine_event(I915_SAMPLE_SEMA, "sema"),
915 __engine_event(I915_SAMPLE_WAIT, "wait"),
917 unsigned int count = 0;
918 struct perf_pmu_events_attr *pmu_attr = NULL, *pmu_iter;
919 struct i915_ext_attribute *i915_attr = NULL, *i915_iter;
920 struct attribute **attr = NULL, **attr_iter;
921 struct intel_engine_cs *engine;
924 /* Count how many counters we will be exposing. */
925 for (i = 0; i < ARRAY_SIZE(events); i++) {
926 if (!config_status(i915, events[i].config))
930 for_each_uabi_engine(engine, i915) {
931 for (i = 0; i < ARRAY_SIZE(engine_events); i++) {
932 if (!engine_event_status(engine,
933 engine_events[i].sample))
938 /* Allocate attribute objects and table. */
939 i915_attr = kcalloc(count, sizeof(*i915_attr), GFP_KERNEL);
943 pmu_attr = kcalloc(count, sizeof(*pmu_attr), GFP_KERNEL);
947 /* Max one pointer of each attribute type plus a termination entry. */
948 attr = kcalloc(count * 2 + 1, sizeof(*attr), GFP_KERNEL);
952 i915_iter = i915_attr;
956 /* Initialize supported non-engine counters. */
957 for (i = 0; i < ARRAY_SIZE(events); i++) {
960 if (config_status(i915, events[i].config))
963 str = kstrdup(events[i].name, GFP_KERNEL);
967 *attr_iter++ = &i915_iter->attr.attr;
968 i915_iter = add_i915_attr(i915_iter, str, events[i].config);
970 if (events[i].unit) {
971 str = kasprintf(GFP_KERNEL, "%s.unit", events[i].name);
975 *attr_iter++ = &pmu_iter->attr.attr;
976 pmu_iter = add_pmu_attr(pmu_iter, str, events[i].unit);
980 /* Initialize supported engine counters. */
981 for_each_uabi_engine(engine, i915) {
982 for (i = 0; i < ARRAY_SIZE(engine_events); i++) {
985 if (engine_event_status(engine,
986 engine_events[i].sample))
989 str = kasprintf(GFP_KERNEL, "%s-%s",
990 engine->name, engine_events[i].name);
994 *attr_iter++ = &i915_iter->attr.attr;
996 add_i915_attr(i915_iter, str,
997 __I915_PMU_ENGINE(engine->uabi_class,
998 engine->uabi_instance,
999 engine_events[i].sample));
1001 str = kasprintf(GFP_KERNEL, "%s-%s.unit",
1002 engine->name, engine_events[i].name);
1006 *attr_iter++ = &pmu_iter->attr.attr;
1007 pmu_iter = add_pmu_attr(pmu_iter, str, "ns");
1011 pmu->i915_attr = i915_attr;
1012 pmu->pmu_attr = pmu_attr;
1017 for (attr_iter = attr; *attr_iter; attr_iter++)
1018 kfree((*attr_iter)->name);
1028 static void free_event_attributes(struct i915_pmu *pmu)
1030 struct attribute **attr_iter = pmu->events_attr_group.attrs;
1032 for (; *attr_iter; attr_iter++)
1033 kfree((*attr_iter)->name);
1035 kfree(pmu->events_attr_group.attrs);
1036 kfree(pmu->i915_attr);
1037 kfree(pmu->pmu_attr);
1039 pmu->events_attr_group.attrs = NULL;
1040 pmu->i915_attr = NULL;
1041 pmu->pmu_attr = NULL;
1044 static int i915_pmu_cpu_online(unsigned int cpu, struct hlist_node *node)
1046 struct i915_pmu *pmu = hlist_entry_safe(node, typeof(*pmu), cpuhp.node);
1048 GEM_BUG_ON(!pmu->base.event_init);
1050 /* Select the first online CPU as a designated reader. */
1051 if (!cpumask_weight(&i915_pmu_cpumask))
1052 cpumask_set_cpu(cpu, &i915_pmu_cpumask);
1057 static int i915_pmu_cpu_offline(unsigned int cpu, struct hlist_node *node)
1059 struct i915_pmu *pmu = hlist_entry_safe(node, typeof(*pmu), cpuhp.node);
1060 unsigned int target = i915_pmu_target_cpu;
1062 GEM_BUG_ON(!pmu->base.event_init);
1065 * Unregistering an instance generates a CPU offline event which we must
1066 * ignore to avoid incorrectly modifying the shared i915_pmu_cpumask.
1071 if (cpumask_test_and_clear_cpu(cpu, &i915_pmu_cpumask)) {
1072 target = cpumask_any_but(topology_sibling_cpumask(cpu), cpu);
1074 /* Migrate events if there is a valid target */
1075 if (target < nr_cpu_ids) {
1076 cpumask_set_cpu(target, &i915_pmu_cpumask);
1077 i915_pmu_target_cpu = target;
1081 if (target < nr_cpu_ids && target != pmu->cpuhp.cpu) {
1082 perf_pmu_migrate_context(&pmu->base, cpu, target);
1083 pmu->cpuhp.cpu = target;
1089 static enum cpuhp_state cpuhp_slot = CPUHP_INVALID;
1091 void i915_pmu_init(void)
1095 ret = cpuhp_setup_state_multi(CPUHP_AP_ONLINE_DYN,
1096 "perf/x86/intel/i915:online",
1097 i915_pmu_cpu_online,
1098 i915_pmu_cpu_offline);
1100 pr_notice("Failed to setup cpuhp state for i915 PMU! (%d)\n",
1106 void i915_pmu_exit(void)
1108 if (cpuhp_slot != CPUHP_INVALID)
1109 cpuhp_remove_multi_state(cpuhp_slot);
1112 static int i915_pmu_register_cpuhp_state(struct i915_pmu *pmu)
1114 if (cpuhp_slot == CPUHP_INVALID)
1117 return cpuhp_state_add_instance(cpuhp_slot, &pmu->cpuhp.node);
1120 static void i915_pmu_unregister_cpuhp_state(struct i915_pmu *pmu)
1122 cpuhp_state_remove_instance(cpuhp_slot, &pmu->cpuhp.node);
1125 static bool is_igp(struct drm_i915_private *i915)
1127 struct pci_dev *pdev = to_pci_dev(i915->drm.dev);
1129 /* IGP is 0000:00:02.0 */
1130 return pci_domain_nr(pdev->bus) == 0 &&
1131 pdev->bus->number == 0 &&
1132 PCI_SLOT(pdev->devfn) == 2 &&
1133 PCI_FUNC(pdev->devfn) == 0;
1136 void i915_pmu_register(struct drm_i915_private *i915)
1138 struct i915_pmu *pmu = &i915->pmu;
1139 const struct attribute_group *attr_groups[] = {
1140 &i915_pmu_format_attr_group,
1141 &pmu->events_attr_group,
1142 &i915_pmu_cpumask_attr_group,
1148 if (INTEL_GEN(i915) <= 2) {
1149 drm_info(&i915->drm, "PMU not supported for this GPU.");
1153 spin_lock_init(&pmu->lock);
1154 hrtimer_init(&pmu->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
1155 pmu->timer.function = i915_sample;
1156 pmu->cpuhp.cpu = -1;
1159 if (!is_igp(i915)) {
1160 pmu->name = kasprintf(GFP_KERNEL,
1162 dev_name(i915->drm.dev));
1164 /* tools/perf reserves colons as special. */
1165 strreplace((char *)pmu->name, ':', '_');
1173 pmu->events_attr_group.name = "events";
1174 pmu->events_attr_group.attrs = create_event_attributes(pmu);
1175 if (!pmu->events_attr_group.attrs)
1178 pmu->base.attr_groups = kmemdup(attr_groups, sizeof(attr_groups),
1180 if (!pmu->base.attr_groups)
1183 pmu->base.module = THIS_MODULE;
1184 pmu->base.task_ctx_nr = perf_invalid_context;
1185 pmu->base.event_init = i915_pmu_event_init;
1186 pmu->base.add = i915_pmu_event_add;
1187 pmu->base.del = i915_pmu_event_del;
1188 pmu->base.start = i915_pmu_event_start;
1189 pmu->base.stop = i915_pmu_event_stop;
1190 pmu->base.read = i915_pmu_event_read;
1191 pmu->base.event_idx = i915_pmu_event_event_idx;
1193 ret = perf_pmu_register(&pmu->base, pmu->name, -1);
1197 ret = i915_pmu_register_cpuhp_state(pmu);
1204 perf_pmu_unregister(&pmu->base);
1206 kfree(pmu->base.attr_groups);
1208 pmu->base.event_init = NULL;
1209 free_event_attributes(pmu);
1214 drm_notice(&i915->drm, "Failed to register PMU!\n");
1217 void i915_pmu_unregister(struct drm_i915_private *i915)
1219 struct i915_pmu *pmu = &i915->pmu;
1221 if (!pmu->base.event_init)
1225 * "Disconnect" the PMU callbacks - since all are atomic synchronize_rcu
1226 * ensures all currently executing ones will have exited before we
1227 * proceed with unregistration.
1232 hrtimer_cancel(&pmu->timer);
1234 i915_pmu_unregister_cpuhp_state(pmu);
1236 perf_pmu_unregister(&pmu->base);
1237 pmu->base.event_init = NULL;
1238 kfree(pmu->base.attr_groups);
1241 free_event_attributes(pmu);