ui_mem_gui.c 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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. #include <assert.h>
  11. #ifdef CONFIG_LVGL
  12. # include <lvgl/lvgl.h>
  13. #endif
  14. LOG_MODULE_DECLARE(ui_mem, LOG_LEVEL_INF);
  15. #if defined(CONFIG_UI_GUI_MEM_POOL_SIZE) && CONFIG_UI_GUI_MEM_POOL_SIZE > 0
  16. __in_section_unique(lvgl.noinit.malloc) __aligned(4) static uint8_t gui_heap_mem[CONFIG_UI_GUI_MEM_POOL_SIZE];
  17. __in_section_unique(lvgl.noinit.malloc) static struct sys_heap gui_heap;
  18. static void _assert_in_gui_tid(const char *tag)
  19. {
  20. static uintptr_t gui_tid = 0;
  21. uintptr_t tid = (uintptr_t)os_current_get();
  22. #ifdef CONFIG_LVGL
  23. if (lv_is_initialized() == false) {
  24. return;
  25. }
  26. #endif
  27. if (gui_tid == 0) {
  28. gui_tid = tid;
  29. return;
  30. }
  31. if (gui_tid != tid) {
  32. os_printk("%s called in thread 0x%x\n", tag, tid);
  33. //assert(gui_tid == tid);
  34. #ifndef CONFIG_SIMULATOR
  35. //k_panic();
  36. #endif /* CONFIG_SIMULATOR */
  37. }
  38. }
  39. int ui_mem_gui_init(void)
  40. {
  41. sys_heap_init(&gui_heap, gui_heap_mem, CONFIG_UI_GUI_MEM_POOL_SIZE);
  42. return 0;
  43. }
  44. void * ui_mem_gui_alloc(size_t size)
  45. {
  46. _assert_in_gui_tid("gui_malloc");
  47. return sys_heap_alloc(&gui_heap, size);
  48. }
  49. void * ui_mem_gui_aligned_alloc(size_t align, size_t size)
  50. {
  51. return sys_heap_aligned_alloc(&gui_heap, align, size);
  52. }
  53. void * ui_mem_gui_realloc(void * ptr, size_t size)
  54. {
  55. _assert_in_gui_tid("gui_realloc");
  56. return sys_heap_realloc(&gui_heap, ptr, size);
  57. }
  58. void ui_mem_gui_free(void * ptr)
  59. {
  60. _assert_in_gui_tid("gui_free");
  61. sys_heap_free(&gui_heap, ptr);
  62. }
  63. size_t ui_mem_gui_get_size(void)
  64. {
  65. return CONFIG_UI_GUI_MEM_POOL_SIZE;
  66. }
  67. void ui_mem_gui_dump(void)
  68. {
  69. sys_heap_dump(&gui_heap);
  70. }
  71. bool ui_mem_is_gui(const void * ptr)
  72. {
  73. const uint8_t *gui_mem_end = gui_heap_mem + CONFIG_UI_GUI_MEM_POOL_SIZE;
  74. const uint8_t *ptr8 = ptr;
  75. return (ptr8 >= gui_heap_mem && ptr8 < gui_mem_end) ? true : false;
  76. }
  77. #endif /* CONFIG_UI_GUI_MEM_POOL_SIZE > 0 */