hpm_cam_drv.h 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318
  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 mask
  32. */
  33. typedef enum {
  34. cam_irq_unsupported_configuration = CAM_INT_EN_ERR_CL_BWID_CFG_INT_EN_MASK,
  35. cam_irq_hist_calculation_done = CAM_INT_EN_HIST_DONE_INT_EN_MASK,
  36. cam_irq_hresponse_error = CAM_INT_EN_HRESP_ERR_EN_MASK,
  37. cam_irq_end_of_frame = CAM_INT_EN_EOF_INT_EN_MASK,
  38. cam_irq_rx_fifo_overrun = CAM_INT_EN_RF_OR_INTEN_MASK,
  39. cam_irq_fb2_dma_transfer_done = CAM_INT_EN_FB2_DMA_DONE_INTEN_MASK,
  40. cam_irq_fb1_dma_transfer_done = CAM_INT_EN_FB1_DMA_DONE_INTEN_MASK,
  41. cam_irq_start_of_frame = CAM_INT_EN_SOF_INT_EN_MASK
  42. } cam_irq_mask_t;
  43. /**
  44. * @brief CAM status mask
  45. */
  46. typedef enum {
  47. cam_status_unsupported_configuration = CAM_STA_ERR_CL_BWID_CFG_MASK,
  48. cam_status_hist_calculation_done = CAM_STA_HIST_DONE_MASK,
  49. cam_status_rx_fifo_overrun = CAM_STA_RF_OR_INT_MASK,
  50. cam_status_fb2_dma_transfer_done = CAM_STA_DMA_TSF_DONE_FB2_MASK,
  51. cam_status_fb1_dma_transfer_done = CAM_STA_DMA_TSF_DONE_FB1_MASK,
  52. cam_status_end_of_frame = CAM_STA_EOF_INT_MASK,
  53. cam_status_start_of_frame = CAM_STA_SOF_INT_MASK,
  54. cam_status_hresponse_error = CAM_STA_HRESP_ERR_INT_MASK
  55. } cam_status_mask_t;
  56. /**
  57. * @brief CAM input color format
  58. */
  59. #define CAM_COLOR_FORMAT_RGB888 (CAM_CR1_COLOR_FORMATS_SET(2))
  60. #define CAM_COLOR_FORMAT_RGB565 (CAM_CR1_COLOR_FORMATS_SET(4))
  61. #define CAM_COLOR_FORMAT_RGB555 (CAM_CR1_COLOR_FORMATS_SET(6))
  62. #define CAM_COLOR_FORMAT_YCBCR422 (CAM_CR1_COLOR_FORMATS_SET(7))
  63. #define CAM_COLOR_FORMAT_YUV444 (CAM_CR1_COLOR_FORMATS_SET(8))
  64. #define CAM_COLOR_FORMAT_RAW8 (CAM_CR1_COLOR_FORMATS_SET(0xf))
  65. #define CAM_COLOR_FORMAT_UNSUPPORTED (1)
  66. /**
  67. * @brief CAM config
  68. */
  69. typedef struct {
  70. uint32_t width;
  71. uint32_t height;
  72. bool pixclk_sampling_falling;
  73. bool hsync_active_low;
  74. bool vsync_active_low;
  75. bool color_ext;
  76. bool data_pack_msb;
  77. bool enable_buffer2;
  78. uint16_t data_store_mode;
  79. uint8_t color_format;
  80. uint8_t sensor_bitwidth;
  81. uint32_t buffer1;
  82. uint32_t buffer2;
  83. display_yuv2rgb_config_t csc_config;
  84. } cam_config_t;
  85. /**
  86. * @brief cam input pixel byte order
  87. */
  88. typedef enum {
  89. cam_input_pixel_yuv444 = 0, /* Y[23:16] U[15:8] V[7:0] */
  90. cam_input_pixel_yvu444 = 1, /* Y[23:16] V[15:8] U[7:0] */
  91. cam_input_pixel_uyv444 = 2, /* U[23:16] Y[15:8] V[7:0] */
  92. cam_input_pixel_vyu444 = 3, /* V[23:16] Y[15:8] U[7:0] */
  93. cam_input_pixel_uvy444 = 4, /* U[23:16] V[15:8] Y[7:0] */
  94. cam_input_pixel_vuy444 = 5, /* V[23:16] U[15:8] Y[7:0] */
  95. cam_input_pixel_yuyv422 = 0, /* Y0[31:24] U0[23:16] Y1[15:8] V0[7:0] */
  96. cam_input_pixel_yvyu422 = 1, /* Y0[31:24] V0[23:16] Y1[15:8] U0[7:0] */
  97. cam_input_pixel_uyvy422 = 2, /* U0[31:24] Y0[23:16] V0[15:8] Y1[7:0] */
  98. cam_input_pixel_vyuy422 = 3, /* V0[31:24] Y0[23:16] U0[15:8] Y1[7:0] */
  99. cam_input_pixel_rgb565 = 0, /* R[15:11] G[10:8] G[7:5] B[4:0] */
  100. cam_input_pixel_bgr565 = 1, /* B[15:11] G[10:8] G[7:5] R[4:0] */
  101. cam_input_pixel_gbr888 = 0, /* G[23:16] B[15:8] R[7:0] */
  102. cam_input_pixel_grb888 = 1, /* G[23:16] R[15:8] B[7:0] */
  103. cam_input_pixel_bgr888 = 2, /* B[23:16] G[15:8] R[7:0] */
  104. cam_input_pixel_rgb888 = 3, /* R[23:16] G[15:8] B[7:0] */
  105. cam_input_pixel_brg888 = 4, /* B[23:16] R[15:8] G[7:0] */
  106. cam_input_pixel_rbg888 = 5, /* R[23:16] B[15:8] G[7:0] */
  107. } cam_input_pixel_byte_order_t;
  108. #ifdef __cplusplus
  109. extern "C" {
  110. #endif
  111. /**
  112. * @brief cam get pixel format value
  113. *
  114. * @param format display_pixel_format_t
  115. * @return uint32_t cam color format, like CAM_COLOR_FORMAT_RGB565
  116. */
  117. static inline uint32_t cam_get_pixel_format(display_pixel_format_t format)
  118. {
  119. switch (format) {
  120. case display_pixel_format_rgb565:
  121. return CAM_COLOR_FORMAT_RGB565;
  122. case display_pixel_format_ycbcr422:
  123. return CAM_COLOR_FORMAT_YCBCR422;
  124. case display_pixel_format_raw8:
  125. return CAM_COLOR_FORMAT_RAW8;
  126. default:
  127. return CAM_COLOR_FORMAT_UNSUPPORTED;
  128. }
  129. }
  130. /**
  131. * @brief CAM set high and low limits of color key
  132. *
  133. * @param [in] ptr CAM base address
  134. * @param [in] high color key high limits
  135. * @param [in] low color key low limits
  136. */
  137. static inline void cam_set_color_key(CAM_Type *ptr, uint32_t high, uint32_t low)
  138. {
  139. ptr->CLRKEY_LOW = CAM_CLRKEY_LOW_LIMIT_SET(low);
  140. ptr->CLRKEY_HIGH = CAM_CLRKEY_HIGH_LIMIT_SET(high);
  141. }
  142. /**
  143. * @brief CAM get default config
  144. *
  145. * @param [in] ptr CAM base address
  146. * @param [out] config cam_config_t
  147. * @param [in] pixel_format display_pixel_format_t
  148. */
  149. void cam_get_default_config(CAM_Type *ptr, cam_config_t *config, display_pixel_format_t pixel_format);
  150. /**
  151. * @brief CAM init
  152. *
  153. * @param [in] ptr CAM base address
  154. * @param [in] config cam_config_t
  155. *
  156. * @retval hpm_stat_t status_invalid_argument or status_success
  157. */
  158. hpm_stat_t cam_init(CAM_Type *ptr, cam_config_t *config);
  159. /**
  160. * @brief CAM start
  161. *
  162. * @param [in] ptr CAM base address
  163. */
  164. void cam_start(CAM_Type *ptr);
  165. /**
  166. * @brief CAM stop
  167. *
  168. * @param [in] ptr CAM base address
  169. */
  170. void cam_stop(CAM_Type *ptr);
  171. void cam_update_buffer(CAM_Type *ptr, uint32_t buffer);
  172. /**
  173. * @brief CAM enable binary output
  174. *
  175. * This function is used to enable CAM binary output after
  176. * the CAM is initialized by the cam_init.
  177. *
  178. * @param [in] ptr CAM base address
  179. */
  180. static inline void cam_enable_binary_output(CAM_Type *ptr)
  181. {
  182. ptr->CR20 |= CAM_CR20_BINARY_EN_MASK;
  183. }
  184. /**
  185. * @brief CAM disable binary output
  186. *
  187. * @param [in] ptr CAM base address
  188. */
  189. static inline void cam_disable_binary_output(CAM_Type *ptr)
  190. {
  191. ptr->CR20 &= ~CAM_CR20_BINARY_EN_MASK;
  192. }
  193. /**
  194. * @brief CAM set binary threshold
  195. *
  196. * @param [in] ptr CAM base address
  197. * @param [in] threshold threshold value of binary output
  198. */
  199. static inline void cam_set_binary_threshold(CAM_Type *ptr, uint8_t threshold)
  200. {
  201. ptr->CR20 = (ptr->CR20 & (~CAM_CR20_THRESHOLD_MASK)) | CAM_CR20_THRESHOLD_SET(threshold);
  202. }
  203. /**
  204. * @brief CAM enable argb8888 output
  205. *
  206. * This function is used to enable CAM argb8888 pixel output after the CAM is initialized by
  207. * the cam_init and input pixel byte order is configured by the cam_set_input_pixel_byte_order.
  208. *
  209. * @param [in] ptr CAM base address
  210. */
  211. static inline void cam_enable_argb8888_output(CAM_Type *ptr)
  212. {
  213. ptr->CR1 |= CAM_CR1_COLOR_EXT_MASK;
  214. }
  215. /**
  216. * @brief CAM disable argb8888 output
  217. *
  218. * @param [in] ptr CAM base address
  219. */
  220. static inline void cam_disable_argb8888_output(CAM_Type *ptr)
  221. {
  222. ptr->CR1 &= ~CAM_CR1_COLOR_EXT_MASK;
  223. }
  224. /**
  225. * @brief CAM set input pixel byte order
  226. *
  227. * @param [in] ptr CAM base address
  228. * @param [in] order cam_input_pixel_byte_order_t
  229. */
  230. static inline void cam_set_input_pixel_byte_order(CAM_Type *ptr, cam_input_pixel_byte_order_t order)
  231. {
  232. ptr->CR2 = (ptr->CR2 & (~CAM_CR2_CLRBITFORMAT_MASK)) | CAM_CR2_CLRBITFORMAT_SET(order);
  233. }
  234. /**
  235. * @brief CAM enable irq
  236. *
  237. * @param [in] ptr CAM base address
  238. * @param [in] irq_mask irq mask value
  239. */
  240. static inline void cam_enable_irq(CAM_Type *ptr, cam_irq_mask_t irq_mask)
  241. {
  242. ptr->INT_EN |= irq_mask;
  243. }
  244. /**
  245. * @brief CAM disable irq
  246. *
  247. * @param [in] ptr CAM base address
  248. * @param [in] irq_mask irq mask value
  249. */
  250. static inline void cam_disable_irq(CAM_Type *ptr, cam_irq_mask_t irq_mask)
  251. {
  252. ptr->INT_EN &= ~irq_mask;
  253. }
  254. /**
  255. * @brief Check CAM status according to the given status mask
  256. *
  257. * @param [in] ptr CAM base address
  258. * @param sta_mask sta_mask refer to cam_status_mask_t
  259. * @retval true if any bit in given mask is set
  260. * @retval false if none of any bit in given mask is set
  261. */
  262. static inline bool cam_check_status(CAM_Type *ptr, cam_status_mask_t sta_mask)
  263. {
  264. return ((ptr->STA & sta_mask) != 0U) ? true : false;
  265. }
  266. /**
  267. * @brief Clear CAM status according to the given status mask
  268. *
  269. * @param [in] ptr CAM base address
  270. * @param sta_mask sta_mask refer to cam_status_mask_t
  271. */
  272. static inline void cam_clear_status(CAM_Type *ptr, cam_status_mask_t sta_mask)
  273. {
  274. ptr->STA |= sta_mask;
  275. }
  276. /**
  277. * @}
  278. *
  279. */
  280. #ifdef __cplusplus
  281. }
  282. #endif
  283. #endif /* HPM_CAM_DRV_H */