123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352 |
- /*
- * Copyright (c) 2021 HPMicro
- *
- * SPDX-License-Identifier: BSD-3-Clause
- *
- */
- #ifndef HPM_CAM_DRV_H
- #define HPM_CAM_DRV_H
- #include "hpm_common.h"
- #include "hpm_display_common.h"
- #include "hpm_cam_regs.h"
- #include "hpm_soc_feature.h"
- /**
- * @brief CAM driver APIs
- * @defgroup cam_interface CAM driver APIs
- * @ingroup io_interfaces
- * @{
- */
- /**
- * @brief CAM data store mode
- */
- #define CAM_DATA_STORE_MODE_NORMAL (0U)
- #define CAM_DATA_STORE_MODE_Y_UV_PLANES (CAM_CR1_STORAGE_MODE_SET(1))
- #define CAM_DATA_STORE_MODE_Y_ONLY (CAM_CR1_STORAGE_MODE_SET(2))
- #define CAM_DATA_STORE_MODE_BINARY (CAM_CR1_STORAGE_MODE_SET(3))
- /**
- * @brief CAM sensor bitwidth
- */
- #define CAM_SENSOR_BITWIDTH_8BITS (CAM_CR1_SENSOR_BIT_WIDTH_SET(0))
- #define CAM_SENSOR_BITWIDTH_10BITS (CAM_CR1_SENSOR_BIT_WIDTH_SET(1))
- #define CAM_SENSOR_BITWIDTH_24BITS (CAM_CR1_SENSOR_BIT_WIDTH_SET(3))
- /**
- * @brief CAM IRQ mask
- */
- typedef enum {
- cam_irq_unsupported_configuration = CAM_INT_EN_ERR_CL_BWID_CFG_INT_EN_MASK,
- cam_irq_hist_calculation_done = CAM_INT_EN_HIST_DONE_INT_EN_MASK,
- cam_irq_hresponse_error = CAM_INT_EN_HRESP_ERR_EN_MASK,
- cam_irq_end_of_frame = CAM_INT_EN_EOF_INT_EN_MASK,
- cam_irq_rx_fifo_overrun = CAM_INT_EN_RF_OR_INTEN_MASK,
- cam_irq_fb2_dma_transfer_done = CAM_INT_EN_FB2_DMA_DONE_INTEN_MASK,
- cam_irq_fb1_dma_transfer_done = CAM_INT_EN_FB1_DMA_DONE_INTEN_MASK,
- cam_irq_start_of_frame = CAM_INT_EN_SOF_INT_EN_MASK
- } cam_irq_mask_t;
- /**
- * @brief CAM status mask
- */
- typedef enum {
- cam_status_unsupported_configuration = CAM_STA_ERR_CL_BWID_CFG_MASK,
- cam_status_hist_calculation_done = CAM_STA_HIST_DONE_MASK,
- cam_status_rx_fifo_overrun = CAM_STA_RF_OR_INT_MASK,
- cam_status_fb2_dma_transfer_done = CAM_STA_DMA_TSF_DONE_FB2_MASK,
- cam_status_fb1_dma_transfer_done = CAM_STA_DMA_TSF_DONE_FB1_MASK,
- cam_status_end_of_frame = CAM_STA_EOF_INT_MASK,
- cam_status_start_of_frame = CAM_STA_SOF_INT_MASK,
- cam_status_hresponse_error = CAM_STA_HRESP_ERR_INT_MASK
- } cam_status_mask_t;
- /**
- * @brief CAM input color format
- */
- #define CAM_COLOR_FORMAT_RGB888 (CAM_CR1_COLOR_FORMATS_SET(2))
- #define CAM_COLOR_FORMAT_RGB565 (CAM_CR1_COLOR_FORMATS_SET(4))
- #define CAM_COLOR_FORMAT_RGB555 (CAM_CR1_COLOR_FORMATS_SET(6))
- #define CAM_COLOR_FORMAT_YCBCR422 (CAM_CR1_COLOR_FORMATS_SET(7))
- #define CAM_COLOR_FORMAT_YUV444 (CAM_CR1_COLOR_FORMATS_SET(8))
- #define CAM_COLOR_FORMAT_RAW8 (CAM_CR1_COLOR_FORMATS_SET(0xf))
- #define CAM_COLOR_FORMAT_UNSUPPORTED (1)
- /**
- * @brief CAM config
- */
- typedef struct {
- uint32_t width;
- uint32_t height;
- bool pixclk_sampling_falling;
- #if defined(HPM_IP_FEATURE_CAM_INV_DEN) && (HPM_IP_FEATURE_CAM_INV_DEN == 1)
- bool de_active_low; /* de_active_low must is same with hsync_active_low when dvp be used */
- #endif
- bool hsync_active_low;
- bool vsync_active_low;
- bool color_ext;
- bool data_pack_msb;
- uint16_t data_store_mode;
- uint8_t color_format;
- uint8_t sensor_bitwidth;
- uint32_t buffer1;
- uint32_t buffer2;
- display_yuv2rgb_config_t csc_config;
- } cam_config_t;
- /**
- * @brief cam input pixel byte order
- */
- typedef enum {
- cam_input_pixel_yuv444 = 0, /* Y[23:16] U[15:8] V[7:0] */
- cam_input_pixel_yvu444 = 1, /* Y[23:16] V[15:8] U[7:0] */
- cam_input_pixel_uyv444 = 2, /* U[23:16] Y[15:8] V[7:0] */
- cam_input_pixel_vyu444 = 3, /* V[23:16] Y[15:8] U[7:0] */
- cam_input_pixel_uvy444 = 4, /* U[23:16] V[15:8] Y[7:0] */
- cam_input_pixel_vuy444 = 5, /* V[23:16] U[15:8] Y[7:0] */
- cam_input_pixel_yuyv422 = 0, /* Y0[31:24] U0[23:16] Y1[15:8] V0[7:0] */
- cam_input_pixel_yvyu422 = 1, /* Y0[31:24] V0[23:16] Y1[15:8] U0[7:0] */
- cam_input_pixel_uyvy422 = 2, /* U0[31:24] Y0[23:16] V0[15:8] Y1[7:0] */
- cam_input_pixel_vyuy422 = 3, /* V0[31:24] Y0[23:16] U0[15:8] Y1[7:0] */
- cam_input_pixel_rgb565 = 0, /* R[15:11] G[10:8] G[7:5] B[4:0] */
- cam_input_pixel_bgr565 = 1, /* B[15:11] G[10:8] G[7:5] R[4:0] */
- cam_input_pixel_gbr888 = 0, /* G[23:16] B[15:8] R[7:0] */
- cam_input_pixel_grb888 = 1, /* G[23:16] R[15:8] B[7:0] */
- cam_input_pixel_bgr888 = 2, /* B[23:16] G[15:8] R[7:0] */
- cam_input_pixel_rgb888 = 3, /* R[23:16] G[15:8] B[7:0] */
- cam_input_pixel_brg888 = 4, /* B[23:16] R[15:8] G[7:0] */
- cam_input_pixel_rbg888 = 5, /* R[23:16] B[15:8] G[7:0] */
- } cam_input_pixel_byte_order_t;
- #ifdef __cplusplus
- extern "C" {
- #endif
- /**
- * @brief cam get pixel format value
- *
- * @param format display_pixel_format_t
- * @return uint32_t cam color format, like CAM_COLOR_FORMAT_RGB565
- */
- static inline uint32_t cam_get_pixel_format(display_pixel_format_t format)
- {
- switch (format) {
- case display_pixel_format_rgb565:
- return CAM_COLOR_FORMAT_RGB565;
- case display_pixel_format_ycbcr422:
- return CAM_COLOR_FORMAT_YCBCR422;
- case display_pixel_format_raw8:
- return CAM_COLOR_FORMAT_RAW8;
- default:
- return CAM_COLOR_FORMAT_UNSUPPORTED;
- }
- }
- /**
- * @brief CAM set high and low limits of color key
- *
- * @param [in] ptr CAM base address
- * @param [in] high color key high limits
- * @param [in] low color key low limits
- */
- static inline void cam_set_color_key(CAM_Type *ptr, uint32_t high, uint32_t low)
- {
- ptr->CLRKEY_LOW = CAM_CLRKEY_LOW_LIMIT_SET(low);
- ptr->CLRKEY_HIGH = CAM_CLRKEY_HIGH_LIMIT_SET(high);
- }
- /**
- * @brief CAM get default config
- *
- * @param [in] ptr CAM base address
- * @param [out] config cam_config_t
- * @param [in] pixel_format display_pixel_format_t
- */
- void cam_get_default_config(CAM_Type *ptr, cam_config_t *config, display_pixel_format_t pixel_format);
- /**
- * @brief CAM init
- *
- * @param [in] ptr CAM base address
- * @param [in] config cam_config_t
- *
- * @retval hpm_stat_t status_invalid_argument or status_success
- */
- hpm_stat_t cam_init(CAM_Type *ptr, cam_config_t *config);
- /**
- * @brief CAM start
- *
- * @param [in] ptr CAM base address
- */
- void cam_start(CAM_Type *ptr);
- /**
- * @brief CAM stop
- *
- * @note this API will stop CAM immediately no matter there's any frame is being processed or not
- *
- * @param [in] ptr CAM base address
- */
- void cam_stop(CAM_Type *ptr);
- /**
- * @brief CAM update DMASA_FB1 buffer
- *
- * @param [in] ptr CAM base address
- * @param [in] buffer buffer point address
- */
- static inline void cam_update_buffer(CAM_Type *ptr, uint32_t buffer)
- {
- ptr->DMASA_FB1 = buffer;
- }
- /**
- * @brief CAM update DMASA_FB2 buffer
- *
- * @param [in] ptr CAM base address
- * @param [in] buffer buffer point address
- */
- static inline void cam_update_buffer2(CAM_Type *ptr, uint32_t buffer)
- {
- ptr->DMASA_FB2 = buffer;
- }
- /**
- * @brief CAM enable binary output
- *
- * This function is used to enable CAM binary output after
- * the CAM is initialized by the cam_init.
- *
- * @param [in] ptr CAM base address
- */
- static inline void cam_enable_binary_output(CAM_Type *ptr)
- {
- ptr->CR20 |= CAM_CR20_BINARY_EN_MASK;
- }
- /**
- * @brief CAM disable binary output
- *
- * @param [in] ptr CAM base address
- */
- static inline void cam_disable_binary_output(CAM_Type *ptr)
- {
- ptr->CR20 &= ~CAM_CR20_BINARY_EN_MASK;
- }
- /**
- * @brief CAM set binary threshold
- *
- * @param [in] ptr CAM base address
- * @param [in] threshold threshold value of binary output
- */
- static inline void cam_set_binary_threshold(CAM_Type *ptr, uint8_t threshold)
- {
- ptr->CR20 = (ptr->CR20 & (~CAM_CR20_THRESHOLD_MASK)) | CAM_CR20_THRESHOLD_SET(threshold);
- }
- /**
- * @brief CAM enable argb8888 output
- *
- * This function is used to enable CAM argb8888 pixel output after the CAM is initialized by
- * the cam_init and input pixel byte order is configured by the cam_set_input_pixel_byte_order.
- *
- * @param [in] ptr CAM base address
- */
- static inline void cam_enable_argb8888_output(CAM_Type *ptr)
- {
- ptr->CR1 |= CAM_CR1_COLOR_EXT_MASK;
- }
- /**
- * @brief CAM disable argb8888 output
- *
- * @param [in] ptr CAM base address
- */
- static inline void cam_disable_argb8888_output(CAM_Type *ptr)
- {
- ptr->CR1 &= ~CAM_CR1_COLOR_EXT_MASK;
- }
- /**
- * @brief CAM set input pixel byte order
- *
- * @param [in] ptr CAM base address
- * @param [in] order cam_input_pixel_byte_order_t
- */
- static inline void cam_set_input_pixel_byte_order(CAM_Type *ptr, cam_input_pixel_byte_order_t order)
- {
- ptr->CR2 = (ptr->CR2 & (~CAM_CR2_CLRBITFORMAT_MASK)) | CAM_CR2_CLRBITFORMAT_SET(order);
- }
- /**
- * @brief CAM enable irq
- *
- * @param [in] ptr CAM base address
- * @param [in] irq_mask irq mask value
- */
- static inline void cam_enable_irq(CAM_Type *ptr, cam_irq_mask_t irq_mask)
- {
- ptr->INT_EN |= irq_mask;
- }
- /**
- * @brief CAM disable irq
- *
- * @param [in] ptr CAM base address
- * @param [in] irq_mask irq mask value
- */
- static inline void cam_disable_irq(CAM_Type *ptr, cam_irq_mask_t irq_mask)
- {
- ptr->INT_EN &= ~irq_mask;
- }
- /**
- * @brief Check CAM status according to the given status mask
- *
- * @param [in] ptr CAM base address
- * @param sta_mask sta_mask refer to cam_status_mask_t
- * @retval true if any bit in given mask is set
- * @retval false if none of any bit in given mask is set
- */
- static inline bool cam_check_status(CAM_Type *ptr, cam_status_mask_t sta_mask)
- {
- return ((ptr->STA & sta_mask) != 0U) ? true : false;
- }
- /**
- * @brief Clear CAM status according to the given status mask
- *
- * @param [in] ptr CAM base address
- * @param sta_mask sta_mask refer to cam_status_mask_t
- */
- static inline void cam_clear_status(CAM_Type *ptr, cam_status_mask_t sta_mask)
- {
- ptr->STA = sta_mask;
- }
- /**
- * @brief CAM safety stop
- *
- * @note this API will wait for end-of-frame event before stopping CAM
- *
- * @param [in] ptr CAM base address
- */
- void cam_stop_safely(CAM_Type *ptr);
- /**
- * @}
- *
- */
- #ifdef __cplusplus
- }
- #endif
- #endif /* HPM_CAM_DRV_H */
|