]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
drm/i915/dp: move TPS3 logic to where it's used
authorJani Nikula <jani.nikula@intel.com>
Thu, 3 Sep 2015 08:16:07 +0000 (11:16 +0300)
committerDaniel Vetter <daniel.vetter@ffwll.ch>
Fri, 4 Sep 2015 08:14:06 +0000 (10:14 +0200)
There is no need to have a separate flag for tps3 as the information is
only used at one location. Move the logic there to make it easier to
follow.

Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
drivers/gpu/drm/i915/intel_dp.c
drivers/gpu/drm/i915/intel_drv.h

index f8f4d99440c1becf92b8a57778f21d8840120a2a..9a6fb5dbf0217bfa100b0d73cb349250bb7f485f 100644 (file)
@@ -3812,13 +3812,25 @@ intel_dp_start_link_train(struct intel_dp *intel_dp)
 void
 intel_dp_complete_link_train(struct intel_dp *intel_dp)
 {
+       struct intel_digital_port *dig_port = dp_to_dig_port(intel_dp);
+       struct drm_device *dev = dig_port->base.base.dev;
        bool channel_eq = false;
        int tries, cr_tries;
        uint32_t DP = intel_dp->DP;
        uint32_t training_pattern = DP_TRAINING_PATTERN_2;
 
-       /* Training Pattern 3 for HBR2 or 1.2 devices that support it*/
-       if (intel_dp->link_rate == 540000 || intel_dp->use_tps3)
+       /*
+        * Training Pattern 3 for HBR2 or 1.2 devices that support it.
+        *
+        * Intel platforms that support HBR2 also support TPS3. TPS3 support is
+        * also mandatory for downstream devices that support HBR2.
+        *
+        * Due to WaDisableHBR2 SKL < B0 is the only exception where TPS3 is
+        * supported but still not enabled.
+        */
+       if (intel_dp->link_rate == 540000 ||
+           (intel_dp_source_supports_hbr2(dev) &&
+            drm_dp_tps3_supported(intel_dp->dpcd)))
                training_pattern = DP_TRAINING_PATTERN_3;
 
        /* channel equalization */
@@ -4000,18 +4012,9 @@ intel_dp_get_dpcd(struct intel_dp *intel_dp)
                }
        }
 
-       /* Training Pattern 3 support, Intel platforms that support HBR2 alone
-        * have support for TP3 hence that check is used along with dpcd check
-        * to ensure TP3 can be enabled.
-        * SKL < B0: due it's WaDisableHBR2 is the only exception where TP3 is
-        * supported but still not enabled.
-        */
-       if (drm_dp_tps3_supported(intel_dp->dpcd) &&
-           intel_dp_source_supports_hbr2(dev)) {
-               intel_dp->use_tps3 = true;
-               DRM_DEBUG_KMS("Displayport TPS3 supported\n");
-       } else
-               intel_dp->use_tps3 = false;
+       DRM_DEBUG_KMS("Display Port TPS3 support: source %s, sink %s\n",
+                     intel_dp_source_supports_hbr2(dev) ? "yes" : "no",
+                     drm_dp_tps3_supported(intel_dp->dpcd) ? "yes" : "no");
 
        /* Intermediate frequency support */
        if (is_edp(intel_dp) &&
index 40e825d6a26f9837a1a69b3110e67200ea2b1ca3..2bdd5449b889bfda0538827bc0a9d9db4d02a923 100644 (file)
@@ -746,7 +746,6 @@ struct intel_dp {
        enum pipe pps_pipe;
        struct edp_power_seq pps_delays;
 
-       bool use_tps3;
        bool can_mst; /* this port supports mst */
        bool is_mst;
        int active_mst_links;