Skip to content

Commit 0eb8e74

Browse files
vsyrjalajlahtine-intel
authored andcommitted
drm/i915/fbc: Disable fbc by default on all glk+
We're missing a workaround in the fbc code for all glk+ platforms which can cause corruption around the top of the screen. So enabling fbc by default is a bad idea. I'm not keen to backport the w/a so let's start by disabling fbc by default on all glk+. We'll lift the restriction once the w/a is in place. Cc: [email protected] Cc: Daniel Drake <[email protected]> Cc: Paulo Zanoni <[email protected]> Cc: Jian-Hong Pan <[email protected]> Cc: Maarten Lankhorst <[email protected]> Signed-off-by: Ville Syrjälä <[email protected]> Link: https://patchwork.freedesktop.org/patch/msgid/[email protected] Reviewed-by: Maarten Lankhorst <[email protected]> (cherry picked from commit cd8c021) Signed-off-by: Joonas Lahtinen <[email protected]>
1 parent 177e876 commit 0eb8e74

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1284,7 +1284,7 @@ static int intel_sanitize_fbc_option(struct drm_i915_private *dev_priv)
12841284
return 0;
12851285

12861286
/* https://bugs.freedesktop.org/show_bug.cgi?id=108085 */
1287-
if (IS_GEMINILAKE(dev_priv))
1287+
if (INTEL_GEN(dev_priv) >= 10 || IS_GEMINILAKE(dev_priv))
12881288
return 0;
12891289

12901290
if (IS_BROADWELL(dev_priv) || INTEL_GEN(dev_priv) >= 9)

0 commit comments

Comments
 (0)