11#ifndef ZEPHYR_INCLUDE_BLUETOOTH_L2CAP_H_
12#define ZEPHYR_INCLUDE_BLUETOOTH_L2CAP_H_
39#define BT_L2CAP_HDR_SIZE 4
42#define BT_L2CAP_TX_MTU (CONFIG_BT_L2CAP_TX_MTU)
45#define BT_L2CAP_RX_MTU (CONFIG_BT_BUF_ACL_RX_SIZE - BT_L2CAP_HDR_SIZE)
54#define BT_L2CAP_BUF_SIZE(mtu) BT_BUF_ACL_SIZE(BT_L2CAP_HDR_SIZE + (mtu))
57#define BT_L2CAP_SDU_HDR_SIZE 2
67#define BT_L2CAP_SDU_TX_MTU (BT_L2CAP_TX_MTU - BT_L2CAP_SDU_HDR_SIZE)
79#define BT_L2CAP_SDU_RX_MTU (BT_L2CAP_RX_MTU - BT_L2CAP_SDU_HDR_SIZE)
90#define BT_L2CAP_SDU_BUF_SIZE(mtu) BT_L2CAP_BUF_SIZE(BT_L2CAP_SDU_HDR_SIZE + (mtu))
101#define BT_L2CAP_ECRED_MIN_MTU 64
112#define BT_L2CAP_ECRED_MIN_MPS 64
119#define BT_L2CAP_MAX_MTU UINT16_MAX
126#define BT_L2CAP_MAX_MPS 65533
140#define BT_L2CAP_ECRED_CHAN_MAX_PER_REQ 5
151#define BT_L2CAP_CID_BR_SIG 0x0001
153#define BT_L2CAP_CID_ATT 0x0004
155#define BT_L2CAP_CID_LE_SIG 0x0005
157#define BT_L2CAP_CID_SMP 0x0006
159#define BT_L2CAP_CID_BR_SMP 0x0007
272#if defined(CONFIG_BT_L2CAP_DYNAMIC_CHANNEL)
276#if defined(CONFIG_BT_L2CAP_SEG_RECV)
300 size_t _pdu_remaining;
312#define BT_L2CAP_LE_CHAN(_ch) CONTAINER_OF(_ch, struct bt_l2cap_le_chan, chan)
372#define BT_L2CAP_FIXED_CHANNEL_DEFINE(_name) \
373 static const STRUCT_SECTION_ITERABLE(bt_l2cap_fixed_chan, \
374 _CONCAT(bt_l2cap_fixed_chan, _name))
377#define BT_L2CAP_BR_LINK_MODE_BASIC 0x00
379#define BT_L2CAP_BR_LINK_MODE_RET 0x01
381#define BT_L2CAP_BR_LINK_MODE_FC 0x02
383#define BT_L2CAP_BR_LINK_MODE_ERET 0x03
385#define BT_L2CAP_BR_LINK_MODE_STREAM 0x04
388#define BT_L2CAP_BR_FCS_NO 0x00
390#define BT_L2CAP_BR_FCS_16BIT 0x01
398#if defined(CONFIG_BT_L2CAP_RET_FC) || defined(__DOXYGEN__)
515#if defined(CONFIG_BT_L2CAP_RET_FC) || defined(__DOXYGEN__)
520 size_t _pdu_remaining;
532 struct k_fifo _free_tx_win;
541#if defined(CONFIG_BT_L2CAP_SEG_RECV) || defined(__DOXYGEN__)
721#if defined(CONFIG_BT_L2CAP_SEG_RECV)
761#define BT_L2CAP_CHAN_SEND_RESERVE (BT_L2CAP_BUF_SIZE(0))
766#define BT_L2CAP_SDU_CHAN_SEND_RESERVE (BT_L2CAP_SDU_BUF_SIZE(0))
long atomic_t
Definition atomic_types.h:15
Bluetooth data buffer API.
Bluetooth connection handling.
#define ATOMIC_DEFINE(name, num_bits)
Define an array of atomic variables.
Definition atomic.h:111
bt_security_t
Security level.
Definition conn.h:955
int bt_l2cap_ecred_chan_reconfigure(struct bt_l2cap_chan **chans, uint16_t mtu)
Reconfigure Enhanced Credit Based L2CAP channels.
int bt_l2cap_server_register(struct bt_l2cap_server *server)
Register L2CAP server.
bt_l2cap_chan_status
Status of L2CAP channel.
Definition l2cap.h:199
enum bt_l2cap_chan_status bt_l2cap_chan_status_t
Status of L2CAP channel.
int bt_l2cap_chan_connect(struct bt_conn *conn, struct bt_l2cap_chan *chan, uint16_t psm)
Connect L2CAP channel.
enum bt_l2cap_chan_state bt_l2cap_chan_state_t
Life-span states of L2CAP CoC channel.
int bt_l2cap_br_server_register(struct bt_l2cap_server *server)
Register L2CAP server on BR/EDR oriented connection.
bt_l2cap_chan_state
Life-span states of L2CAP CoC channel.
Definition l2cap.h:184
int bt_l2cap_ecred_chan_reconfigure_explicit(struct bt_l2cap_chan **chans, size_t chan_count, uint16_t mtu, uint16_t mps)
Reconfigure Enhanced Credit Based L2CAP channels.
int bt_l2cap_chan_disconnect(struct bt_l2cap_chan *chan)
Disconnect L2CAP channel.
int bt_l2cap_br_server_unregister(struct bt_l2cap_server *server)
Unregister L2CAP server on BR/EDR oriented connection.
void(* bt_l2cap_chan_destroy_t)(struct bt_l2cap_chan *chan)
Channel destroy callback.
Definition l2cap.h:170
int bt_l2cap_chan_send(struct bt_l2cap_chan *chan, struct net_buf *buf)
Send data to L2CAP channel.
int bt_l2cap_chan_give_credits(struct bt_l2cap_chan *chan, uint16_t additional_credits)
Give credits to the remote.
int bt_l2cap_chan_recv_complete(struct bt_l2cap_chan *chan, struct net_buf *buf)
Complete receiving L2CAP channel data.
int bt_l2cap_ecred_chan_connect(struct bt_conn *conn, struct bt_l2cap_chan **chans, uint16_t psm)
Connect Enhanced Credit Based L2CAP channels.
@ BT_L2CAP_STATUS_SHUTDOWN
Channel shutdown status.
Definition l2cap.h:208
@ BT_L2CAP_STATUS_OUT
Channel can send at least one PDU.
Definition l2cap.h:201
@ BT_L2CAP_NUM_STATUS
Definition l2cap.h:214
@ BT_L2CAP_STATUS_ENCRYPT_PENDING
Channel encryption pending status.
Definition l2cap.h:211
@ BT_L2CAP_DISCONNECTED
Channel disconnected.
Definition l2cap.h:186
@ BT_L2CAP_CONFIG
Channel in config state, BR/EDR specific.
Definition l2cap.h:190
@ BT_L2CAP_CONNECTED
Channel ready for upper layer traffic on it.
Definition l2cap.h:192
@ BT_L2CAP_DISCONNECTING
Channel in disconnecting state.
Definition l2cap.h:194
@ BT_L2CAP_CONNECTING
Channel in connecting state.
Definition l2cap.h:188
struct _slist sys_slist_t
Single-linked list structure.
Definition slist.h:49
struct _snode sys_snode_t
Single-linked list node structure.
Definition slist.h:39
__INTPTR_TYPE__ off_t
Definition types.h:36
state
Definition parser_state.h:29
__UINT8_TYPE__ uint8_t
Definition stdint.h:88
__UINT16_TYPE__ uint16_t
Definition stdint.h:89
BREDR L2CAP Channel structure.
Definition l2cap.h:487
struct bt_l2cap_br_endpoint rx
Channel Receiving Endpoint.
Definition l2cap.h:491
atomic_t flags[1]
Definition l2cap.h:495
struct k_work_delayable rtx_work
Definition l2cap.h:505
bt_security_t required_sec_level
Definition l2cap.h:502
uint16_t psm
Remote PSM to be connected.
Definition l2cap.h:499
struct k_work_sync rtx_sync
Definition l2cap.h:506
struct bt_l2cap_chan chan
Common L2CAP channel reference object.
Definition l2cap.h:489
uint16_t retry_count
Definition l2cap.h:580
bt_l2cap_chan_state_t state
Definition l2cap.h:497
struct bt_l2cap_br_endpoint tx
Channel Transmission Endpoint.
Definition l2cap.h:493
struct k_work_delayable ret_work
Definition l2cap.h:585
uint16_t next_tx_seq
Definition l2cap.h:555
uint16_t expected_tx_seq
Definition l2cap.h:570
struct bt_l2cap_br_window tx_win[CONFIG_BT_L2CAP_MAX_WINDOW_SIZE]
Definition l2cap.h:535
uint16_t srej_save_req_seq
Definition l2cap.h:582
uint16_t buffer_seq
Definition l2cap.h:575
struct k_work_delayable monitor_work
Definition l2cap.h:587
uint8_t ident
Helps match request context during CoC.
Definition l2cap.h:501
uint16_t tx_seq
Definition l2cap.h:551
uint16_t expected_ack_seq
Definition l2cap.h:559
uint16_t req_seq
Definition l2cap.h:567
BREDR L2CAP Endpoint structure.
Definition l2cap.h:393
uint16_t max_window
Endpoint Maximum Window Size MAX supported window size is configured by \c BT_L2CAP_MAX_WINDOW_SIZE.
Definition l2cap.h:440
uint16_t monitor_timeout
Endpoint Monitor Timeout The field is configured by \c BT_L2CAP_BR_MONITOR_TIMEOUT
Definition l2cap.h:432
uint8_t max_transmit
Endpoint Maximum Transmit The field is used to set the max retransmission count.
Definition l2cap.h:420
uint16_t mtu
Endpoint Maximum Transmission Unit.
Definition l2cap.h:397
uint16_t mps
Endpoint Maximum PDU payload Size.
Definition l2cap.h:434
bool extended_control
Endpoint Extended Control.
Definition l2cap.h:458
uint8_t fcs
Endpoint FCS Type The value is defined as BT_L2CAP_BR_FCS_* The default setting should be BT_L2CAP_BR...
Definition l2cap.h:451
uint16_t cid
Endpoint Channel Identifier (CID)
Definition l2cap.h:395
uint16_t ret_timeout
Endpoint Retransmission Timeout The field is configured by \c BT_L2CAP_BR_RET_TIMEOUT The field shoul...
Definition l2cap.h:427
uint8_t mode
Endpoint Link Mode.
Definition l2cap.h:402
bool optional
Whether Endpoint Link Mode is optional If the optional is true, the mode could be changed according t...
Definition l2cap.h:412
I-Frame transmission window for none BASIC mode L2cap connected channel.
Definition l2cap.h:463
uint8_t * data
data address
Definition l2cap.h:471
bool srej
srej flag
Definition l2cap.h:477
uint16_t sdu_total_len
Definition l2cap.h:483
struct net_buf_simple_state sdu_state
Definition l2cap.h:479
uint16_t len
data len
Definition l2cap.h:469
uint8_t transmit_counter
Transmit Counter.
Definition l2cap.h:473
uint8_t sar
SAR flag.
Definition l2cap.h:475
sys_snode_t node
Definition l2cap.h:464
uint16_t tx_seq
tx seq
Definition l2cap.h:467
struct net_buf * sdu
Definition l2cap.h:481
L2CAP Channel operations structure.
Definition l2cap.h:595
int(* recv)(struct bt_l2cap_chan *chan, struct net_buf *buf)
Channel recv callback.
Definition l2cap.h:681
void(* encrypt_change)(struct bt_l2cap_chan *chan, uint8_t hci_status)
Channel encrypt_change callback.
Definition l2cap.h:630
void(* disconnected)(struct bt_l2cap_chan *chan)
Channel disconnected callback.
Definition l2cap.h:613
void(* connected)(struct bt_l2cap_chan *chan)
Channel connected callback.
Definition l2cap.h:603
void(* status)(struct bt_l2cap_chan *chan, atomic_t *status)
Channel status callback.
Definition l2cap.h:702
void(* released)(struct bt_l2cap_chan *chan)
Definition l2cap.h:709
void(* sent)(struct bt_l2cap_chan *chan)
Channel sent callback.
Definition l2cap.h:692
void(* seg_recv)(struct bt_l2cap_chan *chan, size_t sdu_len, off_t seg_offset, struct net_buf_simple *seg)
Handle L2CAP segments directly.
Definition l2cap.h:753
void(* reconfigured)(struct bt_l2cap_chan *chan)
Channel reconfigured callback.
Definition l2cap.h:719
L2CAP Channel structure.
Definition l2cap.h:218
struct bt_conn * conn
Channel connection reference.
Definition l2cap.h:220
sys_snode_t node
Definition l2cap.h:223
const struct bt_l2cap_chan_ops * ops
Channel operations reference.
Definition l2cap.h:222
atomic_t status[ATOMIC_BITMAP_SIZE(BT_L2CAP_NUM_STATUS)]
Definition l2cap.h:226
bt_l2cap_chan_destroy_t destroy
Definition l2cap.h:224
Fixed L2CAP Channel structure.
Definition l2cap.h:317
uint16_t cid
Channel Identifier (CID)
Definition l2cap.h:325
int(* accept)(struct bt_conn *conn, struct bt_l2cap_chan **chan)
Channel accept callback.
Definition l2cap.h:356
LE L2CAP Channel structure.
Definition l2cap.h:242
struct bt_l2cap_le_endpoint tx
Channel Transmission Endpoint.
Definition l2cap.h:269
uint16_t pending_rx_mtu
Pending RX MTU on ECFC reconfigure, used internally by stack.
Definition l2cap.h:260
struct k_fifo tx_queue
Channel Transmission queue (for SDUs)
Definition l2cap.h:271
struct bt_l2cap_le_endpoint rx
Channel Receiving Endpoint.
Definition l2cap.h:257
struct bt_l2cap_chan chan
Common L2CAP channel reference object.
Definition l2cap.h:244
LE L2CAP Endpoint structure.
Definition l2cap.h:230
uint16_t mtu
Endpoint Maximum Transmission Unit.
Definition l2cap.h:234
uint16_t mps
Endpoint Maximum PDU payload Size.
Definition l2cap.h:236
atomic_t credits
Endpoint credits.
Definition l2cap.h:238
uint16_t cid
Endpoint Channel Identifier (CID)
Definition l2cap.h:232
L2CAP Server structure.
Definition l2cap.h:769
uint16_t psm
Server PSM.
Definition l2cap.h:799
sys_snode_t node
Definition l2cap.h:824
bt_security_t sec_level
Required minimum security level.
Definition l2cap.h:802
int(* accept)(struct bt_conn *conn, struct bt_l2cap_server *server, struct bt_l2cap_chan **chan)
Server accept callback.
Definition l2cap.h:821
A structure used to submit work after a delay.
Definition kernel.h:4321
A structure holding internal state for a pending synchronous operation on a work item or queue.
Definition kernel.h:4404
A structure used to submit work.
Definition kernel.h:4293
Parsing state of a buffer.
Definition net_buf.h:950
Simple network buffer representation.
Definition net_buf.h:89
Network buffer representation.
Definition net_buf.h:1006