|
@@ -415,7 +415,81 @@ static int i915_pmu_event_init(struct perf_event *event)
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
-static u64 __i915_pmu_event_read(struct perf_event *event)
|
|
|
+static u64 get_rc6(struct drm_i915_private *i915, bool locked)
|
|
|
+{
|
|
|
+ unsigned long flags;
|
|
|
+ u64 val;
|
|
|
+
|
|
|
+ if (intel_runtime_pm_get_if_in_use(i915)) {
|
|
|
+ val = intel_rc6_residency_ns(i915, IS_VALLEYVIEW(i915) ?
|
|
|
+ VLV_GT_RENDER_RC6 :
|
|
|
+ GEN6_GT_GFX_RC6);
|
|
|
+
|
|
|
+ if (HAS_RC6p(i915))
|
|
|
+ val += intel_rc6_residency_ns(i915, GEN6_GT_GFX_RC6p);
|
|
|
+
|
|
|
+ if (HAS_RC6pp(i915))
|
|
|
+ val += intel_rc6_residency_ns(i915, GEN6_GT_GFX_RC6pp);
|
|
|
+
|
|
|
+ intel_runtime_pm_put(i915);
|
|
|
+
|
|
|
+ /*
|
|
|
+ * If we are coming back from being runtime suspended we must
|
|
|
+ * be careful not to report a larger value than returned
|
|
|
+ * previously.
|
|
|
+ */
|
|
|
+
|
|
|
+ if (!locked)
|
|
|
+ spin_lock_irqsave(&i915->pmu.lock, flags);
|
|
|
+
|
|
|
+ if (val >= i915->pmu.sample[__I915_SAMPLE_RC6_ESTIMATED].cur) {
|
|
|
+ i915->pmu.sample[__I915_SAMPLE_RC6_ESTIMATED].cur = 0;
|
|
|
+ i915->pmu.sample[__I915_SAMPLE_RC6].cur = val;
|
|
|
+ } else {
|
|
|
+ val = i915->pmu.sample[__I915_SAMPLE_RC6_ESTIMATED].cur;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (!locked)
|
|
|
+ spin_unlock_irqrestore(&i915->pmu.lock, flags);
|
|
|
+ } else {
|
|
|
+ struct pci_dev *pdev = i915->drm.pdev;
|
|
|
+ struct device *kdev = &pdev->dev;
|
|
|
+ unsigned long flags2;
|
|
|
+
|
|
|
+ /*
|
|
|
+ * 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.
|
|
|
+ */
|
|
|
+ if (!locked)
|
|
|
+ spin_lock_irqsave(&i915->pmu.lock, flags);
|
|
|
+
|
|
|
+ spin_lock_irqsave(&kdev->power.lock, flags2);
|
|
|
+
|
|
|
+ if (!i915->pmu.sample[__I915_SAMPLE_RC6_ESTIMATED].cur)
|
|
|
+ i915->pmu.suspended_jiffies_last =
|
|
|
+ kdev->power.suspended_jiffies;
|
|
|
+
|
|
|
+ val = kdev->power.suspended_jiffies -
|
|
|
+ i915->pmu.suspended_jiffies_last;
|
|
|
+ val += jiffies - kdev->power.accounting_timestamp;
|
|
|
+
|
|
|
+ spin_unlock_irqrestore(&kdev->power.lock, flags2);
|
|
|
+
|
|
|
+ val = jiffies_to_nsecs(val);
|
|
|
+ val += i915->pmu.sample[__I915_SAMPLE_RC6].cur;
|
|
|
+ i915->pmu.sample[__I915_SAMPLE_RC6_ESTIMATED].cur = val;
|
|
|
+
|
|
|
+ if (!locked)
|
|
|
+ spin_unlock_irqrestore(&i915->pmu.lock, flags);
|
|
|
+ }
|
|
|
+
|
|
|
+ return val;
|
|
|
+}
|
|
|
+
|
|
|
+static u64 __i915_pmu_event_read(struct perf_event *event, bool locked)
|
|
|
{
|
|
|
struct drm_i915_private *i915 =
|
|
|
container_of(event->pmu, typeof(*i915), pmu.base);
|
|
@@ -453,18 +527,7 @@ static u64 __i915_pmu_event_read(struct perf_event *event)
|
|
|
val = count_interrupts(i915);
|
|
|
break;
|
|
|
case I915_PMU_RC6_RESIDENCY:
|
|
|
- intel_runtime_pm_get(i915);
|
|
|
- val = intel_rc6_residency_ns(i915,
|
|
|
- IS_VALLEYVIEW(i915) ?
|
|
|
- VLV_GT_RENDER_RC6 :
|
|
|
- GEN6_GT_GFX_RC6);
|
|
|
- if (HAS_RC6p(i915))
|
|
|
- val += intel_rc6_residency_ns(i915,
|
|
|
- GEN6_GT_GFX_RC6p);
|
|
|
- if (HAS_RC6pp(i915))
|
|
|
- val += intel_rc6_residency_ns(i915,
|
|
|
- GEN6_GT_GFX_RC6pp);
|
|
|
- intel_runtime_pm_put(i915);
|
|
|
+ val = get_rc6(i915, locked);
|
|
|
break;
|
|
|
}
|
|
|
}
|
|
@@ -479,7 +542,7 @@ static void i915_pmu_event_read(struct perf_event *event)
|
|
|
|
|
|
again:
|
|
|
prev = local64_read(&hwc->prev_count);
|
|
|
- new = __i915_pmu_event_read(event);
|
|
|
+ new = __i915_pmu_event_read(event, false);
|
|
|
|
|
|
if (local64_cmpxchg(&hwc->prev_count, prev, new) != prev)
|
|
|
goto again;
|
|
@@ -534,7 +597,7 @@ static void i915_pmu_enable(struct perf_event *event)
|
|
|
* for all listeners. Even when the event was already enabled and has
|
|
|
* an existing non-zero value.
|
|
|
*/
|
|
|
- local64_set(&event->hw.prev_count, __i915_pmu_event_read(event));
|
|
|
+ local64_set(&event->hw.prev_count, __i915_pmu_event_read(event, true));
|
|
|
|
|
|
spin_unlock_irqrestore(&i915->pmu.lock, flags);
|
|
|
}
|