Message ID | 1314882308-25915-1-git-send-email-weber@corscience.de (mailing list archive) |
---|---|
State | New, archived |
Delegated to: | Tomi Valkeinen |
Headers | show |
On Thu, 2011-09-01 at 15:05 +0200, Thomas Weber wrote: > 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> > --- > drivers/video/omap2/displays/panel-generic-dpi.c | 25 ++++++++++++++++++++++ > 1 files changed, 25 insertions(+), 0 deletions(-) Thanks, these look fine to me. The subject suggests there are 3 patches, but I presume that's wrong? Tomi -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Am 02.09.2011 09:58, schrieb Tomi Valkeinen: > On Thu, 2011-09-01 at 15:05 +0200, Thomas Weber wrote: >> 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> >> --- >> drivers/video/omap2/displays/panel-generic-dpi.c | 25 ++++++++++++++++++++++ >> 1 files changed, 25 insertions(+), 0 deletions(-) > Thanks, these look fine to me. > > The subject suggests there are 3 patches, but I presume that's wrong? > > Tomi > > > You are right, I had an additional patch during format-patch. Thomas -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/drivers/video/omap2/displays/panel-generic-dpi.c b/drivers/video/omap2/displays/panel-generic-dpi.c index 9c90f75..b401304 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 {
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> --- drivers/video/omap2/displays/panel-generic-dpi.c | 25 ++++++++++++++++++++++ 1 files changed, 25 insertions(+), 0 deletions(-)