]> Git Repo - linux.git/commitdiff
drm/i915: Use correct downstream caps for check Src-Ctl mode for PCON
authorAnkit Nautiyal <[email protected]>
Tue, 11 May 2021 12:09:30 +0000 (17:39 +0530)
committerJani Nikula <[email protected]>
Wed, 12 May 2021 17:53:08 +0000 (20:53 +0300)
Fix the typo in DPCD caps used for checking SRC CTL mode of
HDMI2.1 PCON

v2: Corrected Fixes tag (Jani Nikula).
v3: Rebased.

Fixes: 04b6603d13be ("drm/i915/display: Configure HDMI2.1 Pcon for FRL only if Src-Ctl mode is available")
Cc: Ankit Nautiyal <[email protected]>
Cc: Uma Shankar <[email protected]>
Cc: Jani Nikula <[email protected]>
Cc: "Ville Syrj_l_" <[email protected]>
Cc: Imre Deak <[email protected]>
Cc: Manasi Navare <[email protected]>
Cc: Gwan-gyeong Mun <[email protected]>
Cc: Lucas De Marchi <[email protected]>
Cc: Sean Paul <[email protected]>
Signed-off-by: Ankit Nautiyal <[email protected]>
Reviewed-by: Swati Sharma <[email protected]>
Signed-off-by: Anshuman Gupta <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
(cherry picked from commit 88a9c5485c48ab60c89612a17fc89f4162bbdb9d)
Signed-off-by: Jani Nikula <[email protected]>
drivers/gpu/drm/i915/display/intel_dp.c

index 1e026177ed1baedab54bb47b483197572a39ff5d..642c60f3d9b18cae1d323ba4bd6e469f5680247d 100644 (file)
@@ -2111,7 +2111,7 @@ void intel_dp_check_frl_training(struct intel_dp *intel_dp)
         * -PCON supports SRC_CTL_MODE (VESA DP2.0-HDMI2.1 PCON Spec Draft-1 Sec-7)
         * -sink is HDMI2.1
         */
-       if (!(intel_dp->dpcd[2] & DP_PCON_SOURCE_CTL_MODE) ||
+       if (!(intel_dp->downstream_ports[2] & DP_PCON_SOURCE_CTL_MODE) ||
            !intel_dp_is_hdmi_2_1_sink(intel_dp) ||
            intel_dp->frl.is_trained)
                return;
This page took 0.074026 seconds and 4 git commands to generate.