Skip to content

Commit cf12976

Browse files
StanFox1984Manasi Navare
authored andcommitted
drm/i915: Plane configuration affects CDCLK in Gen11+
So lets support it. v2: - Fixed "from" field which got corrupted for some weird reason Reviewed-by: Manasi Navare <manasi.d.navare@intel.com> Signed-off-by: Stanislav Lisovskiy <stanislav.lisovskiy@intel.com> Signed-off-by: Manasi Navare <manasi.d.navare@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20200520145945.15997-1-stanislav.lisovskiy@intel.com
1 parent 9877c37 commit cf12976

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/gpu/drm/i915/display/intel_display.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14643,7 +14643,7 @@ static bool active_planes_affects_min_cdclk(struct drm_i915_private *dev_priv)
1464314643
/* See {hsw,vlv,ivb}_plane_ratio() */
1464414644
return IS_BROADWELL(dev_priv) || IS_HASWELL(dev_priv) ||
1464514645
IS_CHERRYVIEW(dev_priv) || IS_VALLEYVIEW(dev_priv) ||
14646-
IS_IVYBRIDGE(dev_priv);
14646+
IS_IVYBRIDGE(dev_priv) || (INTEL_GEN(dev_priv) >= 11);
1464714647
}
1464814648

1464914649
static int intel_atomic_check_planes(struct intel_atomic_state *state)

0 commit comments

Comments
 (0)