diff options
author | Thomas Weber <weber@corscience.de> | 2011-09-01 15:05:07 +0200 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2011-09-30 16:16:24 +0300 |
commit | 1e497c4f0afd48ac3c793fdaa698438045888931 (patch) | |
tree | aa48b5ede2f2804629227f03fd7a53c9ddd13915 | |
parent | cd295aebf1c6fe8a051fc7adf5f0db63f4bee9b9 (diff) | |
download | talos-obmc-linux-1e497c4f0afd48ac3c793fdaa698438045888931.tar.gz talos-obmc-linux-1e497c4f0afd48ac3c793fdaa698438045888931.zip |
OMAP: DSS2: Support for Innolux AT070TN83
Add support for Innolux AT070TN83, a 7 inch LCD
with RGB-Interface and touch panel to panel-generic-dpi.
Tested with Devkit8000.
Signed-off-by: Thomas Weber <weber@corscience.de>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
-rw-r--r-- | drivers/video/omap2/displays/panel-generic-dpi.c | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/drivers/video/omap2/displays/panel-generic-dpi.c b/drivers/video/omap2/displays/panel-generic-dpi.c index 9c90f75653fb..b40130400553 100644 --- a/drivers/video/omap2/displays/panel-generic-dpi.c +++ b/drivers/video/omap2/displays/panel-generic-dpi.c @@ -232,6 +232,31 @@ static struct panel_config generic_dpi_panels[] = { .power_off_delay = 0, .name = "powertip_ph480272t", }, + + /* Innolux AT070TN83 */ + { + { + .x_res = 800, + .y_res = 480, + + .pixel_clock = 40000, + + .hsw = 48, + .hfp = 1, + .hbp = 1, + + .vsw = 3, + .vfp = 12, + .vbp = 25, + }, + .acbi = 0x0, + .acb = 0x28, + .config = OMAP_DSS_LCD_TFT | OMAP_DSS_LCD_IVS | + OMAP_DSS_LCD_IHS, + .power_on_delay = 0, + .power_off_delay = 0, + .name = "innolux_at070tn83", + }, }; struct panel_drv_data { |