2011-05-11 15:10:07 +04:00
|
|
|
#ifndef __OMAP_NOKIA_DSI_PANEL_H
|
|
|
|
#define __OMAP_NOKIA_DSI_PANEL_H
|
2010-04-22 16:27:36 +04:00
|
|
|
|
2011-05-11 15:05:07 +04:00
|
|
|
struct omap_dss_device;
|
2010-04-22 16:27:36 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* struct nokia_dsi_panel_data - Nokia DSI panel driver configuration
|
|
|
|
* @name: panel name
|
|
|
|
* @use_ext_te: use external TE
|
|
|
|
* @ext_te_gpio: external TE GPIO
|
2011-03-24 14:58:01 +03:00
|
|
|
* @esd_interval: interval of ESD checks, 0 = disabled (ms)
|
2011-03-24 15:53:27 +03:00
|
|
|
* @ulps_timeout: time to wait before entering ULPS, 0 = disabled (ms)
|
2011-08-09 12:39:27 +04:00
|
|
|
* @use_dsi_backlight: true if panel uses DSI command to control backlight
|
2010-04-22 16:27:36 +04:00
|
|
|
*/
|
|
|
|
struct nokia_dsi_panel_data {
|
|
|
|
const char *name;
|
|
|
|
|
|
|
|
int reset_gpio;
|
|
|
|
|
|
|
|
bool use_ext_te;
|
|
|
|
int ext_te_gpio;
|
|
|
|
|
2011-03-24 14:58:01 +03:00
|
|
|
unsigned esd_interval;
|
2011-03-24 15:53:27 +03:00
|
|
|
unsigned ulps_timeout;
|
2010-04-22 16:27:36 +04:00
|
|
|
|
2011-08-09 12:39:27 +04:00
|
|
|
bool use_dsi_backlight;
|
2010-04-22 16:27:36 +04:00
|
|
|
};
|
|
|
|
|
2011-05-11 15:10:07 +04:00
|
|
|
#endif /* __OMAP_NOKIA_DSI_PANEL_H */
|