btsrv_main.c 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. /*
  2. * Copyright (c) 2019 Actions Semi Co., Inc.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief bt service interface
  9. */
  10. #define SYS_LOG_DOMAIN "btsrv_main"
  11. #include "btsrv_os_common.h"
  12. #include "btsrv_inner.h"
  13. #define MAX_BTSRV_PROCESSER (MSG_BTSRV_MAX - MSG_BTSRV_BASE)
  14. #define BTSRV_PORC_MONITOR_TIME (10) /* 10ms */
  15. static uint8_t btstack_ready_flag;
  16. static btsrv_msg_process msg_processer[MAX_BTSRV_PROCESSER];
  17. static int _bt_service_init(struct app_msg *msg)
  18. {
  19. btsrv_callback cb = _btsrv_get_msg_param_callback(msg);
  20. btstack_ready_flag = 0;
  21. if (!btsrv_adapter_init(cb)) {
  22. SYS_LOG_ERR("btstack_init failed\n");
  23. return -EAGAIN;
  24. }
  25. btsrv_adapter_run();
  26. if (cb) {
  27. /* wait for ready */
  28. while (!btstack_ready_flag)
  29. os_sleep(10);
  30. }
  31. return 0;
  32. }
  33. static int _bt_service_exit(void)
  34. {
  35. btsrv_adapter_stop();
  36. srv_manager_thread_exit(BLUETOOTH_SERVICE_NAME);
  37. return 0;
  38. }
  39. void bt_service_set_bt_ready(void)
  40. {
  41. btstack_ready_flag = 1;
  42. }
  43. uint8_t bt_service_ready_status(void)
  44. {
  45. return btstack_ready_flag;
  46. }
  47. int btsrv_register_msg_processer(uint8_t msg_type, btsrv_msg_process processer)
  48. {
  49. if ((msg_type < MSG_BTSRV_BASE) || (msg_type >= MSG_BTSRV_MAX) || !processer) {
  50. SYS_LOG_WRN("Unknow processer %p or msg_type %d\n", processer, msg_type);
  51. return -EINVAL;
  52. }
  53. msg_processer[msg_type - MSG_BTSRV_BASE] = processer;
  54. SYS_LOG_INF("Register %d processer\n", msg_type);
  55. return 0;
  56. }
  57. #if CONFIG_BT_BR_ACTS
  58. static void btsrv_print_cmd(uint8_t cmd)
  59. {
  60. char *str = NULL;
  61. uint8_t start_cmd;
  62. if (cmd >= MSG_BTSRV_MAP_CONNECT) {
  63. start_cmd = MSG_BTSRV_MAP_CONNECT;
  64. str = STRINGIFY(MSG_BTSRV_MAP_CONNECT);
  65. } else if (cmd >= MSG_BTSRV_TWS_INIT) {
  66. start_cmd = MSG_BTSRV_TWS_INIT;
  67. str = STRINGIFY(MSG_BTSRV_TWS_INIT);
  68. } else if (cmd >= MSG_BTSRV_HID_START) {
  69. start_cmd = MSG_BTSRV_HID_START;
  70. str = STRINGIFY(MSG_BTSRV_HID_START);
  71. } else if (cmd >= MSG_BTSRV_PBAP_CONNECT_FAILED) {
  72. start_cmd = MSG_BTSRV_PBAP_CONNECT_FAILED;
  73. str = STRINGIFY(MSG_BTSRV_PBAP_CONNECT_FAILED);
  74. } else if (cmd >= MSG_BTSRV_SPP_START) {
  75. start_cmd = MSG_BTSRV_SPP_START;
  76. str = STRINGIFY(MSG_BTSRV_SPP_START);
  77. } else if (cmd >= MSG_BTSRV_HFP_AG_START) {
  78. start_cmd = MSG_BTSRV_HFP_AG_START;
  79. str = STRINGIFY(MSG_BTSRV_HFP_AG_START);
  80. } else if (cmd >= MSG_BTSRV_HFP_SWITCH_SOUND_SOURCE) {
  81. start_cmd = MSG_BTSRV_HFP_SWITCH_SOUND_SOURCE;
  82. str = STRINGIFY(MSG_BTSRV_HFP_SWITCH_SOUND_SOURCE);
  83. } else if (cmd >= MSG_BTSRV_HFP_START) {
  84. start_cmd = MSG_BTSRV_HFP_START;
  85. str = STRINGIFY(MSG_BTSRV_HFP_START);
  86. } else if (cmd >= MSG_BTSRV_AVRCP_START) {
  87. start_cmd = MSG_BTSRV_AVRCP_START;
  88. str = STRINGIFY(MSG_BTSRV_AVRCP_START);
  89. } else if (cmd >= MSG_BTSRV_A2DP_START) {
  90. start_cmd = MSG_BTSRV_A2DP_START;
  91. str = STRINGIFY(MSG_BTSRV_A2DP_START);
  92. } else {
  93. start_cmd = MSG_BTSRV_SET_DEFAULT_SCAN_PARAM;
  94. str = STRINGIFY(MSG_BTSRV_SET_DEFAULT_SCAN_PARAM);
  95. }
  96. SYS_LOG_INF("btsrv cmd %d = %s + %d", cmd, str, (cmd - start_cmd));
  97. }
  98. #endif
  99. void bt_service_main_loop(void *parama1, void *parama2, void *parama3)
  100. {
  101. struct app_msg msg = {0};
  102. bool terminaltion = false;
  103. int result = 0;
  104. uint32_t start_time, end_time;
  105. while (!terminaltion) {
  106. if (receive_msg(&msg, thread_timer_next_timeout())) {
  107. switch (msg.type) {
  108. case MSG_EXIT_APP:
  109. _bt_service_exit();
  110. terminaltion = true;
  111. break;
  112. case MSG_INIT_APP:
  113. _bt_service_init(&msg);
  114. break;
  115. default:
  116. if (msg.type >= MSG_BTSRV_BASE && msg.type < MSG_BTSRV_MAX &&
  117. msg_processer[msg.type - MSG_BTSRV_BASE]) {
  118. #if CONFIG_BT_BR_ACTS
  119. if (!bt_service_ready_status()) {
  120. SYS_LOG_ERR("bt service not ready!\n");
  121. break;
  122. }
  123. #ifndef CONFIG_BT_BREDR_DISABLE
  124. btsrv_adapter_srv_get_wake_lock();
  125. #endif
  126. #endif
  127. start_time = os_uptime_get_32();
  128. msg_processer[msg.type - MSG_BTSRV_BASE](&msg);
  129. end_time = os_uptime_get_32();
  130. if ((end_time - start_time) > BTSRV_PORC_MONITOR_TIME) {
  131. printk("xxxx:(%s) Btsrv type %d cmd %d proc used %d ms\n", __func__, msg.type, msg.cmd, (end_time - start_time));
  132. #if CONFIG_BT_BR_ACTS
  133. btsrv_print_cmd(msg.cmd);
  134. #endif
  135. }
  136. }
  137. break;
  138. }
  139. if (msg.callback) {
  140. msg.callback(&msg, result, NULL);
  141. }
  142. }
  143. thread_timer_handle_expired();
  144. }
  145. }