lcdc_leopard.h 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382
  1. /*
  2. * Copyright (c) 2020 Actions Technology Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_DRIVERS_DISPLAY_CONTROLLER_LCDC_LEOPARD_H_
  7. #define ZEPHYR_DRIVERS_DISPLAY_CONTROLLER_LCDC_LEOPARD_H_
  8. #include <zephyr/types.h>
  9. /* Reg LCD_CTL */
  10. #define LCD_CLK_EN BIT(31)
  11. #define LCD_SDCHK_CLK_EN BIT(30)
  12. #define LCD_OUT_RGB565_FORCE_555 BIT(28)
  13. #define LCD_IN_RGB666_CVT_SEL(x) ((uint32_t)(x) << 26)
  14. #define LCD_IN_RGB666_CVT_ZERO LCD_IN_RGB666_CVT_SEL(0) /* Zero bits compensation */
  15. #define LCD_IN_RGB666_CVT_LOW LCD_IN_RGB666_CVT_SEL(1) /* Low bits compensation */
  16. #define LCD_IN_RGB666_CVT_HIGH LCD_IN_RGB666_CVT_SEL(2) /* High bits compensation */
  17. #define LCD_IN_RGB565_CVT_SEL(x) ((uint32_t)(x) << 24)
  18. #define LCD_IN_RGB565_CVT_ZERO LCD_IN_RGB565_CVT_SEL(0) /* Zero bits compensation */
  19. #define LCD_IN_RGB565_CVT_LOW LCD_IN_RGB565_CVT_SEL(1) /* Low bits compensation */
  20. #define LCD_IN_RGB565_CVT_HIGH LCD_IN_RGB565_CVT_SEL(2) /* High bits compensation */
  21. #define LCD_IN_RGB565_CVT_F555 LCD_IN_RGB565_CVT_SEL(3) /* Cut to RGB555 */
  22. #define LCD_HOLD_EN BIT(16)
  23. #define LCD_AUTO_RST_FIFO_EN BIT(14)
  24. #define LCD_FIFO_EN BIT(13)
  25. #define LCD_TE_EN BIT(12)
  26. #define LCD_TE_MODE_SEL(x) ((uint32_t)(x) << 10)
  27. #define LCD_TE_MODE_HIGH_LEVEL LCD_TE_MODE_SEL(0)
  28. #define LCD_TE_MODE_LOW_LEVEL LCD_TE_MODE_SEL(1)
  29. #define LCD_TE_MODE_RISING_EDGE LCD_TE_MODE_SEL(2)
  30. #define LCD_TE_MODE_FALLING_EDGE LCD_TE_MODE_SEL(3)
  31. #define LCD_TE_MODE_MASK LCD_TE_MODE_SEL(3)
  32. #define LCD_IF_CE_SEL(x) ((uint32_t)(x) << 9)
  33. #define LCD_IF_MLS_SEL(x) ((uint32_t)(x) << 8)
  34. #define LCD_IF_MSB_FIRST LCD_IF_MLS_SEL(0)
  35. #define LCD_IF_LSB_FIRST LCD_IF_MLS_SEL(1)
  36. #define LCD_OUT_FORMAT_SEL(x) ((uint32_t)(x) << 4)
  37. #define LCD_OUT_FORMAT_RGB565 LCD_OUT_FORMAT_SEL(0)
  38. #define LCD_OUT_FORMAT_BGR666 LCD_OUT_FORMAT_SEL(1)
  39. #define LCD_OUT_FORMAT_BGR888 LCD_OUT_FORMAT_SEL(2)
  40. #define LCD_OUT_FORMAT_MASK LCD_OUT_FORMAT_SEL(3)
  41. #define LCD_IF_SEL(x) ((uint32_t)(x) << 1)
  42. #define LCD_IF_SEL_MCU_8080 LCD_IF_SEL(0)
  43. #define LCD_IF_SEL_MCU_6880 LCD_IF_SEL(1)
  44. #define LCD_IF_SEL_SPI LCD_IF_SEL(3)
  45. #define LCD_IF_SEL_TR LCD_IF_SEL(4)
  46. #define LCD_IF_MASK LCD_IF_SEL(7)
  47. #define LCD_EN BIT(0)
  48. /* Reg LCD_DISP_SIZE */
  49. #define LCD_DISP_SIZE(w, h) ((((uint32_t)(h) - 1) << 16) | ((w) - 1))
  50. /* Reg LCD_CPU_CTL */
  51. #define LCD_CPU_START BIT(31)
  52. #define LCD_CPU_FEND_IRQ_EN BIT(30)
  53. #define LCD_CPU_SDT_SEL(type, rb_swap) \
  54. (((uint32_t)(type) << 15) | ((uint32_t)(rb_swap) << 13))
  55. #define LCD_CPU_SDT_RGB565 LCD_SPI_SDT_SEL(0, 0)
  56. #define LCD_CPU_SDT_BGR565 LCD_SPI_SDT_SEL(0, 1)
  57. #define LCD_CPU_SDT_BGR666 LCD_SPI_SDT_SEL(1, 0)
  58. #define LCD_CPU_SDT_RGB666 LCD_SPI_SDT_SEL(1, 1)
  59. #define LCD_CPU_SDT_BGR888 LCD_SPI_SDT_SEL(2, 0)
  60. #define LCD_CPU_SDT_RGB888 LCD_SPI_SDT_SEL(2, 1)
  61. #define LCD_CPU_SDT_ARGB8888 LCD_SPI_SDT_SEL(3, 0)
  62. #define LCD_CPU_SDT_ABGR8888 LCD_SPI_SDT_SEL(3, 1)
  63. #define LCD_CPU_SDT_BGRA8888 LCD_SPI_SDT_SEL(4, 0)
  64. #define LCD_CPU_SDT_RGBA8888 LCD_SPI_SDT_SEL(4, 1)
  65. #define LCD_CPU_SDT_MASK LCD_SPI_SDT_SEL(7, 1)
  66. #define LCD_CPU_RX_DELAY_SEL(x) ((uint32_t)(x) << 8)
  67. #define LCD_CPU_RX_DELAY_MASK LCD_CPU_RD_DELAY(1)
  68. #define LCD_CPU_AHB_F565_SEL(x) ((uint32_t)(x) << 5)
  69. #define LCD_CPU_AHB_F565_16BIT LCD_CPU_AHB_F565_SEL(1)
  70. #define LCD_CPU_AHB_F565_24BIT LCD_CPU_AHB_F565_SEL(0)
  71. #define LCD_CPU_AHB_F565_MASK LCD_CPU_AHB_F565_SEL(1)
  72. #define LCD_CPU_RS(x) ((uint32_t)(x) << 4)
  73. #define LCD_CPU_RS_LOW LCD_CPU_RS(0)
  74. #define LCD_CPU_RS_HIGH LCD_CPU_RS(1)
  75. #define LCD_CPU_RS_MASK LCD_CPU_RS(1)
  76. #define LCD_CPU_SRC_SEL(x) ((uint32_t)(x) << 2)
  77. #define LCD_CPU_SRC_SEL_AHB LCD_CPU_SRC_SEL(0)
  78. #define LCD_CPU_SRC_SEL_DE LCD_CPU_SRC_SEL(1)
  79. #define LCD_CPU_SRC_SEL_DMA LCD_CPU_SRC_SEL(2)
  80. #define LCD_CPU_SRC_MASK LCD_CPU_SRC_SEL(3)
  81. #define LCD_CPU_AHB_DATA_SEL(x) ((uint32_t)(x) << 1)
  82. #define LCD_CPU_AHB_DATA_SEL_IMG LCD_CPU_AHB_DATA_SEL(0)
  83. #define LCD_CPU_AHB_DATA_SEL_CFG LCD_CPU_AHB_DATA_SEL(1)
  84. #define LCD_CPU_AHB_DATA_MASK LCD_CPU_AHB_DATA_SEL(1)
  85. #define LCD_CPU_AHB_CSX(x) ((uint32_t)(x) << 0)
  86. #define LCD_CPU_AHB_CSX_MASK LCD_CPU_AHB_CSX(1)
  87. /* Reg LCD_CPU_CLK */
  88. #define LCD_CPU_CLK(hdu, ldu, ldu2) \
  89. (((uint32_t)(((ldu2) - 1) & 0x3f) << 16) | \
  90. ((uint32_t)(((ldu) - 1) & 0x3f) << 8) | (((hdu) - 1) & 0x3f))
  91. /* Reg LCD_SPI_CTL */
  92. #define LCD_SPI_START BIT(31)
  93. #define LCD_SPI_FTC_IRQ_EN BIT(30)
  94. #define LCD_SPI_FEND_PD_EN BIT(29)
  95. #define LCD_SPI_AHB_DATA_SEL(x) ((uint32_t)(x) << 28)
  96. #define LCD_SPI_AHB_IMG_DATA LCD_SPI_AHB_DATA_SEL(0)
  97. #define LCD_SPI_AHB_CFG_DATA LCD_SPI_AHB_DATA_SEL(1)
  98. #define LCD_SPI_AHB_DATA_MASK LCD_SPI_AHB_DATA_SEL(1)
  99. #define LCD_SPI_SDT_SEL(type, rb_swap) \
  100. (((uint32_t)(type) << 24) | ((uint32_t)(rb_swap) << 4))
  101. #define LCD_SPI_SDT_RGB565 LCD_SPI_SDT_SEL(0, 0)
  102. #define LCD_SPI_SDT_BGR565 LCD_SPI_SDT_SEL(0, 1)
  103. #define LCD_SPI_SDT_BGR666 LCD_SPI_SDT_SEL(1, 0)
  104. #define LCD_SPI_SDT_RGB666 LCD_SPI_SDT_SEL(1, 1)
  105. #define LCD_SPI_SDT_BGR888 LCD_SPI_SDT_SEL(2, 0)
  106. #define LCD_SPI_SDT_RGB888 LCD_SPI_SDT_SEL(2, 1)
  107. #define LCD_SPI_SDT_ARGB8888 LCD_SPI_SDT_SEL(3, 0)
  108. #define LCD_SPI_SDT_ABGR8888 LCD_SPI_SDT_SEL(3, 1)
  109. #define LCD_SPI_SDT_BGRA8888 LCD_SPI_SDT_SEL(4, 0)
  110. #define LCD_SPI_SDT_RGBA8888 LCD_SPI_SDT_SEL(4, 1)
  111. #define LCD_SPI_SDT_MASK LCD_SPI_SDT_SEL(7, 1)
  112. #define LCD_SPI_RWL(x) ((uint32_t)(x) << 18)
  113. #define LCD_SPI_RWL_MASK LCD_SPI_RWL(0x3f)
  114. #define LCD_SPI_AHB_F565_SEL(x) ((uint32_t)(x) << 17)
  115. #define LCD_SPI_AHB_F565_16BIT LCD_SPI_AHB_F565_SEL(1)
  116. #define LCD_SPI_AHB_F565_24BIT LCD_SPI_AHB_F565_SEL(0)
  117. #define LCD_SPI_AHB_F565_MASK LCD_SPI_AHB_F565_SEL(1)
  118. #define LCD_SPI_DUAL_LANE_SEL(x) ((uint32_t)(x) << 16)
  119. #define LCD_SPI_DUAL_LANE_SEL_SINGLE LCD_SPI_DUAL_LANE_SEL(0)
  120. #define LCD_SPI_DUAL_LANE_SEL_DUAL LCD_SPI_DUAL_LANE_SEL(1)
  121. #define LCD_SPI_DUAL_LANE_MASK LCD_SPI_DUAL_LANE_SEL(1)
  122. #define LCD_SPI_RD_DELAY_CHAIN_SEL(x) ((uint32_t)((x) & 0xf) << 12)
  123. #define LCD_SPI_RD_DELAY_CHAIN_MASK LCD_SPI_RD_DELAY_CHAIN_SEL(0xf)
  124. #define LCD_SPI_SRC_SEL(x) ((uint32_t)((x) & 0x3) << 10)
  125. #define LCD_SPI_SRC_SEL_AHB LCD_SPI_SRC_SEL(0)
  126. #define LCD_SPI_SRC_SEL_DE LCD_SPI_SRC_SEL(1)
  127. #define LCD_SPI_SRC_SEL_DMA LCD_SPI_SRC_SEL(2)
  128. #define LCD_SPI_SRC_MASK LCD_SPI_SRC_SEL(3)
  129. #define LCD_SPI_RD_LANE_SEL(x) ((uint32_t)((x) & 0x3) << 8)
  130. #define LCD_SPI_DCP_SEL(x) ((uint32_t)(x) << 7)
  131. #define LCD_SPI_DCP_SEL_NORMAL LCD_SPI_DCP_SEL(0)
  132. #define LCD_SPI_DCP_SEL_COMPAT LCD_SPI_DCP_SEL(1)
  133. #define LCD_SPI_DCP_MASK LCD_SPI_DCP_SEL(1)
  134. /* sample edge: 0-rising edge; 1-falling edge */
  135. #define LCD_SPI_SCLK_POL(x) ((uint32_t)((x)) << 6)
  136. #define LCD_SPI_AHB_CSX(x) ((uint32_t)(x) << 5)
  137. #define LCD_SPI_AHB_CSX_MASK LCD_SPI_AHB_CSX(1)
  138. #define LCD_SPI_CDX(x) ((uint32_t)(x) << 3)
  139. #define LCD_SPI_CDX_MASK LCD_SPI_CDX(0x1)
  140. #define LCD_SPI_TYPE_SEL(x) ((x))
  141. #define LCD_SPI_3WIRE_TYPE1 LCD_SPI_TYPE_SEL(0)
  142. #define LCD_SPI_3WIRE_TYPE2 LCD_SPI_TYPE_SEL(1)
  143. #define LCD_SPI_4WIRE_TYPE1 LCD_SPI_TYPE_SEL(2)
  144. #define LCD_SPI_4WIRE_TYPE2 LCD_SPI_TYPE_SEL(3)
  145. #define LCD_QSPI LCD_SPI_TYPE_SEL(4)
  146. #define LCD_QSPI_SYNC LCD_SPI_TYPE_SEL(5)
  147. #define LCD_SPI_TYPE_MASK LCD_SPI_TYPE_SEL(7)
  148. /* Reg LCD_QSPI_CMD{1} */
  149. #define LCD_QSPI_CMD(cmd, addr) \
  150. (((uint32_t)(cmd) << 24) | ((addr) & 0xffffff))
  151. /* Reg LCD_QSI_QSYNC_TIM (vfp and vbp have inverse meanings with the normal lcd RGB timing) */
  152. #define LCD_QSPI_SYNC_TIM(hp, vfp, vbp) \
  153. (((uint32_t)((hp) & 0xffff) << 16) | \
  154. ((uint32_t)(((vbp) - 1) & 0xff) << 8) | (((vfp) - 1) & 0xff))
  155. /* Reg LCD_QSPI_IMG_SIZE */
  156. #define LCD_QSPI_IMG_SIZE(w, h) \
  157. ((((uint32_t)(h) - 1) << 16) | ((w) - 1))
  158. /* Reg LCD_QSPI_DTAS */
  159. #define LCD_QSPI_DTAS(clk_en_in_delay, delay_cycles) \
  160. ((((uint32_t)clk_en_in_delay) << 16) | ((delay_cycles) & 0xffff))
  161. /* Reg LCD_SPI_CTL1 */
  162. #define LCD_SPI_AHB_CLK_DIV(div) \
  163. ((uint32_t)(((div) <= 1) ? 0 : \
  164. (((div) <= 2) ? 1 : (((div) <= 4) ? 2 : 3))) << 16)
  165. #define LCD_SPI_AHB_CLK_DIV_MAX (0x3 << 16)
  166. #define LCD_SPI_RDLC_SEL(x) ((uint32_t)((x) & 0x1f) << 4)
  167. #define LCD_SPI_RDLC_MASK LCD_SPI_RDLC_SEL(0x1f)
  168. /* Reg LCD_SPI_CTL2 */
  169. #define LCD_SPI_SIG_DELAY(csx, scl, d0, d1, d2, d3) \
  170. (((csx) & 0x1f) << 25) | (((scl) & 0x1f) << 20) | \
  171. (((d3) & 0x1f) << 15) | (((d2) & 0x1f) << 10) | \
  172. (((d1) & 0x1f) << 5) | ((d0) & 0x1f)
  173. /* Reg LCD_QSPI_DDR_CTL */
  174. #define LCD_SPI_MODE(cpol, cpha) \
  175. (((uint32_t)(cpol) << 31) | ((uint32_t)(cpha) << 30))
  176. #define LCD_SPI_CLK_KEEP_SEL(x) ((uint32_t)(!(x)) << 29)
  177. #define LCD_SPI_DDR_SEL(x) ((uint32_t)(x) << 1)
  178. #define LCD_SPI_DDR_EN BIT(0)
  179. /* Reg DE_INTERFACE_CTL */
  180. #define LCD_DE_CTL_UNIT(x) (((uint32_t)(x) & 0x3FF) << 20)
  181. #define LCD_DE_VFP(x) (((uint32_t)(x) & 0x3FF) << 10)
  182. #define LCD_DE_VSW(x) (((uint32_t)(x) & 0x3FF) << 0)
  183. /* Reg LCD_SD_CNT */
  184. #define LCD_SDCNT_EN BIT(31)
  185. #define LCD_COUNT(x) ((x) & 0x7fffffff)
  186. /* Reg LCD_SD_CHECKSUM */
  187. #define LCD_CHKSUM_EN BIT(31)
  188. #define LCD_CHKSUM(x) ((x) & 0x7fffffff)
  189. /* Reg LCD_PENDING */
  190. #define LCD_STAT_TR_FTC BIT(7)
  191. #define LCD_STAT_DMA_UDF BIT(6) /* DMA fifo underflow */
  192. #define LCD_STAT_QSPI_SYNC_FTC BIT(5)
  193. #define LCD_STAT_TE BIT(4)
  194. #define LCD_STAT_SPI_FTC BIT(3)
  195. #define LCD_STAT_CPU_FTC BIT(2)
  196. #define LCD_STAT_FTC \
  197. (LCD_STAT_TR_FTC | LCD_STAT_QSPI_SYNC_FTC | \
  198. LCD_STAT_SPI_FTC | LCD_STAT_CPU_FTC)
  199. /* Reg LCD_TR_CTL */
  200. #define LCD_TR_START BIT(31)
  201. #define LCD_TR_FTC_IRQ_EN BIT(30)
  202. #define LCD_TR_SDT_SEL(type, rb_swap) \
  203. (((uint32_t)(type) << 24) | ((uint32_t)(rb_swap) << 16))
  204. #define LCD_TR_SDT_RGB565 LCD_TR_SDT_SEL(0, 0)
  205. #define LCD_TR_SDT_BGR565 LCD_TR_SDT_SEL(0, 1)
  206. #define LCD_TR_SDT_BGR666 LCD_TR_SDT_SEL(1, 0)
  207. #define LCD_TR_SDT_RGB666 LCD_TR_SDT_SEL(1, 1)
  208. #define LCD_TR_SDT_BGR888 LCD_TR_SDT_SEL(2, 0)
  209. #define LCD_TR_SDT_RGB888 LCD_TR_SDT_SEL(2, 1)
  210. #define LCD_TR_SDT_ARGB8888 LCD_TR_SDT_SEL(3, 0)
  211. #define LCD_TR_SDT_ABGR8888 LCD_TR_SDT_SEL(3, 1)
  212. #define LCD_TR_SDT_BGRA8888 LCD_TR_SDT_SEL(4, 0)
  213. #define LCD_TR_SDT_RGBA8888 LCD_TR_SDT_SEL(4, 1)
  214. #define LCD_TR_SDT_MASK LCD_TR_SDT_SEL(7, 1)
  215. #define LCD_TR_LB_SEL(x) ((uint32_t)(((x) - 3) & 0x3) << 22)
  216. #define LCD_TR_LB_3 LCD_TR_LB_SEL(0)
  217. #define LCD_TR_LB_4 LCD_TR_LB_SEL(1)
  218. #define LCD_TR_LB_5 LCD_TR_LB_SEL(2)
  219. #define LCD_TR_LB_6 LCD_TR_LB_SEL(3)
  220. #define LCD_TR_HCK_TAIL_EN(x) ((uint32_t)(x) << 18)
  221. #define LCD_TR_F565_SEL(x) ((uint32_t)(x) << 17)
  222. #define LCD_TR_F565_16BIT LCD_TR_F565_SEL(1)
  223. #define LCD_TR_F565_24BIT LCD_TR_F565_SEL(0)
  224. #define LCD_TR_F565_MASK LCD_TR_F565_SEL(1)
  225. #define LCD_TR_VCK_CONT_EN(x) ((uint32_t)(x) << 15)
  226. #define LCD_TR_VCK_MODE(x) ((uint32_t)(x) << 14)
  227. #define LCD_TR_HCK_MODE(x) ((uint32_t)(x) << 13)
  228. #define LCD_TR_PU_MODE(x) ((uint32_t)(x) << 12)
  229. #define LCD_TR_SRC_SEL(x) ((uint32_t)(x) << 10)
  230. #define LCD_TR_SRC_SEL_DE LCD_TR_SRC_SEL(1)
  231. #define LCD_TR_SRC_SEL_DMA LCD_TR_SRC_SEL(2)
  232. #define LCD_TR_SRC_MASK LCD_TR_SRC_SEL(3)
  233. #define LCD_TR_FRP_EN(x) ((uint32_t)(x) << 9)
  234. #define LCD_TR_VCOM_INV(x) ((uint32_t)(x) << 8)
  235. #define LCD_TR_FRP_INV(x) ((uint32_t)(x) << 7)
  236. #define LCD_TR_XFRP_INV(x) ((uint32_t)(x) << 6)
  237. #define LCD_TR_XRST_INV(x) ((uint32_t)(x) << 5)
  238. #define LCD_TR_VST_INV(x) ((uint32_t)(x) << 4)
  239. #define LCD_TR_HST_INV(x) ((uint32_t)(x) << 3)
  240. #define LCD_TR_VCK_INV(x) ((uint32_t)(x) << 2)
  241. #define LCD_TR_HCK_INV(x) ((uint32_t)(x) << 1)
  242. #define LCD_TR_ENB_INV(x) ((uint32_t)(x) << 0)
  243. /* Reg LCD_TR_IMG_SIZE */
  244. #define LCD_TR_IMG_SIZE(w, h) (((uint32_t)(h) << 16) | (w))
  245. /* Reg LCD_TR_TIM0 */
  246. #define LCD_TR_TIM0(twXRST, twVCOM) \
  247. ((((uint32_t)(twXRST)) << 24) | ((twVCOM)))
  248. /* Reg LCD_TR_TIM1 */
  249. #define LCD_TR_TIM1(tdVST, twVST, tdHST, twHST) \
  250. ((((uint32_t)(tdVST)) << 24) | (((uint32_t)(twVST)) << 16) | \
  251. (((uint32_t)(tdHST)) << 8) | ((uint32_t)(twHST)))
  252. /* Reg LCD_TR_TIM2 */
  253. #define LCD_TR_TIM2(tdVCK, twVCK, tpHCK, tdHCK) \
  254. ((((uint32_t)(tdVCK)) << 24) | (((uint32_t)(twVCK)) << 13) | \
  255. (((uint32_t)(tpHCK)) << 11) | ((uint32_t)(tdHCK)))
  256. /* Reg LCD_TR_TIM3 */
  257. #define LCD_TR_TIM3(tsENB, thENB, tdDATA) \
  258. ((((uint32_t)(tsENB)) << 21) | (((uint32_t)(thENB)) << 10) | \
  259. ((uint32_t)(tdDATA)))
  260. /* Reg LCD_TR_TIM4 */
  261. #define LCD_TR_TIM4(tdENB, twENB) \
  262. ((((uint32_t)(tdENB)) << 16) | ((uint32_t)(twENB)))
  263. /* Reg LCD_TR_TIM5*/
  264. #define LCD_TR_TIM5(tsmENB, thmENB, twmVCK) \
  265. ((((uint32_t)(tsmENB)) << 21) | (((uint32_t)(thmENB)) << 10) | \
  266. ((uint32_t)(twmVCK)))
  267. /**
  268. * @brief LCDC Module (LCDC)
  269. */
  270. typedef struct { /*!< (@ 0x40064000) LCDC Structure */
  271. volatile uint32_t CTL; /*!< (@ 0x00000000) LCD Control Register */
  272. const volatile uint32_t RESERVED_1;
  273. volatile uint32_t DISP_SIZE; /*!< (@ 0x00000008) LCD DMA Source Display Size Register */
  274. const volatile uint32_t RESERVED_2[4];
  275. volatile uint32_t CPU_CTL; /*!< (@ 0x0000001C) LCD CPU Mode Control Register */
  276. volatile uint32_t DATA; /*!< (@ 0x00000020) LCD Data Register */
  277. volatile uint32_t CPU_CLK; /*!< (@ 0x00000024) LCD CPU Mode Clk Control Register */
  278. volatile uint32_t TPL; /*!< (@ 0x00000028) LCD Transfer Pixel Length Register */
  279. volatile uint32_t SPI_CTL; /*!< (@ 0x0000002C) LCD SPI Control Register */
  280. const volatile uint32_t RESERVED_3;
  281. volatile uint32_t QSPI_CMD; /*!< (@ 0x00000034) LCD Quad Serial Command Register */
  282. volatile uint32_t QSPI_CMD1; /*!< (@ 0x00000038) LCD Quad Serial Command Register */
  283. volatile uint32_t QSPI_SYNC_TIM; /*!< (@ 0x0000003C) LCD Quad SPI Sync Timing Register */
  284. volatile uint32_t QSPI_IMG_SIZE; /*!< (@ 0x00000040) LCD QSPI Display Image Size Register */
  285. volatile uint32_t DE_INTERFACE_CTL; /*!< (@ 0x00000044) DE Interface Control Register */
  286. volatile uint32_t PENDING; /*!< (@ 0x00000048) LCD Pending Register */
  287. volatile uint32_t QSPI_DTAS; /*!< (@ 0x0000004C) LCD QSPI Delay Time after sync */
  288. volatile uint32_t DATA_1[7]; /*!< (@ 0x00000050) LCD Data Register */
  289. const volatile uint32_t RESERVED_4[1];
  290. volatile uint32_t SPI_CTL1; /*!< (@ 0x00000070) LCD SPI Control 1 Register */
  291. volatile uint32_t SPI_CTL2; /*!< (@ 0x00000074) LCD SPI Control 2 Register */
  292. volatile uint32_t QSPI_DDR_CTL; /*!< (@ 0x00000078) LCD QSPI DDR Control Register */
  293. volatile uint32_t SD_CNT; /*!< (@ 0x0000007C) LCD Send Data Counter Register */
  294. volatile uint32_t SD_CHECKSUM; /*!< (@ 0x00000080) LCD Send Data CheckSum Register */
  295. const volatile uint32_t RESERVED_5[3];
  296. volatile uint32_t TR_CTL; /*!< (@ 0x00000090) LCD TR-LCD Display Control Register */
  297. volatile uint32_t TR_IMG_SIZE; /*!< (@ 0x00000094) LCD TR-LCD Display Image Size Register */
  298. volatile uint32_t TR_TIM[6]; /*!< (@ 0x00000098) LCD TR-LCD Display Timing Register */
  299. } LCDC_Type; /*!< Size = 176 (0xB0) */
  300. /**
  301. * @brief DMA Channel Config Module (DMA_CHANCFG_Type)
  302. */
  303. typedef struct { /*!< DMA Channel Config Structure */
  304. volatile uint32_t CTL; /*!< (@ 0x00000000) Control Register */
  305. volatile uint32_t START; /*!< (@ 0x00000004) Start Register */
  306. volatile uint32_t SADDR; /*!< (@ 0x00000008) Source Address 0 Register */
  307. volatile uint32_t RESERVED_1[3];
  308. volatile uint32_t BC; /*!< (@ 0x00000018) Byte Counter Register */
  309. volatile uint32_t RC; /*!< (@ 0x0000001C) Remain Counter Register */
  310. volatile uint32_t RESERVED_2[696];
  311. volatile uint32_t LENGTH; /*!< (@ 0x00000B00) Line Length Register */
  312. volatile uint32_t COUNT; /*!< (@ 0x00000004) Line Count Register */
  313. volatile uint32_t SSTRIDE; /*!< (@ 0x00000008) Source Line Stride Register */
  314. volatile uint32_t RESERVED_3[1];
  315. volatile uint32_t REMAIN; /*!< (@ 0x00000010) Line Remain Register */
  316. volatile uint32_t BYTE_REMAIN_IN_LINE; /*!< (@ 0x00000014) Byte Remain in Transmitting Line Register */
  317. } LCDC_SDMA_Type; /*!< Size = 2840 (0xB18) */
  318. #endif /* ZEPHYR_DRIVERS_DISPLAY_CONTROLLER_LCDC_LEOPARD_H_ */