buf.h 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. /** @file
  2. * @brief Bluetooth data buffer API
  3. */
  4. /*
  5. * Copyright (c) 2016 Intel Corporation
  6. *
  7. * SPDX-License-Identifier: Apache-2.0
  8. */
  9. #ifndef ZEPHYR_INCLUDE_BLUETOOTH_BUF_H_
  10. #define ZEPHYR_INCLUDE_BLUETOOTH_BUF_H_
  11. /**
  12. * @brief Data buffers
  13. * @defgroup bt_buf Data buffers
  14. * @ingroup bluetooth
  15. * @{
  16. */
  17. #include <zephyr/types.h>
  18. #include <net/buf.h>
  19. #include <bluetooth/hci.h>
  20. #include <sys/util.h>
  21. #ifdef __cplusplus
  22. extern "C" {
  23. #endif
  24. /** Possible types of buffers passed around the Bluetooth stack */
  25. enum bt_buf_type {
  26. /** HCI command */
  27. BT_BUF_CMD,
  28. /** HCI event */
  29. BT_BUF_EVT,
  30. /** Outgoing ACL data */
  31. BT_BUF_ACL_OUT,
  32. /** Incoming ACL data */
  33. BT_BUF_ACL_IN,
  34. /** Outgoing ISO data */
  35. BT_BUF_ISO_OUT,
  36. /** Incoming ISO data */
  37. BT_BUF_ISO_IN,
  38. /** H:4 data */
  39. BT_BUF_H4,
  40. /** Outgoing SCO data */
  41. BT_BUF_SCO_OUT,
  42. /** Incoming SCO data */
  43. BT_BUF_SCO_IN,
  44. };
  45. /** @brief This is a base type for bt_buf user data. */
  46. struct bt_buf_data {
  47. uint8_t type;
  48. };
  49. #if defined(CONFIG_BT_HCI_RAW)
  50. #define BT_BUF_RESERVE MAX(CONFIG_BT_HCI_RESERVE, CONFIG_BT_HCI_RAW_RESERVE)
  51. #else
  52. #define BT_BUF_RESERVE CONFIG_BT_HCI_RESERVE
  53. #endif
  54. /** Helper to include reserved HCI data in buffer calculations */
  55. #define BT_BUF_SIZE(size) (BT_BUF_RESERVE + (size))
  56. /** Helper to calculate needed buffer size for HCI ACL packets */
  57. #define BT_BUF_ACL_SIZE(size) BT_BUF_SIZE(BT_HCI_ACL_HDR_SIZE + (size))
  58. /** Helper to calculate needed buffer size for HCI Event packets. */
  59. #define BT_BUF_EVT_SIZE(size) BT_BUF_SIZE(BT_HCI_EVT_HDR_SIZE + (size))
  60. /** Helper to calculate needed buffer size for HCI Command packets. */
  61. #define BT_BUF_CMD_SIZE(size) BT_BUF_SIZE(BT_HCI_CMD_HDR_SIZE + (size))
  62. /** Data size needed for HCI ACL RX buffers */
  63. #define BT_BUF_ACL_RX_SIZE BT_BUF_ACL_SIZE(CONFIG_BT_BUF_ACL_RX_SIZE)
  64. /** Data size needed for HCI Event RX buffers */
  65. #define BT_BUF_EVT_RX_SIZE BT_BUF_EVT_SIZE(CONFIG_BT_BUF_EVT_RX_SIZE)
  66. /** Data size needed for HCI ACL or Event RX buffers */
  67. #define BT_BUF_RX_SIZE (MAX(BT_BUF_ACL_RX_SIZE, BT_BUF_EVT_RX_SIZE))
  68. /** Data size needed for HCI Command buffers. */
  69. #define BT_BUF_CMD_TX_SIZE BT_BUF_CMD_SIZE(CONFIG_BT_BUF_CMD_TX_SIZE)
  70. /** Allocate a buffer for incoming data
  71. *
  72. * This will set the buffer type so bt_buf_set_type() does not need to
  73. * be explicitly called before bt_recv_prio().
  74. *
  75. * @param type Type of buffer. Only BT_BUF_EVT and BT_BUF_ACL_IN are
  76. * allowed.
  77. * @param timeout Non-negative waiting period to obtain a buffer or one of the
  78. * special values K_NO_WAIT and K_FOREVER.
  79. * @return A new buffer.
  80. */
  81. struct net_buf *bt_buf_get_rx(enum bt_buf_type type, k_timeout_t timeout);
  82. /** Allocate a buffer for outgoing data
  83. *
  84. * This will set the buffer type so bt_buf_set_type() does not need to
  85. * be explicitly called before bt_send().
  86. *
  87. * @param type Type of buffer. Only BT_BUF_CMD, BT_BUF_ACL_OUT or
  88. * BT_BUF_H4, when operating on H:4 mode, are allowed.
  89. * @param timeout Non-negative waiting period to obtain a buffer or one of the
  90. * special values K_NO_WAIT and K_FOREVER.
  91. * @param data Initial data to append to buffer.
  92. * @param size Initial data size.
  93. * @return A new buffer.
  94. */
  95. struct net_buf *bt_buf_get_tx(enum bt_buf_type type, k_timeout_t timeout,
  96. const void *data, size_t size);
  97. /** Allocate a buffer for an HCI Command Complete/Status Event
  98. *
  99. * This will set the buffer type so bt_buf_set_type() does not need to
  100. * be explicitly called before bt_recv_prio().
  101. *
  102. * @param timeout Non-negative waiting period to obtain a buffer or one of the
  103. * special values K_NO_WAIT and K_FOREVER.
  104. * @return A new buffer.
  105. */
  106. struct net_buf *bt_buf_get_cmd_complete(k_timeout_t timeout);
  107. /** Allocate a buffer for an HCI Event
  108. *
  109. * This will set the buffer type so bt_buf_set_type() does not need to
  110. * be explicitly called before bt_recv_prio() or bt_recv().
  111. *
  112. * @param evt HCI event code
  113. * @param discardable Whether the driver considers the event discardable.
  114. * @param timeout Non-negative waiting period to obtain a buffer or one of
  115. * the special values K_NO_WAIT and K_FOREVER.
  116. * @return A new buffer.
  117. */
  118. struct net_buf *bt_buf_get_evt(uint8_t evt, bool discardable, k_timeout_t timeout);
  119. /** Set the buffer type
  120. *
  121. * @param buf Bluetooth buffer
  122. * @param type The BT_* type to set the buffer to
  123. */
  124. static inline void bt_buf_set_type(struct net_buf *buf, enum bt_buf_type type)
  125. {
  126. ((struct bt_buf_data *)net_buf_user_data(buf))->type = type;
  127. }
  128. /** Get the buffer type
  129. *
  130. * @param buf Bluetooth buffer
  131. *
  132. * @return The BT_* type to of the buffer
  133. */
  134. static inline enum bt_buf_type bt_buf_get_type(struct net_buf *buf)
  135. {
  136. return (enum bt_buf_type)((struct bt_buf_data *)net_buf_user_data(buf))
  137. ->type;
  138. }
  139. struct net_buf *bt_buf_get_rx_len(enum bt_buf_type type, k_timeout_t timeout, int len);
  140. struct net_buf *bt_buf_get_evt_len(uint8_t evt, bool discardable,
  141. k_timeout_t timeout, int len);
  142. /**
  143. * @}
  144. */
  145. #ifdef __cplusplus
  146. }
  147. #endif
  148. #endif /* ZEPHYR_INCLUDE_BLUETOOTH_BUF_H_ */