lcdc_lark.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  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_LARK_H_
  7. #define ZEPHYR_DRIVERS_DISPLAY_CONTROLLER_LCDC_LARK_H_
  8. #include <zephyr/types.h>
  9. /* Reg LCD_CTL */
  10. #define LCD_EN BIT(0)
  11. #define LCD_CLK_EN BIT(3)
  12. #define LCD_IF_SEL(x) ((uint32_t)(x) << 1)
  13. #define LCD_IF_SEL_MCU_8080 LCD_IF_SEL(0)
  14. #define LCD_IF_SEL_MCU_6880 LCD_IF_SEL(1)
  15. #define LCD_IF_SEL_SPI LCD_IF_SEL(3)
  16. #define LCD_IF_MASK LCD_IF_SEL(3)
  17. #define LCD_OUT_FORMAT_SEL(x) ((uint32_t)(x) << 4)
  18. #define LCD_OUT_FORMAT_RGB565 LCD_OUT_FORMAT_SEL(0)
  19. #define LCD_OUT_FORMAT_RGB666 LCD_OUT_FORMAT_SEL(1)
  20. #define LCD_OUT_FORMAT_RGB888 LCD_OUT_FORMAT_SEL(2)
  21. #define LCD_OUT_FORMAT_MASK LCD_OUT_FORMAT_SEL(3)
  22. #define LCD_IF_MLS_SEL(x) ((uint32_t)(x) << 8)
  23. #define LCD_IF_MSB_FIRST LCD_IF_MLS_SEL(0)
  24. #define LCD_IF_LSB_FIRST LCD_IF_MLS_SEL(1)
  25. #define LCD_IF_CE_SEL(x) ((uint32_t)(x) << 9)
  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_TE_EN BIT(12)
  33. #define LCD_HOLD_EN BIT(16)
  34. /* Reg LCD_DISP_SIZE */
  35. #define LCD_DISP_SIZE(w, h) ((((uint32_t)(h) - 1) << 16) | ((w) - 1))
  36. /* Reg LCD_CPU_CTL */
  37. #define LCD_CPU_START BIT(31)
  38. #define LCD_CPU_FEND_IRQ_EN BIT(30)
  39. #define LCD_CPU_SDT_SEL(type, rb_swap) (((uint32_t)(type) << 15) | ((uint32_t)(rb_swap) << 13))
  40. #define LCD_CPU_SDT_RGB565 LCD_SPI_SDT_SEL(0, 0)
  41. #define LCD_CPU_SDT_BGR565 LCD_SPI_SDT_SEL(0, 1)
  42. #define LCD_CPU_SDT_RGB666 LCD_SPI_SDT_SEL(1, 0)
  43. #define LCD_CPU_SDT_BGR666 LCD_SPI_SDT_SEL(1, 1)
  44. #define LCD_CPU_SDT_RGB888 LCD_SPI_SDT_SEL(2, 0)
  45. #define LCD_CPU_SDT_BGR888 LCD_SPI_SDT_SEL(2, 1)
  46. #define LCD_CPU_SDT_ARGB8888 LCD_SPI_SDT_SEL(3, 0)
  47. #define LCD_CPU_SDT_ABGR8888 LCD_SPI_SDT_SEL(3, 1)
  48. #define LCD_CPU_SDT_BGRA8888 LCD_SPI_SDT_SEL(4, 0)
  49. #define LCD_CPU_SDT_RGBA8888 LCD_SPI_SDT_SEL(4, 1)
  50. #define LCD_CPU_SDT_MASK LCD_SPI_SDT_SEL(7, 1)
  51. #define LCD_CPU_HWA_EN BIT(14)
  52. #define LCD_CPU_RX_DELAY_SEL(x) ((uint32_t)(x) << 8)
  53. #define LCD_CPU_RX_DELAY_MASK LCD_CPU_RX_DELAY_SEL(1)
  54. #define LCD_CPU_AHB_F565_SEL(x) ((uint32_t)(x) << 5)
  55. #define LCD_CPU_AHB_F565_16BIT LCD_CPU_AHB_F565_SEL(1)
  56. #define LCD_CPU_AHB_F565_24BIT LCD_CPU_AHB_F565_SEL(0)
  57. #define LCD_CPU_AHB_F565_MASK LCD_CPU_AHB_F565_SEL(1)
  58. #define LCD_CPU_RS(x) ((uint32_t)(x) << 4)
  59. #define LCD_CPU_RS_LOW LCD_CPU_RS(0)
  60. #define LCD_CPU_RS_HIGH LCD_CPU_RS(1)
  61. #define LCD_CPU_RS_MASK LCD_CPU_RS(1)
  62. #define LCD_CPU_SRC_SEL(x) ((uint32_t)(x) << 2)
  63. #define LCD_CPU_SRC_SEL_AHB LCD_CPU_SRC_SEL(0)
  64. #define LCD_CPU_SRC_SEL_DE LCD_CPU_SRC_SEL(1)
  65. #define LCD_CPU_SRC_SEL_DMA LCD_CPU_SRC_SEL(2)
  66. #define LCD_CPU_SRC_MASK LCD_CPU_SRC_SEL(3)
  67. #define LCD_CPU_AHB_DATA_SEL(x) ((uint32_t)(x) << 1)
  68. #define LCD_CPU_AHB_DATA_SEL_IMG LCD_CPU_AHB_DATA_SEL(0)
  69. #define LCD_CPU_AHB_DATA_SEL_CFG LCD_CPU_AHB_DATA_SEL(1)
  70. #define LCD_CPU_AHB_DATA_MASK LCD_CPU_AHB_DATA_SEL(1)
  71. #define LCD_CPU_AHB_CSX(x) ((uint32_t)(x) << 0)
  72. #define LCD_CPU_AHB_CSX_MASK LCD_CPU_AHB_CSX(1)
  73. /* Reg LCD_CPU_CLK */
  74. #define LCD_CPU_CLK(hdu, ldu, ldu2) \
  75. (((uint32_t)(((ldu2) - 1) & 0x3f) << 16) | \
  76. ((uint32_t)(((ldu) - 1) & 0x3f) << 8) | (((hdu) - 1) & 0x3f))
  77. /* Reg LCD_SPI_CTL */
  78. #define LCD_SPI_TYPE_SEL(x) ((x))
  79. #define LCD_SPI_3WIRE_TYPE1 LCD_SPI_TYPE_SEL(0)
  80. #define LCD_SPI_3WIRE_TYPE2 LCD_SPI_TYPE_SEL(1)
  81. #define LCD_SPI_4WIRE_TYPE1 LCD_SPI_TYPE_SEL(2)
  82. #define LCD_SPI_4WIRE_TYPE2 LCD_SPI_TYPE_SEL(3)
  83. #define LCD_QSPI LCD_SPI_TYPE_SEL(4)
  84. #define LCD_QSPI_SYNC LCD_SPI_TYPE_SEL(5)
  85. #define LCD_SPI_TYPE_MASK LCD_SPI_TYPE_SEL(7)
  86. #define LCD_SPI_CDX(x) ((uint32_t)(x) << 3)
  87. #define LCD_SPI_CDX_MASK LCD_SPI_CDX(0x1)
  88. #define LCD_SPI_AHB_CSX(x) ((uint32_t)(x) << 5)
  89. #define LCD_SPI_AHB_CSX_MASK LCD_SPI_AHB_CSX(1)
  90. /* sample edge: 0-rising edge; 1-falling edge */
  91. #define LCD_SPI_SCLK_POL(x) ((uint32_t)((x)) << 6)
  92. #define LCD_SPI_DCP_SEL(x) ((uint32_t)(x) << 7)
  93. #define LCD_SPI_DCP_SEL_NORMAL LCD_SPI_DCP_SEL(0)
  94. #define LCD_SPI_DCP_SEL_COMPAT LCD_SPI_DCP_SEL(1)
  95. #define LCD_SPI_DCP_MASK LCD_SPI_DCP_SEL(1)
  96. #define LCD_SPI_RDLC_SEL(x) ((uint32_t)((x) & 0x3) << 8)
  97. #define LCD_SPI_RDLC_MASK LCD_SPI_RDLC_SEL(0x3)
  98. #define LCD_SPI_SRC_SEL(x) ((uint32_t)((x) & 0x3) << 10)
  99. #define LCD_SPI_SRC_SEL_AHB LCD_SPI_SRC_SEL(0)
  100. #define LCD_SPI_SRC_SEL_DE LCD_SPI_SRC_SEL(1)
  101. #define LCD_SPI_SRC_SEL_DMA LCD_SPI_SRC_SEL(2)
  102. #define LCD_SPI_SRC_MASK LCD_SPI_SRC_SEL(3)
  103. #define LCD_SPI_DELAY_CHAIN_SEL(x) ((uint32_t)((x) & 0xf) << 12)
  104. #define LCD_SPI_DELAY_CHAIN_MASK LCD_SI_DELAY_CHAIN_SEL(0xf)
  105. #define LCD_SPI_DUAL_LANE_SEL(x) ((uint32_t)(x) << 16)
  106. #define LCD_SPI_DUAL_LANE_SEL_SINGLE LCD_SPI_DUAL_LANE_SEL(0)
  107. #define LCD_SPI_DUAL_LANE_SEL_DUAL LCD_SPI_DUAL_LANE_SEL(1)
  108. #define LCD_SPI_DUAL_LANE_MASK LCD_SPI_DUAL_LANE_SEL(1)
  109. #define LCD_SPI_AHB_F565_SEL(x) ((uint32_t)(x) << 17)
  110. #define LCD_SPI_AHB_F565_16BIT LCD_SPI_AHB_F565_SEL(1)
  111. #define LCD_SPI_AHB_F565_24BIT LCD_SPI_AHB_F565_SEL(0)
  112. #define LCD_SPI_AHB_F565_MASK LCD_SPI_AHB_F565_SEL(1)
  113. #define LCD_SPI_RWL(x) ((uint32_t)(x) << 18)
  114. #define LCD_SPI_RWL_MASK LCD_SPI_RWL(0x3f)
  115. #define LCD_SPI_SDT_SEL(type, rb_swap) (((uint32_t)(type) << 24) | ((uint32_t)(rb_swap) << 4))
  116. #define LCD_SPI_SDT_RGB565 LCD_SPI_SDT_SEL(0, 0)
  117. #define LCD_SPI_SDT_BGR565 LCD_SPI_SDT_SEL(0, 1)
  118. #define LCD_SPI_SDT_RGB666 LCD_SPI_SDT_SEL(1, 0)
  119. #define LCD_SPI_SDT_BGR666 LCD_SPI_SDT_SEL(1, 1)
  120. #define LCD_SPI_SDT_RGB888 LCD_SPI_SDT_SEL(2, 0)
  121. #define LCD_SPI_SDT_BGR888 LCD_SPI_SDT_SEL(2, 1)
  122. #define LCD_SPI_SDT_ARGB8888 LCD_SPI_SDT_SEL(3, 0)
  123. #define LCD_SPI_SDT_ABGR8888 LCD_SPI_SDT_SEL(3, 1)
  124. #define LCD_SPI_SDT_BGRA8888 LCD_SPI_SDT_SEL(4, 0)
  125. #define LCD_SPI_SDT_RGBA8888 LCD_SPI_SDT_SEL(4, 1)
  126. #define LCD_SPI_SDT_MASK LCD_SPI_SDT_SEL(7, 1)
  127. #define LCD_SPI_HWA_EN BIT(27)
  128. #define LCD_SPI_AHB_CFG_DATA BIT(28)
  129. #define LCD_SPI_FEND_PD_EN BIT(29)
  130. #define LCD_SPI_FTC_IRQ_EN BIT(30)
  131. #define LCD_SPI_START BIT(31)
  132. /* Reg LCD_QSPI_CMD{1} */
  133. #define LCD_QSPI_CMD(cmd, addr) (((uint32_t)(cmd) << 24) | ((addr) & 0xffffff))
  134. /* Reg LCD_QSI_QSYNC_TIM (vfp and vbp have inverse meanings with the normal lcd RGB timing) */
  135. #define LCD_QSPI_SYNC_TIM(hp, vfp, vbp) \
  136. (((uint32_t)((hp) & 0xffff) << 16) | \
  137. ((uint32_t)(((vbp) - 1) & 0xff) << 8) | (((vfp) - 1) & 0xff))
  138. /* Reg LCD_QSPI_IMG_SIZE */
  139. #define LCD_QSPI_IMG_SIZE(w, h) ((((uint32_t)(h) - 1) << 16) | ((w) - 1))
  140. /* Reg LCD_QSPI_DTAS */
  141. #define LCD_QSPI_DTAS(clk_en_in_delay, delay_cycles) \
  142. ((((uint32_t)clk_en_in_delay) << 16) | ((delay_cycles) & 0xffff))
  143. /* Reg DE_INTERFACE_CTL */
  144. #define LCD_DE_CTL_UNIT(x) (((uint32_t)(x) & 0x3FF) << 20)
  145. #define LCD_DE_VFP(x) (((uint32_t)(x) & 0x3FF) << 10)
  146. #define LCD_DE_VSW(x) (((uint32_t)(x) & 0x3FF) << 0)
  147. /* Reg LCD_PENDING */
  148. #define LCD_STAT_QSPI_SYNC_FTC BIT(5)
  149. #define LCD_STAT_TE BIT(4)
  150. #define LCD_STAT_SPI_FTC BIT(3)
  151. #define LCD_STAT_CPU_FTC BIT(2)
  152. #define LCD_STAT_FTC (LCD_STAT_QSPI_SYNC_FTC | LCD_STAT_SPI_FTC | LCD_STAT_CPU_FTC)
  153. /**
  154. * @brief LCDC Module (LCDC)
  155. */
  156. typedef struct { /*!< (@ 0x40064000) LCDC Structure */
  157. volatile uint32_t CTL; /*!< (@ 0x00000000) LCD Control Register */
  158. const volatile uint32_t RESERVED1;
  159. volatile uint32_t DISP_SIZE; /*!< (@ 0x00000008) LCD DMA Source Display Size Register */
  160. const volatile uint32_t RESERVED2[4];
  161. volatile uint32_t CPU_CTL; /*!< (@ 0x0000001C) LCD CPU Mode Control Register */
  162. volatile uint32_t DATA; /*!< (@ 0x00000020) LCD Data Register */
  163. volatile uint32_t CPU_CLK; /*!< (@ 0x00000024) LCD CPU Mode Clk Control Register */
  164. volatile uint32_t TPL; /*!< (@ 0x00000028) LCD Transfer Pixel Length Register */
  165. volatile uint32_t SPI_CTL; /*!< (@ 0x0000002C) LCD Serial Interface Control Register */
  166. const volatile uint32_t RESERVED3;
  167. volatile uint32_t QSPI_CMD; /*!< (@ 0x00000034) LCD Quad Serial Command Register */
  168. volatile uint32_t QSPI_CMD1; /*!< (@ 0x00000038) LCD Quad Serial Command Register */
  169. volatile uint32_t QSPI_SYNC_TIM; /*!< (@ 0x0000003C) LCD Quad SPI Sync Timing Register */
  170. volatile uint32_t QSPI_IMG_SIZE; /*!< (@ 0x00000040) LCD QSPI Image Size Register */
  171. volatile uint32_t DE_INTERFACE_CTL; /*!< (@ 0x00000044) DE Interface Control Register */
  172. volatile uint32_t PENDING; /*!< (@ 0x00000048) LCD Pending Register */
  173. volatile uint32_t QSPI_DTAS; /*!< (@ 0x0000004C) QSPI_SYNC interface control register */
  174. volatile uint32_t DATA_1[7]; /*!< (@ 0x00000050) LCD Data Register */
  175. } LCDC_Type; /*!< Size = 104 (0x68) */
  176. /**
  177. * @brief DMA Channel Config Module (DMA_CHANCFG_Type)
  178. */
  179. typedef struct { /*!< DMA Channel Config Structure */
  180. volatile uint32_t CTL; /*!< (@ 0x00000000) Control Register */
  181. volatile uint32_t START; /*!< (@ 0x00000004) Start Register */
  182. volatile uint32_t SADDR0; /*!< (@ 0x00000008) Source Address 0 Register */
  183. volatile uint32_t SADDR1; /*!< (@ 0x0000000C) Source Address 1 Register */
  184. volatile uint32_t DADDR0; /*!< (@ 0x00000010) Destination Address 0 Register */
  185. volatile uint32_t DADDR1; /*!< (@ 0x00000014) Destination Address 0 Register */
  186. volatile uint32_t BC; /*!< (@ 0x00000018) Byte Counter Register */
  187. volatile uint32_t RC; /*!< (@ 0x0000001C) Remain Counter Register */
  188. } LCDC_DMACHAN_CTL_Type; /*!< Size = 32 (0x20) */
  189. /**
  190. * @brief DMA Line Config Module (DMA_LINECFG_Type)
  191. */
  192. typedef struct { /*!< DMA Line Config Structure */
  193. volatile uint32_t LENGTH; /*!< (@ 0x00000000) Line Length Register */
  194. volatile uint32_t COUNT; /*!< (@ 0x00000004) Line Count Register */
  195. volatile uint32_t STRIDE; /*!< (@ 0x00000008) Line Stride Register */
  196. volatile uint32_t REMAIN; /*!< (@ 0x0000000C) Line Remain Register */
  197. volatile uint32_t BYTE_REMAIN_IN_LINE; /*!< (@ 0x00000010) Byte Remain in Transmitting Line Register */
  198. } LCDC_DMALINE_CTL_Type; /*!< Size = 20 (0x14) */
  199. #endif /* ZEPHYR_DRIVERS_DISPLAY_CONTROLLER_LCDC_LARK_H_ */