From: "Frédéric Danis" <frederic.danis@collabora.com>
To: linux-bluetooth@vger.kernel.org
Subject: [PATCH BlueZ v2 0/8] client/btpclient: Add BAP/ASCS/PACS support for auto-pts BAP tests
Date: Tue, 8 Sep 2026 19:06:25 +0200 [thread overview]
Message-ID: <20260908170633.510244-1-frederic.danis@collabora.com> (raw)
This series extends btpclient with support for the BAP, ASCS, and PACS
BTP services required to pass the auto-pts Basic Audio Profile test
suites (BAP/UCL/*, BAP/USR/*).
- Patch 1 adds BTP_EV_BAP_ASE_FOUND, needed by BAP/UCL/SCC/BV-004-C
and BAP/UCL/SCC/BV-019-C.
- Patch 2 fetches Codec capabilities when replying to an ASE.
- Patch 3 introduces ASCS BTP support: audio endpoints are registered
via the VENDOR service's ASCS setup command, and the
SelectProperties() D-Bus reply is postponed until auto-pts has
requested the ASE and PACS characteristic values, allowing
BAP/UCL/SCC/* tests to pass.
- Patch 4 adds BTP_OP_PACS_SET_LOCATION support to store the expected
location for a local endpoint.
- Patch 5 adds BTP_OP_BAP_SEND support.
- Patch 6 extends ASCS support to cover the BAP/UCL/STR/* tests.
- Patch 7 fixes CIG/CIS id assignment to be deferred and based on the
Unicast Client/Server role, matching what auto-pts expects (0/0 for
Client tests, 1/1 for Server tests) instead of eagerly assigning
CIG 0 to every discovered ASE.
- Patch 8 adds automatic stream acquisition and data sending for the
BAP/USR/STR/* tests.
Together these patches allow btpclient to pass the BAP/UCL and
BAP/USR auto-pts test suites.
v1->v2:
- Fix incremental build for Patch 5
- Fix stream connection when transport interface is created after
auto-pts requests enabling ASE
Frédéric Danis (8):
client/btpclient: Add BTP_EV_BAP_ASE_FOUND support
client/btpclient: Get Codec capabilities on ASE reply
client/btpclient: Add ASCS BTP support
client/btpclient: Add BTP_OP_PACS_SET_LOCATION support
client/btpclient: Add BTP_OP_BAP_SEND support
client/btpclient: Add ASCS support for BAP/UCL/STR/* tests
client/btpclient: Defer CIG/CIS assignment based on Client/Server role
client/btpclient: Add stream auto acquire for BAP/USR/STR/* tests
Makefile.tools | 7 +-
client/btpclient/ascs.c | 1649 ++++++++++++++++++++++++++++++++++
client/btpclient/ascs.h | 21 +
client/btpclient/bap.c | 381 ++++++++
client/btpclient/bap.h | 4 +
client/btpclient/btpclient.c | 194 +++-
client/btpclient/btpclient.h | 36 +
client/btpclient/core.c | 75 +-
client/btpclient/gap.c | 3 -
client/btpclient/pacs.c | 107 +++
client/btpclient/pacs.h | 13 +
client/btpclient/vendor.c | 103 +++
client/btpclient/vendor.h | 13 +
src/shared/btp.h | 156 ++++
14 files changed, 2752 insertions(+), 10 deletions(-)
create mode 100644 client/btpclient/ascs.c
create mode 100644 client/btpclient/ascs.h
create mode 100644 client/btpclient/pacs.c
create mode 100644 client/btpclient/pacs.h
create mode 100644 client/btpclient/vendor.c
create mode 100644 client/btpclient/vendor.h
--
2.43.0
next reply other threads:[~2026-09-08 17:06 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-09-08 17:06 Frédéric Danis [this message]
2026-09-08 17:06 ` [PATCH BlueZ v2 1/8] client/btpclient: Add BTP_EV_BAP_ASE_FOUND support Frédéric Danis
2026-09-08 17:59 ` client/btpclient: Add BAP/ASCS/PACS support for auto-pts BAP tests bluez.test.bot
2026-09-08 17:06 ` [PATCH BlueZ v2 2/8] client/btpclient: Get Codec capabilities on ASE reply Frédéric Danis
2026-09-08 17:06 ` [PATCH BlueZ v2 3/8] client/btpclient: Add ASCS BTP support Frédéric Danis
2026-09-08 17:06 ` [PATCH BlueZ v2 4/8] client/btpclient: Add BTP_OP_PACS_SET_LOCATION support Frédéric Danis
2026-09-08 17:06 ` [PATCH BlueZ v2 5/8] client/btpclient: Add BTP_OP_BAP_SEND support Frédéric Danis
2026-09-08 17:06 ` [PATCH BlueZ v2 6/8] client/btpclient: Add ASCS support for BAP/UCL/STR/* tests Frédéric Danis
2026-09-08 17:06 ` [PATCH BlueZ v2 7/8] client/btpclient: Defer CIG/CIS assignment based on Client/Server role Frédéric Danis
2026-09-08 17:06 ` [PATCH BlueZ v2 8/8] client/btpclient: Add stream auto acquire for BAP/USR/STR/* tests Frédéric Danis
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260908170633.510244-1-frederic.danis@collabora.com \
--to=frederic.danis@collabora.com \
--cc=linux-bluetooth@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox