]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
drm/i915/sdvo: stop caching has_hdmi_monitor in struct intel_sdvo
authorJani Nikula <jani.nikula@intel.com>
Tue, 30 May 2023 09:08:19 +0000 (12:08 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 13 Dec 2023 17:39:30 +0000 (18:39 +0100)
[ Upstream commit f2f9c8cb6421429ef166d6404426693212d0ca07 ]

Use the information stored in display info.

Reviewed-by: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/3e9e1dcd554d470bdf474891a431b15e1880f9a0.1685437500.git.jani.nikula@intel.com
Stable-dep-of: 20c2dbff342a ("drm/i915: Skip some timing checks on BXT/GLK DSI transcoders")
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/gpu/drm/i915/display/intel_sdvo.c

index 2c2e0f041f86976a28dea4f2740633e5b62dd454..c1a85128911e122dcf2003c61d24e4e8216810ef 100644 (file)
@@ -115,7 +115,6 @@ struct intel_sdvo {
 
        enum port port;
 
-       bool has_hdmi_monitor;
        bool has_hdmi_audio;
 
        /* DDC bus used by this SDVO encoder */
@@ -1278,10 +1277,13 @@ static void i9xx_adjust_sdvo_tv_clock(struct intel_crtc_state *pipe_config)
        pipe_config->clock_set = true;
 }
 
-static bool intel_has_hdmi_sink(struct intel_sdvo *sdvo,
+static bool intel_has_hdmi_sink(struct intel_sdvo_connector *intel_sdvo_connector,
                                const struct drm_connector_state *conn_state)
 {
-       return sdvo->has_hdmi_monitor &&
+       struct drm_connector *connector = conn_state->connector;
+
+       return intel_sdvo_connector->is_hdmi &&
+               connector->display_info.is_hdmi &&
                READ_ONCE(to_intel_digital_connector_state(conn_state)->force_audio) != HDMI_AUDIO_OFF_DVI;
 }
 
@@ -1360,7 +1362,7 @@ static int intel_sdvo_compute_config(struct intel_encoder *encoder,
        pipe_config->pixel_multiplier =
                intel_sdvo_get_pixel_multiplier(adjusted_mode);
 
-       pipe_config->has_hdmi_sink = intel_has_hdmi_sink(intel_sdvo, conn_state);
+       pipe_config->has_hdmi_sink = intel_has_hdmi_sink(intel_sdvo_connector, conn_state);
 
        if (pipe_config->has_hdmi_sink) {
                if (intel_sdvo_state->base.force_audio == HDMI_AUDIO_AUTO)
@@ -1875,7 +1877,7 @@ intel_sdvo_mode_valid(struct drm_connector *connector,
        struct intel_sdvo_connector *intel_sdvo_connector =
                to_intel_sdvo_connector(connector);
        int max_dotclk = to_i915(connector->dev)->max_dotclk_freq;
-       bool has_hdmi_sink = intel_has_hdmi_sink(intel_sdvo, connector->state);
+       bool has_hdmi_sink = intel_has_hdmi_sink(intel_sdvo_connector, connector->state);
        int clock = mode->clock;
 
        if (mode->flags & DRM_MODE_FLAG_DBLSCAN)
@@ -2064,7 +2066,6 @@ intel_sdvo_tmds_sink_detect(struct drm_connector *connector)
                if (edid->input & DRM_EDID_INPUT_DIGITAL) {
                        status = connector_status_connected;
                        if (intel_sdvo_connector->is_hdmi) {
-                               intel_sdvo->has_hdmi_monitor = drm_detect_hdmi_monitor(edid);
                                intel_sdvo->has_hdmi_audio = drm_detect_monitor_audio(edid);
                        }
                } else
@@ -2116,7 +2117,6 @@ intel_sdvo_detect(struct drm_connector *connector, bool force)
 
        intel_sdvo->attached_output = response;
 
-       intel_sdvo->has_hdmi_monitor = false;
        intel_sdvo->has_hdmi_audio = false;
 
        if ((intel_sdvo_connector->output_flag & response) == 0)