diff options
author | Guennadi Liakhovetski <g.liakhovetski@gmx.de> | 2010-11-04 11:06:01 +0000 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2010-11-10 16:53:17 +0900 |
commit | 5ae0cf82df212253857326a6706018eccb658683 (patch) | |
tree | 8c6cce7b733fc608a0434b6ea6d054ede16abc82 /drivers/video | |
parent | 91d63f8a306722dbf1b400d4afb11f69512977ad (diff) | |
download | linux-3.10-5ae0cf82df212253857326a6706018eccb658683.tar.gz linux-3.10-5ae0cf82df212253857326a6706018eccb658683.tar.bz2 linux-3.10-5ae0cf82df212253857326a6706018eccb658683.zip |
fbdev: sh_mobile_lcdc: use the standard CEA-861 720p timing
sh_mobile_lcdcfb.c has a hard-coded 720p video mode, used as default, if none
is explicitly specified by the platform. Adjust its timing to match the CEA
standard. Also add an explicit refresh rate value, which is needed, when used
with HDMI, to be able to recognise the default 720p mode as a pre-programmed
VIC #4.
Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'drivers/video')
-rw-r--r-- | drivers/video/sh_mobile_lcdcfb.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/video/sh_mobile_lcdcfb.c b/drivers/video/sh_mobile_lcdcfb.c index 50963739a40..a87dace49cb 100644 --- a/drivers/video/sh_mobile_lcdcfb.c +++ b/drivers/video/sh_mobile_lcdcfb.c @@ -115,15 +115,16 @@ static const struct fb_videomode default_720p = { .xres = 1280, .yres = 720, - .left_margin = 200, - .right_margin = 88, - .hsync_len = 48, + .left_margin = 220, + .right_margin = 110, + .hsync_len = 40, .upper_margin = 20, .lower_margin = 5, .vsync_len = 5, .pixclock = 13468, + .refresh = 60, .sync = FB_SYNC_VERT_HIGH_ACT | FB_SYNC_HOR_HIGH_ACT, }; |