lvgl_memory.h 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. /*
  2. * Copyright (c) 2020 Actions Technology Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief lvgl memory
  9. */
  10. #ifndef FRAMEWORK_DISPLAY_INCLUDE_LVGL_MEMORY_H_
  11. #define FRAMEWORK_DISPLAY_INCLUDE_LVGL_MEMORY_H_
  12. /**
  13. * @defgroup lvgl_memory_apis LVGL Memory APIs
  14. * @ingroup lvgl_apis
  15. * @{
  16. */
  17. /*********************
  18. * INCLUDES
  19. *********************/
  20. #include <lvgl/lvgl.h>
  21. #ifdef CONFIG_VG_LITE
  22. # include <vg_lite/vg_lite.h>
  23. #endif
  24. #ifdef __cplusplus
  25. extern "C" {
  26. #endif
  27. /**********************
  28. * GLOBAL PROTOTYPES
  29. **********************/
  30. /**
  31. * @brief Clean cache of lvgl img buf.
  32. *
  33. * @param dsc pointer to an lvgl image descriptor.
  34. *
  35. * @retval N/A.
  36. */
  37. void lvgl_img_buf_clean_cache(const lv_img_dsc_t *dsc);
  38. /**
  39. * @brief Invalidate cache of lvgl img buf.
  40. *
  41. * @param dsc pointer to an lvgl image descriptor.
  42. *
  43. * @retval N/A.
  44. */
  45. void lvgl_img_buf_invalidate_cache(const lv_img_dsc_t *dsc);
  46. /**
  47. * @brief Query if the img buf is cache clean
  48. *
  49. * @param buf address of img buffer.
  50. * @param size size of img buffer
  51. *
  52. * @retval true if cache clean or not cachable else false
  53. */
  54. bool lvgl_img_buf_is_clean(const void *buf, unsigned int size);
  55. /**
  56. * @brief Convert lvgl image cf to hal pixel format
  57. *
  58. * @param cf lvgl image cf.
  59. * @param bits_per_pixel optional address to store the bits_per_pixel of format.
  60. *
  61. * @retval hal pixel format
  62. */
  63. uint32_t lvgl_img_cf_to_display(lv_img_cf_t cf, uint8_t * bits_per_pixel);
  64. /**
  65. * @brief Convert lvgl color to ABGR-8888
  66. *
  67. * @param color lvgl color.
  68. *
  69. * @retval result color.
  70. */
  71. static inline uint32_t lvgl_color_to_abgr32(lv_color_t color)
  72. {
  73. uint32_t col32 = lv_color_to32(color);
  74. return (col32 & 0xff00ff00) | ((col32 & 0xff) << 16) | ((col32 & 0xff0000) >> 16);
  75. }
  76. #ifdef CONFIG_VG_LITE
  77. /**
  78. * @brief Convert lvgl image cf to vglite buffer format
  79. *
  80. * @param cf lvgl image cf.
  81. * @param bits_per_pixel optional address to store the bits_per_pixel of format.
  82. *
  83. * @retval vglite buffer format
  84. */
  85. int lvgl_img_cf_to_vglite(lv_img_cf_t cf, uint8_t * bits_per_pixel);
  86. /**
  87. * @brief Map a lvgl color buf to vglite buffer
  88. *
  89. * @param vgbuf pointer to structure vg_lite_buffer_t.
  90. * @param color_p pointer to lvgl color buffer.
  91. * @param w width of lvgl buffer in pixels.
  92. * @param h height of lvgl buffer in pixels.
  93. * @param stride stride of lvgl buffer in pixels.
  94. * @param cf color format of lvgl buffer.
  95. *
  96. * @retval query result
  97. */
  98. int lvgl_vglite_map(vg_lite_buffer_t *vgbuf, const void *color_p,
  99. uint16_t w, uint16_t h, uint16_t stride, lv_img_cf_t cf);
  100. /**
  101. * @brief Map a lvgl image to vglite buffer
  102. *
  103. * @param vgbuf pointer to structure vg_lite_buffer_t.
  104. * @param img_dsc pointer to structure lv_img_dsc_t.
  105. *
  106. * @retval 0 on success else negative code.
  107. */
  108. int lvgl_vglite_map_img(vg_lite_buffer_t *vgbuf, const lv_img_dsc_t *img_dsc);
  109. /**
  110. * @brief Unmap a vglite buffer
  111. *
  112. * @param vgbuf pointer to structure vg_lite_buffer_t.
  113. *
  114. * @retval 0 on success else negative code.
  115. */
  116. int lvgl_vglite_unmap(vg_lite_buffer_t *vgbuf);
  117. /**
  118. * @brief Set clut for lvgl indexed image
  119. *
  120. * @param img_dsc pointer to structure lv_img_dsc_t.
  121. *
  122. * @retval 0 on success else negative code.
  123. */
  124. int lvgl_vglite_set_img_clut(const lv_img_dsc_t *img_dsc);
  125. #endif /* CONFIG_VG_LITE */
  126. #ifdef __cplusplus
  127. }
  128. #endif
  129. /**
  130. * @}
  131. */
  132. #endif /* FRAMEWORK_DISPLAY_INCLUDE_LVGL_MEMORY_H_ */