summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastien Jan <s-jan@ti.com>2012-07-19 17:10:09 +0800
committerAndy Green <andy.green@linaro.org>2012-07-19 17:10:09 +0800
commit5bab9831a9d00db116a7db5634bb3386ae17f152 (patch)
tree60eb3e9affdb86819e7b42680c233ba72193df70
parent3e5844d3abd4703d2019b83d72986362dc2713d3 (diff)
hdmi: set default resolution to 1024x768linux-release-2012-07android-release-2012-07
The PLL sometimes fails to lock on low resolutions (like 640x480). Using 1024x768 avoids this problem and permits to continue the init path until EDID reading and optimized resolution choice. Signed-off-by: Sebastien Jan <s-jan@ti.com>
-rw-r--r--drivers/video/omap2/dss/hdmi_panel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/omap2/dss/hdmi_panel.c b/drivers/video/omap2/dss/hdmi_panel.c
index b41f3c3eb9f..d13c5e1cccb 100644
--- a/drivers/video/omap2/dss/hdmi_panel.c
+++ b/drivers/video/omap2/dss/hdmi_panel.c
@@ -119,7 +119,7 @@ static int hdmi_panel_probe(struct omap_dss_device *dssdev)
if (device_create_file(&dssdev->dev, &dev_attr_range))
DSSERR("failed to create sysfs file\n");
- dssdev->panel.timings = (struct omap_video_timings){640, 480, 25175, 96, 16, 48, 2 , 11, 31};
+ dssdev->panel.timings = (struct omap_video_timings){1024, 768, 65000, 136, 24, 160, 6, 3, 29};
/* sysfs entry to provide user space control to set deepcolor mode */
if (device_create_file(&dssdev->dev, &dev_attr_deepcolor))