diff options
author | Nitin Garg <nitin.garg@freescale.com> | 2014-05-28 19:55:43 -0500 |
---|---|---|
committer | Nitin Garg <nitin.garg@freescale.com> | 2014-06-13 10:17:02 -0500 |
commit | 45d532a0237f5baf2ec95b4364ec5bc94d312689 (patch) | |
tree | 78aca68b08b41e2e183450cd7afb29958c4661c1 /board | |
parent | 0b02843b18d3a2c5c8012c4248a5574a8f6998c7 (diff) | |
download | u-boot-imx-45d532a0237f5baf2ec95b4364ec5bc94d312689.zip u-boot-imx-45d532a0237f5baf2ec95b4364ec5bc94d312689.tar.gz u-boot-imx-45d532a0237f5baf2ec95b4364ec5bc94d312689.tar.bz2 |
ENGR00315499-21 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>
Signed-off-by: Nitin Garg <nitin.garg@freescale.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/freescale/mx6sabresd/mx6sabresd.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/board/freescale/mx6sabresd/mx6sabresd.c b/board/freescale/mx6sabresd/mx6sabresd.c index b368492..82e4084 100644 --- a/board/freescale/mx6sabresd/mx6sabresd.c +++ b/board/freescale/mx6sabresd/mx6sabresd.c @@ -612,16 +612,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 } } }; |