iso.h 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593
  1. /** @file
  2. * @brief Bluetooth ISO handling
  3. */
  4. /*
  5. * Copyright (c) 2020 Intel Corporation
  6. * Copyright (c) 2021 Nordic Semiconductor ASA
  7. *
  8. * SPDX-License-Identifier: Apache-2.0
  9. */
  10. #ifndef ZEPHYR_INCLUDE_BLUETOOTH_ISO_H_
  11. #define ZEPHYR_INCLUDE_BLUETOOTH_ISO_H_
  12. /**
  13. * @brief ISO
  14. * @defgroup bt_iso ISO
  15. * @ingroup bluetooth
  16. * @{
  17. */
  18. #ifdef __cplusplus
  19. extern "C" {
  20. #endif
  21. #include <sys/atomic.h>
  22. #include <bluetooth/buf.h>
  23. #include <bluetooth/conn.h>
  24. #include <bluetooth/hci.h>
  25. /** @def BT_ISO_CHAN_SEND_RESERVE
  26. * @brief Headroom needed for outgoing buffers
  27. */
  28. #define BT_ISO_CHAN_SEND_RESERVE (CONFIG_BT_HCI_RESERVE + \
  29. BT_HCI_ISO_HDR_SIZE + \
  30. BT_HCI_ISO_DATA_HDR_SIZE)
  31. /** Value to set the ISO data path over HCi. */
  32. #define BT_ISO_DATA_PATH_HCI 0x00
  33. /** Minimum interval value in microseconds */
  34. #define BT_ISO_INTERVAL_MIN 0x0000FF
  35. /** Maximum interval value in microseconds */
  36. #define BT_ISO_INTERVAL_MAX 0x0FFFFF
  37. /** Minimum latency value in milliseconds */
  38. #define BT_ISO_LATENCY_MIN 0x0005
  39. /** Maximum latency value in milliseconds */
  40. #define BT_ISO_LATENCY_MAX 0x0FA0
  41. /** Packets will be sent sequentially between the channels in the group */
  42. #define BT_ISO_PACKING_SEQUENTIAL 0x00
  43. /** Packets will be sent interleaved between the channels in the group */
  44. #define BT_ISO_PACKING_INTERLEAVED 0x01
  45. /** Packets may be framed or unframed */
  46. #define BT_ISO_FRAMING_UNFRAMED 0x00
  47. /** Packets are always framed */
  48. #define BT_ISO_FRAMING_FRAMED 0x01
  49. /** Maximum number of isochronous channels in a single group */
  50. #define BT_ISO_MAX_GROUP_ISO_COUNT 0x1F
  51. /** Maximum SDU size */
  52. #define BT_ISO_MAX_SDU 0x0FFF
  53. /** Minimum BIG sync timeout value (N * 10 ms) */
  54. #define BT_ISO_SYNC_TIMEOUT_MIN 0x000A
  55. /** Maximum BIG sync timeout value (N * 10 ms) */
  56. #define BT_ISO_SYNC_TIMEOUT_MAX 0x4000
  57. /** Controller controlled maximum subevent count value */
  58. #define BT_ISO_SYNC_MSE_ANY 0x00
  59. /** Minimum BIG sync maximum subevent count value */
  60. #define BT_ISO_SYNC_MSE_MIN 0x01
  61. /** Maximum BIG sync maximum subevent count value */
  62. #define BT_ISO_SYNC_MSE_MAX 0x1F
  63. /** Maximum connected ISO retransmission value */
  64. #define BT_ISO_CONNECTED_RTN_MAX 0xFF
  65. /** Maximum broadcast ISO retransmission value */
  66. #define BT_ISO_BROADCAST_RTN_MAX 0x1E
  67. /** Broadcast code size */
  68. #define BT_ISO_BROADCAST_CODE_SIZE 16
  69. /** @brief Life-span states of ISO channel. Used only by internal APIs
  70. * dealing with setting channel to proper state depending on operational
  71. * context.
  72. */
  73. enum {
  74. /** Channel disconnected */
  75. BT_ISO_DISCONNECTED,
  76. /** Channel in connecting state */
  77. BT_ISO_CONNECT,
  78. /** Channel ready for upper layer traffic on it */
  79. BT_ISO_CONNECTED,
  80. /** Channel in disconnecting state */
  81. BT_ISO_DISCONNECT,
  82. };
  83. /** @brief ISO Channel structure. */
  84. struct bt_iso_chan {
  85. /** Channel connection reference */
  86. struct bt_conn *iso;
  87. /** Channel operations reference */
  88. struct bt_iso_chan_ops *ops;
  89. /** Channel QoS reference */
  90. struct bt_iso_chan_qos *qos;
  91. uint8_t state;
  92. bt_security_t required_sec_level;
  93. };
  94. /** @brief ISO Channel IO QoS structure. */
  95. struct bt_iso_chan_io_qos {
  96. /** Channel SDU. Maximum value is BT_ISO_MAX_SDU */
  97. uint16_t sdu;
  98. /** Channel PHY - See BT_GAP_LE_PHY for values.
  99. * Setting BT_GAP_LE_PHY_NONE is invalid.
  100. */
  101. uint8_t phy;
  102. /** Channel Retransmission Number. */
  103. uint8_t rtn;
  104. /** @brief Channel data path reference
  105. *
  106. * Setting to NULL default to HCI data path (same as setting path.pid
  107. * to BT_ISO_DATA_PATH_HCI).
  108. */
  109. struct bt_iso_chan_path *path;
  110. };
  111. /** @brief ISO Channel QoS structure. */
  112. struct bt_iso_chan_qos {
  113. /** @brief Channel Receiving QoS.
  114. *
  115. * Setting NULL disables data path BT_HCI_DATAPATH_DIR_CTLR_TO_HOST.
  116. *
  117. * Can only be set for a connected isochronous channel, or a broadcast
  118. * isochronous receiver.
  119. */
  120. struct bt_iso_chan_io_qos *rx;
  121. /** @brief Channel Transmission QoS
  122. *
  123. * Setting NULL disables data path BT_HCI_DATAPATH_DIR_HOST_TO_CTRL.
  124. *
  125. * Can only be set for a connected isochronous channel, or a broadcast
  126. * isochronous transmitter.
  127. */
  128. struct bt_iso_chan_io_qos *tx;
  129. };
  130. /** @brief ISO Channel Data Path structure. */
  131. struct bt_iso_chan_path {
  132. /** Default path ID */
  133. uint8_t pid;
  134. /** Coding Format */
  135. uint8_t format;
  136. /** Company ID */
  137. uint16_t cid;
  138. /** Vendor-defined Codec ID */
  139. uint16_t vid;
  140. /** Controller Delay */
  141. uint32_t delay;
  142. /** Codec Configuration length*/
  143. uint8_t cc_len;
  144. /** Codec Configuration */
  145. uint8_t cc[0];
  146. };
  147. /** ISO packet status flags */
  148. enum {
  149. /** The ISO packet is valid. */
  150. BT_ISO_FLAGS_VALID,
  151. /** @brief The ISO packet may possibly contain errors.
  152. *
  153. * May be caused by a failed CRC check or if missing a part of the SDU.
  154. */
  155. BT_ISO_FLAGS_ERROR,
  156. /** The ISO packet was lost. */
  157. BT_ISO_FLAGS_LOST
  158. };
  159. /** @brief ISO Meta Data structure for received ISO packets. */
  160. struct bt_iso_recv_info {
  161. /** ISO timestamp - valid only if the Bluetooth controller includes it
  162. * If time stamp is not pressent this value will be 0 on all iso packets
  163. */
  164. uint32_t ts;
  165. /** ISO packet sequence number of the first fragment in the SDU */
  166. uint16_t sn;
  167. /** ISO packet flags (BT_ISO_FLAGS_*) */
  168. uint8_t flags;
  169. };
  170. /** Opaque type representing an Connected Isochronous Group (CIG). */
  171. struct bt_iso_cig;
  172. struct bt_iso_cig_create_param {
  173. /** @brief Array of pointers to CIS channels
  174. *
  175. * This array shall remain valid for the duration of the CIG.
  176. */
  177. struct bt_iso_chan **cis_channels;
  178. /** @brief Number channels in @p cis_channels
  179. *
  180. * Maximum number of channels in a single group is
  181. * BT_ISO_MAX_GROUP_ISO_COUNT
  182. */
  183. uint8_t num_cis;
  184. /** @brief Channel interval in us.
  185. *
  186. * Value range BT_ISO_INTERVAL_MIN - BT_ISO_INTERVAL_MAX.
  187. */
  188. uint32_t interval;
  189. /** @brief Channel Latency in ms.
  190. *
  191. * Value range BT_ISO_LATENCY_MIN - BT_ISO_LATENCY_MAX.
  192. */
  193. uint16_t latency;
  194. /** @brief Channel peripherals sleep clock accuracy Only for CIS
  195. *
  196. * Shall be worst case sleep clock accuracy of all the peripherals.
  197. * For possible values see the BT_GAP_SCA_* values.
  198. * If unknown for the peripherals, this should be set to
  199. * BT_GAP_SCA_UNKNOWN.
  200. */
  201. uint8_t sca;
  202. /** @brief Channel packing mode.
  203. *
  204. * BT_ISO_PACKING_SEQUENTIAL or BT_ISO_PACKING_INTERLEAVED
  205. */
  206. uint8_t packing;
  207. /** @brief Channel framing mode.
  208. *
  209. * BT_ISO_FRAMING_UNFRAMED for unframed and
  210. * BT_ISO_FRAMING_FRAMED for framed.
  211. */
  212. uint8_t framing;
  213. };
  214. struct bt_iso_connect_param {
  215. /* The ISO channel to connect */
  216. struct bt_iso_chan *iso_chan;
  217. /* The ACL connection */
  218. struct bt_conn *acl;
  219. };
  220. /** Opaque type representing an Broadcast Isochronous Group (BIG). */
  221. struct bt_iso_big;
  222. struct bt_iso_big_create_param {
  223. /** Array of pointers to BIS channels
  224. *
  225. * This array shall remain valid for the duration of the BIG.
  226. */
  227. struct bt_iso_chan **bis_channels;
  228. /** @brief Number channels in @p bis_channels
  229. *
  230. * Maximum number of channels in a single group is
  231. * BT_ISO_MAX_GROUP_ISO_COUNT
  232. */
  233. uint8_t num_bis;
  234. /** @brief Channel interval in us.
  235. *
  236. * Value range BT_ISO_INTERVAL_MIN - BT_ISO_INTERVAL_MAX.
  237. */
  238. uint32_t interval;
  239. /** @brief Channel Latency in ms.
  240. *
  241. * Value range BT_ISO_LATENCY_MIN - BT_ISO_LATENCY_MAX.
  242. */
  243. uint16_t latency;
  244. /** @brief Channel packing mode.
  245. *
  246. * BT_ISO_PACKING_SEQUENTIAL or BT_ISO_PACKING_INTERLEAVED
  247. */
  248. uint8_t packing;
  249. /** @brief Channel framing mode.
  250. *
  251. * BT_ISO_FRAMING_UNFRAMED for unframed and
  252. * BT_ISO_FRAMING_FRAMED for framed.
  253. */
  254. uint8_t framing;
  255. /** Whether or not to encrypt the streams. */
  256. bool encryption;
  257. /** @brief Broadcast code
  258. *
  259. * The code used to derive the session key that is used to encrypt and
  260. * decrypt BIS payloads.
  261. */
  262. uint8_t bcode[BT_ISO_BROADCAST_CODE_SIZE];
  263. };
  264. struct bt_iso_big_sync_param {
  265. /** Array of pointers to BIS channels */
  266. struct bt_iso_chan **bis_channels;
  267. /** @brief Number channels in @p bis_channels
  268. *
  269. * Maximum number of channels in a single group is
  270. * BT_ISO_MAX_GROUP_ISO_COUNT
  271. */
  272. uint8_t num_bis;
  273. /** Bitfield of the BISes to sync to
  274. *
  275. * The BIS indexes start from 0x01, so the lowest allowed bit is
  276. * BIT(1) that represents index 0x01. To synchronize to e.g. BIS
  277. * indexes 0x01 and 0x02, the bitfield value should be BIT(1) | BIT(2).
  278. */
  279. uint32_t bis_bitfield;
  280. /** @brief Maximum subevents
  281. *
  282. * The MSE (Maximum Subevents) parameter is the maximum number of
  283. * subevents that a Controller should use to receive data payloads
  284. * in each interval for a BIS.
  285. *
  286. * Value range is BT_ISO_SYNC_MSE_MIN to BT_ISO_SYNC_MSE_MAX, or
  287. * BT_ISO_SYNC_MSE_ANY to let the controller choose.
  288. */
  289. uint32_t mse;
  290. /** @brief Synchronization timeout for the BIG (N * 10 MS)
  291. *
  292. * Value range is BT_ISO_SYNC_TIMEOUT_MIN to BT_ISO_SYNC_TIMEOUT_MAX.
  293. */
  294. uint16_t sync_timeout;
  295. /** Whether or not the streams of the BIG are encrypted */
  296. bool encryption;
  297. /** @brief Broadcast code
  298. *
  299. * The code used to derive the session key that is used to encrypt and
  300. * decrypt BIS payloads.
  301. */
  302. uint8_t bcode[BT_ISO_BROADCAST_CODE_SIZE];
  303. };
  304. struct bt_iso_biginfo {
  305. /** Address of the advertiser */
  306. const bt_addr_le_t *addr;
  307. /** Advertiser SID */
  308. uint8_t sid;
  309. /** Number of BISes in the BIG */
  310. uint8_t num_bis;
  311. /** Maximum number of subevents in each isochronous event */
  312. uint8_t sub_evt_count;
  313. /** Interval between two BIG anchor point (N * 1.25 ms) */
  314. uint16_t iso_interval;
  315. /** The number of new payloads in each BIS event */
  316. uint8_t burst_number;
  317. /** Offset used for pre-transmissions */
  318. uint8_t offset;
  319. /** The number of times a payload is transmitted in a BIS event */
  320. uint8_t rep_count;
  321. /** Maximum size, in octets, of the payload */
  322. uint16_t max_pdu;
  323. /** The interval, in microseconds, of periodic SDUs. */
  324. uint32_t sdu_interval;
  325. /** Maximum size of an SDU, in octets. */
  326. uint16_t max_sdu;
  327. /** Channel PHY */
  328. uint8_t phy;
  329. /** Channel framing mode */
  330. uint8_t framing;
  331. /** Whether or not the BIG is encrypted */
  332. bool encryption;
  333. };
  334. /** @brief ISO Channel operations structure. */
  335. struct bt_iso_chan_ops {
  336. /** @brief Channel connected callback
  337. *
  338. * If this callback is provided it will be called whenever the
  339. * connection completes.
  340. *
  341. * @param chan The channel that has been connected
  342. */
  343. void (*connected)(struct bt_iso_chan *chan);
  344. /** @brief Channel disconnected callback
  345. *
  346. * If this callback is provided it will be called whenever the
  347. * channel is disconnected, including when a connection gets
  348. * rejected.
  349. *
  350. * @param chan The channel that has been Disconnected
  351. * @param reason HCI reason for the disconnection.
  352. */
  353. void (*disconnected)(struct bt_iso_chan *chan, uint8_t reason);
  354. /** @brief Channel alloc_buf callback
  355. *
  356. * If this callback is provided the channel will use it to allocate
  357. * buffers to store incoming data.
  358. *
  359. * @param chan The channel requesting a buffer.
  360. *
  361. * @return Allocated buffer.
  362. */
  363. struct net_buf *(*alloc_buf)(struct bt_iso_chan *chan);
  364. /** @brief Channel recv callback
  365. *
  366. * @param chan The channel receiving data.
  367. * @param buf Buffer containing incoming data.
  368. * @param info Pointer to the metadata for the buffer. The lifetime of the
  369. * pointer is linked to the lifetime of the net_buf.
  370. * Metadata such as sequence number and timestamp can be
  371. * provided by the bluetooth controller.
  372. */
  373. void (*recv)(struct bt_iso_chan *chan, const struct bt_iso_recv_info *info,
  374. struct net_buf *buf);
  375. /** @brief Channel sent callback
  376. *
  377. * If this callback is provided it will be called whenever a SDU has
  378. * been completely sent.
  379. *
  380. * @param chan The channel which has sent data.
  381. */
  382. void (*sent)(struct bt_iso_chan *chan);
  383. };
  384. /** @brief ISO Server structure. */
  385. struct bt_iso_server {
  386. /** Required minimim security level */
  387. bt_security_t sec_level;
  388. /** @brief Server accept callback
  389. *
  390. * This callback is called whenever a new incoming connection requires
  391. * authorization.
  392. *
  393. * @param acl The ACL connection that is requesting authorization
  394. * @param chan Pointer to receive the allocated channel
  395. *
  396. * @return 0 in case of success or negative value in case of error.
  397. */
  398. int (*accept)(struct bt_conn *acl, struct bt_iso_chan **chan);
  399. };
  400. /** @brief Register ISO server.
  401. *
  402. * Register ISO server, each new connection is authorized using the accept()
  403. * callback which in case of success shall allocate the channel structure
  404. * to be used by the new connection.
  405. *
  406. * @param server Server structure.
  407. *
  408. * @return 0 in case of success or negative value in case of error.
  409. */
  410. int bt_iso_server_register(struct bt_iso_server *server);
  411. /** @brief Creates a CIG as a central
  412. *
  413. * This can called at any time, even before connecting to a remote device.
  414. * This must be called before any connected isochronous stream (CIS) channel
  415. * can be connected.
  416. *
  417. * Once a CIG is created, the channels supplied in the @p param can be
  418. * connected using bt_iso_chan_connect.
  419. *
  420. * @param[in] param The parameters used to create and enable the CIG.
  421. * @param[out] out_cig Connected Isochronous Group object on success.
  422. *
  423. * @return 0 in case of success or negative value in case of error.
  424. */
  425. int bt_iso_cig_create(const struct bt_iso_cig_create_param *param,
  426. struct bt_iso_cig **out_cig);
  427. /** @brief Terminates a CIG as a central
  428. *
  429. * All the CIS in the CIG shall be disconnected first.
  430. *
  431. * @param cig Pointer to the CIG structure.
  432. *
  433. * @return 0 in case of success or negative value in case of error.
  434. */
  435. int bt_iso_cig_terminate(struct bt_iso_cig *cig);
  436. /** @brief Connect ISO channels on ACL connections
  437. *
  438. * Connect ISO channels. The ISO channels must have been initialized in a CIG
  439. * first by calling bt_iso_cig_create.
  440. *
  441. * Once the connection is completed the channels' connected() callback will be
  442. * called. If the connection is rejected disconnected() callback is called
  443. * instead.
  444. *
  445. * This function will also setup the ISO data path based on the @p path
  446. * parameter of the bt_iso_chan_io_qos for each channel.
  447. *
  448. * @param param Pointer to a connect parameter array with the ISO and ACL pointers.
  449. * @param count Number of connect parameters.
  450. *
  451. * @return 0 in case of success or negative value in case of error.
  452. */
  453. int bt_iso_chan_connect(const struct bt_iso_connect_param *param, size_t count);
  454. /** @brief Disconnect ISO channel
  455. *
  456. * Disconnect ISO channel, if the connection is pending it will be
  457. * canceled and as a result the channel disconnected() callback is called.
  458. * Regarding to input parameter, to get details see reference description
  459. * to bt_iso_chan_connect() API above.
  460. *
  461. * @param chan Channel object.
  462. *
  463. * @return 0 in case of success or negative value in case of error.
  464. */
  465. int bt_iso_chan_disconnect(struct bt_iso_chan *chan);
  466. /** @brief Send data to ISO channel
  467. *
  468. * Send data from buffer to the channel. If credits are not available, buf will
  469. * be queued and sent as and when credits are received from peer.
  470. * Regarding to first input parameter, to get details see reference description
  471. * to bt_iso_chan_connect() API above.
  472. *
  473. * @note Buffer ownership is transferred to the stack in case of success, in
  474. * case of an error the caller retains the ownership of the buffer.
  475. *
  476. * @param chan Channel object.
  477. * @param buf Buffer containing data to be sent.
  478. *
  479. * @return Bytes sent in case of success or negative value in case of error.
  480. */
  481. int bt_iso_chan_send(struct bt_iso_chan *chan, struct net_buf *buf);
  482. /** @brief Creates a BIG as a broadcaster
  483. *
  484. * @param[in] padv Pointer to the periodic advertising object the BIGInfo shall be sent on.
  485. * @param[in] param The parameters used to create and enable the BIG. The QOS parameters are
  486. * determined by the QOS field of the first BIS in the BIS list of this
  487. * parameter.
  488. * @param[out] out_big Broadcast Isochronous Group object on success.
  489. *
  490. * @return 0 in case of success or negative value in case of error.
  491. */
  492. int bt_iso_big_create(struct bt_le_ext_adv *padv, struct bt_iso_big_create_param *param,
  493. struct bt_iso_big **out_big);
  494. /** @brief Terminates a BIG as a broadcaster or receiver
  495. *
  496. * @param big Pointer to the BIG structure.
  497. *
  498. * @return 0 in case of success or negative value in case of error.
  499. */
  500. int bt_iso_big_terminate(struct bt_iso_big *big);
  501. /** @brief Creates a BIG as a receiver
  502. *
  503. * @param[in] sync Pointer to the periodic advertising sync object the BIGInfo was received on.
  504. * @param[in] param The parameters used to create and enable the BIG sync.
  505. * @param[out] out_big Broadcast Isochronous Group object on success.
  506. *
  507. * @return 0 in case of success or negative value in case of error.
  508. */
  509. int bt_iso_big_sync(struct bt_le_per_adv_sync *sync, struct bt_iso_big_sync_param *param,
  510. struct bt_iso_big **out_big);
  511. #ifdef __cplusplus
  512. }
  513. #endif
  514. /**
  515. * @}
  516. */
  517. #endif /* ZEPHYR_INCLUDE_BLUETOOTH_ISO_H_ */