panel_common.h 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558
  1. /*
  2. * Copyright (c) 2020 Actions Technology Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef DRIVER_PANEL_COMMON_H__
  7. #define DRIVER_PANEL_COMMON_H__
  8. /*********************
  9. * INCLUDES
  10. *********************/
  11. #include <soc.h>
  12. #include <board.h>
  13. #include <drivers/display/display_controller.h>
  14. #include <drivers/display/display_engine.h>
  15. #include <drivers/gpio.h>
  16. #include <drivers/pwm.h>
  17. #include <assert.h>
  18. #ifndef CONFIG_MERGE_WORK_Q
  19. /* lcd used ldc work queue default */
  20. # define CONFIG_LCD_WORK_QUEUE (1)
  21. # define CONFIG_LCD_WORK_Q_STACK_SIZE (1024)
  22. #endif
  23. #if defined(CONFIG_PANEL_BACKLIGHT_PWM) || defined(CONFIG_PANEL_BACKLIGHT_GPIO)
  24. # define CONFIG_PANEL_BACKLIGHT_CTRL 1
  25. #endif
  26. /* Horizontal fixed (hardware) offset from the active area by write() */
  27. #ifndef CONFIG_PANEL_FIX_OFFSET_X
  28. # define CONFIG_PANEL_FIX_OFFSET_X (0)
  29. #endif
  30. /* Vertical fixed (hardware) offset from the active area by write() */
  31. #ifndef CONFIG_PANEL_FIX_OFFSET_Y
  32. # define CONFIG_PANEL_FIX_OFFSET_Y (0)
  33. #endif
  34. /* Horizontal-Resolution reported by get_capabilities() */
  35. #ifndef CONFIG_PANEL_HOR_RES
  36. # define CONFIG_PANEL_HOR_RES CONFIG_PANEL_TIMING_HACTIVE
  37. #elif CONFIG_PANEL_HOR_RES > CONFIG_PANEL_TIMING_HACTIVE
  38. # error "CONFIG_PANEL_HOR_RES must not exceed CONFIG_PANEL_TIMING_HACTIVE"
  39. #endif
  40. /* Vertical-Resolution reported by get_capabilities() */
  41. #ifndef CONFIG_PANEL_VER_RES
  42. # define CONFIG_PANEL_VER_RES CONFIG_PANEL_TIMING_VACTIVE
  43. #elif CONFIG_PANEL_VER_RES > CONFIG_PANEL_TIMING_VACTIVE
  44. # error "CONFIG_PANEL_VER_RES must not exceed CONFIG_PANEL_TIMING_VACTIVE"
  45. #endif
  46. /* Horizontal logical offset from the active area by write() */
  47. #ifndef CONFIG_PANEL_OFFSET_X
  48. # define CONFIG_PANEL_OFFSET_X (0)
  49. #elif CONFIG_PANEL_OFFSET_X + CONFIG_PANEL_HOR_RES > CONFIG_PANEL_TIMING_HACTIVE
  50. # error "CONFIG_PANEL_OFFSET_X + CONFIG_PANEL_HOR_RES must not exceed CONFIG_PANEL_TIMING_HACTIVE"
  51. #endif
  52. /* Vertical logical offset from the active area by write() */
  53. #ifndef CONFIG_PANEL_OFFSET_Y
  54. # define CONFIG_PANEL_OFFSET_Y (0)
  55. #elif CONFIG_PANEL_OFFSET_Y + CONFIG_PANEL_VER_RES > CONFIG_PANEL_TIMING_VACTIVE
  56. # error "CONFIG_PANEL_OFFSET_Y + CONFIG_PANEL_VER_RES must not exceed CONFIG_PANEL_TIMING_VACTIVE"
  57. #endif
  58. /* Horizontal total offset from the active area by write() */
  59. #define CONFIG_PANEL_MEM_OFFSET_X (CONFIG_PANEL_FIX_OFFSET_X + CONFIG_PANEL_OFFSET_X)
  60. /* Vertical total offset from the active area by write() */
  61. #define CONFIG_PANEL_MEM_OFFSET_Y (CONFIG_PANEL_FIX_OFFSET_Y + CONFIG_PANEL_OFFSET_Y)
  62. /* Screen shape: round or square ? */
  63. #ifndef CONFIG_PANEL_ROUND_SHAPE
  64. # define CONFIG_PANEL_ROUND_SHAPE (0)
  65. #endif
  66. /* Orientatioin: rotation angle [0|90|180|270] */
  67. #ifndef CONFIG_PANEL_ROTATION
  68. # define CONFIG_PANEL_ROTATION (0)
  69. #elif CONFIG_PANEL_ROTATION != 0 && CONFIG_PANEL_ROTATION != 90 && \
  70. CONFIG_PANEL_ROTATION != 180 && CONFIG_PANEL_ROTATION != 270
  71. # error CONFIG_PANEL_ROTATION must be one of [0|90|180|270]
  72. #endif
  73. /* Brightness in normal mode, range [0, 255] */
  74. #ifndef CONFIG_PANEL_BRIGHTNESS
  75. # define CONFIG_PANEL_BRIGHTNESS (255)
  76. #endif
  77. /* Brightness in AOD mode, range [0, 255] */
  78. #ifndef CONFIG_PANEL_AOD_BRIGHTNESS
  79. # define CONFIG_PANEL_AOD_BRIGHTNESS CONFIG_PANEL_BRIGHTNESS
  80. #endif
  81. /* Delay some TE/vsync periods to apply the brightness after blanking off, range [0, 255] */
  82. #ifndef CONFIG_PANEL_BRIGHTNESS_DELAY_PERIODS
  83. # define CONFIG_PANEL_BRIGHTNESS_DELAY_PERIODS (0)
  84. #endif
  85. /* ESD check perion in milliseconds */
  86. #ifndef CONFIG_PANEL_ESD_CHECK_PERIOD
  87. # define CONFIG_PANEL_ESD_CHECK_PERIOD (0)
  88. #endif
  89. /********************************************
  90. * Configuration of display videoport
  91. ********************************************/
  92. /* define variable of struct display_videoport */
  93. #ifndef CONFIG_PANEL_PORT_CS
  94. # define CONFIG_PANEL_PORT_CS (0)
  95. #endif
  96. #ifndef CONFIG_PANEL_PORT_LSB_FIRST
  97. # define CONFIG_PANEL_PORT_LSB_FIRST (0)
  98. #endif
  99. #ifndef CONFIG_PANEL_PORT_SPI_CPOL
  100. # define CONFIG_PANEL_PORT_SPI_CPOL (1)
  101. #endif
  102. #ifndef CONFIG_PANEL_PORT_SPI_CPHA
  103. # define CONFIG_PANEL_PORT_SPI_CPHA (1)
  104. #endif
  105. #ifndef CONFIG_PANEL_PORT_SPI_DCP_MODE
  106. # define CONFIG_PANEL_PORT_SPI_DCP_MODE (0)
  107. #endif
  108. #ifndef CONFIG_PANEL_PORT_SPI_DUAL_LANE
  109. # define CONFIG_PANEL_PORT_SPI_DUAL_LANE (1)
  110. #endif
  111. /* read data lane select for QSPI (if exist) */
  112. #ifndef CONFIG_PANEL_PORT_SPI_RD_DATA_LANE
  113. # define CONFIG_PANEL_PORT_SPI_RD_DATA_LANE (0)
  114. #endif
  115. /* dummy cycles between read command and the following data (if exist) */
  116. #ifndef CONFIG_PANEL_PORT_SPI_RD_DUMMY_CYCLES
  117. # define CONFIG_PANEL_PORT_SPI_RD_DUMMY_CYCLES (0)
  118. #endif
  119. #ifndef CONFIG_PANEL_PORT_SPI_RD_DELAY_NS
  120. # define CONFIG_PANEL_PORT_SPI_RD_DELAY_NS (0)
  121. #endif
  122. #ifndef CONFIG_PANEL_PORT_SPI_CSX_DELAY_NS
  123. # define CONFIG_PANEL_PORT_SPI_CSX_DELAY_NS (0)
  124. #endif
  125. #ifndef CONFIG_PANEL_PORT_SPI_SCL_DELAY_NS
  126. # define CONFIG_PANEL_PORT_SPI_SCL_DELAY_NS (0)
  127. #endif
  128. #ifndef CONFIG_PANEL_PORT_SPI_WR_D0_DELAY_NS
  129. # define CONFIG_PANEL_PORT_SPI_WR_D0_DELAY_NS (0)
  130. #endif
  131. #ifndef CONFIG_PANEL_PORT_SPI_WR_D1_DELAY_NS
  132. # define CONFIG_PANEL_PORT_SPI_WR_D1_DELAY_NS (0)
  133. #endif
  134. #ifndef CONFIG_PANEL_PORT_SPI_WR_D2_DELAY_NS
  135. # define CONFIG_PANEL_PORT_SPI_WR_D2_DELAY_NS (0)
  136. #endif
  137. #ifndef CONFIG_PANEL_PORT_SPI_WR_D3_DELAY_NS
  138. # define CONFIG_PANEL_PORT_SPI_WR_D3_DELAY_NS (0)
  139. #endif
  140. /* Possible values: 1, 2, 4, 8 */
  141. #ifndef CONFIG_PANEL_PORT_SPI_AHB_CLK_DIVISION
  142. # define CONFIG_PANEL_PORT_SPI_AHB_CLK_DIVISION (1)
  143. #endif
  144. #ifndef CONFIG_PANEL_PORT_MCU_CLK_HIGH_DURATION
  145. # define CONFIG_PANEL_PORT_MCU_CLK_HIGH_DURATION (1)
  146. #endif
  147. #ifndef CONFIG_PANEL_PORT_MCU_CLK_LOW_DURATION
  148. # define CONFIG_PANEL_PORT_MCU_CLK_LOW_DURATION (1)
  149. #endif
  150. #ifndef CONFIG_PANEL_PORT_BUS_WIDTH
  151. # define CONFIG_PANEL_PORT_BUS_WIDTH (8)
  152. #endif
  153. /**********************************
  154. * TR-LCD
  155. **********************************/
  156. #ifndef CONFIG_PANEL_PORT_TR_LOW_BIT
  157. # define CONFIG_PANEL_PORT_TR_LOW_BIT (3)
  158. #endif
  159. #ifndef CONFIG_PANEL_PORT_TR_HCK_TAIL
  160. # define CONFIG_PANEL_PORT_TR_HCK_TAIL (1)
  161. #endif
  162. #ifndef CONFIG_PANEL_PORT_TR_VCK_ON_XRST_LOW
  163. # define CONFIG_PANEL_PORT_TR_VCK_ON_XRST_LOW (0)
  164. #endif
  165. #ifndef CONFIG_PANEL_PORT_TR_VCK_ON_IDLE
  166. # define CONFIG_PANEL_PORT_TR_VCK_ON_IDLE (0)
  167. #endif
  168. #ifndef CONFIG_PANEL_PORT_TR_HCK_ON_IDLE
  169. # define CONFIG_PANEL_PORT_TR_HCK_ON_IDLE (0)
  170. #endif
  171. #ifndef CONFIG_PANEL_PORT_TR_PARTIAL_UPDATE
  172. # define CONFIG_PANEL_PORT_TR_PARTIAL_UPDATE (0)
  173. #endif
  174. #ifndef CONFIG_PANEL_PORT_TR_FRP
  175. # define CONFIG_PANEL_PORT_TR_FRP (0)
  176. #endif
  177. #ifndef CONFIG_PANEL_PORT_TR_VCOM_INVERSE
  178. # define CONFIG_PANEL_PORT_TR_VCOM_INVERSE (0)
  179. #endif
  180. #ifndef CONFIG_PANEL_PORT_TR_FRP_INVERSE
  181. # define CONFIG_PANEL_PORT_TR_FRP_INVERSE (0)
  182. #endif
  183. #ifndef CONFIG_PANEL_PORT_TR_XFRP_INVERSE
  184. # define CONFIG_PANEL_PORT_TR_XFRP_INVERSE (0)
  185. #endif
  186. #ifndef CONFIG_PANEL_PORT_TR_XRST_INVERSE
  187. # define CONFIG_PANEL_PORT_TR_XRST_INVERSE (0)
  188. #endif
  189. #ifndef CONFIG_PANEL_PORT_TR_VST_INVERSE
  190. # define CONFIG_PANEL_PORT_TR_VST_INVERSE (0)
  191. #endif
  192. #ifndef CONFIG_PANEL_PORT_TR_HST_INVERSE
  193. # define CONFIG_PANEL_PORT_TR_HST_INVERSE (0)
  194. #endif
  195. #ifndef CONFIG_PANEL_PORT_TR_VCK_INVERSE
  196. # define CONFIG_PANEL_PORT_TR_VCK_INVERSE (0)
  197. #endif
  198. #ifndef CONFIG_PANEL_PORT_TR_HCK_INVERSE
  199. # define CONFIG_PANEL_PORT_TR_HCK_INVERSE (0)
  200. #endif
  201. #ifndef CONFIG_PANEL_PORT_TR_ENB_INVERSE
  202. # define CONFIG_PANEL_PORT_TR_ENB_INVERSE (0)
  203. #endif
  204. #ifndef CONFIG_PANEL_PORT_TR_TW_XRST
  205. # define CONFIG_PANEL_PORT_TR_TW_XRST (0)
  206. #endif
  207. #ifndef CONFIG_PANEL_PORT_TR_TW_VCOM
  208. # define CONFIG_PANEL_PORT_TR_TW_VCOM (0)
  209. #endif
  210. #ifndef CONFIG_PANEL_PORT_TR_TD_VST
  211. # define CONFIG_PANEL_PORT_TR_TD_VST (0)
  212. #endif
  213. #ifndef CONFIG_PANEL_PORT_TR_TW_VST
  214. # define CONFIG_PANEL_PORT_TR_TW_VST (0)
  215. #endif
  216. #ifndef CONFIG_PANEL_PORT_TR_TD_HST
  217. # define CONFIG_PANEL_PORT_TR_TD_HST (0)
  218. #endif
  219. #ifndef CONFIG_PANEL_PORT_TR_TW_HST
  220. # define CONFIG_PANEL_PORT_TR_TW_HST (0)
  221. #endif
  222. #ifndef CONFIG_PANEL_PORT_TR_TD_VCK
  223. # define CONFIG_PANEL_PORT_TR_TD_VCK (0)
  224. #endif
  225. #ifndef CONFIG_PANEL_PORT_TR_TW_VCK
  226. # define CONFIG_PANEL_PORT_TR_TW_VCK (0)
  227. #endif
  228. #ifndef CONFIG_PANEL_PORT_TR_TP_HCK
  229. # define CONFIG_PANEL_PORT_TR_TP_HCK (2)
  230. #endif
  231. #ifndef CONFIG_PANEL_PORT_TR_TD_HCK
  232. # define CONFIG_PANEL_PORT_TR_TD_HCK (4)
  233. #endif
  234. #ifndef CONFIG_PANEL_PORT_TR_TS_ENB
  235. # define CONFIG_PANEL_PORT_TR_TS_ENB (0)
  236. #endif
  237. #ifndef CONFIG_PANEL_PORT_TR_TH_ENB
  238. # define CONFIG_PANEL_PORT_TR_TH_ENB (0)
  239. #endif
  240. #ifndef CONFIG_PANEL_PORT_TR_TD_DATA
  241. # define CONFIG_PANEL_PORT_TR_TD_DATA (0)
  242. #endif
  243. #ifndef CONFIG_PANEL_PORT_TR_TD_ENB
  244. # define CONFIG_PANEL_PORT_TR_TD_ENB (0)
  245. #endif
  246. #ifndef CONFIG_PANEL_PORT_TR_TW_ENB
  247. # define CONFIG_PANEL_PORT_TR_TW_ENB (0)
  248. #endif
  249. #ifndef CONFIG_PANEL_PORT_TR_TSM_ENB
  250. # define CONFIG_PANEL_PORT_TR_TSM_ENB (3)
  251. #endif
  252. #ifndef CONFIG_PANEL_PORT_TR_THM_ENB
  253. # define CONFIG_PANEL_PORT_TR_THM_ENB (0)
  254. #endif
  255. #ifndef CONFIG_PANEL_PORT_TR_TWM_VCK
  256. # define CONFIG_PANEL_PORT_TR_TWM_VCK (1)
  257. #endif
  258. /********************************************
  259. * structure display_videoport initializer
  260. ********************************************/
  261. #define IS_MCU_PANEL (DISPLAY_PORT_TYPE_MAJOR(CONFIG_PANEL_PORT_TYPE) == DISPLAY_PORT_MCU)
  262. #define IS_SPI_PANEL (DISPLAY_PORT_TYPE_MAJOR(CONFIG_PANEL_PORT_TYPE) == DISPLAY_PORT_SPI)
  263. #define IS_QSPI_SYNC_PANEL (CONFIG_PANEL_PORT_TYPE == DISPLAY_PORT_QSPI_SYNC)
  264. #define IS_TR_PANEL (DISPLAY_PORT_TYPE_MAJOR(CONFIG_PANEL_PORT_TYPE) == DISPLAY_PORT_TR)
  265. #if IS_MCU_PANEL
  266. #define PANEL_VIDEO_PORT_INITIALIZER \
  267. { \
  268. .type = CONFIG_PANEL_PORT_TYPE, \
  269. .mcu_mode = { \
  270. .cs = CONFIG_PANEL_PORT_CS, \
  271. .lsb_first = CONFIG_PANEL_PORT_LSB_FIRST, \
  272. .bus_width = CONFIG_PANEL_PORT_BUS_WIDTH, \
  273. .clk_high_duration = CONFIG_PANEL_PORT_MCU_CLK_HIGH_DURATION, \
  274. .clk_low_duration = CONFIG_PANEL_PORT_MCU_CLK_LOW_DURATION, \
  275. }, \
  276. }
  277. #elif IS_SPI_PANEL
  278. #define PANEL_VIDEO_PORT_INITIALIZER \
  279. { \
  280. .type = CONFIG_PANEL_PORT_TYPE, \
  281. .spi_mode = { \
  282. .cs = CONFIG_PANEL_PORT_CS, \
  283. .lsb_first = CONFIG_PANEL_PORT_LSB_FIRST, \
  284. .cpol = CONFIG_PANEL_PORT_SPI_CPOL, \
  285. .cpha = CONFIG_PANEL_PORT_SPI_CPHA, \
  286. .dual_lane = CONFIG_PANEL_PORT_SPI_DUAL_LANE, \
  287. .dcp_mode = CONFIG_PANEL_PORT_SPI_DCP_MODE, \
  288. .rd_lane = CONFIG_PANEL_PORT_SPI_RD_DATA_LANE, \
  289. .rd_dummy_cycles = CONFIG_PANEL_PORT_SPI_RD_DUMMY_CYCLES, \
  290. .rd_delay_ns = CONFIG_PANEL_PORT_SPI_RD_DELAY_NS, \
  291. .wr_delay_d0_ns = CONFIG_PANEL_PORT_SPI_WR_D0_DELAY_NS, \
  292. .wr_delay_d1_ns = CONFIG_PANEL_PORT_SPI_WR_D1_DELAY_NS, \
  293. .wr_delay_d2_ns = CONFIG_PANEL_PORT_SPI_WR_D2_DELAY_NS, \
  294. .wr_delay_d3_ns = CONFIG_PANEL_PORT_SPI_WR_D3_DELAY_NS, \
  295. .delay_csx_ns = CONFIG_PANEL_PORT_SPI_CSX_DELAY_NS, \
  296. .delay_scl_ns = CONFIG_PANEL_PORT_SPI_SCL_DELAY_NS, \
  297. .ahb_clk_div = CONFIG_PANEL_PORT_SPI_AHB_CLK_DIVISION, \
  298. }, \
  299. }
  300. #elif IS_TR_PANEL
  301. #define PANEL_VIDEO_PORT_INITIALIZER \
  302. { \
  303. .type = CONFIG_PANEL_PORT_TYPE, \
  304. .tr_mode = { \
  305. .low_bit = CONFIG_PANEL_PORT_TR_LOW_BIT, \
  306. .hck_tail_on = CONFIG_PANEL_PORT_TR_HCK_TAIL, \
  307. .vck_on_xrstl = CONFIG_PANEL_PORT_TR_VCK_ON_XRST_LOW, \
  308. .vck_on_idle = CONFIG_PANEL_PORT_TR_VCK_ON_IDLE, \
  309. .hck_on_idle = CONFIG_PANEL_PORT_TR_HCK_ON_IDLE, \
  310. .ptl_on = CONFIG_PANEL_PORT_TR_PARTIAL_UPDATE, \
  311. .frp_on = CONFIG_PANEL_PORT_TR_FRP, \
  312. .vcom_inv = CONFIG_PANEL_PORT_TR_VCOM_INVERSE, \
  313. .frp_inv = CONFIG_PANEL_PORT_TR_FRP_INVERSE, \
  314. .xfrp_inv = CONFIG_PANEL_PORT_TR_XFRP_INVERSE, \
  315. .xrst_inv = CONFIG_PANEL_PORT_TR_XRST_INVERSE, \
  316. .vst_inv = CONFIG_PANEL_PORT_TR_VST_INVERSE, \
  317. .hst_inv = CONFIG_PANEL_PORT_TR_HST_INVERSE, \
  318. .vck_inv = CONFIG_PANEL_PORT_TR_VCK_INVERSE, \
  319. .hck_inv = CONFIG_PANEL_PORT_TR_HCK_INVERSE, \
  320. .enb_inv = CONFIG_PANEL_PORT_TR_ENB_INVERSE, \
  321. .tw_xrst = CONFIG_PANEL_PORT_TR_TW_XRST, \
  322. .tw_vcom = CONFIG_PANEL_PORT_TR_TW_VCOM, \
  323. .td_vst = CONFIG_PANEL_PORT_TR_TD_VST, \
  324. .tw_vst = CONFIG_PANEL_PORT_TR_TW_VST, \
  325. .td_hst = CONFIG_PANEL_PORT_TR_TD_HST, \
  326. .tw_hst = CONFIG_PANEL_PORT_TR_TW_HST, \
  327. .td_vck = CONFIG_PANEL_PORT_TR_TD_VCK, \
  328. .tw_vck = CONFIG_PANEL_PORT_TR_TW_VCK, \
  329. .tp_hck = CONFIG_PANEL_PORT_TR_TP_HCK, \
  330. .td_hck = CONFIG_PANEL_PORT_TR_TD_HCK, \
  331. .ts_enb = CONFIG_PANEL_PORT_TR_TS_ENB, \
  332. .th_enb = CONFIG_PANEL_PORT_TR_TH_ENB, \
  333. .td_data = CONFIG_PANEL_PORT_TR_TD_DATA, \
  334. .td_enb = CONFIG_PANEL_PORT_TR_TD_ENB, \
  335. .tw_enb = CONFIG_PANEL_PORT_TR_TW_ENB, \
  336. .tsm_enb = CONFIG_PANEL_PORT_TR_TSM_ENB, \
  337. .thm_enb = CONFIG_PANEL_PORT_TR_THM_ENB, \
  338. .twm_vck = CONFIG_PANEL_PORT_TR_TWM_VCK, \
  339. }, \
  340. }
  341. #else
  342. #error "invalid port type."
  343. #endif
  344. #define PANEL_VIDEO_PORT_DEFINE(name) \
  345. struct display_videoport name = PANEL_VIDEO_PORT_INITIALIZER
  346. /********************************************
  347. * Configuration of display videomode
  348. ********************************************/
  349. #ifndef CONFIG_PANEL_COLOR_DEPTH
  350. # define CONFIG_PANEL_COLOR_DEPTH 16
  351. #endif
  352. #if CONFIG_PANEL_COLOR_DEPTH == 32
  353. # define CONFIG_PANEL_PIXEL_FORMAT PIXEL_FORMAT_ARGB_8888
  354. #elif CONFIG_PANEL_COLOR_DEPTH == 24
  355. # define CONFIG_PANEL_PIXEL_FORMAT PIXEL_FORMAT_RGB_888
  356. #else
  357. # define CONFIG_PANEL_PIXEL_FORMAT PIXEL_FORMAT_BGR_565
  358. #endif
  359. #ifndef CONFIG_PANEL_TIMING_REFRESH_RATE_HZ
  360. # define CONFIG_PANEL_TIMING_REFRESH_RATE_HZ (60)
  361. #endif
  362. #define CONFIG_PANEL_VSYNC_PERIOD_US \
  363. ((1000000 + CONFIG_PANEL_TIMING_REFRESH_RATE_HZ - 1) / CONFIG_PANEL_TIMING_REFRESH_RATE_HZ)
  364. #define CONFIG_PANEL_VSYNC_PERIOD_MS \
  365. ((1000 + CONFIG_PANEL_TIMING_REFRESH_RATE_HZ - 1) / CONFIG_PANEL_TIMING_REFRESH_RATE_HZ)
  366. #ifndef CONFIG_PANEL_TIMING_PIXEL_CLK_KHZ
  367. # define CONFIG_PANEL_TIMING_PIXEL_CLK_KHZ (50000)
  368. #endif
  369. /* measured in pixels */
  370. #ifndef CONFIG_PANEL_TIMING_HACTIVE
  371. # define CONFIG_PANEL_TIMING_HACTIVE (1)
  372. #endif
  373. /* measured in clock cycles */
  374. #ifndef CONFIG_PANEL_TIMING_HFRONT_PORCH
  375. # define CONFIG_PANEL_TIMING_HFRONT_PORCH (0)
  376. #endif
  377. /* measured in clock cycles */
  378. #ifndef CONFIG_PANEL_TIMING_HBACK_PORCH
  379. # define CONFIG_PANEL_TIMING_HBACK_PORCH (0)
  380. #endif
  381. /* measured in clock cycles */
  382. #ifndef CONFIG_PANEL_TIMING_HSYNC_LEN
  383. # define CONFIG_PANEL_TIMING_HSYNC_LEN (0)
  384. #endif
  385. /* measured in lines */
  386. #ifndef CONFIG_PANEL_TIMING_VACTIVE
  387. # define CONFIG_PANEL_TIMING_VACTIVE (1)
  388. #endif
  389. /* measured in lines */
  390. #ifndef CONFIG_PANEL_TIMING_VFRONT_PORCH
  391. # define CONFIG_PANEL_TIMING_VFRONT_PORCH (0)
  392. #endif
  393. /* measured in lines */
  394. #ifndef CONFIG_PANEL_TIMING_VBACK_PORCH
  395. # define CONFIG_PANEL_TIMING_VBACK_PORCH (0)
  396. #endif
  397. /* measured in lines */
  398. #ifndef CONFIG_PANEL_TIMING_VSYNC_LEN
  399. # define CONFIG_PANEL_TIMING_VSYNC_LEN (0)
  400. #endif
  401. #ifdef CONFIG_PANEL_TIMING_TE_ACTIVE
  402. # define PANEL_VIDEO_MODE_TE_FLAGS ((CONFIG_PANEL_TIMING_TE_ACTIVE) ? DISPLAY_FLAGS_TE_HIGH : DISPLAY_FLAGS_TE_LOW)
  403. #else
  404. # define PANEL_VIDEO_MODE_TE_FLAGS (0)
  405. #endif
  406. #ifdef CONFIG_PANEL_TIMING_HSYNC_ACTIVE
  407. # define PANEL_VIDEO_MODE_HSYNC_FLAGS ((CONFIG_PANEL_TIMING_HSYNC_ACTIVE) ? DISPLAY_FLAGS_HSYNC_HIGH : DISPLAY_FLAGS_HSYNC_LOW)
  408. #else
  409. # define PANEL_VIDEO_MODE_HSYNC_FLAGS (0)
  410. #endif
  411. #ifdef CONFIG_PANEL_TIMING_VSYNC_ACTIVE
  412. # define PANEL_VIDEO_MODE_VSYNC_FLAGS ((CONFIG_PANEL_TIMING_VSYNC_ACTIVE) ? DISPLAY_FLAGS_VSYNC_HIGH : DISPLAY_FLAGS_VSYNC_LOW)
  413. #else
  414. # define PANEL_VIDEO_MODE_VSYNC_FLAGS (0)
  415. #endif
  416. #ifdef CONFIG_PANEL_TIMING_DE_ACTIVE
  417. # define PANEL_VIDEO_MODE_DE_FLAGS ((CONFIG_PANEL_TIMING_DE_ACTIVE) ? DISPLAY_FLAGS_DE_HIGH : DISPLAY_FLAGS_DE_LOW)
  418. #else
  419. # define PANEL_VIDEO_MODE_DE_FLAGS (0)
  420. #endif
  421. #ifdef CONFIG_PANEL_TIMING_PIXELCLK_ACTIVE
  422. # define PANEL_VIDEO_MODE_PIXELCLK_FLAGS ((CONFIG_PANEL_TIMING_PIXELCLK_ACTIVE) ? DISPLAY_FLAGS_PIXDATA_NEGEDGE : DISPLAY_FLAGS_PIXDATA_POSEDGE)
  423. #else
  424. # define PANEL_VIDEO_MODE_PIXELCLK_FLAGS (0)
  425. #endif
  426. #ifdef CONFIG_PANEL_TIMING_SYNCCLK_ACTIVE
  427. # define PANEL_VIDEO_MODE_SYNCCLK_FLAGS ((CONFIG_PANEL_TIMING_SYNCCLK_ACTIVE) ? DISPLAY_FLAGS_SYNC_NEGEDGE : DISPLAY_FLAGS_SYNC_POSEDGE)
  428. #else
  429. # define PANEL_VIDEO_MODE_SYNCCLK_FLAGS (0)
  430. #endif
  431. /********************************************
  432. * structure display_videomode initializer
  433. ********************************************/
  434. #define PANEL_VIDEO_MODE_INITIALIZER \
  435. { \
  436. .pixel_format = CONFIG_PANEL_PIXEL_FORMAT, \
  437. .pixel_clk = CONFIG_PANEL_TIMING_PIXEL_CLK_KHZ, \
  438. .refresh_rate = CONFIG_PANEL_TIMING_REFRESH_RATE_HZ, \
  439. .hactive = CONFIG_PANEL_TIMING_HACTIVE, \
  440. .hfront_porch = CONFIG_PANEL_TIMING_HFRONT_PORCH, \
  441. .hback_porch = CONFIG_PANEL_TIMING_HBACK_PORCH, \
  442. .hsync_len = CONFIG_PANEL_TIMING_HSYNC_LEN, \
  443. .vactive = CONFIG_PANEL_TIMING_VACTIVE, \
  444. .vfront_porch = CONFIG_PANEL_TIMING_VFRONT_PORCH, \
  445. .vback_porch = CONFIG_PANEL_TIMING_VBACK_PORCH, \
  446. .vsync_len = CONFIG_PANEL_TIMING_VSYNC_LEN, \
  447. .flags = PANEL_VIDEO_MODE_TE_FLAGS | \
  448. PANEL_VIDEO_MODE_HSYNC_FLAGS | \
  449. PANEL_VIDEO_MODE_VSYNC_FLAGS | \
  450. PANEL_VIDEO_MODE_DE_FLAGS | \
  451. PANEL_VIDEO_MODE_PIXELCLK_FLAGS | \
  452. PANEL_VIDEO_MODE_SYNCCLK_FLAGS, \
  453. }
  454. #define PANEL_VIDEO_MODE_DEFINE(name) \
  455. struct display_videomode name = PANEL_VIDEO_MODE_INITIALIZER
  456. #endif /* DRIVER_PANEL_COMMON_H__ */