diff options
author | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2013-05-21 10:14:29 -0400 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2013-06-17 07:32:37 -0400 |
commit | f92f168f8dc33c8db100fdd0c4ccfb26adedce61 (patch) | |
tree | a19b4175693b5ae6e758880532389a7b10df5a37 /include/video/omap-panel-data.h | |
parent | 84192742d9c26d75f26751f9e692cc68230d43a5 (diff) |
OMAPDSS: Add LG.Philips LB035Q02 panel driver
Add LG.Philips LB035Q02 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/omap-panel-data.h')
-rw-r--r-- | include/video/omap-panel-data.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/include/video/omap-panel-data.h b/include/video/omap-panel-data.h index 678f5f70da1a..baf40450aae4 100644 --- a/include/video/omap-panel-data.h +++ b/include/video/omap-panel-data.h | |||
@@ -280,4 +280,22 @@ struct panel_acx565akm_platform_data { | |||
280 | int datapairs; | 280 | int datapairs; |
281 | }; | 281 | }; |
282 | 282 | ||
283 | /** | ||
284 | * panel_lb035q02 platform data | ||
285 | * @name: name for this display entity | ||
286 | * @source: name of the display entity used as a video source | ||
287 | * @data_lines: number of DPI datalines | ||
288 | * @backlight_gpio: gpio to enable/disable the backlight (or -1) | ||
289 | * @enable_gpio: gpio to enable/disable the panel (or -1) | ||
290 | */ | ||
291 | struct panel_lb035q02_platform_data { | ||
292 | const char *name; | ||
293 | const char *source; | ||
294 | |||
295 | int data_lines; | ||
296 | |||
297 | int backlight_gpio; | ||
298 | int enable_gpio; | ||
299 | }; | ||
300 | |||
283 | #endif /* __OMAP_PANEL_DATA_H */ | 301 | #endif /* __OMAP_PANEL_DATA_H */ |