Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Oct 3354 cherry pick fix for set size notification in csip #2659

Merged
2 changes: 1 addition & 1 deletion doc/connectivity/bluetooth/shell/audio/cap.rst
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Setting a new SIRK

This command can modify the currently used SIRK. To get the new RSI to advertise on air,
:code:`bt adv-data` or :code:`bt advertise` must be called again to set the new advertising data.
If :code:`CONFIG_BT_CSIP_SET_MEMBER_NOTIFIABLE` is enabled, this will also notify connected
If :code:`CONFIG_BT_CSIP_SET_MEMBER_SIRK_NOTIFIABLE` is enabled, this will also notify connected
clients.

.. code-block:: console
Expand Down
53 changes: 37 additions & 16 deletions doc/connectivity/bluetooth/shell/audio/csip.rst
Original file line number Diff line number Diff line change
Expand Up @@ -144,15 +144,18 @@ Using the Set Member

csip_set_member --help
csip_set_member - Bluetooth CSIP set member shell commands
Subcommands:
register :Initialize the service and register callbacks [size <int>]
[rank <int>] [not-lockable] [sirk <data>]
lock :Lock the set
release :Release the set [force]
sirk :Set the currently used SIRK <sirk>
get_sirk :Get the currently used SIRK
sirk_rsp :Set the response used in SIRK requests <accept, accept_enc,
reject, oob>
Subcommands:
register : Initialize the service and register callbacks [size
<int>] [rank <int>] [not-lockable] [sirk <data>]
lock : Lock the set
release : Release the set [force]
sirk : Set the currently used SIRK <sirk>
set_size_and_rank : Set the currently used size and rank <size> <rank>
get_info : Get service info
sirk_rsp : Set the response used in SIRK requests <accept,
accept_enc, reject, oob>



Example Usage
=============
Expand All @@ -171,22 +174,40 @@ Setting a new SIRK

This command can modify the currently used SIRK. To get the new RSI to advertise on air,
:code:`bt adv-data` or :code:`bt advertise` must be called again to set the new advertising data.
If :code:`CONFIG_BT_CSIP_SET_MEMBER_NOTIFIABLE` is enabled, this will also notify connected
If :code:`CONFIG_BT_CSIP_SET_MEMBER_SIRK_NOTIFIABLE` is enabled, this will also notify connected
clients.

.. code-block:: console

uart:~$ csip_set_member sirk 00112233445566778899aabbccddeeff
SIRK updated

Getting the current SIRK
Setting a new set size and rank
-------------------------------

This command can modify the set size and rank of a service instance.
This shall be done for all device in the set at the same time,
and all devices shall have the same set size.
The rank will be ignored if the set is not lockable, else the rank shall be <= the set size,
and shall be unique for this device in the set.

.. code-block:: console

uart:~$ csip_set_member set_size_and_rank 1 1
Set size and rank updated to 1 and 1

Getting the current info
------------------------

This command can get the currently used SIRK.
This command can get the currently used set info.

.. code-block:: console

uart:~$ csip_set_member get_sirk
SIRK
36 04 9a dc 66 3a a1 a1 |6...f:..
1d 9a 2f 41 01 73 3e 01 |../A.s>.
uart:~$ csip_set_member get_info
Info for 0x2003b0c8
SIRK
00000000: 20 37 0a 00 95 c4 04 20 00 00 00 00 f1 79 09 00 | 7..... .....y..|
Set size: 2
Rank: 1
Lockable: true
Locked: false
6 changes: 6 additions & 0 deletions doc/releases/migration-guide-4.2.rst
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,12 @@ Device Drivers and Devicetree
Bluetooth
*********

Bluetooth Audio
===============

* ``CONFIG_BT_CSIP_SET_MEMBER_NOTIFIABLE`` has been renamed to
:kconfig:option:`CONFIG_BT_CSIP_SET_MEMBER_SIRK_NOTIFIABLE``. (:github:`86763``)

Bluetooth Host
==============

Expand Down
14 changes: 14 additions & 0 deletions doc/releases/release-notes-4.2.rst
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,20 @@ New APIs and options

* Bluetooth

* Audio

* :c:macro:`BT_BAP_ADV_PARAM_CONN_QUICK`
* :c:macro:`BT_BAP_ADV_PARAM_CONN_REDUCED`
* :c:macro:`BT_BAP_CONN_PARAM_SHORT_7_5`
* :c:macro:`BT_BAP_CONN_PARAM_SHORT_10`
* :c:macro:`BT_BAP_CONN_PARAM_RELAXED`
* :c:macro:`BT_BAP_ADV_PARAM_BROADCAST_FAST`
* :c:macro:`BT_BAP_ADV_PARAM_BROADCAST_SLOW`
* :c:macro:`BT_BAP_PER_ADV_PARAM_BROADCAST_FAST`
* :c:macro:`BT_BAP_PER_ADV_PARAM_BROADCAST_SLOW`
* :c:func:`bt_csip_set_member_set_size_and_rank`
* :c:func:`bt_csip_set_member_get_info`

* Host

* :c:func:`bt_le_get_local_features`
Expand Down
95 changes: 95 additions & 0 deletions include/zephyr/bluetooth/audio/bap.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
#include <zephyr/bluetooth/addr.h>
#include <zephyr/bluetooth/bluetooth.h>
#include <zephyr/bluetooth/conn.h>
#include <zephyr/bluetooth/gap.h>
#include <zephyr/bluetooth/iso.h>
#include <zephyr/net_buf.h>
#include <zephyr/sys/slist.h>
Expand All @@ -50,6 +51,100 @@ extern "C" {
/** An invalid Broadcast ID */
#define BT_BAP_INVALID_BROADCAST_ID 0xFFFFFFFFU

/**
* @brief Recommended connectable advertising parameters
*
* If connection has not been established after 30 seconds, the device should switch to
* @ref BT_BAP_ADV_PARAM_CONN_REDUCED
*
* Defined by Table 8.1 in BAP 1.0.2
*/
#define BT_BAP_ADV_PARAM_CONN_QUICK \
BT_LE_ADV_PARAM(BT_LE_ADV_OPT_CONN | BT_LE_ADV_OPT_EXT_ADV, BT_GAP_MS_TO_ADV_INTERVAL(20), \
BT_GAP_MS_TO_ADV_INTERVAL(30), NULL)

/**
* @brief Reduced connectable advertising parameters
*
* Defined by Table 8.1 in BAP 1.0.2
*/
#define BT_BAP_ADV_PARAM_CONN_REDUCED \
BT_LE_ADV_PARAM(BT_LE_ADV_OPT_CONN | BT_LE_ADV_OPT_EXT_ADV, \
BT_GAP_MS_TO_ADV_INTERVAL(150), BT_GAP_MS_TO_ADV_INTERVAL(150), NULL)

/**
* @brief Recommended connection parameters for initial connection request for 7.5 ms SDU interval
*
* Once service discovery has completed and a stream is setup, it is recommended to switch to
* @ref BT_BAP_CONN_PARAM_RELAXED
*
* Defined by Table 8.3 in BAP 1.0.2
*/
#define BT_BAP_CONN_PARAM_SHORT_7_5 \
BT_LE_CONN_PARAM(BT_GAP_US_TO_CONN_INTERVAL(7500), BT_GAP_MS_TO_CONN_INTERVAL(30), 0, \
BT_GAP_MS_TO_CONN_TIMEOUT(4000))

/**
* @brief Recommended connection parameters for initial connection request for 10 ms SDU interval
*
* Once service discovery has completed and a stream is setup, it is recommended to switch to
* @ref BT_BAP_CONN_PARAM_RELAXED
*
* Defined by Table 8.3 in BAP 1.0.2
*/
#define BT_BAP_CONN_PARAM_SHORT_10 \
BT_LE_CONN_PARAM(BT_GAP_MS_TO_CONN_INTERVAL(10), BT_GAP_MS_TO_CONN_INTERVAL(30), 0, \
BT_GAP_MS_TO_CONN_TIMEOUT(4000))

/**
* @brief Recommended connection parameters for coexistence of ACL and ISO
*
* Defined by Table 8.3 in BAP 1.0.2
*/
#define BT_BAP_CONN_PARAM_RELAXED \
BT_LE_CONN_PARAM(BT_GAP_MS_TO_CONN_INTERVAL(50), BT_GAP_MS_TO_CONN_INTERVAL(70), 0, \
BT_GAP_MS_TO_CONN_TIMEOUT(4000))

/**
* @brief Fast advertising parameters for broadcast audio
*
* This is suitable for both 7.5 ms and 10 ms SDU intervals, but prioritizes lower time to
* synchronize over coexistence with ISO and power consumption.
*/
#define BT_BAP_ADV_PARAM_BROADCAST_FAST \
BT_LE_ADV_PARAM(BT_LE_ADV_OPT_EXT_ADV, BT_GAP_MS_TO_ADV_INTERVAL(60), \
BT_GAP_MS_TO_ADV_INTERVAL(60), NULL)

/**
* @brief Slow advertising parameters for broadcast audio
*
* This is suitable for both 7.5 ms and 10 ms SDU intervals, but prioritizes coexistence with ISO
* and power consumption over lower time to synchronize.
*/
#define BT_BAP_ADV_PARAM_BROADCAST_SLOW \
BT_LE_ADV_PARAM(BT_LE_ADV_OPT_EXT_ADV, BT_GAP_MS_TO_ADV_INTERVAL(150), \
BT_GAP_MS_TO_ADV_INTERVAL(150), NULL)

/**
* @brief Fast advertising parameters for broadcast audio
*
* This is suitable for both 7.5 ms and 10 ms SDU intervals, but prioritizes lower time to
* synchronize over coexistence with ISO and power consumption.
*/
#define BT_BAP_PER_ADV_PARAM_BROADCAST_FAST \
BT_LE_PER_ADV_PARAM(BT_GAP_MS_TO_PER_ADV_INTERVAL(60), BT_GAP_MS_TO_PER_ADV_INTERVAL(60), \
BT_LE_PER_ADV_OPT_NONE)

/**
* @brief Slow advertising parameters for broadcast audio
*
* This is suitable for both 7.5 ms and 10 ms SDU intervals, but prioritizes coexistence with ISO
* and power consumption over lower time to synchronize.
*/
#define BT_BAP_PER_ADV_PARAM_BROADCAST_SLOW \
BT_LE_PER_ADV_PARAM(BT_GAP_MS_TO_PER_ADV_INTERVAL(150), \
BT_GAP_MS_TO_PER_ADV_INTERVAL(150), BT_LE_PER_ADV_OPT_NONE)

/**
* @brief Check if a BAP BASS BIS_Sync bitfield is valid
*
Expand Down
85 changes: 85 additions & 0 deletions include/zephyr/bluetooth/audio/csip.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
#include <stdint.h>

#include <zephyr/autoconf.h>
#include <zephyr/bluetooth/addr.h>
#include <zephyr/bluetooth/bluetooth.h>
#include <zephyr/bluetooth/conn.h>
#include <zephyr/bluetooth/gap.h>
Expand Down Expand Up @@ -237,6 +238,70 @@ int bt_csip_set_member_sirk(struct bt_csip_set_member_svc_inst *svc_inst,
int bt_csip_set_member_get_sirk(struct bt_csip_set_member_svc_inst *svc_inst,
uint8_t sirk[BT_CSIP_SIRK_SIZE]);

/**
* @brief Set a new size and rank for a service instance
*
* This function can be used to dynamically change the size and rank of a service instance.
* It is important to note that a set cannot have multiple devices with the same rank in a set,
* and it is up to the caller of this function to ensure that.
* Similarly, it is important that the size is updated on all devices in the set at the same time.
*
* If @kconfig{CONFIG_BT_CSIP_SET_MEMBER_SIZE_NOTIFIABLE} is enabled, this will also send a
* notification to all connected or bonded clients.
*
* @param svc_inst The service instance.
* @param size The new set size.
* @param rank The new rank. Ignored if the @p svc_inst is not lockable.
*
* @retval -EINVAL @p svc_inst is NULL, @p size is less than 1, @p rank is less than 1 or higher
* than @p size for a lockable @p svc_inst.
* @retval -EALREADY @p size and @p rank are already the provided values.
* @retval 0 Success.
*/
int bt_csip_set_member_set_size_and_rank(struct bt_csip_set_member_svc_inst *svc_inst, uint8_t size,
uint8_t rank);

/** Struct to hold information about a service instance */
struct bt_csip_set_member_set_info {
/** The 16-octet SIRK */
uint8_t sirk[BT_CSIP_SIRK_SIZE];

/** The set size */
uint8_t set_size;

/**
* @brief The rank
*
* May be 0 if the set is not lockable
*/
uint8_t rank;

/** Whether the set is lockable */
bool lockable: 1;

/** Whether the set is currently locked */
bool locked: 1;

/**
* @brief The address of the client that currently holds the lock
*
* Will be @ref BT_ADDR_LE_NONE if the server holds the lock
*/
bt_addr_le_t lock_client_addr;
};

/**
* @brief Get information about a service instances
*
* @param svc_inst The service instance.
* @param info Pointer to a struct to store the information in.
*
* @retval -EINVAL @p svc_inst or @p info is NULL.
* @retval 0 Success.
*/
int bt_csip_set_member_get_info(const struct bt_csip_set_member_svc_inst *svc_inst,
struct bt_csip_set_member_set_info *info);

/**
* @brief Generate the Resolvable Set Identifier (RSI) value.
*
Expand Down Expand Up @@ -382,6 +447,24 @@ typedef void (*bt_csip_set_coordinator_lock_changed_cb)(
typedef void (*bt_csip_set_coordinator_sirk_changed_cb)(
struct bt_csip_set_coordinator_csis_inst *inst);

/**
* @typedef bt_csip_set_coordinator_size_changed_cb
* @brief Callback when the size of a set of a connected device changes.
*
* Since all devices in a set shall have the same set size value.
* Each connected device may send the same new size set in a notification,
* assuming that the remote device supports notifications of the set size.
*
* The rank of each device in the set may also change as part of this, so it is advisable to call
* bt_csip_set_coordinator_discover() to rediscover and read the characteristic values of the sets
* on each device.
*
* @param inst The Coordinated Set Identification Service instance that was changed.
* The new size is stored in the @p inst->info.size.
*/
typedef void (*bt_csip_set_coordinator_size_changed_cb)(
struct bt_conn *conn, const struct bt_csip_set_coordinator_csis_inst *inst);

/**
* @typedef bt_csip_set_coordinator_ordered_access_cb_t
* @brief Callback for bt_csip_set_coordinator_ordered_access()
Expand Down Expand Up @@ -417,6 +500,8 @@ struct bt_csip_set_coordinator_cb {
bt_csip_set_coordinator_lock_changed_cb lock_changed;
/** Callback when a set's SIRK has changed */
bt_csip_set_coordinator_sirk_changed_cb sirk_changed;
/** Callback when a set's size has changed */
bt_csip_set_coordinator_size_changed_cb size_changed;
/** Callback for the ordered access procedure */
bt_csip_set_coordinator_ordered_access_cb_t ordered_access;

Expand Down
3 changes: 1 addition & 2 deletions samples/bluetooth/bap_broadcast_assistant/src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -383,8 +383,7 @@ static void scan_recv_cb(const struct bt_le_scan_recv_info *info,
printk("Connecting to Broadcast Sink: %s\n", sr_info.bt_name);

err = bt_conn_le_create(info->addr, BT_CONN_LE_CREATE_CONN,
BT_LE_CONN_PARAM_DEFAULT,
&broadcast_sink_conn);
BT_BAP_CONN_PARAM_RELAXED, &broadcast_sink_conn);
if (err != 0) {
printk("Failed creating connection (err=%u)\n", err);
scan_for_broadcast_sink();
Expand Down
6 changes: 6 additions & 0 deletions samples/bluetooth/bap_broadcast_sink/prj.conf
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ CONFIG_BT_AUDIO=y
CONFIG_BT_SMP=y
CONFIG_BT_PAC_SNK=y
CONFIG_BT_PERIPHERAL=y
CONFIG_BT_GAP_AUTO_UPDATE_CONN_PARAMS=n
# Set preferred values based on BT_BAP_CONN_PARAM_RELAXED
CONFIG_BT_PERIPHERAL_PREF_MIN_INT=50
CONFIG_BT_PERIPHERAL_PREF_MAX_INT=70
CONFIG_BT_PERIPHERAL_PREF_LATENCY=0
CONFIG_BT_PERIPHERAL_PREF_TIMEOUT=400
CONFIG_BT_OBSERVER=y
CONFIG_BT_GATT_DYNAMIC_DB=y
CONFIG_BT_EXT_ADV=y
Expand Down
2 changes: 1 addition & 1 deletion samples/bluetooth/bap_broadcast_sink/src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -1395,7 +1395,7 @@ static int start_adv(void)
int err;

/* Create a connectable advertising set */
err = bt_le_ext_adv_create(BT_LE_EXT_ADV_CONN, NULL, &ext_adv);
err = bt_le_ext_adv_create(BT_BAP_ADV_PARAM_CONN_REDUCED, NULL, &ext_adv);
if (err != 0) {
printk("Failed to create advertising set (err %d)\n", err);

Expand Down
Loading