<html>
    <head>
      <base href="https://bugs.freedesktop.org/" />
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW --- - [ILK] Some modes unable to light up on DP display"
   href="https://bugs.freedesktop.org/show_bug.cgi?id=64415#c6">Comment # 6</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW --- - [ILK] Some modes unable to light up on DP display"
   href="https://bugs.freedesktop.org/show_bug.cgi?id=64415">bug 64415</a>
              from <span class="vcard"><a class="email" href="mailto:jbarnes@virtuousgeek.org" title="Jesse Barnes <jbarnes@virtuousgeek.org>"> <span class="fn">Jesse Barnes</span></a>
</span></b>
        <pre>Wonder if this is an issue with our wide vs narrow config?  If so, this patch
might help:


diff --git a/drivers/gpu/drm/i915/intel_dp.c b/drivers/gpu/drm/i915/intel_dp.c
index cbf33be..44b3d95 100644
--- a/drivers/gpu/drm/i915/intel_dp.c
+++ b/drivers/gpu/drm/i915/intel_dp.c
@@ -847,8 +847,8 @@ intel_dp_compute_config(struct intel_encoder *encoder,
         mode_rate = intel_dp_link_required(adjusted_mode->crtc_clock,
                            bpp);

-        for (clock = 0; clock <= max_clock; clock++) {
-            for (lane_count = 1; lane_count <= max_lane_count;  lane_count <<=
1) {
+        for (lane_count = 1; lane_count <= max_lane_count; lane_count <<= 1) {
+            for (clock = 0; clock <= max_clock; clock++) {
                 link_clock = drm_dp_bw_code_to_link_rate(bws[clock]);
                 link_avail = intel_dp_max_data_rate(link_clock,
                                     lane_count);</pre>
        </div>
      </p>
      <hr>
      <span>You are receiving this mail because:</span>
      
      <ul>
          <li>You are the QA Contact for the bug.</li>
          <li>You are the assignee for the bug.</li>
      </ul>
    </body>
</html>