diff options
author | dzu <dzu> | 2003-09-25 22:30:12 +0000 |
---|---|---|
committer | dzu <dzu> | 2003-09-25 22:30:12 +0000 |
commit | 29127b6a2333053171b0b91ffecf35e1a6d491cc (patch) | |
tree | 6e60a4406d1fa6d7ad2cdf5c7374955cd497c830 /cpu/mpc8xx/lcd.c | |
parent | 1d70468b039b6ead903c9b14fa09005476259a65 (diff) | |
download | u-boot-imx-29127b6a2333053171b0b91ffecf35e1a6d491cc.zip u-boot-imx-29127b6a2333053171b0b91ffecf35e1a6d491cc.tar.gz u-boot-imx-29127b6a2333053171b0b91ffecf35e1a6d491cc.tar.bz2 |
Add support for the Sharp LQ065T9DR51U LCD display
Diffstat (limited to 'cpu/mpc8xx/lcd.c')
-rw-r--r-- | cpu/mpc8xx/lcd.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/cpu/mpc8xx/lcd.c b/cpu/mpc8xx/lcd.c index f2e404c..ca5f249 100644 --- a/cpu/mpc8xx/lcd.c +++ b/cpu/mpc8xx/lcd.c @@ -224,6 +224,18 @@ static vidinfo_t panel_info = { }; #endif /* CONFIG_SHARP_LQ64D341 */ +#ifdef CONFIG_SHARP_LQ065T9DR51U +/* + * Sharp LQ065T9DR51U display, 400x240. Active, color, single scan. + */ +static vidinfo_t panel_info = { + 400, 240, 143, 79, CFG_HIGH, CFG_HIGH, CFG_HIGH, CFG_HIGH, CFG_HIGH, + 3, 0, 0, 1, 1, 248, 4, 0, 35 + /* wbl, vpw, lcdac, wbf */ +}; +#define LCD_INFO_BELOW_LOGO +#endif /* CONFIG_SHARP_LQ065T9DR51U */ + #ifdef CONFIG_SHARP_LQ084V1DG21 /* * Sharp LQ084V1DG21 display, 640x480. Active, color, single scan. |