All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/radeon/kms: Add default 800x600 mode when getting bad EDID
@ 2009-11-12  9:09 Jerome Glisse
  2009-11-12 13:11 ` Jerome Glisse
  0 siblings, 1 reply; 2+ messages in thread
From: Jerome Glisse @ 2009-11-12  9:09 UTC (permalink / raw)
  To: airlied; +Cc: dri-devel, linux-kernel, Jerome Glisse

Adding default 800x600 mode should be a safe fail solution in front
of broken EDID, user can then add new mode to fit its needs.

Signed-off-by: Jerome Glisse <jglisse@redhat.com>
---
 drivers/gpu/drm/radeon/radeon_connectors.c |    8 ++++++--
 1 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/radeon/radeon_connectors.c b/drivers/gpu/drm/radeon/radeon_connectors.c
index 292b170..4dec82e 100644
--- a/drivers/gpu/drm/radeon/radeon_connectors.c
+++ b/drivers/gpu/drm/radeon/radeon_connectors.c
@@ -566,8 +566,10 @@ static enum drm_connector_status radeon_vga_detect(struct drm_connector *connect
 		radeon_i2c_do_lock(radeon_connector, 0);
 
 		if (!radeon_connector->edid) {
-			DRM_ERROR("DDC responded but not EDID found for %s\n",
+			DRM_ERROR("DDC responded but not EDID found for %s, adding default mode\n",
 				  drm_get_connector_name(connector));
+			if (!drm_add_modes_noedid(&radeon_connector->base, 800, 600))
+				ret = connector_status_connected;
 		} else {
 			radeon_connector->use_digital = !!(radeon_connector->edid->input & DRM_EDID_INPUT_DIGITAL);
 
@@ -720,8 +722,10 @@ static enum drm_connector_status radeon_dvi_detect(struct drm_connector *connect
 		radeon_i2c_do_lock(radeon_connector, 0);
 
 		if (!radeon_connector->edid) {
-			DRM_ERROR("DDC responded but not EDID found for %s\n",
+			DRM_ERROR("DDC responded but not EDID found for %s, adding default mode\n",
 				  drm_get_connector_name(connector));
+			if (!drm_add_modes_noedid(&radeon_connector->base, 800, 600))
+				ret = connector_status_connected;
 		} else {
 			radeon_connector->use_digital = !!(radeon_connector->edid->input & DRM_EDID_INPUT_DIGITAL);
 
-- 
1.6.5.2


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

* Re: [PATCH] drm/radeon/kms: Add default 800x600 mode when getting bad EDID
  2009-11-12  9:09 [PATCH] drm/radeon/kms: Add default 800x600 mode when getting bad EDID Jerome Glisse
@ 2009-11-12 13:11 ` Jerome Glisse
  0 siblings, 0 replies; 2+ messages in thread
From: Jerome Glisse @ 2009-11-12 13:11 UTC (permalink / raw)
  To: airlied; +Cc: linux-kernel, dri-devel

On Thu, 2009-11-12 at 10:09 +0100, Jerome Glisse wrote:
> Adding default 800x600 mode should be a safe fail solution in front
> of broken EDID, user can then add new mode to fit its needs.
> 
> Signed-off-by: Jerome Glisse <jglisse@redhat.com>

Forget this patch a better one is coming.

Cheers,
Jerome Glisse


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

end of thread, other threads:[~2009-11-12 13:14 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-11-12  9:09 [PATCH] drm/radeon/kms: Add default 800x600 mode when getting bad EDID Jerome Glisse
2009-11-12 13:11 ` Jerome Glisse

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.