bt_manager.c 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662
  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. #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 <msg_manager.h>
  18. #include <mem_manager.h>
  19. #include <bt_manager.h>
  20. #include "bt_manager_inner.h"
  21. #include <sys_event.h>
  22. #include <sys_manager.h>
  23. #include <btservice_api.h>
  24. #include <srv_manager.h>
  25. #include <acts_bluetooth/host_interface.h>
  26. #include <property_manager.h>
  27. #include <drivers/bluetooth/bt_drv.h>
  28. #include "bt_porting_inner.h"
  29. #ifdef CONFIG_PROPERTY
  30. #include <property_manager.h>
  31. #endif
  32. #ifdef CONFIG_BT_TEMP_COMPENSATION
  33. #include <board_cfg.h>
  34. #include <drivers/adc.h>
  35. #include <soc_pmu.h>
  36. #include <drivers/hrtimer.h>
  37. #endif
  38. #ifdef CONFIG_DVFS
  39. #include <dvfs.h>
  40. #endif
  41. #ifdef CONFIG_TASK_WDT
  42. #include <task_wdt_manager.h>
  43. #endif
  44. #define MAX_MGR_DEV CONFIG_BT_MAX_CONN
  45. #define BT_RESET_SUPPORT (1)
  46. //#define RUN_BQB_IN_SYSTEM_MODE 1
  47. struct bt_manager_info_t {
  48. uint16_t connected_phone_num:2;
  49. uint16_t trs_devices_num:2;
  50. uint16_t tws_mode:1;
  51. uint16_t playing:1;
  52. uint16_t inited:1;
  53. uint16_t btdev_err:1;
  54. uint16_t bt_TO_reboot:1;
  55. uint16_t bt_ready:1;
  56. uint16_t bt_state;
  57. uint8_t dis_reason;
  58. struct bt_mgr_dev_info dev[MAX_MGR_DEV];
  59. bd_address_t halt_addr[MAX_MGR_DEV];
  60. #ifdef CONFIG_BT_TEMP_COMPENSATION
  61. uint16_t bt_temp_comp_stage:2;
  62. uint16_t temp_comp_runing_flag:1;
  63. int16_t bt_comp_last_temp;
  64. os_delayed_work bt_temp_comp_timer;
  65. struct hrtimer temp_comp_hrtimer;
  66. #endif
  67. };
  68. static struct bt_manager_info_t bt_mgr_info;
  69. #if CONFIG_BT_BR_ACTS
  70. /* BR inquiry/page scan interval/window
  71. * Range: 0x0011 to 0x1000
  72. * Time = N * 0.625 ms
  73. * Time Range: 10.625 ms to Page Scan Interval
  74. * Default: inquity scan interval(0x1000) window(0x0012)
  75. * Default: page scan interval(0x0800) window(0x0012)
  76. */
  77. static const struct bt_scan_parameter default_scan_param = {
  78. .tws_limit_inquiry = 1, /* 0: Normal inquiry, other: limit inquiry */
  79. .idle_extend_windown = 0,
  80. .inquiry_interval = 0x1000, /* Spec default value 0x1000 */
  81. .inquiry_windown = 0x0024, /* Spec default value 0x12 */
  82. .page_interval = 0x0800, /* Spec default value 0x0800 */
  83. .page_windown = 0x0024, /* Spec default value 0x12 */
  84. };
  85. static const struct bt_scan_parameter enhance_scan_param = {
  86. .tws_limit_inquiry = 1, /* 0: Normal inquiry, other: limit inquiry */
  87. .idle_extend_windown = 0,
  88. .inquiry_interval = 0x1000, /* Spec default value 0x1000 */
  89. .inquiry_windown = 0x0024, /* Spec default value 0x12 */
  90. .page_interval = 0x0800, /* Spec default value 0x0800 */
  91. .page_windown = 0x0024, /* Spec default value 0x12 */
  92. };
  93. static void bt_mgr_set_config_info(void)
  94. {
  95. struct btsrv_config_info cfg;
  96. memset(&cfg, 0, sizeof(cfg));
  97. cfg.max_conn_num = CONFIG_BT_MAX_BR_CONN;
  98. cfg.max_phone_num = bt_manager_config_connect_phone_num();
  99. cfg.pts_test_mode = bt_manager_config_pts_test() ? 1 : 0;
  100. cfg.volume_sync_delay_ms = bt_manager_config_volume_sync_delay_ms();
  101. cfg.tws_version = get_tws_current_versoin();
  102. cfg.tws_feature = get_tws_current_feature();
  103. #ifdef CONFIG_BT_DOUBLE_PHONE_PREEMPTION_MODE
  104. cfg.double_preemption_mode = 1;
  105. #else
  106. cfg.double_preemption_mode = 0;
  107. #endif
  108. btif_base_set_config_info(&cfg);
  109. }
  110. /* User can change to different scan param at any time after bt ready.
  111. * bt_manager_set_visible(false);
  112. * bt_manager_set_connectable(false);
  113. * btif_br_set_scan_param(&scan_param, true); // new parameter
  114. * bt_manager_set_visible(true);
  115. * bt_manager_set_connectable(true);
  116. */
  117. static void bt_mgr_set_scan_param(void)
  118. {
  119. struct bt_scan_parameter param;
  120. /* If not set default_scan_param, bt service will used default param from spec */
  121. memcpy(&param, &default_scan_param, sizeof(param));
  122. param.tws_limit_inquiry = bt_manager_config_get_tws_limit_inquiry();
  123. param.idle_extend_windown = bt_manager_config_get_idle_extend_windown();
  124. btif_br_set_scan_param(&param, false);
  125. memcpy(&param, &enhance_scan_param, sizeof(param));
  126. param.tws_limit_inquiry = bt_manager_config_get_tws_limit_inquiry();
  127. param.idle_extend_windown = bt_manager_config_get_idle_extend_windown();
  128. btif_br_set_scan_param(&param, true);
  129. }
  130. #endif
  131. static int bt_mananger_btdev_error(int err)
  132. {
  133. struct app_msg msg = {0};
  134. if (!err) {
  135. return 0;
  136. }
  137. #if BT_RESET_SUPPORT
  138. if (0 == bt_mgr_info.bt_ready) {
  139. printk("bt is not ok, bt_ready %d.", bt_mgr_info.bt_ready);
  140. return 0;
  141. }
  142. void bt_conn_unack_tx(void);
  143. bt_conn_unack_tx();
  144. bt_mgr_info.bt_TO_reboot = 0;
  145. msg.type = MSG_BT_DEVICE_ERROR; /* bt module reset */
  146. send_async_msg("main", &msg);
  147. #else
  148. bt_mgr_info.bt_TO_reboot = 1;
  149. msg.type = MSG_REBOOT;
  150. msg.cmd = REBOOT_REASON_HCI_TIMEOUT;
  151. send_async_msg("main", &msg);
  152. #endif
  153. return 0;
  154. }
  155. #define CFG_BT_CRASH_CNT "BT_CRASH_CNT"
  156. int bt_manager_reset_btdev(void)
  157. {
  158. int time_out = 0;
  159. uint8_t btreset_cnt = 0;
  160. if (0 == bt_mgr_info.bt_ready) {
  161. printk("bt is not ok, bt_ready %d.\n", bt_mgr_info.bt_ready);
  162. return 0;
  163. }
  164. /*********record the numbers of btcore crash **********/
  165. if (1 == property_get(CFG_BT_CRASH_CNT, (char *)&btreset_cnt, sizeof(btreset_cnt))) {
  166. if(btreset_cnt < 0xFF)
  167. btreset_cnt ++;
  168. } else {
  169. btreset_cnt = 1;
  170. }
  171. printk("btreset_cnt %d.\n", btreset_cnt);
  172. property_set(CFG_BT_CRASH_CNT, (char *)&btreset_cnt, sizeof(btreset_cnt));
  173. bt_mgr_info.bt_ready = 0;
  174. #ifdef CONFIG_BT_TEMP_COMPENSATION
  175. os_delayed_work_cancel(&bt_mgr_info.bt_temp_comp_timer);
  176. if (hrtimer_is_running(&bt_mgr_info.temp_comp_hrtimer)) {
  177. hrtimer_stop(&bt_mgr_info.temp_comp_hrtimer);
  178. }
  179. #endif
  180. #if CONFIG_BT_BR_ACTS
  181. bt_manager_set_visible(false);
  182. bt_manager_set_connectable(false);
  183. btif_br_auto_reconnect_stop();
  184. if (btif_br_get_connected_device_num()) {
  185. btif_br_disconnect_device(BTSRV_DISCONNECT_ALL_MODE);
  186. while (btif_br_get_connected_device_num() && time_out++ < 100) {
  187. os_sleep(10);
  188. }
  189. }
  190. #endif
  191. void bt_conn_release_all(void);
  192. bt_conn_release_all();
  193. #ifdef CONFIG_BT_SPP
  194. bt_manager_spp_profile_stop();
  195. #endif
  196. #ifdef CONFIG_BT_A2DP
  197. bt_manager_a2dp_profile_stop();
  198. #endif
  199. #ifdef CONFIG_BT_AVRCP
  200. bt_manager_avrcp_profile_stop();
  201. #endif
  202. #ifdef CONFIG_BT_HFP_HF
  203. bt_manager_hfp_profile_stop();
  204. bt_manager_hfp_sco_stop();
  205. #endif
  206. #ifdef CONFIG_BT_HFP_AG
  207. bt_manager_hfp_ag_profile_stop();
  208. #endif
  209. #ifdef CONFIG_BT_HID
  210. bt_manager_hid_profile_stop();
  211. #endif
  212. #ifdef CONFIG_BT_PNP_INFO_SEARCH
  213. bt_manager_pnp_info_search_deinit();
  214. #endif
  215. btif_stop();
  216. time_out = 0;
  217. while (srv_manager_check_service_is_actived(BLUETOOTH_SERVICE_NAME) && (time_out++ < 500)) {
  218. os_sleep(10);
  219. }
  220. #ifdef CONFIG_BT_BLE
  221. bt_manager_ble_deinit();
  222. #endif
  223. btdrv_reset();
  224. bt_mgr_info.inited = 0;
  225. bt_mgr_info.btdev_err = 1;
  226. bt_manager_init();
  227. return 0;
  228. }
  229. #ifndef CONFIG_AEM_WATCH_SUPPORT
  230. /* Better call by app after receive MSG_BT_ENGINE_READY message */
  231. static void bt_mgr_start_open_bt(void)
  232. {
  233. #if CONFIG_BT_BR_ACTS
  234. //uint8_t a2dp_enable;
  235. #endif
  236. #ifdef CONFIG_BT_BLE
  237. #ifndef CONFIG_OTA_BLE_MASTER_SUPPORT
  238. bt_manager_ble_adv_start();
  239. #endif
  240. #endif
  241. #if CONFIG_BT_BR_ACTS
  242. #ifdef CONFIG_BT_BREDR_DISABLE
  243. bt_manager_set_visible(false);
  244. bt_manager_set_connectable(false);
  245. #else
  246. bt_manager_set_visible(true);
  247. bt_manager_set_connectable(true);
  248. #endif
  249. if (!bt_manager_config_pts_test()) {
  250. /**only for power on disable a2dp/avrcp******/
  251. //if(property_get(CFG_BT_AUDIO_ENABLE, (char *)&a2dp_enable, sizeof(a2dp_enable)) >= 0) {
  252. // if(!a2dp_enable)
  253. // bt_manager_a2dp_disable();
  254. //}
  255. bt_manager_startup_reconnect();
  256. }
  257. #endif
  258. }
  259. #endif
  260. static void bt_mgr_btsrv_ready(int err)
  261. {
  262. #ifdef CONFIG_BT_BLE
  263. uint8_t ble_init_mode = 0;
  264. #endif
  265. #ifdef CONFIG_BT_A2DP_TRS
  266. struct bt_trs_list_dev_t dev_list[BT_A2DP_TRS_DEV_MAX];
  267. #endif
  268. SYS_LOG_INF("err %d",err);
  269. if(err){
  270. bt_mananger_btdev_error(err);
  271. return;
  272. }
  273. #if CONFIG_BT_BR_ACTS
  274. bt_mgr_set_config_info();
  275. bt_mgr_set_scan_param();
  276. #endif
  277. #ifdef CONFIG_TWS
  278. bt_manager_tws_init();
  279. #endif
  280. #ifdef CONFIG_BT_PNP_INFO_SEARCH
  281. bt_manager_pnp_info_search_init();
  282. #endif
  283. #ifndef CONFIG_OTA_PRODUCT_SUPPORT
  284. #ifdef CONFIG_BT_A2DP
  285. bt_manager_a2dp_profile_start();
  286. #endif
  287. #ifdef CONFIG_BT_AVRCP
  288. bt_manager_avrcp_profile_start();
  289. #endif
  290. #ifdef CONFIG_BT_HFP_HF
  291. bt_manager_hfp_init();
  292. bt_manager_hfp_sco_init();
  293. bt_manager_hfp_sco_start();
  294. bt_manager_hfp_profile_start();
  295. #endif
  296. #ifdef CONFIG_BT_HFP_AG
  297. bt_manager_hfp_ag_init();
  298. bt_manager_hfp_ag_profile_start();
  299. #endif
  300. #endif
  301. #ifdef CONFIG_BT_SPP
  302. bt_manager_spp_profile_start();
  303. #endif
  304. #ifdef CONFIG_BT_HID
  305. bt_manager_hid_register_sdp();
  306. bt_manager_hid_profile_start(5000, 1000);
  307. bt_manager_did_register_sdp();
  308. #endif
  309. if(bt_mgr_info.btdev_err){
  310. #if CONFIG_BT_BR_ACTS
  311. int btif_spp_sdp_restore(void);
  312. btif_spp_sdp_restore();
  313. #endif
  314. #ifdef CONFIG_BT_BLE
  315. ble_init_mode = 1;
  316. #endif
  317. os_sleep(500);
  318. }
  319. #ifdef CONFIG_BT_BLE
  320. bt_manager_ble_init(ble_init_mode);
  321. #endif
  322. #ifdef CONFIG_BT_A2DP_TRS
  323. bt_manager_get_trs_dev_info(dev_list,BT_A2DP_TRS_DEV_MAX);
  324. #endif
  325. /* TODO: fixed me, temp to send message to main */
  326. if (!bt_mgr_info.btdev_err) {
  327. struct app_msg msg = {0};
  328. msg.type = MSG_BT_ENGINE_READY;
  329. send_async_msg("main", &msg);
  330. } else {
  331. bt_mgr_info.btdev_err = 0;
  332. }
  333. #ifndef CONFIG_AEM_WATCH_SUPPORT
  334. bt_mgr_start_open_bt();
  335. #endif
  336. bt_mgr_info.bt_ready = 1;
  337. }
  338. #if CONFIG_BT_BR_ACTS
  339. static void bt_mgr_add_dev_info(bd_address_t *addr, uint16_t hdl)
  340. {
  341. int i;
  342. for (i = 0; i < MAX_MGR_DEV; i++) {
  343. if (bt_mgr_info.dev[i].used && !memcmp(&bt_mgr_info.dev[i].addr, addr, sizeof(bd_address_t))) {
  344. SYS_LOG_WRN("Already exist!\n");
  345. return;
  346. }
  347. }
  348. for (i = 0; i < MAX_MGR_DEV; i++) {
  349. if (bt_mgr_info.dev[i].used == 0) {
  350. bt_mgr_info.dev[i].used = 1;
  351. memcpy(&bt_mgr_info.dev[i].addr, addr, sizeof(bd_address_t));
  352. bt_mgr_info.dev[i].hdl = hdl;
  353. #ifdef CONFIG_BT_HID
  354. os_delayed_work_init(&bt_mgr_info.dev[i].hid_delay_work, bt_manager_hid_delay_work);
  355. #endif
  356. return;
  357. }
  358. }
  359. SYS_LOG_WRN("Without new dev info!\n");
  360. }
  361. static void bt_mgr_free_dev_info(struct bt_mgr_dev_info *info)
  362. {
  363. #ifdef CONFIG_BT_HID
  364. os_delayed_work_cancel(&info->hid_delay_work);
  365. if (info->hid_wake_lock) {
  366. bt_wake_unlock();
  367. info->hid_wake_lock = 0;
  368. }
  369. #endif
  370. memset(info, 0, sizeof(struct bt_mgr_dev_info));
  371. }
  372. static struct bt_mgr_dev_info *bt_mgr_find_dev_info(bd_address_t *addr)
  373. {
  374. int i;
  375. for (i = 0; i < MAX_MGR_DEV; i++) {
  376. if (bt_mgr_info.dev[i].used && !memcmp(&bt_mgr_info.dev[i].addr, addr, sizeof(bd_address_t))) {
  377. return &bt_mgr_info.dev[i];
  378. }
  379. }
  380. return NULL;
  381. }
  382. struct bt_mgr_dev_info *bt_mgr_find_dev_info_by_hdl(uint16_t hdl)
  383. {
  384. int i;
  385. for (i = 0; i < MAX_MGR_DEV; i++) {
  386. if (bt_mgr_info.dev[i].used && bt_mgr_info.dev[i].hdl == hdl) {
  387. return &bt_mgr_info.dev[i];
  388. }
  389. }
  390. return NULL;
  391. }
  392. bool bt_mgr_check_dev_type(uint8_t type, uint16_t hdl)
  393. {
  394. struct bt_mgr_dev_info *info = bt_mgr_find_dev_info_by_hdl(hdl);
  395. if (!info) {
  396. return false;
  397. }
  398. if (type == BTSRV_DEVICE_ALL) {
  399. return true;
  400. } else if (type == BTSRV_DEVICE_PHONE &&
  401. info->is_tws == 0 && info->is_trs == 0) {
  402. return true;
  403. } else if (type == BTSRV_DEVICE_TWS && info->is_tws) {
  404. return true;
  405. } else if (type == BTSRV_DEVICE_PLAYER && info->is_trs) {
  406. return true;
  407. }
  408. return false;
  409. }
  410. static void bt_mgr_notify_connected(struct bt_mgr_dev_info *info)
  411. {
  412. if (info->is_tws || info->is_trs || info->notify_connected) {
  413. /* Tws not notify in here, or already notify */
  414. return;
  415. }
  416. SYS_LOG_INF("btsrv connected:%s\n", (char *)info->name);
  417. info->notify_connected = 1;
  418. bt_manager_set_status(BT_STATUS_CONNECTED);
  419. /* Advise not to set, just let phone make dicision. */
  420. //btif_br_set_phone_controler_role(&info->addr, CONTROLER_ROLE_MASTER); /* Set phone controler as master */
  421. //btif_br_set_phone_controler_role(&info->addr, CONTROLER_ROLE_SLAVE); /* Set phone controler as slave */
  422. #ifdef CONFIG_BT_MAP_CLIENT
  423. /**only for get datatime*/
  424. if (btmgr_map_time_client_connect(&info->addr)) {
  425. SYS_LOG_INF("bt map time connected:%s\n", (char *)info->name);
  426. } else {
  427. SYS_LOG_INF("bt map time connected:%s failed\n", (char *)info->name);
  428. }
  429. #endif
  430. }
  431. static void bt_mgr_check_disconnect_notify(struct bt_mgr_dev_info *info, uint8_t reason)
  432. {
  433. if (info->is_tws || info->is_trs) {
  434. /* Tws not notify in here */
  435. return;
  436. }
  437. if (info->notify_connected) {
  438. SYS_LOG_INF("btsrv disconnected reason %d\n", reason);
  439. info->notify_connected = 0;
  440. bt_mgr_info.dis_reason = reason; /* Transfer to BT_STATUS_DISCONNECTED */
  441. bt_manager_set_status(BT_STATUS_DISCONNECTED);
  442. }
  443. }
  444. /* return 0: accept connect request, other: rejuect connect request
  445. * Direct callback from bt stack, can't do too much thing in this function.
  446. */
  447. static int bt_mgr_check_connect_req(struct bt_link_cb_param *param)
  448. {
  449. if (param->new_dev) {
  450. SYS_LOG_INF("New connect request\n");
  451. } else {
  452. SYS_LOG_INF("%s connect request\n", param->is_tws ? "Tws" : (param->is_trs ? "Device" : "Phone"));
  453. }
  454. return 0;
  455. }
  456. #endif
  457. /* Sample code, just for reference */
  458. #ifdef CONFIG_BT_DOUBLE_PHONE_EXT_MODE
  459. #define SUPPORT_CHECK_DISCONNECT_NONACTIVE_DEV 1
  460. #else
  461. #define SUPPORT_CHECK_DISCONNECT_NONACTIVE_DEV 0
  462. #endif
  463. #if SUPPORT_CHECK_DISCONNECT_NONACTIVE_DEV
  464. static void bt_mgr_check_disconnect_nonactive_dev(struct bt_mgr_dev_info *info)
  465. {
  466. int i, phone_cnt = 0, tws_cnt = 0, trs_cnt = 0;
  467. bd_address_t a2dp_active_addr;
  468. struct bt_mgr_dev_info *exp_disconnect_info = NULL;
  469. btif_a2dp_get_active_mac(&a2dp_active_addr);
  470. for (i = 0; ((i < MAX_MGR_DEV) && bt_mgr_info.dev[i].used); i++) {
  471. if (bt_mgr_info.dev[i].is_tws) {
  472. tws_cnt++;
  473. } else if (bt_mgr_info.dev[i].is_trs) {
  474. trs_cnt++;
  475. } else {
  476. phone_cnt++;
  477. if (memcmp(&bt_mgr_info.dev[i].addr, &a2dp_active_addr, sizeof(bd_address_t)) &&
  478. memcmp(&bt_mgr_info.dev[i].addr, &info->addr, sizeof(bd_address_t))) {
  479. exp_disconnect_info = &bt_mgr_info.dev[i];
  480. }
  481. }
  482. }
  483. /* Tws Trs paired */
  484. if (tws_cnt || trs_cnt) {
  485. if (phone_cnt >= 2) {
  486. bt_manager_br_disconnect(&info->addr);
  487. }
  488. return;
  489. }
  490. if (phone_cnt >= 3) {
  491. if (exp_disconnect_info) {
  492. bt_manager_br_disconnect(&exp_disconnect_info->addr);
  493. }
  494. }
  495. }
  496. #endif
  497. #ifdef CONFIG_BT_A2DP_TRS
  498. int bt_manager_trs_get_connected_dev_num(void)
  499. {
  500. return bt_mgr_info.trs_devices_num;
  501. }
  502. static void bt_mgr_trs_check_connect_notify(struct bt_mgr_dev_info *info)
  503. {
  504. if (info->is_trs == 0) {
  505. return;
  506. }
  507. if(info->notify_connected == 0) {
  508. SYS_LOG_INF("bt trs connected\n");
  509. bt_mgr_info.trs_devices_num++;
  510. info->notify_connected = 1;
  511. }
  512. }
  513. static void bt_mgr_trs_check_disconnect_notify(struct bt_mgr_dev_info *info, uint8_t reason)
  514. {
  515. if (info->is_trs == 0) {
  516. return;
  517. }
  518. if (info->notify_connected) {
  519. SYS_LOG_INF("bt trs disconnected reason %d\n", reason);
  520. bt_mgr_info.trs_devices_num--;
  521. info->notify_connected = 0;
  522. }
  523. }
  524. static void bt_mgr_trs_a2dp_disconnect_notify(struct bt_mgr_dev_info *info)
  525. {
  526. if (info->a2dp_connected && info->is_trs) {
  527. bt_manager_event_notify(BT_TRS_A2DP_STREAM_CLOSE_EVENT, NULL, 0);
  528. }
  529. }
  530. int8_t bt_manager_get_trs_dev_info(struct bt_trs_list_dev_t *device_list,uint8_t max)
  531. {
  532. uint8_t num,i;
  533. if(!device_list){
  534. return -EIO;
  535. }
  536. num = btif_br_get_trs_list_info(device_list,max);
  537. if(num > 0){
  538. for (i = 0; i < num; i++) {
  539. SYS_LOG_INF("addr: %x %x %x %x %x %x name:%s",
  540. device_list[i].addr.val[0],
  541. device_list[i].addr.val[1],
  542. device_list[i].addr.val[2],
  543. device_list[i].addr.val[3],
  544. device_list[i].addr.val[4],
  545. device_list[i].addr.val[5],
  546. device_list[i].name);
  547. }
  548. }
  549. return num;
  550. }
  551. int bt_manager_clear_trs_dev_info(bd_address_t *bd)
  552. {
  553. if(!bd){
  554. return -EIO;
  555. }
  556. return btif_br_clean_trs_dev_info(bd);
  557. }
  558. #endif
  559. #if CONFIG_BT_BR_ACTS
  560. static int bt_mgr_link_event(void *param)
  561. {
  562. int ret = 0;
  563. int8_t rssi;
  564. struct bt_mgr_dev_info *info;
  565. struct bt_link_cb_param *in_param = param;
  566. SYS_LOG_INF("Link event(%d) %02x:%02x:%02x:%02x:%02x:%02x\n", in_param->link_event,
  567. in_param->addr->val[5], in_param->addr->val[4], in_param->addr->val[3],
  568. in_param->addr->val[2], in_param->addr->val[1], in_param->addr->val[0]);
  569. info = bt_mgr_find_dev_info(in_param->addr);
  570. if ((info == NULL) && (in_param->link_event != BT_LINK_EV_ACL_CONNECTED) &&
  571. (in_param->link_event != BT_LINK_EV_ACL_CONNECT_REQ)) {
  572. SYS_LOG_WRN("Already free %d\n", in_param->link_event);
  573. return ret;
  574. }
  575. switch (in_param->link_event) {
  576. case BT_LINK_EV_ACL_CONNECT_REQ:
  577. ret = bt_mgr_check_connect_req(in_param);
  578. break;
  579. case BT_LINK_EV_ACL_CONNECTED:
  580. bt_mgr_add_dev_info(in_param->addr, in_param->hdl);
  581. bt_manager_get_actived_dev_rssi(&rssi);
  582. #ifdef CONFIG_OTA_PRODUCT_SUPPORT
  583. void ota_product_ota_spp_connect(void);
  584. ota_product_ota_spp_connect();
  585. #endif
  586. break;
  587. case BT_LINK_EV_ACL_DISCONNECTED:
  588. #ifdef CONFIG_BT_A2DP_TRS
  589. bt_mgr_trs_a2dp_disconnect_notify(info);
  590. bt_mgr_trs_check_disconnect_notify(info, in_param->reason);
  591. #endif
  592. bt_mgr_check_disconnect_notify(info, in_param->reason);
  593. bt_mgr_free_dev_info(info);
  594. break;
  595. case BT_LINK_EV_GET_NAME:
  596. info->name = in_param->name;
  597. info->is_tws = in_param->is_tws;
  598. #ifdef CONFIG_BT_A2DP_TRS
  599. info->is_trs = in_param->is_trs;
  600. #endif
  601. #if SUPPORT_CHECK_DISCONNECT_NONACTIVE_DEV
  602. bt_mgr_check_disconnect_nonactive_dev(info);
  603. #endif
  604. break;
  605. case BT_LINK_EV_HF_CONNECTED:
  606. #ifdef CONFIG_BT_A2DP_TRS
  607. info->is_trs = in_param->is_trs;
  608. bt_mgr_trs_check_connect_notify(info);
  609. #endif
  610. bt_mgr_notify_connected(info);
  611. info->hf_connected = 1;
  612. break;
  613. case BT_LINK_EV_HF_DISCONNECTED:
  614. info->hf_connected = 0;
  615. break;
  616. case BT_LINK_EV_A2DP_CONNECTED:
  617. info->a2dp_connected = 1;
  618. #ifdef CONFIG_BT_A2DP_TRS
  619. info->is_trs = in_param->is_trs;
  620. bt_mgr_trs_check_connect_notify(info);
  621. #endif
  622. bt_mgr_notify_connected(info);
  623. break;
  624. case BT_LINK_EV_A2DP_DISCONNECTED:
  625. #ifdef CONFIG_BT_A2DP_TRS
  626. bt_mgr_trs_a2dp_disconnect_notify(info);
  627. #endif
  628. info->a2dp_connected = 0;
  629. break;
  630. case BT_LINK_EV_AVRCP_CONNECTED:
  631. info->avrcp_connected = 1;
  632. break;
  633. case BT_LINK_EV_AVRCP_DISCONNECTED:
  634. info->avrcp_connected = 0;
  635. break;
  636. case BT_LINK_EV_SPP_CONNECTED:
  637. info->spp_connected++;
  638. break;
  639. case BT_LINK_EV_SPP_DISCONNECTED:
  640. if (info->spp_connected) {
  641. info->spp_connected--;
  642. }
  643. break;
  644. case BT_LINK_EV_HID_CONNECTED:
  645. info->hid_connected = 1;
  646. #ifdef CONFIG_BT_HID
  647. if (!info->hid_wake_lock) {
  648. bt_wake_lock();
  649. info->hid_wake_lock = 1;
  650. }
  651. bt_manager_hid_connected_check_work(info->hdl);
  652. #endif
  653. break;
  654. case BT_LINK_EV_HID_DISCONNECTED:
  655. info->hid_connected = 0;
  656. #ifdef CONFIG_BT_HID
  657. if (info->hid_wake_lock) {
  658. bt_wake_unlock();
  659. info->hid_wake_lock = 0;
  660. }
  661. #endif
  662. break;
  663. default:
  664. break;
  665. }
  666. return ret;
  667. }
  668. /* Return 0: phone device; other : tws device
  669. * Direct callback from bt stack, can't do too much thing in this function.
  670. */
  671. static int bt_mgr_check_new_device_role(void *param)
  672. {
  673. struct btsrv_check_device_role_s *cb_param = param;
  674. uint8_t pre_mac[3];
  675. if (bt_manager_config_get_tws_compare_high_mac()) {
  676. bt_manager_config_set_pre_bt_mac(pre_mac);
  677. if (cb_param->addr.val[5] != pre_mac[0] ||
  678. cb_param->addr.val[4] != pre_mac[1] ||
  679. cb_param->addr.val[3] != pre_mac[2]) {
  680. return 0;
  681. }
  682. }
  683. #ifdef CONFIG_PROPERTY
  684. uint8_t name[33];
  685. memset(name, 0, sizeof(name));
  686. property_get(CFG_BT_NAME, name, 32);
  687. if (strlen(name) != cb_param->len || memcmp(cb_param->name, name, cb_param->len)) {
  688. return 0;
  689. }
  690. #endif
  691. return 1;
  692. }
  693. static void bt_mgr_btsrv_pairing_event(uint8_t event,void* param)
  694. {
  695. struct app_msg msg = {0};
  696. msg.type = MSG_BT_PAIRING_EVENT;
  697. msg.cmd = event;
  698. msg.value = (int)((uint32_t)param);
  699. send_async_msg("main", &msg);
  700. SYS_LOG_INF("param: %d",msg.value);
  701. }
  702. #endif
  703. static int _bt_mgr_callback(btsrv_event_e event, void *param)
  704. {
  705. int ret = 0;
  706. switch (event) {
  707. case BTSRV_READY:
  708. bt_mgr_btsrv_ready((int)param);
  709. break;
  710. #if CONFIG_BT_BR_ACTS
  711. case BTSRV_LINK_EVENT:
  712. ret = bt_mgr_link_event(param);
  713. break;
  714. case BTSRV_DISCONNECTED_REASON:
  715. bt_manager_disconnected_reason(param);
  716. break;
  717. case BTSRV_REQ_HIGH_PERFORMANCE:
  718. #ifdef CONFIG_ACTS_DVFS_DYNAMIC_LEVEL
  719. dvfs_set_level(DVFS_LEVEL_HIGH_PERFORMANCE, "btmanager");
  720. #endif
  721. break;
  722. case BTSRV_RELEASE_HIGH_PERFORMANCE:
  723. #ifdef CONFIG_ACTS_DVFS_DYNAMIC_LEVEL
  724. dvfs_unset_level(DVFS_LEVEL_HIGH_PERFORMANCE, "btmanager");
  725. #endif
  726. break;
  727. case BTSRV_REQ_FLUSH_PROPERTY:
  728. SYS_LOG_INF("Req flush %s\n", (char *)param);
  729. #ifdef CONFIG_PROPERTY
  730. //property_flush_req(param);
  731. property_flush(param); /* Direct flush */
  732. #endif
  733. break;
  734. case BTSRV_CHECK_NEW_DEVICE_ROLE:
  735. ret = bt_mgr_check_new_device_role(param);
  736. break;
  737. case BTSRV_PAIR_PASSKEY_DISPLAY :
  738. bt_mgr_btsrv_pairing_event(BTSRV_PAIR_PASSKEY_DISPLAY,param);
  739. break;
  740. case BTSRV_PAIRING_COMPLETE:
  741. bt_mgr_btsrv_pairing_event(BTSRV_PAIRING_COMPLETE,param);
  742. break;
  743. case BTSRV_PAIRING_FAIL:
  744. bt_mgr_btsrv_pairing_event(BTSRV_PAIRING_FAIL,NULL);
  745. break;
  746. case BTSRV_BR_RESOLVE_ADDR:
  747. bt_manager_br_resolve_connect(param);
  748. break;
  749. #endif
  750. default:
  751. break;
  752. }
  753. return ret;
  754. }
  755. #if CONFIG_BT_BR_ACTS
  756. void bt_manager_record_halt_phone(void)
  757. {
  758. uint8_t i, record = 0;
  759. memset(bt_mgr_info.halt_addr, 0, sizeof(bt_mgr_info.halt_addr));
  760. for (i = 0; i < MAX_MGR_DEV; i++) {
  761. if (bt_mgr_info.dev[i].used && !bt_mgr_info.dev[i].is_tws && !bt_mgr_info.dev[i].is_trs &&
  762. (bt_mgr_info.dev[i].a2dp_connected || bt_mgr_info.dev[i].hf_connected)) {
  763. memcpy(&bt_mgr_info.halt_addr[record], &bt_mgr_info.dev[i].addr, sizeof(bd_address_t));
  764. record++;
  765. }
  766. }
  767. }
  768. void *bt_manager_get_halt_phone(uint8_t *halt_cnt)
  769. {
  770. *halt_cnt = MAX_MGR_DEV;
  771. return bt_mgr_info.halt_addr;
  772. }
  773. int bt_manager_get_status(void)
  774. {
  775. return bt_mgr_info.bt_state;
  776. }
  777. int bt_manager_get_connected_dev_num(void)
  778. {
  779. return bt_mgr_info.connected_phone_num;
  780. }
  781. int bt_manager_set_status(int state)
  782. {
  783. switch (state) {
  784. case BT_STATUS_CONNECTED:
  785. {
  786. bt_mgr_info.connected_phone_num++;
  787. if (bt_mgr_info.connected_phone_num == 1) {
  788. sys_event_notify(SYS_EVENT_BT_CONNECTED);
  789. bt_manager_event_notify(BT_CONNECTION_EVENT, NULL, 0);
  790. } else {
  791. sys_event_notify(SYS_EVENT_2ND_CONNECTED);
  792. }
  793. break;
  794. }
  795. case BT_STATUS_DISCONNECTED:
  796. {
  797. if (bt_mgr_info.connected_phone_num > 0) {
  798. bt_mgr_info.connected_phone_num--;
  799. if (bt_mgr_info.dis_reason != 0x16) {
  800. sys_event_notify(SYS_EVENT_BT_DISCONNECTED);
  801. }
  802. if (!bt_mgr_info.connected_phone_num) {
  803. sys_event_notify(SYS_EVENT_BT_UNLINKED);
  804. bt_manager_event_notify(BT_DISCONNECTION_EVENT, NULL, 0);
  805. }
  806. }
  807. break;
  808. }
  809. #ifdef CONFIG_TWS
  810. case BT_STATUS_TWS_PAIRED:
  811. {
  812. if (!bt_mgr_info.tws_mode) {
  813. bt_mgr_info.tws_mode = 1;
  814. if (btif_tws_get_dev_role() == BTSRV_TWS_MASTER) {
  815. sys_event_notify(SYS_EVENT_TWS_CONNECTED);
  816. }
  817. bt_manager_event_notify(BT_TWS_CONNECTION_EVENT, NULL, 0);
  818. }
  819. break;
  820. }
  821. case BT_STATUS_TWS_UNPAIRED:
  822. {
  823. if (bt_mgr_info.tws_mode) {
  824. bt_mgr_info.tws_mode = 0;
  825. bt_manager_event_notify(BT_TWS_DISCONNECTION_EVENT, NULL, 0);
  826. }
  827. break;
  828. }
  829. #endif
  830. case BT_STATUS_MASTER_WAIT_PAIR:
  831. {
  832. /* Check can_do_pair before call
  833. * bt_manager_set_status(BT_STATUS_MASTER_WAIT_PAIR)
  834. */
  835. sys_event_notify(SYS_EVENT_TWS_START_PAIR);
  836. break;
  837. }
  838. default:
  839. break;
  840. }
  841. bt_mgr_info.bt_state = state;
  842. return 0;
  843. }
  844. void bt_manager_clear_list(int mode)
  845. {
  846. btif_br_clear_list(mode);
  847. sys_event_notify(SYS_EVENT_CLEAR_PAIRED_LIST);
  848. }
  849. void bt_manager_set_stream_type(uint8_t stream_type)
  850. {
  851. #ifdef CONFIG_TWS
  852. bt_manager_tws_set_stream_type(stream_type);
  853. #endif
  854. }
  855. void bt_manager_set_codec(uint8_t codec)
  856. {
  857. #ifdef CONFIG_TWS
  858. bt_manager_tws_set_codec(codec);
  859. #endif
  860. }
  861. int bt_manager_br_connect(bd_address_t *bd)
  862. {
  863. return btif_br_connect(bd);
  864. }
  865. int bt_manager_br_disconnect(bd_address_t *bd)
  866. {
  867. return btif_br_disconnect(bd);
  868. }
  869. #endif
  870. static void bt_manager_set_bt_drv_param(void)
  871. {
  872. btdrv_init_param_t param;
  873. memset(&param, 0, sizeof(param));
  874. param.set_hosc_cap = 1;
  875. param.hosc_capacity = 0x64; /* Wait todo: get for config or nvram */
  876. param.set_max_rf_power = 1;
  877. param.bt_max_rf_tx_power = 38; /* 8db */
  878. //param.set_ble_rf_power = 1;
  879. //param.ble_rf_tx_power = 34;
  880. btdrv_set_init_param(&param);
  881. }
  882. #ifdef CONFIG_BT_CTRL_BQB
  883. /* Notify: Customer can use different way to check enter bqb. */
  884. #define CFG_BT_BQB_MODE "BT_BQB_MODE"
  885. static uint8_t bt_manager_get_bqb_mode(void)
  886. {
  887. #ifdef CONFIG_PROPERTY
  888. int ret = -EIO;
  889. uint8_t value = 0;
  890. ret = property_get(CFG_BT_BQB_MODE, (char *)&value, 1);
  891. if (ret != 1) {
  892. return DISABLE_TEST;
  893. } else {
  894. value -= 0x30;
  895. }
  896. if (value <= DUT_LE_TEST) {
  897. return value;
  898. } else {
  899. return DISABLE_TEST;
  900. }
  901. #else
  902. return DISABLE_TEST;
  903. #endif
  904. }
  905. int pmuadc_mode_switch(bool always_on);
  906. #ifndef CONFIG_SOC_NO_PSRAM
  907. static inline void sys_writel(unsigned int val, unsigned long reg)
  908. {
  909. *(volatile unsigned int *)(reg) = val;
  910. }
  911. #endif
  912. __in_section_unique(ram.noinit.bqb) uint32_t reg_data;
  913. static int bt_manager_check_enter_bqb(void)
  914. {
  915. uint8_t bqb_mode = bt_manager_get_bqb_mode();
  916. uint32_t flags;
  917. SYS_LOG_INF("Get bqb mode %d", bqb_mode);
  918. if (bqb_mode != DISABLE_TEST) {
  919. /* BQB mode [0:BR BQB Test, 1:BLE BQB Test, 2:BR/BLE dual BQB Test] */
  920. extern int bqb_init(int bqb_mode);
  921. pmuadc_mode_switch(1);
  922. flags = irq_lock();
  923. k_sched_lock();
  924. #ifndef CONFIG_SOC_NO_PSRAM
  925. uint32_t i;
  926. /* GPIO36 ~ GPIO48, Psram IO*/
  927. for (i = 0; i < 13; i++)
  928. sys_writel(0x2 | (0 <<12), 0x40068090 + (i * 4));// 0x0: Drive level1
  929. /* Psram Device set drive level3*/
  930. #ifdef CONFIG_SLEEP_FUNC_IN_SRAM
  931. #define __sleepfunc __attribute__((noinline)) \
  932. __attribute__((long_call, section(".sleepfunc")))
  933. #else
  934. #define __sleepfunc __ramfunc
  935. #endif
  936. __sleepfunc void __psram_reg_write(unsigned int reg_addr, unsigned int reg_data);
  937. __sleepfunc unsigned int __psram_reg_read(unsigned int reg_addr);
  938. reg_data = __psram_reg_read(0);
  939. //printk("psram reg addr0 data 0x%x.\n", reg_data);
  940. if(soc_boot_is_mini()) {
  941. //
  942. reg_data &= (~(0x7 << 12));
  943. reg_data |= (0x3 << 12);
  944. __psram_reg_write(0, reg_data);
  945. k_busy_wait(3000);
  946. } else {
  947. reg_data &= (~0x3);
  948. reg_data |= 0x3;
  949. __psram_reg_write(0, reg_data);
  950. k_busy_wait(3000);
  951. //printk("WRITE PSRAM 0x%x.\n", reg_data);
  952. }
  953. reg_data = __psram_reg_read(0);
  954. printk("adjust psram reg addr0 data 0x%x.\n", reg_data);
  955. #endif
  956. k_sched_unlock();
  957. irq_unlock(flags);
  958. bt_wake_lock();
  959. bqb_init((bqb_mode - 1));
  960. SYS_LOG_INF("Enter BQB mode %d", (bqb_mode - 1));
  961. #ifndef RUN_BQB_IN_SYSTEM_MODE
  962. #ifdef CONFIG_TASK_WDT
  963. task_wdt_stop();
  964. #endif
  965. while(true){
  966. os_sleep(1000);
  967. }
  968. #endif
  969. return 1;
  970. }
  971. return 0;
  972. }
  973. #endif
  974. #ifdef CONFIG_BT_ACTIONS_SUPER_SERVICE
  975. uint8_t bt_manager_check_pincode_mode(void)
  976. {
  977. #ifdef CONFIG_PROPERTY
  978. int ret = -EIO;
  979. uint8_t value = 0;
  980. ret = property_get(CFG_BT_PINCODE_MODE, (char *)&value, 1);
  981. if (ret != 1) {
  982. return 0;
  983. }
  984. if (value == 1) {
  985. return 1;
  986. } else {
  987. return 0;
  988. }
  989. #else
  990. return 0;
  991. #endif
  992. }
  993. #endif
  994. #ifdef CONFIG_BT_TEMP_COMPENSATION
  995. #define BT_TEMP_COMP_HRTIME_CHECK_TIME (1000*1000*60*5) /* 300s */
  996. #define BT_TEMP_COMP_CHECK_TIMER_MS 1000
  997. /* soc_pmu_get_temperature used too much time,
  998. * tmp use individual work_q, better add one callback funciton to get temperature.
  999. */
  1000. static OS_THREAD_STACK_DEFINE(temp_comp_stack, 1024);
  1001. static os_work_q temp_comp_work_q;
  1002. int bt_manager_bt_set_apll_temp_comp(uint8_t enable)
  1003. {
  1004. if (bt_mgr_info.bt_ready) {
  1005. return btif_bt_set_apll_temp_comp(enable);
  1006. }
  1007. else{
  1008. extern int bt_bqb_vs_set_apll_temp_comp(uint8_t enable);
  1009. return bt_bqb_vs_set_apll_temp_comp(enable);
  1010. }
  1011. }
  1012. int bt_manager_bt_do_apll_temp_comp(void)
  1013. {
  1014. if (bt_mgr_info.bt_ready) {
  1015. return btif_bt_do_apll_temp_comp();
  1016. }
  1017. else{
  1018. int bt_bqb_vs_do_apll_temp_comp(void);
  1019. return bt_bqb_vs_do_apll_temp_comp();
  1020. }
  1021. }
  1022. #define HLT_TEST_ADD_ADJUST_BDG 1
  1023. #if (HLT_TEST_ADD_ADJUST_BDG)
  1024. #define CFG_TEST_BDG_VALUE "EFUSE_BDG_VALUE"
  1025. static uint32_t efuse_bdg_val;
  1026. static int pre_bdg_adjust_temp = 25;
  1027. static void bdg_vol_adjust_init(void)
  1028. {
  1029. uint32_t val;
  1030. uint32_t bdg_valu;
  1031. int ret;
  1032. val = sys_read32(BDG_CTL_SVCC);
  1033. SYS_LOG_INF("Register efuse_bdg_val: 0x%x BDG_CTL_SVCC 0x%x", (val & 0x1F), val);
  1034. ret = property_get(CFG_TEST_BDG_VALUE, (char *)&bdg_valu, sizeof(bdg_valu)); /* Should read from efuse and set in init */
  1035. if (ret == sizeof(bdg_valu)) {
  1036. efuse_bdg_val = bdg_valu & 0x1F;
  1037. val &= (~0x1F);
  1038. val |= (efuse_bdg_val&0x1F);
  1039. sys_write32(val, BDG_CTL_SVCC);
  1040. k_busy_wait(300);
  1041. SYS_LOG_INF("NVRAM efuse_bdg_val: 0x%x BDG_CTL_SVCC 0x%x", efuse_bdg_val, val);
  1042. } else {
  1043. efuse_bdg_val = val & 0x1F;
  1044. SYS_LOG_INF("efuse_bdg_val: 0x%x BDG_CTL_SVCC 0x%x", efuse_bdg_val, val);
  1045. bdg_valu = efuse_bdg_val;
  1046. property_set_factory(CFG_TEST_BDG_VALUE, (char *)&bdg_valu, sizeof(bdg_valu));
  1047. property_flush(CFG_TEST_BDG_VALUE);
  1048. }
  1049. }
  1050. static void bdg_vol_adjust_temp(int temp)
  1051. {
  1052. int adjust_flag = 0;
  1053. int adjust_val = 0;
  1054. uint32_t val, set_val;
  1055. if (temp <= -30) {
  1056. if (pre_bdg_adjust_temp > -30) {
  1057. adjust_flag = 1;
  1058. adjust_val = 3;
  1059. }
  1060. } else if (temp <= -10) {
  1061. if ((pre_bdg_adjust_temp > -10) ||
  1062. ((pre_bdg_adjust_temp <= -30) && (temp >= -28))) {
  1063. adjust_flag = 1;
  1064. adjust_val = 2;
  1065. }
  1066. } else if (temp <= 10) {
  1067. if ((pre_bdg_adjust_temp > 10) ||
  1068. ((pre_bdg_adjust_temp <= -10) && (temp >= -8))) {
  1069. adjust_flag = 1;
  1070. adjust_val = 1;
  1071. }
  1072. } else if (temp <= 45) {
  1073. if ((pre_bdg_adjust_temp > 45) ||
  1074. ((pre_bdg_adjust_temp <= 10) && (temp >= 12))) {
  1075. adjust_flag = 1;
  1076. adjust_val = 0;
  1077. }
  1078. } else if (temp <= 70) {
  1079. if ((pre_bdg_adjust_temp > 70) ||
  1080. ((pre_bdg_adjust_temp <= 45) && (temp >= 47))) {
  1081. adjust_flag = 1;
  1082. adjust_val = -1;
  1083. }
  1084. } else if (temp <= 100) {
  1085. if ((pre_bdg_adjust_temp > 100) ||
  1086. ((pre_bdg_adjust_temp <= 70) && (temp >= 72))) {
  1087. adjust_flag = 1;
  1088. adjust_val = -2;
  1089. }
  1090. } else {
  1091. if ((pre_bdg_adjust_temp <= 100) && (temp >= 102)) {
  1092. adjust_flag = 1;
  1093. adjust_val = -3;
  1094. }
  1095. }
  1096. if (adjust_flag) {
  1097. pre_bdg_adjust_temp = temp;
  1098. val = sys_read32(BDG_CTL_SVCC);
  1099. val &= (~0x1F);
  1100. set_val = efuse_bdg_val;
  1101. set_val += adjust_val;
  1102. val |= (set_val&0x1F);
  1103. sys_write32(val, BDG_CTL_SVCC);
  1104. k_busy_wait(300);
  1105. SYS_LOG_INF("adjust_bdg_val: temp %d adjust_val %d efuse_val 0x%x set_val 0x%x BDG_CTL_SVCC 0x%x",
  1106. temp, adjust_val, efuse_bdg_val, set_val, sys_read32(BDG_CTL_SVCC));
  1107. }
  1108. }
  1109. #endif
  1110. static void bt_temp_comp_timer_handler(struct k_work* work)
  1111. {
  1112. static uint16_t cnt;
  1113. int temp = 0;
  1114. uint8_t keep_wake_lock = (bt_mgr_info.temp_comp_runing_flag == 0) ? 1 : 0;
  1115. if (keep_wake_lock) {
  1116. bt_wake_lock();
  1117. }
  1118. temp = soc_pmu_get_temperature(); /* Return -1, read error. */
  1119. if (keep_wake_lock) {
  1120. bt_wake_unlock();
  1121. }
  1122. if (temp == (-1)) {
  1123. SYS_LOG_ERR("Temp comp err %d", temp);
  1124. goto exit_temp_comp;
  1125. }
  1126. #if (HLT_TEST_ADD_ADJUST_BDG)
  1127. bdg_vol_adjust_temp((temp/10));
  1128. #endif
  1129. #ifdef CONFIG_TEMP_COMPENSATION_ACTS
  1130. extern void cap_temp_do_comp(int temp);
  1131. bt_wake_lock();
  1132. cap_temp_do_comp((temp/10));
  1133. bt_wake_unlock();
  1134. #endif
  1135. if (bt_mgr_info.bt_temp_comp_stage == 0) {
  1136. SYS_LOG_INF("temperature %d.%d", temp / 10, abs(temp % 10));
  1137. bt_mgr_info.bt_temp_comp_stage = 1;
  1138. bt_mgr_info.bt_comp_last_temp = temp;
  1139. } else if (abs(temp - bt_mgr_info.bt_comp_last_temp) >= 150) {
  1140. SYS_LOG_INF("DO_TEMP_COMP %d.%d", temp / 10, abs(temp % 10));
  1141. bt_manager_bt_set_apll_temp_comp(true);
  1142. bt_manager_bt_do_apll_temp_comp();
  1143. bt_mgr_info.bt_comp_last_temp = temp;
  1144. } else {
  1145. if (cnt++ > 600) {
  1146. cnt = 0;
  1147. SYS_LOG_INF("temperature %d.%d", temp / 10, abs(temp % 10));
  1148. } else if (bt_mgr_info.temp_comp_runing_flag == 0) {
  1149. SYS_LOG_INF("temperature %d.%d", temp / 10, abs(temp % 10));
  1150. } else {
  1151. //高低温时打开,确认打印温度用
  1152. //SYS_LOG_INF("temperature %d.%d", temp / 10, abs(temp % 10));
  1153. }
  1154. }
  1155. exit_temp_comp:
  1156. bt_mgr_info.temp_comp_runing_flag = 1;
  1157. //os_delayed_work_submit(&bt_mgr_info.bt_temp_comp_timer, BT_TEMP_COMP_CHECK_TIMER_MS);
  1158. os_delayed_work_submit_to_queue(&temp_comp_work_q, &bt_mgr_info.bt_temp_comp_timer, BT_TEMP_COMP_CHECK_TIMER_MS);
  1159. }
  1160. static void bt_temp_comp_hrtimer_hdl(struct hrtimer *timer, void *expiry_fn_arg)
  1161. {
  1162. if (bt_mgr_info.temp_comp_runing_flag == 0) {
  1163. //os_delayed_work_submit(&bt_mgr_info.bt_temp_comp_timer, 0);
  1164. os_delayed_work_submit_to_queue(&temp_comp_work_q, &bt_mgr_info.bt_temp_comp_timer, 0);
  1165. }
  1166. bt_mgr_info.temp_comp_runing_flag = 0;
  1167. }
  1168. static int bt_temp_comp_init(bool mode)
  1169. {
  1170. #if (HLT_TEST_ADD_ADJUST_BDG)
  1171. bdg_vol_adjust_init();
  1172. #endif
  1173. if (!mode) {
  1174. k_work_queue_start(&temp_comp_work_q, temp_comp_stack, K_THREAD_STACK_SIZEOF(temp_comp_stack), 12, NULL);
  1175. os_thread_name_set(&temp_comp_work_q.thread, "tcomp_workq");
  1176. }
  1177. os_delayed_work_init(&bt_mgr_info.bt_temp_comp_timer, bt_temp_comp_timer_handler);
  1178. bt_mgr_info.bt_temp_comp_stage = 0;
  1179. //os_delayed_work_submit(&bt_mgr_info.bt_temp_comp_timer, BT_TEMP_COMP_CHECK_TIMER_MS);
  1180. os_delayed_work_submit_to_queue(&temp_comp_work_q, &bt_mgr_info.bt_temp_comp_timer, BT_TEMP_COMP_CHECK_TIMER_MS);
  1181. bt_mgr_info.temp_comp_runing_flag = 1;
  1182. hrtimer_init(&bt_mgr_info.temp_comp_hrtimer, bt_temp_comp_hrtimer_hdl, NULL);
  1183. hrtimer_start(&bt_mgr_info.temp_comp_hrtimer, BT_TEMP_COMP_HRTIME_CHECK_TIME, BT_TEMP_COMP_HRTIME_CHECK_TIME);
  1184. return 0;
  1185. }
  1186. #endif
  1187. int bt_manager_init(void)
  1188. {
  1189. int ret = 0;
  1190. bool btdev_err = bt_mgr_info.btdev_err;
  1191. if(bt_mgr_info.inited){
  1192. return 0;
  1193. }
  1194. memset(&bt_mgr_info, 0, sizeof(struct bt_manager_info_t));
  1195. bt_manager_set_bt_drv_param();
  1196. #ifdef CONFIG_BT_CTRL_BQB
  1197. if (bt_manager_check_enter_bqb()) {
  1198. struct app_msg msg = {0};
  1199. msg.type = MSG_BT_ENGINE_READY;
  1200. send_async_msg("main", &msg);
  1201. return 0;
  1202. }
  1203. #endif
  1204. #ifdef CONFIG_BT_TEMP_COMPENSATION
  1205. bt_temp_comp_init(btdev_err);
  1206. #endif
  1207. #ifdef CONFIG_BT_ACTIONS_SUPER_SERVICE
  1208. if(bt_manager_check_pincode_mode() == 1){
  1209. hostif_bt_br_enable_pincode(true);
  1210. }
  1211. else{
  1212. hostif_bt_br_enable_pincode(false);
  1213. }
  1214. #endif
  1215. bt_manager_check_mac_name();
  1216. #if CONFIG_BT_BR_ACTS
  1217. bt_manager_set_status(BT_STATUS_NONE);
  1218. #endif
  1219. btif_base_register_processer();
  1220. #ifdef CONFIG_BT_PNP_INFO_SEARCH
  1221. btif_pnp_info_register_processer();
  1222. #endif
  1223. #ifdef CONFIG_BT_HFP_HF
  1224. btif_hfp_register_processer();
  1225. #endif
  1226. #ifdef CONFIG_BT_HFP_AG
  1227. btif_hfp_ag_register_processer();
  1228. #endif
  1229. #ifdef CONFIG_BT_A2DP
  1230. btif_a2dp_register_processer();
  1231. #endif
  1232. #ifdef CONFIG_BT_AVRCP
  1233. btif_avrcp_register_processer();
  1234. #endif
  1235. #ifdef CONFIG_BT_SPP
  1236. btif_spp_register_processer();
  1237. #endif
  1238. #ifdef CONFIG_BT_PBAP_CLIENT
  1239. btif_pbap_register_processer();
  1240. #endif
  1241. #ifdef CONFIG_BT_MAP_CLIENT
  1242. btif_map_register_processer();
  1243. #endif
  1244. #if CONFIG_BT_HID
  1245. btif_hid_register_processer();
  1246. #endif
  1247. #ifdef CONFIG_TWS
  1248. btif_tws_register_processer();
  1249. #endif
  1250. if (btif_start(_bt_mgr_callback, bt_manager_config_bt_class(), bt_manager_config_get_device_id()) < 0) {
  1251. SYS_LOG_ERR("btsrv start error!");
  1252. ret = -EACCES;
  1253. goto bt_start_err;
  1254. }
  1255. #if CONFIG_BT_BR_ACTS
  1256. bt_manager_set_status(BT_STATUS_WAIT_PAIR);
  1257. #endif
  1258. bt_mgr_info.inited = 1;
  1259. bt_mgr_info.btdev_err = btdev_err;
  1260. SYS_LOG_INF("init ok!");
  1261. return 0;
  1262. bt_start_err:
  1263. return ret;
  1264. }
  1265. void bt_manager_deinit(void)
  1266. {
  1267. #if CONFIG_BT_BR_ACTS
  1268. int time_out = 0;
  1269. #endif
  1270. /* Not inited or hci timeout, can't run deinit. */
  1271. if (!bt_mgr_info.inited || bt_mgr_info.bt_TO_reboot) {
  1272. return;
  1273. }
  1274. #ifdef CONFIG_BT_TEMP_COMPENSATION
  1275. os_delayed_work_cancel(&bt_mgr_info.bt_temp_comp_timer);
  1276. if (hrtimer_is_running(&bt_mgr_info.temp_comp_hrtimer)) {
  1277. hrtimer_stop(&bt_mgr_info.temp_comp_hrtimer);
  1278. }
  1279. #endif
  1280. #if CONFIG_BT_BR_ACTS
  1281. bt_manager_set_visible(false);
  1282. bt_manager_set_connectable(false);
  1283. btif_br_auto_reconnect_stop();
  1284. btif_br_disconnect_device(BTSRV_DISCONNECT_ALL_MODE);
  1285. while (btif_br_get_connected_device_num() && time_out++ < 300) {
  1286. os_sleep(10);
  1287. }
  1288. #endif
  1289. #ifdef CONFIG_BT_SPP
  1290. bt_manager_spp_profile_stop();
  1291. #endif
  1292. #ifdef CONFIG_BT_A2DP
  1293. bt_manager_a2dp_profile_stop();
  1294. #endif
  1295. #ifdef CONFIG_BT_AVRCP
  1296. bt_manager_avrcp_profile_stop();
  1297. #endif
  1298. #ifdef CONFIG_BT_HFP_HF
  1299. bt_manager_hfp_profile_stop();
  1300. bt_manager_hfp_sco_stop();
  1301. #endif
  1302. #ifdef CONFIG_BT_HFP_AG
  1303. bt_manager_hfp_ag_profile_stop();
  1304. #endif
  1305. #ifdef CONFIG_BT_HID
  1306. bt_manager_hid_profile_stop();
  1307. #endif
  1308. #ifdef CONFIG_BT_BLE
  1309. bt_manager_ble_deinit();
  1310. #endif
  1311. #ifdef CONFIG_BT_PNP_INFO_SEARCH
  1312. bt_manager_pnp_info_search_deinit();
  1313. #endif
  1314. /**
  1315. * TODO: must clean btdrv /bt stack and bt service when bt manager deinit
  1316. * enable this after all is work well.
  1317. */
  1318. #ifdef CONFIG_BT_MANAGER_DEINIT_SERVICE
  1319. btif_stop();
  1320. time_out = 0;
  1321. while (srv_manager_check_service_is_actived(BLUETOOTH_SERVICE_NAME) && time_out++ < 500) {
  1322. os_sleep(10);
  1323. }
  1324. #endif
  1325. bt_mgr_info.inited = 0;
  1326. SYS_LOG_INF("deinit ok!");
  1327. }
  1328. int bt_manager_bt_crash_test(void)
  1329. {
  1330. #if BT_RESET_SUPPORT
  1331. if (bt_mgr_info.bt_ready) {
  1332. void acts_reset_peripheral_assert(int reset_id);
  1333. #define RESET_ID_BT 56
  1334. soc_powergate_set(POWERGATE_BT_PG_DEV, true);
  1335. acts_reset_peripheral_assert(RESET_ID_BT);
  1336. }
  1337. #endif
  1338. return 0;
  1339. }
  1340. int bt_manager_bt_reset_test(void)
  1341. {
  1342. #if BT_RESET_SUPPORT
  1343. int time_out = 0;
  1344. if (bt_mgr_info.bt_ready) {
  1345. if (bt_manager_ble_is_connected()) {
  1346. bt_manager_ble_disconnect();
  1347. while (bt_manager_ble_is_connected() && time_out++ < 200) {
  1348. os_sleep(10);
  1349. }
  1350. os_sleep(50);
  1351. }
  1352. bt_manager_ble_adv_stop();
  1353. soc_powergate_set(POWERGATE_BT_PG_DEV, true);
  1354. bt_mgr_btsrv_ready(1);
  1355. }
  1356. #endif
  1357. return 0;
  1358. }
  1359. bool bt_manager_is_inited(void)
  1360. {
  1361. return (bt_mgr_info.inited == 1);
  1362. }
  1363. void bt_manager_disconnect_device(uint8_t mode)
  1364. {
  1365. btif_br_disconnect_device(mode);
  1366. }
  1367. int bt_manager_get_connected_dev_info(struct btmgr_connect_dev_info *info, uint8_t info_num)
  1368. {
  1369. int i, name_len, dev_cnt = 0;
  1370. if (!info_num) {
  1371. return 0;
  1372. }
  1373. memset(info, 0, sizeof(struct btmgr_connect_dev_info)*info_num);
  1374. for (i = 0; i < MAX_MGR_DEV; i++) {
  1375. if (bt_mgr_info.dev[i].used && bt_mgr_info.dev[i].notify_connected) {
  1376. memcpy(&info[dev_cnt].addr, &bt_mgr_info.dev[i].addr, sizeof(bd_address_t));
  1377. info[dev_cnt].is_trs = bt_mgr_info.dev[i].is_trs;
  1378. name_len = MIN(BTMGR_BT_NAME_LEN, strlen(bt_mgr_info.dev[i].name));
  1379. memcpy(info[dev_cnt].name, bt_mgr_info.dev[i].name, name_len);
  1380. dev_cnt++;
  1381. if (dev_cnt >= info_num) {
  1382. break;
  1383. }
  1384. }
  1385. }
  1386. return dev_cnt;
  1387. }
  1388. int bt_manager_get_wake_lock(void)
  1389. {
  1390. #ifdef CONFIG_BT_BLE
  1391. if (btif_base_get_wake_lock() || bt_manager_get_ble_wake_lock())
  1392. #else
  1393. if (btif_base_get_wake_lock())
  1394. #endif
  1395. {
  1396. return 1;
  1397. } else {
  1398. return 0;
  1399. }
  1400. }
  1401. void bt_manager_dump_info(void)
  1402. {
  1403. #if CONFIG_BT_BR_ACTS
  1404. int i;
  1405. printk("Bt manager info\n");
  1406. printk("\t num %d, tws_mode %d, bt_state %d, playing %d\n", bt_mgr_info.connected_phone_num,
  1407. bt_mgr_info.tws_mode, bt_mgr_info.bt_state, bt_mgr_info.playing);
  1408. for (i = 0; i < MAX_MGR_DEV; i++) {
  1409. if (bt_mgr_info.dev[i].used) {
  1410. printk("\t Dev name %s, tws %d, trs %d (%d,%d,%d,%d,%d,%d)\n", bt_mgr_info.dev[i].name, bt_mgr_info.dev[i].is_tws,
  1411. bt_mgr_info.dev[i].is_trs,
  1412. bt_mgr_info.dev[i].notify_connected, bt_mgr_info.dev[i].a2dp_connected, bt_mgr_info.dev[i].avrcp_connected,
  1413. bt_mgr_info.dev[i].hf_connected, bt_mgr_info.dev[i].spp_connected, bt_mgr_info.dev[i].hid_connected);
  1414. }
  1415. }
  1416. #endif
  1417. #ifdef CONFIG_BT_HFP_HF
  1418. bt_manager_hfp_dump_info();
  1419. #endif
  1420. #ifdef CONFIG_BT_BLE
  1421. bt_manager_ble_dump_info();
  1422. #endif
  1423. #if CONFIG_BT_BR_ACTS
  1424. btif_dump_brsrv_info();
  1425. #endif
  1426. }