bt_mem.c 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. /*
  2. * Copyright (c) 2019 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file bluetooth mem interface
  8. */
  9. #define SYS_LOG_DOMAIN "bt"
  10. #include <os_common_api.h>
  11. #define CONFIG_BT_INNER_HEAP 1
  12. #define CONFIG_BT_MEM_DEBUG 0
  13. #if CONFIG_BT_INNER_HEAP
  14. #ifdef CONFIG_SOC_NO_PSRAM
  15. __in_section_unique(bthost_bss)
  16. #endif
  17. static char __aligned(4) bt_mem_buffer[1024*6];
  18. STRUCT_SECTION_ITERABLE(k_heap, bt_mem_pool) = {
  19. .heap = {
  20. .init_mem = bt_mem_buffer,
  21. .init_bytes = sizeof(bt_mem_buffer),
  22. },
  23. };
  24. #endif
  25. #if CONFIG_BT_MEM_DEBUG
  26. #define BT_MEM_DEBUG_MAX 100
  27. static uint32_t bt_max_malloc_cut = 0;
  28. static uint32_t bt_cur_malloc_cut = 0;
  29. static uint32_t bt_max_memory_used = 0;
  30. static uint32_t bt_cur_memory_used = 0;
  31. static uint32_t bt_mem_debug[BT_MEM_DEBUG_MAX][2];
  32. static void bt_mem_debug_malloc(void *addr, uint32_t size)
  33. {
  34. uint32_t i;
  35. os_sched_lock();
  36. bt_cur_malloc_cut++;
  37. if (bt_cur_malloc_cut > bt_max_malloc_cut) {
  38. bt_max_malloc_cut = bt_cur_malloc_cut;
  39. }
  40. bt_cur_memory_used += size;
  41. if (bt_cur_memory_used > bt_max_memory_used) {
  42. bt_max_memory_used = bt_cur_memory_used;
  43. }
  44. for (i=0; i<BT_MEM_DEBUG_MAX; i++) {
  45. if (bt_mem_debug[i][0] == 0) {
  46. bt_mem_debug[i][0] = (uint32_t)addr;
  47. bt_mem_debug[i][1] = size;
  48. os_sched_unlock();
  49. return;
  50. }
  51. }
  52. os_sched_unlock();
  53. SYS_LOG_INF("No index for debug addr %p", addr);
  54. }
  55. static void bt_mem_debug_free(void *addr)
  56. {
  57. uint32_t i;
  58. os_sched_lock();
  59. bt_cur_malloc_cut--;
  60. for (i=0; i<BT_MEM_DEBUG_MAX; i++) {
  61. if (bt_mem_debug[i][0] == (uint32_t)addr) {
  62. bt_mem_debug[i][0] = 0;
  63. bt_cur_memory_used -= bt_mem_debug[i][1];
  64. os_sched_unlock();
  65. return;
  66. }
  67. }
  68. os_sched_unlock();
  69. SYS_LOG_INF("Unknow addr %p", addr);
  70. }
  71. void bt_mem_debug_print(void)
  72. {
  73. uint32_t i, flag = 0;
  74. SYS_LOG_INF("bt mem max malloc cnt:%d, bt_cur_malloc_cut:%d", bt_max_malloc_cut, bt_cur_malloc_cut);
  75. SYS_LOG_INF("bt bt_max_memory_used:%d, bt_cur_memory_used:%d", bt_max_memory_used, bt_cur_memory_used);
  76. for (i=0; i<BT_MEM_DEBUG_MAX; i++) {
  77. if (bt_mem_debug[i][0] != 0) {
  78. printk("Unfree mem addr:0x%x, size:%d\n", bt_mem_debug[i][0], bt_mem_debug[i][1]);
  79. flag = 1;
  80. }
  81. }
  82. if (!flag) {
  83. printk("All mem free!\n");
  84. }
  85. }
  86. #endif
  87. void *bt_mem_malloc(int size)
  88. {
  89. void *p;
  90. #if CONFIG_BT_INNER_HEAP
  91. p = k_heap_alloc(&bt_mem_pool, size, K_NO_WAIT);
  92. #else
  93. p= mem_malloc(size);
  94. #endif
  95. if (!p) {
  96. SYS_LOG_ERR("bt_mem_malloc %d failed!!", size);
  97. }
  98. if (size >= 512) {
  99. SYS_LOG_INF("bt_mem_malloc block %d", size);
  100. }
  101. #if CONFIG_BT_MEM_DEBUG
  102. if (p) {
  103. bt_mem_debug_malloc(p, size);
  104. }
  105. #endif
  106. return p;
  107. }
  108. void bt_mem_free(void *ptr)
  109. {
  110. #if CONFIG_BT_MEM_DEBUG
  111. if (ptr) {
  112. bt_mem_debug_free(ptr);
  113. }
  114. #endif
  115. if (ptr != NULL) {
  116. #if CONFIG_BT_INNER_HEAP
  117. k_heap_free(&bt_mem_pool, ptr);
  118. #else
  119. mem_free(ptr);
  120. #endif
  121. }
  122. }