hci_raw.h 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. /** @file
  2. * @brief Bluetooth HCI RAW channel handling
  3. */
  4. /*
  5. * Copyright (c) 2016 Intel Corporation
  6. *
  7. * SPDX-License-Identifier: Apache-2.0
  8. */
  9. #ifndef ZEPHYR_INCLUDE_BLUETOOTH_HCI_RAW_H_
  10. #define ZEPHYR_INCLUDE_BLUETOOTH_HCI_RAW_H_
  11. /**
  12. * @brief HCI RAW channel
  13. * @defgroup hci_raw HCI RAW channel
  14. * @ingroup bluetooth
  15. * @{
  16. */
  17. #ifdef __cplusplus
  18. extern "C" {
  19. #endif
  20. /** @brief Send packet to the Bluetooth controller
  21. *
  22. * Send packet to the Bluetooth controller. Caller needs to
  23. * implement netbuf pool.
  24. *
  25. * @param buf netbuf packet to be send
  26. *
  27. * @return Zero on success or (negative) error code otherwise.
  28. */
  29. int bt_send(struct net_buf *buf);
  30. enum {
  31. /** Passthrough mode
  32. *
  33. * While in this mode the buffers are passed as is between the stack
  34. * and the driver.
  35. */
  36. BT_HCI_RAW_MODE_PASSTHROUGH = 0x00,
  37. /** H:4 mode
  38. *
  39. * While in this mode H:4 headers will added into the buffers
  40. * according to the buffer type when coming from the stack and will be
  41. * removed and used to set the buffer type.
  42. */
  43. BT_HCI_RAW_MODE_H4 = 0x01,
  44. };
  45. /** @brief Set Bluetooth RAW channel mode
  46. *
  47. * Set access mode of Bluetooth RAW channel.
  48. *
  49. * @param mode Access mode.
  50. *
  51. * @return Zero on success or (negative) error code otherwise.
  52. */
  53. int bt_hci_raw_set_mode(uint8_t mode);
  54. /** @brief Get Bluetooth RAW channel mode
  55. *
  56. * Get access mode of Bluetooth RAW channel.
  57. *
  58. * @return Access mode.
  59. */
  60. uint8_t bt_hci_raw_get_mode(void);
  61. #define BT_HCI_ERR_EXT_HANDLED 0xff
  62. /** Helper macro to define a command extension
  63. *
  64. * @param _op Opcode of the command.
  65. * @param _min_len Minimal length of the command.
  66. * @param _func Handler function to be called.
  67. */
  68. #define BT_HCI_RAW_CMD_EXT(_op, _min_len, _func) \
  69. { \
  70. .op = _op, \
  71. .min_len = _min_len, \
  72. .func = _func, \
  73. }
  74. struct bt_hci_raw_cmd_ext {
  75. /** Opcode of the command */
  76. uint16_t op;
  77. /** Minimal length of the command */
  78. size_t min_len;
  79. /** Handler function.
  80. *
  81. * Handler function to be called when a command is intercepted.
  82. *
  83. * @param buf Buffer containing the command.
  84. *
  85. * @return HCI Status code or BT_HCI_ERR_EXT_HANDLED if command has
  86. * been handled already and a response has been sent as oppose to
  87. * BT_HCI_ERR_SUCCESS which just indicates that the command can be
  88. * sent to the controller to be processed.
  89. */
  90. uint8_t (*func)(struct net_buf *buf);
  91. };
  92. /** @brief Register Bluetooth RAW command extension table
  93. *
  94. * Register Bluetooth RAW channel command extension table, opcodes in this
  95. * table are intercepted to sent to the handler function.
  96. *
  97. * @param cmds Pointer to the command extension table.
  98. * @param size Size of the command extension table.
  99. */
  100. void bt_hci_raw_cmd_ext_register(struct bt_hci_raw_cmd_ext *cmds, size_t size);
  101. /** @brief Enable Bluetooth RAW channel:
  102. *
  103. * Enable Bluetooth RAW HCI channel.
  104. *
  105. * @param rx_queue netbuf queue where HCI packets received from the Bluetooth
  106. * controller are to be queued. The queue is defined in the caller while
  107. * the available buffers pools are handled in the stack.
  108. *
  109. * @return Zero on success or (negative) error code otherwise.
  110. */
  111. int bt_enable_raw(struct k_fifo *rx_queue);
  112. #ifdef __cplusplus
  113. }
  114. #endif
  115. /**
  116. * @}
  117. */
  118. #endif /* ZEPHYR_INCLUDE_BLUETOOTH_HCI_RAW_H_ */