btservice_tws_api.h 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280
  1. /*
  2. * Copyright (c) 2018 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @defgroup bt service APIs
  8. * @ingroup bluetooth_system_apis
  9. * @brief Just for bt manager used, not for application.
  10. * @{
  11. * @}
  12. */
  13. /**
  14. * @cond INTERNAL_HIDDEN
  15. */
  16. /**
  17. * @file bt service tws version and feature
  18. * Not need direct include this head file, just need include <btservice_api.h>.
  19. * this head file include by btservice_api.h
  20. */
  21. #ifndef _BTSERVICE_TWS_API_H_
  22. #define _BTSERVICE_TWS_API_H_
  23. /*====================== version and feature =====================================*/
  24. /** Tws feature */
  25. #define TWS_FEATURE_SUBWOOFER (0x01 << 0)
  26. #define TWS_FEATURE_A2DP_AAC (0x01 << 1)
  27. #define TWS_FEATURE_LOW_LATENCY (0x01 << 2)
  28. #define TWS_FEATURE_UI_STARTSTOP_CMD (0x01 << 3)
  29. #define TWS_FEATURE_HFP_TWS (0x01 << 4)
  30. /** 281B version and feature */
  31. #define US281B_START_VERSION 0x01
  32. #define US281B_END_VERSION 0x0F
  33. #define IS_281B_VERSION(x) (((x) >= US281B_START_VERSION) && ((x) <= US281B_END_VERSION))
  34. #define TWS_281B_VERSION_FEATURE_NO_SUBWOOFER (0)
  35. #define TWS_281B_VERSION_FEATURE_SUBWOOFER (TWS_FEATURE_SUBWOOFER)
  36. /** Woodperker version and feature
  37. * version: 0x10~0x1F, not support subwoofer
  38. * version: 0x20~0x2F, support subwoofer
  39. */
  40. #define WOODPECKER_START_VERSION 0x10
  41. #define WOODPECKER_END_VERSION 0x2F
  42. #define IS_WOODPECKER_VERSION(x) (((x) >= WOODPECKER_START_VERSION) && ((x) <= WOODPECKER_END_VERSION))
  43. #define TWS_WOODPERKER_VERSION_0x10_FEATURE (0)
  44. #ifdef CONFIG_BT_A2DP_AAC
  45. #define TWS_SUPPORT_FEATURE_AAC TWS_FEATURE_A2DP_AAC
  46. #else
  47. #define TWS_SUPPORT_FEATURE_AAC 0
  48. #endif
  49. #ifdef CONFIG_OS_LOW_LATENCY_MODE
  50. #define TWS_SUPPORT_FEATURE_LOW_LATENCY TWS_FEATURE_LOW_LATENCY
  51. #else
  52. #define TWS_SUPPORT_FEATURE_LOW_LATENCY 0
  53. #endif
  54. #ifdef CONFIG_BT_HFP_TWS
  55. #define TWS_SUPPORT_FEATURE_HFP_TWS TWS_FEATURE_HFP_TWS
  56. #else
  57. #define TWS_SUPPORT_FEATURE_HFP_TWS 0
  58. #endif
  59. #define TWS_WOODPERKER_VERSION_0x11_FEATURE (TWS_SUPPORT_FEATURE_AAC | TWS_SUPPORT_FEATURE_LOW_LATENCY | \
  60. TWS_FEATURE_UI_STARTSTOP_CMD | TWS_SUPPORT_FEATURE_HFP_TWS)
  61. /** Current version and feature for ZS285A stage 2 */
  62. #define TWS_CURRENT_VERSOIN (0x11)
  63. #define TWS_CURRENT_VERSION_FEATURE TWS_WOODPERKER_VERSION_0x11_FEATURE
  64. #define get_tws_current_versoin() TWS_CURRENT_VERSOIN
  65. #define get_tws_current_feature() TWS_CURRENT_VERSION_FEATURE
  66. /*====================== btsrv tws define/struct/api =====================================*/
  67. /** TWS mode */
  68. enum {
  69. TWS_MODE_SINGLE = 0, /* Single play mode */
  70. TWS_MODE_BT_TWS = 1, /* bluetooth tws play mode */
  71. TWS_MODE_AUX_TWS = 2, /* AUX tws mode(linein/pcm/FM RADIO/USB AUDIO/SPDIF RX/HDMI/HDMI ARC) */
  72. TWS_MODE_MUSIC_TWS = 3, /* Local music tws mode(sd card/usb disk) */
  73. };
  74. /** TWS drc mode */
  75. enum {
  76. DRC_MODE_NORMAL = 0,
  77. DRC_MODE_AUX = 1,
  78. DRC_MODE_OFF = 2, /* SPDIF close DRC */
  79. DRC_MODE_OLD_VER = 7, /* Master V1.2 version, not support set DRC mode */
  80. };
  81. /** TWS power off type */
  82. enum {
  83. TWS_POWEROFF_SYS = 0, /* System software poweroff */
  84. TWS_POWEROFF_KEY = 1, /* Key software poweroff */
  85. TWS_POWEROFF_S2 = 2, /* Enter S2 */
  86. };
  87. /** Tws speak channel */
  88. enum {
  89. TWS_SPK_STEREO = 0,
  90. TWS_SPK_LEFT = 1,
  91. TWS_SPK_RIGHT = 2,
  92. };
  93. /** TWS UI SYNC CMD */
  94. enum {
  95. TWS_SYNC_S2M_UI_SYNC_REPLY = 0x01, /* Replay master sync command */
  96. TWS_SYNC_S2M_UI_UPDATE_BAT_EV = 0x02, /* Update battery level */
  97. TWS_SYNC_S2M_UI_UPDATE_KEY_EV = 0x03, /* Update key message */
  98. TWS_SYNC_S2M_UI_PLAY_TTS_REQ = 0x04, /* Request play tts */
  99. TWS_SYNC_S2M_UI_UPDATE_BTPLAY_EV = 0x05, /* Update enter/exit btplay mode, version */
  100. TWS_SYNC_S2M_UI_EXCHANGE_FEATURE = 0x40, /* Exchange feature, just for woodperker */
  101. TWS_SYNC_M2S_UI_SET_VOL_VAL_CMD = 0x81, /* Set volume */
  102. TWS_SYNC_M2S_UI_SET_VOL_LIMIT_CMD = 0x82, /* Set voluem limit */
  103. TWS_SYNC_M2S_UI_SWITCH_POS_CMD = 0x83, /* Switch sound channel */
  104. TWS_SYNC_M2S_UI_POWEROFF_CMD = 0x84, /* Poweroff */
  105. TWS_SYNC_M2S_UI_TTS_PLAY_REQ = 0x85, /* Request slave play tts */
  106. TWS_SYNC_M2S_UI_TTS_STA_REQ = 0x86, /* Check slave tts play state */
  107. TWS_SYNC_M2S_UI_TTS_STOP_REQ = 0x87, /* Request slave stop play tts */
  108. TWS_SYNC_M2S_SWITCH_NEXT_APP_CMD = 0x88, /* Notify switch to next app */
  109. TWS_SYNC_M2S_UI_SWITCH_TWS_MODE_CMD = 0x90, /* Swith tws mode */
  110. TWS_SYNC_M2S_UI_ACK_UPDATE_BTPLAY = 0x91, /* Replay receive slave TWS_SYNC_S2M_UI_UPDATE_BTPLAY_EV command */
  111. TWS_SYNC_M2S_UI_EXCHANGE_FEATURE = 0xC0, /* Exchange feature, just for woodperker */
  112. TWS_SYNC_M2S_START_PLAYER = 0xC1, /* Notify start player, just for support TWS_FEATURE_UI_STARTSTOP_CMD */
  113. TWS_SYNC_M2S_STOP_PLAYER = 0xC2, /* Notify stop player, just for support TWS_FEATURE_UI_STARTSTOP_CMD */
  114. };
  115. /** Tws sync replay */
  116. enum {
  117. TWS_SYNC_REPLY_ACK = 0, /* Sync command replay ACK */
  118. TWS_SYNC_REPLY_NACK = 1, /* Sync command replay NACK */
  119. };
  120. /** tws event type */
  121. typedef enum {
  122. TWS_UI_EVENT = 0x01,
  123. TWS_INPUT_EVENT = 0x02,
  124. TWS_SYSTEM_EVENT = 0x03,
  125. TWS_VOLUME_EVENT = 0x04,
  126. TWS_STATUS_EVENT = 0x05,
  127. TWS_BATTERY_EVENT = 0x06,
  128. } btsrv_tws_event_type_e;
  129. /** Callbacks to report Bluetooth service's tws events*/
  130. typedef enum {
  131. /** notifying to check is pair tws deivce */
  132. BTSRV_TWS_DISCOVER_CHECK_DEVICE,
  133. /** notifying that tws connected */
  134. BTSRV_TWS_CONNECTED,
  135. /** notifying that tws disconnected */
  136. BTSRV_TWS_DISCONNECTED,
  137. /** notifying that tws start play */
  138. BTSRV_TWS_START_PLAY,
  139. /** notifying that tws play suspend */
  140. BTSRV_TWS_PLAY_SUSPEND,
  141. /** notifying that tws ready play */
  142. BTSRV_TWS_READY_PLAY,
  143. /** notifying that tws restart play*/
  144. BTSRV_TWS_RESTART_PLAY,
  145. /** notifying that tws event*/
  146. BTSRV_TWS_EVENT_SYNC,
  147. /** notifying that tws a2dp connected */
  148. BTSRV_TWS_A2DP_CONNECTED,
  149. /** notifying that tws hfp connected */
  150. BTSRV_TWS_HFP_CONNECTED,
  151. /** notifying tws irq trigger, be carefull, call back in irq context */
  152. BTSRV_TWS_IRQ_CB,
  153. /** notifying still have pending start play after disconnected */
  154. BTSRV_TWS_UNPROC_PENDING_START_CB,
  155. /** notifying slave btplay mode */
  156. BTSRV_TWS_UPDATE_BTPLAY_MODE,
  157. /** notifying peer version */
  158. BTSRV_TWS_UPDATE_PEER_VERSION,
  159. /** notifying sink start play*/
  160. BTSRV_TWS_SINK_START_PLAY,
  161. /** notifying tws failed to do tws pair */
  162. BTSRV_TWS_PAIR_FAILED,
  163. /** Callback request app want tws role */
  164. BTSRV_TWS_EXPECT_TWS_ROLE,
  165. /** notifying received sco data */
  166. BTSRV_TWS_SCO_DATA,
  167. /** notifying call state */
  168. BTSRV_TWS_HFP_CALL_STATE,
  169. } btsrv_tws_event_e;
  170. /** Tws device role */
  171. typedef enum {
  172. BTSRV_TWS_NONE,
  173. BTSRV_TWS_PENDING, /** Get name finish but a2dp not connected, unkown a2dp source role */
  174. BTSRV_TWS_MASTER,
  175. BTSRV_TWS_SLAVE,
  176. } btsrv_role_e;
  177. /** Tws restart reason */
  178. typedef enum {
  179. TWS_RESTART_SAMPLE_DIFF,
  180. TWS_RESTART_DECODE_ERROR,
  181. TWS_RESTART_LOST_FRAME,
  182. TWS_RESTART_ALREADY_RUNING,
  183. TWS_RESTART_MONITOR_TIMEOUT,
  184. } btsrv_tws_restart_reason_e;
  185. typedef int (*btsrv_tws_callback)(int event, void *param, int param_size);
  186. typedef int (*media_trigger_start_cb)(void *handle);
  187. typedef int (*media_is_ready_cb)(void *handle);
  188. typedef uint32_t (*media_get_samples_cnt_cb)(void *handle, uint8_t *audio_mode);
  189. typedef int (*media_get_error_state_cb)(void *handle);
  190. typedef int (*media_get_aps_level_cb)(void *handle);
  191. typedef int (*media_get_sample_rate_cb)(void *handle);
  192. struct update_version_param {
  193. uint8_t versoin;
  194. uint32_t feature;
  195. };
  196. typedef struct {
  197. void *media_handle;
  198. media_is_ready_cb is_ready;
  199. media_trigger_start_cb trigger_start;
  200. media_get_samples_cnt_cb get_samples_cnt;
  201. media_get_error_state_cb get_error_state;
  202. media_get_aps_level_cb get_aps_level;
  203. media_get_sample_rate_cb get_sample_rate;
  204. } media_runtime_observer_t;
  205. typedef int (*btsrv_tws_get_role)(void);
  206. typedef int (*btsrv_tws_get_sample_diff)(int *samples_diff, uint8_t *aps_level, uint16_t *bt_clock);
  207. typedef int (*btsrv_tws_set_media_observer)(media_runtime_observer_t *observer);
  208. typedef int (*btsrv_tws_aps_change_notify)(uint8_t level);
  209. typedef int (*btsrv_tws_trigger_restart)(uint8_t reason);
  210. typedef int (*btsrv_tws_exchange_samples)(uint32_t *ext_add_samples, uint32_t *sync_ext_samples);
  211. typedef int (*btsrv_tws_aps_nogotiate)(uint8_t *req_level, uint8_t *curr_level);
  212. typedef struct {
  213. btsrv_tws_set_media_observer set_media_observer;
  214. btsrv_tws_get_role get_role;
  215. btsrv_tws_get_sample_diff get_samples_diff;
  216. btsrv_tws_aps_change_notify aps_change_notify;
  217. btsrv_tws_trigger_restart trigger_restart;
  218. btsrv_tws_exchange_samples exchange_samples;
  219. btsrv_tws_aps_nogotiate aps_nogotiate;
  220. } tws_runtime_observer_t;
  221. int btif_tws_register_processer(void);
  222. int btif_tws_init(btsrv_tws_callback cb);
  223. int btif_tws_wait_pair(int try_times);
  224. int btif_tws_cancel_wait_pair(void);
  225. int btif_tws_disconnect(bd_address_t *addr);
  226. int btif_tws_can_do_pair(void);
  227. int btif_tws_is_in_connecting(void);
  228. int btif_tws_get_dev_role(void);
  229. int btif_tws_set_input_stream(io_stream_t stream);
  230. int btif_tws_set_sco_input_stream(io_stream_t stream);
  231. tws_runtime_observer_t *btif_tws_get_tws_observer(void);
  232. int btif_tws_send_command(uint8_t *data, int len);
  233. int btif_tws_send_command_sync(uint8_t *data, int len);
  234. uint32_t btif_tws_get_bt_clock(void);
  235. int btif_tws_set_bt_local_play(bool bt_play, bool local_play);
  236. void btif_tws_update_tws_mode(uint8_t tws_mode, uint8_t drc_mode);
  237. bool btif_tws_check_is_woodpecker(void);
  238. bool btif_tws_check_support_feature(uint32_t feature);
  239. void btif_tws_set_codec(uint8_t codec);
  240. /**
  241. * INTERNAL_HIDDEN @endcond
  242. */
  243. #endif