aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorGuennadi Liakhovetski <g.liakhovetski@gmx.de>2010-09-03 07:20:42 +0000
committerPaul Mundt <lethal@linux-sh.org>2010-09-14 17:23:45 +0900
commita91a2d06c9797c0a533a71dbeea37b2d5a60c7f5 (patch)
tree249a90afa3c6c17bea06bd94a164ebade4a3459b /arch
parentafe417c0355154c8b2547619771d6053b3c0aad7 (diff)
downloadkernel_samsung_smdk4412-a91a2d06c9797c0a533a71dbeea37b2d5a60c7f5.zip
kernel_samsung_smdk4412-a91a2d06c9797c0a533a71dbeea37b2d5a60c7f5.tar.gz
kernel_samsung_smdk4412-a91a2d06c9797c0a533a71dbeea37b2d5a60c7f5.tar.bz2
ARM: mach-shmobile: add two more video modes for HDMI
Add video modes for 480p and SXGA (1280x1024). Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de> Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/mach-shmobile/board-ap4evb.c41
1 files changed, 35 insertions, 6 deletions
diff --git a/arch/arm/mach-shmobile/board-ap4evb.c b/arch/arm/mach-shmobile/board-ap4evb.c
index 4e883e0..0053379 100644
--- a/arch/arm/mach-shmobile/board-ap4evb.c
+++ b/arch/arm/mach-shmobile/board-ap4evb.c
@@ -599,18 +599,18 @@ static struct platform_device fsi_device = {
},
};
+/*
+ * If left and right margins are not multiples of 8,
+ * LDHAJR will be adjusted accordingly by the LCDC
+ * driver. Until we start using EDID, these values
+ * might have to be adjusted for different monitors.
+ */
const static struct fb_videomode ap4evb_hdmi_modes[] = {
{
.name = "HDMI 720p",
.xres = 1280,
.yres = 720,
- /*
- * If left and right margins are not multiples of 8,
- * LDHAJR will be adjusted accordingly by the LCDC
- * driver. Until we start using EDID, these values
- * might have to be adjusted for different monitors.
- */
.left_margin = 200,
.right_margin = 88,
.hsync_len = 48,
@@ -621,6 +621,35 @@ const static struct fb_videomode ap4evb_hdmi_modes[] = {
.pixclock = 13468,
.sync = FB_SYNC_VERT_HIGH_ACT | FB_SYNC_HOR_HIGH_ACT,
+ }, {
+ .name = "1280x1024",
+ .xres = 1280,
+ .yres = 1024,
+
+ .left_margin = 144,
+ .right_margin = 48,
+ .hsync_len = 64,
+
+ .upper_margin = 35,
+ .lower_margin = 5,
+ .vsync_len = 3,
+
+ .pixclock = 9800,
+ .sync = FB_SYNC_VERT_HIGH_ACT | FB_SYNC_HOR_HIGH_ACT,
+ }, {
+ .name = "HDMI 480p",
+ .xres = 720,
+ .yres = 480,
+
+ .left_margin = 36,
+ .right_margin = 18,
+ .hsync_len = 68,
+
+ .upper_margin = 36,
+ .lower_margin = 3,
+ .vsync_len = 6,
+ .pixclock = 37037,
+ .sync = FB_SYNC_VERT_HIGH_ACT | FB_SYNC_HOR_HIGH_ACT,
},
};