1#ifndef __OMAP_NOKIA_DSI_PANEL_H 2#define __OMAP_NOKIA_DSI_PANEL_H 3 4struct omap_dss_device; 5 6/** 7 * struct nokia_dsi_panel_data - Nokia DSI panel driver configuration 8 * @name: panel name 9 * @use_ext_te: use external TE 10 * @ext_te_gpio: external TE GPIO 11 * @esd_interval: interval of ESD checks, 0 = disabled (ms) 12 * @ulps_timeout: time to wait before entering ULPS, 0 = disabled (ms) 13 * @use_dsi_backlight: true if panel uses DSI command to control backlight 14 * @pin_config: DSI pin configuration 15 */ 16struct nokia_dsi_panel_data { 17 const char *name; 18 19 int reset_gpio; 20 21 bool use_ext_te; 22 int ext_te_gpio; 23 24 unsigned esd_interval; 25 unsigned ulps_timeout; 26 27 bool use_dsi_backlight; 28 29 struct omap_dsi_pin_config pin_config; 30}; 31 32#endif /* __OMAP_NOKIA_DSI_PANEL_H */ 33

