Re: [PATCH BlueZ 5/5] iso-tester: add tests for multiple simultaneous CIG

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi Pauli,

On Mon, May 22, 2023 at 1:48 PM Luiz Augusto von Dentz
<luiz.dentz@xxxxxxxxx> wrote:
>
> Hi Pauli,
>
> On Mon, May 22, 2023 at 1:38 PM Pauli Virtanen <pav@xxxxxx> wrote:
> >
> > Hi Luiz,
> >
> > ma, 2023-05-22 kello 11:28 -0700, Luiz Augusto von Dentz kirjoitti:
> > > Hi Pauli,
> > >
> > > On Sun, May 21, 2023 at 8:32 AM Pauli Virtanen <pav@xxxxxx> wrote:
> > > >
> > > > Add tests connecting two CIS using different CIG_ID, with fixed and
> > > > auto-allocated IDs.
> > > >
> > > > ISO Connect2 CIG 0x01/0x02 Seq - Success
> > > > ISO Connect2 CIG auto/auto Seq - Success
> > > >
> > > > The CIS are connected sequentially so that the first is closed after the
> > > > second is connected. In the auto/auto case the kernel shall pick a new
> > > > CIG_ID since the first CIG_ID is no longer in a configurable state.
> > >
> > > Is this somewhat similar to AC 7(i) but using different CIGs? I
> > > suspect this is not covered on BAP, although it is a valid audio
> > > configuration, perhaps we could use AC 7(i)-alt or something.
> >
> > Yes, AC 6(ii) but with the CIS in separate CIGs. I'll change the name
> > then.
> >
> > I think BAP only specifies audio configurations with a single CIG. This
> > seems to be valid configuration according to Core spec though, although
> > does not appear to be required.
>
> I did apply it already:
>
> https://git.kernel.org/pub/scm/bluetooth/bluez.git/commit/?id=06aa422145de456ec153a0d062a7e7ef8630cdc0
>
> Feel free to add more AC combinations so we can cover different QoS as
> well rather than just 1 + 2.

Btw, I just confirmed that our firmware only supports 1 CIG and 2 CIS
per peer, so if you were planning to use 2 CIGs separately that is
unfortunately not supported currently as that probably requires a lot
more resources, and scheduler changes, to support all the combinations
I'm afraid we will need a pretty strong argument to change that.

> > >
> > > > ---
> > > >
> > > > Notes:
> > > >     The second tests hits a bug in kernel CIG auto-allocation, which always
> > > >     picks CIG_ID 0 even if it is not in a configurable state.
> > > >
> > > >     ISO Connect2 CIG auto/auto Seq - Success - setup complete
> > > >     ISO Connect2 CIG auto/auto Seq - Success - run
> > > >       Connecting to 00:AA:01:01:00:00...
> > > >       Connect 0 in progress
> > > >       Connecting to 00:AA:01:02:00:01...
> > > >       Connect 1 in progress
> > > >       Successfully connected
> > > >       Step 1
> > > >       Connect failed: Device or resource busy (16)
> > > >       Expect error: Success (0) != Device or resource busy (16)
> > > >
> > > >  tools/iso-tester.c | 48 ++++++++++++++++++++++++++++++++++++++++++++++
> > > >  1 file changed, 48 insertions(+)
> > > >
> > > > diff --git a/tools/iso-tester.c b/tools/iso-tester.c
> > > > index 164cb465f..fc2a84215 100644
> > > > --- a/tools/iso-tester.c
> > > > +++ b/tools/iso-tester.c
> > > > @@ -64,6 +64,11 @@
> > > >                 QOS_IO(_interval, _latency, _sdu, _phy, _rtn), \
> > > >                 QOS_IO(_interval, _latency, _sdu, _phy, _rtn))
> > > >
> > > > +#define QOS_2(_interval, _latency, _sdu, _phy, _rtn) \
> > > > +       QOS_FULL(0x02, BT_ISO_QOS_CIS_UNSET, \
> > > > +               QOS_IO(_interval, _latency, _sdu, _phy, _rtn), \
> > > > +               QOS_IO(_interval, _latency, _sdu, _phy, _rtn))
> > > > +
> > > >  #define QOS_1_1(_interval, _latency, _sdu, _phy, _rtn) \
> > > >         QOS_FULL(0x01, 0x01, \
> > > >                 QOS_IO(_interval, _latency, _sdu, _phy, _rtn), \
> > > > @@ -109,6 +114,7 @@
> > > >  #define QOS_16_1_1 QOS(7500, 8, 30, 0x02, 2)
> > > >  #define QOS_16_2_1 QOS(10000, 10, 40, 0x02, 2)
> > > >  #define QOS_1_16_2_1 QOS_1(10000, 10, 40, 0x02, 2)
> > > > +#define QOS_2_16_2_1 QOS_2(10000, 10, 40, 0x02, 2)
> > > >  #define QOS_1_1_16_2_1 QOS_1_1(10000, 10, 40, 0x02, 2)
> > > >  #define QOS_24_1_1 QOS(7500, 8, 45, 0x02, 2)
> > > >  #define QOS_24_2_1 QOS(10000, 10, 60, 0x02, 2)
> > > > @@ -546,6 +552,20 @@ static const struct iso_client_data connect_1_16_2_1 = {
> > > >         .expect_err = 0
> > > >  };
> > > >
> > > > +static const struct iso_client_data connect_2_16_2_1 = {
> > > > +       .qos = QOS_1_16_2_1,
> > > > +       .qos_2 = QOS_2_16_2_1,
> > > > +       .expect_err = 0,
> > > > +       .mcis = true,
> > > > +};
> > > > +
> > > > +static const struct iso_client_data connect_2a_16_2_1 = {
> > > > +       .qos = QOS_16_2_1,
> > > > +       .qos_2 = QOS_16_2_1,
> > > > +       .expect_err = 0,
> > > > +       .mcis = true,
> > > > +};
> > > > +
> > > >  static const struct iso_client_data connect_1_1_16_2_1 = {
> > > >         .qos = QOS_1_1_16_2_1,
> > > >         .expect_err = 0
> > > > @@ -2126,6 +2146,25 @@ static void test_connect2(const void *test_data)
> > > >         setup_connect_many(data, 2, num, funcs);
> > > >  }
> > > >
> > > > +static gboolean iso_connect2_seq_cb(GIOChannel *io, GIOCondition cond,
> > > > +                                                       gpointer user_data)
> > > > +{
> > > > +       struct test_data *data = tester_get_data();
> > > > +
> > > > +       data->io_id[0] = 0;
> > > > +
> > > > +       setup_connect(data, 1, iso_connect2_cb);
> > > > +
> > > > +       return iso_connect(io, cond, user_data);
> > > > +}
> > > > +
> > > > +static void test_connect2_seq(const void *test_data)
> > > > +{
> > > > +       struct test_data *data = tester_get_data();
> > > > +
> > > > +       setup_connect(data, 0, iso_connect2_seq_cb);
> > > > +}
> > > > +
> > > >  static void test_bcast(const void *test_data)
> > > >  {
> > > >         struct test_data *data = tester_get_data();
> > > > @@ -2264,6 +2303,15 @@ int main(int argc, char *argv[])
> > > >         test_iso("ISO QoS - Invalid", &connect_invalid, setup_powered,
> > > >                                                         test_connect);
> > > >
> > > > +       test_iso2("ISO Connect2 CIG 0x01/0x02 Seq - Success", &connect_2_16_2_1,
> > > > +                                                       setup_powered,
> > > > +                                                       test_connect2_seq);
> > > > +
> > > > +       test_iso2("ISO Connect2 CIG auto/auto Seq - Success",
> > > > +                                                       &connect_2a_16_2_1,
> > > > +                                                       setup_powered,
> > > > +                                                       test_connect2_seq);
> > > > +
> > > >         test_iso_rej("ISO Connect - Reject", &connect_reject, setup_powered,
> > > >                         test_connect, BT_HCI_ERR_CONN_FAILED_TO_ESTABLISH);
> > > >
> > > > --
> > > > 2.40.1
> > > >
> > >
> > >
> >
> > --
> > Pauli Virtanen
>
>
>
> --
> Luiz Augusto von Dentz



-- 
Luiz Augusto von Dentz




[Index of Archives]     [Bluez Devel]     [Linux Wireless Networking]     [Linux Wireless Personal Area Networking]     [Linux ATH6KL]     [Linux USB Devel]     [Linux Media Drivers]     [Linux Audio Users]     [Linux Kernel]     [Linux SCSI]     [Big List of Linux Books]

  Powered by Linux