hpm_cam_drv.h 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249
  1. /*
  2. * Copyright (c) 2021 hpmicro
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. *
  6. */
  7. #ifndef HPM_CAM_DRV_H
  8. #define HPM_CAM_DRV_H
  9. #include "hpm_common.h"
  10. #include "hpm_display_common.h"
  11. #include "hpm_cam_regs.h"
  12. /**
  13. * @brief CAM driver APIs
  14. * @defgroup cam_interface CAM driver APIs
  15. * @ingroup io_interfaces
  16. * @{
  17. */
  18. /**
  19. * @brief CAM data store mode
  20. */
  21. #define CAM_DATA_STORE_MODE_NORMAL (0U)
  22. #define CAM_DATA_STORE_MODE_Y_UV_PLANES (CAM_CR1_STORAGE_MODE_SET(1))
  23. #define CAM_DATA_STORE_MODE_Y_ONLY (CAM_CR1_STORAGE_MODE_SET(2))
  24. #define CAM_DATA_STORE_MODE_BINARY (CAM_CR1_STORAGE_MODE_SET(3))
  25. /**
  26. * @brief CAM sensor bitwidth
  27. */
  28. #define CAM_SENSOR_BITWIDTH_8BITS (CAM_CR1_SENSOR_BIT_WIDTH_SET(0))
  29. #define CAM_SENSOR_BITWIDTH_10BITS (CAM_CR1_SENSOR_BIT_WIDTH_SET(1))
  30. /**
  31. * @brief CAM IRQ flag
  32. */
  33. #define CAM_IRQ_UNSUPPORTED_CONFIGURATION (CAM_INT_EN_ERR_CL_BWID_CFG_INT_EN_MASK)
  34. #define CAM_IRQ_HIST_CALCULATION_DONE (CAM_INT_EN_HIST_DONE_INT_EN_MASK)
  35. #define CAM_IRQ_HRESPONSE_ERROR (CAM_INT_EN_HRESP_ERR_EN_MASK)
  36. #define CAM_IRQ_END_OF_FRAME (CAM_INT_EN_EOF_INT_EN_MASK)
  37. #define CAM_IRQ_STAT_FIFO_OVERRUN (CAM_INT_EN_SF_OR_INT_EN_MASK)
  38. #define CAM_IRQ_RX_FIFO_OVERRUN (CAM_INT_EN_RF_OR_INT_EN_MASK)
  39. #define CAM_IRQ_STAT_FIFO_DMA_TRANSFER_DONE (CAM_INT_EN_SFF_DMA_DONE_INT_EN_MASK)
  40. #define CAM_IRQ_FB2_DMA_TRANSFER_DONE (CAM_INT_EN_FB2_DMA_DONE_INT_EN_MASK)
  41. #define CAM_IRQ_FB1_DMA_TRANSFER_DONE (CAM_INT_EN_FB1_DMA_DONE_INT_EN_MASK)
  42. #define CAM_IRQ_START_OF_FRAME (CAM_INT_EN_SOF_INT_EN_MASK)
  43. /**
  44. * @brief CAM status flag
  45. */
  46. #define CAM_STATUS_UNSUPPORTED_CONFIGURATION (CAM_STA_ERR_CL_BWID_CFG_MASK)
  47. #define CAM_STATUS_HIST_CALCULATION_DONE (CAM_STA_HIST_DONE_MASK)
  48. #define CAM_STATUS_STAT_FIFO_OVERRUN (CAM_STA_SF_OR_INT_MASK)
  49. #define CAM_STATUS_RX_FIFO_OVERRUN (CAM_STA_RF_OR_INT_MASK)
  50. #define CAM_STATUS_STAT_FIFO_DMA_TRANSFER_DONE (CAM_STA_DMA_TSF_DONE_SFF_MASK)
  51. #define CAM_STATUS_STAT_FIFO_FULL (CAM_STA_STATFF_INT_MASK)
  52. #define CAM_STATUS_FB2_DMA_TRANSFER_DONE (CAM_STA_DMA_TSF_DONE_FB2_MASK)
  53. #define CAM_STATUS_FB1_DMA_TRANSFER_DONE (CAM_STA_DMA_TSF_DONE_FB1_MASK)
  54. #define CAM_STATUS_RX_FIFO_FULL (CAM_STA_RXFF_INT_MASK)
  55. #define CAM_STATUS_END_OF_FRAME (CAM_STA_EOF_INT_MASK)
  56. #define CAM_STATUS_START_OF_FRAME (CAM_STA_SOF_INT_MASK)
  57. #define CAM_STATUS_HRESPONSE_ERROR (CAM_STA_HRESP_ERR_INT_MASK)
  58. #define CAM_STATUS_DATA_READY (CAM_STA_DRDY_MASK)
  59. /**
  60. * @brief CAM input color format
  61. */
  62. #define CAM_COLOR_FORMAT_RGB888 (CAM_CR1_COLOR_FORMATS_SET(2))
  63. #define CAM_COLOR_FORMAT_RGB565 (CAM_CR1_COLOR_FORMATS_SET(4))
  64. #define CAM_COLOR_FORMAT_RGB555 (CAM_CR1_COLOR_FORMATS_SET(6))
  65. #define CAM_COLOR_FORMAT_YCBCR422 (CAM_CR1_COLOR_FORMATS_SET(7))
  66. #define CAM_COLOR_FORMAT_YUV444 (CAM_CR1_COLOR_FORMATS_SET(8))
  67. /**
  68. * @brief CAM config
  69. */
  70. typedef struct {
  71. uint32_t width;
  72. uint32_t height;
  73. bool pixclk_sampling_falling;
  74. bool hsync_active_low;
  75. bool vsync_active_low;
  76. bool color_ext;
  77. bool data_pack_msb;
  78. bool enable_buffer2;
  79. uint8_t data_store_mode;
  80. uint8_t color_format;
  81. uint8_t sensor_bitwidth;
  82. uint32_t buffer1;
  83. uint32_t buffer2;
  84. display_yuv2rgb_config_t csc_config;
  85. } cam_config_t;
  86. /**
  87. * @brief cam input pixel byte order
  88. */
  89. typedef enum {
  90. cam_input_pixel_yuv444 = 0, /* Y[23:16] U[15:8] V[7:0] */
  91. cam_input_pixel_yvu444 = 1, /* Y[23:16] V[15:8] U[7:0] */
  92. cam_input_pixel_uyv444 = 2, /* U[23:16] Y[15:8] V[7:0] */
  93. cam_input_pixel_vyu444 = 3, /* V[23:16] Y[15:8] U[7:0] */
  94. cam_input_pixel_uvy444 = 4, /* U[23:16] V[15:8] Y[7:0] */
  95. cam_input_pixel_vuy444 = 5, /* V[23:16] U[15:8] Y[7:0] */
  96. cam_input_pixel_yuyv422 = 0, /* Y0[31:24] U0[23:16] Y1[15:8] V0[7:0] */
  97. cam_input_pixel_yvyu422 = 1, /* Y0[31:24] V0[23:16] Y1[15:8] U0[7:0] */
  98. cam_input_pixel_uyvy422 = 2, /* U0[31:24] Y0[23:16] V0[15:8] Y1[7:0] */
  99. cam_input_pixel_vyuy422 = 3, /* V0[31:24] Y0[23:16] U0[15:8] Y1[7:0] */
  100. cam_input_pixel_rgb565 = 0, /* R[15:11] G[10:8] G[7:5] B[4:0] */
  101. cam_input_pixel_bgr565 = 1, /* B[15:11] G[10:8] G[7:5] R[4:0] */
  102. cam_input_pixel_gbr888 = 0, /* G[23:16] B[15:8] R[7:0] */
  103. cam_input_pixel_grb888 = 1, /* G[23:16] R[15:8] B[7:0] */
  104. cam_input_pixel_bgr888 = 2, /* B[23:16] G[15:8] R[7:0] */
  105. cam_input_pixel_rgb888 = 3, /* R[23:16] G[15:8] B[7:0] */
  106. cam_input_pixel_brg888 = 4, /* B[23:16] R[15:8] G[7:0] */
  107. cam_input_pixel_rbg888 = 5, /* R[23:16] B[15:8] G[7:0] */
  108. } cam_input_pixel_byte_order_t;
  109. #ifdef __cplusplus
  110. extern "C" {
  111. #endif
  112. /**
  113. * @brief CAM set high and low limits of color key
  114. *
  115. * @param [in] ptr CAM base address
  116. * @param [in] high color key high limits
  117. * @param [in] low color key low limits
  118. */
  119. static inline void cam_set_color_key(CAM_Type *ptr, uint32_t high, uint32_t low)
  120. {
  121. ptr->CLRKEY_LOW = CAM_CLRKEY_LOW_LIMIT_SET(low);
  122. ptr->CLRKEY_HIGH = CAM_CLRKEY_HIGH_LIMIT_SET(high);
  123. }
  124. /**
  125. * @brief CAM get default config
  126. *
  127. * @param [in] ptr CAM base address
  128. * @param [out] config cam_config_t
  129. * @param [in] pixel_format display_pixel_format_t
  130. */
  131. void cam_get_default_config(CAM_Type *ptr, cam_config_t *config, display_pixel_format_t pixel_format);
  132. /**
  133. * @brief CAM init
  134. *
  135. * @param [in] ptr CAM base address
  136. * @param [in] config cam_config_t
  137. *
  138. * @retval hpm_stat_t status_invalid_argument or status_success
  139. */
  140. hpm_stat_t cam_init(CAM_Type *ptr, cam_config_t *config);
  141. /**
  142. * @brief CAM start
  143. *
  144. * @param [in] ptr CAM base address
  145. */
  146. void cam_start(CAM_Type *ptr);
  147. /**
  148. * @brief CAM stop
  149. *
  150. * @param [in] ptr CAM base address
  151. */
  152. void cam_stop(CAM_Type *ptr);
  153. /**
  154. * @brief CAM enable binary output
  155. *
  156. * This function is used to enable CAM binary output after
  157. * the CAM is initialized by the cam_init.
  158. *
  159. * @param [in] ptr CAM base address
  160. */
  161. static inline void cam_enable_binary_output(CAM_Type *ptr)
  162. {
  163. ptr->CR20 |= CAM_CR20_BINARY_EN_MASK;
  164. }
  165. /**
  166. * @brief CAM disable binary output
  167. *
  168. * @param [in] ptr CAM base address
  169. */
  170. static inline void cam_disable_binary_output(CAM_Type *ptr)
  171. {
  172. ptr->CR20 &= ~CAM_CR20_BINARY_EN_MASK;
  173. }
  174. /**
  175. * @brief CAM set binary threshold
  176. *
  177. * @param [in] ptr CAM base address
  178. * @param [in] threshold threshold value of binary output
  179. */
  180. static inline void cam_set_binary_threshold(CAM_Type *ptr, uint8_t threshold)
  181. {
  182. ptr->CR20 = (ptr->CR20 & (~CAM_CR20_THRESHOLD_MASK)) | CAM_CR20_THRESHOLD_SET(threshold);
  183. }
  184. /**
  185. * @brief CAM enable argb8888 output
  186. *
  187. * This function is used to enable CAM argb8888 pixel output after the CAM is initialized by
  188. * the cam_init and input pixel byte order is configured by the cam_set_input_pixel_byte_order.
  189. *
  190. * @param [in] ptr CAM base address
  191. */
  192. static inline void cam_enable_argb8888_output(CAM_Type *ptr)
  193. {
  194. ptr->CR1 |= CAM_CR1_COLOR_EXT_MASK;
  195. }
  196. /**
  197. * @brief CAM disable argb8888 output
  198. *
  199. * @param [in] ptr CAM base address
  200. */
  201. static inline void cam_disable_argb8888_output(CAM_Type *ptr)
  202. {
  203. ptr->CR1 &= ~CAM_CR1_COLOR_EXT_MASK;
  204. }
  205. /**
  206. * @brief CAM set input pixel byte order
  207. *
  208. * @param [in] ptr CAM base address
  209. * @param [in] order cam_input_pixel_byte_order_t
  210. */
  211. static inline void cam_set_input_pixel_byte_order(CAM_Type *ptr, cam_input_pixel_byte_order_t order)
  212. {
  213. ptr->CR2 = (ptr->CR2 & (~CAM_CR2_CLRBITFORMAT_MASK)) | CAM_CR2_CLRBITFORMAT_SET(order);
  214. }
  215. /**
  216. * @}
  217. *
  218. */
  219. #ifdef __cplusplus
  220. }
  221. #endif
  222. #endif /* HPM_CAM_DRV_H */