diff options
author | Ye.Li <B37916@freescale.com> | 2015-03-27 17:17:57 +0800 |
---|---|---|
committer | Peng Fan <Peng.Fan@freescale.com> | 2015-04-29 15:05:29 +0800 |
commit | e0dd27a37193c71e11fb09cc542d388a1f28f3f7 (patch) | |
tree | 57c9f42557d9ebe6080e0c1ad3ae46fb19759d86 /board | |
parent | 3e0d4789c80b1809f5fbd425cda8fac621c2dcb1 (diff) | |
download | u-boot-imx-e0dd27a37193c71e11fb09cc542d388a1f28f3f7.zip u-boot-imx-e0dd27a37193c71e11fb09cc542d388a1f28f3f7.tar.gz u-boot-imx-e0dd27a37193c71e11fb09cc542d388a1f28f3f7.tar.bz2 |
MLK-10492-2 imx: mx7dsabresd: Add TFT43AB LCD support
The mx7dsabresd uses new LCD TFT43AB which has 480 x 272 pixels.
Update panel info for this LCD.
Signed-off-by: Ye.Li <B37916@freescale.com>
(cherry picked from commit e77d667b20956a37de9d367a8914ef2fe79258df)
Diffstat (limited to 'board')
-rw-r--r-- | board/freescale/mx7dsabresd/mx7dsabresd.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/board/freescale/mx7dsabresd/mx7dsabresd.c b/board/freescale/mx7dsabresd/mx7dsabresd.c index f8eebb0..4db309f 100644 --- a/board/freescale/mx7dsabresd/mx7dsabresd.c +++ b/board/freescale/mx7dsabresd/mx7dsabresd.c @@ -385,15 +385,15 @@ static struct lcd_panel_info_t const displays[] = {{ .depth = 24, .enable = do_enable_parallel_lcd, .mode = { - .name = "MCIMX28LCD", - .xres = 800, - .yres = 480, - .pixclock = 29850, - .left_margin = 89, - .right_margin = 164, - .upper_margin = 23, - .lower_margin = 10, - .hsync_len = 10, + .name = "TFT43AB", + .xres = 480, + .yres = 272, + .pixclock = 108695, + .left_margin = 8, + .right_margin = 4, + .upper_margin = 2, + .lower_margin = 4, + .hsync_len = 41, .vsync_len = 10, .sync = 0, .vmode = FB_VMODE_NONINTERLACED |