Subject: ARM: OMAP3: Add 1280 x 1024 @ 53 Hz Reduced blanking configuraton From: Dirk Behme Add 1280 x 1024 @ 53 Hz Reduced blanking configuraton display configuration. Note: This needs PLL changes to get higher pixel clock needed for this. Signed-off-by: Dirk Behme --- drivers/video/omap/Kconfig | 3 +++ drivers/video/omap/lcd_omap3beagle.c | 13 +++++++++++++ 2 files changed, 16 insertions(+) Index: linux-beagle/drivers/video/omap/Kconfig =================================================================== --- linux-beagle.orig/drivers/video/omap/Kconfig +++ linux-beagle/drivers/video/omap/Kconfig @@ -26,6 +26,9 @@ config FB_OMAP_079M3R config FB_OMAP_092M9R boolean "1280 x 720 @ 60 Hz Reduced blanking" +config FB_OMAP_XXX + boolean "1280 x 1024 @ 53 Hz Reduced blanking" + endchoice config FB_OMAP_LCDC_EXTERNAL Index: linux-beagle/drivers/video/omap/lcd_omap3beagle.c =================================================================== --- linux-beagle.orig/drivers/video/omap/lcd_omap3beagle.c +++ linux-beagle/drivers/video/omap/lcd_omap3beagle.c @@ -116,6 +116,19 @@ struct lcd_panel omap3beagle_panel = { .vbp = 13, .pixel_clock = 64000, +#elif defined CONFIG_FB_OMAP_XXX + + /* 1280 x 1024 @ 53 Hz Reduced blanking VESA CVT XXX */ + .x_res = 1280, + .y_res = 1024, + .hfp = 48, + .hsw = 32, + .hbp = 80, + .vfp = 3, + .vsw = 7, + .vbp = 16, + .pixel_clock = 80000, + #else /* use 640 x 480 if no config option */