bt_manager_a2dp.c 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277
  1. /*
  2. * Copyright (c) 2019 Actions Semi Co., Inc.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief bt manager a2dp profile.
  9. */
  10. #define SYS_LOG_NO_NEWLINE
  11. #define SYS_LOG_DOMAIN "bt manager"
  12. #include <os_common_api.h>
  13. #include <zephyr.h>
  14. #include <stdlib.h>
  15. #include <stdio.h>
  16. #include <string.h>
  17. #include <stream.h>
  18. #include <sys_event.h>
  19. #include <bt_manager.h>
  20. #include "bt_manager_inner.h"
  21. #include "btservice_api.h"
  22. #define A2DP_ENDPOINT_MAX CONFIG_BT_MAX_BR_CONN
  23. static const uint8_t a2dp_sbc_codec[] = {
  24. 0x00, /* BT_A2DP_AUDIO << 4 */
  25. 0x00, /* BT_A2DP_SBC */
  26. 0xFF, /* (SNK optional) 16000, 32000, (SNK mandatory)44100, 48000, mono, dual channel, stereo, join stereo */
  27. 0xFF, /* (SNK mandatory) Block length: 4/8/12/16, subbands:4/8, Allocation Method: SNR, Londness */
  28. 0x02, /* min bitpool */
  29. #ifdef CONFIG_BT_A2DP_MAX_BITPOOL
  30. CONFIG_BT_A2DP_MAX_BITPOOL, /* max bitpool */
  31. #else
  32. 0x35,
  33. #endif
  34. };
  35. static const uint8_t a2dp_aac_codec[] = {
  36. 0x00, /* BT_A2DP_AUDIO << 4 */
  37. 0x02, /* BT_A2DP_MPEG2 */
  38. 0xF0, /* MPEG2 AAC LC, MPEG4 AAC LC, MPEG AAC LTP, MPEG4 AAC Scalable */
  39. 0x01, /* Sampling Frequecy 44100 */
  40. 0x8F, /* Sampling Frequecy 48000, channels 1, channels 2 */
  41. 0xFF, /* VBR, bit rate */
  42. 0xFF, /* bit rate */
  43. 0xFF /* bit rate */
  44. };
  45. #ifdef CONFIG_BT_A2DP_TRS
  46. static const uint8_t a2dp_trs_sbc_codec_user[] = {
  47. 0x00, /* BT_A2DP_AUDIO << 4 */
  48. 0x00, /* BT_A2DP_SBC */
  49. 0x21, /* (((BT_A2DP_SBC_48000 | BT_A2DP_SBC_44100) << 4) | (BT_A2DP_SBC_JOINT_STEREO)) */
  50. 0xFF, /* (SNK mandatory) Block length: 4/8/12/16, subbands:4/8, Allocation Method: SNR, Londness */
  51. 0x02, /* min bitpool */
  52. #if defined(CONFIG_BT_A2DP_MAX_BITPOOL) && (CONFIG_BT_A2DP_MAX_BITPOOL < 48)
  53. CONFIG_BT_A2DP_MAX_BITPOOL, /* max bitpool */
  54. #else
  55. 48, /* max bitpool */
  56. #endif
  57. };
  58. #endif
  59. struct a2dp_codec_info {
  60. uint8_t codec_id;
  61. uint8_t sample_rate;
  62. uint8_t max_bitpool;
  63. };
  64. enum {
  65. A2DP_CODEC_INFO_PHONE = 0,
  66. A2DP_CODEC_INFO_TRS = 1,
  67. A2DP_CODEC_INFO_MAX,
  68. };
  69. static struct a2dp_codec_info s_codec_info[A2DP_CODEC_INFO_MAX];
  70. static void _bt_manager_a2dp_callback(uint16_t hdl, btsrv_a2dp_event_e event, void *packet, int size)
  71. {
  72. switch (event) {
  73. case BTSRV_A2DP_STREAM_OPENED:
  74. {
  75. SYS_LOG_INF("stream opened\n");
  76. }
  77. break;
  78. case BTSRV_A2DP_STREAM_CLOSED:
  79. {
  80. SYS_LOG_INF("stream closed\n");
  81. bt_manager_event_notify(BT_A2DP_STREAM_SUSPEND_EVENT, NULL, 0);
  82. }
  83. break;
  84. case BTSRV_A2DP_STREAM_STARED:
  85. {
  86. SYS_LOG_INF("stream started\n");
  87. bt_manager_event_notify(BT_A2DP_STREAM_START_EVENT, NULL, 0);
  88. }
  89. break;
  90. case BTSRV_A2DP_STREAM_SUSPEND:
  91. {
  92. SYS_LOG_INF("stream suspend\n");
  93. bt_manager_event_notify(BT_A2DP_STREAM_SUSPEND_EVENT, NULL, 0);
  94. }
  95. break;
  96. case BTSRV_A2DP_DATA_INDICATED:
  97. {
  98. static uint8_t print_cnt;
  99. int ret = 0;
  100. bt_manager_stream_pool_lock();
  101. io_stream_t bt_stream = bt_manager_get_stream(STREAM_TYPE_A2DP);
  102. if (!bt_stream) {
  103. bt_manager_stream_pool_unlock();
  104. if (print_cnt == 0) {
  105. SYS_LOG_INF("stream is null\n");
  106. }
  107. print_cnt++;
  108. break;
  109. }
  110. if (stream_get_space(bt_stream) < size) {
  111. bt_manager_stream_pool_unlock();
  112. if (print_cnt == 0) {
  113. SYS_LOG_WRN(" stream is full\n");
  114. }
  115. print_cnt++;
  116. break;
  117. }
  118. ret = stream_write(bt_stream, packet, size);
  119. if (ret != size) {
  120. if (print_cnt == 0) {
  121. SYS_LOG_WRN("write %d error %d\n", size, ret);
  122. }
  123. print_cnt++;
  124. bt_manager_stream_pool_unlock();
  125. break;
  126. }
  127. bt_manager_stream_pool_unlock();
  128. print_cnt = 0;
  129. break;
  130. }
  131. case BTSRV_A2DP_CODEC_INFO:
  132. {
  133. uint8_t *codec_info = (uint8_t *)packet;
  134. if (bt_mgr_check_dev_type(BTSRV_DEVICE_PHONE, hdl)) {
  135. s_codec_info[A2DP_CODEC_INFO_PHONE].codec_id = codec_info[0];
  136. s_codec_info[A2DP_CODEC_INFO_PHONE].sample_rate = codec_info[1];
  137. s_codec_info[A2DP_CODEC_INFO_PHONE].max_bitpool = codec_info[2];
  138. } else if (bt_mgr_check_dev_type(BTSRV_DEVICE_PLAYER, hdl)) {
  139. s_codec_info[A2DP_CODEC_INFO_TRS].codec_id = codec_info[0];
  140. s_codec_info[A2DP_CODEC_INFO_TRS].sample_rate = codec_info[1];
  141. s_codec_info[A2DP_CODEC_INFO_TRS].max_bitpool = codec_info[2];
  142. }
  143. break;
  144. }
  145. case BTSRV_A2DP_CONNECTED:
  146. break;
  147. case BTSRV_A2DP_DISCONNECTED:
  148. if (bt_mgr_check_dev_type(BTSRV_DEVICE_PHONE, hdl)) {
  149. s_codec_info[A2DP_CODEC_INFO_PHONE].codec_id = 0;
  150. s_codec_info[A2DP_CODEC_INFO_PHONE].sample_rate = 44;
  151. s_codec_info[A2DP_CODEC_INFO_PHONE].max_bitpool = 48;
  152. } else if (bt_mgr_check_dev_type(BTSRV_DEVICE_PLAYER, hdl)) {
  153. s_codec_info[A2DP_CODEC_INFO_TRS].codec_id = 0;
  154. s_codec_info[A2DP_CODEC_INFO_TRS].sample_rate = 44;
  155. s_codec_info[A2DP_CODEC_INFO_TRS].max_bitpool = 48;
  156. }
  157. break;
  158. case BTSRV_A2DP_GET_INIT_DELAY_REPORT:
  159. {
  160. uint16_t *deplay_report = (uint16_t *)packet;
  161. /* initialize delay report, unit(1/10ms), can't block thread */
  162. *deplay_report = system_check_low_latencey_mode() ? 700 : 2000;
  163. break;
  164. }
  165. default:
  166. break;
  167. }
  168. }
  169. int bt_manager_a2dp_profile_start(void)
  170. {
  171. struct btsrv_a2dp_start_param param;
  172. memset(&param, 0, sizeof(param));
  173. param.cb = &_bt_manager_a2dp_callback;
  174. param.sbc_codec = (uint8_t *)a2dp_sbc_codec;
  175. param.sbc_endpoint_num = A2DP_ENDPOINT_MAX;
  176. if (bt_manager_config_support_a2dp_aac()) {
  177. param.aac_codec = (uint8_t *)a2dp_aac_codec;
  178. param.aac_endpoint_num = A2DP_ENDPOINT_MAX;
  179. }
  180. param.a2dp_cp_scms_t = 1;
  181. param.a2dp_delay_report = 1;
  182. #ifdef CONFIG_BT_A2DP_TRS
  183. param.a2dp_cp_scms_t = 0; /* Is better just set for transmit */
  184. param.a2dp_delay_report = 0; /* Is better just set for transmit */
  185. bt_manager_trs_a2dp_profile_start(&param);
  186. param.trs_sbc_codec = (uint8_t *)a2dp_trs_sbc_codec_user;
  187. #endif
  188. return btif_a2dp_start((struct btsrv_a2dp_start_param *)&param);
  189. }
  190. int bt_manager_a2dp_profile_stop(void)
  191. {
  192. return btif_a2dp_stop();
  193. }
  194. int bt_manager_a2dp_check_state(void)
  195. {
  196. return btif_a2dp_check_state();
  197. }
  198. int bt_manager_a2dp_send_delay_report(uint16_t delay_time)
  199. {
  200. return btif_a2dp_send_delay_report(delay_time);
  201. }
  202. int bt_manager_a2dp_disable(void)
  203. {
  204. return btif_a2dp_disable();
  205. }
  206. int bt_manager_a2dp_enable(void)
  207. {
  208. return btif_a2dp_enable();
  209. }
  210. int bt_manager_a2dp_get_codecid(uint8_t type)
  211. {
  212. uint8_t codec_id = 0;
  213. if (type == BTSRV_DEVICE_PHONE) {
  214. codec_id = s_codec_info[A2DP_CODEC_INFO_PHONE].codec_id;
  215. } else if (type == BTSRV_DEVICE_PLAYER) {
  216. codec_id = s_codec_info[A2DP_CODEC_INFO_TRS].codec_id;
  217. }
  218. SYS_LOG_INF("codec_id %d\n", codec_id);
  219. return codec_id;
  220. }
  221. int bt_manager_a2dp_get_sample_rate(uint8_t type)
  222. {
  223. uint8_t sample_rate = 44;
  224. if (type == BTSRV_DEVICE_PHONE) {
  225. sample_rate = s_codec_info[A2DP_CODEC_INFO_PHONE].sample_rate;
  226. } else if (type == BTSRV_DEVICE_PLAYER) {
  227. sample_rate = s_codec_info[A2DP_CODEC_INFO_TRS].sample_rate;
  228. }
  229. SYS_LOG_INF("sample_rate %d\n", sample_rate);
  230. return sample_rate;
  231. }
  232. int bt_manager_a2dp_get_max_bitpool(uint8_t type)
  233. {
  234. uint8_t max_bitpool = 48;
  235. if (type == BTSRV_DEVICE_PHONE) {
  236. max_bitpool = s_codec_info[A2DP_CODEC_INFO_PHONE].max_bitpool;
  237. } else if (type == BTSRV_DEVICE_PLAYER) {
  238. max_bitpool = s_codec_info[A2DP_CODEC_INFO_TRS].max_bitpool;
  239. }
  240. SYS_LOG_INF("max_bitpool %d\n", max_bitpool);
  241. return max_bitpool;
  242. }