bt_manager_avrcp.c 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354
  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 avrcp 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 <bt_manager.h>
  18. #include <msg_manager.h>
  19. #include "bt_manager_inner.h"
  20. #include "btservice_api.h"
  21. #include "bt_porting_inner.h"
  22. #ifdef CONFIG_MEDIA
  23. #include <audio_policy.h>
  24. #include <audio_system.h>
  25. #include <volume_manager.h>
  26. #endif
  27. #ifdef CONFIG_BT_AVRCP_GET_ID3
  28. static void _bt_manager_avrcp_msg_cb(struct app_msg *msg, int result, void *not_used)
  29. {
  30. if (msg && msg->ptr){
  31. struct bt_id3_info *info = msg->ptr;
  32. for(int i =0 ; i< BT_TOTAL_ATTRIBUTE_ITEM_NUM; i++){
  33. if(info->item[i].data){
  34. bt_mem_free(info->item[i].data);
  35. }
  36. }
  37. bt_mem_free(msg->ptr);
  38. }
  39. }
  40. #endif
  41. static void _bt_manager_avrcp_callback(uint16_t hdl, btsrv_avrcp_event_e event, void *param)
  42. {
  43. int status;
  44. switch (event) {
  45. /** notifying that avrcp connected */
  46. case BTSRV_AVRCP_CONNECTED:
  47. {
  48. SYS_LOG_INF("avrcp connected\n");
  49. if (bt_manager_get_connected_dev_num() == 1) {
  50. bt_manager_event_notify(BT_AVRCP_CONNECTION_EVENT, NULL, 0);
  51. }
  52. }
  53. break;
  54. /** notifying that avrcp disconnected*/
  55. case BTSRV_AVRCP_DISCONNECTED:
  56. {
  57. SYS_LOG_INF("avrcp disconnected\n");
  58. if (bt_manager_get_connected_dev_num() == 1) {
  59. bt_manager_event_notify(BT_AVRCP_DISCONNECTION_EVENT, NULL, 0);
  60. }
  61. }
  62. break;
  63. /** notifying that avrcp stoped */
  64. case BTSRV_AVRCP_STOPED:
  65. {
  66. SYS_LOG_INF("avrcp stoped\n");
  67. status = BT_STATUS_PAUSED;
  68. bt_manager_event_notify(BT_AVRCP_PLAYBACK_STATUS_CHANGED_EVENT, (void *)&status, 4);
  69. }
  70. break;
  71. /** notifying that avrcp paused */
  72. case BTSRV_AVRCP_PAUSED:
  73. {
  74. SYS_LOG_INF("avrcp paused\n");
  75. status = BT_STATUS_PAUSED;
  76. bt_manager_event_notify(BT_AVRCP_PLAYBACK_STATUS_CHANGED_EVENT, (void *)&status, 4);
  77. }
  78. break;
  79. /** notifying that avrcp playing */
  80. case BTSRV_AVRCP_PLAYING:
  81. {
  82. SYS_LOG_INF("avrcp playing\n");
  83. status = BT_STATUS_PLAYING;
  84. bt_manager_event_notify(BT_AVRCP_PLAYBACK_STATUS_CHANGED_EVENT, (void *)&status, 4);
  85. }
  86. break;
  87. /** notifying that avrcp cur track change */
  88. case BTSRV_AVRCP_TRACK_CHANGE:
  89. {
  90. SYS_LOG_INF("avrcp track change\n");
  91. bt_manager_event_notify(BT_AVRCP_TRACK_CHANGED_EVENT, NULL, 0);
  92. }
  93. break;
  94. /** notifying that id3 info */
  95. #ifdef CONFIG_BT_AVRCP_GET_ID3
  96. case BTSRV_AVRCP_UPDATE_ID3_INFO:
  97. {
  98. SYS_LOG_INF("avrcp id3 info\n");
  99. struct bt_id3_info info;
  100. struct bt_id3_info *pinfo = (struct bt_id3_info *)param;
  101. memcpy(&info,pinfo,sizeof(info));
  102. for(int i =0 ; i< BT_TOTAL_ATTRIBUTE_ITEM_NUM; i++){
  103. if(info.item[i].len && pinfo->item[i].data){
  104. info.item[i].data = bt_mem_malloc(info.item[i].len + 1);
  105. memset(info.item[i].data, 0, info.item[i].len + 1);
  106. memcpy(info.item[i].data, pinfo->item[i].data, info.item[i].len);
  107. }
  108. SYS_LOG_INF("id3 %d %s\n",info.item[i].id,info.item[i].data);
  109. }
  110. int ret = bt_manager_event_notify_ext(BT_AVRCP_UPDATE_ID3_INFO_EVENT, (void *)&info,sizeof(info),_bt_manager_avrcp_msg_cb);
  111. if(ret <= 0){
  112. for(int i =0 ; i< BT_TOTAL_ATTRIBUTE_ITEM_NUM; i++){
  113. if(info.item[i].data){
  114. bt_mem_free(info.item[i].data);
  115. }
  116. }
  117. }
  118. }
  119. break;
  120. case BTSRV_AVRCP_PLAYBACK_POS:
  121. {
  122. uint32_t *pos = param;
  123. if ((*pos) == 0xFFFFFFFF) {
  124. SYS_LOG_INF("No track currently selected");
  125. } else {
  126. SYS_LOG_INF("Playback pos %d ms", *pos);
  127. }
  128. bt_manager_event_notify(BT_AVRCP_UPDATE_PLAYBACK_POS, param, sizeof(uint32_t));
  129. }
  130. break;
  131. #endif
  132. default:
  133. break;
  134. }
  135. }
  136. #if (defined CONFIG_VOLUME_MANAGER) || (defined CONFIG_BT_AVRCP_VOL_SYNC)
  137. static uint32_t _bt_manager_music_to_avrcp_volume(uint32_t music_vol)
  138. {
  139. uint32_t avrcp_vol = 0;
  140. #ifdef CONFIG_AUDIO
  141. uint32_t max_volume = audio_policy_get_volume_level();
  142. if (music_vol == 0) {
  143. avrcp_vol = 0;
  144. } else if (music_vol >= max_volume) {
  145. avrcp_vol = 0x7F;
  146. } else {
  147. avrcp_vol = (music_vol * 0x80 / max_volume);
  148. }
  149. #endif
  150. return avrcp_vol;
  151. }
  152. #endif
  153. #ifdef CONFIG_VOLUME_MANAGER
  154. static uint32_t _bt_manager_avrcp_to_music_volume(uint32_t avrcp_vol)
  155. {
  156. uint32_t music_vol = 0;
  157. uint32_t max_volume = audio_policy_get_volume_level();
  158. if (avrcp_vol == 0) {
  159. music_vol = 0;
  160. } else if (avrcp_vol >= 0x7F) {
  161. music_vol = max_volume;
  162. } else {
  163. music_vol = (avrcp_vol + 1) * max_volume / 0x80;
  164. if (music_vol == 0) {
  165. music_vol = 1;
  166. }
  167. }
  168. return music_vol;
  169. }
  170. #endif
  171. void _bt_manager_avrcp_get_volume_callback(uint16_t hdl, uint8_t *volume)
  172. {
  173. #ifdef CONFIG_VOLUME_MANAGER
  174. uint32_t music_vol = audio_system_get_stream_volume(AUDIO_STREAM_MUSIC);
  175. *volume = (uint8_t)_bt_manager_music_to_avrcp_volume(music_vol);
  176. #endif
  177. }
  178. void _bt_manager_avrcp_set_volume_callback(uint16_t hdl, uint8_t volume)
  179. {
  180. #ifdef CONFIG_VOLUME_MANAGER
  181. uint32_t music_vol = (uint8_t)_bt_manager_avrcp_to_music_volume(volume);
  182. SYS_LOG_INF("avrcp remote set abs vol %d", volume);
  183. system_volume_sync_remote_to_device(AUDIO_STREAM_MUSIC, music_vol);
  184. #endif
  185. }
  186. void _bt_manager_avrcp_pass_ctrl_callback(uint16_t hdl, uint8_t cmd, uint8_t state)
  187. {
  188. SYS_LOG_INF("cmd %d\n", cmd);
  189. if (state) {
  190. #ifdef CONFIG_VOLUME_MANAGER
  191. uint32_t music_vol = audio_system_get_stream_volume(AUDIO_STREAM_MUSIC);
  192. uint32_t max_volume = audio_policy_get_volume_level();
  193. if (cmd == BTSRV_AVRCP_CMD_VOLUMEUP) {
  194. if (music_vol == max_volume)
  195. return;
  196. system_volume_sync_remote_to_device(AUDIO_STREAM_MUSIC, music_vol + 1);
  197. } else if(cmd == BTSRV_AVRCP_CMD_VOLUMEDOWN) {
  198. if (music_vol == 0)
  199. return;
  200. system_volume_sync_remote_to_device(AUDIO_STREAM_MUSIC, music_vol - 1);
  201. }
  202. #endif
  203. }
  204. }
  205. #ifdef CONFIG_BT_A2DP_TRS
  206. void _bt_manager_trs_avrcp_set_volume_callback(uint16_t hdl, uint8_t volume)
  207. {
  208. #ifdef CONFIG_VOLUME_MANAGER
  209. uint32_t music_vol = (uint8_t)_bt_manager_avrcp_to_music_volume(volume);
  210. SYS_LOG_INF("trs avrcp remote set vol %d", volume);
  211. system_volume_sync_remote_to_device(AUDIO_STREAM_LOCAL_MUSIC, music_vol);
  212. #endif
  213. }
  214. #endif
  215. static const btsrv_avrcp_callback_t btm_avrcp_ctrl_cb = {
  216. .event_cb = _bt_manager_avrcp_callback,
  217. .get_volume_cb = _bt_manager_avrcp_get_volume_callback,
  218. .set_volume_cb = _bt_manager_avrcp_set_volume_callback,
  219. .pass_ctrl_cb = _bt_manager_avrcp_pass_ctrl_callback,
  220. #ifdef CONFIG_BT_A2DP_TRS
  221. .trs_pass_ctrl_cb = bt_manager_trs_avrcp_pass_ctrl_callback,
  222. .trs_set_volume_cb = _bt_manager_trs_avrcp_set_volume_callback,
  223. #endif
  224. };
  225. int bt_manager_avrcp_profile_start(void)
  226. {
  227. return btif_avrcp_start((btsrv_avrcp_callback_t *)&btm_avrcp_ctrl_cb);
  228. }
  229. int bt_manager_avrcp_profile_stop(void)
  230. {
  231. return btif_avrcp_stop();
  232. }
  233. int bt_manager_avrcp_play(void)
  234. {
  235. return btif_avrcp_send_command(BTSRV_AVRCP_CMD_PLAY);
  236. }
  237. int bt_manager_avrcp_stop(void)
  238. {
  239. return btif_avrcp_send_command(BTSRV_AVRCP_CMD_STOP);
  240. }
  241. int bt_manager_avrcp_pause(void)
  242. {
  243. return btif_avrcp_send_command(BTSRV_AVRCP_CMD_PAUSE);
  244. }
  245. int bt_manager_avrcp_play_next(void)
  246. {
  247. return btif_avrcp_send_command(BTSRV_AVRCP_CMD_FORWARD);
  248. }
  249. int bt_manager_avrcp_play_previous(void)
  250. {
  251. return btif_avrcp_send_command(BTSRV_AVRCP_CMD_BACKWARD);
  252. }
  253. int bt_manager_avrcp_fast_forward(bool start)
  254. {
  255. if (start) {
  256. btif_avrcp_send_command(BTSRV_AVRCP_CMD_FAST_FORWARD_START);
  257. } else {
  258. btif_avrcp_send_command(BTSRV_AVRCP_CMD_FAST_FORWARD_STOP);
  259. }
  260. return 0;
  261. }
  262. int bt_manager_avrcp_fast_backward(bool start)
  263. {
  264. if (start) {
  265. btif_avrcp_send_command(BTSRV_AVRCP_CMD_FAST_BACKWARD_START);
  266. } else {
  267. btif_avrcp_send_command(BTSRV_AVRCP_CMD_FAST_BACKWARD_STOP);
  268. }
  269. return 0;
  270. }
  271. int bt_manager_avrcp_sync_vol_to_remote(uint32_t music_vol)
  272. {
  273. #ifdef CONFIG_BT_AVRCP
  274. #ifdef CONFIG_BT_AVRCP_VOL_SYNC
  275. uint32_t avrcp_vol = _bt_manager_music_to_avrcp_volume(music_vol);
  276. return btif_avrcp_sync_vol(avrcp_vol);
  277. #else
  278. return 0;
  279. #endif
  280. #else
  281. return 0;
  282. #endif
  283. }
  284. #ifdef CONFIG_BT_AVRCP_GET_ID3
  285. int bt_manager_avrcp_get_id3_info(void)
  286. {
  287. return btif_avrcp_get_id3_info();
  288. }
  289. void bt_manager_avrcp_notify_playback_pos(uint32_t pos)
  290. {
  291. _bt_manager_avrcp_callback(0, BTSRV_AVRCP_PLAYBACK_POS, &pos);
  292. }
  293. int bt_manager_avrcp_get_playback_pos(void)
  294. {
  295. /* Response play status with play position */
  296. return btif_avrcp_get_play_status();
  297. }
  298. #else
  299. int bt_manager_avrcp_get_id3_info(void)
  300. {
  301. return -EIO;
  302. }
  303. int bt_manager_avrcp_get_playback_pos(void)
  304. {
  305. return -EIO;
  306. }
  307. #endif
  308. int bt_manager_avrcp_set_absolute_volume(uint8_t dev_type, uint8_t *data, uint8_t len)
  309. {
  310. return btif_avrcp_set_absolute_volume(dev_type, data, len);
  311. }