omap-panel-nokia-dsi.h 684 B

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