dma2d_hal.h 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397
  1. /*
  2. * Copyright (c) 2020, Actions Semi Co., Inc.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief DMA2D Public API
  9. */
  10. /* Define to prevent recursive inclusion -------------------------------------*/
  11. #ifndef FRAMEWORK_DMA2D_HAL_H_
  12. #define FRAMEWORK_DMA2D_HAL_H_
  13. #include <zephyr.h>
  14. #include <sys/atomic.h>
  15. #include <drivers/display/display_engine.h>
  16. #include <display/display_hal.h>
  17. /**
  18. * @brief Display DMA2D Interface
  19. * @defgroup display_dma2d_interface Display DMA2D Interface
  20. * @ingroup display_libraries
  21. * @{
  22. */
  23. #ifdef __cplusplus
  24. extern "C" {
  25. #endif
  26. #define HAL_DMA2D_MAX_LAYER 2U /*!< DMA2D maximum number of layers */
  27. #define HAL_DMA2D_SCALE_NONE 256U /*!< DMA2D maximum number of layers */
  28. /**
  29. * @brief DMA2D output structure definition
  30. */
  31. typedef struct {
  32. uint32_t color_format; /*!< Configures the color format of the output image.
  33. This parameter can be one value of @ref HAL_PIXEL_FORMAT_*. */
  34. uint32_t output_pitch; /*!< Specifies the output pitch value.
  35. This parameter must be a number between Min_Data = 0x0000 and Max_Data = 0x01FF. */
  36. uint16_t mode; /*!< Configures the DMA2D transfer mode.
  37. This parameter can be one value of @ref DMA2D_MODE. */
  38. } hal_dma2d_output_cfg_t;
  39. /**
  40. * @brief DMA2D Layer structure definition
  41. */
  42. typedef struct {
  43. uint32_t color_format; /*!< Configures the DMA2D foreground or background color format.
  44. This parameter can be one value of @ref HAL_PIXEL_FORMAT_*. */
  45. uint32_t input_width; /*!< Configures the DMA2D foreground or background width.
  46. This parameter must be a number between Min_Data = 0x0000 and Max_Data = 0x3FFF. */
  47. uint32_t input_height; /*!< Configures the DMA2D foreground or background height.
  48. This parameter must be a number between Min_Data = 0x0000 and Max_Data = 0x3FFF. */
  49. uint32_t input_pitch; /*!< Configures the DMA2D foreground or background pitch.
  50. This parameter must be a number between Min_Data = 0x0000 and Max_Data = 0x3FFF. */
  51. uint8_t input_xofs; /*!< Configures the DMA2D foreground or background x offset per row.
  52. This parameter is only for A1/2/4 and I1/2/4 color formats, accepted values:
  53. 0, 1 for A4, I4
  54. 0, 1, 2, 3 for A2, I2
  55. 0, 1, 2, 3, 4, 5, 6, 7 for A1, I1
  56. 0 for others */
  57. uint8_t alpha_mode; /*!< Configures the DMA2D foreground or background alpha mode.
  58. This parameter can be one value of @ref DMA2D_ALPHA_Mode. */
  59. uint32_t input_alpha; /*!< Specifies the DMA2D foreground or background alpha value and color value both of Ax color formats and rotation fill-color.
  60. This parameter must be a number between Min_Data = 0x00 and Max_Data = 0xFF except for the color formats detailed below.
  61. @note In case of A8 or A4 color mode (ARGB), this parameter must be a number between
  62. Min_Data = 0x00000000 and Max_Data = 0xFFFFFFFF where
  63. - input_alpha[24:31] is the alpha value ALPHA[0:7]
  64. - input_alpha[16:23] is the red value RED[0:7]
  65. - input_alpha[8:15] is the green value GREEN[0:7]
  66. - input_alpha[0:7] is the blue value BLUE[0:7]. */
  67. } hal_dma2d_layer_cfg_t;
  68. /**
  69. * @brief DMA2D Transform structure definition
  70. */
  71. typedef struct {
  72. uint16_t mode; /*!< Transform mode, This parameter can be one value of @ref DMA2D_Transform_Mode:
  73. - HAL_DMA2D_ROT2D Similarity transfrom, can set any scale and rotation
  74. - Others predefined transform, whose top-left corner after transformation
  75. keep the same as before (image_x0, image_y0) */
  76. uint16_t angle; /*!< Anti-clockwise rotation angle in 0.1 degree [0, 3600) in the display coordinate */
  77. int16_t image_x0; /*!< Coord X of top-left corner of image src before rotation in the display coordinate */
  78. int16_t image_y0; /*!< Coord Y of top-left corner of image src before rotation in the display coordinate */
  79. union {
  80. struct {
  81. uint16_t outer_diameter; /*!< Outer Diameter in pixels of the ring area of the Source, and must equal to the source image width and height */
  82. uint16_t inner_diameter; /*!< Inner Diameter in pixels of the ring area of the Source */
  83. } circle;
  84. struct {
  85. int16_t pivot_x; /*!< Rotate/scale pivot X offset relative to top-left corner of the Image Source */
  86. int16_t pivot_y; /*!< Rotate/scale pivot Y offset relative to top-left corner of the Image Source */
  87. /*!< Scale factor in fixedpoint, equal to (HAL_DMA2D_SCALE_NONE * dest / src)
  88. * > HAL_DMA2D_SCALE_NONE, scaling up
  89. * < HAL_DMA2D_SCALE_NONE, scaling down
  90. * = HAL_DMA2D_SCALE_NONE, no scaling
  91. * only scaling up supported so far
  92. */
  93. uint16_t scale_x; /*!< scale factor X */
  94. uint16_t scale_y; /*!< scale factor Y */
  95. } rect;
  96. };
  97. display_engine_transform_param_t hw_param;
  98. } hal_dma2d_transform_cfg_t;
  99. /**
  100. * @brief HAL DMA2D State structures definition
  101. */
  102. typedef enum {
  103. HAL_DMA2D_STATE_RESET = 0x00U, /*!< DMA2D not yet initialized or disabled */
  104. HAL_DMA2D_STATE_READY = 0x01U, /*!< Peripheral Initialized and ready for use */
  105. HAL_DMA2D_STATE_BUSY = 0x02U, /*!< An internal process is ongoing */
  106. HAL_DMA2D_STATE_TIMEOUT = 0x03U, /*!< timeout state */
  107. HAL_DMA2D_STATE_ERROR = 0x04U, /*!< DMA2D state error */
  108. } hal_dma2d_state_e;
  109. struct _hal_dma2d_handle;
  110. /**
  111. * @brief HAL DMA2D Callback pointer definition provided the current command sequence and the error code
  112. */
  113. typedef void (* hal_dma2d_callback_t)(struct _hal_dma2d_handle * hdma2d, uint16_t cmd_seq, uint32_t error_code);
  114. /**
  115. * @brief DMA2D handle Structure definition
  116. */
  117. typedef struct _hal_dma2d_handle {
  118. const void *device; /*!< DMA2D Device Handle */
  119. int instance; /*!< DMA2D Device Instance ID */
  120. atomic_t xfer_count; /*!< DMA2D pending transfer count */
  121. hal_dma2d_callback_t xfer_callback; /*!< DMA2D transfer callback. */
  122. hal_dma2d_output_cfg_t output_cfg; /*!< DMA2D output parameters. */
  123. hal_dma2d_layer_cfg_t layer_cfg[HAL_DMA2D_MAX_LAYER]; /*!< DMA2D Layers parameters */
  124. hal_dma2d_transform_cfg_t trans_cfg; /*!< DMA2D Transform parameters */
  125. uint32_t error_code; /*!< DMA2D error code. */
  126. } hal_dma2d_handle_t;
  127. /**
  128. * @brief HAL DMA2D_Layers DMA2D Layers
  129. */
  130. #define HAL_DMA2D_BACKGROUND_LAYER 0x0000U /*!< DMA2D Background Layer (layer 0) */
  131. #define HAL_DMA2D_FOREGROUND_LAYER 0x0001U /*!< DMA2D Foreground Layer (layer 1) */
  132. /**
  133. * @brief HAL DMA2D_Offset DMA2D Offset
  134. */
  135. #define HAL_DMA2D_PITCH 2048U /*!< maximum Line Offset */
  136. /**
  137. * @brief HAL DMA2D_Size DMA2D Size
  138. */
  139. #define HAL_DMA2D_PIXEL UINT32_MAX /*!< DMA2D maximum number of pixels per line */
  140. #define HAL_DMA2D_LINE UINT16_MAX /*!< DMA2D maximum number of lines */
  141. /**
  142. * @brief HAL DMA2D_Error_Code DMA2D Error Code
  143. */
  144. #define HAL_DMA2D_ERROR_NONE 0x0000U /*!< No error */
  145. #define HAL_DMA2D_ERROR_TE 0x0001U /*!< Transfer error */
  146. #define HAL_DMA2D_ERROR_CE 0x0002U /*!< Configuration error */
  147. #define HAL_DMA2D_ERROR_TIMEOUT 0x0020U /*!< Timeout error */
  148. #define HAL_DMA2D_ERROR_INVALID_CALLBACK 0x0040U /*!< Invalid callback error */
  149. /**
  150. * @brief HAL DMA2D_MODE DMA2D Mode
  151. */
  152. #define HAL_DMA2D_R2M 0x0001U /*!< DMA2D register to memory transfer mode */
  153. #define HAL_DMA2D_M2M 0x0002U /*!< DMA2D memory to memory transfer mode, optionally with pixel format conversion */
  154. #define HAL_DMA2D_M2M_BLEND 0x0004U /*!< DMA2D memory to memory with blending transfer mode */
  155. #define HAL_DMA2D_M2M_BLEND_FG 0x0008U /*!< DMA2D memory to memory with blending transfer mode and fixed color FG */
  156. #define HAL_DMA2D_M2M_BLEND_BG 0x0010U /*!< DMA2D memory to memory with blending transfer mode and fixed color BG */
  157. #define HAL_DMA2D_M2M_TRANSFORM 0x0020U /*!< DMA2D memory to memory with transform transfer mode */
  158. #define HAL_DMA2D_M2M_TRANSFORM_BLEND 0x0040U /*!< DMA2D memory to memory with transform and blending transfer mode */
  159. #define HAL_DMA2D_M2M_TRANSFORM_CIRCLE 0x0080U /*!< DMA2D memory to memory with transform circle transfer mode */
  160. #define HAL_DMA2D_LITE_MODES \
  161. (HAL_DMA2D_R2M | HAL_DMA2D_M2M)
  162. #define HAL_DMA2D_FULL_MODES \
  163. (HAL_DMA2D_R2M | HAL_DMA2D_M2M | HAL_DMA2D_M2M_BLEND | HAL_DMA2D_M2M_BLEND_FG | HAL_DMA2D_M2M_BLEND_BG | \
  164. HAL_DMA2D_M2M_TRANSFORM | HAL_DMA2D_M2M_TRANSFORM_BLEND | HAL_DMA2D_M2M_TRANSFORM_CIRCLE)
  165. /**
  166. * @brief HAL DMA2D_Alpha_Mode DMA2D Alpha Mode
  167. */
  168. #define HAL_DMA2D_NO_MODIF_ALPHA 0x0000U /*!< No modification of the alpha channel value */
  169. #define HAL_DMA2D_REPLACE_ALPHA 0x0001U /*!< Replace original alpha channel value by programmed alpha value */
  170. #define HAL_DMA2D_COMBINE_ALPHA 0x0002U /*!< Replace original alpha channel value by programmed alpha value
  171. with original alpha channel value */
  172. /**
  173. * @brief HAL DMA2D_Transform_Mode DMA2D Transform Mode
  174. */
  175. #define HAL_DMA2D_ROT2D 0x0000U /*!< Similarity transfrom, can set any scale and rotation */
  176. #define HAL_DMA2D_FLIP_H 0x0001U /*!< Flip source image horizontally */
  177. #define HAL_DMA2D_FLIP_V 0x0002U /*!< Flip source image verticallye */
  178. #define HAL_DMA2D_ROT_90 0x0004U /*!< Rotate source image 90 degrees clock-wise */
  179. #define HAL_DMA2D_ROT_180 0x0003U /*!< Rotate source image 180 degrees */
  180. #define HAL_DMA2D_ROT_270 0x0007U /*!< Rotate source image 270 degrees clock-wise */
  181. /* Exported functions --------------------------------------------------------*/
  182. /* Initialization and de-initialization functions *******************************/
  183. /**
  184. * @brief Initialize the DMA2D peripheral and create the associated handle.
  185. * @param hdma2d pointer to a hal_dma2d_handle_t structure that contains
  186. * the configuration information for the DMA2D.
  187. * @param preferred_modes "bitwise or" of output modes that maybe used.
  188. * Different hardware device may be chosen as accelerator according this.
  189. * @retval 0 on success else negative errno code.
  190. */
  191. int hal_dma2d_init(hal_dma2d_handle_t *hdma2d, uint32_t preferred_modes);
  192. /**
  193. * @brief Deinitializes the DMA2D peripheral registers to their default reset
  194. * values.
  195. * @param hdma2d pointer to a hal_dma2d_handle_t structure that contains
  196. * the configuration information for the DMA2D.
  197. * @retval 0 on success else negative errno code.
  198. */
  199. int hal_dma2d_deinit(hal_dma2d_handle_t *hdma2d);
  200. /* Callbacks Register/UnRegister functions ***********************************/
  201. /**
  202. * @brief Register a User DMA2D Callback
  203. * To be used instead of the weak (surcharged) predefined callback
  204. * @param hdma2d DMA2D handle
  205. * @param callback_fn pointer to the callback function
  206. * @retval 0 on success else negative errno code.
  207. */
  208. int hal_dma2d_register_callback(hal_dma2d_handle_t *hdma2d, hal_dma2d_callback_t callback_fn);
  209. /**
  210. * @brief Unregister a DMA2D Callback
  211. * DMA2D Callback is redirected to the weak (surcharged) predefined callback
  212. * @param hdma2d DMA2D handle
  213. * @retval 0 on success else negative errno code.
  214. */
  215. int hal_dma2d_unregister_callback(hal_dma2d_handle_t *hdma2d);
  216. /* IO operation functions *******************************************************/
  217. /**
  218. * @brief Start the DMA2D Transfer.
  219. * @param hdma2d Pointer to a hal_dma2d_handle_t structure that contains
  220. * the configuration information for the DMA2D.
  221. * @param pdata Configure the source memory Buffer address if
  222. * Memory-to-Memory or Memory-to-Memory with pixel format
  223. * conversion mode is selected, or configure
  224. * the color value if Register-to-Memory mode is selected.
  225. * @param dst_address The destination memory Buffer address.
  226. * @param width The width of data to be transferred from source to destination (expressed in number of pixels per line).
  227. * @param height The height of data to be transferred from source to destination (expressed in number of lines).
  228. * @retval command sequence (uint16_t) on success else negative errno code.
  229. */
  230. int hal_dma2d_start(hal_dma2d_handle_t *hdma2d, uint32_t pdata, uint32_t dst_address, uint32_t width, uint32_t height);
  231. /**
  232. * @brief Start the multi-source DMA2D Transfer.
  233. * @param hdma2d Pointer to a hal_dma2d_handle_t structure that contains
  234. * the configuration information for the DMA2D.
  235. * @param fg_address The source memory Buffer address for the foreground layer.
  236. * @param bg_address The source memory Buffer address for the background layer.
  237. * @param dst_address The destination memory Buffer address.
  238. * @param width The width of data to be transferred from source to destination (expressed in number of pixels per line).
  239. * @param height The height of data to be transferred from source to destination (expressed in number of lines).
  240. * @retval command sequence (uint16_t) on success else negative errno code.
  241. */
  242. int hal_dma2d_blending_start(hal_dma2d_handle_t *hdma2d, uint32_t fg_address, uint32_t bg_address,
  243. uint32_t dst_address, uint32_t width, uint32_t height);
  244. /**
  245. * @brief Start the DMA2D Rotation Transfer with interrupt enabled.
  246. *
  247. * The source size must be square, and only the ring area defined in hal_dma2d_rotation_cfg_t
  248. * is rotated, and the pixels inside the inner ring can be filled with constant
  249. * color defined in hal_dma2d_rotation_cfg_t.
  250. *
  251. * @param hdma2d Pointer to a hal_dma2d_handle_t structure that contains
  252. * the configuration information for the DMA2D.
  253. * @param src_address The source memory Buffer start address.
  254. * @param dst_address The destination memory Buffer address.
  255. * @param x X coord of top-left corner of dest area in the display coordinate.
  256. * @param y Y coord of top-left corner of dest area in the display coordinate.
  257. * @param width Width of dest area.
  258. * @param height Height of dest area.
  259. * @retval command sequence (uint16_t) on success else negative errno code.
  260. */
  261. int hal_dma2d_transform_start(hal_dma2d_handle_t *hdma2d, uint32_t src_address, uint32_t dst_address,
  262. int16_t x, int16_t y, uint16_t width, uint16_t height);
  263. /**
  264. * @brief Start DMA2D CLUT Loading.
  265. * @param hdma2d Pointer to a DMA2D_HandleTypeDef structure that contains
  266. * the configuration information for the DMA2D.
  267. * @param layer_idx DMA2D Layer index.
  268. * This parameter can be one of the following values:
  269. * DMA2D_BACKGROUND_LAYER(0) / DMA2D_FOREGROUND_LAYER(1)
  270. * @param size Number of colors in the color look up table
  271. * @param clut Pointer to the color look up table.
  272. * @retval command sequence (uint16_t) on success else negative errno code.
  273. */
  274. int hal_dma2d_clut_load_start(hal_dma2d_handle_t *hdma2d, uint16_t layer_idx, uint16_t size, const uint32_t *clut);
  275. /**
  276. * @brief Polling for transfer complete.
  277. * @param hdma2d Pointer to a hal_dma2d_handle_t structure that contains
  278. * the configuration information for the DMA2D.
  279. * @param timeout timeout duration in milliseconds, if negative, means wait forever
  280. * @retval 0 on success else negative errno code.
  281. */
  282. int hal_dma2d_poll_transfer(hal_dma2d_handle_t *hdma2d, int32_t timeout);
  283. /* Peripheral Control functions *************************************************/
  284. /**
  285. * @brief Configure the DMA2D transfer mode and output according to the
  286. * specified parameters in the hal_dma2d_handle_t.
  287. * @param hdma2d Pointer to a hal_dma2d_handle_t structure that contains
  288. * the configuration information for the DMA2D.
  289. * @retval 0 on success else negative errno code.
  290. */
  291. int hal_dma2d_config_output(hal_dma2d_handle_t *hdma2d);
  292. /**
  293. * @brief Configure the DMA2D Layer according to the specified
  294. * parameters in the hal_dma2d_handle_t.
  295. *
  296. * hal_dma2d_config_output() must be invoked to configure the correct mode first.
  297. *
  298. * @param hdma2d Pointer to a hal_dma2d_handle_t structure that contains
  299. * the configuration information for the DMA2D.
  300. * @param layer_idx DMA2D Layer index.
  301. * This parameter can be one of the following values:
  302. * HAL_DMA2D_BACKGROUND_LAYER(0) / HAL_DMA2D_FOREGROUND_LAYER(1)
  303. * @retval 0 on success else negative errno code.
  304. */
  305. int hal_dma2d_config_layer(hal_dma2d_handle_t *hdma2d, uint16_t layer_idx);
  306. /**
  307. * @brief Configure the DMA2D Rotation according to the specified
  308. * parameters in the hal_dma2d_handle_t.
  309. *
  310. * hal_dma2d_config_output() must be invoked to configure correct mode first.
  311. *
  312. * @param hdma2d Pointer to a hal_dma2d_handle_t structure that contains
  313. * the configuration information for the DMA2D.
  314. * @retval 0 on success else negative errno code.
  315. */
  316. int hal_dma2d_config_transform(hal_dma2d_handle_t *hdma2d);
  317. /* Peripheral State functions ***************************************************/
  318. /**
  319. * @brief Return the DMA2D state
  320. * @param hdma2d pointer to a hal_dma2d_handle_t structure that contains
  321. * the configuration information for the DMA2D.
  322. * @retval HAL state
  323. */
  324. hal_dma2d_state_e hal_dma2d_get_state(hal_dma2d_handle_t *hdma2d);
  325. /**
  326. * @brief Return the DMA2D error code
  327. * @param hdma2d pointer to a hal_dma2d_handle_t structure that contains
  328. * the configuration information for DMA2D.
  329. * @retval DMA2D Error Code
  330. */
  331. uint32_t hal_dma2d_get_error(hal_dma2d_handle_t *hdma2d);
  332. /**
  333. * @cond INTERNAL_HIDDEN
  334. */
  335. /**
  336. * @brief Global enable/disable DMAD functions
  337. * @param enabled enable or not
  338. * @retval N/A
  339. */
  340. void hal_dma2d_set_global_enabled(bool enabled);
  341. /**
  342. * INTERNAL_HIDDEN @endcond
  343. */
  344. #ifdef __cplusplus
  345. }
  346. #endif
  347. /**
  348. * @}
  349. */
  350. #endif /* FRAMEWORK_DMA2D_HAL_H_ */