hci_driver.h 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297
  1. /** @file
  2. * @brief Bluetooth HCI driver API.
  3. */
  4. /*
  5. * Copyright (c) 2015-2016 Intel Corporation
  6. *
  7. * SPDX-License-Identifier: Apache-2.0
  8. */
  9. #ifndef ZEPHYR_INCLUDE_DRIVERS_BLUETOOTH_HCI_DRIVER_H_
  10. #define ZEPHYR_INCLUDE_DRIVERS_BLUETOOTH_HCI_DRIVER_H_
  11. /**
  12. * @brief HCI drivers
  13. * @defgroup bt_hci_driver HCI drivers
  14. * @ingroup bluetooth
  15. * @{
  16. */
  17. #include <stdbool.h>
  18. #ifdef CONFIG_ACTS_BT
  19. #include <acts_net/buf.h>
  20. #else
  21. #include <net/buf.h>
  22. #endif
  23. #include <bluetooth/buf.h>
  24. #include <bluetooth/hci_vs.h>
  25. #include <device.h>
  26. #ifdef __cplusplus
  27. extern "C" {
  28. #endif
  29. enum {
  30. /* The host should never send HCI_Reset */
  31. BT_QUIRK_NO_RESET = BIT(0),
  32. /* The controller does not auto-initiate a DLE procedure when the
  33. * initial connection data length parameters are not equal to the
  34. * default data length parameters. Therefore the host should initiate
  35. * the DLE procedure after connection establishment. */
  36. BT_QUIRK_NO_AUTO_DLE = BIT(1),
  37. };
  38. #define IS_BT_QUIRK_NO_AUTO_DLE(bt_dev) ((bt_dev)->drv->quirks & BT_QUIRK_NO_AUTO_DLE)
  39. /* @brief The HCI event shall be given to bt_recv_prio */
  40. #define BT_HCI_EVT_FLAG_RECV_PRIO BIT(0)
  41. /* @brief The HCI event shall be given to bt_recv. */
  42. #define BT_HCI_EVT_FLAG_RECV BIT(1)
  43. /** @brief Get HCI event flags.
  44. *
  45. * Helper for the HCI driver to get HCI event flags that describes rules that.
  46. * must be followed.
  47. *
  48. * When CONFIG_BT_RECV_IS_RX_THREAD is enabled the flags
  49. * BT_HCI_EVT_FLAG_RECV and BT_HCI_EVT_FLAG_RECV_PRIO indicates if the event
  50. * should be given to bt_recv or bt_recv_prio.
  51. *
  52. * @param evt HCI event code.
  53. *
  54. * @return HCI event flags for the specified event.
  55. */
  56. /**
  57. * @brief Check if an HCI event is high priority or not.
  58. *
  59. * Helper for the HCI driver to know which events are ok to be passed
  60. * through the RX thread and which must be given to bt_recv_prio() from
  61. * another context (e.g. ISR). If this function returns true it's safe
  62. * to pass the event through the RX thread, however if it returns false
  63. * then this risks a deadlock.
  64. *
  65. * @param evt HCI event code.
  66. *
  67. * @return true if the event can be processed in the RX thread, false
  68. * if it cannot.
  69. */
  70. static inline bool bt_hci_evt_is_prio(u8_t evt)
  71. {
  72. switch (evt) {
  73. case BT_HCI_EVT_CMD_COMPLETE:
  74. case BT_HCI_EVT_CMD_STATUS:
  75. /* fallthrough */
  76. #if defined(CONFIG_BT_CONN)
  77. case BT_HCI_EVT_NUM_COMPLETED_PACKETS:
  78. case BT_HCI_EVT_DATA_BUF_OVERFLOW:
  79. #endif
  80. return true;
  81. default:
  82. return false;
  83. }
  84. }
  85. static inline uint8_t bt_hci_evt_get_flags(uint8_t evt)
  86. {
  87. switch (evt) {
  88. case BT_HCI_EVT_DISCONN_COMPLETE:
  89. return BT_HCI_EVT_FLAG_RECV | BT_HCI_EVT_FLAG_RECV_PRIO;
  90. /* fallthrough */
  91. #if defined(CONFIG_BT_CONN) || defined(CONFIG_BT_ISO)
  92. case BT_HCI_EVT_NUM_COMPLETED_PACKETS:
  93. #if defined(CONFIG_BT_CONN)
  94. case BT_HCI_EVT_DATA_BUF_OVERFLOW:
  95. __fallthrough;
  96. #endif /* defined(CONFIG_BT_CONN) */
  97. #endif /* CONFIG_BT_CONN || CONFIG_BT_ISO */
  98. case BT_HCI_EVT_CMD_COMPLETE:
  99. case BT_HCI_EVT_CMD_STATUS:
  100. return BT_HCI_EVT_FLAG_RECV_PRIO;
  101. default:
  102. return BT_HCI_EVT_FLAG_RECV;
  103. }
  104. }
  105. /**
  106. * @brief Receive data from the controller/HCI driver.
  107. *
  108. * This is the main function through which the HCI driver provides the
  109. * host with data from the controller. The buffer needs to have its type
  110. * set with the help of bt_buf_set_type() before calling this API.
  111. *
  112. * When CONFIG_BT_RECV_IS_RX_THREAD is defined then this API should not be used
  113. * for so-called high priority HCI events, which should instead be delivered to
  114. * the host stack through bt_recv_prio().
  115. *
  116. * @param buf Network buffer containing data from the controller.
  117. *
  118. * @return 0 on success or negative error number on failure.
  119. */
  120. int bt_recv(struct net_buf *buf);
  121. /**
  122. * @brief Receive high priority data from the controller/HCI driver.
  123. *
  124. * This is the same as bt_recv(), except that it should be used for
  125. * so-called high priority HCI events. There's a separate
  126. * bt_hci_evt_get_flags() helper that can be used to identify which events
  127. * have the BT_HCI_EVT_FLAG_RECV_PRIO flag set.
  128. *
  129. * As with bt_recv(), the buffer needs to have its type set with the help of
  130. * bt_buf_set_type() before calling this API. The only exception is so called
  131. * high priority HCI events which should be delivered to the host stack through
  132. * bt_recv_prio() instead.
  133. *
  134. * @param buf Network buffer containing data from the controller.
  135. *
  136. * @return 0 on success or negative error number on failure.
  137. */
  138. int bt_recv_prio(struct net_buf *buf);
  139. /** @brief Read static addresses from the controller.
  140. *
  141. * @param addrs Random static address and Identity Root (IR) array.
  142. * @param size Size of array.
  143. *
  144. * @return Number of addresses read.
  145. */
  146. uint8_t bt_read_static_addr(struct bt_hci_vs_static_addr addrs[], uint8_t size);
  147. /** Possible values for the 'bus' member of the bt_hci_driver struct */
  148. enum bt_hci_driver_bus {
  149. BT_HCI_DRIVER_BUS_VIRTUAL = 0,
  150. BT_HCI_DRIVER_BUS_USB = 1,
  151. BT_HCI_DRIVER_BUS_PCCARD = 2,
  152. BT_HCI_DRIVER_BUS_UART = 3,
  153. BT_HCI_DRIVER_BUS_RS232 = 4,
  154. BT_HCI_DRIVER_BUS_PCI = 5,
  155. BT_HCI_DRIVER_BUS_SDIO = 6,
  156. BT_HCI_DRIVER_BUS_SPI = 7,
  157. BT_HCI_DRIVER_BUS_I2C = 8,
  158. BT_HCI_DRIVER_BUS_IPM = 9,
  159. };
  160. /**
  161. * @brief Abstraction which represents the HCI transport to the controller.
  162. *
  163. * This struct is used to represent the HCI transport to the Bluetooth
  164. * controller.
  165. */
  166. struct bt_hci_driver {
  167. /** Name of the driver */
  168. const char *name;
  169. /** Bus of the transport (BT_HCI_DRIVER_BUS_*) */
  170. enum bt_hci_driver_bus bus;
  171. /** Specific controller quirks. These are set by the HCI driver
  172. * and acted upon by the host. They can either be statically
  173. * set at buildtime, or set at runtime before the HCI driver's
  174. * open() callback returns.
  175. */
  176. uint32_t quirks;
  177. /**
  178. * @brief Open the HCI transport.
  179. *
  180. * Opens the HCI transport for operation. This function must not
  181. * return until the transport is ready for operation, meaning it
  182. * is safe to start calling the send() handler.
  183. *
  184. * If the driver uses its own RX thread, i.e.
  185. * CONFIG_BT_RECV_IS_RX_THREAD is set, then this
  186. * function is expected to start that thread.
  187. *
  188. * @return 0 on success or negative error number on failure.
  189. */
  190. int (*open)(void);
  191. /**
  192. * @brief Send HCI buffer to controller.
  193. *
  194. * Send an HCI command or ACL data to the controller. The exact
  195. * type of the data can be checked with the help of bt_buf_get_type().
  196. *
  197. * @note This function must only be called from a cooperative thread.
  198. *
  199. * @param buf Buffer containing data to be sent to the controller.
  200. *
  201. * @return 0 on success or negative error number on failure.
  202. */
  203. int (*send)(struct net_buf *buf);
  204. };
  205. /**
  206. * @brief Register a new HCI driver to the Bluetooth stack.
  207. *
  208. * This needs to be called before any application code runs. The bt_enable()
  209. * API will fail if there is no driver registered.
  210. *
  211. * @param drv A bt_hci_driver struct representing the driver.
  212. *
  213. * @return 0 on success or negative error number on failure.
  214. */
  215. int bt_hci_driver_register(const struct bt_hci_driver *drv);
  216. /**
  217. * @brief Setup the HCI transport, which usually means to reset the
  218. * Bluetooth IC.
  219. *
  220. * @note A weak version of this function is included in the H4 driver, so
  221. * defining it is optional per board.
  222. *
  223. * @param dev The device structure for the bus connecting to the IC
  224. *
  225. * @return 0 on success, negative error value on failure
  226. */
  227. int bt_hci_transport_setup(const struct device *dev);
  228. /** Allocate an HCI event buffer.
  229. *
  230. * This function allocates a new buffer for an HCI event. It is given the
  231. * avent code and the total length of the parameters. Upon successful return
  232. * the buffer is ready to have the parameters encoded into it.
  233. *
  234. * @param evt Event OpCode.
  235. * @param len Length of event parameters.
  236. *
  237. * @return Newly allocated buffer.
  238. */
  239. struct net_buf *bt_hci_evt_create(uint8_t evt, uint8_t len);
  240. /** Allocate an HCI Command Complete event buffer.
  241. *
  242. * This function allocates a new buffer for HCI Command Complete event.
  243. * It is given the OpCode (encoded e.g. using the BT_OP macro) and the total
  244. * length of the parameters. Upon successful return the buffer is ready to have
  245. * the parameters encoded into it.
  246. *
  247. * @param op Command OpCode.
  248. * @param plen Length of command parameters.
  249. *
  250. * @return Newly allocated buffer.
  251. */
  252. struct net_buf *bt_hci_cmd_complete_create(uint16_t op, uint8_t plen);
  253. /** Allocate an HCI Command Status event buffer.
  254. *
  255. * This function allocates a new buffer for HCI Command Status event.
  256. * It is given the OpCode (encoded e.g. using the BT_OP macro) and the status
  257. * code. Upon successful return the buffer is ready to have the parameters
  258. * encoded into it.
  259. *
  260. * @param op Command OpCode.
  261. * @param status Status code.
  262. *
  263. * @return Newly allocated buffer.
  264. */
  265. struct net_buf *bt_hci_cmd_status_create(uint16_t op, uint8_t status);
  266. #ifdef __cplusplus
  267. }
  268. #endif
  269. /**
  270. * @}
  271. */
  272. #endif /* ZEPHYR_INCLUDE_DRIVERS_BLUETOOTH_HCI_DRIVER_H_ */