diff options
author | Daniel Mack <zonque@gmail.com> | 2011-12-20 04:54:32 -0500 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2012-01-05 03:34:48 -0500 |
commit | 62941ecd53a229bcd776b75fd37976a40e587f65 (patch) | |
tree | 7a9bb657cf9cfe1b7c9bca48d50247c31d51d17e /drivers/video | |
parent | edefcdad6a57657a236638c937ccd5a3af272d02 (diff) |
OMAP: DSS2: Support for UMSH-8173MD TFT panel
This patch adds support for Microtip Technologies' UMSH-8173MD 800x480
RGB TFT panel. Tested with an OMAP3 board.
Signed-off-by: Daniel Mack <zonque@gmail.com>
Cc: Tomi Valkeinen <tomi.valkeinen@ti.com>
Cc: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
[tomi.valkeinen@ti.com: changed the panel name string]
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'drivers/video')
-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 593f83120220..5dbe7121c679 100644 --- a/drivers/video/omap2/displays/panel-generic-dpi.c +++ b/drivers/video/omap2/displays/panel-generic-dpi.c | |||
@@ -317,6 +317,31 @@ static struct panel_config generic_dpi_panels[] = { | |||
317 | OMAP_DSS_LCD_IHS, | 317 | OMAP_DSS_LCD_IHS, |
318 | .name = "focaltech_etm070003dh6", | 318 | .name = "focaltech_etm070003dh6", |
319 | }, | 319 | }, |
320 | |||
321 | /* Microtips Technologies - UMSH-8173MD */ | ||
322 | { | ||
323 | { | ||
324 | .x_res = 800, | ||
325 | .y_res = 480, | ||
326 | |||
327 | .pixel_clock = 34560, | ||
328 | |||
329 | .hsw = 13, | ||
330 | .hfp = 101, | ||
331 | .hbp = 101, | ||
332 | |||
333 | .vsw = 23, | ||
334 | .vfp = 1, | ||
335 | .vbp = 1, | ||
336 | }, | ||
337 | .acbi = 0x0, | ||
338 | .acb = 0x0, | ||
339 | .config = OMAP_DSS_LCD_TFT | OMAP_DSS_LCD_IVS | | ||
340 | OMAP_DSS_LCD_IHS | OMAP_DSS_LCD_IPC, | ||
341 | .power_on_delay = 0, | ||
342 | .power_off_delay = 0, | ||
343 | .name = "microtips_umsh_8173md", | ||
344 | }, | ||
320 | }; | 345 | }; |
321 | 346 | ||
322 | struct panel_drv_data { | 347 | struct panel_drv_data { |