From: Daniel Vetter Date: Fri, 19 Apr 2013 09:24:39 +0000 (+0200) Subject: drm/i915: Fixup non-24bpp support for VGA screens on Haswell X-Git-Tag: v3.11-rc1~65^2~131^2~113 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2a7aceecf15a463ba6bfa83b6579e75bb4703cd9;p=thirdparty%2Fkernel%2Flinux.git drm/i915: Fixup non-24bpp support for VGA screens on Haswell The LPT PCH only supports 8bpc, so we need to force the pipe bpp to the right value. Reviewed-by: Ville Syrjälä Signed-off-by: Daniel Vetter --- diff --git a/drivers/gpu/drm/i915/intel_crt.c b/drivers/gpu/drm/i915/intel_crt.c index c063b9f0dd519..991e53047e1de 100644 --- a/drivers/gpu/drm/i915/intel_crt.c +++ b/drivers/gpu/drm/i915/intel_crt.c @@ -214,6 +214,10 @@ static bool intel_crt_compute_config(struct intel_encoder *encoder, if (HAS_PCH_SPLIT(dev)) pipe_config->has_pch_encoder = true; + /* LPT FDI RX only supports 8bpc. */ + if (HAS_PCH_LPT(dev)) + pipe_config->pipe_bpp = 24; + return true; }