drm/i915/sdvo: stop caching has_hdmi_monitor in struct intel_sdvo
[ 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>
This commit is contained in:
parent
cf70d62ace
commit
d9ef7b05cc
1 changed files with 7 additions and 7 deletions
|
|
@ -115,7 +115,6 @@ struct intel_sdvo {
|
||||||
|
|
||||||
enum port port;
|
enum port port;
|
||||||
|
|
||||||
bool has_hdmi_monitor;
|
|
||||||
bool has_hdmi_audio;
|
bool has_hdmi_audio;
|
||||||
|
|
||||||
/* DDC bus used by this SDVO encoder */
|
/* 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;
|
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)
|
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;
|
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 =
|
pipe_config->pixel_multiplier =
|
||||||
intel_sdvo_get_pixel_multiplier(adjusted_mode);
|
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 (pipe_config->has_hdmi_sink) {
|
||||||
if (intel_sdvo_state->base.force_audio == HDMI_AUDIO_AUTO)
|
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 =
|
struct intel_sdvo_connector *intel_sdvo_connector =
|
||||||
to_intel_sdvo_connector(connector);
|
to_intel_sdvo_connector(connector);
|
||||||
int max_dotclk = to_i915(connector->dev)->max_dotclk_freq;
|
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;
|
int clock = mode->clock;
|
||||||
|
|
||||||
if (mode->flags & DRM_MODE_FLAG_DBLSCAN)
|
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) {
|
if (edid->input & DRM_EDID_INPUT_DIGITAL) {
|
||||||
status = connector_status_connected;
|
status = connector_status_connected;
|
||||||
if (intel_sdvo_connector->is_hdmi) {
|
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);
|
intel_sdvo->has_hdmi_audio = drm_detect_monitor_audio(edid);
|
||||||
}
|
}
|
||||||
} else
|
} else
|
||||||
|
|
@ -2116,7 +2117,6 @@ intel_sdvo_detect(struct drm_connector *connector, bool force)
|
||||||
|
|
||||||
intel_sdvo->attached_output = response;
|
intel_sdvo->attached_output = response;
|
||||||
|
|
||||||
intel_sdvo->has_hdmi_monitor = false;
|
|
||||||
intel_sdvo->has_hdmi_audio = false;
|
intel_sdvo->has_hdmi_audio = false;
|
||||||
|
|
||||||
if ((intel_sdvo_connector->output_flag & response) == 0)
|
if ((intel_sdvo_connector->output_flag & response) == 0)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue