bt_drv.h 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. /*
  2. * Copyright (c) 2020 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief Public API for BT driver
  9. */
  10. #ifndef __BT_DRV_H__
  11. #define __BT_DRV_H__
  12. #define HCI_CMD 0x01
  13. #define HCI_ACL 0x02
  14. #define HCI_SCO 0x03
  15. #define HCI_EVT 0x04
  16. #define HCI_ISO 0x05
  17. #define HCI_CMD_HDR_SIZE 3
  18. #define HCI_ACL_HDR_SIZE 4
  19. #define HCI_SCO_HDR_SIZE 3
  20. #define HCI_EVT_HDR_SIZE 2
  21. #define HCI_ISO_HDR_SIZE 4
  22. #define HCI_L2CAP_HEAD_SIZE 4
  23. #define BT_ACL_HDL_FLAG_START 0x02
  24. #define L2CAP_BR_MAX_MTU_A2DP_AAC 895 /* Value same as define in L2cap.h */
  25. #ifdef CONFIG_BT_RX_BUF_LEN
  26. #define BT_MAX_RX_ACL_LEN CONFIG_BT_RX_BUF_LEN
  27. #else
  28. #define BT_MAX_RX_ACL_LEN 0
  29. #endif
  30. #define BT_TWS_0 0
  31. #define BT_TWS_1 1
  32. #define BT_INFO_SHARE_SIZE (128)
  33. typedef struct btdrv_init_param {
  34. uint8_t set_hosc_cap:1;
  35. uint8_t set_max_rf_power:1;
  36. uint8_t set_ble_rf_power:1;
  37. uint8_t hosc_capacity;
  38. uint8_t bt_max_rf_tx_power;
  39. uint8_t ble_rf_tx_power;
  40. } btdrv_init_param_t;
  41. typedef void (*btdrv_tws_cb_t)(void);
  42. typedef struct btdrv_hci_cb {
  43. /**
  44. * @brief get buffer to receive hci data.
  45. * @param type hci data type.
  46. * @param evt hci event code.
  47. * @param exp_len, 0 default buffer lengh, other: expect buffer length.
  48. * @return buffer to receive hci data.
  49. */
  50. uint8_t * (*get_buf)(uint8_t type, uint8_t evt, uint16_t exp_len);
  51. /**
  52. * @brief recv hci data callback.
  53. * @param len length of hci data.
  54. * @return 0 for success, non-zero otherwise.
  55. */
  56. int (*recv)(uint16_t len);
  57. } btdrv_hci_cb_t;
  58. /**
  59. * @brief initialize bt controller init parameter, call before btdrv_init.
  60. * @param param Initialize paramter.
  61. * @return 0 on success, no-zero otherwise.
  62. */
  63. int btdrv_set_init_param(btdrv_init_param_t *param);
  64. /**
  65. * @brief initialize bt controller.
  66. * @param cb callback structure to receive hci data.
  67. * @return 0 on success, no-zero otherwise.
  68. */
  69. int btdrv_init(btdrv_hci_cb_t *cb);
  70. /**
  71. * @brief reset bt controller.
  72. * @param N/A.
  73. * @return 0 on success, no-zero otherwise.
  74. */
  75. int btdrv_reset(void);
  76. /**
  77. * @brief send hci data to bt controller.
  78. * @param type hci data type.
  79. * @param data hci data.
  80. * @param len length of hci data.
  81. * @return 0 on success, no-zero otherwise.
  82. */
  83. int btdrv_send(uint8_t type, uint8_t *data, uint16_t len);
  84. int btdrv_tws_irq_enable(uint8_t index);
  85. int btdrv_tws_irq_disable(uint8_t index);
  86. int btdrv_tws_irq_cb_set(uint8_t index, btdrv_tws_cb_t cb);
  87. int btdrv_tws_set_mode(uint8_t index, uint8_t mode);
  88. void* btdrv_dump_btcpu_info(void);
  89. #endif