2016-04-09 16:29:50 +08:00
|
|
|
/** @file
|
|
|
|
* @brief Bluetooth data buffer API
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2016 Intel Corporation
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __BT_BUF_H
|
|
|
|
#define __BT_BUF_H
|
|
|
|
|
2016-05-17 00:54:24 +08:00
|
|
|
/**
|
|
|
|
* @brief Data buffers
|
|
|
|
* @defgroup bt_buf Data buffers
|
|
|
|
* @ingroup bluetooth
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2016-04-09 16:29:50 +08:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <net/buf.h>
|
2016-04-09 18:53:17 +08:00
|
|
|
#include <bluetooth/hci.h>
|
2016-04-09 16:29:50 +08:00
|
|
|
|
|
|
|
/** Possible types of buffers passed around the Bluetooth stack */
|
|
|
|
enum bt_buf_type {
|
2016-07-18 17:26:01 +08: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 16:29:50 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
/** Minimum amount of user data size for buffers passed to the stack. */
|
|
|
|
#define BT_BUF_USER_DATA_MIN 4
|
|
|
|
|
2016-04-09 18:53:17 +08:00
|
|
|
/** Data size neeed for HCI event buffers */
|
|
|
|
#define BT_BUF_EVT_SIZE (CONFIG_BLUETOOTH_HCI_RECV_RESERVE + \
|
|
|
|
sizeof(struct bt_hci_evt_hdr) + \
|
|
|
|
CONFIG_BLUETOOTH_MAX_EVT_LEN)
|
|
|
|
|
|
|
|
/** Data size needed for incoming ACL buffers */
|
|
|
|
#define BT_BUF_ACL_IN_SIZE (CONFIG_BLUETOOTH_HCI_RECV_RESERVE + \
|
|
|
|
sizeof(struct bt_hci_acl_hdr) + \
|
|
|
|
4 /* L2CAP header size */ + \
|
|
|
|
CONFIG_BLUETOOTH_L2CAP_IN_MTU)
|
|
|
|
|
2016-12-21 22:04:36 +08:00
|
|
|
/** Allocate a buffer for an HCI event
|
|
|
|
*
|
|
|
|
* This will set the BT_BUF_EVT buffer type so bt_buf_set_type()
|
2016-12-21 23:39:55 +08:00
|
|
|
* doesn't need to be explicitly called.
|
2016-12-21 22:04:36 +08:00
|
|
|
*
|
|
|
|
* @param opcode HCI event opcode or 0 if not known
|
|
|
|
* @param timeout Timeout in milliseconds, or one of the special values
|
|
|
|
* K_NO_WAIT and K_FOREVER.
|
|
|
|
* @return A new buffer with the BT_BUF_EVT type.
|
|
|
|
*/
|
|
|
|
struct net_buf *bt_buf_get_evt(uint8_t opcode, int32_t timeout);
|
|
|
|
|
|
|
|
/** Allocate a buffer for incoming ACL data
|
|
|
|
*
|
|
|
|
* This will set the BT_BUF_ACL_IN buffer type so bt_buf_set_type()
|
2016-12-21 23:39:55 +08:00
|
|
|
* doesn't need to be explicitly called.
|
2016-12-21 22:04:36 +08:00
|
|
|
*
|
|
|
|
* @param timeout Timeout in milliseconds, or one of the special values
|
|
|
|
* K_NO_WAIT and K_FOREVER.
|
|
|
|
* @return A new buffer with the BT_BUF_ACL_IN type.
|
|
|
|
*/
|
|
|
|
struct net_buf *bt_buf_get_acl(int32_t timeout);
|
|
|
|
|
2016-04-09 16:29:50 +08: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)
|
|
|
|
{
|
|
|
|
*(uint8_t *)net_buf_user_data(buf) = type;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** 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)
|
|
|
|
{
|
|
|
|
return *(uint8_t *)net_buf_user_data(buf);
|
|
|
|
}
|
|
|
|
|
2016-05-17 00:54:24 +08:00
|
|
|
/**
|
|
|
|
* @}
|
|
|
|
*/
|
|
|
|
|
2016-04-09 16:29:50 +08:00
|
|
|
#endif /* __BT_BUF_H */
|