panel_device.h 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  1. /*
  2. * Copyright (c) 2020 Actions Technology Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef DRIVER_PANEL_DEVICE_H__
  7. #define DRIVER_PANEL_DEVICE_H__
  8. /*********************
  9. * INCLUDES
  10. *********************/
  11. #include "panel_common.h"
  12. #include <device.h>
  13. #ifdef CONFIG_SYS_WAKELOCK
  14. # include <sys_wakelock.h>
  15. #endif
  16. /*********************
  17. * DEFINES
  18. *********************/
  19. #define SUPPORTED_PANEL_PIXEL_FORMATS (PIXEL_FORMAT_BGR_565 | PIXEL_FORMAT_RGB_888 | \
  20. PIXEL_FORMAT_BGR_888 | PIXEL_FORMAT_ARGB_8888 | PIXEL_FORMAT_XRGB_8888)
  21. /**********************
  22. * TYPEDEFS
  23. **********************/
  24. struct lcd_panel_ops {
  25. /* all ops return 0 on success else negative code by default */
  26. /* init sequence after power on */
  27. int (*init)(const struct device *dev);
  28. /* detect connected or not */
  29. int (*detect)(const struct device *dev);
  30. /* blanking on (display off) */
  31. int (*blanking_on)(const struct device *dev);
  32. /* blanking off (display on) */
  33. int (*blanking_off)(const struct device *dev);
  34. /* enter low-power state */
  35. int (*lowpower_enter)(const struct device *dev);
  36. /* exit low-power state */
  37. int (*lowpower_exit)(const struct device *dev);
  38. /* check ESD, executed in ISR context */
  39. int (*check_esd)(const struct device *dev);
  40. /* set brightness in Normal mode, range [0, 255] */
  41. int (*set_brightness)(const struct device *dev, uint8_t brightness);
  42. /**
  43. * set brightness in Lowpower/AOD/Idle mode, range [0, 255];
  44. * assinged it only if has AOD (always on display) specific brightness
  45. */
  46. int (*set_aod_brightness)(const struct device *dev, uint8_t brightness);
  47. /* prepare writing mem with specific area */
  48. int (*write_prepare)(const struct device *dev, uint16_t x, uint16_t y, uint16_t w, uint16_t h);
  49. };
  50. struct lcd_panel_pincfg {
  51. #ifdef CONFIG_PANEL_POWER_GPIO
  52. struct gpio_cfg power_cfg;
  53. #endif
  54. #ifdef CONFIG_PANEL_POWER1_GPIO
  55. struct gpio_cfg power1_cfg;
  56. #endif
  57. #ifdef CONFIG_PANEL_RESET_GPIO
  58. struct gpio_cfg reset_cfg;
  59. #endif
  60. #ifdef CONFIG_PANEL_TE_GPIO
  61. struct gpio_cfg te_cfg;
  62. #endif
  63. #ifdef CONFIG_PANEL_BACKLIGHT_PWM
  64. struct pwm_cfg backlight_cfg;
  65. #elif defined(CONFIG_PANEL_BACKLIGHT_GPIO)
  66. struct gpio_cfg backlight_cfg;
  67. #endif
  68. };
  69. struct lcd_panel_config {
  70. struct display_videoport videoport;
  71. struct display_videomode videomode;
  72. const struct lcd_panel_ops *ops;
  73. const void *custom_config;
  74. void *custom_data;
  75. #if CONFIG_PANEL_PORT_TYPE == DISPLAY_PORT_QSPI_SYNC
  76. void * fb_mem; /* framebuffer memory address */
  77. uint32_t cmd_hsync; /* command mem write's hsync signal */
  78. #else
  79. uint32_t cmd_ramwc; /* command mem write continue for QSPI */
  80. #endif
  81. uint32_t cmd_ramwr; /* command mem write start (also vsync signal) for QSPI */
  82. uint8_t tw_reset; /* reset pulse width in milliseconds during power on sequence */
  83. uint8_t ts_reset; /* secure reset completion time in milliseconds during power on sequence */
  84. uint8_t td_slpin; /* reset hold width after SLPIN in milliseconds during power off sequence */
  85. };
  86. struct lcd_panel_data {
  87. const struct lcd_panel_config *config;
  88. const struct device *lcdc_dev;
  89. const struct display_callback *callback;
  90. struct display_buffer_descriptor refr_desc;
  91. #if CONFIG_PANEL_PORT_TYPE == DISPLAY_PORT_QSPI_SYNC
  92. const struct device *de_dev;
  93. #endif
  94. #ifdef CONFIG_PANEL_RESET_GPIO
  95. const struct device *reset_gpio;
  96. #endif
  97. #ifdef CONFIG_PANEL_POWER_GPIO
  98. const struct device *power_gpio;
  99. #endif
  100. #ifdef CONFIG_PANEL_POWER1_GPIO
  101. const struct device *power1_gpio;
  102. #endif
  103. #ifdef CONFIG_PANEL_TE_GPIO
  104. const struct device *te_gpio;
  105. struct gpio_callback te_gpio_cb;
  106. #else
  107. struct k_timer te_timer;
  108. #endif
  109. #ifdef CONFIG_PANEL_BACKLIGHT_CTRL
  110. const struct device *backlight_dev;
  111. #endif
  112. #if CONFIG_PANEL_ESD_CHECK_PERIOD > 0
  113. #if CONFIG_PANEL_PORT_TYPE == DISPLAY_PORT_QSPI_SYNC
  114. struct k_work suspend_work;
  115. uint16_t esd_check_cnt;
  116. #else
  117. struct k_delayed_work esd_check_work;
  118. uint8_t esd_check_pended : 1;
  119. uint8_t esd_check_failed : 1;
  120. #endif
  121. #endif /* CONFIG_PANEL_ESD_CHECK_PERIOD > 0 */
  122. struct k_work resume_work;
  123. #ifdef CONFIG_LCD_WORK_QUEUE
  124. struct k_work_q pm_workq;
  125. #endif
  126. uint32_t pm_state;
  127. uint8_t pm_changing : 1; /* power state changing */
  128. uint8_t te_active : 1;
  129. uint8_t __reserved : 6;
  130. uint8_t disp_on : 1;
  131. uint8_t in_sleep : 1;
  132. /* indicate transferring the last part of frame */
  133. uint8_t transfering_last : 1;
  134. /* indicate if the first frame has written to panel after blanking off */
  135. uint8_t first_frame_cplt : 1;
  136. /* for accessing atomic */
  137. uint8_t transfering;
  138. /* the left delay to apply brightness after blanking off */
  139. uint8_t brightness_delay;
  140. uint8_t brightness;
  141. uint8_t pending_brightness;
  142. };
  143. /**********************
  144. * GLOBAL VARIABLES
  145. **********************/
  146. /* Normal panels */
  147. extern const struct lcd_panel_config lcd_panel_er76288a_config;
  148. extern const struct lcd_panel_config lcd_panel_ft2308_config;
  149. extern const struct lcd_panel_config lcd_panel_gc9c01_config;
  150. extern const struct lcd_panel_config lcd_panel_icna3310b_config;
  151. extern const struct lcd_panel_config lcd_panel_icna3311_config;
  152. extern const struct lcd_panel_config lcd_panel_rm690b0_config;
  153. extern const struct lcd_panel_config lcd_panel_rm69090_config;
  154. extern const struct lcd_panel_config lcd_panel_sh8601z0_config;
  155. extern const struct lcd_panel_config lcd_panel_st77916_config;
  156. /* TR panels */
  157. extern const struct lcd_panel_config lcd_panel_lpm015m135a_config;
  158. /* Ram-less panels */
  159. extern const struct lcd_panel_config lcd_panel_st77903_config;
  160. /**********************
  161. * GLOBAL PROTOTYPES
  162. **********************/
  163. static inline const struct lcd_panel_config *lcd_panel_get_config(const struct device *dev)
  164. {
  165. struct lcd_panel_data *data = dev->data;
  166. return data->config;
  167. }
  168. static inline const struct lcd_panel_pincfg *lcd_panel_get_pincfg(const struct device *dev)
  169. {
  170. return dev->config;
  171. }
  172. static inline void lcd_panel_wake_lock(void)
  173. {
  174. #ifdef CONFIG_SYS_WAKELOCK
  175. sys_wake_lock_ext(FULL_WAKE_LOCK, DISPLAY_WAKE_LOCK_USER);
  176. #endif
  177. }
  178. static inline void lcd_panel_wake_unlock(void)
  179. {
  180. #ifdef CONFIG_SYS_WAKELOCK
  181. sys_wake_unlock_ext(FULL_WAKE_LOCK, DISPLAY_WAKE_LOCK_USER);
  182. #endif
  183. }
  184. #endif /* DRIVER_PANEL_DEVICE_H__ */