diff options
author | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2013-05-31 12:14:01 +0300 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2013-06-17 14:32:51 +0300 |
commit | 922ae890a993e8f5ca1ef776b4c8856d0aa7de25 (patch) | |
tree | 73cacdde707e3fe56bbb84c58336cdedaecfb4df /include/video | |
parent | f92f168f8dc33c8db100fdd0c4ccfb26adedce61 (diff) | |
download | linux-922ae890a993e8f5ca1ef776b4c8856d0aa7de25.tar.bz2 |
OMAPDSS: Add Sharp LS037V7DW01 panel driver
Add Sharp LS037V7DW01 panel 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 | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/include/video/omap-panel-data.h b/include/video/omap-panel-data.h index baf40450aae4..5a6e1e8645d7 100644 --- a/include/video/omap-panel-data.h +++ b/include/video/omap-panel-data.h @@ -298,4 +298,28 @@ struct panel_lb035q02_platform_data { int enable_gpio; }; +/** + * panel_sharp_ls037v7dw01 platform data + * @name: name for this display entity + * @source: name of the display entity used as a video source + * @data_lines: number of DPI datalines + * @resb_gpio: reset signal GPIO + * @ini_gpio: power on control GPIO + * @mo_gpio: selection for resolution(VGA/QVGA) GPIO + * @lr_gpio: selection for horizontal scanning direction GPIO + * @ud_gpio: selection for vertical scanning direction GPIO + */ +struct panel_sharp_ls037v7dw01_platform_data { + const char *name; + const char *source; + + int data_lines; + + int resb_gpio; + int ini_gpio; + int mo_gpio; + int lr_gpio; + int ud_gpio; +}; + #endif /* __OMAP_PANEL_DATA_H */ |