| /* @file |
| * @brief Bluetooth PACS |
| */ |
| |
| /* |
| * Copyright (c) 2020 Intel Corporation |
| * Copyright (c) 2022 Nordic Semiconductor ASA |
| * |
| * SPDX-License-Identifier: Apache-2.0 |
| */ |
| |
| #include <zephyr/kernel.h> |
| #include <zephyr/sys/byteorder.h> |
| #include <zephyr/sys/check.h> |
| |
| #include <zephyr/device.h> |
| #include <zephyr/init.h> |
| |
| #include <zephyr/bluetooth/bluetooth.h> |
| #include <zephyr/bluetooth/conn.h> |
| #include <zephyr/bluetooth/gatt.h> |
| #include <zephyr/bluetooth/audio/audio.h> |
| #include <zephyr/bluetooth/audio/pacs.h> |
| #include "../host/conn_internal.h" |
| |
| #include <zephyr/logging/log.h> |
| |
| LOG_MODULE_REGISTER(bt_pacs, CONFIG_BT_PACS_LOG_LEVEL); |
| |
| #include "common/bt_str.h" |
| |
| #include "audio_internal.h" |
| #include "pacs_internal.h" |
| #include "unicast_server.h" |
| |
| #define PAC_NOTIFY_TIMEOUT K_MSEC(10) |
| |
| #define PACS(_name, _work_handler) \ |
| struct pacs _name = { \ |
| .work = Z_WORK_DELAYABLE_INITIALIZER(_work_handler), \ |
| }; |
| |
| #define PACS_LOCATION(_name, _work_handler) \ |
| struct pacs_location _name = { \ |
| .work = Z_WORK_DELAYABLE_INITIALIZER(_work_handler), \ |
| }; |
| |
| struct pacs_location { |
| struct k_work_delayable work; |
| uint32_t location; |
| }; |
| |
| struct pacs { |
| struct k_work_delayable work; |
| sys_slist_t list; |
| }; |
| |
| #if defined(CONFIG_BT_PAC_SNK) |
| static uint16_t snk_available_contexts; |
| static const uint16_t snk_supported_contexts = CONFIG_BT_PACS_SNK_CONTEXT; |
| #else |
| static const uint16_t snk_available_contexts = BT_AUDIO_CONTEXT_TYPE_PROHIBITED; |
| static const uint16_t snk_supported_contexts = BT_AUDIO_CONTEXT_TYPE_PROHIBITED; |
| #endif /* CONFIG_BT_PAC_SNK */ |
| |
| #if defined(CONFIG_BT_PAC_SRC) |
| static uint16_t src_available_contexts; |
| static const uint16_t src_supported_contexts = CONFIG_BT_PACS_SRC_CONTEXT; |
| #else |
| static const uint16_t src_available_contexts = BT_AUDIO_CONTEXT_TYPE_PROHIBITED; |
| static const uint16_t src_supported_contexts = BT_AUDIO_CONTEXT_TYPE_PROHIBITED; |
| #endif /* CONFIG_BT_PAC_SRC */ |
| |
| NET_BUF_SIMPLE_DEFINE_STATIC(read_buf, CONFIG_BT_L2CAP_TX_MTU); |
| |
| static ssize_t pac_data_add(struct net_buf_simple *buf, size_t count, |
| struct bt_codec_data *data) |
| { |
| size_t len = 0; |
| |
| for (size_t i = 0; i < count; i++) { |
| struct bt_pac_ltv *ltv; |
| struct bt_data *d = &data[i].data; |
| const size_t ltv_len = sizeof(*ltv) + d->data_len; |
| |
| if (net_buf_simple_tailroom(buf) < ltv_len) { |
| return -ENOMEM; |
| } |
| |
| ltv = net_buf_simple_add(buf, sizeof(*ltv)); |
| ltv->len = d->data_len + sizeof(ltv->type); |
| ltv->type = d->type; |
| net_buf_simple_add_mem(buf, d->data, d->data_len); |
| |
| len += ltv_len; |
| } |
| |
| return len; |
| } |
| |
| struct pac_records_build_data { |
| struct bt_pacs_read_rsp *rsp; |
| struct net_buf_simple *buf; |
| }; |
| |
| static bool build_pac_records(const struct bt_pacs_cap *cap, void *user_data) |
| { |
| struct pac_records_build_data *data = user_data; |
| struct bt_codec *codec = cap->codec; |
| struct net_buf_simple *buf = data->buf; |
| struct net_buf_simple_state state; |
| struct bt_pac_ltv_data *cc, *meta; |
| struct bt_pac_codec *pac_codec; |
| ssize_t len; |
| |
| net_buf_simple_save(buf, &state); |
| |
| if (net_buf_simple_tailroom(buf) < sizeof(*pac_codec)) { |
| goto fail; |
| } |
| |
| pac_codec = net_buf_simple_add(buf, sizeof(*pac_codec)); |
| pac_codec->id = codec->id; |
| pac_codec->cid = sys_cpu_to_le16(codec->cid); |
| pac_codec->vid = sys_cpu_to_le16(codec->vid); |
| |
| if (net_buf_simple_tailroom(buf) < sizeof(*cc)) { |
| goto fail; |
| } |
| |
| cc = net_buf_simple_add(buf, sizeof(*cc)); |
| |
| len = pac_data_add(buf, codec->data_count, codec->data); |
| if (len < 0 || len > UINT8_MAX) { |
| goto fail; |
| } |
| |
| cc->len = len; |
| |
| if (net_buf_simple_tailroom(buf) < sizeof(*meta)) { |
| goto fail; |
| } |
| |
| meta = net_buf_simple_add(buf, sizeof(*meta)); |
| |
| len = pac_data_add(buf, codec->meta_count, codec->meta); |
| if (len < 0 || len > UINT8_MAX) { |
| goto fail; |
| } |
| |
| meta->len = len; |
| |
| data->rsp->num_pac++; |
| |
| return true; |
| |
| fail: |
| __ASSERT(true, "No space for %p", cap); |
| |
| net_buf_simple_restore(buf, &state); |
| |
| return false; |
| } |
| |
| static void foreach_cap(sys_slist_t *list, bt_pacs_cap_foreach_func_t func, |
| void *user_data) |
| { |
| struct bt_pacs_cap *cap; |
| |
| SYS_SLIST_FOR_EACH_CONTAINER(list, cap, _node) { |
| if (!func(cap, user_data)) { |
| break; |
| } |
| } |
| } |
| |
| static void get_pac_records(struct bt_conn *conn, sys_slist_t *list, |
| struct net_buf_simple *buf) |
| { |
| struct pac_records_build_data data; |
| |
| /* Reset if buffer before using */ |
| net_buf_simple_reset(buf); |
| |
| data.rsp = net_buf_simple_add(buf, sizeof(*data.rsp)); |
| data.rsp->num_pac = 0; |
| data.buf = buf; |
| |
| foreach_cap(list, build_pac_records, &data); |
| } |
| |
| static void available_context_cfg_changed(const struct bt_gatt_attr *attr, uint16_t value) |
| { |
| LOG_DBG("attr %p value 0x%04x", attr, value); |
| } |
| |
| static ssize_t available_contexts_read(struct bt_conn *conn, |
| const struct bt_gatt_attr *attr, void *buf, |
| uint16_t len, uint16_t offset) |
| { |
| struct bt_pacs_context context = { |
| .snk = sys_cpu_to_le16(snk_available_contexts), |
| .src = sys_cpu_to_le16(src_available_contexts), |
| }; |
| |
| LOG_DBG("conn %p attr %p buf %p len %u offset %u", conn, attr, buf, len, offset); |
| |
| return bt_gatt_attr_read(conn, attr, buf, len, offset, &context, |
| sizeof(context)); |
| } |
| |
| static void supported_context_cfg_changed(const struct bt_gatt_attr *attr, |
| uint16_t value) |
| { |
| LOG_DBG("attr %p value 0x%04x", attr, value); |
| } |
| |
| static ssize_t supported_context_read(struct bt_conn *conn, |
| const struct bt_gatt_attr *attr, |
| void *buf, uint16_t len, uint16_t offset) |
| { |
| struct bt_pacs_context context = { |
| .snk = sys_cpu_to_le16(snk_supported_contexts), |
| .src = sys_cpu_to_le16(src_supported_contexts), |
| }; |
| |
| LOG_DBG("conn %p attr %p buf %p len %u offset %u", conn, attr, buf, len, offset); |
| |
| return bt_gatt_attr_read(conn, attr, buf, len, offset, &context, |
| sizeof(context)); |
| } |
| |
| static void available_contexts_notify(struct k_work *work); |
| static K_WORK_DELAYABLE_DEFINE(available_contexts_work, available_contexts_notify); |
| |
| static int set_available_contexts(uint16_t contexts, uint16_t *available, |
| const uint16_t supported) |
| { |
| int err; |
| |
| if (contexts & ~supported) { |
| return -ENOTSUP; |
| } |
| |
| if (contexts == *available) { |
| return 0; |
| } |
| |
| *available = contexts; |
| |
| err = k_work_reschedule(&available_contexts_work, PAC_NOTIFY_TIMEOUT); |
| if (err < 0) { |
| return err; |
| } |
| |
| return 0; |
| } |
| |
| #if defined(CONFIG_BT_PAC_SNK) |
| static void pac_notify_snk(struct k_work *work); |
| static PACS(snk_pacs, pac_notify_snk); |
| |
| static ssize_t snk_read(struct bt_conn *conn, const struct bt_gatt_attr *attr, |
| void *buf, uint16_t len, uint16_t offset) |
| { |
| LOG_DBG("conn %p attr %p buf %p len %u offset %u", conn, attr, buf, len, offset); |
| |
| get_pac_records(conn, &snk_pacs.list, &read_buf); |
| |
| return bt_gatt_attr_read(conn, attr, buf, len, offset, read_buf.data, |
| read_buf.len); |
| } |
| |
| static void snk_cfg_changed(const struct bt_gatt_attr *attr, uint16_t value) |
| { |
| LOG_DBG("attr %p value 0x%04x", attr, value); |
| } |
| |
| static inline int set_snk_available_contexts(uint16_t contexts) |
| { |
| return set_available_contexts(contexts, &snk_available_contexts, |
| snk_supported_contexts); |
| } |
| #else |
| static inline int set_snk_available_contexts(uint16_t contexts) |
| { |
| return -ENOTSUP; |
| } |
| #endif /* CONFIG_BT_PAC_SNK */ |
| |
| #if defined(CONFIG_BT_PAC_SNK_LOC) |
| static void pac_notify_snk_loc(struct k_work *work); |
| static PACS_LOCATION(snk_location, pac_notify_snk_loc); |
| |
| static ssize_t snk_loc_read(struct bt_conn *conn, |
| const struct bt_gatt_attr *attr, void *buf, |
| uint16_t len, uint16_t offset) |
| { |
| uint32_t location = sys_cpu_to_le32(snk_location.location); |
| |
| LOG_DBG("conn %p attr %p buf %p len %u offset %u", conn, attr, buf, len, offset); |
| |
| return bt_gatt_attr_read(conn, attr, buf, len, offset, &location, |
| sizeof(location)); |
| } |
| |
| static void snk_loc_cfg_changed(const struct bt_gatt_attr *attr, uint16_t value) |
| { |
| LOG_DBG("attr %p value 0x%04x", attr, value); |
| } |
| |
| static int set_snk_location(enum bt_audio_location audio_location) |
| { |
| if (audio_location == snk_location.location) { |
| return 0; |
| } |
| |
| snk_location.location = audio_location; |
| |
| k_work_reschedule(&snk_location.work, PAC_NOTIFY_TIMEOUT); |
| |
| return 0; |
| } |
| #else |
| static int set_snk_location(enum bt_audio_location location) |
| { |
| return -ENOTSUP; |
| } |
| #endif /* CONFIG_BT_PAC_SNK_LOC */ |
| |
| #if defined(CONFIG_BT_PAC_SNK_LOC_WRITEABLE) |
| static ssize_t snk_loc_write(struct bt_conn *conn, |
| const struct bt_gatt_attr *attr, const void *data, |
| uint16_t len, uint16_t offset, uint8_t flags) |
| { |
| int err; |
| enum bt_audio_location location; |
| |
| if (offset) { |
| return BT_GATT_ERR(BT_ATT_ERR_INVALID_OFFSET); |
| } |
| |
| if (len != sizeof(location)) { |
| return BT_GATT_ERR(BT_ATT_ERR_WRITE_REQ_REJECTED); |
| } |
| |
| location = (enum bt_audio_location)sys_get_le32(data); |
| if (location > BT_AUDIO_LOCATION_MASK || location == 0) { |
| LOG_DBG("Invalid location value: 0x%08X", location); |
| return BT_GATT_ERR(BT_ATT_ERR_WRITE_REQ_REJECTED); |
| } |
| |
| err = set_snk_location(location); |
| if (err != 0) { |
| LOG_DBG("write_location returned %d", err); |
| return BT_GATT_ERR(BT_ATT_ERR_WRITE_REQ_REJECTED); |
| } |
| |
| return len; |
| } |
| #endif /* CONFIG_BT_PAC_SNK_LOC_WRITEABLE */ |
| |
| #if defined(CONFIG_BT_PAC_SRC) |
| static void pac_notify_src(struct k_work *work); |
| static PACS(src_pacs, pac_notify_src); |
| |
| static ssize_t src_read(struct bt_conn *conn, const struct bt_gatt_attr *attr, |
| void *buf, uint16_t len, uint16_t offset) |
| { |
| LOG_DBG("conn %p attr %p buf %p len %u offset %u", conn, attr, buf, len, offset); |
| |
| get_pac_records(conn, &src_pacs.list, &read_buf); |
| |
| return bt_gatt_attr_read(conn, attr, buf, len, offset, read_buf.data, |
| read_buf.len); |
| } |
| |
| static void src_cfg_changed(const struct bt_gatt_attr *attr, uint16_t value) |
| { |
| LOG_DBG("attr %p value 0x%04x", attr, value); |
| } |
| |
| static inline int set_src_available_contexts(uint16_t contexts) |
| { |
| return set_available_contexts(contexts, &src_available_contexts, |
| src_supported_contexts); |
| } |
| #else |
| static inline int set_src_available_contexts(uint16_t contexts) |
| { |
| return -ENOTSUP; |
| } |
| #endif /* CONFIG_BT_PAC_SRC */ |
| |
| #if defined(CONFIG_BT_PAC_SRC_LOC) |
| static void pac_notify_src_loc(struct k_work *work); |
| static PACS_LOCATION(src_location, pac_notify_src_loc); |
| |
| static ssize_t src_loc_read(struct bt_conn *conn, |
| const struct bt_gatt_attr *attr, void *buf, |
| uint16_t len, uint16_t offset) |
| { |
| uint32_t location = sys_cpu_to_le32(src_location.location); |
| |
| LOG_DBG("conn %p attr %p buf %p len %u offset %u", conn, attr, buf, len, offset); |
| |
| return bt_gatt_attr_read(conn, attr, buf, len, offset, &location, |
| sizeof(location)); |
| } |
| |
| static void src_loc_cfg_changed(const struct bt_gatt_attr *attr, uint16_t value) |
| { |
| LOG_DBG("attr %p value 0x%04x", attr, value); |
| } |
| |
| static int set_src_location(enum bt_audio_location audio_location) |
| { |
| if (audio_location == src_location.location) { |
| return 0; |
| } |
| |
| src_location.location = audio_location; |
| |
| k_work_reschedule(&src_location.work, PAC_NOTIFY_TIMEOUT); |
| |
| return 0; |
| } |
| #else |
| static int set_src_location(enum bt_audio_location location) |
| { |
| return -ENOTSUP; |
| } |
| #endif /* CONFIG_BT_PAC_SRC_LOC */ |
| |
| #if defined(CONFIG_BT_PAC_SRC_LOC_WRITEABLE) |
| static ssize_t src_loc_write(struct bt_conn *conn, |
| const struct bt_gatt_attr *attr, const void *data, |
| uint16_t len, uint16_t offset, uint8_t flags) |
| { |
| int err; |
| uint32_t location; |
| |
| if (offset) { |
| return BT_GATT_ERR(BT_ATT_ERR_INVALID_OFFSET); |
| } |
| |
| if (len != sizeof(location)) { |
| return BT_GATT_ERR(BT_ATT_ERR_WRITE_REQ_REJECTED); |
| } |
| |
| location = (enum bt_audio_location)sys_get_le32(data); |
| if (location > BT_AUDIO_LOCATION_MASK || location == 0) { |
| LOG_DBG("Invalid location value: 0x%08X", location); |
| return BT_GATT_ERR(BT_ATT_ERR_WRITE_REQ_REJECTED); |
| } |
| |
| err = set_src_location(location); |
| if (err != 0) { |
| LOG_DBG("write_location returned %d", err); |
| return BT_GATT_ERR(BT_ATT_ERR_WRITE_REQ_REJECTED); |
| } |
| |
| return len; |
| } |
| #endif /* CONFIG_BT_PAC_SRC_LOC_WRITEABLE */ |
| |
| BT_GATT_SERVICE_DEFINE(pacs_svc, |
| BT_GATT_PRIMARY_SERVICE(BT_UUID_PACS), |
| #if defined(CONFIG_BT_PAC_SNK) |
| BT_AUDIO_CHRC(BT_UUID_PACS_SNK, |
| BT_GATT_CHRC_READ | BT_GATT_CHRC_NOTIFY, |
| BT_GATT_PERM_READ_ENCRYPT, |
| snk_read, NULL, NULL), |
| BT_AUDIO_CCC(snk_cfg_changed), |
| #if defined(CONFIG_BT_PAC_SNK_LOC) |
| #if defined(CONFIG_BT_PAC_SNK_LOC_WRITEABLE) |
| BT_AUDIO_CHRC(BT_UUID_PACS_SNK_LOC, |
| BT_GATT_CHRC_READ | BT_GATT_CHRC_WRITE | BT_GATT_CHRC_NOTIFY, |
| BT_GATT_PERM_READ_ENCRYPT | BT_GATT_PERM_WRITE_ENCRYPT, |
| snk_loc_read, snk_loc_write, NULL), |
| #else |
| BT_AUDIO_CHRC(BT_UUID_PACS_SNK_LOC, |
| BT_GATT_CHRC_READ | BT_GATT_CHRC_NOTIFY, |
| BT_GATT_PERM_READ_ENCRYPT, |
| snk_loc_read, NULL, NULL), |
| #endif /* CONFIG_BT_PAC_SNK_LOC_WRITEABLE */ |
| BT_AUDIO_CCC(snk_loc_cfg_changed), |
| #endif /* CONFIG_BT_PAC_SNK_LOC */ |
| #endif /* CONFIG_BT_PAC_SNK */ |
| #if defined(CONFIG_BT_PAC_SRC) |
| BT_AUDIO_CHRC(BT_UUID_PACS_SRC, |
| BT_GATT_CHRC_READ | BT_GATT_CHRC_NOTIFY, |
| BT_GATT_PERM_READ_ENCRYPT, |
| src_read, NULL, NULL), |
| BT_AUDIO_CCC(src_cfg_changed), |
| #if defined(CONFIG_BT_PAC_SRC_LOC) |
| #if defined(CONFIG_BT_PAC_SRC_LOC_WRITEABLE) |
| BT_AUDIO_CHRC(BT_UUID_PACS_SRC_LOC, |
| BT_GATT_CHRC_READ | BT_GATT_CHRC_WRITE | BT_GATT_CHRC_NOTIFY, |
| BT_GATT_PERM_READ_ENCRYPT | BT_GATT_PERM_WRITE_ENCRYPT, |
| src_loc_read, src_loc_write, NULL), |
| #else |
| BT_AUDIO_CHRC(BT_UUID_PACS_SRC_LOC, |
| BT_GATT_CHRC_READ | BT_GATT_CHRC_NOTIFY, |
| BT_GATT_PERM_READ_ENCRYPT, |
| src_loc_read, NULL, NULL), |
| #endif /* CONFIG_BT_PAC_SRC_LOC_WRITEABLE */ |
| BT_AUDIO_CCC(src_loc_cfg_changed), |
| #endif /* CONFIG_BT_PAC_SRC_LOC */ |
| #endif /* CONFIG_BT_PAC_SRC */ |
| BT_AUDIO_CHRC(BT_UUID_PACS_AVAILABLE_CONTEXT, |
| BT_GATT_CHRC_READ | BT_GATT_CHRC_NOTIFY, |
| BT_GATT_PERM_READ_ENCRYPT, |
| available_contexts_read, NULL, NULL), |
| BT_AUDIO_CCC(available_context_cfg_changed), |
| BT_AUDIO_CHRC(BT_UUID_PACS_SUPPORTED_CONTEXT, |
| BT_GATT_CHRC_READ | BT_GATT_CHRC_NOTIFY, |
| BT_GATT_PERM_READ_ENCRYPT, |
| supported_context_read, NULL, NULL), |
| BT_AUDIO_CCC(supported_context_cfg_changed) |
| ); |
| |
| #if defined(CONFIG_BT_PAC_SNK_LOC) |
| static void pac_notify_snk_loc(struct k_work *work) |
| { |
| struct pacs_location *location = CONTAINER_OF(work, struct pacs_location, work); |
| uint32_t location_le = sys_cpu_to_le32(location->location); |
| int err; |
| |
| err = bt_gatt_notify_uuid(NULL, BT_UUID_PACS_SNK_LOC, pacs_svc.attrs, &location_le, |
| sizeof(location_le)); |
| if (err != 0 && err != -ENOTCONN) { |
| LOG_WRN("PACS notify_loc failed: %d", err); |
| } |
| } |
| #endif /* CONFIG_BT_PAC_SNK_LOC */ |
| |
| #if defined(CONFIG_BT_PAC_SRC_LOC) |
| static void pac_notify_src_loc(struct k_work *work) |
| { |
| struct pacs_location *location = CONTAINER_OF(work, struct pacs_location, work); |
| uint32_t location_le = sys_cpu_to_le32(location->location); |
| int err; |
| |
| err = bt_gatt_notify_uuid(NULL, BT_UUID_PACS_SRC_LOC, pacs_svc.attrs, &location_le, |
| sizeof(location_le)); |
| if (err != 0 && err != -ENOTCONN) { |
| LOG_WRN("PACS notify_loc failed: %d", err); |
| } |
| } |
| #endif /* CONFIG_BT_PAC_SRC_LOC */ |
| |
| #if defined(CONFIG_BT_PAC_SNK) |
| static void pac_notify_snk(struct k_work *work) |
| { |
| struct pacs *pac = CONTAINER_OF(work, struct pacs, work); |
| int err; |
| |
| get_pac_records(NULL, &pac->list, &read_buf); |
| |
| err = bt_gatt_notify_uuid(NULL, BT_UUID_PACS_SNK, pacs_svc.attrs, |
| read_buf.data, read_buf.len); |
| if (err != 0 && err != -ENOTCONN) { |
| LOG_WRN("PACS notify failed: %d", err); |
| } |
| } |
| #endif /* CONFIG_BT_PAC_SNK */ |
| |
| #if defined(CONFIG_BT_PAC_SRC) |
| static void pac_notify_src(struct k_work *work) |
| { |
| struct pacs *pac = CONTAINER_OF(work, struct pacs, work); |
| int err = 0; |
| |
| get_pac_records(NULL, &pac->list, &read_buf); |
| |
| err = bt_gatt_notify_uuid(NULL, BT_UUID_PACS_SRC, pacs_svc.attrs, |
| read_buf.data, read_buf.len); |
| if (err != 0 && err != -ENOTCONN) { |
| LOG_WRN("PACS notify failed: %d", err); |
| } |
| } |
| #endif /* CONFIG_BT_PAC_SRC */ |
| |
| static void pacs_changed(struct pacs *caps) |
| { |
| k_work_reschedule(&caps->work, PAC_NOTIFY_TIMEOUT); |
| } |
| |
| static void available_contexts_notify(struct k_work *work) |
| { |
| struct bt_pacs_context context = { |
| .snk = sys_cpu_to_le16(snk_available_contexts), |
| .src = sys_cpu_to_le16(src_available_contexts), |
| }; |
| int err; |
| |
| err = bt_gatt_notify_uuid(NULL, BT_UUID_PACS_AVAILABLE_CONTEXT, pacs_svc.attrs, |
| &context, sizeof(context)); |
| if (err != 0 && err != -ENOTCONN) { |
| LOG_WRN("Available Audio Contexts notify failed: %d", err); |
| } |
| } |
| |
| bool bt_pacs_context_available(enum bt_audio_dir dir, uint16_t context) |
| { |
| if (dir == BT_AUDIO_DIR_SOURCE) { |
| return (context & src_available_contexts) == context; |
| } |
| |
| if (dir == BT_AUDIO_DIR_SINK) { |
| return (context & snk_available_contexts) == context; |
| } |
| |
| return false; |
| } |
| |
| static struct pacs *pacs_get(enum bt_audio_dir dir) |
| { |
| switch (dir) { |
| #if defined(CONFIG_BT_PAC_SNK) |
| case BT_AUDIO_DIR_SINK: |
| return &snk_pacs; |
| #endif /* CONFIG_BT_PAC_SNK */ |
| #if defined(CONFIG_BT_PAC_SRC) |
| case BT_AUDIO_DIR_SOURCE: |
| return &src_pacs; |
| #endif /* CONFIG_BT_PAC_SRC */ |
| default: |
| return NULL; |
| } |
| } |
| |
| void bt_pacs_cap_foreach(enum bt_audio_dir dir, bt_pacs_cap_foreach_func_t func, void *user_data) |
| { |
| struct pacs *pac; |
| |
| CHECKIF(func == NULL) { |
| LOG_ERR("func is NULL"); |
| return; |
| } |
| |
| pac = pacs_get(dir); |
| if (!pac) { |
| return; |
| } |
| |
| foreach_cap(&pac->list, func, user_data); |
| } |
| |
| /* Register Audio Capability */ |
| int bt_pacs_cap_register(enum bt_audio_dir dir, struct bt_pacs_cap *cap) |
| { |
| struct pacs *pac; |
| |
| if (!cap || !cap->codec) { |
| return -EINVAL; |
| } |
| |
| pac = pacs_get(dir); |
| if (!pac) { |
| return -EINVAL; |
| } |
| |
| LOG_DBG("cap %p dir 0x%02x codec 0x%02x codec cid 0x%04x " |
| "codec vid 0x%04x", cap, dir, cap->codec->id, |
| cap->codec->cid, cap->codec->vid); |
| |
| sys_slist_append(&pac->list, &cap->_node); |
| |
| pacs_changed(pac); |
| |
| return 0; |
| } |
| |
| /* Unregister Audio Capability */ |
| int bt_pacs_cap_unregister(enum bt_audio_dir dir, struct bt_pacs_cap *cap) |
| { |
| struct pacs *pac; |
| |
| if (!cap) { |
| return -EINVAL; |
| } |
| |
| pac = pacs_get(dir); |
| if (!pac) { |
| return -EINVAL; |
| } |
| |
| LOG_DBG("cap %p dir 0x%02x", cap, dir); |
| |
| if (!sys_slist_find_and_remove(&pac->list, &cap->_node)) { |
| return -ENOENT; |
| } |
| |
| pacs_changed(pac); |
| |
| return 0; |
| } |
| |
| int bt_pacs_set_location(enum bt_audio_dir dir, enum bt_audio_location location) |
| { |
| switch (dir) { |
| case BT_AUDIO_DIR_SINK: |
| return set_snk_location(location); |
| case BT_AUDIO_DIR_SOURCE: |
| return set_src_location(location); |
| } |
| |
| return -EINVAL; |
| } |
| |
| int bt_pacs_set_available_contexts(enum bt_audio_dir dir, enum bt_audio_context contexts) |
| { |
| switch (dir) { |
| case BT_AUDIO_DIR_SINK: |
| return set_snk_available_contexts(contexts); |
| case BT_AUDIO_DIR_SOURCE: |
| return set_src_available_contexts(contexts); |
| } |
| |
| return -EINVAL; |
| } |
| |
| enum bt_audio_context bt_pacs_get_available_contexts(enum bt_audio_dir dir) |
| { |
| switch (dir) { |
| case BT_AUDIO_DIR_SINK: |
| return snk_available_contexts; |
| case BT_AUDIO_DIR_SOURCE: |
| return src_available_contexts; |
| } |
| |
| return BT_AUDIO_CONTEXT_TYPE_PROHIBITED; |
| } |