bt_manager_inner.h 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  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.
  9. */
  10. #ifndef __BT_MANAGER_INNER_H__
  11. #define __BT_MANAGER_INNER_H__
  12. #include <btservice_api.h>
  13. #include <stream.h>
  14. struct bt_mgr_dev_info {
  15. bd_address_t addr;
  16. uint16_t hdl;
  17. uint16_t used:1;
  18. uint16_t notify_connected:1;
  19. uint16_t is_tws:1;
  20. uint16_t is_trs:1;
  21. uint16_t hf_connected:1;
  22. uint16_t a2dp_connected:1;
  23. uint16_t avrcp_connected:1;
  24. uint16_t spp_connected:3;
  25. uint16_t hid_connected:1;
  26. uint16_t hid_wake_lock:1;
  27. uint8_t *name;
  28. uint8_t hid_state;
  29. uint8_t hid_report_id;
  30. os_delayed_work hid_delay_work;
  31. };
  32. struct bt_mgr_dev_info *bt_mgr_find_dev_info_by_hdl(uint16_t hdl);
  33. bool bt_mgr_check_dev_type(uint8_t type, uint16_t hdl);
  34. void bt_manager_record_halt_phone(void);
  35. void *bt_manager_get_halt_phone(uint8_t *halt_cnt);
  36. void bt_manager_startup_reconnect(void);
  37. void bt_manager_disconnected_reason(void *param);
  38. int bt_manager_a2dp_profile_start(void);
  39. int bt_manager_a2dp_profile_stop(void);
  40. int bt_manager_avrcp_profile_start(void);
  41. int bt_manager_avrcp_profile_stop(void);
  42. int bt_manager_hfp_profile_start(void);
  43. int bt_manager_hfp_profile_stop(void);
  44. int bt_manager_hfp_ag_profile_start(void);
  45. int bt_manager_hfp_ag_profile_stop(void);
  46. int bt_manager_hfp_sco_start(void);
  47. int bt_manager_hfp_sco_stop(void);
  48. int bt_manager_spp_profile_start(void);
  49. int bt_manager_spp_profile_stop(void);
  50. void bt_manager_hid_delay_work(os_work *work);
  51. void bt_manager_hid_connected_check_work(uint16_t hdl);
  52. int bt_manager_hid_profile_start(uint16_t disconnect_delay, uint16_t opt_delay);
  53. int bt_manager_hid_profile_stop(void);
  54. int bt_manager_hid_register_sdp();
  55. int bt_manager_did_register_sdp();
  56. void bt_manager_tws_init(void);
  57. int bt_manager_hfp_init(void);
  58. void bt_manager_hfp_dump_info(void);
  59. int bt_manager_hfp_ag_init(void);
  60. int bt_manager_hfp_sco_init(void);
  61. uint8_t bt_manager_config_get_tws_limit_inquiry(void);
  62. uint8_t bt_manager_config_get_tws_compare_high_mac(void);
  63. uint8_t bt_manager_config_get_tws_compare_device_id(void);
  64. uint8_t bt_manager_config_get_idle_extend_windown(void);
  65. void bt_manager_config_set_pre_bt_mac(uint8_t *mac);
  66. void bt_manager_updata_pre_bt_mac(uint8_t *mac);
  67. bool bt_manager_config_enable_tws_sync_event(void);
  68. uint8_t bt_manager_config_connect_phone_num(void);
  69. bool bt_manager_config_support_a2dp_aac(void);
  70. bool bt_manager_config_pts_test(void);
  71. uint16_t bt_manager_config_volume_sync_delay_ms(void);
  72. uint32_t bt_manager_config_bt_class(void);
  73. uint16_t *bt_manager_config_get_device_id(void);
  74. int bt_manager_config_expect_tws_connect_role(void);
  75. int btmgr_map_time_client_connect(bd_address_t *bd);
  76. #ifdef CONFIG_BT_AVRCP_GET_ID3
  77. void bt_manager_avrcp_notify_playback_pos(uint32_t pos);
  78. #endif
  79. #ifdef CONFIG_BT_ANCS_AMS
  80. void ble_ancs_ams_init(void);
  81. void ble_ancs_ams_event_handle(uint8_t event_code, void *event_data);
  82. int ble_ancs_ams_get_playback_pos(void);
  83. #endif
  84. #ifdef CONFIG_BT_A2DP_TRS
  85. int bt_manager_trs_a2dp_profile_start(struct btsrv_a2dp_start_param *param);
  86. void bt_manager_trs_avrcp_pass_ctrl_callback(void *param, uint8_t cmd, uint8_t state);
  87. #endif
  88. #ifdef CONFIG_BT_PNP_INFO_SEARCH
  89. int bt_manager_pnp_info_search_init(void);
  90. int bt_manager_pnp_info_search_deinit(void);
  91. #endif
  92. #endif