drm/i915/dp: fix DP audio for PORT_A on gen12+
authorKai Vehmanen <kai.vehmanen@linux.intel.com>
Mon, 25 Nov 2019 12:53:12 +0000 (14:53 +0200)
committerMatt Roper <matthew.d.roper@intel.com>
Wed, 27 Nov 2019 00:12:44 +0000 (16:12 -0800)
Starting with gen12, PORT_A can be connected to a transcoder
with audio support. Modify the existing logic that disabled
audio on PORT_A unconditionally.

Signed-off-by: Kai Vehmanen <kai.vehmanen@linux.intel.com>
Reviewed-by: Matt Roper <matthew.d.roper@intel.com>
Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20191125125313.17584-1-kai.vehmanen@linux.intel.com
drivers/gpu/drm/i915/display/intel_dp.c

index 9e9593965a9a38ed4f7c73d3081d38a55fa97276..511c6ae04ad0fdd0dc54947986d5eeef856bbb9f 100644 (file)
@@ -2308,6 +2308,17 @@ bool intel_dp_limited_color_range(const struct intel_crtc_state *crtc_state,
        }
 }
 
+static bool intel_dp_port_has_audio(struct drm_i915_private *dev_priv,
+                                   enum port port)
+{
+       if (IS_G4X(dev_priv))
+               return false;
+       if (INTEL_GEN(dev_priv) < 12 && port == PORT_A)
+               return false;
+
+       return true;
+}
+
 int
 intel_dp_compute_config(struct intel_encoder *encoder,
                        struct intel_crtc_state *pipe_config,
@@ -2341,7 +2352,7 @@ intel_dp_compute_config(struct intel_encoder *encoder,
                return ret;
 
        pipe_config->has_drrs = false;
-       if (IS_G4X(dev_priv) || port == PORT_A)
+       if (!intel_dp_port_has_audio(dev_priv, port))
                pipe_config->has_audio = false;
        else if (intel_conn_state->force_audio == HDMI_AUDIO_AUTO)
                pipe_config->has_audio = intel_dp->has_audio;