volume_manager.c 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. /*
  2. * Copyright (c) 2019 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file volume manager interface
  8. */
  9. #include <os_common_api.h>
  10. #include <app_manager.h>
  11. #include <msg_manager.h>
  12. #include <sys_event.h>
  13. #ifdef CONFIG_UI_MANAGER
  14. #include <ui_manager.h>
  15. #endif
  16. #include "audio_system.h"
  17. #ifdef CONFIG_MEDIA_PLAYER
  18. #include <media_player.h>
  19. #endif
  20. #ifdef CONFIG_ESD_MANAGER
  21. #include <esd_manager.h>
  22. #endif
  23. #ifdef CONFIG_BLUETOOTH
  24. #include <bt_manager.h>
  25. #endif
  26. int system_volume_get(int stream_type)
  27. {
  28. return audio_system_get_stream_volume(stream_type);
  29. }
  30. static void _system_volume_set_notify(uint32_t volume, bool is_limited)
  31. {
  32. struct app_msg new_msg = { 0 };
  33. new_msg.type = MSG_VOLUME_CHANGED_EVENT;
  34. new_msg.cmd = is_limited;
  35. new_msg.value = volume;
  36. send_async_msg("main", &new_msg);
  37. }
  38. int system_volume_set(int stream_type, int volume, bool display)
  39. {
  40. int ret = 0;
  41. bool is_limited = false;
  42. static uint32_t volume_timestampe = 0;
  43. int old_volume = audio_system_get_stream_volume(stream_type);
  44. #ifdef CONFIG_MEDIA_PLAYER
  45. media_player_t *player = media_player_get_current_main_player();
  46. /* set DA volume */
  47. if (player)
  48. media_player_set_volume(player, volume, volume);
  49. #endif
  50. ret = audio_system_set_stream_volume(stream_type, volume);
  51. if (display) {
  52. if (ret == MAX_VOLUME_VALUE) {
  53. if ((uint32_t)(k_cycle_get_32() - volume_timestampe) / (sys_clock_hw_cycles_per_sec() / 1000000)> 500000) {
  54. sys_event_notify(SYS_EVENT_MAX_VOLUME);
  55. volume_timestampe = k_cycle_get_32();
  56. }
  57. is_limited = true;
  58. } else if (ret == MIN_VOLUME_VALUE) {
  59. if ((uint32_t)(k_cycle_get_32() - volume_timestampe) / (sys_clock_hw_cycles_per_sec() / 1000000) > 500000) {
  60. sys_event_notify(SYS_EVENT_MIN_VOLUME);
  61. volume_timestampe = k_cycle_get_32();
  62. }
  63. is_limited = true;
  64. }
  65. }
  66. if (old_volume == audio_system_get_stream_volume(stream_type)) {
  67. is_limited = true;
  68. ret = old_volume;
  69. goto exit;
  70. }
  71. ret = volume;
  72. #ifdef CONFIG_BT_MANAGER
  73. if (stream_type == AUDIO_STREAM_VOICE) {
  74. #ifdef CONFIG_BT_HFP_HF
  75. bt_manager_hfp_sync_vol_to_remote(volume);
  76. #endif
  77. } else if (stream_type == AUDIO_STREAM_MUSIC) {
  78. #ifdef CONFIG_BT_AVRCP
  79. bt_manager_avrcp_sync_vol_to_remote(volume);
  80. #endif
  81. }
  82. #endif
  83. #ifdef CONFIG_ESD_MANAGER
  84. {
  85. uint16_t volume_info = ((stream_type & 0xff) << 8) | (volume & 0xff);
  86. esd_manager_save_scene(TAG_VOLUME, (uint8_t *)&volume_info, 2);
  87. }
  88. #endif
  89. #ifdef CONFIG_TWS
  90. bt_manager_tws_sync_volume_to_slave(stream_type, volume);
  91. #endif
  92. SYS_LOG_INF("old_volume %d new_volume %d\n", old_volume, volume);
  93. exit:
  94. if (display) {
  95. _system_volume_set_notify(ret, is_limited);
  96. }
  97. return ret;
  98. }
  99. int system_volume_down(int stream_type, int decrement)
  100. {
  101. return system_volume_set(stream_type,
  102. system_volume_get(stream_type) - decrement, true);
  103. }
  104. int system_volume_up(int stream_type, int increment)
  105. {
  106. return system_volume_set(stream_type,
  107. system_volume_get(stream_type) + increment, true);
  108. }
  109. static void _system_volume_change_notify(uint32_t volume)
  110. {
  111. struct app_msg new_msg = { 0 };
  112. #if CONFIG_AEM_WATCH_SUPPORT
  113. #ifdef CONFIG_BT_MANAGER
  114. new_msg.type = MSG_BT_EVENT;
  115. new_msg.cmd = BT_RMT_VOL_SYNC_EVENT;
  116. new_msg.value = volume;
  117. #endif
  118. send_async_msg("main", &new_msg);
  119. #else
  120. char *current_app = app_manager_get_current_app();
  121. #ifdef CONFIG_BT_MANAGER
  122. new_msg.type = MSG_BT_EVENT;
  123. new_msg.cmd = BT_RMT_VOL_SYNC_EVENT;
  124. new_msg.value = volume;
  125. #endif
  126. if (current_app) {
  127. send_async_msg(current_app, &new_msg);
  128. }
  129. #endif
  130. }
  131. void system_volume_sync_remote_to_device(uint32_t stream_type, uint32_t volume)
  132. {
  133. int old_volume = audio_system_get_stream_volume(stream_type);
  134. if (old_volume == volume) {
  135. return;
  136. }
  137. SYS_LOG_INF("old_volume %d new_volume %d\n", old_volume, volume);
  138. #ifdef CONFIG_TWS
  139. bt_manager_tws_sync_volume_to_slave(stream_type, volume);
  140. #endif
  141. #ifdef CONFIG_ESD_MANAGER
  142. {
  143. uint16_t volume_info = ((stream_type & 0xff) << 8) | (volume & 0xff);
  144. esd_manager_save_scene(TAG_VOLUME, (uint8_t *)&volume_info, 2);
  145. }
  146. #endif
  147. _system_volume_change_notify(volume);
  148. #ifdef CONFIG_TWS
  149. if (bt_manager_tws_get_dev_role() == BTSRV_TWS_SLAVE) {
  150. return;
  151. }
  152. #endif
  153. }