bt_manager_hid.c 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802
  1. /*
  2. * Copyright (c) 2019 Actions Semi Co., Inc.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief bt manager spp profile.
  9. */
  10. #define SYS_LOG_DOMAIN "bt manager"
  11. #include <os_common_api.h>
  12. #include <zephyr.h>
  13. #include <stdlib.h>
  14. #include <stdio.h>
  15. #include <string.h>
  16. #include <stream.h>
  17. #include <sys_event.h>
  18. #include <bt_manager.h>
  19. #include "bt_manager_inner.h"
  20. #include "btservice_api.h"
  21. #define HID_SDP_ATT_OPTION 0
  22. #define HID_MAX_REPORT (3)
  23. #define HID_CONNECTED_TIMEOUT 2000 /* 2000ms */
  24. enum {
  25. HID_STATE_IDLE,
  26. HID_STATE_WAIT_CONNECTED,
  27. HID_STATE_WAIT_DELAY_OPT,
  28. HID_STATE_WAIT_DISCONNECT,
  29. HID_STATE_FORCE_CONNECT,
  30. };
  31. struct report_info{
  32. uint8_t report_id;
  33. uint8_t type;
  34. uint16_t max_len;
  35. uint8_t last_report[64];
  36. uint16_t data_len;
  37. };
  38. struct btmgr_hid_info {
  39. uint8_t sub_cls; /* HID device subclass */
  40. struct report_info info[HID_MAX_REPORT];
  41. uint16_t disconnect_delay;
  42. uint16_t opt_delay;
  43. };
  44. static struct btmgr_hid_info mgr_hid_info;
  45. static OS_MUTEX_DEFINE(hid_mgr_lock);
  46. #if CONFIG_BT_PTS_TEST
  47. static const uint8_t hid_descriptor[] =
  48. {
  49. 0x05, 0x01, //USAGE_PAGE (Generic Desktop Controls)
  50. 0x09, 0x06, //USAGE (Keyboard)
  51. 0xa1, 0x01, //COLLECTION (Application (mouse, keyboard))
  52. 0x85, 0x01, //REPORT_ID (1)
  53. 0x75, 0x01, //report size(1)
  54. 0x95, 0x08, //report count(8)
  55. 0x05, 0x07, //usage page(Keyboard/Keypad )
  56. 0x19, 0xe0, //Usage Minimum
  57. 0x29, 0xe7, //Usage Maximum
  58. 0x15, 0x00, //Logical Minimum
  59. 0x25, 0x01, //Logical Maxiimum
  60. 0x81, 0x02, //Input()
  61. 0x75, 0x08, //report size()
  62. 0x95, 0x01, //report count()
  63. 0x91, 0x03, //Output
  64. 0x95, 0x03, //Report Count
  65. 0x75, 0x08, //report size
  66. 0x15, 0x00, //Logical Minimum
  67. 0x26, 0xff, 0x00, //Logical Maxiimum
  68. 0x05, 0x07, //usage page(Keyboard/Keypad )
  69. 0x19, 0x00, //Usage Minimum
  70. 0x29, 0xff, //usage Maximum
  71. 0x81, 0x00, //input()
  72. 0xc0, //END_COLLECTION
  73. 0x05, 0x0c, // USAGE_PAGE (Consumer)
  74. 0x09, 0x01, //USAGE (Consumer control)
  75. 0xa1, 0x01, //COLLECTION (Application (mouse, keyboard))
  76. 0x85, 0x02, //REPORT_ID (2)
  77. 0x15, 0x00, //Logical Minimum
  78. 0x25, 0x01, //Logical Maximum
  79. 0x75, 0x01, //Report size(1)
  80. 0x95, 0x08, //Report Count(8)
  81. 0x09, 0xea, //USAGE (volume down)
  82. 0x09, 0xe9, //USAGE (volume up)
  83. 0x09, 0xe2, //USAGE (mute)
  84. 0x09, 0xcd, //USAGE (play/pause)
  85. 0x09, 0xb6, //USAGE (scan previous track)
  86. 0x09, 0xb5, //USAGE (scan next track)
  87. 0x09, 0x83, //USAGE (fast forward)
  88. 0x09, 0xb4, //USAGE (rewind)
  89. 0x81, 0x02, //input(data, variable, absolute)
  90. 0xc0, //END_COLLECTION
  91. };
  92. #else
  93. static const uint8_t hid_descriptor[] =
  94. {
  95. 0x05, 0x01, //USAGE_PAGE (Generic Desktop Controls)
  96. 0x09, 0x02, //USAGE (Mouse)
  97. 0xa1, 0x01, //COLLECTION (Application (mouse, keyboard))
  98. 0x85, 0x01, //REPORT_ID (1)
  99. 0x75, 0x08, //report size()
  100. 0x95, 0x01, //report count()
  101. 0x91, 0x03, //Output
  102. 0xc0, //END_COLLECTION
  103. 0x05, 0x0c, // USAGE_PAGE (Consumer)
  104. 0x09, 0x01, //USAGE (Consumer control)
  105. 0xa1, 0x01, //COLLECTION (Application (mouse, keyboard))
  106. 0x85, 0x02, //REPORT_ID (2)
  107. 0x15, 0x00, //Logical Minimum
  108. 0x25, 0x01, //Logical Maximum
  109. 0x75, 0x01, //Report size(1)
  110. 0x95, 0x08, //Report Count(8)
  111. 0x09, 0xea, //USAGE (volume down)
  112. 0x09, 0xe9, //USAGE (volume up)
  113. 0x09, 0xe2, //USAGE (mute)
  114. 0x09, 0xcd, //USAGE (play/pause)
  115. 0x09, 0xb6, //USAGE (scan previous track)
  116. 0x09, 0xb5, //USAGE (scan next track)
  117. 0x09, 0x83, //USAGE (fast forward)
  118. 0x09, 0xb4, //USAGE (rewind)
  119. 0x81, 0x02, //input(data, variable, absolute)
  120. 0xc0, //END_COLLECTION
  121. };
  122. #endif
  123. /*
  124. Report id for hid key:
  125. report id hid key
  126. 1 0x09, 0xea, //USAGE (volume down)
  127. 2 0x09, 0xe9, //USAGE (volume up)
  128. 3 0x09, 0xe2, //USAGE (mute)
  129. 4 0x09, 0xcd, //USAGE (play/pause)
  130. 5 0x09, 0xb6, //USAGE (scan previous track)
  131. 6 0x09, 0xb5, //USAGE (scan next track)
  132. 7 0x09, 0x83, //USAGE (fast forward)
  133. 8 0x09, 0xb4, //USAGE (rewind)
  134. */
  135. static const struct bt_sdp_attribute hid_dev_attrs[] = {
  136. BT_SDP_NEW_RECORD_HANDLE,
  137. BT_SDP_LIST(
  138. BT_SDP_ATTR_SVCLASS_ID_LIST,
  139. BT_SDP_TYPE_SIZE_VAR(BT_SDP_SEQ8, 3),
  140. BT_SDP_DATA_ELEM_LIST_CONST(
  141. {
  142. BT_SDP_TYPE_SIZE(BT_SDP_UUID16),
  143. BT_SDP_ARRAY_16_CONST(BT_SDP_HID_SVCLASS)
  144. },
  145. )
  146. ),
  147. BT_SDP_LIST(
  148. BT_SDP_ATTR_PROTO_DESC_LIST,
  149. BT_SDP_TYPE_SIZE_VAR(BT_SDP_SEQ8, 13),
  150. BT_SDP_DATA_ELEM_LIST_CONST(
  151. {
  152. BT_SDP_TYPE_SIZE_VAR(BT_SDP_SEQ8, 6),
  153. BT_SDP_DATA_ELEM_LIST_CONST(
  154. {
  155. BT_SDP_TYPE_SIZE(BT_SDP_UUID16),
  156. BT_SDP_ARRAY_16_CONST(BT_SDP_PROTO_L2CAP)
  157. },
  158. {
  159. BT_SDP_TYPE_SIZE(BT_SDP_UINT16),
  160. BT_SDP_ARRAY_16_CONST(0x0011) /* HID-CONTROL */
  161. },
  162. )
  163. },
  164. {
  165. BT_SDP_TYPE_SIZE_VAR(BT_SDP_SEQ8, 3),
  166. BT_SDP_DATA_ELEM_LIST_CONST(
  167. {
  168. BT_SDP_TYPE_SIZE(BT_SDP_UUID16),
  169. BT_SDP_ARRAY_16_CONST(0x0011)
  170. },
  171. )
  172. },
  173. )
  174. ),
  175. BT_SDP_LIST(
  176. BT_SDP_ATTR_LANG_BASE_ATTR_ID_LIST,
  177. BT_SDP_TYPE_SIZE_VAR(BT_SDP_SEQ8, 9),
  178. BT_SDP_DATA_ELEM_LIST_CONST(
  179. {
  180. BT_SDP_TYPE_SIZE(BT_SDP_UINT16),
  181. BT_SDP_ARRAY_8_CONST('n', 'e')
  182. },
  183. {
  184. BT_SDP_TYPE_SIZE(BT_SDP_UINT16),
  185. BT_SDP_ARRAY_16_CONST(106)
  186. },
  187. {
  188. BT_SDP_TYPE_SIZE(BT_SDP_UINT16),
  189. BT_SDP_ARRAY_16_CONST(BT_SDP_PRIMARY_LANG_BASE)
  190. },
  191. )
  192. ),
  193. BT_SDP_LIST(
  194. BT_SDP_ATTR_PROFILE_DESC_LIST,
  195. BT_SDP_TYPE_SIZE_VAR(BT_SDP_SEQ8, 8),
  196. BT_SDP_DATA_ELEM_LIST_CONST(
  197. {
  198. BT_SDP_TYPE_SIZE_VAR(BT_SDP_SEQ8, 6),
  199. BT_SDP_DATA_ELEM_LIST_CONST(
  200. {
  201. BT_SDP_TYPE_SIZE(BT_SDP_UUID16),
  202. BT_SDP_ARRAY_16_CONST(BT_SDP_HID_SVCLASS)
  203. },
  204. {
  205. BT_SDP_TYPE_SIZE(BT_SDP_UINT16),
  206. BT_SDP_ARRAY_16_CONST(0x0101) /* Version 1.1 */
  207. },
  208. )
  209. },
  210. )
  211. ),
  212. BT_SDP_LIST(
  213. BT_SDP_ATTR_ADD_PROTO_DESC_LIST,
  214. BT_SDP_TYPE_SIZE_VAR(BT_SDP_SEQ8, 15),
  215. BT_SDP_DATA_ELEM_LIST_CONST(
  216. {
  217. BT_SDP_TYPE_SIZE_VAR(BT_SDP_SEQ8, 13),
  218. BT_SDP_DATA_ELEM_LIST_CONST(
  219. {
  220. BT_SDP_TYPE_SIZE_VAR(BT_SDP_SEQ8, 6),
  221. BT_SDP_DATA_ELEM_LIST_CONST(
  222. {
  223. BT_SDP_TYPE_SIZE(BT_SDP_UUID16),
  224. BT_SDP_ARRAY_16_CONST(BT_SDP_PROTO_L2CAP)
  225. },
  226. {
  227. BT_SDP_TYPE_SIZE(BT_SDP_UINT16),
  228. BT_SDP_ARRAY_16_CONST(0x0013) /* HID-INTERRUPT */
  229. },
  230. )
  231. },
  232. {
  233. BT_SDP_TYPE_SIZE_VAR(BT_SDP_SEQ8, 3),
  234. BT_SDP_DATA_ELEM_LIST_CONST(
  235. {
  236. BT_SDP_TYPE_SIZE(BT_SDP_UUID16),
  237. BT_SDP_ARRAY_16_CONST(0x0011)
  238. },
  239. )
  240. },
  241. )
  242. },
  243. )
  244. ),
  245. #if HID_SDP_ATT_OPTION
  246. BT_SDP_SERVICE_NAME("HID CONTROL"),
  247. #endif
  248. {
  249. BT_SDP_ATTR_HID_PARSER_VERSION,
  250. { BT_SDP_TYPE_SIZE(BT_SDP_UINT16), BT_SDP_ARRAY_16_CONST(0x0111) }
  251. },
  252. {
  253. BT_SDP_ATTR_HID_DEVICE_SUBCLASS,
  254. { BT_SDP_TYPE_SIZE(BT_SDP_UINT8), &mgr_hid_info.sub_cls }
  255. },
  256. {
  257. BT_SDP_ATTR_HID_COUNTRY_CODE,
  258. { BT_SDP_TYPE_SIZE(BT_SDP_UINT8), BT_SDP_ARRAY_16_CONST(0x21) }
  259. },
  260. {
  261. BT_SDP_ATTR_HID_VIRTUAL_CABLE,
  262. { BT_SDP_TYPE_SIZE(BT_SDP_BOOL), BT_SDP_ARRAY_8_CONST(0x1) }
  263. },
  264. {
  265. BT_SDP_ATTR_HID_RECONNECT_INITIATE,
  266. { BT_SDP_TYPE_SIZE(BT_SDP_BOOL), BT_SDP_ARRAY_8_CONST(0x1) }
  267. },
  268. BT_SDP_LIST(
  269. BT_SDP_ATTR_HID_DESCRIPTOR_LIST,
  270. BT_SDP_TYPE_SIZE_VAR(BT_SDP_SEQ16, sizeof(hid_descriptor) + 8),
  271. BT_SDP_DATA_ELEM_LIST_CONST(
  272. {
  273. BT_SDP_TYPE_SIZE_VAR(BT_SDP_SEQ16, sizeof(hid_descriptor) + 5),
  274. BT_SDP_DATA_ELEM_LIST_CONST(
  275. {
  276. BT_SDP_TYPE_SIZE(BT_SDP_UINT8),
  277. BT_SDP_ARRAY_8_CONST(0x22),
  278. },
  279. {
  280. BT_SDP_TYPE_SIZE_VAR(BT_SDP_TEXT_STR16,sizeof(hid_descriptor)),
  281. hid_descriptor,
  282. },
  283. ),
  284. },
  285. )
  286. ),
  287. BT_SDP_LIST(
  288. BT_SDP_ATTR_HID_LANG_ID_BASE_LIST,
  289. BT_SDP_TYPE_SIZE_VAR(BT_SDP_SEQ8, 8),
  290. BT_SDP_DATA_ELEM_LIST_CONST(
  291. {
  292. BT_SDP_TYPE_SIZE_VAR(BT_SDP_SEQ8, 6),
  293. BT_SDP_DATA_ELEM_LIST_CONST(
  294. {
  295. BT_SDP_TYPE_SIZE(BT_SDP_UINT16),
  296. BT_SDP_ARRAY_16_CONST(0x409),
  297. },
  298. {
  299. BT_SDP_TYPE_SIZE(BT_SDP_UINT16),
  300. BT_SDP_ARRAY_16_CONST(0x100),
  301. },
  302. ),
  303. },
  304. )
  305. ),
  306. {
  307. BT_SDP_ATTR_HID_BOOT_DEVICE,
  308. { BT_SDP_TYPE_SIZE(BT_SDP_BOOL), BT_SDP_ARRAY_8_CONST(0x0) }
  309. },
  310. {
  311. BT_SDP_ATTR_HID_SUPERVISION_TIMEOUT,
  312. { BT_SDP_TYPE_SIZE(BT_SDP_UINT16), BT_SDP_ARRAY_16_CONST(5000) }
  313. },
  314. {
  315. BT_SDP_ATTR_HID_MAX_LATENCY,
  316. { BT_SDP_TYPE_SIZE(BT_SDP_UINT16), BT_SDP_ARRAY_16_CONST(240) }
  317. },
  318. {
  319. BT_SDP_ATTR_HID_MIN_LATENCY,
  320. { BT_SDP_TYPE_SIZE(BT_SDP_UINT16), BT_SDP_ARRAY_16_CONST(0x0) }
  321. },
  322. };
  323. static struct report_info *bt_manager_hid_find_id(int report_id)
  324. {
  325. int i;
  326. struct report_info *info = NULL;
  327. for (i = 0; i < HID_MAX_REPORT; i++) {
  328. if (mgr_hid_info.info[i].report_id == report_id) {
  329. info = &mgr_hid_info.info[i];
  330. break;
  331. }
  332. }
  333. return info;
  334. }
  335. static struct report_info *bt_manager_hid_find(int report_id, int type)
  336. {
  337. int i;
  338. struct report_info *info = NULL;
  339. for (i = 0; i < HID_MAX_REPORT; i++) {
  340. if(mgr_hid_info.info[i].report_id == report_id
  341. && mgr_hid_info.info[i].type == type){
  342. info = &mgr_hid_info.info[i];
  343. break;
  344. }
  345. }
  346. return info;
  347. }
  348. int bt_manager_hid_register_sdp()
  349. {
  350. memset(&mgr_hid_info,0,sizeof(struct btmgr_hid_info));
  351. mgr_hid_info.sub_cls = 0xc0;
  352. mgr_hid_info.info[0].report_id = 1;
  353. mgr_hid_info.info[0].type = BTSRV_HID_REP_TYPE_INPUT;
  354. mgr_hid_info.info[0].data_len = 5;
  355. mgr_hid_info.info[0].last_report[0]= mgr_hid_info.info[0].report_id;
  356. mgr_hid_info.info[1].report_id = 1;
  357. mgr_hid_info.info[1].type = BTSRV_HID_REP_TYPE_OUTPUT;
  358. mgr_hid_info.info[1].data_len = 2;
  359. mgr_hid_info.info[1].last_report[0]= mgr_hid_info.info[1].report_id;
  360. mgr_hid_info.info[2].report_id = 2;
  361. mgr_hid_info.info[2].type = BTSRV_HID_REP_TYPE_INPUT;
  362. mgr_hid_info.info[2].data_len = 2;
  363. mgr_hid_info.info[2].last_report[0]= mgr_hid_info.info[2].report_id;
  364. int ret = btif_hid_register_sdp((struct bt_sdp_attribute *)hid_dev_attrs, ARRAY_SIZE(hid_dev_attrs));
  365. if (ret) {
  366. SYS_LOG_INF("Failed %d\n", ret);
  367. }
  368. return ret;
  369. }
  370. static struct bt_device_id_info device_id;
  371. int bt_manager_did_register_sdp()
  372. {
  373. memset(&device_id,0,sizeof(struct bt_device_id_info));
  374. device_id.id_source = 2;//usb
  375. device_id.product_id = 0xb009;
  376. device_id.vendor_id = 0x10d6;//actions
  377. int ret = btif_did_register_sdp((uint8_t*)&device_id,sizeof(struct bt_device_id_info));
  378. if (ret) {
  379. SYS_LOG_INF("Failed %d\n", ret);
  380. }
  381. return ret;
  382. }
  383. int bt_manager_hid_send_ctrl_data(uint16_t hdl, uint8_t report_type, uint8_t *data, uint32_t len)
  384. {
  385. uint16_t send_hdl;
  386. if (hdl) {
  387. send_hdl = hdl;
  388. } else {
  389. send_hdl = btif_br_get_active_phone_hdl();
  390. }
  391. return btif_hid_send_ctrl_data(send_hdl, report_type, data, len);
  392. }
  393. int bt_manager_hid_send_intr_data(uint16_t hdl, uint8_t report_type, uint8_t *data, uint32_t len)
  394. {
  395. uint16_t send_hdl;
  396. uint8_t report_id = data[0];
  397. struct report_info * info = bt_manager_hid_find(report_id, report_type);
  398. if (info && len == info->data_len) {
  399. if (hdl) {
  400. send_hdl = hdl;
  401. } else {
  402. send_hdl = btif_br_get_active_phone_hdl();
  403. }
  404. memcpy(info->last_report, data, len);
  405. return btif_hid_send_intr_data(send_hdl, report_type, data, len);
  406. } else {
  407. SYS_LOG_INF("Format error %p %d != %d", info, len, (info ? info->data_len : 0));
  408. return -EINVAL;
  409. }
  410. }
  411. static uint8_t bt_manager_hid_check_report(uint16_t hdl, void *packet, int size, bool get)
  412. {
  413. struct bt_hid_report *report;
  414. struct report_info *info;
  415. int report_id;
  416. if (!bt_manager_config_pts_test()) {
  417. return BTSRV_HID_HANDSHAKE_RSP_SUCCESS;
  418. }
  419. report = (struct bt_hid_report*)packet;
  420. SYS_LOG_INF("report %d %d %d %d\n", report->report_type, report->has_size, report->reserved, report->len);
  421. if (report->reserved) {
  422. return BTSRV_HID_HANDSHAKE_RSP_ERR_INVALID_REP_ID;
  423. }
  424. if (report->has_size && (report->len < 3)) {
  425. return BTSRV_HID_HANDSHAKE_RSP_ERR_INVALID_PARAM;
  426. }
  427. report_id = report->data[0];
  428. info = bt_manager_hid_find(report_id, report->report_type);
  429. if (info) {
  430. if (!get) {
  431. if ((report->report_type == BTSRV_HID_REP_TYPE_INPUT) &&
  432. (report_id == 1) && (report->len < 3)) {
  433. return BTSRV_HID_HANDSHAKE_RSP_ERR_INVALID_PARAM;
  434. }
  435. }
  436. return BTSRV_HID_HANDSHAKE_RSP_SUCCESS;
  437. } else {
  438. if (bt_manager_hid_find_id(report_id)) {
  439. return BTSRV_HID_HANDSHAKE_RSP_ERR_INVALID_PARAM;
  440. } else {
  441. return BTSRV_HID_HANDSHAKE_RSP_ERR_INVALID_REP_ID;
  442. }
  443. }
  444. }
  445. static void bt_manager_hid_report_opt(uint16_t hdl, void *packet, int size, bool get)
  446. {
  447. struct bt_hid_report *report;
  448. struct report_info *info;
  449. int report_id;
  450. uint8_t ret;
  451. os_mutex_lock(&hid_mgr_lock, OS_FOREVER);
  452. ret = bt_manager_hid_check_report(hdl, packet, size, get);
  453. if (ret) {
  454. btif_hid_send_rsp(hdl, ret);
  455. os_mutex_unlock(&hid_mgr_lock);
  456. return;
  457. }
  458. report = (struct bt_hid_report*)packet;
  459. report_id = report->data[0];
  460. info = bt_manager_hid_find(report_id, report->report_type);
  461. if (info) {
  462. if (get) {
  463. if (report->has_size) {
  464. info->max_len = *(uint16_t*)&(report->data[1]);
  465. } else {
  466. info->max_len = info->data_len;
  467. }
  468. bt_manager_hid_send_ctrl_data(hdl, info->type, info->last_report, info->max_len);
  469. } else {
  470. memcpy(info->last_report, report->data, report->len);
  471. btif_hid_send_rsp(hdl, BTSRV_HID_HANDSHAKE_RSP_SUCCESS);
  472. }
  473. } else {
  474. btif_hid_send_rsp(hdl, BTSRV_HID_HANDSHAKE_RSP_ERR_INVALID_REP_ID);
  475. }
  476. os_mutex_unlock(&hid_mgr_lock);
  477. }
  478. static void bt_manager_hid_status_reset(uint16_t hdl)
  479. {
  480. struct bt_mgr_dev_info *info;
  481. SYS_LOG_INF("");
  482. os_mutex_lock(&hid_mgr_lock, OS_FOREVER);
  483. info = bt_mgr_find_dev_info_by_hdl(hdl);
  484. if (!info) {
  485. os_mutex_unlock(&hid_mgr_lock);
  486. return;
  487. }
  488. info->hid_state = HID_STATE_IDLE;
  489. os_mutex_unlock(&hid_mgr_lock);
  490. return;
  491. }
  492. static void bt_manager_hid_callback(uint16_t hdl, btsrv_hid_event_e event, void *packet, int size)
  493. {
  494. switch(event){
  495. case BTSRV_HID_GET_REPORT:
  496. SYS_LOG_INF("GET_REPORT");
  497. bt_manager_hid_report_opt(hdl, packet, size, true);
  498. break;
  499. case BTSRV_HID_SET_REPORT:
  500. SYS_LOG_INF("SET_REPORT");
  501. bt_manager_hid_report_opt(hdl, packet, size, false);
  502. break;
  503. case BTSRV_HID_GET_PROTOCOL:
  504. SYS_LOG_INF("GET_PROTOCOL");
  505. btif_hid_send_rsp(hdl, BTSRV_HID_HANDSHAKE_RSP_ERR_UNSUPPORTED_REQ);
  506. break;
  507. case BTSRV_HID_SET_PROTOCOL:
  508. SYS_LOG_INF("SET_PROTOCOL");
  509. btif_hid_send_rsp(hdl, BTSRV_HID_HANDSHAKE_RSP_ERR_UNSUPPORTED_REQ);
  510. break;
  511. case BTSRV_HID_INTR_DATA:
  512. SYS_LOG_INF("DATA");
  513. break;
  514. case BTSRV_HID_UNPLUG:
  515. SYS_LOG_INF("UNPLUG");
  516. break;
  517. case BTSRV_HID_SUSPEND:
  518. SYS_LOG_INF("SUSPEND");
  519. break;
  520. case BTSRV_HID_EXIT_SUSPEND:
  521. SYS_LOG_INF("EXIT SUSPEND");
  522. break;
  523. case BTSRV_HID_DISCONNECTED:
  524. SYS_LOG_INF("DISCONNECTED");
  525. bt_manager_hid_status_reset(hdl);
  526. break;
  527. default:
  528. break;
  529. }
  530. }
  531. static void btmgr_hid_send_hid_key(uint16_t hdl, uint8_t report_id)
  532. {
  533. uint8_t tmp_data[2];
  534. SYS_LOG_INF("Hid report id 0x%x", report_id);
  535. memset(tmp_data, 0, sizeof(tmp_data));
  536. /* report id */
  537. tmp_data[0] = report_id;
  538. /* push */
  539. tmp_data[1] = 0x01<<1;
  540. bt_manager_hid_send_intr_data(hdl, BTSRV_HID_REP_TYPE_INPUT, tmp_data, 2);
  541. /* release */
  542. tmp_data[1] = 0x00;
  543. bt_manager_hid_send_intr_data(hdl, BTSRV_HID_REP_TYPE_INPUT, tmp_data, 2);
  544. }
  545. void bt_manager_hid_delay_work(os_work *work)
  546. {
  547. os_mutex_lock(&hid_mgr_lock, OS_FOREVER);
  548. struct bt_mgr_dev_info *info = CONTAINER_OF(work, struct bt_mgr_dev_info, hid_delay_work);
  549. SYS_LOG_INF("Hid state %d connected %d", info->hid_state, info->hid_connected);
  550. if (bt_manager_config_pts_test()) {
  551. os_mutex_unlock(&hid_mgr_lock);
  552. return;
  553. }
  554. if (!info->hid_connected) {
  555. if (info->hid_state == HID_STATE_WAIT_CONNECTED) {
  556. /* Hid connect timeout */
  557. info->hid_state = HID_STATE_IDLE;
  558. }
  559. os_mutex_unlock(&hid_mgr_lock);
  560. return;
  561. }
  562. switch (info->hid_state) {
  563. case HID_STATE_IDLE:
  564. case HID_STATE_FORCE_CONNECT:
  565. info->hid_state = HID_STATE_IDLE;
  566. break;
  567. case HID_STATE_WAIT_CONNECTED:
  568. info->hid_state = HID_STATE_IDLE;
  569. break;
  570. case HID_STATE_WAIT_DELAY_OPT:
  571. btmgr_hid_send_hid_key(info->hdl, info->hid_report_id);
  572. info->hid_state = HID_STATE_WAIT_DISCONNECT;
  573. os_delayed_work_submit(&info->hid_delay_work, mgr_hid_info.disconnect_delay);
  574. break;
  575. case HID_STATE_WAIT_DISCONNECT:
  576. btif_hid_disconnect(info->hdl);
  577. info->hid_state = HID_STATE_IDLE;
  578. break;
  579. }
  580. os_mutex_unlock(&hid_mgr_lock);
  581. }
  582. void bt_manager_hid_connected_check_work(uint16_t hdl)
  583. {
  584. os_mutex_lock(&hid_mgr_lock, OS_FOREVER);
  585. struct bt_mgr_dev_info *info = bt_mgr_find_dev_info_by_hdl(hdl);
  586. if (!info) {
  587. SYS_LOG_ERR("is not connected?");
  588. os_mutex_unlock(&hid_mgr_lock);
  589. return;
  590. }
  591. if (info->hid_state == HID_STATE_FORCE_CONNECT) {
  592. info->hid_state = HID_STATE_IDLE;
  593. os_delayed_work_cancel(&info->hid_delay_work);
  594. os_mutex_unlock(&hid_mgr_lock);
  595. return;
  596. }
  597. if (info->hid_state == HID_STATE_WAIT_CONNECTED) {
  598. info->hid_state = HID_STATE_WAIT_DELAY_OPT;
  599. os_delayed_work_submit(&info->hid_delay_work, mgr_hid_info.opt_delay);
  600. } else {
  601. info->hid_state = HID_STATE_WAIT_DISCONNECT;
  602. os_delayed_work_submit(&info->hid_delay_work, mgr_hid_info.disconnect_delay);
  603. }
  604. os_mutex_unlock(&hid_mgr_lock);
  605. }
  606. static int bt_manager_hid_send_report_id(uint8_t report_id)
  607. {
  608. struct bt_mgr_dev_info *info;
  609. uint16_t hdl;
  610. SYS_LOG_INF("");
  611. //if (bt_manager_tws_get_dev_role() == BTSRV_TWS_SLAVE) {
  612. // bt_manager_tws_send_message(TWS_BT_MGR_EVENT, TWS_EVENT_BT_HID_SEND_KEY, &report_id, sizeof(report_id));
  613. // return 0;
  614. //}
  615. os_mutex_lock(&hid_mgr_lock, OS_FOREVER);
  616. hdl = btif_br_get_active_phone_hdl();
  617. if (!hdl) {
  618. os_mutex_unlock(&hid_mgr_lock);
  619. return 0;
  620. }
  621. info = bt_mgr_find_dev_info_by_hdl(hdl);
  622. if (!info) {
  623. os_mutex_unlock(&hid_mgr_lock);
  624. return 0;
  625. }
  626. if (info->hid_connected) {
  627. btmgr_hid_send_hid_key(hdl, report_id);
  628. info->hid_state = HID_STATE_WAIT_DISCONNECT;
  629. os_delayed_work_submit(&info->hid_delay_work, mgr_hid_info.disconnect_delay);
  630. //bt_manager_sys_event_notify(SYS_EVENT_HID_PHOTO_SHOT);
  631. } else if (info->hid_state == HID_STATE_IDLE) {
  632. btif_hid_connect(info->hdl);
  633. info->hid_report_id = report_id;
  634. info->hid_state = HID_STATE_WAIT_CONNECTED;
  635. os_delayed_work_submit(&info->hid_delay_work, HID_CONNECTED_TIMEOUT);
  636. }
  637. os_mutex_unlock(&hid_mgr_lock);
  638. return 0;
  639. }
  640. int bt_manager_hid_take_photo(void)
  641. {
  642. return bt_manager_hid_send_report_id(0x02); /* 0x09, 0xe9, //USAGE (volume up) */
  643. }
  644. int bt_manager_hid_send_key(uint8_t report_id)
  645. {
  646. return bt_manager_hid_send_report_id(report_id);
  647. }
  648. int bt_manager_hid_profile_start(uint16_t disconnect_delay, uint16_t opt_delay)
  649. {
  650. mgr_hid_info.disconnect_delay = disconnect_delay;
  651. mgr_hid_info.opt_delay = opt_delay;
  652. return btif_hid_start(&bt_manager_hid_callback);
  653. }
  654. int bt_manager_hid_profile_stop(void)
  655. {
  656. return btif_hid_stop();
  657. }
  658. int bt_manager_hid_reconnect(void)
  659. {
  660. struct bt_mgr_dev_info *info;
  661. uint16_t hdl;
  662. SYS_LOG_INF("");
  663. os_mutex_lock(&hid_mgr_lock, OS_FOREVER);
  664. hdl = btif_br_get_active_phone_hdl();
  665. if (!hdl) {
  666. os_mutex_unlock(&hid_mgr_lock);
  667. return 0;
  668. }
  669. info = bt_mgr_find_dev_info_by_hdl(hdl);
  670. if (!info) {
  671. os_mutex_unlock(&hid_mgr_lock);
  672. return 0;
  673. }
  674. if (info->hid_connected) {
  675. SYS_LOG_INF("hid connected.");
  676. os_mutex_unlock(&hid_mgr_lock);
  677. return 0;
  678. } else if (info->hid_state == HID_STATE_IDLE) {
  679. btif_hid_connect(info->hdl);
  680. info->hid_state = HID_STATE_FORCE_CONNECT;
  681. os_delayed_work_submit(&info->hid_delay_work, HID_CONNECTED_TIMEOUT);
  682. }
  683. os_mutex_unlock(&hid_mgr_lock);
  684. return 0;
  685. }
  686. int bt_manager_hid_disconnect(void)
  687. {
  688. struct bt_mgr_dev_info *info;
  689. uint16_t hdl;
  690. SYS_LOG_INF("");
  691. os_mutex_lock(&hid_mgr_lock, OS_FOREVER);
  692. hdl = btif_br_get_active_phone_hdl();
  693. if (!hdl) {
  694. return 0;
  695. }
  696. info = bt_mgr_find_dev_info_by_hdl(hdl);
  697. if (!info) {
  698. os_mutex_unlock(&hid_mgr_lock);
  699. return 0;
  700. }
  701. if (!info->hid_connected) {
  702. SYS_LOG_INF("hid disconnected.");
  703. os_mutex_unlock(&hid_mgr_lock);
  704. return 0;
  705. } else if (info->hid_state == HID_STATE_IDLE) {
  706. btif_hid_disconnect(info->hdl);
  707. }
  708. os_mutex_unlock(&hid_mgr_lock);
  709. return 0;
  710. }