ui_mem_res.c 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. /*
  2. * Copyright (c) 2019 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #define LOG_MODULE_CUSTOMER
  7. #include <os_common_api.h>
  8. #include <sys/sys_heap.h>
  9. #include <ui_mem.h>
  10. LOG_MODULE_DECLARE(ui_mem, LOG_LEVEL_INF);
  11. #if defined(CONFIG_UI_RES_MEM_POOL_SIZE) && CONFIG_UI_RES_MEM_POOL_SIZE > 0
  12. __in_section_unique(RES_PSRAM_REGION) __aligned(64) static uint8_t res_heap_mem[CONFIG_UI_RES_MEM_POOL_SIZE];
  13. __in_section_unique(RES_PSRAM_REGION) static struct sys_heap res_heap;
  14. static OS_MUTEX_DEFINE(res_mutex);
  15. int ui_mem_res_init(void)
  16. {
  17. sys_heap_init(&res_heap, res_heap_mem, CONFIG_UI_RES_MEM_POOL_SIZE);
  18. return 0;
  19. }
  20. void * ui_mem_res_alloc(size_t size)
  21. {
  22. void * ptr = NULL;
  23. os_mutex_lock(&res_mutex, OS_FOREVER);
  24. ptr = sys_heap_alloc(&res_heap, size);
  25. os_mutex_unlock(&res_mutex);
  26. return ptr;
  27. }
  28. void * ui_mem_res_aligned_alloc(size_t align, size_t size)
  29. {
  30. void * ptr = NULL;
  31. os_mutex_lock(&res_mutex, OS_FOREVER);
  32. ptr = sys_heap_aligned_alloc(&res_heap, align, size);
  33. os_mutex_unlock(&res_mutex);
  34. return ptr;
  35. }
  36. void * ui_mem_res_realloc(void * ptr, size_t size)
  37. {
  38. os_mutex_lock(&res_mutex, OS_FOREVER);
  39. ptr = sys_heap_realloc(&res_heap, ptr, size);
  40. os_mutex_unlock(&res_mutex);
  41. return ptr;
  42. }
  43. void ui_mem_res_free(void * ptr)
  44. {
  45. os_mutex_lock(&res_mutex, OS_FOREVER);
  46. sys_heap_free(&res_heap, ptr);
  47. os_mutex_unlock(&res_mutex);
  48. }
  49. size_t ui_mem_res_get_size(void)
  50. {
  51. return CONFIG_UI_RES_MEM_POOL_SIZE;
  52. }
  53. void ui_mem_res_dump(void)
  54. {
  55. sys_heap_dump(&res_heap);
  56. }
  57. bool ui_mem_is_res(const void * ptr)
  58. {
  59. const uint8_t *res_mem_end = res_heap_mem + CONFIG_UI_RES_MEM_POOL_SIZE;
  60. const uint8_t *ptr8 = ptr;
  61. return (ptr8 >= res_heap_mem && ptr8 < res_mem_end) ? true : false;
  62. }
  63. #endif /* CONFIG_UI_RES_MEM_POOL_SIZE > 0 */