<html>
    <head>
      <base href="https://bugs.freedesktop.org/" />
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEEDINFO "
   title="NEEDINFO - loop in pipe configuration computation"
   href="https://bugs.freedesktop.org/show_bug.cgi?id=93477#c6">Comment # 6</a>
              on <a class="bz_bug_link 
          bz_status_NEEDINFO "
   title="NEEDINFO - loop in pipe configuration computation"
   href="https://bugs.freedesktop.org/show_bug.cgi?id=93477">bug 93477</a>
              from <span class="vcard"><a class="email" href="mailto:chris@chris-wilson.co.uk" title="Chris Wilson <chris@chris-wilson.co.uk>"> <span class="fn">Chris Wilson</span></a>
</span></b>
        <pre>diff --git a/drivers/gpu/drm/i915/intel_crt.c
b/drivers/gpu/drm/i915/intel_crt.c
index a2a31fd..64fe69d 100644
--- a/drivers/gpu/drm/i915/intel_crt.c
+++ b/drivers/gpu/drm/i915/intel_crt.c
@@ -261,8 +261,13 @@ static bool intel_crt_compute_config(struct intel_encoder
*encoder,
                pipe_config->has_pch_encoder = true;

        /* LPT FDI RX only supports 8bpc. */
-       if (HAS_PCH_LPT(dev))
+       if (HAS_PCH_LPT(dev)) {
+               if (pipe_config->bw_constrained && pipe_config->pipe_bpp < 24)
{
+                       DRM_DEBUG_KMS("LPT only supports 24bpp\n");
+                       return false;
+               }
                pipe_config->pipe_bpp = 24;
+       }

        /* FDI must always be 2.7 GHz */
        if (HAS_DDI(dev))

makes it fail silently. This setup (using a 1080p mode on a forced VGA output)
used to work on this machine for all intents and purposes.</pre>
        </div>
      </p>
      <hr>
      <span>You are receiving this mail because:</span>
      
      <ul>
          <li>You are on the CC list for the bug.</li>
          <li>You are the QA Contact for the bug.</li>
      </ul>
    </body>
</html>