bt_manager_ble.c 41 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661
  1. /*
  2. * Copyright (c) 2019 Actions Semi Co., Inc.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief bt ble manager.
  9. */
  10. #define SYS_LOG_DOMAIN "btmgr_ble"
  11. #include <os_common_api.h>
  12. #include <zephyr.h>
  13. #include <stdlib.h>
  14. #include <stdio.h>
  15. #include <string.h>
  16. #include <msg_manager.h>
  17. #include <mem_manager.h>
  18. #include <acts_bluetooth/host_interface.h>
  19. #include <bt_manager.h>
  20. #include "bt_manager_inner.h"
  21. #include <sys_event.h>
  22. #include "bt_porting_inner.h"
  23. #include <drivers/hrtimer.h>
  24. #include <board_cfg.h>
  25. #include <acts_bluetooth/services/hog.h>
  26. /* TODO: New only support one ble connection */
  27. #define BLE_WAKE_LOCK_CHECK_INTERVAL (1000) /* 1s */
  28. #define BLE_WAKE_LOCK_CHECK_TIMES (6)
  29. #define BLE_CONNECT_INTERVAL_CHECK (5000) /* 5s */
  30. #define BLE_CONNECT_DELAY_UPDATE_PARAM (4000)
  31. #define BLE_UPDATE_PARAM_FINISH_TIME (4000)
  32. #define BLE_DELAY_UPDATE_PARAM_TIME (50)
  33. #define BLE_CONNECTED_DELAY_NOTIFY (200)
  34. #define BLE_UPDATE_PARAM_ERR_MAX (3)
  35. #define BLE_DELAY_ENCRYPT_TIME (3000) /* 3s */
  36. #define BLE_ADV_FAST_MAX_TIME (1000 * 300) /* 300s */
  37. #define BLE_ADV_DELAY_CHECK (1000 * 2) /* 2s */
  38. #define BLE_CONN_NOINIT_INTERVAL (0xFF)
  39. enum {
  40. PARAM_UPDATE_IDLE_STATE,
  41. PARAM_UPDATE_WAITO_UPDATE_STATE,
  42. PARAM_UPDATE_RUNING,
  43. };
  44. #ifndef CONFIG_BT_BLE_APP_UPDATE_PARAM
  45. enum {
  46. BLE_PHONE_TYPE_ANDROID,
  47. BLE_PHONE_TYPE_IOS,
  48. BLE_PHONE_TYPE_MAX,
  49. };
  50. enum {
  51. BLE_CONN_SPEED_FAST,
  52. BLE_CONN_SPEED_BUSY,
  53. BLE_CONN_SPEED_IDLE,
  54. BLE_CONN_SPEED_MAX,
  55. };
  56. /*
  57. * Connect interval:
  58. * Range: 0x0006 to 0x0C80
  59. * Time = N * 1.25 ms
  60. * Time Range: 7.5 ms to 4 s.
  61. * Latency: Range: 0x0000 to 0x01F3
  62. * Supervision_Timeout:
  63. * Range: 0x000A to 0x0C80
  64. * Time = N * 10 ms
  65. * Time Range: 100 ms to 32 s
  66. */
  67. const struct bt_le_conn_param le_conn_param[BLE_PHONE_TYPE_MAX][BLE_CONN_SPEED_MAX] = {
  68. {
  69. {6,15,0,600},
  70. {36,72,0,600},
  71. {32,48,4,600},
  72. },
  73. {
  74. {12,28,0,600},
  75. {36,72,0,600},
  76. {32,48,4,600},
  77. },
  78. };
  79. #endif
  80. enum {
  81. BLE_ADV_SPEED_FAST,
  82. BLE_ADV_SPEED_NORMAL,
  83. BLE_ADV_SPEED_SLOW,
  84. BLE_ADV_SPEED_MAX,
  85. };
  86. /* Advertising_Interval_Min and Advertising_Interval_Max
  87. * Range: 0x0020 to 0x4000
  88. * Default: 0x0800 (1.28 s)
  89. * Time = N * 0.625 ms
  90. * Time Range: 20 ms to 10.24 s
  91. */
  92. const uint16_t ble_adv_speed[BLE_ADV_SPEED_MAX] = {0x140,0x200,0x320};
  93. static OS_MUTEX_DEFINE(ble_mgr_lock);
  94. static os_sem ble_ind_sem __IN_BT_SECTION;
  95. static struct bt_gatt_indicate_params ble_ind_params __IN_BT_SECTION;
  96. static sys_slist_t ble_list __IN_BT_SECTION;
  97. typedef void (*ble_notify_cb)(struct bt_conn *conn, int err);
  98. struct ble_mgr_info {
  99. struct bt_conn *ble_conn;
  100. uint8_t device_mac[6];
  101. uint16_t mtu;
  102. uint8_t ble_deinit:1;
  103. uint8_t br_a2dp_runing:1;
  104. uint8_t br_hfp_runing:1;
  105. uint8_t update_work_state:4;
  106. uint8_t ble_app_enable_adv:1;
  107. uint8_t ble_advertise_active:1;
  108. uint8_t ble_advertise_speed_change:1;
  109. uint8_t ios_phone;
  110. uint8_t ble_state;
  111. int8_t rssi;
  112. uint8_t ble_adv_speed;
  113. uint8_t ble_conn_speed;
  114. uint8_t ble_conn_param_update_err;
  115. uint8_t ble_delaywork_wake_lock;
  116. uint16_t conn_rxtx_cnt;
  117. struct bt_le_conn_param le_conn_param;
  118. #ifdef CONFIG_BT_BLE_APP_UPDATE_PARAM
  119. uint32_t update_time; /* Update parameter time */
  120. #else
  121. os_delayed_work param_update_work;
  122. #endif
  123. os_delayed_work ble_wake_lock_work;
  124. os_delayed_work ble_connected_notify_work;
  125. os_delayed_work ble_advertise_manager_work;
  126. struct hrtimer timer;
  127. #ifdef CONFIG_BT_BLE_NOTIFY_PENDING
  128. uint8_t ble_send_pending:1;
  129. os_delayed_work ble_pending_notify_work;
  130. #endif
  131. #ifdef CONFIG_ACTIVE_REQ_BLE_ENC
  132. os_delayed_work ble_req_enc_work;
  133. #endif
  134. };
  135. static struct ble_mgr_info ble_info;
  136. #ifdef CONFIG_LEBR_DISPLAY_ONE
  137. static const struct bt_data ble_ad_discov[] = {
  138. BT_DATA_BYTES(BT_DATA_FLAGS, (BT_LE_AD_GENERAL)),
  139. BT_DATA_BYTES(BT_DATA_UUID16_ALL, 0x36, 0x55, 0x22, 0x22),
  140. };
  141. #else
  142. static const struct bt_data ble_ad_discov[] = {
  143. BT_DATA_BYTES(BT_DATA_FLAGS, (BT_LE_AD_GENERAL | BT_LE_AD_NO_BREDR)),
  144. BT_DATA_BYTES(BT_DATA_UUID16_ALL,
  145. 0x0d, 0x18, 0x0f, 0x18, 0x05, 0x18),
  146. };
  147. #endif
  148. #define BLE_ADV_MAX_ARRAY_SIZE 4
  149. #define BLE_ADV_DATA_MAX_LEN 31
  150. struct bt_data ad_reset[BLE_ADV_MAX_ARRAY_SIZE];
  151. size_t ad_reset_len;
  152. struct bt_data sd_reset[BLE_ADV_MAX_ARRAY_SIZE];
  153. size_t sd_reset_len;
  154. OS_MUTEX_DEFINE(ble_adv_mutex);
  155. bool nconn_flag = false;
  156. void ble_set_clear_wake_lock(uint16_t wake_lock, uint8_t set)
  157. {
  158. if (set) {
  159. ble_info.ble_delaywork_wake_lock |= wake_lock;
  160. os_delayed_work_submit(&ble_info.ble_wake_lock_work, 0);
  161. } else {
  162. ble_info.ble_delaywork_wake_lock &= (~wake_lock);
  163. }
  164. }
  165. #ifdef CONFIG_GATT_OVER_BREDR
  166. static bool is_le_conn(struct bt_conn *conn)
  167. {
  168. struct bt_conn_info info;
  169. if ((hostif_bt_conn_get_info(conn, &info) == 0) && (info.type == BT_CONN_TYPE_LE)) {
  170. return true;
  171. } else {
  172. return false;
  173. }
  174. }
  175. #endif
  176. static void ble_advertise_init(void)
  177. {
  178. if (ble_info.ble_state != BT_STATUS_BLE_CONNECTED) {
  179. ble_info.ble_state = BT_STATUS_BLE_NONE;
  180. }
  181. ble_info.ble_adv_speed = BLE_ADV_SPEED_FAST;
  182. ble_info.ble_advertise_active = false;
  183. ble_info.ble_advertise_speed_change = false;
  184. ble_set_clear_wake_lock(BLE_WAKE_LOCK_ADV_MANANGER, 1);
  185. os_delayed_work_submit(&ble_info.ble_advertise_manager_work, 0);
  186. }
  187. static void ble_advertise(void)
  188. {
  189. struct bt_le_adv_param param;
  190. const struct bt_data *ad;
  191. size_t ad_len;
  192. int err;
  193. uint8_t speed = ble_info.ble_adv_speed;
  194. memset(&param, 0, sizeof(param));
  195. param.id = BT_ID_DEFAULT;
  196. param.interval_min = ble_adv_speed[speed];
  197. param.interval_max = ble_adv_speed[speed] + 0x50;
  198. os_mutex_lock(&ble_adv_mutex, OS_FOREVER);
  199. if(ad_reset[0].data)
  200. {
  201. for(int i=0; i< BLE_ADV_MAX_ARRAY_SIZE; i++)
  202. {
  203. if (ad_reset[i].type == BT_DATA_NAME_COMPLETE || ad_reset[i].type == BT_DATA_NAME_SHORTENED)
  204. {
  205. param.options = (BT_LE_ADV_OPT_CONNECTABLE);
  206. break;
  207. }
  208. param.options = (BT_LE_ADV_OPT_CONNECTABLE | BT_LE_ADV_OPT_USE_NAME);
  209. }
  210. err = hostif_bt_le_adv_start(&param, (ad_reset_len ? (const struct bt_data *)ad_reset : NULL), ad_reset_len,
  211. (sd_reset_len ? (const struct bt_data *)sd_reset : NULL), sd_reset_len);
  212. }
  213. else
  214. {
  215. param.options = (BT_LE_ADV_OPT_CONNECTABLE | BT_LE_ADV_OPT_USE_NAME);
  216. ad = ble_ad_discov;
  217. ad_len = ARRAY_SIZE(ble_ad_discov);
  218. err = hostif_bt_le_adv_start(&param, ad, ad_len,NULL, 0);
  219. }
  220. ble_info.ble_state = BT_STATUS_BLE_ADV;
  221. ble_info.ble_advertise_active = true;
  222. if (err < 0 && err != (-EALREADY)) {
  223. SYS_LOG_ERR("Failed to start advertising (err %d)", err);
  224. } else {
  225. SYS_LOG_INF("Advertising started speed %d", ble_info.ble_adv_speed);
  226. }
  227. os_mutex_unlock(&ble_adv_mutex);
  228. }
  229. /* set nconnectable advertise */
  230. void ble_advertise_v2(void)
  231. {
  232. struct bt_le_adv_param param;
  233. const struct bt_data *ad;
  234. size_t ad_len;
  235. int err;
  236. uint8_t speed = ble_info.ble_adv_speed;
  237. memset(&param, 0, sizeof(param));
  238. param.id = BT_ID_DEFAULT;
  239. param.interval_min = ble_adv_speed[speed];
  240. param.interval_max = ble_adv_speed[speed] + 0x50;
  241. os_mutex_lock(&ble_adv_mutex, OS_FOREVER);
  242. printk("ble_advertise\n");
  243. if(ad_reset[0].data)
  244. {
  245. for(int i=0; i< BLE_ADV_MAX_ARRAY_SIZE; i++)
  246. {
  247. if (ad_reset[i].type == BT_DATA_NAME_COMPLETE || ad_reset[i].type == BT_DATA_NAME_SHORTENED)
  248. {
  249. param.options = (BT_LE_ADV_OPT_NONE);
  250. break;
  251. }
  252. param.options = (BT_LE_ADV_OPT_NONE | BT_LE_ADV_OPT_USE_NAME);
  253. }
  254. err = hostif_bt_le_adv_start(&param, (ad_reset_len ? (const struct bt_data *)ad_reset : NULL), ad_reset_len,
  255. (sd_reset_len ? (const struct bt_data *)sd_reset : NULL), sd_reset_len);
  256. }
  257. else
  258. {
  259. param.options = (BT_LE_ADV_OPT_NONE | BT_LE_ADV_OPT_USE_NAME);
  260. ad = ble_ad_discov;
  261. ad_len = ARRAY_SIZE(ble_ad_discov);
  262. err = hostif_bt_le_adv_start(&param, ad, ad_len,NULL, 0);
  263. }
  264. ble_info.ble_state = BT_STATUS_BLE_ADV;
  265. ble_info.ble_advertise_active = true;
  266. if (err < 0 && err != (-EALREADY)) {
  267. SYS_LOG_ERR("Failed to start advertising (err %d)", err);
  268. } else {
  269. SYS_LOG_INF("Advertising started speed %d", ble_info.ble_adv_speed);
  270. }
  271. os_mutex_unlock(&ble_adv_mutex);
  272. }
  273. void bt_manager_ble_set_nconn_adv(bool enable)
  274. {
  275. if(enable)
  276. nconn_flag = true;
  277. else
  278. nconn_flag = false;
  279. }
  280. int bt_manager_ble_set_adv_data(struct bt_data ad_data[], uint8_t ad_data_len, struct bt_data sd_data[], uint8_t sd_data_len)
  281. {
  282. os_mutex_lock(&ble_adv_mutex, OS_FOREVER);
  283. int i=0,j=0;
  284. if(ad_data == NULL && sd_data == NULL)
  285. {
  286. memset(ad_reset,0,sizeof(ad_reset));
  287. memset(sd_reset,0,sizeof(sd_reset));
  288. }
  289. if(ad_data)
  290. {
  291. memset(ad_reset,0,sizeof(ad_reset));
  292. for(i=0; i<ad_data_len; i++)
  293. {
  294. ad_reset[i] = ad_data[i];
  295. }
  296. ad_reset_len = ad_data_len;
  297. }
  298. if(sd_data)
  299. {
  300. memset(sd_reset,0,sizeof(sd_reset));
  301. for(j=0; j<sd_data_len; j++)
  302. {
  303. sd_reset[j] = sd_data[j];
  304. }
  305. sd_reset_len = sd_data_len;
  306. }
  307. os_mutex_unlock(&ble_adv_mutex);
  308. return 0;
  309. }
  310. #ifdef CONFIG_BT_BLE_APP_UPDATE_PARAM
  311. int bt_manager_ble_update_param(const struct bt_le_conn_param *param)
  312. {
  313. int prio = 0, ret = 0;
  314. prio = k_thread_priority_get(k_current_get());
  315. if (prio >= 0) {
  316. k_thread_priority_set(k_current_get(), -1);
  317. }
  318. if (!ble_info.ble_conn) {
  319. ret = -EIO;
  320. goto update_exit;
  321. }
  322. if ((os_uptime_get_32() - ble_info.update_time) < BLE_CONNECT_DELAY_UPDATE_PARAM) {
  323. ret = -EBUSY;
  324. goto update_exit;
  325. }
  326. ret = hostif_bt_conn_le_param_update(ble_info.ble_conn, param);
  327. if (ret == (-EALREADY)) {
  328. ret = 0;
  329. }
  330. if (!ret) {
  331. ble_info.update_time = os_uptime_get_32();
  332. }
  333. SYS_LOG_INF("Uparam ret %d int 0x%x~0x%x lat %d to %d", ret, param->interval_min,
  334. param->interval_max, param->latency, param->timeout);
  335. update_exit:
  336. if (prio >= 0) {
  337. k_thread_priority_set(k_current_get(), prio);
  338. }
  339. return ret;
  340. }
  341. int bt_manager_ble_get_param(uint16_t *interval, uint16_t *latency, uint16_t *timeout)
  342. {
  343. int prio = 0, ret = 0;
  344. prio = k_thread_priority_get(k_current_get());
  345. if (prio >= 0) {
  346. k_thread_priority_set(k_current_get(), -1);
  347. }
  348. if (!ble_info.ble_conn) {
  349. ret = -EIO;
  350. goto getp_exit;
  351. }
  352. if (ble_info.le_conn_param.interval_min == 0) {
  353. ret = -EINVAL;
  354. }
  355. if (interval) {
  356. *interval = ble_info.le_conn_param.interval_min;
  357. }
  358. if (latency) {
  359. *latency = ble_info.le_conn_param.latency;
  360. }
  361. if (timeout) {
  362. *timeout = ble_info.le_conn_param.timeout;
  363. }
  364. getp_exit:
  365. if (prio >= 0) {
  366. k_thread_priority_set(k_current_get(), prio);
  367. }
  368. return ret;
  369. }
  370. int bt_manager_ble_get_phone_type(void)
  371. {
  372. if (!ble_info.ble_conn) {
  373. return 0;
  374. }
  375. return ble_info.ios_phone;
  376. }
  377. int bt_manager_ble_is_br_busy(void)
  378. {
  379. if (ble_info.br_a2dp_runing || ble_info.br_hfp_runing) {
  380. return 1;
  381. } else {
  382. return 0;
  383. }
  384. }
  385. #define ble_check_update_param(void)
  386. #define ble_send_data_check_interval()
  387. #else
  388. #define BLE_CALC_TXRX_CNT (3)
  389. static bool ble_update_txrx_status_busy(uint16_t pre, uint16_t cur)
  390. {
  391. SYS_LOG_INF("pre %d, cur %d.", pre, cur);
  392. if ((cur > pre) &&
  393. /* (pre < (0xFFFF - BLE_CALC_TXRX_CNT)) &&*/
  394. (cur > pre + BLE_CALC_TXRX_CNT)) {
  395. return true;
  396. }
  397. if ((cur < pre) &&
  398. (cur < BLE_CALC_TXRX_CNT) /*&&
  399. (pre > (0xFFFF - BLE_CALC_TXRX_CNT))*/) {
  400. return true;
  401. }
  402. return false;
  403. }
  404. static void param_update_work_callback(struct k_work *work)
  405. {
  406. uint8_t req_conn_speed;
  407. uint16_t conn_rxtx_cnt;
  408. uint8_t conn_busy = 0;
  409. #ifdef CONFIG_GATT_OVER_BREDR
  410. if (!is_le_conn(ble_info.ble_conn)) {
  411. ble_info.update_work_state = PARAM_UPDATE_IDLE_STATE;
  412. return;
  413. }
  414. #endif
  415. if (ble_info.ble_conn) {
  416. if (ble_info.update_work_state == PARAM_UPDATE_RUNING) {
  417. ble_info.update_work_state = PARAM_UPDATE_IDLE_STATE;
  418. ble_info.conn_rxtx_cnt = hostif_bt_conn_get_rxtx_cnt(ble_info.ble_conn);
  419. os_delayed_work_submit(&ble_info.param_update_work, BLE_CONNECT_INTERVAL_CHECK);
  420. return;
  421. }
  422. if ((ble_info.update_work_state == PARAM_UPDATE_IDLE_STATE)
  423. || (ble_info.update_work_state == PARAM_UPDATE_WAITO_UPDATE_STATE)){
  424. conn_rxtx_cnt = hostif_bt_conn_get_rxtx_cnt(ble_info.ble_conn);
  425. if (ble_info.conn_rxtx_cnt != conn_rxtx_cnt) {
  426. if (ble_update_txrx_status_busy(ble_info.conn_rxtx_cnt, conn_rxtx_cnt)) {
  427. conn_busy = 1;
  428. }
  429. ble_info.conn_rxtx_cnt = conn_rxtx_cnt;
  430. }
  431. }
  432. if (ble_info.br_a2dp_runing || ble_info.br_hfp_runing) {
  433. if(conn_busy){
  434. if(ble_info.ble_conn_speed == BLE_CONN_SPEED_FAST){
  435. req_conn_speed = BLE_CONN_SPEED_BUSY;
  436. }
  437. else{
  438. req_conn_speed = ble_info.ble_conn_speed;
  439. }
  440. }
  441. else{
  442. req_conn_speed = BLE_CONN_SPEED_IDLE;
  443. }
  444. }
  445. else if (conn_busy) {
  446. req_conn_speed = BLE_CONN_SPEED_FAST;
  447. }
  448. else {
  449. req_conn_speed = BLE_CONN_SPEED_IDLE;
  450. }
  451. if (req_conn_speed == ble_info.ble_conn_speed) {
  452. ble_info.update_work_state = PARAM_UPDATE_IDLE_STATE;
  453. ble_info.conn_rxtx_cnt = hostif_bt_conn_get_rxtx_cnt(ble_info.ble_conn);
  454. os_delayed_work_submit(&ble_info.param_update_work, BLE_CONNECT_INTERVAL_CHECK);
  455. return;
  456. }
  457. bt_manager_set_ble_connection_param(req_conn_speed);
  458. ble_info.update_work_state = PARAM_UPDATE_RUNING;
  459. os_delayed_work_submit(&ble_info.param_update_work, BLE_UPDATE_PARAM_FINISH_TIME);
  460. } else {
  461. ble_info.update_work_state = PARAM_UPDATE_IDLE_STATE;
  462. }
  463. }
  464. static void ble_check_update_param(void)
  465. {
  466. if (ble_info.update_work_state == PARAM_UPDATE_IDLE_STATE) {
  467. ble_info.update_work_state = PARAM_UPDATE_WAITO_UPDATE_STATE;
  468. os_delayed_work_submit(&ble_info.param_update_work, BLE_DELAY_UPDATE_PARAM_TIME);
  469. } else if (ble_info.update_work_state == PARAM_UPDATE_RUNING) {
  470. ble_info.update_work_state = PARAM_UPDATE_WAITO_UPDATE_STATE;
  471. os_delayed_work_submit(&ble_info.param_update_work, BLE_UPDATE_PARAM_FINISH_TIME);
  472. } else {
  473. /* Already in PARAM_UPDATE_WAITO_UPDATE_STATE */
  474. }
  475. }
  476. static void ble_send_data_check_interval(void)
  477. {
  478. #ifdef CONFIG_GATT_OVER_BREDR
  479. if (is_le_conn(ble_info.ble_conn))
  480. #endif
  481. {
  482. if ((ble_info.ble_conn_speed != BLE_CONN_SPEED_FAST) &&
  483. !ble_info.br_a2dp_runing && !ble_info.br_hfp_runing) {
  484. ble_check_update_param();
  485. }
  486. }
  487. }
  488. #endif
  489. static void exchange_func(struct bt_conn *conn, uint8_t err,
  490. struct bt_gatt_exchange_params *params)
  491. {
  492. ble_info.mtu = bt_manager_get_ble_mtu();
  493. SYS_LOG_INF("Exchange %s mtu:%d", err == 0 ? "successful" : "failed",ble_info.mtu);
  494. }
  495. static struct bt_gatt_exchange_params exchange_params = {
  496. .func = exchange_func,
  497. };
  498. static void notify_ble_connected(uint8_t *mac, uint8_t connected)
  499. {
  500. struct ble_reg_manager *le_mgr;
  501. os_mutex_lock(&ble_mgr_lock, OS_FOREVER);
  502. SYS_SLIST_FOR_EACH_CONTAINER(&ble_list, le_mgr, node) {
  503. if (le_mgr->link_cb) {
  504. le_mgr->link_cb(ble_info.device_mac, connected);
  505. }
  506. }
  507. os_mutex_unlock(&ble_mgr_lock);
  508. }
  509. #ifdef CONFIG_BT_BLE_NOTIFY_PENDING
  510. static void bt_manager_ble_notify_complete(struct k_work *work)
  511. {
  512. /* Notify app ble send complete, can send next data. */
  513. //SYS_LOG_INF("pending_cb");
  514. #if CONFIG_AEM_WATCH_SUPPORT
  515. extern void aem_ble_notify_complete_cb(void);
  516. aem_ble_notify_complete_cb();
  517. #endif
  518. return;
  519. }
  520. static void bt_manager_ble_pending_cb(struct bt_conn *conn, uint8_t pkts)
  521. {
  522. if (ble_info.ble_send_pending) {
  523. ble_info.ble_send_pending = 0;
  524. os_delayed_work_submit(&ble_info.ble_pending_notify_work, 0);
  525. }
  526. }
  527. #endif
  528. static void connected(struct bt_conn *conn, uint8_t err)
  529. {
  530. char addr[13];
  531. struct bt_conn_info info;
  532. if (err) {
  533. SYS_LOG_ERR("slave fail to connect(%u)", err);
  534. return;
  535. }
  536. if ((hostif_bt_conn_get_info(conn, &info) < 0) || (info.type != BT_CONN_TYPE_LE) || (info.role != BT_HCI_ROLE_SLAVE)) {
  537. return;
  538. }
  539. if (!ble_info.ble_conn) {
  540. #ifdef CONFIG_BR_SDP_ACTIVE_REGISTER
  541. #ifdef CONFIG_GATT_OVER_BREDR
  542. if (info.type == BT_CONN_TYPE_LE) {
  543. void bt_unregister_gobr_sdp(void);
  544. bt_unregister_gobr_sdp();
  545. }
  546. #endif
  547. #endif
  548. memcpy(ble_info.device_mac, info.le.dst->a.val, 6);
  549. memset(addr, 0, 13);
  550. bin2hex(ble_info.device_mac, 6, addr, 12);
  551. SYS_LOG_INF("Ble connected MAC: %s inv %d lat %d timeout %d",
  552. addr, info.le.interval, info.le.latency, info.le.timeout);
  553. ble_set_clear_wake_lock(BLE_WAKE_LOCK_CONNECTED_NOTIFY, 1);
  554. os_delayed_work_submit(&ble_info.ble_connected_notify_work, BLE_CONNECTED_DELAY_NOTIFY);
  555. ble_info.ble_conn = hostif_bt_conn_ref(conn);
  556. ble_info.conn_rxtx_cnt = 0;
  557. ble_info.update_work_state = PARAM_UPDATE_WAITO_UPDATE_STATE;
  558. ble_info.ble_state = BT_STATUS_BLE_CONNECTED;
  559. ble_info.ble_conn_speed = BLE_CONN_NOINIT_INTERVAL;
  560. ble_info.ble_conn_param_update_err = 0;
  561. ble_info.le_conn_param.interval_min = info.le.interval;
  562. ble_info.le_conn_param.interval_max = info.le.interval;
  563. ble_info.le_conn_param.latency = info.le.latency;
  564. ble_info.le_conn_param.timeout = info.le.timeout;
  565. ble_set_clear_wake_lock(BLE_WAKE_LOCK_ADV_MANANGER, 1);
  566. os_delayed_work_submit(&ble_info.ble_advertise_manager_work, 0);
  567. #ifdef CONFIG_BT_BLE_APP_UPDATE_PARAM
  568. ble_info.update_time = os_uptime_get_32();
  569. #else
  570. os_delayed_work_submit(&ble_info.param_update_work, BLE_CONNECT_DELAY_UPDATE_PARAM);
  571. #endif
  572. #ifdef CONFIG_BT_BLE_NOTIFY_PENDING
  573. hostif_bt_conn_reg_tx_pending_cb(conn, bt_manager_ble_pending_cb);
  574. #endif
  575. #ifdef CONFIG_ACTIVE_REQ_BLE_ENC
  576. os_delayed_work_submit(&ble_info.ble_req_enc_work, BLE_DELAY_ENCRYPT_TIME);
  577. #endif
  578. } else {
  579. SYS_LOG_ERR("Already connected");
  580. }
  581. }
  582. static void disconnected(struct bt_conn *conn, uint8_t reason)
  583. {
  584. char addr[13];
  585. struct bt_conn_info info;
  586. os_mutex_lock(&ble_mgr_lock, OS_FOREVER);
  587. if ((hostif_bt_conn_get_info(conn, &info) < 0) || (info.type != BT_CONN_TYPE_LE) || (info.role != BT_HCI_ROLE_SLAVE)) {
  588. os_mutex_unlock(&ble_mgr_lock);
  589. return;
  590. }
  591. if (ble_info.ble_conn == conn) {
  592. #ifndef CONFIG_BT_BLE_APP_UPDATE_PARAM
  593. os_delayed_work_cancel(&ble_info.param_update_work);
  594. #endif
  595. #ifdef CONFIG_BT_BLE_NOTIFY_PENDING
  596. ble_info.ble_send_pending = 0;
  597. #endif
  598. os_delayed_work_cancel(&ble_info.ble_connected_notify_work);
  599. ble_set_clear_wake_lock(BLE_WAKE_LOCK_CONNECTED_NOTIFY, 0);
  600. memset(addr, 0, sizeof(addr));
  601. bin2hex(ble_info.device_mac, 6, addr, 12);
  602. SYS_LOG_INF("Ble disconnected MAC: %s, reason: %d", addr, reason);
  603. hostif_bt_conn_unref(ble_info.ble_conn);
  604. ble_info.ble_conn = NULL;
  605. ble_info.ble_state = BT_STATUS_BLE_DISCONNECTED;
  606. ble_info.rssi = 0x7F;
  607. ble_info.ble_conn_param_update_err = 0;
  608. notify_ble_connected(ble_info.device_mac, false);
  609. os_sem_give(&ble_ind_sem);
  610. ble_set_clear_wake_lock(BLE_WAKE_LOCK_ADV_MANANGER,1);
  611. if (!ble_info.ble_deinit) {
  612. os_delayed_work_submit(&ble_info.ble_advertise_manager_work, 0);
  613. }
  614. #ifdef CONFIG_ACTIVE_REQ_BLE_ENC
  615. os_delayed_work_cancel(&ble_info.ble_req_enc_work);
  616. #endif
  617. #ifdef CONFIG_BR_SDP_ACTIVE_REGISTER
  618. #ifdef CONFIG_GATT_OVER_BREDR
  619. if (info.type == BT_CONN_TYPE_LE) {
  620. void bt_register_gobr_sdp(void);
  621. bt_register_gobr_sdp();
  622. }
  623. #endif
  624. #endif
  625. } else {
  626. SYS_LOG_ERR("Error conn %p(%p)", ble_info.ble_conn, conn);
  627. }
  628. os_mutex_unlock(&ble_mgr_lock);
  629. }
  630. static bool le_param_req(struct bt_conn *conn, struct bt_le_conn_param *param)
  631. {
  632. struct bt_conn_info info;
  633. if ((hostif_bt_conn_get_info(conn, &info) < 0) || (info.type != BT_CONN_TYPE_LE) || (info.role != BT_HCI_ROLE_SLAVE)) {
  634. return false;
  635. }
  636. SYS_LOG_INF("int (0x%04x, 0x%04x) lat %d to %d", param->interval_min,
  637. param->interval_max, param->latency, param->timeout);
  638. return true;
  639. }
  640. static void le_param_updated(struct bt_conn *conn, uint16_t interval,
  641. uint16_t latency, uint16_t timeout,uint8_t status)
  642. {
  643. struct bt_conn_info info;
  644. if ((hostif_bt_conn_get_info(conn, &info) < 0) || (info.type != BT_CONN_TYPE_LE) || (info.role != BT_HCI_ROLE_SLAVE)) {
  645. return;
  646. }
  647. ble_info.le_conn_param.interval_min = interval;
  648. ble_info.le_conn_param.interval_max = interval;
  649. ble_info.le_conn_param.latency = latency;
  650. ble_info.le_conn_param.timeout = timeout;
  651. SYS_LOG_INF("status %d inv %d lat %d to %d", status, interval, latency, timeout);
  652. #ifndef CONFIG_BT_BLE_APP_UPDATE_PARAM
  653. uint16_t inv = interval;
  654. uint16_t lat = latency;
  655. if (status) {
  656. SYS_LOG_ERR("status:%d count:%d",status,ble_info.ble_conn_param_update_err);
  657. ble_info.ble_conn_param_update_err++;
  658. if (ble_info.ble_conn_param_update_err >= BLE_UPDATE_PARAM_ERR_MAX) {
  659. os_delayed_work_cancel(&ble_info.param_update_work);
  660. }
  661. return;
  662. }
  663. ble_info.ble_conn_param_update_err = 0;
  664. if (lat) {
  665. do{
  666. inv += interval;
  667. lat--;
  668. }while(lat);
  669. }
  670. if (inv <= le_conn_param[ble_info.ios_phone][BLE_CONN_SPEED_FAST].interval_max) {
  671. ble_info.ble_conn_speed = BLE_CONN_SPEED_FAST;
  672. } else if (inv <= le_conn_param[ble_info.ios_phone][BLE_CONN_SPEED_BUSY].interval_max) {
  673. ble_info.ble_conn_speed = BLE_CONN_SPEED_BUSY;
  674. } else {
  675. ble_info.ble_conn_speed = BLE_CONN_SPEED_IDLE;
  676. }
  677. SYS_LOG_INF("ble_conn_speed %d", ble_info.ble_conn_speed);
  678. #endif
  679. }
  680. static struct bt_conn_cb conn_callbacks = {
  681. .connected = connected,
  682. .disconnected = disconnected,
  683. .le_param_req = le_param_req,
  684. .le_param_updated = le_param_updated,
  685. };
  686. #ifdef CONFIG_GATT_OVER_BREDR
  687. static void bt_gobr_connected_cb(struct bt_conn *conn, bool connected)
  688. {
  689. struct bt_conn_info info;
  690. SYS_LOG_INF("bt_gobr_connected_cb");
  691. SYS_LOG_INF("Gatt over BREDR %s\n", connected ? "connected" : "disconnected");
  692. if (connected) {
  693. hostif_bt_le_adv_stop();
  694. hostif_bt_conn_get_info(conn, &info);
  695. memcpy(ble_info.device_mac, info.br.dst->val, 6);
  696. ble_set_clear_wake_lock(BLE_WAKE_LOCK_CONNECTED_NOTIFY, 1);
  697. os_delayed_work_submit(&ble_info.ble_connected_notify_work, BLE_CONNECTED_DELAY_NOTIFY);
  698. ble_info.ble_conn = hostif_bt_conn_ref(conn);
  699. ble_info.ble_state = BT_STATUS_BLE_CONNECTED;
  700. } else {
  701. os_delayed_work_cancel(&ble_info.ble_connected_notify_work);
  702. ble_set_clear_wake_lock(BLE_WAKE_LOCK_CONNECTED_NOTIFY, 0);
  703. hostif_bt_conn_unref(ble_info.ble_conn);
  704. ble_info.ble_conn = NULL;
  705. ble_info.ble_state = BT_STATUS_BLE_DISCONNECTED;
  706. ble_info.rssi = 0x7F;
  707. notify_ble_connected(ble_info.device_mac, false);
  708. os_sem_give(&ble_ind_sem);
  709. ble_advertise();
  710. }
  711. }
  712. static u8_t bt_gatt_connect_status_cb(void)
  713. {
  714. SYS_LOG_INF("bt_gatt_connect_status_cb");
  715. if (ble_info.ble_conn)
  716. return true;
  717. return false;
  718. }
  719. #endif
  720. static int ble_notify_data(struct bt_gatt_attr *attr, uint8_t *data, uint16_t len)
  721. {
  722. int ret;
  723. ret = hostif_bt_gatt_notify(ble_info.ble_conn, attr, data, len);
  724. if (ret < 0) {
  725. return ret;
  726. } else {
  727. return (int)len;
  728. }
  729. }
  730. static void ble_indicate_cb(struct bt_conn *conn, struct bt_gatt_indicate_params *attr,
  731. uint8_t err)
  732. {
  733. os_sem_give(&ble_ind_sem);
  734. }
  735. static int ble_indicate_data(struct bt_gatt_attr *attr, uint8_t *data, uint16_t len)
  736. {
  737. int ret;
  738. if (os_sem_take(&ble_ind_sem, OS_NO_WAIT) < 0) {
  739. return -EBUSY;
  740. }
  741. ble_ind_params.attr = attr;
  742. ble_ind_params.func = ble_indicate_cb;
  743. ble_ind_params.len = len;
  744. ble_ind_params.data = data;
  745. ret = hostif_bt_gatt_indicate(ble_info.ble_conn, &ble_ind_params);
  746. if (ret < 0) {
  747. return ret;
  748. } else {
  749. return (int)len;
  750. }
  751. }
  752. #ifndef CONFIG_BT_BLE_APP_UPDATE_PARAM
  753. int bt_manager_set_ble_connection_param(uint8_t speed_mode)
  754. {
  755. uint8_t phone_type = ble_info.ios_phone;
  756. if (!ble_info.ble_conn) {
  757. return -EIO;
  758. }
  759. if(speed_mode >= BLE_CONN_SPEED_MAX){
  760. return -EINVAL;
  761. }
  762. hostif_bt_conn_le_param_update(ble_info.ble_conn, &le_conn_param[phone_type][speed_mode]);
  763. SYS_LOG_INF("phone:%d speed %d",phone_type,speed_mode);
  764. return 0;
  765. }
  766. #endif
  767. uint16_t bt_manager_get_ble_mtu(void)
  768. {
  769. return (ble_info.ble_conn) ? hostif_bt_gatt_get_mtu(ble_info.ble_conn) : 0;
  770. }
  771. int bt_manager_get_ble_mac(bt_addr_le_t *le_addr)
  772. {
  773. return hostif_bt_le_get_mac(le_addr);
  774. }
  775. int bt_manager_get_ble_state(void)
  776. {
  777. return ble_info.ble_state;
  778. }
  779. bool bt_manager_is_app_enable_adv(void)
  780. {
  781. return (ble_info.ble_app_enable_adv) ? true : false;
  782. }
  783. uint8_t bt_manager_get_ble_connected_dev_num(void)
  784. {
  785. return (ble_info.ble_conn)? 1 : 0;
  786. }
  787. struct ble_mgr_info * bt_manager_get_ble_info(void)
  788. {
  789. return &ble_info;
  790. }
  791. int bt_manager_get_ble_dev_rssi(int8_t *rssi)
  792. {
  793. if (!ble_info.ble_conn) {
  794. return -EIO;
  795. }
  796. return hostif_bt_conn_read_rssi(ble_info.ble_conn,rssi);
  797. }
  798. int bt_manager_ble_send_data(struct bt_gatt_attr *chrc_attr,
  799. struct bt_gatt_attr *des_attr, uint8_t *data, uint16_t len)
  800. {
  801. struct bt_gatt_chrc *chrc = (struct bt_gatt_chrc *)(chrc_attr->user_data);
  802. if (!ble_info.ble_conn) {
  803. return -EIO;
  804. }
  805. #ifdef CONFIG_GATT_OVER_BREDR
  806. if (!ble_info.mtu)
  807. {
  808. // ble_info.mtu = CONFIG_BT_L2CAP_TX_MTU;
  809. ble_info.mtu = bt_manager_get_ble_mtu();
  810. }
  811. #endif
  812. if (len > (ble_info.mtu - 3)) {
  813. SYS_LOG_ERR("len %d mtu %d", len, ble_info.mtu);
  814. return -EFBIG;
  815. }
  816. #ifdef CONFIG_BT_BLE_NOTIFY_PENDING
  817. if (ble_info.ble_send_pending) {
  818. return -EBUSY;
  819. }
  820. if (0 == bt_manager_ble_ready_send_data()) {
  821. ble_info.ble_send_pending = 1;
  822. return -EBUSY;
  823. }
  824. #else
  825. if (0 == bt_manager_ble_ready_send_data()) {
  826. return -EBUSY;
  827. }
  828. #endif
  829. ble_send_data_check_interval();
  830. if (chrc->properties & BT_GATT_CHRC_NOTIFY) {
  831. return ble_notify_data(des_attr, data, len);
  832. } else if (chrc->properties & BT_GATT_CHRC_INDICATE) {
  833. return ble_indicate_data(des_attr, data, len);
  834. }
  835. /* Wait TODO */
  836. /* return ble_write_data(attr, data, len) */
  837. SYS_LOG_WRN("Wait todo");
  838. return -EIO;
  839. }
  840. void bt_manager_ble_disconnect(void)
  841. {
  842. int err;
  843. os_mutex_lock(&ble_mgr_lock, OS_FOREVER);
  844. if (!ble_info.ble_conn) {
  845. os_mutex_unlock(&ble_mgr_lock);
  846. return;
  847. }
  848. #ifdef CONFIG_BT_BLE_NOTIFY_PENDING
  849. ble_info.ble_send_pending = 0;
  850. #endif
  851. #ifdef CONFIG_GATT_OVER_BREDR
  852. if (is_le_conn(ble_info.ble_conn))
  853. #endif
  854. {
  855. hostif_bt_conn_ref(ble_info.ble_conn);
  856. err = hostif_bt_conn_disconnect(ble_info.ble_conn, BT_HCI_ERR_REMOTE_USER_TERM_CONN);
  857. if (err) {
  858. SYS_LOG_INF("Disconnection failed (err %d)", err);
  859. }
  860. hostif_bt_conn_unref(ble_info.ble_conn);
  861. os_mutex_unlock(&ble_mgr_lock);
  862. return;
  863. }
  864. os_mutex_unlock(&ble_mgr_lock);
  865. SYS_LOG_INF("Wait todo!");
  866. }
  867. void bt_manager_ble_service_reg(struct ble_reg_manager *le_mgr)
  868. {
  869. os_mutex_lock(&ble_mgr_lock, OS_FOREVER);
  870. sys_slist_append(&ble_list, &le_mgr->node);
  871. hostif_bt_gatt_service_register(&le_mgr->gatt_svc);
  872. os_mutex_unlock(&ble_mgr_lock);
  873. }
  874. int bt_manager_ble_ready_send_data(void)
  875. {
  876. if (!ble_info.ble_conn) {
  877. return 0;
  878. }
  879. return hostif_bt_le_conn_ready_send_data(ble_info.ble_conn);
  880. }
  881. uint16_t bt_manager_ble_tx_pending_cnt(void)
  882. {
  883. if (!ble_info.ble_conn) {
  884. return 0;
  885. }
  886. return hostif_bt_le_tx_pending_cnt(ble_info.ble_conn);
  887. }
  888. static void ble_wake_lock_check_work(struct k_work *work)
  889. {
  890. static uint8_t check_idle_cnt = 0;
  891. static uint8_t get_wake_lock = 0;
  892. if (get_wake_lock) {
  893. if (!bt_manager_get_ble_wake_lock()) {
  894. check_idle_cnt++;
  895. if (check_idle_cnt > BLE_WAKE_LOCK_CHECK_TIMES) {
  896. bt_wake_unlock();
  897. get_wake_lock = 0;
  898. check_idle_cnt = 0;
  899. SYS_LOG_INF("Ble wake lock %d", get_wake_lock);
  900. }
  901. } else {
  902. check_idle_cnt = 0;
  903. }
  904. } else {
  905. if (bt_manager_get_ble_wake_lock()) {
  906. bt_wake_lock();
  907. get_wake_lock = 1;
  908. check_idle_cnt = 0;
  909. SYS_LOG_INF("Ble wake lock %d", get_wake_lock);
  910. }
  911. }
  912. os_delayed_work_submit(&ble_info.ble_wake_lock_work, BLE_WAKE_LOCK_CHECK_INTERVAL);
  913. }
  914. static void ble_connected_notify_work_callback(struct k_work *work)
  915. {
  916. int8_t rssi;
  917. int ret;
  918. if(ble_info.ble_conn){
  919. notify_ble_connected(ble_info.device_mac, true);
  920. if (exchange_params.func) {
  921. #ifdef CONFIG_GATT_OVER_BREDR
  922. if (is_le_conn(ble_info.ble_conn))
  923. #endif
  924. {
  925. hostif_bt_gatt_exchange_mtu(ble_info.ble_conn, &exchange_params);
  926. }
  927. }
  928. ret = bt_manager_get_ble_dev_rssi(&rssi);
  929. if(!ret){
  930. ble_info.rssi = rssi;
  931. }
  932. SYS_LOG_INF("ret %d rssi %d",ret,rssi);
  933. }
  934. ble_set_clear_wake_lock(BLE_WAKE_LOCK_CONNECTED_NOTIFY,0);
  935. }
  936. static int bt_manager_ble_htimer_enable(bool enable,uint32_t time)
  937. {
  938. SYS_LOG_INF("Ble htimer en %d t %d", enable, time);
  939. if (enable) {
  940. hrtimer_start(&ble_info.timer, 1000*time, 1000*time);
  941. sys_s3_wksrc_set(SLEEP_WK_SRC_T1);
  942. } else {
  943. hrtimer_stop(&ble_info.timer);
  944. }
  945. return 0;
  946. }
  947. static void ble_advertise_manager_work_callback(struct k_work *work)
  948. {
  949. uint8_t adv_status = 0;
  950. uint8_t master_status = 0;
  951. int ret = -1;
  952. ble_set_clear_wake_lock(BLE_WAKE_LOCK_ADV_MANANGER, 0);
  953. #ifdef CONFIG_BLE_MASTER
  954. master_status = le_master_get_scan_status();
  955. #endif
  956. if (ble_info.ble_app_enable_adv == 0) {
  957. /* User not start ble advertise */
  958. return;
  959. }
  960. if (master_status) {
  961. if (ble_info.ble_state == BT_STATUS_BLE_NONE || ble_info.ble_state == BT_STATUS_BLE_DISCONNECTED) {
  962. /* Ble master busy now, delay check and start advertise. */
  963. bt_manager_ble_htimer_enable(true, BLE_ADV_DELAY_CHECK);
  964. return;
  965. } else if (ble_info.ble_state == BT_STATUS_BLE_ADV) {
  966. SYS_LOG_ERR("Ble adv in master busy state!");
  967. }
  968. }
  969. if ((ble_info.ble_state == BT_STATUS_BLE_NONE) || (ble_info.ble_state == BT_STATUS_BLE_DISCONNECTED)) {
  970. ble_info.ble_adv_speed = BLE_ADV_SPEED_FAST;
  971. ble_advertise();
  972. ble_info.ble_advertise_speed_change = false;
  973. bt_manager_ble_htimer_enable(true, BLE_ADV_FAST_MAX_TIME);
  974. } else if (ble_info.ble_state == BT_STATUS_BLE_ADV) {
  975. if (ble_info.ble_advertise_speed_change == true) {
  976. if (ble_info.ble_adv_speed != BLE_ADV_SPEED_SLOW) {
  977. hostif_bt_le_adv_stop();
  978. ble_info.ble_advertise_active = false;
  979. ble_info.ble_adv_speed = BLE_ADV_SPEED_SLOW;
  980. ble_set_clear_wake_lock(BLE_WAKE_LOCK_ADV_MANANGER,1);
  981. os_delayed_work_submit(&ble_info.ble_advertise_manager_work, 10);
  982. } else {
  983. ble_advertise();
  984. ble_info.ble_advertise_speed_change = false;
  985. ret = hrtimer_is_running(&ble_info.timer);
  986. if (ret) {
  987. bt_manager_ble_htimer_enable(false, 0);
  988. }
  989. }
  990. }
  991. } else {
  992. /* Wait TODO: BLE slave in connected state, if need adv after cnnected, wait to modify. */
  993. if ((ble_info.ble_advertise_active == true) || nconn_flag) {
  994. hostif_bt_le_adv_stop();
  995. ble_info.ble_advertise_active = false;
  996. /* The application determines whether to enable unreachable broadcasting */
  997. if(nconn_flag)
  998. {
  999. ble_advertise_v2();
  1000. }
  1001. ret = hrtimer_is_running(&ble_info.timer);
  1002. if (ret) {
  1003. bt_manager_ble_htimer_enable(false,0);
  1004. }
  1005. }
  1006. }
  1007. hostif_bt_le_get_adv_status(&adv_status);
  1008. SYS_LOG_INF("ble_state %d speed %d adv_status %d",ble_info.ble_state,
  1009. ble_info.ble_adv_speed, adv_status);
  1010. }
  1011. static void bt_manager_ble_timer_callback(struct hrtimer *timer, void *expiry_fn_arg)
  1012. {
  1013. ble_info.ble_advertise_speed_change = true;
  1014. ble_set_clear_wake_lock(BLE_WAKE_LOCK_ADV_MANANGER, 1);
  1015. os_delayed_work_submit(&ble_info.ble_advertise_manager_work, 0);
  1016. }
  1017. #ifdef CONFIG_ACTIVE_REQ_BLE_ENC
  1018. static void ble_req_enc_work_handler(struct k_work *work)
  1019. {
  1020. if (ble_info.ble_conn) {
  1021. if ((hostif_bt_conn_get_security(ble_info.ble_conn) < BT_SECURITY_L2) &&
  1022. (!hostif_bt_conn_security_is_start(ble_info.ble_conn))) {
  1023. hostif_bt_conn_set_security(ble_info.ble_conn, BT_SECURITY_L2);
  1024. }
  1025. }
  1026. }
  1027. #endif
  1028. #ifdef CONFIG_AEM_WATCH_SUPPORT
  1029. void bt_manager_ble_req_enc(void)
  1030. {
  1031. SYS_LOG_INF("bt_manager_ble_req_enc");
  1032. if (ble_info.ble_conn)
  1033. {
  1034. if ((hostif_bt_conn_get_security(ble_info.ble_conn) < BT_SECURITY_L2) &&
  1035. (!hostif_bt_conn_security_is_start(ble_info.ble_conn)))
  1036. {
  1037. hostif_bt_conn_set_security(ble_info.ble_conn, BT_SECURITY_L2);
  1038. }
  1039. }
  1040. }
  1041. #endif
  1042. //#define LE_AUTH_PASSKEY_DISPLAY 1
  1043. //#ifdef LE_AUTH_PASSKEY_DISPLAY
  1044. static void le_auth_passkey_display(struct bt_conn *conn, unsigned int passkey)
  1045. {
  1046. struct bt_conn_info info;
  1047. char addr[13];
  1048. if ((hostif_bt_conn_get_info(conn, &info) < 0) || (info.type != BT_CONN_TYPE_LE)){
  1049. return;
  1050. }
  1051. memset(addr, 0, 13);
  1052. bin2hex(info.le.dst->a.val, 6, addr, 12);
  1053. SYS_LOG_INF("le addr: %s le passkey:%d", addr, passkey);
  1054. }
  1055. static void bt_mgr_ble_pairing_event(uint8_t event, void *param)
  1056. {
  1057. struct app_msg msg = {0};
  1058. msg.type = MSG_BT_PAIRING_EVENT;
  1059. msg.cmd = event;
  1060. msg.value = (int)((uint32_t)param);
  1061. send_async_msg("main", &msg);
  1062. SYS_LOG_INF("param: %d",msg.value);
  1063. }
  1064. static void le_auth_passkey_confirm(struct bt_conn *conn, unsigned int passkey)
  1065. {
  1066. struct bt_conn_info info;
  1067. char addr[13];
  1068. if ((hostif_bt_conn_get_info(conn, &info) < 0) || (info.type != BT_CONN_TYPE_LE)){
  1069. return;
  1070. }
  1071. hostif_bt_conn_auth_passkey_confirm(conn);
  1072. memset(addr, 0, 13);
  1073. bin2hex(info.le.dst->a.val, 6, addr, 12);
  1074. SYS_LOG_INF("le addr: %s key:%d", addr, passkey);
  1075. bt_mgr_ble_pairing_event(BTSRV_PAIR_PASSKEY_DISPLAY, (void *)passkey);
  1076. }
  1077. //#endif
  1078. static void le_auth_cancel(struct bt_conn *conn)
  1079. {
  1080. char addr[BT_ADDR_LE_STR_LEN];
  1081. bt_addr_le_to_str(bt_conn_get_dst(conn), addr, sizeof(addr));
  1082. SYS_LOG_INF("le addr:%s",addr);
  1083. }
  1084. static void le_pairing_failed(struct bt_conn *conn, enum bt_security_err reason)
  1085. {
  1086. struct bt_conn_info info;
  1087. char addr[13];
  1088. if ((hostif_bt_conn_get_info(conn, &info) < 0) || (info.type != BT_CONN_TYPE_LE)){
  1089. return;
  1090. }
  1091. memset(addr, 0, 13);
  1092. bin2hex(info.le.dst->a.val, 6, addr, 12);
  1093. SYS_LOG_INF("le addr %s reason %d", addr,reason);
  1094. }
  1095. static void le_pairing_complete(struct bt_conn *conn, bool bonded)
  1096. {
  1097. struct bt_conn_info info;
  1098. char addr[13];
  1099. if ((hostif_bt_conn_get_info(conn, &info) < 0) || (info.type != BT_CONN_TYPE_LE)){
  1100. return;
  1101. }
  1102. memset(addr, 0, 13);
  1103. bin2hex(info.le.dst->a.val, 6, addr, 12);
  1104. SYS_LOG_INF("le addr %s bonded %d", addr, bonded);
  1105. }
  1106. /* IO_NO_INPUT_OUTPUT for le */
  1107. static struct bt_conn_auth_cb le_auth_cb_confirm = {
  1108. #ifdef LE_AUTH_PASSKEY_DISPLAY
  1109. .passkey_display = le_auth_passkey_display,
  1110. .passkey_confirm = le_auth_passkey_confirm,
  1111. #else
  1112. .passkey_display = NULL,
  1113. .passkey_confirm = NULL,
  1114. #endif
  1115. .cancel = le_auth_cancel,
  1116. .pairing_failed = le_pairing_failed,
  1117. .pairing_complete = le_pairing_complete,
  1118. };
  1119. void bt_manager_ble_passkey_display(bool mode)
  1120. {
  1121. // only for test.
  1122. os_mutex_lock(&ble_mgr_lock, OS_FOREVER);
  1123. if (mode) {
  1124. // #ifdef LE_AUTH_PASSKEY_DISPLAY
  1125. le_auth_cb_confirm.passkey_display = le_auth_passkey_display;
  1126. le_auth_cb_confirm.passkey_confirm = le_auth_passkey_confirm;
  1127. // #endif
  1128. } else {
  1129. le_auth_cb_confirm.passkey_display = NULL;
  1130. le_auth_cb_confirm.passkey_confirm = NULL;
  1131. }
  1132. hostif_bt_conn_le_auth_cb_register(&le_auth_cb_confirm);
  1133. os_mutex_unlock(&ble_mgr_lock);
  1134. }
  1135. void bt_manager_ble_init(uint8_t mode)
  1136. {
  1137. memset(&ble_info, 0, sizeof(ble_info));
  1138. ble_info.ble_state = BT_STATUS_BLE_NONE;
  1139. ble_info.rssi = 0x7F;
  1140. #ifdef CONFIG_BT_BLE_NOTIFY_PENDING
  1141. ble_info.ble_send_pending = 0;
  1142. os_delayed_work_init(&ble_info.ble_pending_notify_work, bt_manager_ble_notify_complete);
  1143. #endif
  1144. if (!mode) {
  1145. sys_slist_init(&ble_list);
  1146. }
  1147. os_sem_init(&ble_ind_sem, 1, 1);
  1148. #ifndef CONFIG_BT_BLE_APP_UPDATE_PARAM
  1149. os_delayed_work_init(&ble_info.param_update_work, param_update_work_callback);
  1150. #endif
  1151. os_delayed_work_init(&ble_info.ble_wake_lock_work, ble_wake_lock_check_work);
  1152. os_delayed_work_init(&ble_info.ble_connected_notify_work, ble_connected_notify_work_callback);
  1153. os_delayed_work_init(&ble_info.ble_advertise_manager_work, ble_advertise_manager_work_callback);
  1154. hrtimer_init(&ble_info.timer, bt_manager_ble_timer_callback, NULL);
  1155. os_delayed_work_submit(&ble_info.ble_wake_lock_work, BLE_WAKE_LOCK_CHECK_INTERVAL);
  1156. #ifdef CONFIG_OTA_BLE_MASTER_SUPPORT
  1157. (void)conn_callbacks;
  1158. #else
  1159. hostif_bt_conn_cb_register(&conn_callbacks);
  1160. #endif
  1161. #ifdef CONFIG_GATT_OVER_BREDR
  1162. SYS_LOG_INF("gobr_reg");
  1163. hostif_bt_gobr_reg_connected_cb(bt_gobr_connected_cb, bt_gatt_connect_status_cb);
  1164. #endif
  1165. hostif_bt_conn_le_auth_cb_register(&le_auth_cb_confirm);
  1166. ble_info.ble_conn_speed = BLE_CONN_NOINIT_INTERVAL;
  1167. if (mode) {
  1168. hostif_bt_le_adv_stop();
  1169. bt_manager_reset_le_adv();
  1170. }
  1171. #ifdef CONFIG_BT_ACTIONS_SUPER_SERVICE
  1172. if (!mode) {
  1173. ble_manager_super_register();
  1174. }
  1175. #endif
  1176. #ifdef CONFIG_BT_ANCS_AMS
  1177. ble_ancs_ams_init();
  1178. #endif
  1179. #ifdef CONFIG_ACTIVE_REQ_BLE_ENC
  1180. os_delayed_work_init(&ble_info.ble_req_enc_work, ble_req_enc_work_handler);
  1181. #endif
  1182. #ifdef CONFIG_BLE_MASTER
  1183. #ifndef CONFIG_OTA_BLE_MASTER_SUPPORT
  1184. ble_master_init();
  1185. #endif
  1186. #endif
  1187. }
  1188. #ifdef CONFIG_BT_ANCS_AMS
  1189. void bt_manager_ble_ancs_ams_handle(uint8_t code, void* data)
  1190. {
  1191. ble_ancs_ams_event_handle(code,data);
  1192. }
  1193. #endif
  1194. void bt_manager_ble_deinit(void)
  1195. {
  1196. uint16_t time_out = 0;
  1197. ble_info.ble_deinit = 1;
  1198. if (bt_manager_ble_is_connected()) {
  1199. bt_manager_ble_disconnect();
  1200. while (bt_manager_ble_is_connected() && time_out++ < 200) {
  1201. os_sleep(10);
  1202. }
  1203. os_sleep(50);
  1204. }
  1205. #ifdef CONFIG_BT_MANAGER_DEINIT_SERVICE
  1206. struct ble_reg_manager *le_mgr;
  1207. sys_snode_t *prev_node = NULL;
  1208. SYS_SLIST_FOR_EACH_CONTAINER(&ble_list, le_mgr, node) {
  1209. hostif_bt_gatt_service_unregister(&le_mgr->gatt_svc);
  1210. sys_slist_remove(&ble_list,prev_node,&le_mgr->node);
  1211. }
  1212. #endif
  1213. bt_manager_ble_adv_stop();
  1214. bt_manager_ble_htimer_enable(false,0);
  1215. ble_info.ble_delaywork_wake_lock = 0;
  1216. #ifndef CONFIG_BT_BLE_APP_UPDATE_PARAM
  1217. os_delayed_work_cancel(&ble_info.param_update_work);
  1218. #endif
  1219. os_delayed_work_cancel(&ble_info.ble_wake_lock_work);
  1220. os_delayed_work_cancel(&ble_info.ble_connected_notify_work);
  1221. os_delayed_work_cancel(&ble_info.ble_advertise_manager_work);
  1222. #ifdef CONFIG_ACTIVE_REQ_BLE_ENC
  1223. os_delayed_work_cancel(&ble_info.ble_req_enc_work);
  1224. #endif
  1225. }
  1226. void bt_manager_ble_a2dp_play_notify(bool play)
  1227. {
  1228. ble_info.br_a2dp_runing = (play) ? 1 : 0;
  1229. ble_check_update_param();
  1230. }
  1231. void bt_manager_ble_hfp_play_notify(bool play)
  1232. {
  1233. ble_info.br_hfp_runing = (play) ? 1 : 0;
  1234. ble_check_update_param();
  1235. }
  1236. void bt_manager_ble_adv_stop(void)
  1237. {
  1238. bool result = false;
  1239. uint8_t adv_status = 0;
  1240. if (ble_info.ble_app_enable_adv == 0) {
  1241. /* Ble advertise not start */
  1242. return;
  1243. }
  1244. os_mutex_lock(&ble_adv_mutex, OS_FOREVER);
  1245. ble_info.ble_app_enable_adv = 0;
  1246. hostif_bt_le_get_adv_status(&adv_status);
  1247. SYS_LOG_INF("Ble stop adv, state %d %d", adv_status, ble_info.ble_state);
  1248. if (ble_info.ble_state == BT_STATUS_BLE_ADV) {
  1249. result = hrtimer_is_running(&ble_info.timer);
  1250. if (result) {
  1251. bt_manager_ble_htimer_enable(false, 0);
  1252. }
  1253. ble_set_clear_wake_lock(BLE_WAKE_LOCK_ADV_MANANGER, 0);
  1254. os_delayed_work_cancel(&ble_info.ble_advertise_manager_work);
  1255. }
  1256. if (adv_status) {
  1257. hostif_bt_le_adv_stop();
  1258. }
  1259. os_mutex_unlock(&ble_adv_mutex);
  1260. return;
  1261. }
  1262. int bt_manager_ble_adv_start(void)
  1263. {
  1264. os_mutex_lock(&ble_adv_mutex, OS_FOREVER);
  1265. #ifdef CONFIG_BLE_MASTER
  1266. if (le_master_get_scan_status()) {
  1267. SYS_LOG_INF("ble master busy");
  1268. os_mutex_unlock(&ble_adv_mutex);
  1269. return -EBUSY; /* App need stop ble master scan before start advertise */
  1270. }
  1271. #endif
  1272. if (ble_info.ble_app_enable_adv) {
  1273. SYS_LOG_INF("Ble adv already start");
  1274. os_mutex_unlock(&ble_adv_mutex);
  1275. return 0;
  1276. } else {
  1277. SYS_LOG_INF("Ble start adv");
  1278. }
  1279. ble_info.ble_app_enable_adv = 1;
  1280. ble_advertise_init();
  1281. os_mutex_unlock(&ble_adv_mutex);
  1282. return 0;
  1283. }
  1284. void bt_manager_reset_le_adv(void)
  1285. {
  1286. hostif_bt_le_adv_reset();
  1287. }
  1288. int bt_manager_get_ble_wake_lock(void)
  1289. {
  1290. #ifndef CONFIG_BT_BLE_APP_UPDATE_PARAM
  1291. if (ble_info.ble_conn && (ble_info.ble_conn_speed != BLE_CONN_SPEED_IDLE)) {
  1292. return 1;
  1293. }
  1294. #endif
  1295. if (ble_info.ble_delaywork_wake_lock) {
  1296. return 1;
  1297. } else {
  1298. return 0;
  1299. }
  1300. }
  1301. #if CONFIG_AEM_WATCH_SUPPORT
  1302. extern void ancs_incoming_call_handle(struct bt_conn *conn, uint8_t action);
  1303. void bt_manager_ble_ancs_call_accept(bool accept)
  1304. {
  1305. if (accept)
  1306. {
  1307. ancs_incoming_call_handle(ble_info.ble_conn, 0x0 /* ancs_cmd_accept_call */);
  1308. }
  1309. else
  1310. {
  1311. ancs_incoming_call_handle(ble_info.ble_conn, 0x1 /* ancs_cmd_reject_call */);
  1312. }
  1313. }
  1314. #endif
  1315. int bt_manager_ble_find_linkkey(bt_addr_le_t *le_addr)
  1316. {
  1317. return hostif_bt_le_find_linkkey(le_addr);
  1318. }
  1319. void bt_manager_ble_clear_linkkey(bt_addr_le_t *le_addr)
  1320. {
  1321. return hostif_bt_le_clear_linkkey(le_addr);
  1322. }
  1323. uint8_t bt_manager_ble_get_link_key_num(void)
  1324. {
  1325. return hostif_bt_le_get_linkkey_mum();
  1326. }
  1327. void bt_manager_ble_hid_report(uint16_t button)
  1328. {
  1329. #ifdef CONFIG_BT_HIDS
  1330. uint8_t data[3];
  1331. data[0] = button & 0xff;
  1332. data[1] = (button >> 8) & 0xff;
  1333. data[2] = 0;
  1334. hid_send_input_report(ble_info.ble_conn, 1, 3, data);
  1335. memset(data, 0, 3);
  1336. hid_send_input_report(ble_info.ble_conn, 1, 3, data);
  1337. #endif
  1338. }
  1339. void bt_manager_ble_set_phone(bool ios)
  1340. {
  1341. ble_info.ios_phone = ios ? 1 : 0;
  1342. }
  1343. bool bt_manager_ble_is_connected(void)
  1344. {
  1345. #ifdef CONFIG_GATT_OVER_BREDR
  1346. if ((ble_info.ble_conn) && (is_le_conn(ble_info.ble_conn))) {
  1347. return true;
  1348. } else {
  1349. return false;
  1350. }
  1351. #endif
  1352. return (ble_info.ble_conn) ? true : false;
  1353. }
  1354. void bt_manager_ble_dump_info(void)
  1355. {
  1356. uint8_t adv_status;
  1357. char addr[13];
  1358. printk("Ble info wake_lock 0x%x\n", ble_info.ble_delaywork_wake_lock);
  1359. printk("\t Ble %s\n", ble_info.ble_conn ? "connected" : "disconnected");
  1360. #ifdef CONFIG_BT_BLE_APP_UPDATE_PARAM
  1361. printk("\t App update param\n");
  1362. #else
  1363. printk("\t Ble manager update param\n");
  1364. #endif
  1365. #ifdef CONFIG_BT_BLE_NOTIFY_PENDING
  1366. printk("\t Open ble notify pending\n");
  1367. #else
  1368. printk("\t Close ble notify pending\n");
  1369. #endif
  1370. printk("\t App enable adv %d\n", ble_info.ble_app_enable_adv);
  1371. if (ble_info.ble_conn) {
  1372. memset(addr, 0, 13);
  1373. bin2hex(ble_info.device_mac, 6, addr, 12);
  1374. printk("\t Ble connected MAC: %s sec %d\n", addr, hostif_bt_conn_get_security(ble_info.ble_conn));
  1375. printk("\t inv %d lat %d to %d\n", ble_info.le_conn_param.interval_min,
  1376. ble_info.le_conn_param.latency, ble_info.le_conn_param.timeout);
  1377. } else {
  1378. hostif_bt_le_get_adv_status(&adv_status);
  1379. if (adv_status) {
  1380. printk("\t Advertising speed %d interval %d\n", ble_info.ble_adv_speed, ble_adv_speed[ble_info.ble_adv_speed]);
  1381. } else {
  1382. printk("\t Advertising disable\n");
  1383. }
  1384. }
  1385. #ifdef CONFIG_BLE_MASTER
  1386. ble_master_dump_conn_info();
  1387. #endif
  1388. }
  1389. void bt_manager_set_security(void)
  1390. {
  1391. if (ble_info.ble_conn) {
  1392. printk("bt_manager_set_security\n");
  1393. if (hostif_bt_conn_get_security(ble_info.ble_conn) < BT_SECURITY_L2) {
  1394. if (hostif_bt_conn_set_security(ble_info.ble_conn, BT_SECURITY_L2)) {
  1395. printk("Failed to set security\n");
  1396. }
  1397. }
  1398. }
  1399. }