diff options
author | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2013-05-24 11:18:30 (GMT) |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2013-06-17 11:16:03 (GMT) |
commit | 2773fefbd764646a3dba3349d4848d90d85a127d (patch) | |
tree | e4e5891dce17c0f8a2457c6ca2c4f2e3a1ba6928 /include/video | |
parent | deb16df884966570ebe6197feecab100436414e5 (diff) | |
download | linux-2773fefbd764646a3dba3349d4848d90d85a127d.tar.xz |
OMAPDSS: Add new TFP410 Encoder driver
Add TFP410 DPI-to-DVI Encoder driver which uses the new DSS device
model and DSS ops.
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'include/video')
-rw-r--r-- | include/video/omap-panel-data.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/video/omap-panel-data.h b/include/video/omap-panel-data.h index 0c3b46d..bc899b7 100644 --- a/include/video/omap-panel-data.h +++ b/include/video/omap-panel-data.h @@ -147,4 +147,17 @@ struct panel_tpo_td043_data { int nreset_gpio; }; +/** + * encoder_tfp410 platform data + * @name: name for this display entity + * @power_down_gpio: gpio number for PD pin (or -1 if not available) + * @data_lines: number of DPI datalines + */ +struct encoder_tfp410_platform_data { + const char *name; + const char *source; + int power_down_gpio; + int data_lines; +}; + #endif /* __OMAP_PANEL_DATA_H */ |