We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82c5625 commit 4c8c700Copy full SHA for 4c8c700
drivers/gpu/drm/i915/intel_dp.c
@@ -1776,6 +1776,10 @@ static bool intel_edp_psr_match_conditions(struct intel_dp *intel_dp)
1776
return false;
1777
}
1778
1779
+ /* Below limitations aren't valid for Broadwell */
1780
+ if (IS_BROADWELL(dev))
1781
+ goto out;
1782
+
1783
if (I915_READ(SPRCTL(intel_crtc->pipe)) & SPRITE_ENABLE) {
1784
DRM_DEBUG_KMS("PSR condition failed: Sprite is Enabled\n");
1785
@@ -1792,6 +1796,7 @@ static bool intel_edp_psr_match_conditions(struct intel_dp *intel_dp)
1792
1796
1793
1797
1794
1798
1799
+ out:
1795
1800
dev_priv->psr.source_ok = true;
1801
return true;
1802
0 commit comments