All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/i915/hdmi: Fix weak connector detection
@ 2016-03-31 20:55 Ezequiel Garcia
  2016-04-01  9:07 ` ✓ Fi.CI.BAT: success for " Patchwork
  2016-04-01 14:47 ` [PATCH] " Ville Syrjälä
  0 siblings, 2 replies; 8+ messages in thread
From: Ezequiel Garcia @ 2016-03-31 20:55 UTC (permalink / raw)
  To: intel-gfx, dri-devel; +Cc: Daniel Vetter, Ezequiel Garcia

Currently, our implementation of drm_connector_funcs.detect is
based on getting a valid EDID.

This requirement makes the driver fail to detect connected
connectors in case of EDID corruption, which prevents from falling
back to modes provided by builtin or user-provided EDIDs.

Let's fix this by improving the detection, with a DDC probe,
if the current EDID-based detection failed.

Note that a better way of dealing with this could calling
drm_probe_ddc in drm_connector_funcs.detect, and do the
EDID full reading and parsing in drm_connector_helper_funcs.get_modes,
when it's actually needed.

However, this would be more invasive and thus more error-prone.
The current commit is an attempt to get some uninvasive fix,
and allow for easier backporting.

Signed-off-by: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
---
 drivers/gpu/drm/i915/intel_hdmi.c | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/drivers/gpu/drm/i915/intel_hdmi.c b/drivers/gpu/drm/i915/intel_hdmi.c
index a0d8daed2470..c079206e6681 100644
--- a/drivers/gpu/drm/i915/intel_hdmi.c
+++ b/drivers/gpu/drm/i915/intel_hdmi.c
@@ -1428,6 +1428,20 @@ intel_hdmi_detect(struct drm_connector *connector, bool force)
 	} else
 		status = connector_status_disconnected;
 
+	/*
+	 * The above call to intel_hdmi_set_edid() checked for a valid EDID.
+	 * However, the EDID can get corrupted for several reasons, resulting
+	 * in a disconnected status despite the connector being connected.
+	 * Hence, let's try one more time, by only probing the DDC.
+	 *
+	 * This allows the DRM core to fallback to builtin or user-provided
+	 * EDID firmware, e.g. in drm_helper_probe_single_connector_modes.
+	 */
+	if (status == connector_status_disconnected)
+		if (drm_probe_ddc(intel_gmbus_get_adapter(dev_priv,
+						intel_hdmi->ddc_bus)))
+			status = connector_status_connected;
+
 	intel_display_power_put(dev_priv, POWER_DOMAIN_GMBUS);
 
 	return status;
-- 
2.7.0

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2016-04-14  5:11 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-03-31 20:55 [PATCH] drm/i915/hdmi: Fix weak connector detection Ezequiel Garcia
2016-04-01  9:07 ` ✓ Fi.CI.BAT: success for " Patchwork
2016-04-01 14:47 ` [PATCH] " Ville Syrjälä
2016-04-01 15:38   ` Ezequiel Garcia
2016-04-01 15:46     ` Ville Syrjälä
2016-04-01 19:50       ` Ezequiel Garcia
2016-04-05 14:54         ` Ezequiel Garcia
2016-04-14  5:11           ` Ezequiel Garcia

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.