ui_mem.h 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. /*
  2. * Copyright (c) 2018 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file ui memory interface
  8. */
  9. #ifndef FRAMEWORK_DISPLAY_INCLUDE_UI_MEM_H_
  10. #define FRAMEWORK_DISPLAY_INCLUDE_UI_MEM_H_
  11. /**
  12. * @defgroup view_cache_apis View Cache APIs
  13. * @ingroup system_apis
  14. * @{
  15. */
  16. #include <stddef.h>
  17. #include <stdint.h>
  18. #include <stdbool.h>
  19. #ifdef __cplusplus
  20. extern "C" {
  21. #endif
  22. /**
  23. * @brief UI Memory Types
  24. *
  25. * UI memory type enumeration
  26. */
  27. enum {
  28. MEM_FB = 0,
  29. MEM_GUI,
  30. MEM_RES,
  31. NUM_UI_MEM_TYPES,
  32. };
  33. /**
  34. * @brief Initialize the UI memory
  35. *
  36. * @retval 0 on success else negative code.
  37. */
  38. int ui_mem_init(void);
  39. /**
  40. * @brief Alloc UI memory
  41. *
  42. * @param type UI memory type
  43. * @param size Amount of memory requested (in bytes).
  44. * @param caller Caller address for debug; can be NULL
  45. *
  46. * @return Address of the allocated memory if successful; otherwise NULL.
  47. */
  48. void * ui_mem_alloc(uint8_t type, size_t size, const void * caller);
  49. /**
  50. * @brief Alloc UI memory with a specified alignment.
  51. *
  52. * @param type UI memory type
  53. * @param align Alignment of memory requested (in bytes), must be a power of two
  54. * @param size Amount of memory requested (in bytes).
  55. * @param caller Caller address for debug; can be NULL
  56. *
  57. * @return Address of the allocated memory if successful; otherwise NULL.
  58. */
  59. void * ui_mem_aligned_alloc(uint8_t type, size_t align, size_t size, const void * caller);
  60. /**
  61. * @brief Realloc UI memory
  62. *
  63. * @param type UI memory type
  64. * @param ptr Pointer to original memory
  65. * @param size Amount of memory requested (in bytes).
  66. * @param caller Caller address for debug; can be NULL
  67. *
  68. * @return Address of the allocated memory if successful; otherwise NULL.
  69. */
  70. void * ui_mem_realloc(uint8_t type, void * ptr, size_t size, const void * caller);
  71. /**
  72. * @brief Calloc UI memory
  73. *
  74. * @param type UI memory type
  75. * @param nmemb number of members
  76. * @param size size of member (in bytes)
  77. * @param caller Caller address for debug; can be NULL
  78. *
  79. * @return Address of the allocated memory if successful; otherwise NULL.
  80. */
  81. void * ui_mem_calloc(uint8_t type, size_t nmemb, size_t size, const void * caller);
  82. /**
  83. * @brief Free UI memory
  84. *
  85. * If @a ptr is NULL, no operation is performed.
  86. *
  87. * @param type UI memory type
  88. * @param ptr Pointer to previously allocated memory.
  89. *
  90. * @retval N/A
  91. */
  92. void ui_mem_free(uint8_t type, void *ptr);
  93. /**
  94. * @brief Free UI memory
  95. *
  96. * If @a ptr is NULL, no operation is performed.
  97. *
  98. * @param ptr Pointer to previously allocated memory.
  99. *
  100. * @retval N/A
  101. */
  102. void ui_mem_free2(void * ptr);
  103. /**
  104. * @brief Query if memory is allocated from a specific pool.
  105. *
  106. * @param type UI memory type
  107. * @param ptr Pointer to an allocated memory
  108. *
  109. * @retval true if of the specific type else false
  110. */
  111. bool ui_mem_is_type(uint8_t type, const void * ptr);
  112. /**
  113. * @brief Dump UI memory allocation detail.
  114. *
  115. * @param type UI memory type
  116. *
  117. * @retval N/A
  118. */
  119. void ui_mem_dump(uint8_t type);
  120. /**
  121. * @brief Dump All UI memory allocation detail.
  122. *
  123. * @param type UI memory type
  124. *
  125. * @retval N/A
  126. */
  127. void ui_mem_dump_all(void);
  128. /**
  129. * @brief ui memory safe check
  130. *
  131. * @param view_id id of view witch want to check
  132. *
  133. * @retval N/A
  134. */
  135. void ui_mem_safe_check(uint16_t view_id);
  136. /**
  137. * @cond INTERNAL_HIDDEN
  138. */
  139. /**
  140. * @brief get number of fb
  141. *
  142. * @retval number of fb
  143. */
  144. size_t ui_mem_fb_get_num(void);
  145. void *ui_mem_get_share_surface_buffer(void);
  146. int ui_mem_get_share_surface_buffer_size(void);
  147. void * ui_mem_gui_alloc(size_t size);
  148. void * ui_mem_gui_aligned_alloc(size_t align, size_t size);
  149. void * ui_mem_gui_realloc(void * ptr, size_t size);
  150. void ui_mem_gui_free(void * ptr);
  151. #if defined(CONFIG_UI_RES_MEM_POOL_SIZE) && CONFIG_UI_RES_MEM_POOL_SIZE > 0
  152. void * ui_mem_res_alloc(size_t size);
  153. void * ui_mem_res_aligned_alloc(size_t align, size_t size);
  154. void ui_mem_res_free(void * ptr);
  155. #else
  156. #define ui_mem_res_alloc ui_mem_gui_alloc
  157. #define ui_mem_res_aligned_alloc ui_mem_gui_aligned_alloc
  158. #define ui_mem_res_free ui_mem_gui_free
  159. #endif
  160. /**
  161. * INTERNAL_HIDDEN @endcond
  162. */
  163. #ifdef __cplusplus
  164. }
  165. #endif
  166. /**
  167. * @}
  168. */
  169. #endif /* FRAMEWORK_DISPLAY_INCLUDE_UI_MEM_H_ */