diff options
author | Sandor Yu <R01008@freescale.com> | 2013-11-25 13:18:31 +0800 |
---|---|---|
committer | Sandor Yu <R01008@freescale.com> | 2013-12-02 20:18:46 +0800 |
commit | 9045ce4122e55c7c0df979042cf98b3612ae8cfd (patch) | |
tree | be5d59e856b0dfca413f90758cad2c92b2545224 /board | |
parent | 588849e191577d87596e28c21e0c80f911eb4990 (diff) | |
download | u-boot-imx-9045ce4122e55c7c0df979042cf98b3612ae8cfd.zip u-boot-imx-9045ce4122e55c7c0df979042cf98b3612ae8cfd.tar.gz u-boot-imx-9045ce4122e55c7c0df979042cf98b3612ae8cfd.tar.bz2 |
ENGR00290397 HDMI: splash screen function enhancement
-Change HDMI video mode to VGA.
-Add pixel clock fraction part setting in IPU driver,
fix video mode timing issue.
-Add overflow state clear workaround,
fix kernel hang in HDMI driver issue.
-Correct IPU clock to 264MHz.
Signed-off-by: Sandor Yu <R01008@freescale.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/freescale/mx6qsabresd/mx6qsabresd.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/board/freescale/mx6qsabresd/mx6qsabresd.c b/board/freescale/mx6qsabresd/mx6qsabresd.c index cc36fb1..22dc1bc 100644 --- a/board/freescale/mx6qsabresd/mx6qsabresd.c +++ b/board/freescale/mx6qsabresd/mx6qsabresd.c @@ -876,16 +876,16 @@ static struct display_info_t const displays[] = {{ .mode = { .name = "HDMI", .refresh = 60, - .xres = 1024, - .yres = 768, - .pixclock = 15385, - .left_margin = 220, - .right_margin = 40, - .upper_margin = 21, - .lower_margin = 7, - .hsync_len = 60, - .vsync_len = 10, - .sync = FB_SYNC_EXT, + .xres = 640, + .yres = 480, + .pixclock = 39721, + .left_margin = 48, + .right_margin = 16, + .upper_margin = 33, + .lower_margin = 10, + .hsync_len = 96, + .vsync_len = 2, + .sync = 0, .vmode = FB_VMODE_NONINTERLACED } } }; |