2016-04-09 11:29:50 +03:00
|
|
|
/** @file
|
|
|
|
* @brief Bluetooth data buffer API
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2016 Intel Corporation
|
|
|
|
*
|
2017-01-18 17:01:01 -08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2016-04-09 11:29:50 +03:00
|
|
|
*/
|
|
|
|
|
2018-09-14 10:43:44 -07:00
|
|
|
#ifndef ZEPHYR_INCLUDE_BLUETOOTH_BUF_H_
|
|
|
|
#define ZEPHYR_INCLUDE_BLUETOOTH_BUF_H_
|
2016-04-09 11:29:50 +03:00
|
|
|
|
2016-05-16 19:54:24 +03:00
|
|
|
/**
|
|
|
|
* @brief Data buffers
|
|
|
|
* @defgroup bt_buf Data buffers
|
|
|
|
* @ingroup bluetooth
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
Introduce new sized integer typedefs
This is a start to move away from the C99 {u}int{8,16,32,64}_t types to
Zephyr defined u{8,16,32,64}_t and s{8,16,32,64}_t. This allows Zephyr
to define the sized types in a consistent manor across all the
architectures we support and not conflict with what various compilers
and libc might do with regards to the C99 types.
We introduce <zephyr/types.h> as part of this and have it include
<stdint.h> for now until we transition all the code away from the C99
types.
We go with u{8,16,32,64}_t and s{8,16,32,64}_t as there are some
existing variables defined u8 & u16 as well as to be consistent with
Zephyr naming conventions.
Jira: ZEP-2051
Change-Id: I451fed0623b029d65866622e478225dfab2c0ca8
Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
2017-04-19 10:32:08 -05:00
|
|
|
#include <zephyr/types.h>
|
2016-04-09 11:29:50 +03:00
|
|
|
#include <net/buf.h>
|
2016-04-09 13:53:17 +03:00
|
|
|
#include <bluetooth/hci.h>
|
2016-04-09 11:29:50 +03:00
|
|
|
|
|
|
|
/** Possible types of buffers passed around the Bluetooth stack */
|
|
|
|
enum bt_buf_type {
|
2016-07-18 11:26:01 +02:00
|
|
|
/** HCI command */
|
|
|
|
BT_BUF_CMD,
|
|
|
|
/** HCI event */
|
|
|
|
BT_BUF_EVT,
|
|
|
|
/** Outgoing ACL data */
|
|
|
|
BT_BUF_ACL_OUT,
|
|
|
|
/** Incoming ACL data */
|
|
|
|
BT_BUF_ACL_IN,
|
2016-04-09 11:29:50 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
/** Minimum amount of user data size for buffers passed to the stack. */
|
2019-11-26 20:59:03 +02:00
|
|
|
#define BT_BUF_USER_DATA_MIN __DEPRECATED_MACRO 4
|
2016-04-09 11:29:50 +03:00
|
|
|
|
2019-11-12 17:02:13 +02:00
|
|
|
#if defined(CONFIG_BT_HCI_RAW)
|
|
|
|
#define BT_BUF_RESERVE MAX(CONFIG_BT_HCI_RESERVE, CONFIG_BT_HCI_RAW_RESERVE)
|
|
|
|
#else
|
|
|
|
#define BT_BUF_RESERVE CONFIG_BT_HCI_RESERVE
|
|
|
|
#endif
|
|
|
|
|
2020-01-10 09:23:09 +01:00
|
|
|
#define BT_BUF_SIZE(size) (BT_BUF_RESERVE + (size))
|
|
|
|
|
2016-12-21 17:49:39 +02:00
|
|
|
/** Data size neeed for HCI RX buffers */
|
2020-01-10 09:23:09 +01:00
|
|
|
#define BT_BUF_RX_SIZE (BT_BUF_SIZE(CONFIG_BT_RX_BUF_LEN))
|
2016-04-09 13:53:17 +03:00
|
|
|
|
2016-12-25 11:20:32 +02:00
|
|
|
/** Allocate a buffer for incoming data
|
|
|
|
*
|
2017-05-04 11:25:28 +03:00
|
|
|
* This will set the buffer type so bt_buf_set_type() does not need to
|
|
|
|
* be explicitly called before bt_recv_prio().
|
2016-12-25 11:20:32 +02:00
|
|
|
*
|
2017-05-04 11:25:28 +03:00
|
|
|
* @param type Type of buffer. Only BT_BUF_EVT and BT_BUF_ACL_IN are
|
|
|
|
* allowed.
|
2016-12-25 11:20:32 +02:00
|
|
|
* @param timeout Timeout in milliseconds, or one of the special values
|
|
|
|
* K_NO_WAIT and K_FOREVER.
|
|
|
|
* @return A new buffer.
|
|
|
|
*/
|
2017-05-04 11:25:28 +03:00
|
|
|
struct net_buf *bt_buf_get_rx(enum bt_buf_type type, s32_t timeout);
|
2016-12-25 11:20:32 +02:00
|
|
|
|
2017-02-01 17:37:14 +02:00
|
|
|
/** Allocate a buffer for an HCI Command Complete/Status Event
|
|
|
|
*
|
|
|
|
* This will set the buffer type so bt_buf_set_type() does not need to
|
|
|
|
* be explicitly called before bt_recv_prio().
|
|
|
|
*
|
|
|
|
* @param timeout Timeout in milliseconds, or one of the special values
|
|
|
|
* K_NO_WAIT and K_FOREVER.
|
|
|
|
* @return A new buffer.
|
|
|
|
*/
|
2017-04-20 12:00:29 -05:00
|
|
|
struct net_buf *bt_buf_get_cmd_complete(s32_t timeout);
|
2017-02-01 17:37:14 +02:00
|
|
|
|
2019-06-17 15:54:45 +03:00
|
|
|
/** Allocate a buffer for an HCI Event
|
|
|
|
*
|
|
|
|
* This will set the buffer type so bt_buf_set_type() does not need to
|
|
|
|
* be explicitly called before bt_recv_prio() or bt_recv().
|
|
|
|
*
|
2019-06-28 12:09:36 +03:00
|
|
|
* @param evt HCI event code
|
|
|
|
* @param discardable Whether the driver considers the event discardable.
|
|
|
|
* @param timeout Timeout in milliseconds, or one of the special values
|
|
|
|
* K_NO_WAIT and K_FOREVER.
|
2019-06-17 15:54:45 +03:00
|
|
|
* @return A new buffer.
|
|
|
|
*/
|
2019-06-28 12:09:36 +03:00
|
|
|
struct net_buf *bt_buf_get_evt(u8_t evt, bool discardable, s32_t timeout);
|
2019-06-17 15:54:45 +03:00
|
|
|
|
2016-04-09 11:29:50 +03:00
|
|
|
/** Set the buffer type
|
|
|
|
*
|
|
|
|
* @param buf Bluetooth buffer
|
|
|
|
* @param type The BT_* type to set the buffer to
|
|
|
|
*/
|
|
|
|
static inline void bt_buf_set_type(struct net_buf *buf, enum bt_buf_type type)
|
|
|
|
{
|
2017-04-20 12:00:29 -05:00
|
|
|
*(u8_t *)net_buf_user_data(buf) = type;
|
2016-04-09 11:29:50 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/** Get the buffer type
|
|
|
|
*
|
|
|
|
* @param buf Bluetooth buffer
|
|
|
|
*
|
|
|
|
* @return The BT_* type to of the buffer
|
|
|
|
*/
|
|
|
|
static inline enum bt_buf_type bt_buf_get_type(struct net_buf *buf)
|
|
|
|
{
|
2018-01-29 15:07:45 +01:00
|
|
|
/* De-referencing the pointer from net_buf_user_data(buf) as a
|
|
|
|
* pointer to an enum causes issues on qemu_x86 because the true
|
|
|
|
* size is 8-bit, but the enum is 32-bit on qemu_x86. So we put in
|
|
|
|
* a temporary cast to 8-bit to ensure only 8 bits are read from
|
|
|
|
* the pointer.
|
|
|
|
*/
|
|
|
|
return (enum bt_buf_type)(*(u8_t *)net_buf_user_data(buf));
|
2016-04-09 11:29:50 +03:00
|
|
|
}
|
|
|
|
|
2016-05-16 19:54:24 +03:00
|
|
|
/**
|
|
|
|
* @}
|
|
|
|
*/
|
|
|
|
|
2018-09-14 10:43:44 -07:00
|
|
|
#endif /* ZEPHYR_INCLUDE_BLUETOOTH_BUF_H_ */
|