drm/i915/skl: Adjust assert_sprites_disabled()
[deliverable/linux.git] / drivers / gpu / drm / i915 / intel_display.c
index 2087e8baa3f9bd1f2c05442b66d2430fc2613bf7..1bda97c7100ac263eae4769ed41398923fb98b6d 100644 (file)
@@ -1335,7 +1335,14 @@ static void assert_sprites_disabled(struct drm_i915_private *dev_priv,
        int reg, sprite;
        u32 val;
 
-       if (IS_VALLEYVIEW(dev)) {
+       if (INTEL_INFO(dev)->gen >= 9) {
+               for_each_sprite(pipe, sprite) {
+                       val = I915_READ(PLANE_CTL(pipe, sprite));
+                       WARN(val & PLANE_CTL_ENABLE,
+                            "plane %d assertion failure, should be off on pipe %c but is still active\n",
+                            sprite, pipe_name(pipe));
+               }
+       } else if (IS_VALLEYVIEW(dev)) {
                for_each_sprite(pipe, sprite) {
                        reg = SPCNTR(pipe, sprite);
                        val = I915_READ(reg);
This page took 0.03706 seconds and 5 git commands to generate.