btservice_api.h 34 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304
  1. /*
  2. * Copyright (c) 2018 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @defgroup bt service APIs
  8. * @ingroup bluetooth_system_apis
  9. * @brief Just for bt manager used, not for application.
  10. * @{
  11. * @}
  12. */
  13. /**
  14. * @cond INTERNAL_HIDDEN
  15. */
  16. /**
  17. * @file bt service interface
  18. */
  19. #ifndef _BTSERVICE_API_H_
  20. #define _BTSERVICE_API_H_
  21. #include <stream.h>
  22. #include <btservice_base.h>
  23. #include <btservice_tws_api.h>
  24. #include <acts_bluetooth/sdp.h>
  25. enum {
  26. CONTROLER_ROLE_MASTER,
  27. CONTROLER_ROLE_SLAVE,
  28. };
  29. /** btsrv auto conn mode */
  30. enum btsrv_auto_conn_mode_e {
  31. /** btsrv auto connet device alternate */
  32. BTSRV_AUTOCONN_ALTERNATE,
  33. /** btsrv auto connect by device order */
  34. BTSRV_AUTOCONN_ORDER,
  35. };
  36. enum btsrv_disconnect_mode_e {
  37. /** Disconnect all device */
  38. BTSRV_DISCONNECT_ALL_MODE,
  39. /** Just disconnect all phone */
  40. BTSRV_DISCONNECT_PHONE_MODE,
  41. /** Just disconnect tws */
  42. BTSRV_DISCONNECT_TWS_MODE,
  43. /** Just disconnect trs */
  44. BTSRV_DISCONNECT_TRS_MODE,
  45. };
  46. enum btsrv_device_type_e {
  47. /** all device */
  48. BTSRV_DEVICE_ALL = 0,
  49. /** Just phone device*/
  50. BTSRV_DEVICE_PHONE = 1,
  51. /** Just tws device*/
  52. BTSRV_DEVICE_TWS = 2,
  53. /** Just player device*/
  54. BTSRV_DEVICE_PLAYER = 3, /* For BT_A2DP_TRS, value = 3, can't change */
  55. };
  56. /** BR inquiry/page scan parameter */
  57. struct bt_scan_parameter {
  58. uint8_t tws_limit_inquiry:1; /* 0: Normal inquiry, 1: limit inquiry */
  59. uint8_t idle_extend_windown:1; /* 0: Normal inquiry/page windown in ilde, 1: extend windown */
  60. uint16_t inquiry_interval;
  61. uint16_t inquiry_windown;
  62. uint16_t page_interval;
  63. uint16_t page_windown;
  64. };
  65. /** device auto connect info */
  66. struct autoconn_info {
  67. /** bluetooth device address */
  68. bd_address_t addr;
  69. /** bluetooth device address valid flag*/
  70. uint8_t addr_valid:1;
  71. /** bluetooth device tws role */
  72. uint8_t tws_role:3;
  73. /** bluetooth device need connect a2dp */
  74. uint8_t a2dp:1;
  75. /** bluetooth device need connect avrcp */
  76. uint8_t avrcp:1;
  77. /** bluetooth device need connect hfp */
  78. uint8_t hfp:1;
  79. /** bluetooth connect hfp first */
  80. uint8_t hfp_first:1;
  81. /** bluetooth device need connect hid */
  82. uint8_t hid:1;
  83. /** bluetooth device type */
  84. uint8_t trs_mode:1;
  85. };
  86. struct btsrv_config_info {
  87. /** Max br connect device number */
  88. uint8_t max_conn_num:4;
  89. /** Max br phone device number */
  90. uint8_t max_phone_num:4;
  91. /** Set pts test mode */
  92. uint8_t pts_test_mode:1;
  93. /** Set pts test mode */
  94. uint8_t double_preemption_mode:1;
  95. /** delay time for volume sync */
  96. uint16_t volume_sync_delay_ms;
  97. /** Tws version */
  98. uint8_t tws_version;
  99. /** Tws feature */
  100. uint32_t tws_feature;
  101. };
  102. /** auto connect info */
  103. struct bt_set_autoconn {
  104. bd_address_t addr;
  105. uint8_t strategy;
  106. uint8_t base_try;
  107. uint8_t profile_try;
  108. uint16_t base_interval;
  109. uint16_t profile_interval;
  110. uint8_t trs_mode;
  111. /* For active connect device without auto connect info and not trs device */
  112. uint8_t force_connect:1; /* Connect acl or profile, when acl connected, connect profile */
  113. uint8_t connect_hfp:1;
  114. uint8_t connect_a2dp:1;
  115. uint8_t connect_avrcp:1;
  116. uint8_t connect_hfp_first:1;
  117. };
  118. struct bt_linkkey_info {
  119. bd_address_t addr;
  120. uint8_t linkkey[16];
  121. };
  122. #ifdef CONFIG_BT_A2DP_TRS
  123. struct bt_trs_list_dev_t {
  124. bd_address_t addr;
  125. uint8_t name[33];
  126. uint8_t valid;
  127. };
  128. #endif
  129. enum {
  130. BT_LINK_EV_ACL_CONNECT_REQ,
  131. BT_LINK_EV_ACL_CONNECTED,
  132. BT_LINK_EV_ACL_DISCONNECTED,
  133. BT_LINK_EV_GET_NAME,
  134. BT_LINK_EV_HF_CONNECTED,
  135. BT_LINK_EV_HF_DISCONNECTED,
  136. BT_LINK_EV_A2DP_CONNECTED,
  137. BT_LINK_EV_A2DP_DISCONNECTED,
  138. BT_LINK_EV_AVRCP_CONNECTED,
  139. BT_LINK_EV_AVRCP_DISCONNECTED,
  140. BT_LINK_EV_SPP_CONNECTED,
  141. BT_LINK_EV_SPP_DISCONNECTED,
  142. BT_LINK_EV_HID_CONNECTED,
  143. BT_LINK_EV_HID_DISCONNECTED,
  144. BT_LINK_EV_PASSKEY_DISPLAY,
  145. };
  146. struct bt_link_cb_param {
  147. uint8_t link_event;
  148. uint8_t is_tws:1;
  149. uint8_t is_trs:1;
  150. uint8_t new_dev:1;
  151. uint8_t reason;
  152. uint16_t hdl;
  153. bd_address_t *addr;
  154. uint8_t *name;
  155. uint32_t passkey;
  156. };
  157. struct bt_connected_cb_param {
  158. uint8_t acl_connected:1; /* Just BR acl connected */
  159. bd_address_t *addr;
  160. uint8_t *name;
  161. };
  162. struct bt_disconnected_cb_param {
  163. uint8_t acl_disconnected:1; /* BR acl disconnected */
  164. bd_address_t addr;
  165. uint8_t reason;
  166. };
  167. /** bt device disconnect info */
  168. struct bt_disconnect_reason {
  169. /** bt device addr */
  170. bd_address_t addr;
  171. /** bt device disconnected reason */
  172. uint8_t reason;
  173. /** bt device tws role */
  174. uint8_t tws_role;
  175. };
  176. /* Bt device rdm state */
  177. struct bt_dev_rdm_state {
  178. bd_address_t addr;
  179. uint8_t acl_connected:1;
  180. uint8_t hfp_connected:1;
  181. uint8_t a2dp_connected:1;
  182. uint8_t avrcp_connected:1;
  183. uint8_t hid_connected:1;
  184. uint8_t sco_connected:1;
  185. uint8_t a2dp_stream_started:1;
  186. };
  187. struct btsrv_discover_result {
  188. uint8_t discover_finish:1;
  189. bd_address_t addr;
  190. int8_t rssi;
  191. uint8_t len;
  192. uint8_t *name;
  193. uint8_t cod[3]; /** Class of Device */
  194. uint16_t device_id[4];
  195. };
  196. typedef void (*btsrv_discover_result_cb)(void *result);
  197. struct btsrv_discover_param {
  198. /** Maximum length of the discovery in units of 1.28 seconds. Valid range is 0x01 - 0x30. */
  199. uint8_t length;
  200. /** 0: Unlimited number of responses, Maximum number of responses. */
  201. uint8_t num_responses;
  202. /** Result callback function */
  203. btsrv_discover_result_cb cb;
  204. };
  205. struct btsrv_check_device_role_s {
  206. bd_address_t addr;
  207. uint8_t len;
  208. uint8_t *name;
  209. };
  210. struct bt_get_rssi_result{
  211. int8_t status;
  212. int8_t rssi;
  213. };
  214. typedef void (*btsrv_get_rssi_result_cb)(struct bt_get_rssi_result * result);
  215. struct bt_get_rssi_param {
  216. bd_address_t addr;
  217. btsrv_get_rssi_result_cb cb;
  218. };
  219. struct bt_br_resolve_param {
  220. uint8_t br_connected:1;
  221. bd_address_t addr;
  222. };
  223. /*=============================================================================
  224. * global api
  225. *===========================================================================*/
  226. /** Callbacks to report Bluetooth service's events*/
  227. typedef enum {
  228. /** notifying that Bluetooth service has been started err, zero on success or (negative) error code otherwise*/
  229. BTSRV_READY,
  230. /** notifying link event */
  231. BTSRV_LINK_EVENT,
  232. /** notifying remote device disconnected mac with reason */
  233. BTSRV_DISCONNECTED_REASON,
  234. /** Request high cpu performace */
  235. BTSRV_REQ_HIGH_PERFORMANCE,
  236. /** Release high cpu performace */
  237. BTSRV_RELEASE_HIGH_PERFORMANCE,
  238. /** Request flush property to nvram */
  239. BTSRV_REQ_FLUSH_PROPERTY,
  240. /** CHECK device is phone or tws */
  241. BTSRV_CHECK_NEW_DEVICE_ROLE,
  242. BTSRV_PAIR_PASSKEY_DISPLAY,
  243. BTSRV_PAIRING_COMPLETE,
  244. BTSRV_PAIRING_FAIL,
  245. /** Return resolve br address */
  246. BTSRV_BR_RESOLVE_ADDR,
  247. } btsrv_event_e;
  248. /**
  249. * @brief btsrv callback
  250. *
  251. * This routine is btsrv callback, this callback context is in bt service
  252. *
  253. * @param event btsrv event
  254. * @param param param of btsrv event
  255. *
  256. * @return N/A
  257. */
  258. typedef int (*btsrv_callback)(btsrv_event_e event, void *param);
  259. /**
  260. * @brief Rgister base processer
  261. *
  262. * @return 0 excute successed , others failed
  263. */
  264. int btif_base_register_processer(void);
  265. /**
  266. * @brief start bt service
  267. *
  268. * This routine start bt service.
  269. *
  270. * @param cb handle of btsrv event callback
  271. * @param classOfDevice clase of device
  272. * @param did device ID
  273. *
  274. * @return 0 excute successed , others failed
  275. */
  276. int btif_start(btsrv_callback cb, uint32_t classOfDevice, uint16_t *did);
  277. /**
  278. * @brief stop bt service
  279. *
  280. * This routine stop bt service.
  281. *
  282. * @return 0 excute successed , others failed
  283. */
  284. int btif_stop(void);
  285. /**
  286. * @brief set base config info to bt service
  287. *
  288. * This routine set base config info to bt service.
  289. *
  290. * @return 0 excute successed , others failed
  291. */
  292. int btif_base_set_config_info(void *param);
  293. /**
  294. * @brief Get bluetooth wake lock
  295. *
  296. * This routine get bluetooth wake lock.
  297. *
  298. * @return 0: idle can sleep, other: busy can't sleep.
  299. */
  300. int btif_base_get_wake_lock(void);
  301. /**
  302. * @brief set br scan parameter
  303. *
  304. * This routine set br scan parameter.
  305. *
  306. * @param param parameter
  307. * @enhance_param: true enhance param, false: default param
  308. *
  309. * @return 0 excute successed , others failed
  310. */
  311. int btif_br_set_scan_param(const struct bt_scan_parameter *param, bool enhance_param);
  312. /**
  313. * @brief set br discoverable
  314. *
  315. * This routine set br discoverable.
  316. *
  317. * @param enable true enable discoverable, false disable discoverable
  318. *
  319. * @return 0 excute successed , others failed
  320. */
  321. int btif_br_set_discoverable(bool enable);
  322. /**
  323. * @brief set br connnectable
  324. *
  325. * This routine set br connnectable.
  326. *
  327. * @param enable true enable connnectable, false disable connnectable
  328. *
  329. * @return 0 excute successed , others failed
  330. */
  331. int btif_br_set_connnectable(bool enable);
  332. /**
  333. * @brief allow br sco connnectable
  334. *
  335. * This routine disable br sco connect or not.
  336. *
  337. * @param enable true enable, false disable
  338. *
  339. * @return 0 excute successed , others failed
  340. */
  341. int btif_br_allow_sco_connect(bool allowed);
  342. /**
  343. * @brief Start br disover
  344. *
  345. * This routine Start br disover.
  346. *
  347. * @param disover parameter
  348. *
  349. * @return 0 excute successed , others failed
  350. */
  351. int btif_br_start_discover(struct btsrv_discover_param *param);
  352. /**
  353. * @brief Stop br disover
  354. *
  355. * This routine Stop br disover.
  356. *
  357. * @return 0 excute successed , others failed
  358. */
  359. int btif_br_stop_discover(void);
  360. /**
  361. * @brief Remote name request
  362. *
  363. * This routine Request remote device name.
  364. *
  365. * @param addr Device address
  366. * @param cb Result callback function
  367. *
  368. * @return 0 excute successed , others failed
  369. */
  370. int btif_br_remote_name_req(bd_address_t *addr, bt_br_remote_name_cb_t cb);
  371. /**
  372. * @brief connect to target bluetooth device
  373. *
  374. * This routine connect to target bluetooth device with bluetooth mac addr.
  375. *
  376. * @param bd bluetooth addr of target bluetooth device
  377. * Mac low address store in low memory address
  378. *
  379. * @return 0 excute successed , others failed
  380. */
  381. int btif_br_connect(bd_address_t *bd);
  382. /**
  383. * @brief disconnect to target bluetooth device
  384. *
  385. * This routine disconnect to target bluetooth device with bluetooth mac addr.
  386. *
  387. * @param bd bluetooth addr of target bluetooth device
  388. * Mac low address store in low memory address
  389. *
  390. * @return 0 excute successed , others failed
  391. */
  392. int btif_br_disconnect(bd_address_t *bd);
  393. /**
  394. * @brief get auto reconnect info from bt service
  395. *
  396. * This routine get auto reconnect info from bt service.
  397. *
  398. * @param info pointer store the audo reconnect info
  399. * @param max_cnt max number of bluetooth device
  400. *
  401. * @return 0 excute successed , others failed
  402. */
  403. int btif_br_get_auto_reconnect_info(struct autoconn_info *info, uint8_t max_cnt);
  404. /**
  405. * @brief set auto reconnect info from bt service
  406. *
  407. * This routine set auto reconnect info from bt service.
  408. *
  409. * @param info pointer store the audo reconnect info
  410. * @param max_cnt max number of bluetooth device
  411. */
  412. void btif_br_set_auto_reconnect_info(struct autoconn_info *info, uint8_t max_cnt);
  413. /**
  414. * @brief auto reconnect to all need reconnect device
  415. *
  416. * This routine auto reconnect to all need reconnect device
  417. *
  418. * @param param auto reconnect info
  419. *
  420. * @return 0 excute successed , others failed
  421. */
  422. int btif_br_auto_reconnect(struct bt_set_autoconn *param);
  423. /**
  424. * @brief stop auto reconnect
  425. *
  426. * This routine stop auto reconnect
  427. *
  428. * @return 0 excute successed , others failed
  429. */
  430. int btif_br_auto_reconnect_stop(void);
  431. /**
  432. * @brief check auto reconnect is runing
  433. *
  434. * This routine check auto reconnect is runing
  435. *
  436. * @return ture: runing; false stop;
  437. */
  438. bool btif_br_is_auto_reconnect_runing(void);
  439. /**
  440. * @brief clear br connected info list
  441. *
  442. * This routine clear br connected info list, will disconnected all connnected device first.
  443. *
  444. * @return 0 excute successed , others failed
  445. */
  446. int btif_br_clear_list(int mode);
  447. /**
  448. * @brief disconnect all connected device
  449. *
  450. * This routine disconnect all connected device.
  451. * @param: disconnect_mode
  452. *
  453. * @return 0 excute successed , others failed
  454. */
  455. int btif_br_disconnect_device(int disconnect_mode);
  456. /**
  457. * @brief get br connected device number
  458. *
  459. * This routine get connected device number.
  460. *
  461. * @return connected device number(include phone and tws device)
  462. */
  463. int btif_br_get_connected_device_num(void);
  464. /**
  465. * @brief get br device state from rdm
  466. *
  467. * This routine get device state from rdm.
  468. *
  469. * @return 0 successed, others failed.
  470. */
  471. int btif_br_get_dev_rdm_state(struct bt_dev_rdm_state *state);
  472. /**
  473. * @brief set phone controler role
  474. *
  475. * This routine get device state from rdm.
  476. */
  477. void btif_br_set_phone_controler_role(bd_address_t *bd, uint8_t role);
  478. /**
  479. * @brief bt get address linkkey
  480. *
  481. * This routine get address linkkey.
  482. * @param addr Address.
  483. * @param linkkey NULL or uint8_t buf[16].
  484. *
  485. * @return int Number of linkkey returen.
  486. */
  487. int btif_br_get_addr_linkkey(bd_address_t *addr, uint8_t *linkkey);
  488. /**
  489. * @brief Get linkkey information
  490. *
  491. * This routine Get linkkey information.
  492. * @param info for store get linkkey information
  493. * @param cnt want to get linkkey number
  494. *
  495. * return int number of linkkey getted
  496. */
  497. int btif_br_get_linkkey(struct bt_linkkey_info *info, uint8_t cnt);
  498. /**
  499. * @brief Update linkkey information
  500. *
  501. * This routine Update linkkey information.
  502. * @param info for update linkkey information
  503. * @param cnt update linkkey number
  504. *
  505. * return int 0: update successful, other update failed.
  506. */
  507. int btif_br_update_linkkey(struct bt_linkkey_info *info, uint8_t cnt);
  508. /**
  509. * @brief Writ original linkkey information
  510. *
  511. * This routine Writ original linkkey information.
  512. * @param addr update device mac address
  513. * @param link_key original linkkey
  514. *
  515. * return 0: successfull, other: failed.
  516. */
  517. int btif_br_write_ori_linkkey(bd_address_t *addr, uint8_t *link_key);
  518. /**
  519. * @brief clean bt service linkkey from nvram
  520. *
  521. * This routine clean bt service linkkey from nvram.
  522. */
  523. void btif_br_clean_linkkey(bd_address_t *addr);
  524. int btif_br_get_connected_device_rssi(struct bt_get_rssi_param *param);
  525. int btif_br_get_actived_device_rssi(int8_t *rssi);
  526. uint16_t btif_br_get_active_phone_hdl(void);
  527. int btif_bt_set_apll_temp_comp(uint8_t enable);
  528. int btif_bt_do_apll_temp_comp(void);
  529. /**
  530. * @brief pts test send hfp command
  531. *
  532. * This routine pts test send hfp command
  533. *
  534. * @return 0 successed, others failed.
  535. */
  536. int btif_pts_send_hfp_cmd(char *cmd);
  537. /**
  538. * @brief pts test hfp active connect sco
  539. *
  540. * This routine pts test hfp active connect sco
  541. *
  542. * @return 0 successed, others failed.
  543. */
  544. int btif_pts_hfp_active_connect_sco(void);
  545. int btif_pts_a2dp_set_err_code(uint8_t err_code);
  546. int btif_pts_avrcp_pass_through_cmd(uint8_t opid);
  547. int btif_pts_avrcp_notify_volume_change(uint8_t volume);
  548. int btif_pts_avrcp_reg_notify_volume_change(void);
  549. int btif_pts_register_auth_cb(bool reg_auth);
  550. int btif_pts_set_class_of_device(uint32_t classOfDevice);
  551. /**
  552. * @brief dump bt srv info
  553. *
  554. * This routine dump bt srv info.
  555. *
  556. * @return 0 excute successed , others failed
  557. */
  558. int btif_dump_brsrv_info(void);
  559. /*=============================================================================
  560. * a2dp service api
  561. *===========================================================================*/
  562. /** Callbacks to report a2dp profile events*/
  563. typedef enum {
  564. /** notifying that a2dp connected*/
  565. BTSRV_A2DP_CONNECTED,
  566. /** notifying that a2dp disconnected */
  567. BTSRV_A2DP_DISCONNECTED,
  568. /** notifying that a2dp stream opened */
  569. BTSRV_A2DP_STREAM_OPENED,
  570. /** notifying that a2dp stream closed*/
  571. BTSRV_A2DP_STREAM_CLOSED,
  572. /** notifying that a2dp stream started */
  573. BTSRV_A2DP_STREAM_STARED,
  574. /** notifying that a2dp stream suspend */
  575. BTSRV_A2DP_STREAM_SUSPEND,
  576. /** notifying that a2dp stream data indicated */
  577. BTSRV_A2DP_DATA_INDICATED,
  578. /** notifying that a2dp codec info */
  579. BTSRV_A2DP_CODEC_INFO,
  580. /** notifying that a2dp actived device change*/
  581. BTSRV_A2DP_ACTIVED_DEV_CHANGED,
  582. /** Get initialize delay report */
  583. BTSRV_A2DP_GET_INIT_DELAY_REPORT,
  584. } btsrv_a2dp_event_e;
  585. /**
  586. * @brief callback of bt service a2dp profile
  587. *
  588. * This routine callback of bt service a2dp profile.
  589. *
  590. * @param event id of bt service a2dp event
  591. * @param packet param of btservice a2dp event
  592. * @param size length of param
  593. *
  594. * @return N/A
  595. */
  596. typedef void (*btsrv_a2dp_callback)(btsrv_a2dp_event_e event, void *packet, int size);
  597. typedef void (*btsrv_a2dp_hdl_callback)(uint16_t hdl, btsrv_a2dp_event_e event, void *packet, int size);
  598. struct btsrv_a2dp_start_param {
  599. btsrv_a2dp_hdl_callback cb;
  600. uint8_t *sbc_codec;
  601. uint8_t *aac_codec;
  602. uint8_t sbc_endpoint_num;
  603. uint8_t aac_endpoint_num;
  604. uint8_t a2dp_cp_scms_t:1; /* Support content protection SCMS-T */
  605. uint8_t a2dp_delay_report:1; /* Support delay report */
  606. #ifdef CONFIG_BT_A2DP_TRS
  607. uint8_t *trs_sbc_codec;
  608. uint8_t trs_sbc_endpoint_num;
  609. btsrv_a2dp_callback trs_cb;
  610. #endif
  611. };
  612. /**
  613. * @brief Rgister a2dp processer
  614. *
  615. * @return 0 excute successed , others failed
  616. */
  617. int btif_a2dp_register_processer(void);
  618. /**
  619. * @brief start bt service a2dp profile
  620. *
  621. * This routine start bt service a2dp profile.
  622. *
  623. * @param cbs handle of btsrv event callback
  624. *
  625. * @return 0 excute successed , others failed
  626. */
  627. int btif_a2dp_start(struct btsrv_a2dp_start_param *param);
  628. /**
  629. * @brief stop bt service a2dp profile
  630. *
  631. * This routine stop bt service a2dp profile.
  632. *
  633. * @return 0 excute successed , others failed
  634. */
  635. int btif_a2dp_stop(void);
  636. /**
  637. * @brief disable bt service a2dp/avrcp profile
  638. *
  639. * This routine disable bt service a2dp/avrcp profile.
  640. *
  641. * @return 0 excute successed , others failed
  642. */
  643. int btif_a2dp_disable(void);
  644. /**
  645. * @brief enable bt service a2dp/avrcp profile
  646. *
  647. * This routine enable bt service a2dp/avrcp profile.
  648. *
  649. * @return 0 excute successed , others failed
  650. */
  651. int btif_a2dp_enable(void);
  652. /**
  653. * @brief connect target device a2dp profile
  654. *
  655. * This routine connect target device a2dp profile.
  656. *
  657. * @param is_src mark as a2dp source or a2dp sink
  658. * @param bd bt address of target device
  659. *
  660. * @return 0 excute successed , others failed
  661. */
  662. int btif_a2dp_connect(bool is_src, bd_address_t *bd);
  663. /**
  664. * @brief disconnect target device a2dp profile
  665. *
  666. * This routine disconnect target device a2dp profile.
  667. *
  668. * @param bd bt address of target device
  669. *
  670. * @return 0 excute successed , others failed
  671. */
  672. int btif_a2dp_disconnect(bd_address_t *bd);
  673. /**
  674. * @brief trigger start bt service a2dp profile
  675. *
  676. * This routine use by app to check a2dp playback
  677. * state,if state is playback ,trigger start event
  678. *
  679. * @return 0 excute successed , others failed
  680. */
  681. int btif_a2dp_check_state(void);
  682. /**
  683. * @brief Send delay report to a2dp active phone
  684. *
  685. * This routine Send delay report to a2dp active phone
  686. *
  687. * @param delay_time delay time (unit: 1/10 milliseconds)
  688. *
  689. * @return 0 excute successed , others failed
  690. */
  691. int btif_a2dp_send_delay_report(uint16_t delay_time);
  692. /**
  693. * @brief Get a2d0 active mac address
  694. *
  695. * @param addr active a2dp device mac address
  696. */
  697. void btif_a2dp_get_active_mac(bd_address_t *addr);
  698. /*=============================================================================
  699. * avrcp service api
  700. *===========================================================================*/
  701. struct bt_attribute_info{
  702. uint32_t id;
  703. uint16_t character_id;
  704. uint16_t len;
  705. uint8_t* data;
  706. }__packed;
  707. #define BT_TOTAL_ATTRIBUTE_ITEM_NUM 5
  708. struct bt_id3_info{
  709. struct bt_attribute_info item[BT_TOTAL_ATTRIBUTE_ITEM_NUM];
  710. }__packed;
  711. /** avrcp controller cmd*/
  712. typedef enum {
  713. BTSRV_AVRCP_CMD_PLAY,
  714. BTSRV_AVRCP_CMD_PAUSE,
  715. BTSRV_AVRCP_CMD_STOP,
  716. BTSRV_AVRCP_CMD_FORWARD,
  717. BTSRV_AVRCP_CMD_BACKWARD,
  718. BTSRV_AVRCP_CMD_VOLUMEUP,
  719. BTSRV_AVRCP_CMD_VOLUMEDOWN,
  720. BTSRV_AVRCP_CMD_MUTE,
  721. BTSRV_AVRCP_CMD_FAST_FORWARD_START,
  722. BTSRV_AVRCP_CMD_FAST_FORWARD_STOP,
  723. BTSRV_AVRCP_CMD_FAST_BACKWARD_START,
  724. BTSRV_AVRCP_CMD_FAST_BACKWARD_STOP,
  725. BTSRV_AVRCP_CMD_REPEAT_SINGLE,
  726. BTSRV_AVRCP_CMD_REPEAT_ALL_TRACK,
  727. BTSRV_AVRCP_CMD_REPEAT_OFF,
  728. BTSRV_AVRCP_CMD_SHUFFLE_ON,
  729. BTSRV_AVRCP_CMD_SHUFFLE_OFF
  730. } btsrv_avrcp_cmd_e;
  731. /** Callbacks to report avrcp profile events*/
  732. typedef enum {
  733. /** notifying that avrcp connected */
  734. BTSRV_AVRCP_CONNECTED,
  735. /** notifying that avrcp disconnected*/
  736. BTSRV_AVRCP_DISCONNECTED,
  737. /** notifying that avrcp stoped */
  738. BTSRV_AVRCP_STOPED,
  739. /** notifying that avrcp paused */
  740. BTSRV_AVRCP_PAUSED,
  741. /** notifying that avrcp playing */
  742. BTSRV_AVRCP_PLAYING,
  743. /** notifying cur id3 info */
  744. BTSRV_AVRCP_UPDATE_ID3_INFO,
  745. /** notifying cur track change */
  746. BTSRV_AVRCP_TRACK_CHANGE,
  747. /** notifying cur playback position */
  748. BTSRV_AVRCP_PLAYBACK_POS,
  749. } btsrv_avrcp_event_e;
  750. typedef void (*btsrv_avrcp_callback)(uint16_t hdl, btsrv_avrcp_event_e event , void* param);
  751. typedef void (*btsrv_avrcp_get_volume_callback)(uint16_t hdl, uint8_t *volume);
  752. typedef void (*btsrv_avrcp_set_volume_callback)(uint16_t hdl, uint8_t volume);
  753. typedef void (*btsrv_avrcp_get_batt_callback)(uint16_t hdl, uint8_t *batt);
  754. typedef void (*btsrv_avrcp_pass_ctrl_hdl_callback)(uint16_t hdl, uint8_t cmd, uint8_t state);
  755. typedef void (*btsrv_avrcp_pass_ctrl_callback)(void *param, uint8_t cmd, uint8_t state);
  756. typedef struct {
  757. btsrv_avrcp_callback event_cb;
  758. btsrv_avrcp_get_volume_callback get_volume_cb;
  759. btsrv_avrcp_set_volume_callback set_volume_cb;
  760. btsrv_avrcp_get_batt_callback get_batt_cb;
  761. btsrv_avrcp_pass_ctrl_hdl_callback pass_ctrl_cb;
  762. #ifdef CONFIG_BT_A2DP_TRS
  763. btsrv_avrcp_pass_ctrl_callback trs_pass_ctrl_cb;
  764. btsrv_avrcp_set_volume_callback trs_set_volume_cb;
  765. #endif
  766. } btsrv_avrcp_callback_t;
  767. /**
  768. * @brief Rgister avrcp processer
  769. *
  770. * @return 0 excute successed , others failed
  771. */
  772. int btif_avrcp_register_processer(void);
  773. int btif_avrcp_start(btsrv_avrcp_callback_t *cbs);
  774. int btif_avrcp_stop(void);
  775. int btif_avrcp_connect(bd_address_t *bd);
  776. int btif_avrcp_disconnect(bd_address_t *bd);
  777. int btif_avrcp_send_command(int command);
  778. int btif_avrcp_sync_vol(uint32_t volume);
  779. int btif_avrcp_get_id3_info();
  780. bool btif_avrcp_is_support_get_playback_pos();
  781. int btif_avrcp_get_playback_pos();
  782. int btif_avrcp_set_absolute_volume(uint8_t dev_type, uint8_t *data, uint8_t len);
  783. int btif_avrcp_get_play_status(void);
  784. /*=============================================================================
  785. * hfp hf service api
  786. *===========================================================================*/
  787. /** Callbacks to report avrcp profile events*/
  788. typedef enum {
  789. /** notifying that hfp connected */
  790. BTSRV_HFP_CONNECTED,
  791. /** notifying that hfp disconnected*/
  792. BTSRV_HFP_DISCONNECTED,
  793. /** notifying that hfp codec info*/
  794. BTSRV_HFP_CODEC_INFO,
  795. /** notifying that hfp phone number*/
  796. BTSRV_HFP_PHONE_NUM,
  797. /** notifying that hfp phone number stop report*/
  798. BTSRV_HFP_PHONE_NUM_STOP,
  799. /** notifying that hfp in coming call*/
  800. BTSRV_HFP_CALL_INCOMING,
  801. /** notifying that hfp call out going*/
  802. BTSRV_HFP_CALL_OUTGOING,
  803. /** notifying that hfp ccwa phone number*/
  804. BTSRV_HFP_CCWA_PHONE_NUM,
  805. BTSRV_HFP_CALL_3WAYIN,
  806. /** notifying that hfp call ongoing*/
  807. BTSRV_HFP_CALL_ONGOING,
  808. BTSRV_HFP_CALL_MULTIPARTY,
  809. BTSRV_HFP_CALL_ALERTED,
  810. BTSRV_HFP_CALL_EXIT,
  811. BTSRV_HFP_VOLUME_CHANGE,
  812. BTSRV_HFP_ACTIVE_DEV_CHANGE,
  813. BTSRV_HFP_SIRI_STATE_CHANGE,
  814. BTSRV_HFP_SCO,
  815. /** notifying that sco connected*/
  816. BTSRV_SCO_CONNECTED,
  817. /** notifying that sco disconnected*/
  818. BTSRV_SCO_DISCONNECTED,
  819. /** notifying that data indicatied*/
  820. BTSRV_SCO_DATA_INDICATED,
  821. /** update time from phone*/
  822. BTSRV_HFP_TIME_UPDATE,
  823. /** update cgmi from phone*/
  824. BTSRV_HFP_CLCC_INFO,
  825. /** at cmd from hf*/
  826. BTSRV_HFP_AT_CMD,
  827. /** update cgmi from phone*/
  828. BTSRV_HFP_CGMI_UPDATE,
  829. /** notifying that sco rejected*/
  830. BTSRV_HFP_SCO_REJECTED,
  831. /** notifying that hfp phone number*/
  832. BTSRV_HFP_PHONE_NAME,
  833. /** enable battery high precision report*/
  834. BTSRV_HFP_BATTERY_HPREC,
  835. } btsrv_hfp_event_e;
  836. typedef enum {
  837. BTSRV_HFP_STATE_INIT,
  838. BTSRV_HFP_STATE_LINKED,
  839. BTSRV_HFP_STATE_CALL_INCOMING,
  840. BTSRV_HFP_STATE_CALL_OUTCOMING,
  841. BTSRV_HFP_STATE_CALL_ALERTED,
  842. BTSRV_HFP_STATE_CALL_ONGOING,
  843. BTSRV_HFP_STATE_CALL_3WAYIN,
  844. BTSRV_HFP_STATE_CALL_MULTIPARTY,
  845. BTSRV_HFP_STATE_SCO_ESTABLISHED,
  846. BTSRV_HFP_STATE_SCO_RELEASED,
  847. BTSRV_HFP_STATE_CALL_EXITED,
  848. BTSRV_HFP_STATE_CALL_SETUP_EXITED,
  849. BTSRV_HFP_STATE_CALL_HELD,
  850. BTSRV_HFP_STATE_CALL_MULTIPARTY_HELD,
  851. BTSRV_HFP_STATE_CALL_HELD_EXITED,
  852. } btsrv_hfp_state;
  853. enum {
  854. BTSRV_HFP_SIRI_CHANGE_DEACTIVE,
  855. BTSRV_HFP_SIRI_CHANGE_ACTIVE,
  856. BTSRV_HFP_SIRI_CHANGE_START,
  857. };
  858. struct btsrv_hfp_clcc_info {
  859. struct bt_conn *conn;
  860. uint32_t idx;
  861. uint32_t dir;
  862. uint32_t status;
  863. uint32_t mode;
  864. uint32_t mpty;
  865. uint8_t number[24];
  866. };
  867. typedef void (*btsrv_hfp_callback)(btsrv_hfp_event_e event, uint8_t *param, int param_size);
  868. int btif_hfp_register_processer(void);
  869. int btif_hfp_start(btsrv_hfp_callback cb);
  870. int btif_hfp_stop(void);
  871. int btif_hfp_hf_dial_number(uint8_t *number);
  872. int btif_hfp_hf_dial_last_number(void);
  873. int btif_hfp_hf_dial_memory(int location);
  874. int btif_hfp_hf_volume_control(uint8_t type, uint8_t volume);
  875. int btif_hfp_hf_battery_report(uint8_t mode, uint8_t bat_val);
  876. int btif_hfp_hf_battery_hprec_report(uint8_t bat_val);
  877. int btif_hfp_hf_accept_call(void);
  878. int btif_hfp_hf_reject_call(void);
  879. int btif_hfp_hf_hangup_call(void);
  880. int btif_hfp_hf_hangup_another_call(void);
  881. int btif_hfp_hf_holdcur_answer_call(void);
  882. int btif_hfp_hf_hangupcur_answer_call(void);
  883. int btif_hfp_hf_voice_recognition_start(void);
  884. int btif_hfp_hf_voice_recognition_stop(void);
  885. int btif_hfp_hf_send_at_command(uint8_t *command,uint8_t active_call);
  886. int btif_hfp_hf_switch_sound_source(void);
  887. int btif_hfp_hf_get_call_state(uint8_t active_call,uint8_t *call_state);
  888. int btif_hfp_hf_get_time(void);
  889. void btif_hfp_get_active_mac(bd_address_t *addr);
  890. bool btif_hfp_active_phone_service_ready(void);
  891. io_stream_t sco_upload_stream_create(uint8_t hfp_codec_id);
  892. typedef void (*btsrv_sco_callback)(btsrv_hfp_event_e event, uint8_t *param, int param_size);
  893. int btif_sco_start(btsrv_sco_callback cb);
  894. int btif_sco_stop(void);
  895. /*=============================================================================
  896. * hfp ag service api
  897. *===========================================================================*/
  898. enum btsrv_hfp_hf_ag_indicators {
  899. BTSRV_HFP_AG_SERVICE_IND,
  900. BTSRV_HFP_AG_CALL_IND,
  901. BTSRV_HFP_AG_CALL_SETUP_IND,
  902. BTSRV_HFP_AG_CALL_HELD_IND,
  903. BTSRV_HFP_AG_SINGNAL_IND,
  904. BTSRV_HFP_AG_ROAM_IND,
  905. BTSRV_HFP_AG_BATTERY_IND,
  906. BTSRV_HFP_AG_MAX_IND,
  907. };
  908. typedef void (*btsrv_hfp_ag_callback)(btsrv_hfp_event_e event, uint8_t *param, int param_size);
  909. int btif_hfp_ag_register_processer(void);
  910. int btif_hfp_ag_start(btsrv_hfp_ag_callback cb);
  911. int btif_hfp_ag_stop(void);
  912. int btif_hfp_ag_update_indicator(enum btsrv_hfp_hf_ag_indicators index, uint8_t value);
  913. int btif_hfp_ag_send_event(uint8_t *event, uint16_t len);
  914. /*=============================================================================
  915. * spp service api
  916. *===========================================================================*/
  917. #define SPP_UUID_LEN 16
  918. /** Callbacks to report spp profile events*/
  919. typedef enum {
  920. /** notifying that spp register failed */
  921. BTSRV_SPP_REGISTER_FAILED,
  922. /** notifying that spp connect failed */
  923. BTSRV_SPP_REGISTER_SUCCESS,
  924. /** notifying that spp connect failed */
  925. BTSRV_SPP_CONNECT_FAILED,
  926. /** notifying that spp connected*/
  927. BTSRV_SPP_CONNECTED,
  928. /** notifying that spp disconnected */
  929. BTSRV_SPP_DISCONNECTED,
  930. /** notifying that spp stream data indicated */
  931. BTSRV_SPP_DATA_INDICATED,
  932. } btsrv_spp_event_e;
  933. typedef void (*btsrv_spp_callback)(btsrv_spp_event_e event, uint8_t app_id, void *packet, int size);
  934. struct bt_spp_reg_param {
  935. uint8_t app_id;
  936. uint8_t *uuid;
  937. };
  938. struct bt_spp_connect_param {
  939. uint8_t app_id;
  940. bd_address_t bd;
  941. uint8_t *uuid;
  942. };
  943. int btif_spp_register_processer(void);
  944. int btif_spp_reg(struct bt_spp_reg_param *param);
  945. int btif_spp_send_data(uint8_t app_id, uint8_t *data, uint32_t len);
  946. int btif_spp_connect(struct bt_spp_connect_param *param);
  947. int btif_spp_disconnect(uint8_t app_id);
  948. int btif_spp_start(btsrv_spp_callback cb);
  949. int btif_spp_stop(void);
  950. /*=============================================================================
  951. * PBAP service api
  952. *===========================================================================*/
  953. typedef struct parse_vcard_result pbap_vcard_result_t;
  954. typedef enum {
  955. /** notifying that pbap connect failed*/
  956. BTSRV_PBAP_CONNECT_FAILED,
  957. /** notifying that pbap connected*/
  958. BTSRV_PBAP_CONNECTED,
  959. /** notifying that pbap disconnected */
  960. BTSRV_PBAP_DISCONNECTED,
  961. /** notifying that pbap max size */
  962. BTSRV_PBAP_MAX_SIZE,
  963. /** notifying that pbap vcard result */
  964. BTSRV_PBAP_SETPATH_FINISH,
  965. /** notifying that pbap vcard result */
  966. BTSRV_PBAP_VCARD_RESULT,
  967. /** notifying that pbap vcard result */
  968. BTSRV_PBAP_SEARCH_RESULT,
  969. /** notifying that pbap get vcard or search finish */
  970. BTSRV_PBAP_GET_VCARD_FINISH,
  971. /** notifying that pbap vcard end */
  972. BTSRV_PBAP_END_OF_BODY,
  973. /** notifying that pbap abort finish */
  974. BTSRV_PBAP_ABORT_FINISH,
  975. } btsrv_pbap_event_e;
  976. enum {
  977. BTSRV_PBAP_OP_CMD_CONNECT,
  978. BTSRV_PBAP_OP_CMD_DISCONNECT,
  979. BTSRV_PBAP_OP_CMD_GET_SIZE,
  980. BTSRV_PBAP_OP_CMD_GET_PB,
  981. BTSRV_PBAP_OP_CMD_SET_PATH,
  982. BTSRV_PBAP_OP_CMD_GET_VCARD,
  983. BTSRV_PBAP_OP_CMD_GET_CONTINUE,
  984. BTSRV_PBAP_OP_CMD_LISTING,
  985. BTSRV_PBAP_OP_CMD_ABORT,
  986. };
  987. typedef void (*btsrv_pbap_callback)(btsrv_pbap_event_e event, uint8_t app_id, void *data, uint8_t size);
  988. struct bt_pbap_op_param {
  989. uint8_t cmd;
  990. uint8_t app_id;
  991. union {
  992. struct {
  993. char *pb_path;
  994. uint32_t pb_filter;
  995. };
  996. struct {
  997. uint8_t vcard_name_len;
  998. uint8_t vcard_name[20];
  999. uint32_t vc_filter;
  1000. };
  1001. struct {
  1002. bd_address_t bd;
  1003. btsrv_pbap_callback cb;
  1004. };
  1005. struct {
  1006. uint8_t order:4;
  1007. uint8_t search_attr:4;
  1008. uint8_t search_len;
  1009. uint8_t search_value[20];
  1010. };
  1011. };
  1012. };
  1013. int btif_pbap_register_processer(void);
  1014. int btif_pbap_cmd_op(struct bt_pbap_op_param *param);
  1015. /*=============================================================================
  1016. * MAP service api
  1017. *===========================================================================*/
  1018. typedef enum {
  1019. /** notifying that pbap connect failed*/
  1020. BTSRV_MAP_CONNECT_FAILED,
  1021. /** notifying that pbap connected*/
  1022. BTSRV_MAP_CONNECTED,
  1023. /** notifying that pbap disconnected */
  1024. BTSRV_MAP_DISCONNECTED,
  1025. /** notifying that pbap disconnected */
  1026. BTSRV_MAP_SET_PATH_FINISHED,
  1027. BTSRV_MAP_MESSAGES_RESULT,
  1028. } btsrv_map_event_e;
  1029. typedef void (*btsrv_map_callback)(btsrv_map_event_e event, uint8_t app_id, void *data, uint8_t size);
  1030. struct bt_map_connect_param {
  1031. bd_address_t bd;
  1032. uint8_t app_id;
  1033. char *map_path;
  1034. btsrv_map_callback cb;
  1035. };
  1036. struct bt_map_get_param {
  1037. bd_address_t bd;
  1038. uint8_t app_id;
  1039. char *map_path;
  1040. btsrv_map_callback cb;
  1041. };
  1042. struct bt_map_set_folder_param {
  1043. uint8_t app_id;
  1044. uint8_t flags;
  1045. char *map_path;
  1046. };
  1047. struct bt_map_get_messages_listing_param {
  1048. uint8_t app_id;
  1049. uint8_t reserved;
  1050. uint16_t max_list_count;
  1051. uint32_t parameter_mask;
  1052. };
  1053. int btif_map_client_connect(struct bt_map_connect_param *param);
  1054. int btif_map_get_message(struct bt_map_get_param *param);
  1055. int btif_map_get_messages_listing(struct bt_map_get_messages_listing_param *param);
  1056. int btif_map_get_folder_listing(uint8_t app_id);
  1057. int btif_map_abort_get(uint8_t app_id);
  1058. int btif_map_client_disconnect(uint8_t app_id);
  1059. int btif_map_client_set_folder(struct bt_map_set_folder_param *param);
  1060. int btif_map_register_processer(void);
  1061. /*=============================================================================
  1062. * hid service api
  1063. *===========================================================================*/
  1064. struct bt_device_id_info{
  1065. uint16_t vendor_id;
  1066. uint16_t product_id;
  1067. uint16_t id_source;
  1068. };
  1069. /* Different report types in get, set, data
  1070. */
  1071. enum {
  1072. BTSRV_HID_REP_TYPE_OTHER=0,
  1073. BTSRV_HID_REP_TYPE_INPUT,
  1074. BTSRV_HID_REP_TYPE_OUTPUT,
  1075. BTSRV_HID_REP_TYPE_FEATURE,
  1076. };
  1077. /* Parameters for Handshake
  1078. */
  1079. enum {
  1080. BTSRV_HID_HANDSHAKE_RSP_SUCCESS = 0,
  1081. BTSRV_HID_HANDSHAKE_RSP_NOT_READY,
  1082. BTSRV_HID_HANDSHAKE_RSP_ERR_INVALID_REP_ID,
  1083. BTSRV_HID_HANDSHAKE_RSP_ERR_UNSUPPORTED_REQ,
  1084. BTSRV_HID_HANDSHAKE_RSP_ERR_INVALID_PARAM,
  1085. BTSRV_HID_HANDSHAKE_RSP_ERR_UNKNOWN = 14,
  1086. BTSRV_HID_HANDSHAKE_RSP_ERR_FATAL,
  1087. };
  1088. #define BT_HID_REPORT_DATA_LEN 64
  1089. struct bt_hid_report {
  1090. uint16_t hdl;
  1091. uint8_t report_type;
  1092. uint8_t has_size:1;
  1093. uint8_t reserved:3;
  1094. uint8_t data[BT_HID_REPORT_DATA_LEN];
  1095. int len;
  1096. };
  1097. /** Callbacks to report hid profile events*/
  1098. typedef enum {
  1099. /** notifying that hid connected*/
  1100. BTSRV_HID_CONNECTED,
  1101. /** notifying that hid disconnected */
  1102. BTSRV_HID_DISCONNECTED,
  1103. /** notifying hid get reprot data */
  1104. BTSRV_HID_GET_REPORT,
  1105. /** notifying hid set reprot data */
  1106. BTSRV_HID_SET_REPORT,
  1107. /** notifying hid get protocol data */
  1108. BTSRV_HID_GET_PROTOCOL,
  1109. /** notifying hid set protocol data */
  1110. BTSRV_HID_SET_PROTOCOL,
  1111. /** notifying hid intr data */
  1112. BTSRV_HID_INTR_DATA,
  1113. /** notifying hid unplug */
  1114. BTSRV_HID_UNPLUG,
  1115. /** notifying hid suspend */
  1116. BTSRV_HID_SUSPEND,
  1117. /** notifying hid exit suspend */
  1118. BTSRV_HID_EXIT_SUSPEND,
  1119. } btsrv_hid_event_e;
  1120. typedef void (*btsrv_hid_callback)(uint16_t hdl, btsrv_hid_event_e event, void *packet, int size);
  1121. int btif_hid_register_processer(void);
  1122. int btif_did_register_sdp(uint8_t *data, uint32_t len);
  1123. int btif_hid_register_sdp(struct bt_sdp_attribute * hid_attrs,uint8_t attrs_size);
  1124. int btif_hid_send_ctrl_data(uint16_t hdl, uint8_t report_type,uint8_t *data, uint32_t len);
  1125. int btif_hid_send_intr_data(uint16_t hdl, uint8_t report_type,uint8_t *data, uint32_t len);
  1126. int btif_hid_send_rsp(uint16_t hdl, uint8_t status);
  1127. int btif_hid_connect(uint16_t hdl);
  1128. int btif_hid_disconnect(uint16_t hdl);
  1129. int btif_hid_start(btsrv_hid_callback cb);
  1130. int btif_hid_stop(void);
  1131. /*=============================================================================
  1132. * pnp info service api
  1133. *===========================================================================*/
  1134. /** Callbacks to report pnp info events*/
  1135. typedef enum {
  1136. /** vendor id get*/
  1137. BTSRV_PNP_VENDOR_ID,
  1138. /** producr id get*/
  1139. BTSRV_PNP_PRODUCT_ID,
  1140. } btsrv_pnp_info_event_e;
  1141. typedef void (*btsrv_pnp_info_callback)(btsrv_pnp_info_event_e event, void *param, int param_size);
  1142. int btif_pnp_info_register_processer(void);
  1143. int btif_pnp_info_search_start(btsrv_pnp_info_callback cb);
  1144. int btif_pnp_info_search_stop(void);
  1145. #ifdef CONFIG_BT_A2DP_TRS
  1146. int btif_br_get_trs_list_info(struct bt_trs_list_dev_t *info, uint8_t max_cnt);
  1147. int btif_br_clean_trs_dev_info(bd_address_t *bd);
  1148. #endif
  1149. /**
  1150. * INTERNAL_HIDDEN @endcond
  1151. */
  1152. #endif