media_mem.c 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307
  1. /*
  2. * Copyright (c) 2019 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file media mem interface
  8. */
  9. #define SYS_LOG_DOMAIN "media"
  10. #include <linker/section_tags.h>
  11. #include <os_common_api.h>
  12. #include <mem_manager.h>
  13. #include <media_service.h>
  14. #include <audio_system.h>
  15. #include <music_postprocessor_dsp.h>
  16. #include <btcall_processor_dsp.h>
  17. #include "media_mem.h"
  18. struct media_memory_cell {
  19. uint8_t mem_type;
  20. uint32_t mem_base;
  21. uint32_t mem_size;
  22. };
  23. struct media_memory_block {
  24. uint8_t stream_type;
  25. struct media_memory_cell mem_cell[24];
  26. };
  27. typedef struct {
  28. union {
  29. music_dae_para_t music_dae_para;
  30. hfp_dae_para_t hfp_dae_para;
  31. };
  32. }dae_para_t;
  33. #ifdef CONFIG_MEDIA
  34. static char playback_input_buffer[0x3420] __in_section_unique(DSP_SHARE_RAM);
  35. static char output_decoder[0x800] __in_section_unique(DSP_SHARE_RAM); //16bit: 0x800, 32bit: 0x1000
  36. static char playback_output_buffer[0x800] __in_section_unique(DSP_SHARE_RAM); //16bit: 0x800, 32bit: 0x1000
  37. #ifdef CONFIG_SOC_NO_PSRAM
  38. static char output_pcm[0x800]__in_section_unique(audio.bss.ouput_pcm);
  39. #else
  40. static char output_pcm[0x800];
  41. #endif
  42. //static char mix_buf[0x800] __in_section_unique(DSP_SHARE_RAM); //16bit: 0x800, 32bit: 0x1000
  43. #ifdef CONFIG_ACTIONS_DECODER
  44. #ifndef CONFIG_DECODER_ACT_HW_ACCELERATION
  45. #ifdef CONFIG_DECODER_ACT
  46. static char decoder_share_ram[0x1928];
  47. #endif
  48. //static char decoder_stack[0x800] __aligned(ARCH_STACK_PTR_ALIGN) ; //16bit: 0x800, 32bit: 0x1000
  49. #endif
  50. #ifdef CONFIG_ACTIONS_PARSER
  51. static char parser_chuck_buffer[0x1000];
  52. static char codec_stack[2048] __aligned(ARCH_STACK_PTR_ALIGN);
  53. static char parser_stack[2048] __aligned(ARCH_STACK_PTR_ALIGN);
  54. #endif
  55. #endif /* CONFIG_ACTIONS_DECODER */
  56. #ifdef CONFIG_MEDIA_EFFECT
  57. static dae_para_t dae_para __in_section_unique(DSP_SHARE_RAM);
  58. #endif
  59. static const struct media_memory_block media_memory_config[] = {
  60. {
  61. .stream_type = AUDIO_STREAM_MUSIC,
  62. .mem_cell = {
  63. {.mem_type = OUTPUT_PKG_HDR, .mem_base = (uint32_t)&playback_input_buffer[0], .mem_size = 0x100,},
  64. {.mem_type = INPUT_PLAYBACK, .mem_base = (uint32_t)&playback_input_buffer[0x100], .mem_size = 0x2B00,},
  65. {.mem_type = OUTPUT_DECODER, .mem_base = (uint32_t)&output_decoder[0], .mem_size = sizeof(output_decoder),},
  66. {.mem_type = OUTPUT_PLAYBACK, .mem_base = (uint32_t)&playback_output_buffer[0], .mem_size = sizeof(playback_output_buffer),},
  67. {.mem_type = OUTPUT_PCM, .mem_base = (uint32_t)&output_pcm[0], .mem_size = sizeof(output_pcm),},
  68. #ifdef CONFIG_MEDIA_EFFECT
  69. {.mem_type = DAE_PARAM, .mem_base = (uint32_t)&dae_para, .mem_size = sizeof(dae_para),},
  70. #endif
  71. {.mem_type = MIX_INPUT_BUF, .mem_base = (uint32_t)&playback_input_buffer[0x2C00], .mem_size = 0x400,},
  72. {.mem_type = MIX_RES_BUF, .mem_base = (uint32_t)&playback_input_buffer[0x3000], .mem_size = 0x400,},
  73. },
  74. },
  75. {
  76. .stream_type = AUDIO_STREAM_LOCAL_MUSIC,
  77. .mem_cell = {
  78. // INPUT_PLAYBACK overlay for OUTPUT_PARSER, only used if no need parser decode.
  79. {.mem_type = INPUT_PLAYBACK, .mem_base = (uint32_t)&playback_input_buffer[0], .mem_size = 0x800,},
  80. {.mem_type = OUTPUT_DECODER, .mem_base = (uint32_t)&output_decoder[0], .mem_size = sizeof(output_decoder),},
  81. {.mem_type = OUTPUT_PLAYBACK, .mem_base = (uint32_t)&playback_output_buffer[0], .mem_size = sizeof(playback_output_buffer),},
  82. {.mem_type = OUTPUT_PCM, .mem_base = (uint32_t)&output_pcm[0], .mem_size = sizeof(output_pcm),},
  83. #ifdef CONFIG_ACTIONS_PARSER
  84. {.mem_type = PARSER_CHUCK, .mem_base = (uint32_t)&parser_chuck_buffer[0], .mem_size = sizeof(parser_chuck_buffer),},
  85. #endif
  86. {.mem_type = OUTPUT_PARSER, .mem_base = (uint32_t)&playback_input_buffer[0], .mem_size = 0x1800,},
  87. {.mem_type = PARSER_EVT_BUFFER, .mem_base = (uint32_t)&playback_input_buffer[0x1800], .mem_size = 0x20,},
  88. {.mem_type = BT_TRANSMIT_INPUT, .mem_base = (uint32_t)&playback_input_buffer[0x1820], .mem_size = 0xC00,},
  89. {.mem_type = BT_TRANSMIT_OUTPUT, .mem_base = (uint32_t)&playback_input_buffer[0x2420], .mem_size = 0x800,},
  90. #ifdef CONFIG_MEDIA_EFFECT
  91. {.mem_type = DAE_PARAM, .mem_base = (uint32_t)&dae_para, .mem_size = sizeof(dae_para),},
  92. #endif
  93. #ifdef CONFIG_ACTIONS_PARSER
  94. {.mem_type = PARSER_STACK, .mem_base = (uint32_t)&parser_stack[0], .mem_size = sizeof(parser_stack),},
  95. {.mem_type = CODEC_STACK, .mem_base = (uint32_t)&codec_stack[0], .mem_size = sizeof(codec_stack),},
  96. #endif
  97. #ifdef CONFIG_TOOL_ECTT
  98. {.mem_type = TOOL_ECTT_BUF, .mem_base = (uint32_t)&ectt_tool_buf[0], .mem_size = sizeof(ectt_tool_buf),},
  99. #endif
  100. {.mem_type = MIX_INPUT_BUF, .mem_base = (uint32_t)&playback_input_buffer[0x2C20], .mem_size = 0x400,},
  101. {.mem_type = MIX_RES_BUF, .mem_base = (uint32_t)&playback_input_buffer[0x3020], .mem_size = 0x400,},
  102. },
  103. },
  104. {
  105. .stream_type = AUDIO_STREAM_VOICE,
  106. .mem_cell = {
  107. {.mem_type = INPUT_PLAYBACK, .mem_base = (uint32_t)&playback_input_buffer[0x000], .mem_size = 0x2A8,},
  108. {.mem_type = OUTPUT_DECODER, .mem_base = (uint32_t)&playback_input_buffer[0x2A8], .mem_size = 0x400,},
  109. {.mem_type = OUTPUT_PLAYBACK, .mem_base = (uint32_t)&playback_input_buffer[0x6A8], .mem_size = 0x400,},
  110. {.mem_type = INPUT_PCM, .mem_base = (uint32_t)&playback_input_buffer[0xAA8], .mem_size = 0x000,},
  111. {.mem_type = INPUT_CAPTURE, .mem_base = (uint32_t)&playback_input_buffer[0xAA8], .mem_size = 0x800,},
  112. {.mem_type = INPUT_ENCBUF, .mem_base = (uint32_t)&playback_input_buffer[0x12A8], .mem_size = 0x400,},
  113. {.mem_type = OUTPUT_CAPTURE, .mem_base = (uint32_t)&playback_input_buffer[0x16A8], .mem_size = 0x15C,},
  114. {.mem_type = OUTPUT_SCO, .mem_base = (uint32_t)&playback_input_buffer[0x1804], .mem_size = 0xE8,},
  115. {.mem_type = TX_SCO, .mem_base = (uint32_t)&playback_input_buffer[0x18EC], .mem_size = 0x7C,},
  116. {.mem_type = RX_SCO, .mem_base = (uint32_t)&playback_input_buffer[0x1968], .mem_size = 0xF0,},
  117. {.mem_type = AEC_REFBUF0, .mem_base = (uint32_t)&playback_input_buffer[0x1A58], .mem_size = 0x200,},
  118. {.mem_type = OUTPUT_PCM, .mem_base = (uint32_t)&output_pcm[0], .mem_size = sizeof(output_pcm),},
  119. #if defined(CONFIG_TOOL_ASET)
  120. {.mem_type = TOOL_ASQT_DUMP_BUF, .mem_base = (uint32_t)&playback_input_buffer[0x1C58], .mem_size = 0xC00,},
  121. #endif
  122. #ifdef CONFIG_MEDIA_EFFECT
  123. {.mem_type = DAE_PARAM, .mem_base = (uint32_t)&dae_para, .mem_size = sizeof(dae_para),},
  124. #endif
  125. {.mem_type = OUTPUT_PKG_HDR, .mem_base = (uint32_t)&playback_input_buffer[0x2858], .mem_size = 0x100,},
  126. },
  127. },
  128. {
  129. .stream_type = AUDIO_STREAM_AI,
  130. .mem_cell = {
  131. {.mem_type = INPUT_PCM, .mem_base = (u32_t)&playback_input_buffer[0x0000], .mem_size = 0x800,},
  132. {.mem_type = INPUT_CAPTURE, .mem_base = (uint32_t)&playback_input_buffer[0x800], .mem_size = 0x800,},
  133. {.mem_type = INPUT_ENCBUF, .mem_base = (u32_t)&playback_input_buffer[0x1000], .mem_size = 0x1200,},
  134. {.mem_type = OUTPUT_CAPTURE, .mem_base = (u32_t)&playback_input_buffer[0x2200], .mem_size = 0x1000,},
  135. },
  136. },
  137. #ifdef CONFIG_DECODER_ACT_HW_ACCELERATION
  138. {
  139. .stream_type = AUDIO_STREAM_TTS,
  140. .mem_cell = {
  141. {.mem_type = OUTPUT_PCM, .mem_base = (uint32_t)&output_pcm[0], .mem_size = sizeof(output_pcm),},
  142. {.mem_type = INPUT_PLAYBACK, .mem_base = (uint32_t)&playback_input_buffer[0], .mem_size = 0x800,},
  143. {.mem_type = OUTPUT_DECODER, .mem_base = (uint32_t)&playback_input_buffer[0x800], .mem_size = 0x400,},
  144. {.mem_type = OUTPUT_PLAYBACK, .mem_base = (uint32_t)&playback_input_buffer[0xc00], .mem_size = 0x800,},
  145. },
  146. },
  147. #else
  148. {
  149. .stream_type = AUDIO_STREAM_TTS,
  150. .mem_cell = {
  151. {.mem_type = OUTPUT_PCM, .mem_base = (uint32_t)&output_pcm[0], .mem_size = 960,},
  152. #ifdef CONFIG_DECODER_ACT
  153. {.mem_type = DECODER_GLOBAL_DATA, .mem_base = (uint32_t)&decoder_share_ram[0], .mem_size = 0x1928,},
  154. #endif
  155. #ifdef CONFIG_ACTIONS_DECODER
  156. //{.mem_type = CODEC_STACK, .mem_base = (uint32_t)&decoder_stack[0], .mem_size = sizeof(decoder_stack),},
  157. #endif
  158. },
  159. },
  160. #endif
  161. };
  162. static const struct media_memory_block *_memdia_mem_find_memory_block(int stream_type)
  163. {
  164. const struct media_memory_block *mem_block = NULL;
  165. if (stream_type == AUDIO_STREAM_FM
  166. || stream_type == AUDIO_STREAM_I2SRX_IN
  167. || stream_type == AUDIO_STREAM_SPDIF_IN
  168. || stream_type == AUDIO_STREAM_MIC_IN) {
  169. stream_type = AUDIO_STREAM_LINEIN;
  170. }
  171. for (int i = 0; i < ARRAY_SIZE(media_memory_config) ; i++) {
  172. mem_block = &media_memory_config[i];
  173. if (mem_block->stream_type == stream_type) {
  174. return mem_block;
  175. }
  176. }
  177. return NULL;
  178. }
  179. static const struct media_memory_cell *_memdia_mem_find_memory_cell(const struct media_memory_block *mem_block, int mem_type)
  180. {
  181. const struct media_memory_cell *mem_cell = NULL;
  182. for (int i = 0; i < ARRAY_SIZE(mem_block->mem_cell) ; i++) {
  183. mem_cell = &mem_block->mem_cell[i];
  184. if (mem_cell->mem_type == mem_type) {
  185. return mem_cell;
  186. }
  187. }
  188. return NULL;
  189. }
  190. void *media_mem_get_cache_pool(int mem_type, int stream_type)
  191. {
  192. const struct media_memory_block *mem_block = NULL;
  193. const struct media_memory_cell *mem_cell = NULL;
  194. void *addr = NULL;
  195. mem_block = _memdia_mem_find_memory_block(stream_type);
  196. if (!mem_block) {
  197. goto exit;
  198. }
  199. mem_cell = _memdia_mem_find_memory_cell(mem_block, mem_type);
  200. if (!mem_cell) {
  201. goto exit;
  202. }
  203. return (void *)mem_cell->mem_base;
  204. exit:
  205. return addr;
  206. }
  207. int media_mem_get_cache_pool_size(int mem_type, int stream_type)
  208. {
  209. const struct media_memory_block *mem_block = NULL;
  210. const struct media_memory_cell *mem_cell = NULL;
  211. int mem_size = 0;
  212. mem_block = _memdia_mem_find_memory_block(stream_type);
  213. if (!mem_block) {
  214. goto exit;
  215. }
  216. mem_cell = _memdia_mem_find_memory_cell(mem_block, mem_type);
  217. if (!mem_cell) {
  218. goto exit;
  219. }
  220. return mem_cell->mem_size;
  221. exit:
  222. return mem_size;
  223. }
  224. #ifdef CONFIG_SOC_NO_PSRAM
  225. __in_section_unique(media.noinit.heap)
  226. #endif
  227. static char __aligned(4) media_mem_buffer[512];
  228. STRUCT_SECTION_ITERABLE(k_heap, media_mem_pool) = {
  229. .heap = {
  230. .init_mem = media_mem_buffer,
  231. .init_bytes = sizeof(media_mem_buffer),
  232. },
  233. };
  234. void *media_mem_malloc(int size, int memory_type)
  235. {
  236. return k_heap_alloc(&media_mem_pool, size, K_NO_WAIT);
  237. }
  238. void media_mem_free(void *ptr)
  239. {
  240. if (ptr != NULL) {
  241. k_heap_free(&media_mem_pool, ptr);
  242. }
  243. }
  244. #else
  245. void *media_mem_get_cache_pool(int mem_type, int stream_type)
  246. {
  247. return NULL;
  248. }
  249. int media_mem_get_cache_pool_size(int mem_type, int stream_type)
  250. {
  251. return 0;
  252. }
  253. void *media_mem_malloc(int size, int memory_type)
  254. {
  255. return NULL;
  256. }
  257. void media_mem_free(void *ptr)
  258. {
  259. }
  260. #endif